From 46c0cfef4d2162aae2e016271692214795fd3237 Mon Sep 17 00:00:00 2001 From: Krystof Date: Sun, 20 Oct 2024 13:58:33 +0200 Subject: [PATCH] chore: db seed --- apps/backend/package.json | 6 +- apps/backend/prisma/seed.ts | 100 + .../prisma/seeds/platforms-on-routes.json | 112317 +++++++++++++++ apps/backend/prisma/seeds/platforms.json | 92930 ++++++++++++ apps/backend/prisma/seeds/routes.json | 562 + apps/backend/prisma/seeds/stops.json | 45044 ++++++ apps/backend/tsconfig.build.json | 2 +- 7 files changed, 250959 insertions(+), 2 deletions(-) create mode 100644 apps/backend/prisma/seed.ts create mode 100644 apps/backend/prisma/seeds/platforms-on-routes.json create mode 100644 apps/backend/prisma/seeds/platforms.json create mode 100644 apps/backend/prisma/seeds/routes.json create mode 100644 apps/backend/prisma/seeds/stops.json diff --git a/apps/backend/package.json b/apps/backend/package.json index 3a75b55b..2a582ac6 100644 --- a/apps/backend/package.json +++ b/apps/backend/package.json @@ -20,7 +20,8 @@ "prisma:generate": "prisma generate", "prisma:migrate:create": "dotenv -e .env.local -- prisma migrate dev", "prisma:migrate:deploy": "dotenv -e .env.local -- prisma migrate deploy", - "prisma:push": "dotenv -e .env.local -- prisma db push" + "prisma:push": "dotenv -e .env.local -- prisma db push", + "prisma:seed": "prisma db seed" }, "dependencies": { "@apollo/server": "^4.11.0", @@ -91,5 +92,8 @@ ], "coverageDirectory": "../coverage", "testEnvironment": "node" + }, + "prisma": { + "seed": "dotenv -e .env.local -- ts-node prisma/seed.ts" } } diff --git a/apps/backend/prisma/seed.ts b/apps/backend/prisma/seed.ts new file mode 100644 index 00000000..aec74122 --- /dev/null +++ b/apps/backend/prisma/seed.ts @@ -0,0 +1,100 @@ +import * as fs from "fs"; + +import { PrismaClient } from "@prisma/client"; + +type Stop = { + id: string; + name: string; + avgLatitude: number; + avgLongitude: number; +}; + +type Route = { + id: string; + name: string; + isNight: boolean | null; + vehicleType: null; +}; + +type Platform = { + id: string; + name: string; + isMetro: boolean; + latitude: number; + longitude: number; + stopId: string; +}; + +type PlatformOnRoute = { + routeId: string; + platformId: string; +}; + +const parseSeedFile = (path: string): T => { + const raw = fs.readFileSync(path).toString(); + + return JSON.parse(raw); +}; + +const prisma = new PrismaClient(); +async function main() { + const stops = parseSeedFile("./prisma/seeds/stops.json"); + const routes = parseSeedFile("./prisma/seeds/routes.json"); + const platforms = parseSeedFile( + "./prisma/seeds/platforms.json", + ); + const platformsOnRoutes = parseSeedFile( + "./prisma/seeds/platforms-on-routes.json", + ); + + await prisma.$transaction(async (transaction) => { + await transaction.platformsOnRoutes.deleteMany(); + await transaction.route.deleteMany(); + await transaction.platform.deleteMany(); + await transaction.stop.deleteMany(); + + await transaction.stop.createMany({ + data: stops.map((stop) => ({ + id: stop.id, + name: stop.name, + avgLongitude: stop.avgLongitude, + avgLatitude: stop.avgLatitude, + })), + }); + + await transaction.platform.createMany({ + data: platforms.map((platform) => ({ + id: platform.id, + name: platform.name, + isMetro: platform.isMetro, + latitude: platform.latitude, + longitude: platform.longitude, + stopId: platform.stopId ?? null, + })), + }); + + await transaction.route.createMany({ + data: routes.map((platform) => ({ + id: platform.id, + name: platform.name, + })), + }); + + await transaction.platformsOnRoutes.createMany({ + data: platformsOnRoutes.map((platformOnRoute) => ({ + platformId: platformOnRoute.platformId, + routeId: platformOnRoute.routeId, + })), + skipDuplicates: true, + }); + }); +} +main() + .then(async () => { + await prisma.$disconnect(); + }) + .catch(async (e) => { + console.error(e); + await prisma.$disconnect(); + process.exit(1); + }); diff --git a/apps/backend/prisma/seeds/platforms-on-routes.json b/apps/backend/prisma/seeds/platforms-on-routes.json new file mode 100644 index 00000000..e311da86 --- /dev/null +++ b/apps/backend/prisma/seeds/platforms-on-routes.json @@ -0,0 +1,112317 @@ +[ + { + "routeId": "L158", + "platformId": "U1000Z1", + "id": "52fcf7cc-c0c4-440d-8871-f3d8186e3d35" + }, + { + "routeId": "L195", + "platformId": "U1000Z1", + "id": "612f90f8-3b4e-4160-bbec-f285f405562a" + }, + { + "routeId": "L351", + "platformId": "U1000Z1", + "id": "7308717c-57f7-4d42-b742-181f3266d9c1" + }, + { + "routeId": "L377", + "platformId": "U1000Z1", + "id": "6b2b6f70-0c50-4ef4-8298-e8b6d2ef86c9" + }, + { + "routeId": "L159", + "platformId": "U1000Z10", + "id": "193fbb19-2cba-4c4e-a86b-ffb448a4da95" + }, + { + "routeId": "L185", + "platformId": "U1000Z10", + "id": "d3007bbd-9ad5-4e3a-8a91-2dd4d9d578c3" + }, + { + "routeId": "L201", + "platformId": "U1000Z10", + "id": "20f4e527-cb6f-4ca3-bfd9-b956f79ed7d1" + }, + { + "routeId": "L209", + "platformId": "U1000Z10", + "id": "3fa14fbf-2c35-450e-8fe6-03a8ea0a37b2" + }, + { + "routeId": "L378", + "platformId": "U1000Z10", + "id": "6bc7c6ad-ef58-4511-8888-78624b3418c6" + }, + { + "routeId": "L302", + "platformId": "U1000Z10", + "id": "e4d51ff6-d41f-4055-86d5-0acae0e66646" + }, + { + "routeId": "L376", + "platformId": "U1000Z10", + "id": "f044e0a8-78a3-4591-9288-75aa1f7bcdeb" + }, + { + "routeId": "L993", + "platformId": "U1000Z101", + "id": "ebaba6a8-e842-4741-a56c-c3094b24a876" + }, + { + "routeId": "L993", + "platformId": "U1000Z102", + "id": "8024fb53-58a3-41d9-af67-38ce4eca83da" + }, + { + "routeId": "L351", + "platformId": "U1000Z11", + "id": "23d84d14-2a65-47c9-a294-c0aa76f6c1a9" + }, + { + "routeId": "L377", + "platformId": "U1000Z11", + "id": "b926bcd8-01af-4749-839b-7ccd062f3d80" + }, + { + "routeId": "L136", + "platformId": "U1000Z12", + "id": "44baf0d4-992d-4b7a-bdb7-af76ef9d2963" + }, + { + "routeId": "L201", + "platformId": "U1000Z12", + "id": "544087e5-4424-4402-b8c7-ffa31d9400ed" + }, + { + "routeId": "L110", + "platformId": "U1000Z12", + "id": "dfad075e-8fea-417d-b40b-e2dae9634600" + }, + { + "routeId": "L58", + "platformId": "U1000Z12", + "id": "42286158-b86a-4c9c-8fc8-05b29e953ab8" + }, + { + "routeId": "L413", + "platformId": "U1000Z15", + "id": "72f7fc3e-3221-4b15-9203-18b04640bcd5" + }, + { + "routeId": "L159", + "platformId": "U1000Z2", + "id": "3d481a61-f0ef-4425-8c0d-6f805bcc6daa" + }, + { + "routeId": "L185", + "platformId": "U1000Z2", + "id": "cf9ed2b0-f239-4a2f-9978-287b4a92b185" + }, + { + "routeId": "L110", + "platformId": "U1000Z2", + "id": "b4bfc192-da80-4467-bac3-1e1ec05b57b6" + }, + { + "routeId": "L209", + "platformId": "U1000Z2", + "id": "ec41d673-e050-41aa-af72-10467e33e9a4" + }, + { + "routeId": "L378", + "platformId": "U1000Z2", + "id": "d9388b11-7a7c-489f-8c69-b22d0999efb8" + }, + { + "routeId": "L302", + "platformId": "U1000Z2", + "id": "4fd7f899-2c5e-48b3-ac59-93e758212250" + }, + { + "routeId": "L375", + "platformId": "U1000Z2", + "id": "d9bd46b7-e74a-4b10-9fae-61ebdaae7d39" + }, + { + "routeId": "L376", + "platformId": "U1000Z2", + "id": "ba1bb367-1071-4c74-a59d-18759cd1d72a" + }, + { + "routeId": "L136", + "platformId": "U1000Z3", + "id": "62698734-28ac-43b5-9453-16f418be930c" + }, + { + "routeId": "L195", + "platformId": "U1000Z3", + "id": "b3beb9bb-6b90-4ba0-abae-11f93291fc61" + }, + { + "routeId": "L201", + "platformId": "U1000Z3", + "id": "56a1e7bd-4948-4e21-bee5-b34dd1c05c18" + }, + { + "routeId": "L110", + "platformId": "U1000Z3", + "id": "d1d0ba0e-8563-4063-bd08-7d42bdee0d11" + }, + { + "routeId": "L58", + "platformId": "U1000Z3", + "id": "5b2acae2-bcc5-4555-8a36-4c896345d3ef" + }, + { + "routeId": "L158", + "platformId": "U1000Z4", + "id": "cbeee181-706b-4497-9618-64380379d604" + }, + { + "routeId": "L351", + "platformId": "U1000Z4", + "id": "2fa7df32-ace3-40f0-8c8a-10ef19215e23" + }, + { + "routeId": "L377", + "platformId": "U1000Z4", + "id": "d90fbf42-92a1-4bfe-9394-29c44d701e29" + }, + { + "routeId": "L375", + "platformId": "U1000Z5", + "id": "036aa830-79a1-4fd5-81d3-439f4a68f4a5" + }, + { + "routeId": "L159", + "platformId": "U1000Z6", + "id": "2158b1eb-a125-4add-900f-a13e5a6569ba" + }, + { + "routeId": "L185", + "platformId": "U1000Z6", + "id": "977ada0c-be0c-4329-b22f-dcb13f8d7e0d" + }, + { + "routeId": "L209", + "platformId": "U1000Z6", + "id": "eb06ac35-4a5d-489b-a7ab-4abf1706e166" + }, + { + "routeId": "L378", + "platformId": "U1000Z6", + "id": "0920f7bc-b264-4fc1-aa3d-378358fde606" + }, + { + "routeId": "L302", + "platformId": "U1000Z6", + "id": "8ea59c17-6ba6-4930-afc4-863fcfd23b3c" + }, + { + "routeId": "L376", + "platformId": "U1000Z6", + "id": "54e6b3fc-fcdc-4baa-9b55-d13b325b5a2d" + }, + { + "routeId": "L413", + "platformId": "U1000Z6", + "id": "036faddb-c665-4322-8585-675b146571be" + }, + { + "routeId": "L154", + "platformId": "U1001Z1", + "id": "236d43b9-e5fb-4b75-aeed-b3e53686e9be" + }, + { + "routeId": "L175", + "platformId": "U1001Z1", + "id": "c8dc0247-303d-454f-b5ed-5f53c64dbe52" + }, + { + "routeId": "L183", + "platformId": "U1001Z1", + "id": "e6ec436d-9445-4abf-9e0d-a637b4eda7a6" + }, + { + "routeId": "L154", + "platformId": "U1001Z2", + "id": "e294e513-f91c-435b-bf2b-696dcb7019fc" + }, + { + "routeId": "L175", + "platformId": "U1001Z2", + "id": "982949ba-5fd1-4348-a6ea-2ac3a00b9aa1" + }, + { + "routeId": "L183", + "platformId": "U1001Z2", + "id": "a6493edf-8164-46a4-9a83-e5c6af090a3f" + }, + { + "routeId": "L245", + "platformId": "U1002Z1", + "id": "b5df2c84-31ec-4fc1-bfa4-fe47ab0b299e" + }, + { + "routeId": "L906", + "platformId": "U1004Z1", + "id": "44239d77-b961-4961-bd46-7daf95392105" + }, + { + "routeId": "L227", + "platformId": "U1004Z1", + "id": "7590414c-8dc4-4977-a5f3-e0fdc28301c1" + }, + { + "routeId": "L906", + "platformId": "U1004Z2", + "id": "4fc6b31c-651e-4c5d-92a6-6e40ec8d97dd" + }, + { + "routeId": "L227", + "platformId": "U1004Z2", + "id": "52845130-4239-499e-9455-a7337d758016" + }, + { + "routeId": "L17", + "platformId": "U1006Z1", + "id": "72cac2bd-f9b2-481e-9bba-7299387038c7" + }, + { + "routeId": "L27", + "platformId": "U1006Z1", + "id": "3af4e2fb-f8af-4b08-89cf-8450ab2c4cdb" + }, + { + "routeId": "L92", + "platformId": "U1006Z1", + "id": "df197b58-1283-492e-8a6d-302494f7e4ca" + }, + { + "routeId": "L17", + "platformId": "U1006Z2", + "id": "a1df8822-c7e4-432b-8482-fdc1ddc5c504" + }, + { + "routeId": "L27", + "platformId": "U1006Z2", + "id": "bb331be7-3eec-486e-a02d-587cceae71f2" + }, + { + "routeId": "L92", + "platformId": "U1006Z2", + "id": "e39c4b82-7df3-4e6a-926c-99fcddcdf047" + }, + { + "routeId": "L117", + "platformId": "U1006Z51", + "id": "454e6f18-9896-403f-a1ea-453812750891" + }, + { + "routeId": "L117", + "platformId": "U1006Z52", + "id": "76d45070-2fa4-49c3-ae26-5e40503fd875" + }, + { + "routeId": "L174", + "platformId": "U1007Z1", + "id": "20587996-aca5-4939-846d-0b118f4e77f9" + }, + { + "routeId": "L225", + "platformId": "U1007Z1", + "id": "af77d603-bbec-4ede-8ebd-6212244e1667" + }, + { + "routeId": "L902", + "platformId": "U1007Z1", + "id": "a3bf36c3-25d1-49e7-a565-3c9dc35fc5e3" + }, + { + "routeId": "L904", + "platformId": "U1007Z1", + "id": "3d25a5f5-6f67-41c5-9618-09fde013dc28" + }, + { + "routeId": "L992", + "platformId": "U1007Z101", + "id": "fe2074f6-5d30-4597-b5b4-9372f4ce0080" + }, + { + "routeId": "L992", + "platformId": "U1007Z102", + "id": "31dae68c-441c-4f45-8f0f-5345ac15b538" + }, + { + "routeId": "L174", + "platformId": "U1007Z2", + "id": "8140c0b5-22d3-4452-ba4f-50707f09757e" + }, + { + "routeId": "L225", + "platformId": "U1007Z2", + "id": "b005ce17-6e73-4748-ad7f-b55896d3287b" + }, + { + "routeId": "L902", + "platformId": "U1007Z2", + "id": "fb994f21-5f0a-47b4-937c-1c6612e549b8" + }, + { + "routeId": "L904", + "platformId": "U1007Z2", + "id": "60499f4c-be1e-4410-b44e-fa01e996b2a9" + }, + { + "routeId": "L174", + "platformId": "U1007Z71", + "id": "be8da9fa-8ac3-4daf-9042-68db51de8efa" + }, + { + "routeId": "L352", + "platformId": "U1007Z71", + "id": "961e08a2-2b6e-48af-b82d-75c37a6db089" + }, + { + "routeId": "L301", + "platformId": "U1007Z71", + "id": "e5971be1-e463-44c1-8541-0abf80dd6a7a" + }, + { + "routeId": "L174", + "platformId": "U1007Z72", + "id": "8859c976-c187-4c99-ad30-52c70f1febdd" + }, + { + "routeId": "L301", + "platformId": "U1007Z72", + "id": "06083cee-5585-4e18-b871-3ccadf11b7aa" + }, + { + "routeId": "L174", + "platformId": "U1007Z73", + "id": "99b69e43-7cd8-4d55-b660-4f894da0afe2" + }, + { + "routeId": "L352", + "platformId": "U1007Z73", + "id": "fcb6fcf3-cee9-4474-8feb-f90755b89418" + }, + { + "routeId": "L202", + "platformId": "U1008Z1", + "id": "14d16403-7a30-4593-a53a-e6959508f1f8" + }, + { + "routeId": "L202", + "platformId": "U1008Z2", + "id": "fcd01f15-5150-4c17-b513-dd995221d63f" + }, + { + "routeId": "L154", + "platformId": "U1009Z1", + "id": "5724daa8-ded0-45a3-80d8-ed10eb52f439" + }, + { + "routeId": "L197", + "platformId": "U1009Z1", + "id": "ade07a94-7b48-429a-8acd-89ecebc40544" + }, + { + "routeId": "L904", + "platformId": "U1009Z1", + "id": "8f4273c5-4b4d-417f-9404-6ee96de4f0da" + }, + { + "routeId": "L154", + "platformId": "U1009Z2", + "id": "6ded2b0e-b045-43f5-a478-c41217ef35cd" + }, + { + "routeId": "L197", + "platformId": "U1009Z2", + "id": "cdfd35c4-c17d-4a20-9d8d-8a6026905027" + }, + { + "routeId": "L904", + "platformId": "U1009Z2", + "id": "6a6e2910-ee81-4c3a-a174-e3146304866b" + }, + { + "routeId": "L1", + "platformId": "U100Z1", + "id": "824e3645-f33a-4795-88ba-7371f9123dc7" + }, + { + "routeId": "L6", + "platformId": "U100Z1", + "id": "06485aeb-b72c-4115-bd16-d71f34113031" + }, + { + "routeId": "L17", + "platformId": "U100Z1", + "id": "d7f18769-9390-4e01-b5af-36ee863d7e24" + }, + { + "routeId": "L27", + "platformId": "U100Z1", + "id": "4fe32ada-6137-4e33-b84f-2077f9d2863e" + }, + { + "routeId": "L25", + "platformId": "U100Z1", + "id": "48ce172c-8999-4cce-890b-2e231111784a" + }, + { + "routeId": "L93", + "platformId": "U100Z1", + "id": "47e8ba40-a159-449c-9a36-f47cd804b69a" + }, + { + "routeId": "L993", + "platformId": "U100Z101", + "id": "9fdb7a23-7083-4a24-b8aa-f1a264d1e9fa" + }, + { + "routeId": "L993", + "platformId": "U100Z102", + "id": "c9640a80-b28e-41b6-a501-660c0fbf56be" + }, + { + "routeId": "L156", + "platformId": "U100Z11", + "id": "2977b989-804f-4b97-96d4-86523299382c" + }, + { + "routeId": "L1", + "platformId": "U100Z2", + "id": "f8c7fdfd-9846-4be5-8bc0-023fc47fbe34" + }, + { + "routeId": "L6", + "platformId": "U100Z2", + "id": "b5819876-8e31-496a-aefa-e9f8ace1314a" + }, + { + "routeId": "L17", + "platformId": "U100Z2", + "id": "0cdaadb5-0e6f-4900-9418-527603bb864b" + }, + { + "routeId": "L27", + "platformId": "U100Z2", + "id": "c96ca4d8-b841-47b7-994c-95bbcd9a801d" + }, + { + "routeId": "L25", + "platformId": "U100Z2", + "id": "bd86f2a7-1d50-4185-a368-c3e85a771999" + }, + { + "routeId": "L93", + "platformId": "U100Z2", + "id": "5cab4a4b-925c-4883-b32f-d79ceb9b03b8" + }, + { + "routeId": "L12", + "platformId": "U100Z3", + "id": "cb5c0446-b1c9-45dd-ab74-44ae66c5da4a" + }, + { + "routeId": "L14", + "platformId": "U100Z3", + "id": "7a42a83f-2073-4bbe-826b-5256ec2aa5f6" + }, + { + "routeId": "L1304", + "platformId": "U100Z301", + "id": "f8f529bb-1fb4-49ca-95cc-819ee6eb3672" + }, + { + "routeId": "L12", + "platformId": "U100Z4", + "id": "8b72a271-c2d1-49d9-950b-889261bb9af3" + }, + { + "routeId": "L14", + "platformId": "U100Z4", + "id": "af788320-3adb-4142-a642-23f7f0fec02b" + }, + { + "routeId": "L156", + "platformId": "U100Z5", + "id": "ae93cd88-1f11-43dc-b257-e3f26985c404" + }, + { + "routeId": "L905", + "platformId": "U100Z5", + "id": "3e178f2c-45de-43a2-b776-06b062cba38c" + }, + { + "routeId": "L911", + "platformId": "U100Z5", + "id": "1358aa75-f646-488e-99aa-fb1d0d7a2b48" + }, + { + "routeId": "L156", + "platformId": "U100Z6", + "id": "7a9870c1-8a86-4534-b760-7bfa48334a98" + }, + { + "routeId": "L905", + "platformId": "U100Z6", + "id": "b606132f-5215-4fbe-ac9f-b6e31834c6c4" + }, + { + "routeId": "L911", + "platformId": "U100Z6", + "id": "41700963-fbe6-450c-a991-b4c5d4427746" + }, + { + "routeId": "L341", + "platformId": "U1010Z1", + "id": "6a4cac34-c452-43a2-a9a0-70193f081100" + }, + { + "routeId": "L341", + "platformId": "U1010Z2", + "id": "eaefbc2b-02d9-4767-909c-f8bf55626d5c" + }, + { + "routeId": "L162", + "platformId": "U1011Z1", + "id": "68368249-1fe0-4e7b-9d2a-ed0ac42d3e80" + }, + { + "routeId": "L145", + "platformId": "U1011Z1", + "id": "d7c0872f-09f4-4ba1-a2f1-1ae2a7233100" + }, + { + "routeId": "L169", + "platformId": "U1011Z1", + "id": "0c54090c-2088-4b2a-87d7-52ff3cd39f67" + }, + { + "routeId": "L913", + "platformId": "U1011Z1", + "id": "5c22c564-2a75-42d0-8b9b-04d9004b7bb5" + }, + { + "routeId": "L162", + "platformId": "U1011Z2", + "id": "e8a0dc59-bfc2-46aa-ab3d-0561ecd55b2a" + }, + { + "routeId": "L145", + "platformId": "U1011Z2", + "id": "7070b8e1-5306-47d3-9a8f-713db647f2ea" + }, + { + "routeId": "L169", + "platformId": "U1011Z2", + "id": "2c60872f-f518-45d2-9d54-ceff3e3e9dc4" + }, + { + "routeId": "L913", + "platformId": "U1011Z2", + "id": "33e962ad-619f-4db2-923a-2788cd930c3c" + }, + { + "routeId": "L154", + "platformId": "U1012Z1", + "id": "953530bf-9da3-4364-a6e1-efb8f7711931" + }, + { + "routeId": "L240", + "platformId": "U1012Z1", + "id": "a73f1928-d967-46e0-88f5-2e09f8db5143" + }, + { + "routeId": "L154", + "platformId": "U1012Z2", + "id": "de1dbdeb-d65a-43c5-b58f-f016bef42ffd" + }, + { + "routeId": "L240", + "platformId": "U1012Z2", + "id": "39465465-b132-4e1e-9a03-c8ef680cbef5" + }, + { + "routeId": "L154", + "platformId": "U1013Z1", + "id": "8ed6df62-dd36-468c-aa0c-81d8ecd68e96" + }, + { + "routeId": "L175", + "platformId": "U1013Z1", + "id": "1d1e7d49-864b-470b-96ec-24dde1e8231e" + }, + { + "routeId": "L183", + "platformId": "U1013Z1", + "id": "ba3abd2e-eb80-4c25-81b0-3266dcda4b90" + }, + { + "routeId": "L154", + "platformId": "U1013Z2", + "id": "6d41a472-3dc4-4a1b-bcf6-4385189b4c6d" + }, + { + "routeId": "L175", + "platformId": "U1013Z2", + "id": "ba04aaf9-0b4d-43f7-bded-0a5aa5f511d0" + }, + { + "routeId": "L183", + "platformId": "U1013Z2", + "id": "d2f1fc61-1d50-4b85-9417-2fe48d775491" + }, + { + "routeId": "L163", + "platformId": "U1014Z1", + "id": "5ee9564a-cd88-4a85-a40f-c001c3972543" + }, + { + "routeId": "L208", + "platformId": "U1014Z1", + "id": "6a0cc0d3-1532-403c-b110-1f22ab35a425" + }, + { + "routeId": "L204", + "platformId": "U1014Z1", + "id": "1322f0fa-d60f-4023-b5c1-d409de1a9537" + }, + { + "routeId": "L228", + "platformId": "U1014Z1", + "id": "cc61d3d1-1c8c-4746-96a3-ed897070dc19" + }, + { + "routeId": "L163", + "platformId": "U1014Z2", + "id": "e77d11a9-7cb4-4513-b569-0d777afa58cb" + }, + { + "routeId": "L208", + "platformId": "U1014Z2", + "id": "9981112a-6bf3-470a-95a2-df4951c3e345" + }, + { + "routeId": "L204", + "platformId": "U1014Z2", + "id": "45b9f1a0-3ea2-4a84-8661-437b8f7e0f07" + }, + { + "routeId": "L228", + "platformId": "U1014Z2", + "id": "0659c426-84d5-4619-8e74-83ca0f5f8138" + }, + { + "routeId": "L145", + "platformId": "U1015Z1", + "id": "eae252e3-97a1-48ca-abc5-5ce1b341ca6b" + }, + { + "routeId": "L250", + "platformId": "U1016Z1", + "id": "05017a6f-ba11-4354-8491-069cb0b88820" + }, + { + "routeId": "L909", + "platformId": "U1016Z1", + "id": "e7222b8a-89e6-453d-b850-7f5e89a412e4" + }, + { + "routeId": "L163", + "platformId": "U1016Z1", + "id": "bfce1d99-1726-4fb7-b09e-f371d988b828" + }, + { + "routeId": "L211", + "platformId": "U1016Z1", + "id": "19153755-eadd-4b12-b9b5-4c430e9296bf" + }, + { + "routeId": "L250", + "platformId": "U1016Z2", + "id": "3d0b7bd3-d55f-47f9-8f69-c4ce7449fdf4" + }, + { + "routeId": "L909", + "platformId": "U1016Z2", + "id": "6d26135c-0021-46d6-ac7a-4577adb089cd" + }, + { + "routeId": "L163", + "platformId": "U1016Z2", + "id": "7458ffb0-c20b-4f2d-88cf-1e27d0c85934" + }, + { + "routeId": "L211", + "platformId": "U1016Z2", + "id": "8bb004c4-4cb6-422a-aa3e-d534445252a3" + }, + { + "routeId": "L391", + "platformId": "U1016Z2", + "id": "ff61729f-066e-4a4e-9235-762b731a0d6c" + }, + { + "routeId": "L245", + "platformId": "U1017Z1", + "id": "7e9af6c6-0826-40ae-bc03-6d4d55a0fae4" + }, + { + "routeId": "L155", + "platformId": "U1018Z1", + "id": "aa5d4c5e-cdcb-4e41-8ec7-69386b4316e6" + }, + { + "routeId": "L155", + "platformId": "U1018Z2", + "id": "500dc255-c5f4-4b48-838f-99a0a969fb8b" + }, + { + "routeId": "L5", + "platformId": "U1019Z1", + "id": "4b7adcd1-bf4b-4a8b-b922-fed4d0dce653" + }, + { + "routeId": "L12", + "platformId": "U1019Z1", + "id": "59f86ad4-c505-4ff6-80da-29bc0c7bfeb7" + }, + { + "routeId": "L20", + "platformId": "U1019Z1", + "id": "0db47ad9-b4b6-416d-b446-b3feaf4641f1" + }, + { + "routeId": "L94", + "platformId": "U1019Z1", + "id": "3b2227d3-8417-4477-bd10-4973ab31c0e7" + }, + { + "routeId": "L5", + "platformId": "U1019Z2", + "id": "5b72c8f3-43cc-4379-97d3-0b7186d01258" + }, + { + "routeId": "L12", + "platformId": "U1019Z2", + "id": "7837ead1-d680-49b4-a34c-a504a82dee9b" + }, + { + "routeId": "L20", + "platformId": "U1019Z2", + "id": "896451c5-ece8-4de9-b7ba-17d422362c77" + }, + { + "routeId": "L94", + "platformId": "U1019Z2", + "id": "a2ce8baf-d7c2-43b0-b17a-27d726771416" + }, + { + "routeId": "L203", + "platformId": "U1020Z1", + "id": "39d23023-bbbd-4ce9-9644-d0345a5f4cf6" + }, + { + "routeId": "L203", + "platformId": "U1020Z2", + "id": "52a11aeb-1641-4188-b528-e5496b4dd0a9" + }, + { + "routeId": "L104", + "platformId": "U1021Z1", + "id": "cc2ab503-2d60-43d4-a943-a04f3cb5b185" + }, + { + "routeId": "L172", + "platformId": "U1021Z1", + "id": "42cd0dfb-5b16-4412-a2ff-286ba864032e" + }, + { + "routeId": "L181", + "platformId": "U1022Z1", + "id": "30283ed0-f331-4e48-8cdc-eeebfb0bf88b" + }, + { + "routeId": "L909", + "platformId": "U1022Z1", + "id": "44d51f59-ecbc-474f-bf34-750b53087e19" + }, + { + "routeId": "L171", + "platformId": "U1022Z1", + "id": "ac74ca05-a4bb-4f65-a236-9769e1ac2330" + }, + { + "routeId": "L190", + "platformId": "U1023Z1", + "id": "e49b7815-a010-475c-bbb0-ac78a5a3361c" + }, + { + "routeId": "L190", + "platformId": "U1023Z2", + "id": "4fcde006-8149-4ab6-98fc-52171763e79f" + }, + { + "routeId": "L111", + "platformId": "U1024Z1", + "id": "cfe1433e-2749-4704-9d8c-5380e77b8c0e" + }, + { + "routeId": "L329", + "platformId": "U1024Z1", + "id": "46a74453-1097-4bdb-9a69-ebd8b0caa1a8" + }, + { + "routeId": "L111", + "platformId": "U1024Z2", + "id": "99d4d1df-8bfa-4bd3-8a80-3f5952f78245" + }, + { + "routeId": "L329", + "platformId": "U1024Z2", + "id": "c8d3cc01-d22c-44b8-9ddf-5a6916b23b87" + }, + { + "routeId": "L245", + "platformId": "U1026Z1", + "id": "c9698a26-d125-4260-bd05-a7d17395782c" + }, + { + "routeId": "L365", + "platformId": "U1027Z1", + "id": "1c056d64-a09a-4169-8cd0-37cba28d8787" + }, + { + "routeId": "L174", + "platformId": "U1029Z1", + "id": "ffbc2c80-db67-43eb-aa26-5573ec06a5ee" + }, + { + "routeId": "L225", + "platformId": "U1029Z1", + "id": "fea43a2b-2013-4bc7-a1c3-865232670a99" + }, + { + "routeId": "L902", + "platformId": "U1029Z1", + "id": "81463ab5-e1a9-479a-b125-7253156af0d9" + }, + { + "routeId": "L904", + "platformId": "U1029Z1", + "id": "01a85e09-d540-4952-9a1f-de8398e98b87" + }, + { + "routeId": "L352", + "platformId": "U1029Z1", + "id": "4f6e15c3-bcb6-45e7-85f0-411cf61e5a76" + }, + { + "routeId": "L301", + "platformId": "U1029Z1", + "id": "e01abfc9-e254-41a5-83f7-b92281447674" + }, + { + "routeId": "L174", + "platformId": "U1029Z2", + "id": "f6fdd7b7-306f-450d-8a4f-b5e39aa499e8" + }, + { + "routeId": "L225", + "platformId": "U1029Z2", + "id": "f4854638-0a4b-481a-8796-7c5d25167b3a" + }, + { + "routeId": "L902", + "platformId": "U1029Z2", + "id": "c123b8c7-c314-4ac8-98c1-eaa1d619bdf7" + }, + { + "routeId": "L904", + "platformId": "U1029Z2", + "id": "e26b6d91-4e65-4742-94af-86d7a83ef548" + }, + { + "routeId": "L352", + "platformId": "U1029Z2", + "id": "9b0bbbed-2f0b-4990-b2f5-c707a538da08" + }, + { + "routeId": "L301", + "platformId": "U1029Z2", + "id": "ddf019b5-2f08-436e-85ae-a07ac9a8d4fe" + }, + { + "routeId": "L241", + "platformId": "U102Z1", + "id": "fc82ed3f-42ed-40c5-9556-c4f7889d3b66" + }, + { + "routeId": "L129", + "platformId": "U102Z1", + "id": "c0af0c47-01c1-4e4b-ad76-f84694c4fdf0" + }, + { + "routeId": "L907", + "platformId": "U102Z1", + "id": "5d1370db-1fec-42fb-9f5a-e16a35a31cdd" + }, + { + "routeId": "L318", + "platformId": "U102Z1", + "id": "7e734db3-7d8a-49e5-8d0d-32ae5708ecc1" + }, + { + "routeId": "L1804", + "platformId": "U102Z11", + "id": "fd6947ed-cef4-47ba-bd60-56ac3a33339f" + }, + { + "routeId": "L241", + "platformId": "U102Z2", + "id": "7b5b4274-db36-416e-bc30-491596f3fe70" + }, + { + "routeId": "L129", + "platformId": "U102Z2", + "id": "aa6fea7a-ddea-41a3-9e98-81c16f057a71" + }, + { + "routeId": "L907", + "platformId": "U102Z2", + "id": "83022840-8f39-4f98-babf-e342b765285b" + }, + { + "routeId": "L318", + "platformId": "U102Z2", + "id": "3a07ef18-717b-44f6-bd8d-e0f9313aa633" + }, + { + "routeId": "L5", + "platformId": "U1030Z1", + "id": "a07cf378-6b31-4098-b1af-cd4a70bafd69" + }, + { + "routeId": "L12", + "platformId": "U1030Z1", + "id": "003228f1-b56e-40dd-8322-ab1f20c2691c" + }, + { + "routeId": "L20", + "platformId": "U1030Z1", + "id": "8ec60f98-e15e-43da-b72d-1faa76dcea77" + }, + { + "routeId": "L94", + "platformId": "U1030Z1", + "id": "6b3e54e0-01c1-4de2-ad7c-2fe7c7c7a538" + }, + { + "routeId": "L5", + "platformId": "U1030Z2", + "id": "bc954a69-f255-4daf-8915-71c144003b61" + }, + { + "routeId": "L12", + "platformId": "U1030Z2", + "id": "84f725a8-0f79-4954-872e-bf36d106988b" + }, + { + "routeId": "L20", + "platformId": "U1030Z2", + "id": "b67f78d7-a288-4618-b6df-afb8f9ea5f9d" + }, + { + "routeId": "L94", + "platformId": "U1030Z2", + "id": "daab65ea-6a24-4bde-b1fa-6b64befe1435" + }, + { + "routeId": "L104", + "platformId": "U1030Z3", + "id": "92e80af6-649e-4539-9315-cc41a6851149" + }, + { + "routeId": "L120", + "platformId": "U1030Z3", + "id": "ed8ff196-1a54-4a9f-be38-1283addc5cc9" + }, + { + "routeId": "L170", + "platformId": "U1030Z3", + "id": "07342ae6-2355-4191-a530-3d525c70976e" + }, + { + "routeId": "L130", + "platformId": "U1030Z3", + "id": "e839bfb7-f436-4f36-956d-1910a8ce6764" + }, + { + "routeId": "L951", + "platformId": "U1030Z3", + "id": "9da5a7ec-14b2-4f93-9add-0810df044d5b" + }, + { + "routeId": "L104", + "platformId": "U1030Z4", + "id": "1ac057ed-0c04-4a6b-8277-5e6299ba40c5" + }, + { + "routeId": "L120", + "platformId": "U1030Z4", + "id": "b6b0a5a0-a240-4224-9d7c-bce8f54e3e4d" + }, + { + "routeId": "L170", + "platformId": "U1030Z4", + "id": "8a938d7e-7423-441a-87d7-e7a58107dc72" + }, + { + "routeId": "L130", + "platformId": "U1030Z4", + "id": "5eefe23a-51b2-4065-825a-2654506c6a79" + }, + { + "routeId": "L951", + "platformId": "U1030Z4", + "id": "2f90a07d-d41a-4ead-9a7f-551866eeebbf" + }, + { + "routeId": "L141", + "platformId": "U1031Z1", + "id": "66364d84-886c-479b-a0f7-862f621a10be" + }, + { + "routeId": "L912", + "platformId": "U1031Z1", + "id": "8954f36a-aff2-4cba-bb6f-f9fe32f6462c" + }, + { + "routeId": "L171", + "platformId": "U1031Z1", + "id": "8cbf8371-0689-4048-a0f1-716d0fe418e1" + }, + { + "routeId": "L204", + "platformId": "U1031Z1", + "id": "aa625a1e-e080-4670-acc0-acca0ca4a43a" + }, + { + "routeId": "L344", + "platformId": "U1031Z1", + "id": "bec18cfb-6c20-4dac-ba93-39a9cd6176f7" + }, + { + "routeId": "L303", + "platformId": "U1031Z1", + "id": "1668208a-a4b5-4a32-b4ae-2e0828b1f8b2" + }, + { + "routeId": "L353", + "platformId": "U1031Z1", + "id": "fcc964f7-5add-4b16-ab8b-fd013392395e" + }, + { + "routeId": "L354", + "platformId": "U1031Z1", + "id": "acdb53f3-18ec-404e-8b5b-3aba32c6d5e8" + }, + { + "routeId": "L141", + "platformId": "U1031Z2", + "id": "2f539b6b-f201-4c40-bdd5-a9da72fe82a3" + }, + { + "routeId": "L912", + "platformId": "U1031Z2", + "id": "b31ceaec-1f22-4bc1-93bc-c5d329d5507b" + }, + { + "routeId": "L171", + "platformId": "U1031Z2", + "id": "794eb0d9-c0d3-419c-a3a0-a2c1f65270e0" + }, + { + "routeId": "L204", + "platformId": "U1031Z2", + "id": "6cf81aaa-f5a6-4eea-8148-27c82172ee0b" + }, + { + "routeId": "L344", + "platformId": "U1031Z2", + "id": "2916f55b-ac58-45a2-b618-5c91623e9559" + }, + { + "routeId": "L353", + "platformId": "U1031Z2", + "id": "85b09607-8ad1-4414-8d3f-37141f604dc1" + }, + { + "routeId": "L303", + "platformId": "U1031Z2", + "id": "7a94e50e-3fef-462a-8104-102f1f85768b" + }, + { + "routeId": "L354", + "platformId": "U1031Z2", + "id": "19d266f4-98b0-4638-9e87-16db55ca47db" + }, + { + "routeId": "L135", + "platformId": "U1032Z1", + "id": "cd7d9aff-2481-48ea-b5ce-6b0ec31fdce1" + }, + { + "routeId": "L197", + "platformId": "U1032Z1", + "id": "0b5b9bb9-6cbf-4d2a-a47c-c87cbd444a1d" + }, + { + "routeId": "L911", + "platformId": "U1032Z1", + "id": "28d4954a-7e96-4e3b-b64b-f948436c7113" + }, + { + "routeId": "L203", + "platformId": "U1032Z1", + "id": "a7a22af1-26c2-4c0e-b3d8-0bf26a41841c" + }, + { + "routeId": "L135", + "platformId": "U1032Z2", + "id": "44d9e053-36b0-41a1-8abd-566246f2d8be" + }, + { + "routeId": "L197", + "platformId": "U1032Z2", + "id": "17c450f4-719d-4aec-b536-67cae8d4c16d" + }, + { + "routeId": "L911", + "platformId": "U1032Z2", + "id": "fa939549-40de-4e4e-9c9a-1364b5ef4269" + }, + { + "routeId": "L203", + "platformId": "U1032Z2", + "id": "2527eec6-6051-4a00-84b2-7cef3d99d6b3" + }, + { + "routeId": "L111", + "platformId": "U1033Z1", + "id": "210632c6-b0dc-49c7-a79e-4d65f620003f" + }, + { + "routeId": "L329", + "platformId": "U1033Z1", + "id": "593c09dc-4104-4edf-b4bd-868cc525d7a9" + }, + { + "routeId": "L111", + "platformId": "U1033Z2", + "id": "8705fd78-0f92-4793-b90c-26dcd0c2445c" + }, + { + "routeId": "L329", + "platformId": "U1033Z2", + "id": "d48b6080-121d-4eee-9284-efbafc5c3a8d" + }, + { + "routeId": "L110", + "platformId": "U1034Z1", + "id": "2509997e-f0d8-4976-85d9-ad14c5c6d5e0" + }, + { + "routeId": "L110", + "platformId": "U1034Z2", + "id": "d78fbf24-9b72-4d15-be54-7a91f137de59" + }, + { + "routeId": "L150", + "platformId": "U1035Z1", + "id": "1871f3d6-489d-43ac-bb62-a17267a0cebc" + }, + { + "routeId": "L190", + "platformId": "U1035Z1", + "id": "902e1e6a-c51a-4830-903f-e1927857c104" + }, + { + "routeId": "L910", + "platformId": "U1035Z1", + "id": "a7456d53-8522-474d-a10d-965b3e98aeb5" + }, + { + "routeId": "L150", + "platformId": "U1035Z2", + "id": "58a5b7eb-8e27-42be-b292-9e8e4541c0e9" + }, + { + "routeId": "L190", + "platformId": "U1035Z2", + "id": "c58ae9dd-f603-4773-ad6d-1a4bb6ff111d" + }, + { + "routeId": "L910", + "platformId": "U1035Z2", + "id": "e76013f4-85e3-43f6-9754-fcb195f5f376" + }, + { + "routeId": "L150", + "platformId": "U1036Z1", + "id": "2d13015d-42e0-428e-9cef-6aef0e0890e9" + }, + { + "routeId": "L190", + "platformId": "U1036Z1", + "id": "4db7ad4c-1c62-41db-addb-5149b3c081dc" + }, + { + "routeId": "L910", + "platformId": "U1036Z1", + "id": "1ca609ad-414d-49f8-94f9-b086e3a85148" + }, + { + "routeId": "L150", + "platformId": "U1036Z2", + "id": "d8598122-9fe2-4f10-933f-faee2217211d" + }, + { + "routeId": "L190", + "platformId": "U1036Z2", + "id": "9b533d8c-6c8d-4d14-9287-28e86844e41e" + }, + { + "routeId": "L910", + "platformId": "U1036Z2", + "id": "d12965d3-c1e3-42ff-b64a-29b008efa0db" + }, + { + "routeId": "L150", + "platformId": "U1037Z1", + "id": "97013cb9-3b8b-466d-b0dc-b6d83f640489" + }, + { + "routeId": "L190", + "platformId": "U1037Z1", + "id": "af0eb576-7095-4f69-85f7-4772342004d0" + }, + { + "routeId": "L910", + "platformId": "U1037Z1", + "id": "67ce569d-9603-49ba-994b-7dff77b20d59" + }, + { + "routeId": "L150", + "platformId": "U1037Z2", + "id": "1eafe53b-2ec2-4d60-8f09-854384f5b6c1" + }, + { + "routeId": "L190", + "platformId": "U1037Z2", + "id": "3feef419-3138-4b33-b9fa-eb68752b2fb1" + }, + { + "routeId": "L910", + "platformId": "U1037Z2", + "id": "4807b11b-09c4-4331-8209-0abe2c92f715" + }, + { + "routeId": "L154", + "platformId": "U1038Z1", + "id": "4bb9f88c-222b-48bb-abde-c37eea33978f" + }, + { + "routeId": "L901", + "platformId": "U1038Z1", + "id": "5ff72a07-76dd-4afc-8d1a-701488b0fca5" + }, + { + "routeId": "L357", + "platformId": "U1038Z1", + "id": "651f8523-b390-4ca5-89c2-b0f255690bdd" + }, + { + "routeId": "L327", + "platformId": "U1038Z1", + "id": "b3d7ef0a-9502-4a39-bee1-ed2e3daa9a55" + }, + { + "routeId": "L331", + "platformId": "U1038Z1", + "id": "89b39850-4221-4c96-bd8b-fd5d4abd9786" + }, + { + "routeId": "L154", + "platformId": "U1038Z2", + "id": "fb025b49-2668-468a-a61e-c969594e724f" + }, + { + "routeId": "L901", + "platformId": "U1038Z2", + "id": "dc31d1ad-31b1-49d4-b510-03fe4a5a36d7" + }, + { + "routeId": "L357", + "platformId": "U1038Z2", + "id": "3d13a5ac-4ff6-4fc3-987b-b88455b631a1" + }, + { + "routeId": "L327", + "platformId": "U1038Z2", + "id": "3fb05488-2bf3-4fae-87d1-61bd5cf3f107" + }, + { + "routeId": "L331", + "platformId": "U1038Z2", + "id": "d057cc5a-c494-4700-883e-882436f13f2c" + }, + { + "routeId": "L129", + "platformId": "U1039Z1", + "id": "15b69fe7-126e-4a74-b1c2-0cb619ab7245" + }, + { + "routeId": "L247", + "platformId": "U1039Z1", + "id": "239fae8c-28ff-47e9-baf2-54c7bf200617" + }, + { + "routeId": "L907", + "platformId": "U1039Z1", + "id": "e2710761-87c8-4e24-b73f-18541c6d4688" + }, + { + "routeId": "L318", + "platformId": "U1039Z1", + "id": "dcd8b17f-6999-4e0b-8f0d-4e660c2ffa81" + }, + { + "routeId": "L129", + "platformId": "U1039Z2", + "id": "b0071aa2-78b1-4c82-8374-4a482379585c" + }, + { + "routeId": "L247", + "platformId": "U1039Z2", + "id": "e2f421c9-cfa1-43b5-897c-21087d99c4e0" + }, + { + "routeId": "L907", + "platformId": "U1039Z2", + "id": "42b8b6b3-4503-425b-8d66-ff56718686de" + }, + { + "routeId": "L318", + "platformId": "U1039Z2", + "id": "a4f5b5ac-f431-4af4-885e-b51d399fb8dd" + }, + { + "routeId": "L22", + "platformId": "U103Z1", + "id": "f36cbad8-78f8-47a3-a79e-b3c1109c0315" + }, + { + "routeId": "L25", + "platformId": "U103Z1", + "id": "2819f8f1-ce61-4829-85c0-a30560923491" + }, + { + "routeId": "L97", + "platformId": "U103Z1", + "id": "6c22aae7-bc4b-460c-8a6c-a8f2ae6a9b9c" + }, + { + "routeId": "L22", + "platformId": "U103Z2", + "id": "cffdf5db-d8a4-4928-bbc1-6a2008161e38" + }, + { + "routeId": "L25", + "platformId": "U103Z2", + "id": "2dfb7094-05de-4e67-81f5-a55229978616" + }, + { + "routeId": "L97", + "platformId": "U103Z2", + "id": "128794de-61d8-4f43-84bb-ec5c0d6eece1" + }, + { + "routeId": "L7", + "platformId": "U1040Z1", + "id": "bbe3127d-80d9-4c53-8c4a-2c2212fcf273" + }, + { + "routeId": "L9", + "platformId": "U1040Z1", + "id": "f44e5c80-2c03-4a23-8abc-076671609721" + }, + { + "routeId": "L10", + "platformId": "U1040Z1", + "id": "a46c6068-a4fa-4223-b612-bda391986d55" + }, + { + "routeId": "L15", + "platformId": "U1040Z1", + "id": "118096e2-2d1a-4b6d-a9a4-b8a9613db6e8" + }, + { + "routeId": "L16", + "platformId": "U1040Z1", + "id": "cf67f8ca-16b4-456a-8f71-4b832e2a7a19" + }, + { + "routeId": "L98", + "platformId": "U1040Z1", + "id": "d52ef930-c149-463c-bc9c-c25dba208606" + }, + { + "routeId": "L99", + "platformId": "U1040Z1", + "id": "67b5a26a-b804-4771-9283-cf6a800838ec" + }, + { + "routeId": "L904", + "platformId": "U1040Z1", + "id": "cef09836-553d-4f62-a6f9-5a3566257a69" + }, + { + "routeId": "L907", + "platformId": "U1040Z1", + "id": "0c890d22-9bf5-4a5d-93da-aaef47186127" + }, + { + "routeId": "L908", + "platformId": "U1040Z1", + "id": "5c2b1e79-d231-471d-9b03-71011238100f" + }, + { + "routeId": "L992", + "platformId": "U1040Z101", + "id": "3c36a0f7-9549-44b6-8f20-ae5f2a4cc0d5" + }, + { + "routeId": "L992", + "platformId": "U1040Z102", + "id": "9bbd1784-33f4-44da-9943-f402f4acad86" + }, + { + "routeId": "L901", + "platformId": "U1040Z11", + "id": "c9e73203-7518-41ea-b46f-6afb5e131138" + }, + { + "routeId": "L167", + "platformId": "U1040Z12", + "id": "b0f2e790-02a2-4354-8068-271be8366297" + }, + { + "routeId": "L191", + "platformId": "U1040Z12", + "id": "964b0991-3366-406f-8fd0-a17baec6992a" + }, + { + "routeId": "L167", + "platformId": "U1040Z14", + "id": "dac99116-03d0-4264-ae0d-0417857886de" + }, + { + "routeId": "L191", + "platformId": "U1040Z14", + "id": "c93f4f27-cfab-4ede-ba69-3debd0a0f66c" + }, + { + "routeId": "L820", + "platformId": "U1040Z14", + "id": "7b8758e7-f976-4c9d-9d89-55885025e8b8" + }, + { + "routeId": "L120", + "platformId": "U1040Z16", + "id": "3699fed2-e6fe-41da-9868-f8e55c4d8427" + }, + { + "routeId": "L231", + "platformId": "U1040Z16", + "id": "af2a115a-1184-4e76-9b0d-c98f531ec61d" + }, + { + "routeId": "L137", + "platformId": "U1040Z16", + "id": "ad103a7f-409a-4fe8-aa8e-79e2dcbcd2c5" + }, + { + "routeId": "L167", + "platformId": "U1040Z16", + "id": "48cb8aed-dd29-42fd-a743-c9551e34f58d" + }, + { + "routeId": "L191", + "platformId": "U1040Z16", + "id": "e994ad7a-05df-435d-a534-2f953802f90a" + }, + { + "routeId": "L820", + "platformId": "U1040Z16", + "id": "a3f8d721-0ef1-485f-93ff-f68d199084e6" + }, + { + "routeId": "L167", + "platformId": "U1040Z18", + "id": "a74104bc-e343-40c8-836f-3c25cf868eed" + }, + { + "routeId": "L191", + "platformId": "U1040Z18", + "id": "be1e9f05-153f-4217-85b8-918988ae6f1d" + }, + { + "routeId": "L137", + "platformId": "U1040Z19", + "id": "b1e5016e-508f-4035-b8c7-3f9e0e353630" + }, + { + "routeId": "L7", + "platformId": "U1040Z2", + "id": "d37b83d6-cf86-41c6-a264-0cb2dc4b2443" + }, + { + "routeId": "L9", + "platformId": "U1040Z2", + "id": "036264bd-4883-4eed-beba-90361459c93b" + }, + { + "routeId": "L10", + "platformId": "U1040Z2", + "id": "88ec4060-9a2f-414d-a710-2ab40a1f2fb1" + }, + { + "routeId": "L15", + "platformId": "U1040Z2", + "id": "1475334a-4ee4-44ed-a406-1d82186622cc" + }, + { + "routeId": "L16", + "platformId": "U1040Z2", + "id": "f531a89f-b5ac-4fb0-bcf1-6bdf8946ba1f" + }, + { + "routeId": "L98", + "platformId": "U1040Z2", + "id": "0755cccc-4100-40d4-8de8-4a07c8202883" + }, + { + "routeId": "L99", + "platformId": "U1040Z2", + "id": "8b38d1a2-9b68-429f-bcf1-50b2d89171be" + }, + { + "routeId": "L904", + "platformId": "U1040Z2", + "id": "441e68e3-8b5b-48f0-89af-6f93cd2a0d14" + }, + { + "routeId": "L908", + "platformId": "U1040Z2", + "id": "d54878fc-c6d0-4229-b3ce-903bad1ff647" + }, + { + "routeId": "L120", + "platformId": "U1040Z21", + "id": "7f3c1b97-1aba-4480-8f1d-b3c034a3bd9d" + }, + { + "routeId": "L231", + "platformId": "U1040Z21", + "id": "30be9453-98b3-4607-a14a-8325c83a0af4" + }, + { + "routeId": "L5", + "platformId": "U1040Z3", + "id": "92358f1c-46ee-4796-99c3-c5f9fa067c6a" + }, + { + "routeId": "L12", + "platformId": "U1040Z3", + "id": "606fe348-172a-4f41-ac67-1faaef7ca287" + }, + { + "routeId": "L20", + "platformId": "U1040Z3", + "id": "4c2f6ed7-22ff-47d8-a0c3-3f8c368c580c" + }, + { + "routeId": "L94", + "platformId": "U1040Z3", + "id": "9baa3041-35d1-423f-ac1b-3b0189d1ba2c" + }, + { + "routeId": "L820", + "platformId": "U1040Z3", + "id": "5a20c131-d298-42c4-acc5-b3734c005635" + }, + { + "routeId": "L5", + "platformId": "U1040Z4", + "id": "f190c271-d874-4a19-b291-7e0f4d845715" + }, + { + "routeId": "L12", + "platformId": "U1040Z4", + "id": "fcbbf9b9-7bdf-4bd2-84e7-9bb721adc30d" + }, + { + "routeId": "L20", + "platformId": "U1040Z4", + "id": "192067a6-96a6-4934-909b-0a686992351a" + }, + { + "routeId": "L94", + "platformId": "U1040Z4", + "id": "a6e7dd3c-0463-4a81-9ebe-974d9e9df13c" + }, + { + "routeId": "L901", + "platformId": "U1040Z4", + "id": "b0422b6a-4cbb-44f9-b7b7-f9182fcf641b" + }, + { + "routeId": "L907", + "platformId": "U1040Z4", + "id": "303cfe05-585d-4eaa-bba0-5aadffc3fa9f" + }, + { + "routeId": "L5", + "platformId": "U1040Z5", + "id": "90fb3cb7-40c0-454d-b582-effc6aeedc1c" + }, + { + "routeId": "L12", + "platformId": "U1040Z5", + "id": "67404a17-11de-4fec-a886-574cf1aa8ad2" + }, + { + "routeId": "L20", + "platformId": "U1040Z5", + "id": "ddfe3cf4-269c-446f-a5c3-be9c38898d29" + }, + { + "routeId": "L94", + "platformId": "U1040Z5", + "id": "2b894933-7610-4d0d-9e05-49e915cfb55a" + }, + { + "routeId": "L901", + "platformId": "U1040Z5", + "id": "9e522e1b-9a83-4f96-a5dd-f42edb352773" + }, + { + "routeId": "L907", + "platformId": "U1040Z5", + "id": "c540d30a-95f8-471a-a154-8db8c96c8699" + }, + { + "routeId": "L5", + "platformId": "U1040Z6", + "id": "71055e42-6cb5-4aa6-b060-4085bd0225f7" + }, + { + "routeId": "L12", + "platformId": "U1040Z6", + "id": "2ab6f1e6-51f4-454e-8759-ea181e466134" + }, + { + "routeId": "L20", + "platformId": "U1040Z6", + "id": "ff332136-fa13-4caa-851a-976f3199dc69" + }, + { + "routeId": "L94", + "platformId": "U1040Z6", + "id": "1b82c675-d6be-4f3c-8266-1b774ed1c85c" + }, + { + "routeId": "L901", + "platformId": "U1040Z6", + "id": "a9cf681e-5aaa-4617-8339-241e2b36c011" + }, + { + "routeId": "L907", + "platformId": "U1040Z6", + "id": "17e2e9ec-5d90-4e74-955f-fe95ea0ae545" + }, + { + "routeId": "L141", + "platformId": "U1041Z1", + "id": "90d5619d-7418-40d6-8032-fca1e56d5a89" + }, + { + "routeId": "L912", + "platformId": "U1041Z1", + "id": "e21401fa-6254-4599-8911-13604bf1cc04" + }, + { + "routeId": "L171", + "platformId": "U1041Z1", + "id": "92468815-6292-4cd4-83ff-c63540d43454" + }, + { + "routeId": "L209", + "platformId": "U1041Z1", + "id": "dca9ec48-cbe4-44dc-abf0-36f22fea7c1b" + }, + { + "routeId": "L224", + "platformId": "U1041Z1", + "id": "fa40fb23-2369-40c9-8f34-8dd6c499b32f" + }, + { + "routeId": "L209", + "platformId": "U1041Z13", + "id": "14af040f-4cdb-47bc-9564-cb5b5fc66a00" + }, + { + "routeId": "L224", + "platformId": "U1041Z13", + "id": "b2e79ae2-7b41-4bc4-a86a-b9593f565d48" + }, + { + "routeId": "L209", + "platformId": "U1041Z14", + "id": "f888852a-32c8-45a2-b027-992f51a1587b" + }, + { + "routeId": "L224", + "platformId": "U1041Z14", + "id": "825a8b85-6331-487c-98bf-da4d469444b8" + }, + { + "routeId": "L141", + "platformId": "U1041Z2", + "id": "29735b14-cfab-4aa8-874d-0e803f39ace4" + }, + { + "routeId": "L912", + "platformId": "U1041Z2", + "id": "df836d8f-ef3e-46dd-947b-2d637b44a2da" + }, + { + "routeId": "L171", + "platformId": "U1041Z2", + "id": "f1475943-fc27-4881-9bbf-6ee0df5479d8" + }, + { + "routeId": "L224", + "platformId": "U1041Z2", + "id": "203d92b6-4d10-4cae-9add-40de712dc990" + }, + { + "routeId": "L247", + "platformId": "U1042Z1", + "id": "961c702e-00d0-417b-a7b3-8d7904b3a0c2" + }, + { + "routeId": "L244", + "platformId": "U1042Z1", + "id": "de3d9e2d-fa28-4ca4-967f-40140df5d58f" + }, + { + "routeId": "L246", + "platformId": "U1042Z1", + "id": "64067e6c-10c7-4463-8994-5475f91170e1" + }, + { + "routeId": "L247", + "platformId": "U1042Z2", + "id": "0c44f1d9-c857-40f6-b2d4-486546d8b46f" + }, + { + "routeId": "L244", + "platformId": "U1042Z2", + "id": "a4b234b5-9041-40fa-887e-5db492b1f03b" + }, + { + "routeId": "L246", + "platformId": "U1042Z2", + "id": "b6266931-843a-479c-bd7d-eccf3149c07c" + }, + { + "routeId": "L247", + "platformId": "U1043Z1", + "id": "1121ac0a-b715-46f5-aac2-0ba58590f2d4" + }, + { + "routeId": "L246", + "platformId": "U1043Z1", + "id": "4d4def46-e66f-4dea-a05d-966d51207076" + }, + { + "routeId": "L247", + "platformId": "U1043Z2", + "id": "a4e31816-060f-4204-bdce-7d1c57f705c2" + }, + { + "routeId": "L246", + "platformId": "U1043Z2", + "id": "0526f85c-0b83-4a78-860d-16b107951d4e" + }, + { + "routeId": "L7", + "platformId": "U1044Z1", + "id": "6c6462c4-65ed-41ca-9b8d-35a70cfc444b" + }, + { + "routeId": "L7", + "platformId": "U1044Z2", + "id": "41107b94-decb-4c11-bbac-c514d71c6cda" + }, + { + "routeId": "L20", + "platformId": "U1046Z1", + "id": "eb72ca2f-0283-4dfd-b226-f3fca5825442" + }, + { + "routeId": "L26", + "platformId": "U1046Z1", + "id": "a5a8e57c-ee4c-483e-bf96-ef91e8e66ac3" + }, + { + "routeId": "L191", + "platformId": "U1046Z1", + "id": "f95a3c2e-8e12-4007-acfb-469a16be3103" + }, + { + "routeId": "L910", + "platformId": "U1046Z1", + "id": "dcbeb46f-85a8-4f67-8048-49ec6d9edb13" + }, + { + "routeId": "L20", + "platformId": "U1046Z2", + "id": "e2842181-ae88-4b52-bf04-b216637bf6d9" + }, + { + "routeId": "L26", + "platformId": "U1046Z2", + "id": "d21813da-3fd2-401a-bc65-3193b0e36929" + }, + { + "routeId": "L191", + "platformId": "U1046Z2", + "id": "db779d44-615a-4db7-ae20-29e368090e95" + }, + { + "routeId": "L910", + "platformId": "U1046Z2", + "id": "6ec04002-c457-4e23-b648-46406749b82f" + }, + { + "routeId": "L161", + "platformId": "U1047Z1", + "id": "1ff8c07a-c694-4f39-b3cd-289bd3731a11" + }, + { + "routeId": "L907", + "platformId": "U1047Z1", + "id": "6ce288fa-b943-402a-8fc9-e4d8f75bd990" + }, + { + "routeId": "L312", + "platformId": "U1047Z1", + "id": "d44677b3-e794-4944-8864-bc1463b900d0" + }, + { + "routeId": "L161", + "platformId": "U1047Z2", + "id": "48f92373-cd45-40c7-8adc-158b8d4c3066" + }, + { + "routeId": "L907", + "platformId": "U1047Z2", + "id": "b60d326c-6080-4cce-90ca-09eddb4478ce" + }, + { + "routeId": "L312", + "platformId": "U1047Z2", + "id": "93b83116-ab91-4ac5-968b-2ecde036b6a4" + }, + { + "routeId": "L121", + "platformId": "U1048Z1", + "id": "4056550b-dd91-4023-b43b-803b0b81761a" + }, + { + "routeId": "L117", + "platformId": "U1048Z1", + "id": "d4057088-208a-4e5a-b3d0-d244b5ef9690" + }, + { + "routeId": "L203", + "platformId": "U1048Z1", + "id": "c46f5491-9486-4597-b025-041d29d89950" + }, + { + "routeId": "L121", + "platformId": "U1048Z2", + "id": "23474c2f-5360-4192-832b-21ab8f9e1bdc" + }, + { + "routeId": "L117", + "platformId": "U1048Z2", + "id": "55a11201-da7f-4ebd-8a5d-ac2f678e8e91" + }, + { + "routeId": "L203", + "platformId": "U1048Z2", + "id": "4595f4ea-82e5-4d89-ac3d-4a9b378ba3ec" + }, + { + "routeId": "L1308", + "platformId": "U1048Z301", + "id": "a97e5537-dc04-49c1-8523-a4f735a4f1e9" + }, + { + "routeId": "L1388", + "platformId": "U1048Z301", + "id": "56232298-e620-40c3-910b-3adf66b28b42" + }, + { + "routeId": "L170", + "platformId": "U1049Z1", + "id": "c9a2036d-1a07-4525-b820-f7e555bb3a87" + }, + { + "routeId": "L130", + "platformId": "U1049Z1", + "id": "6b2afb9c-c590-48d6-84ea-9840ed69d740" + }, + { + "routeId": "L170", + "platformId": "U1049Z2", + "id": "3eb4a5aa-57ff-4d32-8106-1dc4f3ba36bb" + }, + { + "routeId": "L130", + "platformId": "U1049Z2", + "id": "37cdfd3c-1b76-4019-be51-88759d05bbb4" + }, + { + "routeId": "L5", + "platformId": "U1049Z3", + "id": "4827d9b9-c1c0-4983-aecd-44d2ab290049" + }, + { + "routeId": "L12", + "platformId": "U1049Z3", + "id": "eefc8147-c628-4a2a-b04b-c93cb9c80643" + }, + { + "routeId": "L20", + "platformId": "U1049Z3", + "id": "1b690640-9349-4fec-a64b-9724036957ac" + }, + { + "routeId": "L94", + "platformId": "U1049Z3", + "id": "95157466-1662-4295-b0e3-41eae88bbd0a" + }, + { + "routeId": "L5", + "platformId": "U1049Z4", + "id": "16e113df-55ee-41dd-bcb1-c0d0f70d7e6d" + }, + { + "routeId": "L12", + "platformId": "U1049Z4", + "id": "cb8340bc-f309-4fd1-b140-7d36b5ff4694" + }, + { + "routeId": "L20", + "platformId": "U1049Z4", + "id": "d89460ed-fce4-4d31-b5af-acd475d84d6c" + }, + { + "routeId": "L94", + "platformId": "U1049Z4", + "id": "3d1fef4d-d386-49df-85c5-11433dfb3d70" + }, + { + "routeId": "L225", + "platformId": "U104Z1", + "id": "b654f8d6-8f3f-4061-adb5-ef45d982f19a" + }, + { + "routeId": "L225", + "platformId": "U104Z4", + "id": "02578694-849d-42f9-9b41-fba9d72c0fb1" + }, + { + "routeId": "L365", + "platformId": "U104Z4", + "id": "885031f7-00c4-4910-bdf5-7a9858caa2ce" + }, + { + "routeId": "L120", + "platformId": "U1050Z1", + "id": "d025827e-318d-40fd-b1d8-4ed6b9208f86" + }, + { + "routeId": "L170", + "platformId": "U1050Z1", + "id": "691c4684-cc91-4760-ac5a-c5caeb564ad5" + }, + { + "routeId": "L130", + "platformId": "U1050Z1", + "id": "ea7bbff8-c556-4bba-bedb-d5b41494a54f" + }, + { + "routeId": "L951", + "platformId": "U1050Z1", + "id": "e2a95416-1a5e-4112-8f01-153497ac8685" + }, + { + "routeId": "L120", + "platformId": "U1050Z2", + "id": "39945620-cc9b-4143-96b3-7d5a6fe990c6" + }, + { + "routeId": "L170", + "platformId": "U1050Z2", + "id": "63b55d29-aab1-48bf-8f8a-d6304dba19ab" + }, + { + "routeId": "L130", + "platformId": "U1050Z2", + "id": "19449851-70dd-46f3-803b-22dd38815a54" + }, + { + "routeId": "L951", + "platformId": "U1050Z2", + "id": "bdb2c3f0-3bb3-413a-bdb7-5cbd806f40a9" + }, + { + "routeId": "L5", + "platformId": "U1050Z3", + "id": "0735ac14-82b4-4ffb-a9ba-8d9976e93b8b" + }, + { + "routeId": "L12", + "platformId": "U1050Z3", + "id": "191aa98e-2bcc-4b62-b2e1-30650cefe4c4" + }, + { + "routeId": "L20", + "platformId": "U1050Z3", + "id": "59602227-a273-4d34-82a3-690f461cd433" + }, + { + "routeId": "L94", + "platformId": "U1050Z3", + "id": "1cf2e765-177a-4002-bdce-68c922f3a4f5" + }, + { + "routeId": "L5", + "platformId": "U1050Z4", + "id": "a5cfc090-73d2-4fbe-8c24-b7a40af6042f" + }, + { + "routeId": "L12", + "platformId": "U1050Z4", + "id": "48583c2f-1687-41bd-aad5-53fb61c8b0a0" + }, + { + "routeId": "L20", + "platformId": "U1050Z4", + "id": "ec97a1bc-2ab4-4bd1-89ea-c1daf323f5a5" + }, + { + "routeId": "L94", + "platformId": "U1050Z4", + "id": "7660fd0b-247b-44cd-9b37-34d3bb682d69" + }, + { + "routeId": "L224", + "platformId": "U1051Z1", + "id": "7971aae8-9da0-4392-8d0d-9331f2234d64" + }, + { + "routeId": "L224", + "platformId": "U1051Z2", + "id": "f880273c-5e18-4ba0-bb0c-c7e691345061" + }, + { + "routeId": "L1219", + "platformId": "U1051Z301", + "id": "b70a48d2-9132-49b6-9047-b076ea46775a" + }, + { + "routeId": "L1218", + "platformId": "U1051Z301", + "id": "2c7422c9-dc85-4a43-ae3e-bcbbeb23887e" + }, + { + "routeId": "L1210", + "platformId": "U1051Z301", + "id": "8db3cc74-5b8c-47c6-916e-230c2387bebe" + }, + { + "routeId": "L1209", + "platformId": "U1051Z301", + "id": "8fffcdee-4f70-48ca-ac6c-83af3ae915bc" + }, + { + "routeId": "L1301", + "platformId": "U1051Z301", + "id": "dea5dac0-e53c-4d74-a954-0e94f255a2d2" + }, + { + "routeId": "L12", + "platformId": "U1052Z1", + "id": "9edd12d0-7383-4fc5-9a25-ee4199612aa1" + }, + { + "routeId": "L94", + "platformId": "U1052Z1", + "id": "f4cfa659-3cc2-4e63-86d2-3b31c05ff0d1" + }, + { + "routeId": "L12", + "platformId": "U1052Z2", + "id": "68e32ce5-0081-4314-b27c-cd33f47de4ed" + }, + { + "routeId": "L94", + "platformId": "U1052Z2", + "id": "c9d2fc91-f51f-4fbd-b330-3ffc706da8a1" + }, + { + "routeId": "L12", + "platformId": "U1053Z1", + "id": "31b6c88a-fd4c-43e5-a0f7-90bb2e812c86" + }, + { + "routeId": "L94", + "platformId": "U1053Z1", + "id": "39eeb777-fb3b-49d9-bee7-926cd939a843" + }, + { + "routeId": "L12", + "platformId": "U1053Z2", + "id": "31a0ba56-85c9-4969-972d-c26c15a9cbd3" + }, + { + "routeId": "L94", + "platformId": "U1053Z2", + "id": "8600bc32-0a9b-4e5d-a219-61e52af162cc" + }, + { + "routeId": "L906", + "platformId": "U1054Z1", + "id": "9b9204d4-4a1d-44dd-823b-9bc6a133f2e0" + }, + { + "routeId": "L227", + "platformId": "U1054Z1", + "id": "3ded854d-8480-4fd3-a27d-3e57de58682a" + }, + { + "routeId": "L906", + "platformId": "U1054Z2", + "id": "df446a7f-dcba-40b2-aaff-29beba9b2d47" + }, + { + "routeId": "L227", + "platformId": "U1054Z2", + "id": "9478ac8f-13ff-4e93-af58-4dbf9b8cb144" + }, + { + "routeId": "L134", + "platformId": "U1055Z1", + "id": "70026f66-6ff2-4c8e-89ff-ca8c82b04269" + }, + { + "routeId": "L188", + "platformId": "U1055Z1", + "id": "cb584d37-2379-4344-ba00-37e2937ceb0d" + }, + { + "routeId": "L904", + "platformId": "U1055Z1", + "id": "8abe1485-3af7-4722-b106-aef1a90ad69e" + }, + { + "routeId": "L181", + "platformId": "U1056Z1", + "id": "806d551e-791e-4e2d-84fe-376ba7263ad1" + }, + { + "routeId": "L201", + "platformId": "U1056Z1", + "id": "d1c50aa3-7365-42e6-a12b-007a81d474d1" + }, + { + "routeId": "L181", + "platformId": "U1056Z2", + "id": "d065da1d-2e65-46da-bf8f-4068af65bc60" + }, + { + "routeId": "L201", + "platformId": "U1056Z2", + "id": "09ad5742-f827-42b1-be79-f1583b9f0c6d" + }, + { + "routeId": "L141", + "platformId": "U1057Z1", + "id": "cb5d8f26-1691-4239-9b99-6dafefb28dfa" + }, + { + "routeId": "L912", + "platformId": "U1057Z1", + "id": "c5ddd766-14ee-402a-9856-09665e818542" + }, + { + "routeId": "L171", + "platformId": "U1057Z1", + "id": "e545644f-5321-4ea7-b00f-7f6941528604" + }, + { + "routeId": "L224", + "platformId": "U1057Z1", + "id": "2101be7c-65f6-4825-8de1-75697ed4cadd" + }, + { + "routeId": "L141", + "platformId": "U1057Z2", + "id": "34640b98-4a29-46d1-b5f8-e34d8638554d" + }, + { + "routeId": "L912", + "platformId": "U1057Z2", + "id": "a9a3edea-ef1f-44d8-96e9-c7dc89bd465f" + }, + { + "routeId": "L171", + "platformId": "U1057Z2", + "id": "f0a5b992-f8b2-492d-83dc-b049ad904994" + }, + { + "routeId": "L224", + "platformId": "U1057Z2", + "id": "bc79a6bb-4e34-44b2-897a-e4aad84ec63b" + }, + { + "routeId": "L122", + "platformId": "U1058Z1", + "id": "3648115c-b795-4014-83f3-1b6cb5554bbc" + }, + { + "routeId": "L906", + "platformId": "U1058Z1", + "id": "92936116-d1b5-40a7-8281-4bf53fadc6b9" + }, + { + "routeId": "L363", + "platformId": "U1058Z1", + "id": "ebba6764-bb57-465d-899f-0ee824b9428c" + }, + { + "routeId": "L122", + "platformId": "U1058Z2", + "id": "532b9e9b-e926-4258-8b70-620506862235" + }, + { + "routeId": "L906", + "platformId": "U1058Z2", + "id": "12168c40-11f4-44ca-9b49-95c34d104d3f" + }, + { + "routeId": "L363", + "platformId": "U1058Z2", + "id": "4e801e8f-5052-42cc-b42b-8b3cc01042da" + }, + { + "routeId": "L111", + "platformId": "U1059Z1", + "id": "cab5ed6b-4790-4290-9a2c-d08bd80ef250" + }, + { + "routeId": "L908", + "platformId": "U1059Z1", + "id": "f10e4f34-5900-421a-9af4-e1833d939ff2" + }, + { + "routeId": "L228", + "platformId": "U1059Z1", + "id": "2d9a97e1-b023-4acc-916a-f6b3dee26950" + }, + { + "routeId": "L240", + "platformId": "U1059Z1", + "id": "5dce657e-5b54-48bc-8d1d-ec8554f13357" + }, + { + "routeId": "L329", + "platformId": "U1059Z1", + "id": "21dc83f0-6885-4421-aeba-a4aff62b5974" + }, + { + "routeId": "L111", + "platformId": "U1059Z2", + "id": "33599489-3caa-4e77-b773-508b20921bba" + }, + { + "routeId": "L908", + "platformId": "U1059Z2", + "id": "ca85697c-75c9-4127-8a2e-9f87f69eb925" + }, + { + "routeId": "L228", + "platformId": "U1059Z2", + "id": "81374f87-013f-4430-80dc-1bca2065904a" + }, + { + "routeId": "L240", + "platformId": "U1059Z2", + "id": "dbaeff5f-a451-4705-877b-05eaf5665a6b" + }, + { + "routeId": "L329", + "platformId": "U1059Z2", + "id": "32fa386d-06e5-4656-a706-31a87a5f8518" + }, + { + "routeId": "L224", + "platformId": "U1060Z1", + "id": "4bb17091-22d6-4fa9-a7ba-cac531e33858" + }, + { + "routeId": "L224", + "platformId": "U1060Z2", + "id": "81d2bb80-bb36-4034-b57e-094ade392286" + }, + { + "routeId": "L141", + "platformId": "U1061Z1", + "id": "5e95e208-c34f-47cc-818e-e038692eac4f" + }, + { + "routeId": "L912", + "platformId": "U1061Z1", + "id": "8ae8d2cc-95a4-44b3-83d9-9aa8a5d113f4" + }, + { + "routeId": "L171", + "platformId": "U1061Z1", + "id": "fe186ffa-f5d4-4080-b139-d64fbc641f5a" + }, + { + "routeId": "L224", + "platformId": "U1061Z1", + "id": "1bf6de2f-dcd6-4e69-ba7e-92d31ebd8338" + }, + { + "routeId": "L141", + "platformId": "U1061Z2", + "id": "e00f0296-61df-47d8-b75a-3dcd3983389c" + }, + { + "routeId": "L912", + "platformId": "U1061Z2", + "id": "3092714c-cc16-4097-8453-c2df365b7591" + }, + { + "routeId": "L171", + "platformId": "U1061Z2", + "id": "92408f33-b73f-4e85-9d68-b5a7c40464ba" + }, + { + "routeId": "L224", + "platformId": "U1061Z2", + "id": "2c90e00c-b580-4ebd-9b99-31f85ccfad26" + }, + { + "routeId": "L135", + "platformId": "U1062Z1", + "id": "5c0597ac-5916-4bc9-bfb5-f2ffabc69689" + }, + { + "routeId": "L135", + "platformId": "U1062Z2", + "id": "07f91ae9-c3c6-47f4-bbc7-e86d9c3789e6" + }, + { + "routeId": "L225", + "platformId": "U1063Z1", + "id": "e1bdc87e-fe7a-4269-aa86-5dd16a527d71" + }, + { + "routeId": "L164", + "platformId": "U1063Z1", + "id": "2b4cf124-d565-4bcd-b549-8ee3ca585ff6" + }, + { + "routeId": "L214", + "platformId": "U1063Z1", + "id": "c23fa765-4cce-46aa-8b36-56d30b966936" + }, + { + "routeId": "L225", + "platformId": "U1063Z2", + "id": "d1b7bb48-f604-4b2c-8448-f10774b2e1a0" + }, + { + "routeId": "L164", + "platformId": "U1063Z2", + "id": "f563462b-7052-481f-b4fb-934b9e152a84" + }, + { + "routeId": "L214", + "platformId": "U1063Z2", + "id": "0eac73e0-7930-4448-9118-f21481e74f12" + }, + { + "routeId": "L133", + "platformId": "U1064Z1", + "id": "c54678a8-94f2-4587-bed8-0bc4792e8bd9" + }, + { + "routeId": "L908", + "platformId": "U1064Z1", + "id": "175fa2cd-ef18-40c6-b6ee-1b4439b509e1" + }, + { + "routeId": "L909", + "platformId": "U1064Z1", + "id": "519c170b-4623-4f97-8ebc-565c871ca983" + }, + { + "routeId": "L133", + "platformId": "U1064Z2", + "id": "1598b6cb-67d5-4f68-9fa5-6ed8980d6ee5" + }, + { + "routeId": "L908", + "platformId": "U1064Z2", + "id": "6dfe80a7-8473-4910-9ef7-ed11c3d4f291" + }, + { + "routeId": "L909", + "platformId": "U1064Z2", + "id": "5d799fc3-b0d3-48c4-be9a-61af668f2e5c" + }, + { + "routeId": "L365", + "platformId": "U1065Z1", + "id": "b6fbdcef-f635-425b-833f-ea5c9bfe7b01" + }, + { + "routeId": "L386", + "platformId": "U1065Z1", + "id": "0c280000-8b09-4fa3-9fca-973a1b3ce1df" + }, + { + "routeId": "L365", + "platformId": "U1065Z2", + "id": "e16c8a19-efe8-438b-a776-653c891e6a98" + }, + { + "routeId": "L386", + "platformId": "U1065Z2", + "id": "b8181290-fe33-4505-9ce3-81df8759debf" + }, + { + "routeId": "L101", + "platformId": "U1066Z1", + "id": "1d2658d4-92b2-4e94-bb3e-ef95ffda4260" + }, + { + "routeId": "L111", + "platformId": "U1066Z1", + "id": "87ceec6f-e405-40c4-b8ec-3da81cd3e3f9" + }, + { + "routeId": "L125", + "platformId": "U1066Z1", + "id": "fe2bbd21-b68d-4843-abb3-22eb1922911c" + }, + { + "routeId": "L908", + "platformId": "U1066Z1", + "id": "2e5374c0-edac-431c-bd9a-9e1c89ec8b5a" + }, + { + "routeId": "L329", + "platformId": "U1066Z1", + "id": "09be127d-ece7-461d-8414-44f56523a5df" + }, + { + "routeId": "L101", + "platformId": "U1066Z2", + "id": "4c107e51-ef16-4a12-b638-8136143c0e80" + }, + { + "routeId": "L111", + "platformId": "U1066Z2", + "id": "97175e62-fc16-4f92-9182-87fbcf1912ea" + }, + { + "routeId": "L125", + "platformId": "U1066Z2", + "id": "85389c47-5db9-46e3-82b4-7f3114f9dfab" + }, + { + "routeId": "L908", + "platformId": "U1066Z2", + "id": "ef5cffa2-0ccf-4237-bab0-fff73c239868" + }, + { + "routeId": "L329", + "platformId": "U1066Z2", + "id": "fe45cbbf-05d4-40ae-810d-729b89ccf2e4" + }, + { + "routeId": "L101", + "platformId": "U1067Z1", + "id": "f5f14caa-9fb0-40db-b05a-fc33e55aeb68" + }, + { + "routeId": "L135", + "platformId": "U1067Z1", + "id": "ac39ccd3-dee2-45c1-be41-73bf37d0f814" + }, + { + "routeId": "L101", + "platformId": "U1067Z2", + "id": "b13dd717-630c-4d72-855a-5218e61c81e8" + }, + { + "routeId": "L135", + "platformId": "U1067Z2", + "id": "c667ff01-995c-42af-917a-4ec67d258b34" + }, + { + "routeId": "L101", + "platformId": "U1068Z1", + "id": "09530ea7-f06a-48df-850b-4afbc471d409" + }, + { + "routeId": "L111", + "platformId": "U1068Z1", + "id": "fad686a8-5a0d-40a2-979e-64f859cb8ee1" + }, + { + "routeId": "L125", + "platformId": "U1068Z1", + "id": "ade45fd4-5e52-40d5-9835-f7e4882f12bc" + }, + { + "routeId": "L908", + "platformId": "U1068Z1", + "id": "f573033f-c455-4e4d-a3ab-be0cf38c04ad" + }, + { + "routeId": "L329", + "platformId": "U1068Z1", + "id": "f277f1b4-efaa-4f71-b57e-af9dfa918923" + }, + { + "routeId": "L101", + "platformId": "U1068Z2", + "id": "03e2f31a-30cb-4954-be91-4cc7f11d5458" + }, + { + "routeId": "L111", + "platformId": "U1068Z2", + "id": "92eb15c4-7f2c-40a4-a2c6-3c81b31a4799" + }, + { + "routeId": "L125", + "platformId": "U1068Z2", + "id": "967a76f3-a84d-44e4-8bb0-c4f3331d5cd5" + }, + { + "routeId": "L908", + "platformId": "U1068Z2", + "id": "8d349cb5-855a-4175-9e27-d95865f87d99" + }, + { + "routeId": "L329", + "platformId": "U1068Z2", + "id": "3423fdec-a6bf-4dd3-b585-beb05cbd221f" + }, + { + "routeId": "L154", + "platformId": "U1069Z1", + "id": "355f9d5d-5976-4291-9e68-cf2182128c59" + }, + { + "routeId": "L183", + "platformId": "U1069Z1", + "id": "6c248f1c-232c-4f54-b192-6500e4d4973f" + }, + { + "routeId": "L154", + "platformId": "U1069Z2", + "id": "e3030da4-b4e3-4752-8dd1-3af2e82dd63f" + }, + { + "routeId": "L183", + "platformId": "U1069Z2", + "id": "99d84641-e64d-4a44-8b03-dbbd33400737" + }, + { + "routeId": "L204", + "platformId": "U1069Z3", + "id": "b2668e80-fc88-4cd0-addf-a9a191ca9467" + }, + { + "routeId": "L240", + "platformId": "U1069Z3", + "id": "220466a2-7d29-4aad-9fed-94e19d528f0b" + }, + { + "routeId": "L1217", + "platformId": "U1069Z301", + "id": "093007a5-db92-4049-bd12-c4607bd0b6f8" + }, + { + "routeId": "L1249", + "platformId": "U1069Z301", + "id": "cf847b1a-43b7-424b-8abe-e7a9f9813144" + }, + { + "routeId": "L1309", + "platformId": "U1069Z301", + "id": "bd676cdb-8779-436c-9c56-dd91b0271674" + }, + { + "routeId": "L204", + "platformId": "U1069Z4", + "id": "7b5e33bf-a649-4d31-8347-a3b56171119a" + }, + { + "routeId": "L240", + "platformId": "U1069Z4", + "id": "c4987d91-7602-4365-85de-d20f366c07fa" + }, + { + "routeId": "L122", + "platformId": "U106Z1", + "id": "08d7575f-6586-4391-884d-fd99e26afbf5" + }, + { + "routeId": "L363", + "platformId": "U106Z1", + "id": "32cae72c-f362-43f6-8a1f-8cb45b0f424f" + }, + { + "routeId": "L357", + "platformId": "U106Z1", + "id": "615a63f4-a9cd-462c-8047-3ad1dc82d075" + }, + { + "routeId": "L327", + "platformId": "U106Z1", + "id": "8007405d-e3df-4948-800e-c8682d20edec" + }, + { + "routeId": "L331", + "platformId": "U106Z1", + "id": "f636698b-5edf-46f3-9e83-fe71bc37c0bb" + }, + { + "routeId": "L397", + "platformId": "U106Z1", + "id": "a42cac5e-5c7d-4d0d-9944-205b645fa4e7" + }, + { + "routeId": "L385", + "platformId": "U106Z1", + "id": "fb4bac78-b93f-48d4-b815-6f72ad88e6f8" + }, + { + "routeId": "L993", + "platformId": "U106Z101", + "id": "e044c461-030a-42b2-a69d-ab26365da1fb" + }, + { + "routeId": "L993", + "platformId": "U106Z102", + "id": "b8e7c366-0bb2-440a-baeb-cd5b5f3b61b9" + }, + { + "routeId": "L136", + "platformId": "U106Z2", + "id": "381fbbf8-dcf0-4e82-bb6f-337b24856557" + }, + { + "routeId": "L154", + "platformId": "U106Z2", + "id": "fc3f36cb-f299-4edd-868c-c87706b64618" + }, + { + "routeId": "L177", + "platformId": "U106Z2", + "id": "29546b0f-4a7a-49d2-8a11-f334d4e3b786" + }, + { + "routeId": "L181", + "platformId": "U106Z2", + "id": "b0e5774d-7eea-4b93-a024-e2031881afb9" + }, + { + "routeId": "L213", + "platformId": "U106Z2", + "id": "30863f74-30a8-4eef-9ed1-98789a42d558" + }, + { + "routeId": "L901", + "platformId": "U106Z2", + "id": "7c7a4d6d-fada-451e-bbfc-78113f876feb" + }, + { + "routeId": "L906", + "platformId": "U106Z2", + "id": "899ac652-9a2c-4d40-bbd0-2af3e1fd74be" + }, + { + "routeId": "L122", + "platformId": "U106Z4", + "id": "739b9ee9-e20f-4924-852f-0a0708541848" + }, + { + "routeId": "L363", + "platformId": "U106Z4", + "id": "81e369b1-c1b4-4c35-a695-dae30b13744a" + }, + { + "routeId": "L357", + "platformId": "U106Z4", + "id": "03ba4fbe-f6a4-4f97-8e9a-d19614426969" + }, + { + "routeId": "L327", + "platformId": "U106Z4", + "id": "81607758-af2a-44ec-b159-a3b9840480ab" + }, + { + "routeId": "L331", + "platformId": "U106Z4", + "id": "2a9f0d8d-867b-4a1d-b6a5-2384f54fa3e2" + }, + { + "routeId": "L397", + "platformId": "U106Z4", + "id": "70258a81-af00-42ef-9385-99925cf27b38" + }, + { + "routeId": "L385", + "platformId": "U106Z4", + "id": "c30b6a5d-da40-4b85-97f3-8f5e6984ad2f" + }, + { + "routeId": "L136", + "platformId": "U106Z6", + "id": "6869974b-e911-4776-8cbc-bba391881d92" + }, + { + "routeId": "L154", + "platformId": "U106Z6", + "id": "3e63a786-8768-42ac-8f7f-6f6bafc376ea" + }, + { + "routeId": "L177", + "platformId": "U106Z6", + "id": "d65b9cde-fa94-44b1-a5e7-4e584441b0d2" + }, + { + "routeId": "L181", + "platformId": "U106Z6", + "id": "cccafba1-7cf4-46e3-8b6c-3059e44d1781" + }, + { + "routeId": "L213", + "platformId": "U106Z6", + "id": "3dd9fc34-3390-44ac-96ec-a3dd0f3bd6fa" + }, + { + "routeId": "L901", + "platformId": "U106Z6", + "id": "914f8697-6496-49e2-a4f7-7d287e65e7de" + }, + { + "routeId": "L906", + "platformId": "U106Z6", + "id": "ab7ca8a9-5dc5-4d43-b5e8-029c60315b09" + }, + { + "routeId": "L141", + "platformId": "U1070Z1", + "id": "90a500a2-8e0e-468c-85f0-50f7991c1f1e" + }, + { + "routeId": "L912", + "platformId": "U1070Z1", + "id": "f0096ebf-5a95-407e-aa19-2305b69eb342" + }, + { + "routeId": "L171", + "platformId": "U1070Z1", + "id": "712fe69c-c8e7-42ba-9fa6-2c26cf5e15e5" + }, + { + "routeId": "L224", + "platformId": "U1070Z1", + "id": "6dd7e6ba-cbdf-4e01-8122-157ab018aa61" + }, + { + "routeId": "L141", + "platformId": "U1070Z2", + "id": "b26f493a-ffff-4783-8c86-13cd36dc015b" + }, + { + "routeId": "L912", + "platformId": "U1070Z2", + "id": "a3d2687b-4890-476a-9d13-1ff6a7f03c07" + }, + { + "routeId": "L171", + "platformId": "U1070Z2", + "id": "ce766cb4-d4de-4d9f-8933-cddb068fffe1" + }, + { + "routeId": "L224", + "platformId": "U1070Z2", + "id": "741b10a7-1487-4eb5-ad5a-0a7a911554e7" + }, + { + "routeId": "L19", + "platformId": "U1071Z10", + "id": "4e5b3f80-d927-41a3-922c-148b0f5d6653" + }, + { + "routeId": "L991", + "platformId": "U1071Z101", + "id": "4812d5fb-080a-4447-9566-bfebee5692cd" + }, + { + "routeId": "L991", + "platformId": "U1071Z102", + "id": "2435662b-10b4-4abe-a7b5-32596c054eff" + }, + { + "routeId": "L16", + "platformId": "U1071Z11", + "id": "8ef6d07d-aabc-4933-9b53-688c121ec080" + }, + { + "routeId": "L19", + "platformId": "U1071Z11", + "id": "0a081bf1-ee53-4db6-8a09-67ea56b3670f" + }, + { + "routeId": "L95", + "platformId": "U1071Z11", + "id": "f29aa9c0-5cd2-4c57-9ca0-ad5c047ee001" + }, + { + "routeId": "L16", + "platformId": "U1071Z12", + "id": "af7a2bb3-0c37-486b-8414-40b89e516033" + }, + { + "routeId": "L95", + "platformId": "U1071Z12", + "id": "34f93400-5434-45fe-a465-a0cc807fae34" + }, + { + "routeId": "L229", + "platformId": "U1071Z2", + "id": "de0d63de-1678-4d92-ba67-1268ecd9e299" + }, + { + "routeId": "L173", + "platformId": "U1071Z2", + "id": "181383f4-7d1d-487d-924c-161c92b6ef11" + }, + { + "routeId": "L163", + "platformId": "U1071Z2", + "id": "b2a1cb48-ec61-4de5-96d1-e17adf4676e2" + }, + { + "routeId": "L208", + "platformId": "U1071Z2", + "id": "6d3a28f2-d8ae-4006-93b7-a51fa8fd2559" + }, + { + "routeId": "L171", + "platformId": "U1071Z2", + "id": "a2544ae8-40ee-4112-9a00-060c72cbdc44" + }, + { + "routeId": "L228", + "platformId": "U1071Z2", + "id": "590cbccf-c044-427d-b790-b01e8803f1de" + }, + { + "routeId": "L366", + "platformId": "U1071Z2", + "id": "a0fea5ea-087e-4a9f-8478-12ab8768a6ec" + }, + { + "routeId": "L364", + "platformId": "U1071Z2", + "id": "8d712204-6091-4fa7-a906-7e36c1501840" + }, + { + "routeId": "L163", + "platformId": "U1071Z3", + "id": "b999230a-31a1-40a8-960d-6f26f5e1c169" + }, + { + "routeId": "L208", + "platformId": "U1071Z3", + "id": "126a5218-4e30-4414-8b51-90c11289a635" + }, + { + "routeId": "L171", + "platformId": "U1071Z3", + "id": "6860c0fe-9c5f-4fb0-9ccf-2a08ad5ad8e6" + }, + { + "routeId": "L228", + "platformId": "U1071Z3", + "id": "6278063c-31b3-4b58-bffd-a6d1643693db" + }, + { + "routeId": "L229", + "platformId": "U1071Z4", + "id": "c4b30e0d-b172-42dd-8e12-f36ed231925b" + }, + { + "routeId": "L173", + "platformId": "U1071Z4", + "id": "ba12a412-073b-4493-8dbe-2b644afb0950" + }, + { + "routeId": "L366", + "platformId": "U1071Z4", + "id": "f2610331-8a0e-4587-aeeb-7cadad4288d7" + }, + { + "routeId": "L364", + "platformId": "U1071Z4", + "id": "8c3d8d2a-1310-457d-a05f-3d2c6f963ea6" + }, + { + "routeId": "L909", + "platformId": "U1071Z6", + "id": "77eb950a-d9c5-44c5-9e4c-b0085e45806c" + }, + { + "routeId": "L903", + "platformId": "U1071Z6", + "id": "5013dbd9-f964-42fe-8b98-71cc1d45e317" + }, + { + "routeId": "L228", + "platformId": "U1071Z6", + "id": "b9102e06-827b-461f-90fa-59c4587aa7fd" + }, + { + "routeId": "L909", + "platformId": "U1071Z7", + "id": "04ad2dc6-9e70-4f4a-b6c0-58188960d86e" + }, + { + "routeId": "L903", + "platformId": "U1071Z7", + "id": "33c9cd67-0cd7-4744-a1e3-f8401e97d74d" + }, + { + "routeId": "L228", + "platformId": "U1071Z7", + "id": "987953e6-4009-4a78-a91a-2337174a0ca6" + }, + { + "routeId": "L16", + "platformId": "U1071Z8", + "id": "65132a89-aaad-4160-8082-30b56b22d8bc" + }, + { + "routeId": "L16", + "platformId": "U1071Z9", + "id": "b2c50d0a-a4d9-48ef-a956-fb8b0700b334" + }, + { + "routeId": "L19", + "platformId": "U1071Z9", + "id": "0e634e2f-7bf8-4d27-a008-cc3d3446deba" + }, + { + "routeId": "L3", + "platformId": "U1072Z1", + "id": "50c3af63-50c9-4034-977e-5c5fa66958e6" + }, + { + "routeId": "L5", + "platformId": "U1072Z1", + "id": "3e09a89d-3354-4c5c-a18b-8c3d9503551e" + }, + { + "routeId": "L6", + "platformId": "U1072Z1", + "id": "49c3d63a-efbc-4606-bc5c-ce5fbd3cb10f" + }, + { + "routeId": "L9", + "platformId": "U1072Z1", + "id": "466b35de-69ec-4c89-95b2-acb77e26e431" + }, + { + "routeId": "L14", + "platformId": "U1072Z1", + "id": "f77dcc56-5f8c-404b-a63f-eb659d8cc08c" + }, + { + "routeId": "L91", + "platformId": "U1072Z1", + "id": "79b94e8a-f544-43ca-b6fc-bf6e2e414c82" + }, + { + "routeId": "L92", + "platformId": "U1072Z1", + "id": "d49b961c-b812-4d78-a25c-f09449224b79" + }, + { + "routeId": "L94", + "platformId": "U1072Z1", + "id": "e9bdf656-3c75-405f-b0b1-af44a55be32c" + }, + { + "routeId": "L95", + "platformId": "U1072Z1", + "id": "46ae8181-a4fb-4ebd-ab46-f675762218f5" + }, + { + "routeId": "L96", + "platformId": "U1072Z1", + "id": "10b61882-c1dd-41af-9f90-3c2bbe823a64" + }, + { + "routeId": "L98", + "platformId": "U1072Z1", + "id": "15d476a9-1023-4b60-8d1c-c28560845754" + }, + { + "routeId": "L991", + "platformId": "U1072Z101", + "id": "7bbae7f2-3782-427a-8a4b-b13fb8752ed5" + }, + { + "routeId": "L991", + "platformId": "U1072Z102", + "id": "e8696821-2889-4de7-b566-40518f3b3982" + }, + { + "routeId": "L992", + "platformId": "U1072Z121", + "id": "f69fc6b8-0280-44f5-b04e-2bb69bcea75a" + }, + { + "routeId": "L992", + "platformId": "U1072Z122", + "id": "e6d451c1-f2f7-44ce-864a-cc22cf23c84f" + }, + { + "routeId": "L3", + "platformId": "U1072Z2", + "id": "7cbba9f0-5b8b-4841-b690-73ca86d66d17" + }, + { + "routeId": "L5", + "platformId": "U1072Z2", + "id": "e913ef59-ecbe-4793-a30f-86006ecc1a9d" + }, + { + "routeId": "L6", + "platformId": "U1072Z2", + "id": "a20e5405-7c20-453e-906d-d1b0cd09a25b" + }, + { + "routeId": "L9", + "platformId": "U1072Z2", + "id": "5cb91f84-fc7f-45af-bdbb-3abee86a808e" + }, + { + "routeId": "L14", + "platformId": "U1072Z2", + "id": "53a01a92-8d07-450a-929f-3d66b7552385" + }, + { + "routeId": "L91", + "platformId": "U1072Z2", + "id": "93fd9f08-d785-4a42-ab86-0f245231bc85" + }, + { + "routeId": "L92", + "platformId": "U1072Z2", + "id": "1b51358c-ddd5-4bc0-89c8-5e14f39de941" + }, + { + "routeId": "L94", + "platformId": "U1072Z2", + "id": "54fcf2ef-45ac-4f72-b4ff-72d8086c46f6" + }, + { + "routeId": "L95", + "platformId": "U1072Z2", + "id": "80a812e0-2da6-44d5-9217-7d2501e9bc53" + }, + { + "routeId": "L96", + "platformId": "U1072Z2", + "id": "a56b0b65-528a-47a7-af63-b06dcd0c1377" + }, + { + "routeId": "L98", + "platformId": "U1072Z2", + "id": "12eabd77-e459-459a-b9b4-90f09ef50ac1" + }, + { + "routeId": "L142", + "platformId": "U1073Z1", + "id": "029a2cbc-3c5a-4c3e-9ec4-fd09f689601c" + }, + { + "routeId": "L142", + "platformId": "U1073Z2", + "id": "bc115a18-66e8-4f9a-b463-cb739d079cc1" + }, + { + "routeId": "L7", + "platformId": "U1074Z1", + "id": "200ac127-57ae-46cc-899a-a46778414f77" + }, + { + "routeId": "L10", + "platformId": "U1074Z1", + "id": "bb24987d-ebe6-473f-9244-f2ad0c4686c1" + }, + { + "routeId": "L31", + "platformId": "U1074Z1", + "id": "4000efdd-29af-42da-9e63-b1a5b8491ff1" + }, + { + "routeId": "L95", + "platformId": "U1074Z1", + "id": "b4921b32-2e5d-4f29-8682-f8bb37f99d17" + }, + { + "routeId": "L7", + "platformId": "U1074Z2", + "id": "fcd9c081-733a-4993-9c20-c291ad153fbd" + }, + { + "routeId": "L10", + "platformId": "U1074Z2", + "id": "ebf74191-97e7-44c1-a082-e8de2c41a5f1" + }, + { + "routeId": "L31", + "platformId": "U1074Z2", + "id": "5a2b0deb-21c9-41ca-b340-51cb97ed93ac" + }, + { + "routeId": "L95", + "platformId": "U1074Z2", + "id": "bef34b83-7de2-4961-92aa-20fa23b0e4a0" + }, + { + "routeId": "L136", + "platformId": "U1074Z3", + "id": "594e80aa-5da3-43a2-8ce7-949fc89e93fe" + }, + { + "routeId": "L913", + "platformId": "U1074Z3", + "id": "14dd9808-e04c-46ec-974c-49a355bdc42c" + }, + { + "routeId": "L136", + "platformId": "U1074Z4", + "id": "6fa25d78-63b0-47a3-a80c-412f3a12af02" + }, + { + "routeId": "L913", + "platformId": "U1074Z4", + "id": "65c413e3-00e4-40f6-9035-378bbb6362e3" + }, + { + "routeId": "L7", + "platformId": "U1075Z1", + "id": "970fbe1c-013d-47a7-ba68-67719cf4ce41" + }, + { + "routeId": "L8", + "platformId": "U1075Z1", + "id": "ba1e99eb-d331-4bed-bbb1-9b3d0ff18b01" + }, + { + "routeId": "L92", + "platformId": "U1075Z1", + "id": "38dce79d-11e6-4bb3-b214-b37ad354056b" + }, + { + "routeId": "L7", + "platformId": "U1075Z2", + "id": "c5d7de1a-b5e8-4015-8090-44d6a7b27047" + }, + { + "routeId": "L8", + "platformId": "U1075Z2", + "id": "3209d694-acef-4d92-936c-4271bd4e62aa" + }, + { + "routeId": "L92", + "platformId": "U1075Z2", + "id": "747c8001-7992-43e2-b204-10cdbd29b85a" + }, + { + "routeId": "L101", + "platformId": "U1076Z1", + "id": "0fb7074b-6a11-4580-84b8-7a5a9b00f977" + }, + { + "routeId": "L111", + "platformId": "U1076Z1", + "id": "d62a1d1f-b22a-4dca-ba6f-90889f4ddfdd" + }, + { + "routeId": "L125", + "platformId": "U1076Z1", + "id": "cb959ff4-3b71-40b2-b464-0ffd5cee0874" + }, + { + "routeId": "L138", + "platformId": "U1076Z1", + "id": "be7c2191-5287-468d-ba2e-9dd26e46884b" + }, + { + "routeId": "L908", + "platformId": "U1076Z1", + "id": "e15e4229-79e1-4423-9fe9-07b6bf540275" + }, + { + "routeId": "L329", + "platformId": "U1076Z1", + "id": "db5c3375-1760-42d9-9fc8-1f39b3d794c9" + }, + { + "routeId": "L101", + "platformId": "U1076Z2", + "id": "ae1a5a69-600a-44f1-aa77-f65e9d9a6d50" + }, + { + "routeId": "L111", + "platformId": "U1076Z2", + "id": "7fc50b7c-b971-467e-b537-7ab999201971" + }, + { + "routeId": "L125", + "platformId": "U1076Z2", + "id": "17f08807-e4a2-4415-9044-9ffeceb99674" + }, + { + "routeId": "L138", + "platformId": "U1076Z2", + "id": "05da57f2-4cbf-45e0-afb9-bb53a87079fd" + }, + { + "routeId": "L908", + "platformId": "U1076Z2", + "id": "82b7f995-97b8-4898-8f32-d26cb22b41a7" + }, + { + "routeId": "L329", + "platformId": "U1076Z2", + "id": "ee4c2d86-89b5-422c-9559-cf2c3d6e899b" + }, + { + "routeId": "L168", + "platformId": "U1077Z1", + "id": "be0b7163-1de9-4524-9ca6-0cfdf465ae72" + }, + { + "routeId": "L191", + "platformId": "U1077Z1", + "id": "dcf51fc5-22e8-4997-b51c-b03dcbc6d859" + }, + { + "routeId": "L910", + "platformId": "U1077Z1", + "id": "0138d440-cc82-4e54-8847-d877b9d9fc1d" + }, + { + "routeId": "L168", + "platformId": "U1077Z2", + "id": "8c7e5055-4c41-4876-9e5c-dda8157ba1fb" + }, + { + "routeId": "L191", + "platformId": "U1077Z2", + "id": "e9648ad9-2dc4-4e8e-b518-695082f1b65b" + }, + { + "routeId": "L910", + "platformId": "U1077Z2", + "id": "34890d12-8f10-4970-9163-44f0e9a1f254" + }, + { + "routeId": "L111", + "platformId": "U107Z1", + "id": "0d43bc7d-4dab-4ca7-915a-34ce5cf7a358" + }, + { + "routeId": "L908", + "platformId": "U107Z1", + "id": "a56ca276-4813-48dc-a636-7cd8d504357d" + }, + { + "routeId": "L228", + "platformId": "U107Z1", + "id": "bd7f1aa5-66bc-4de5-bcc1-7429f7fe1644" + }, + { + "routeId": "L240", + "platformId": "U107Z1", + "id": "4a31c49a-3bb6-4a7f-a3e9-07118205413c" + }, + { + "routeId": "L329", + "platformId": "U107Z1", + "id": "b87d86c8-f298-4862-8b53-afc61d2599bf" + }, + { + "routeId": "L111", + "platformId": "U107Z2", + "id": "fa3c1f60-f73e-4576-ab71-7c5216c60e2e" + }, + { + "routeId": "L908", + "platformId": "U107Z2", + "id": "16760be3-5be3-41fe-9169-51de280e6a88" + }, + { + "routeId": "L228", + "platformId": "U107Z2", + "id": "58aa9e40-5d85-4e7c-b9ee-5c4f424a2b16" + }, + { + "routeId": "L240", + "platformId": "U107Z2", + "id": "d1bdb6e0-7c02-40d2-a9cc-28f2fa2145ba" + }, + { + "routeId": "L329", + "platformId": "U107Z2", + "id": "cea5e76f-d98c-4669-8664-dc2ad34cf62f" + }, + { + "routeId": "L151", + "platformId": "U1081Z1", + "id": "e71c1ac6-8e66-4d25-abe2-b1f7cf64ad1e" + }, + { + "routeId": "L151", + "platformId": "U1081Z2", + "id": "d86a0e36-1a47-4cee-8518-7c7d5be15530" + }, + { + "routeId": "L58", + "platformId": "U1083Z1", + "id": "1fa65b8f-0d16-4e38-9d86-731eb73f4cf7" + }, + { + "routeId": "L58", + "platformId": "U1083Z2", + "id": "ec45aca1-1da6-40c1-b76b-ca23d50d406a" + }, + { + "routeId": "L351", + "platformId": "U1084Z2", + "id": "c173fd1d-f194-4dc1-a1af-6a173654b19e" + }, + { + "routeId": "L351", + "platformId": "U1084Z3", + "id": "54e944d7-5883-49b9-acf9-66d69f8b351b" + }, + { + "routeId": "L352", + "platformId": "U1085Z1", + "id": "a01d75eb-6f03-4b7b-b1d4-5dec32d553f1" + }, + { + "routeId": "L301", + "platformId": "U1085Z1", + "id": "04a0efbf-f809-448c-8269-f69d8967fcba" + }, + { + "routeId": "L352", + "platformId": "U1085Z2", + "id": "8f1c63aa-0213-41ff-898a-2988f67672cf" + }, + { + "routeId": "L301", + "platformId": "U1085Z2", + "id": "98fbdbed-6abb-4bbb-8364-3552a59d84d6" + }, + { + "routeId": "L1226", + "platformId": "U1085Z301", + "id": "b6a5bf80-bc65-41d4-a84f-92a7f10da0d7" + }, + { + "routeId": "L1306", + "platformId": "U1085Z301", + "id": "f439dfa3-8d0a-4641-a74f-3cc9c9985696" + }, + { + "routeId": "L352", + "platformId": "U1086Z1", + "id": "1c2705cd-2099-4493-be8d-f5a95f50f583" + }, + { + "routeId": "L301", + "platformId": "U1086Z1", + "id": "6c7ad859-8cac-4451-8707-5c68427bae80" + }, + { + "routeId": "L352", + "platformId": "U1086Z2", + "id": "bc424360-8f57-4c24-be15-567f14dc6937" + }, + { + "routeId": "L301", + "platformId": "U1086Z2", + "id": "f9519b2b-82e3-4b2b-897c-fa4dfa9e937d" + }, + { + "routeId": "L106", + "platformId": "U1087Z1", + "id": "ebbbbaa3-78c1-460d-8d98-d64a629db852" + }, + { + "routeId": "L106", + "platformId": "U1087Z2", + "id": "1a69184d-21ec-4401-b078-6b9ec7ebac01" + }, + { + "routeId": "L352", + "platformId": "U1089Z1", + "id": "82479ed1-bdf9-4a48-bf07-e839363127e8" + }, + { + "routeId": "L301", + "platformId": "U1089Z1", + "id": "8795479d-53a6-4fe8-9968-ce5ea60b8d5f" + }, + { + "routeId": "L352", + "platformId": "U1089Z2", + "id": "31979ed3-6017-4dbd-b432-4c9dedc913d0" + }, + { + "routeId": "L301", + "platformId": "U1089Z2", + "id": "9f1e808e-09a5-4003-9386-2663747cfc52" + }, + { + "routeId": "L111", + "platformId": "U108Z1", + "id": "e7f25dec-0ffd-439d-a4aa-0971502fc79e" + }, + { + "routeId": "L908", + "platformId": "U108Z1", + "id": "3f24a0f6-82eb-450e-9b2f-6fae1e815384" + }, + { + "routeId": "L228", + "platformId": "U108Z1", + "id": "2da2185a-0e9f-4ffc-b294-04560a2a06a8" + }, + { + "routeId": "L240", + "platformId": "U108Z1", + "id": "c7f3890c-4d06-4941-b9c2-bf4a019474c1" + }, + { + "routeId": "L329", + "platformId": "U108Z1", + "id": "a8738e57-5e21-4c09-b496-70575b28af60" + }, + { + "routeId": "L111", + "platformId": "U108Z2", + "id": "ef1a2767-0931-4134-90c0-e4b19f0d3a57" + }, + { + "routeId": "L908", + "platformId": "U108Z2", + "id": "e8d8a177-7611-4271-a446-051e98eebbcb" + }, + { + "routeId": "L228", + "platformId": "U108Z2", + "id": "cfd308e0-8cfe-44ab-939a-13f30fe41c03" + }, + { + "routeId": "L240", + "platformId": "U108Z2", + "id": "e192ba79-0de0-41bc-9403-8b261cb6b76a" + }, + { + "routeId": "L329", + "platformId": "U108Z2", + "id": "bf8f69f1-b18f-461e-b26d-0e3bf5ee98b8" + }, + { + "routeId": "L100", + "platformId": "U1090Z1", + "id": "58f98f1b-4952-4fba-92e6-47610500fa25" + }, + { + "routeId": "L191", + "platformId": "U1090Z1", + "id": "057c5420-21e4-4e2a-99a4-d63dcd8265c9" + }, + { + "routeId": "L290", + "platformId": "U1090Z1", + "id": "ae925a72-d601-43b3-946c-463be56ce583" + }, + { + "routeId": "L907", + "platformId": "U1090Z1", + "id": "8f520487-fc4d-4f00-bdee-c3f304214e47" + }, + { + "routeId": "L910", + "platformId": "U1090Z1", + "id": "f1ab6f3e-6a32-4bf8-b6a5-19eefe3511f6" + }, + { + "routeId": "L59", + "platformId": "U1090Z1", + "id": "8c244f95-f948-4641-b1e7-1ea6115d28fd" + }, + { + "routeId": "L100", + "platformId": "U1090Z3", + "id": "de5904f4-620c-476e-a526-6f2eec8d346e" + }, + { + "routeId": "L191", + "platformId": "U1090Z3", + "id": "7f8f6c1a-5f17-4e9b-b248-42f6e337134a" + }, + { + "routeId": "L907", + "platformId": "U1090Z3", + "id": "ff5cf495-4f35-4267-9384-f327fe3767de" + }, + { + "routeId": "L910", + "platformId": "U1090Z3", + "id": "87fdb3d8-e0a4-460b-a820-9c0c548e751c" + }, + { + "routeId": "L59", + "platformId": "U1090Z3", + "id": "b3af5750-eff3-4e3c-9827-ef7d2cb107ea" + }, + { + "routeId": "L223", + "platformId": "U1091Z1", + "id": "a17fe002-bf99-4786-8dd9-cdfebe38b63a" + }, + { + "routeId": "L224", + "platformId": "U1091Z1", + "id": "ac60c6a4-a7f4-4290-928d-589be61d5018" + }, + { + "routeId": "L223", + "platformId": "U1091Z2", + "id": "1c6aecc0-0f60-447e-a79d-9cc5bd52d908" + }, + { + "routeId": "L224", + "platformId": "U1091Z2", + "id": "2032d1b3-3e00-41a8-97af-141e32d38730" + }, + { + "routeId": "L101", + "platformId": "U1092Z1", + "id": "d340e768-d6ed-4058-ba45-5d96d7559c07" + }, + { + "routeId": "L188", + "platformId": "U1092Z1", + "id": "fd384b22-84dd-4b54-ac7e-d470248637ce" + }, + { + "routeId": "L101", + "platformId": "U1092Z2", + "id": "550fa66d-1025-4d45-aa76-bbcb01e78f6e" + }, + { + "routeId": "L188", + "platformId": "U1092Z2", + "id": "3b4a00ed-e6be-4185-896f-5705097e0399" + }, + { + "routeId": "L1302", + "platformId": "U1093Z301", + "id": "22b808dc-4c3d-456e-ab56-cd2c30873a59" + }, + { + "routeId": "L1322", + "platformId": "U1093Z301", + "id": "7a934eb5-6ecf-463a-b516-0342cbdea6c0" + }, + { + "routeId": "L167", + "platformId": "U1094Z1", + "id": "d0fb1a9f-0f22-4e31-947f-522658f8ef3e" + }, + { + "routeId": "L167", + "platformId": "U1094Z2", + "id": "d5673b20-3fda-4599-9f99-a9950973bd05" + }, + { + "routeId": "L168", + "platformId": "U1094Z2", + "id": "282518df-9293-456d-8937-91d70513a9c0" + }, + { + "routeId": "L375", + "platformId": "U1095Z1", + "id": "9095c761-821e-4bf4-abf1-fe63b4145747" + }, + { + "routeId": "L953", + "platformId": "U1095Z1", + "id": "ada49997-ea38-41fa-a322-39bb06354898" + }, + { + "routeId": "L375", + "platformId": "U1095Z2", + "id": "905477cb-275c-4e4c-8c1e-b5aeb3cbd634" + }, + { + "routeId": "L953", + "platformId": "U1095Z2", + "id": "2d21a959-509c-420e-9c26-3def5f66a1f4" + }, + { + "routeId": "L138", + "platformId": "U1096Z1", + "id": "314e4098-7549-4b86-9291-a2c680647a4e" + }, + { + "routeId": "L193", + "platformId": "U1096Z1", + "id": "4371349c-ba6c-4aec-9361-b2d1735d78a3" + }, + { + "routeId": "L203", + "platformId": "U1096Z1", + "id": "1b3fc71c-b152-4533-afe1-20fa378e91e4" + }, + { + "routeId": "L111", + "platformId": "U1099Z1", + "id": "de1c03a8-1871-4ea4-bb48-e6f7a77b9bbe" + }, + { + "routeId": "L229", + "platformId": "U1099Z1", + "id": "3c2b8055-4306-4dfa-9e1f-2ea142d1611a" + }, + { + "routeId": "L908", + "platformId": "U1099Z1", + "id": "aae9db2b-07a5-4df9-b6ba-96ef809ed1e9" + }, + { + "routeId": "L204", + "platformId": "U1099Z1", + "id": "cf197be7-8f7c-47f0-afdf-00ad4b7c5ad2" + }, + { + "routeId": "L903", + "platformId": "U1099Z1", + "id": "b855cbef-576b-4447-a8c0-fb49fee20107" + }, + { + "routeId": "L329", + "platformId": "U1099Z1", + "id": "b3d3c578-e7e9-4302-b3b5-27a7eb5c847a" + }, + { + "routeId": "L366", + "platformId": "U1099Z1", + "id": "7bfe34f9-c933-4493-91ae-19c11f3e55dd" + }, + { + "routeId": "L364", + "platformId": "U1099Z1", + "id": "05546965-8d98-400b-9d19-5d9a9d82699e" + }, + { + "routeId": "L111", + "platformId": "U1099Z2", + "id": "a6eb658e-9c42-4c83-9575-575efe164161" + }, + { + "routeId": "L229", + "platformId": "U1099Z2", + "id": "c3b8b7c8-d1e8-4d43-a4ad-ca61a7eeff3c" + }, + { + "routeId": "L908", + "platformId": "U1099Z2", + "id": "74042e08-288f-4141-8e0a-4a601994d8c2" + }, + { + "routeId": "L204", + "platformId": "U1099Z2", + "id": "63b417b8-35a7-4f5c-a68a-1c844311dac3" + }, + { + "routeId": "L903", + "platformId": "U1099Z2", + "id": "a9e4c1b8-988c-4abd-93e9-6072ad88e530" + }, + { + "routeId": "L329", + "platformId": "U1099Z2", + "id": "065889ff-16e9-4f3f-8b1a-671fafc7ca9a" + }, + { + "routeId": "L366", + "platformId": "U1099Z2", + "id": "e5b94478-a1e0-4fde-a896-6519b9a7ec18" + }, + { + "routeId": "L364", + "platformId": "U1099Z2", + "id": "604ed7d1-1452-444c-9e68-e172f849e419" + }, + { + "routeId": "L159", + "platformId": "U109Z1", + "id": "0c7ef212-de96-40c3-a98d-62d9b0d9daa7" + }, + { + "routeId": "L185", + "platformId": "U109Z1", + "id": "6e859a53-f837-472f-8622-be121b654dcd" + }, + { + "routeId": "L209", + "platformId": "U109Z1", + "id": "ba0d58e5-b2d2-49e1-997a-810e813b0310" + }, + { + "routeId": "L378", + "platformId": "U109Z1", + "id": "118c2903-1109-4ccc-b477-b6c0ddc8ed06" + }, + { + "routeId": "L302", + "platformId": "U109Z1", + "id": "d6f080d3-60eb-4bc5-943a-2b3f29b60efe" + }, + { + "routeId": "L375", + "platformId": "U109Z1", + "id": "88e132fc-a650-480a-8b43-c41eeb683fe6" + }, + { + "routeId": "L376", + "platformId": "U109Z1", + "id": "62172b63-49f2-4745-9970-93cca7e8d46d" + }, + { + "routeId": "L159", + "platformId": "U109Z2", + "id": "d6cadd83-f9db-4a84-87c4-273a37768fc7" + }, + { + "routeId": "L185", + "platformId": "U109Z2", + "id": "2b8d27ab-f3d5-4cac-ac42-0d2189bd9174" + }, + { + "routeId": "L209", + "platformId": "U109Z2", + "id": "c8193b19-b940-4fec-a2ae-d05ade02a656" + }, + { + "routeId": "L378", + "platformId": "U109Z2", + "id": "2a3ff462-708b-4313-9839-e31ae7b58bf9" + }, + { + "routeId": "L302", + "platformId": "U109Z2", + "id": "317f6306-dc9c-43ca-9f57-c4c1c70e9ba7" + }, + { + "routeId": "L375", + "platformId": "U109Z2", + "id": "856c0782-38a1-4ce0-b8a0-16be95d12d88" + }, + { + "routeId": "L376", + "platformId": "U109Z2", + "id": "7e6c2f8a-a049-4deb-aa1e-34c7db121338" + }, + { + "routeId": "L341", + "platformId": "U10Z1", + "id": "b886a26f-5c68-4fa5-a48c-51db1f28fa71" + }, + { + "routeId": "L341", + "platformId": "U10Z2", + "id": "5e2e90c9-4c10-40b0-b29c-2c48fee994d2" + }, + { + "routeId": "L167", + "platformId": "U1100Z1", + "id": "4164bb62-4d9d-4677-ade9-5b5724482d3c" + }, + { + "routeId": "L168", + "platformId": "U1100Z1", + "id": "7263367e-938e-4664-98f0-eb1e1ef8760c" + }, + { + "routeId": "L167", + "platformId": "U1100Z2", + "id": "a887f277-bc99-4c3c-bb2a-ec42b9f8e5e9" + }, + { + "routeId": "L168", + "platformId": "U1100Z2", + "id": "85026631-53fb-48a3-b710-9915b9477734" + }, + { + "routeId": "L136", + "platformId": "U1102Z1", + "id": "b6febef6-af22-479e-8349-cb7cd2156724" + }, + { + "routeId": "L911", + "platformId": "U1102Z1", + "id": "aa670dbe-eb8e-4ea7-8295-88531b3283bc" + }, + { + "routeId": "L166", + "platformId": "U1102Z1", + "id": "eea8e876-7d64-40b8-8bef-46aeaf1dd60e" + }, + { + "routeId": "L136", + "platformId": "U1102Z2", + "id": "ff354661-aa88-44a9-a4ce-2089c524caf7" + }, + { + "routeId": "L911", + "platformId": "U1102Z2", + "id": "910852f2-d99d-4efd-9b5d-45d7951f8204" + }, + { + "routeId": "L166", + "platformId": "U1102Z2", + "id": "76a95376-4cd9-45a4-b11f-b56351ddc3f6" + }, + { + "routeId": "L185", + "platformId": "U1103Z1", + "id": "517b982b-5316-457d-a249-4354abb5af69" + }, + { + "routeId": "L185", + "platformId": "U1103Z2", + "id": "58e67508-ff58-475b-b913-3dddf4a713cd" + }, + { + "routeId": "L185", + "platformId": "U1104Z2", + "id": "a4b0b667-2905-41f3-ac7b-0877a59a380a" + }, + { + "routeId": "L185", + "platformId": "U1104Z3", + "id": "176ee32c-0376-4171-bf35-a1afbdbd1891" + }, + { + "routeId": "L159", + "platformId": "U1105Z1", + "id": "636eccea-4ef8-446c-a8b2-0862c683d7cd" + }, + { + "routeId": "L159", + "platformId": "U1105Z2", + "id": "8062fef2-650a-4425-aea7-3262451219fe" + }, + { + "routeId": "L159", + "platformId": "U1105Z3", + "id": "25a756c2-a430-43ea-adb9-eb70bf3f9786" + }, + { + "routeId": "L159", + "platformId": "U1105Z4", + "id": "42537eff-28be-4de5-a595-7ef42fade12b" + }, + { + "routeId": "L159", + "platformId": "U1107Z1", + "id": "eeb2fcd8-1c79-472e-b5ac-e6266005ad9e" + }, + { + "routeId": "L159", + "platformId": "U1107Z2", + "id": "fa7c6c27-e4ba-48d0-b803-997e2e096366" + }, + { + "routeId": "L7", + "platformId": "U1108Z1", + "id": "1102fd04-e19e-49b8-9597-7c523744a9c8" + }, + { + "routeId": "L16", + "platformId": "U1108Z1", + "id": "599a4e0d-c6b8-49c9-8e5f-1202069092f4" + }, + { + "routeId": "L26", + "platformId": "U1108Z1", + "id": "8ba0b5b7-11fd-4f97-aaca-cf8a068e56ff" + }, + { + "routeId": "L91", + "platformId": "U1108Z1", + "id": "61d9108f-7204-45b6-bd54-822b34276d8f" + }, + { + "routeId": "L16", + "platformId": "U1108Z2", + "id": "75f441da-a5e4-4729-b94c-35e77e488e4f" + }, + { + "routeId": "L19", + "platformId": "U1108Z2", + "id": "9969e09a-57bf-4247-8ea8-226dba27858a" + }, + { + "routeId": "L95", + "platformId": "U1108Z2", + "id": "1994887c-5a47-44d7-a097-edb3499165bb" + }, + { + "routeId": "L2", + "platformId": "U110Z1", + "id": "c6471e39-e4a6-4433-9910-14ab6da496ea" + }, + { + "routeId": "L3", + "platformId": "U110Z1", + "id": "31f5f30b-6abb-4ce8-bfd7-c7025a07162e" + }, + { + "routeId": "L17", + "platformId": "U110Z1", + "id": "77454d4c-b371-485e-8f5d-bb6824a3d778" + }, + { + "routeId": "L27", + "platformId": "U110Z1", + "id": "b4649eef-e200-4104-995f-3b4681593a25" + }, + { + "routeId": "L92", + "platformId": "U110Z1", + "id": "9213234f-6187-4c6b-8f6f-5c489e15ea29" + }, + { + "routeId": "L1803", + "platformId": "U110Z11", + "id": "f3e99f4c-c7f8-4748-b381-869c336446c4" + }, + { + "routeId": "L2", + "platformId": "U110Z2", + "id": "9e016404-2513-45dc-9371-7c5624166c46" + }, + { + "routeId": "L3", + "platformId": "U110Z2", + "id": "d9b191db-c1d2-46dd-b478-510b68fae1b2" + }, + { + "routeId": "L17", + "platformId": "U110Z2", + "id": "ac692356-1850-4359-8b5e-fa1f5709529c" + }, + { + "routeId": "L27", + "platformId": "U110Z2", + "id": "4016c5dd-0120-40dc-b377-0a7a437cf8ac" + }, + { + "routeId": "L92", + "platformId": "U110Z2", + "id": "a458cac2-35c5-4757-bcc3-84f8870a8229" + }, + { + "routeId": "L134", + "platformId": "U110Z5", + "id": "98eadc54-a1e2-419a-adbe-d68e1dbf0bda" + }, + { + "routeId": "L134", + "platformId": "U110Z6", + "id": "5f51a614-fb43-4e1f-bd34-b787c9fe0b35" + }, + { + "routeId": "L118", + "platformId": "U110Z7", + "id": "af306f49-93f7-4b9a-b024-3d6546af302d" + }, + { + "routeId": "L134", + "platformId": "U110Z7", + "id": "4599577f-a5be-4548-83c0-9f59ad8f9edb" + }, + { + "routeId": "L118", + "platformId": "U110Z8", + "id": "cd2c238c-8805-41a4-b30d-a771c602a460" + }, + { + "routeId": "L185", + "platformId": "U1111Z1", + "id": "6424c035-884f-4273-a4a6-11848aa9ebce" + }, + { + "routeId": "L185", + "platformId": "U1111Z2", + "id": "5bb2817d-4f89-423c-96ad-e6b023232aee" + }, + { + "routeId": "L142", + "platformId": "U1114Z1", + "id": "914074d2-7b3a-4273-9e1b-c55dec66558b" + }, + { + "routeId": "L184", + "platformId": "U1114Z1", + "id": "85262d7f-dd0b-46bb-89f4-7732ea197079" + }, + { + "routeId": "L225", + "platformId": "U1114Z1", + "id": "e07780ff-8e34-4233-ae5e-ebce6efeb931" + }, + { + "routeId": "L904", + "platformId": "U1114Z1", + "id": "117f3bd7-ed31-4509-b6f2-180b1cfbe3e8" + }, + { + "routeId": "L142", + "platformId": "U1114Z2", + "id": "e584e2ab-e9ec-49fe-8134-72f2bd914f9f" + }, + { + "routeId": "L184", + "platformId": "U1114Z2", + "id": "554e0123-fcf3-4949-8922-276359a33878" + }, + { + "routeId": "L225", + "platformId": "U1114Z2", + "id": "0b173672-a633-4e97-8d04-a48d7931c09e" + }, + { + "routeId": "L904", + "platformId": "U1114Z2", + "id": "02619647-11ae-4f1b-96ce-ab66350dc9f5" + }, + { + "routeId": "L111", + "platformId": "U1115Z1", + "id": "7f6ebc0f-37f4-4ff9-8055-a21518782164" + }, + { + "routeId": "L908", + "platformId": "U1115Z1", + "id": "3a975627-8f85-4c97-a166-e3d72369d5d9" + }, + { + "routeId": "L228", + "platformId": "U1115Z1", + "id": "639d697b-b325-4be4-a3bc-5324a977b767" + }, + { + "routeId": "L240", + "platformId": "U1115Z1", + "id": "9632e109-8221-404c-9b5c-4b23b486784d" + }, + { + "routeId": "L329", + "platformId": "U1115Z1", + "id": "600f73f4-3386-4bfd-8d87-7331c967bd61" + }, + { + "routeId": "L111", + "platformId": "U1115Z2", + "id": "39918c95-ffa7-4893-a440-06a3aa4d6129" + }, + { + "routeId": "L908", + "platformId": "U1115Z2", + "id": "2839bd45-aa75-4dd3-a225-34278d79ffac" + }, + { + "routeId": "L228", + "platformId": "U1115Z2", + "id": "d85e9da9-8cdb-4a4c-acf4-604c7739a880" + }, + { + "routeId": "L240", + "platformId": "U1115Z2", + "id": "47bdfa38-ebbf-4958-9849-06751c85a8cd" + }, + { + "routeId": "L329", + "platformId": "U1115Z2", + "id": "3619f57e-c0a8-4d10-a51e-ecf42c30dcb4" + }, + { + "routeId": "L177", + "platformId": "U1116Z2", + "id": "5ea965f8-b077-4cc8-a4fa-e7c16a2a7cca" + }, + { + "routeId": "L911", + "platformId": "U1116Z2", + "id": "77d9d4fa-dbb3-4263-897d-e4632409bfaf" + }, + { + "routeId": "L203", + "platformId": "U1116Z2", + "id": "9fa92c0d-e0ee-4dd2-85f7-fbb8f9ad1936" + }, + { + "routeId": "L177", + "platformId": "U1116Z3", + "id": "5eada39d-8b87-4726-aea0-8cdd6bfb8f31" + }, + { + "routeId": "L911", + "platformId": "U1116Z3", + "id": "148978ee-b9c3-4af9-a322-fe6d6d4d6f80" + }, + { + "routeId": "L203", + "platformId": "U1116Z3", + "id": "b31dfd8c-cdfc-41eb-9040-0f727c280ea1" + }, + { + "routeId": "L147", + "platformId": "U111Z1", + "id": "a3b7edda-b42c-4b46-adf4-b02af415b5a2" + }, + { + "routeId": "L147", + "platformId": "U111Z2", + "id": "cfa861ed-83c3-4963-acf4-bac2a0980543" + }, + { + "routeId": "L201", + "platformId": "U1120Z1", + "id": "78c54e37-4659-4ca3-a1a9-59ab329f49b5" + }, + { + "routeId": "L209", + "platformId": "U1120Z1", + "id": "ea9188ee-9096-4b2f-9490-d935447dfee5" + }, + { + "routeId": "L376", + "platformId": "U1120Z1", + "id": "da1abd13-b60c-4182-b928-b0084d63b5c6" + }, + { + "routeId": "L201", + "platformId": "U1120Z2", + "id": "6bb6161b-3602-4bda-856f-f291ae455ff8" + }, + { + "routeId": "L209", + "platformId": "U1120Z2", + "id": "43a1ffc1-9d3c-4f76-b761-3270017bf003" + }, + { + "routeId": "L376", + "platformId": "U1120Z2", + "id": "9508f3b3-74bd-4aab-af26-0e5baaf4f81e" + }, + { + "routeId": "L23", + "platformId": "U1121Z1", + "id": "f2626c5b-85a8-43ad-ab2d-10900724bdbe" + }, + { + "routeId": "L23", + "platformId": "U1121Z2", + "id": "2837f4e4-180f-49b9-8b43-185d5a039eab" + }, + { + "routeId": "L1", + "platformId": "U1122Z1", + "id": "b8ec31be-d3a6-4215-b30a-faec677685ca" + }, + { + "routeId": "L17", + "platformId": "U1122Z1", + "id": "6f977def-1090-47eb-b0a8-160ca58e3f91" + }, + { + "routeId": "L25", + "platformId": "U1122Z1", + "id": "e6072f4e-9afb-41db-bba5-b7788558758b" + }, + { + "routeId": "L93", + "platformId": "U1122Z1", + "id": "66139bf5-f9e5-409d-ad58-0ff86077e82b" + }, + { + "routeId": "L894", + "platformId": "U1122Z1", + "id": "9220b947-0ef1-4dc6-b4e6-22b3668e7ed4" + }, + { + "routeId": "L167", + "platformId": "U1123Z2", + "id": "fa3ebabb-d34e-4d95-8c7c-b2f288a00bb1" + }, + { + "routeId": "L142", + "platformId": "U1124Z1", + "id": "fc7cbec6-e914-411b-93c0-26fe5804117e" + }, + { + "routeId": "L184", + "platformId": "U1124Z1", + "id": "5d1915c8-e8f6-4ef3-89f6-6fa85b52471a" + }, + { + "routeId": "L225", + "platformId": "U1124Z1", + "id": "2975e18b-9cce-4147-9866-73b92d24e83c" + }, + { + "routeId": "L904", + "platformId": "U1124Z1", + "id": "131180be-71f2-4691-a73d-06044dea7171" + }, + { + "routeId": "L142", + "platformId": "U1124Z2", + "id": "83459bd2-e693-4714-8790-e7c0f195ad39" + }, + { + "routeId": "L184", + "platformId": "U1124Z2", + "id": "fd9fd33e-5d6d-4ac7-a127-e431ae703319" + }, + { + "routeId": "L225", + "platformId": "U1124Z2", + "id": "994f5194-20a4-4e09-9cea-afd3141362a1" + }, + { + "routeId": "L904", + "platformId": "U1124Z2", + "id": "e6532059-bf2a-448c-a839-9b009a802803" + }, + { + "routeId": "L104", + "platformId": "U1125Z1", + "id": "1d92fc0e-c65e-40a5-a52e-b64d832e9cbe" + }, + { + "routeId": "L120", + "platformId": "U1125Z1", + "id": "6d15b0d2-1bcd-4c20-93b8-3c5e60328ba0" + }, + { + "routeId": "L170", + "platformId": "U1125Z1", + "id": "132a8cf2-ca40-4de0-aaed-fe5462de5001" + }, + { + "routeId": "L130", + "platformId": "U1125Z1", + "id": "fa8ff926-322f-445c-b4d2-97a220383c4f" + }, + { + "routeId": "L951", + "platformId": "U1125Z1", + "id": "6a65bafa-dd68-45fe-b014-24aac9ed59d6" + }, + { + "routeId": "L104", + "platformId": "U1125Z2", + "id": "d0ebf374-b20b-46e9-a2fa-5943584b677f" + }, + { + "routeId": "L120", + "platformId": "U1125Z2", + "id": "64d1e271-a6f5-4a9f-a7ec-ecdbc3acc5bc" + }, + { + "routeId": "L170", + "platformId": "U1125Z2", + "id": "b2435e04-0bdf-4360-ad9c-af07502288d2" + }, + { + "routeId": "L130", + "platformId": "U1125Z2", + "id": "63d5e23f-69a2-48ae-b08e-4beb44d85703" + }, + { + "routeId": "L951", + "platformId": "U1125Z2", + "id": "261d348a-d499-4008-9726-990cfdf17aa8" + }, + { + "routeId": "L104", + "platformId": "U1126Z1", + "id": "c3fa0b6a-9403-4797-a14b-fa28c102a9a0" + }, + { + "routeId": "L170", + "platformId": "U1126Z1", + "id": "69997ae2-b4e1-4045-ae69-abaafd1da77c" + }, + { + "routeId": "L104", + "platformId": "U1126Z2", + "id": "ff772edf-b3b2-4757-bcd1-c8efc5b7771a" + }, + { + "routeId": "L170", + "platformId": "U1126Z2", + "id": "e5b3b227-ebe5-48e2-8996-51bd55ae6ba7" + }, + { + "routeId": "L120", + "platformId": "U1127Z1", + "id": "13d0cc34-0ec0-4cc6-a02a-b009a59f37f9" + }, + { + "routeId": "L130", + "platformId": "U1127Z1", + "id": "349e8a72-bb43-4a57-a044-fbbc5b759304" + }, + { + "routeId": "L951", + "platformId": "U1127Z1", + "id": "c06ccc57-d890-430a-8323-d4eba9a7fabb" + }, + { + "routeId": "L104", + "platformId": "U1128Z1", + "id": "853ee001-0587-45d7-a7d9-f520b88ecda1" + }, + { + "routeId": "L104", + "platformId": "U1128Z2", + "id": "cacd05e5-140e-4b32-a455-7adaa6d93a42" + }, + { + "routeId": "L141", + "platformId": "U1129Z1", + "id": "656f87db-e9d8-4d0e-afa4-354bdb3a76de" + }, + { + "routeId": "L912", + "platformId": "U1129Z1", + "id": "230a003b-2bb7-4c72-aaa2-3e241debf8aa" + }, + { + "routeId": "L171", + "platformId": "U1129Z1", + "id": "e2ca8716-c974-4b48-841f-4c1ee22b6cea" + }, + { + "routeId": "L223", + "platformId": "U1129Z1", + "id": "0451d9d9-c0b4-4a50-813e-134a337e8641" + }, + { + "routeId": "L224", + "platformId": "U1129Z1", + "id": "557fbda8-4b87-453a-a563-301d67b7a9d3" + }, + { + "routeId": "L141", + "platformId": "U1129Z2", + "id": "f40a41bc-9519-43ad-9266-c22a44a5eeff" + }, + { + "routeId": "L912", + "platformId": "U1129Z2", + "id": "645a318b-9559-4e66-b3f2-d59aa8292e7c" + }, + { + "routeId": "L171", + "platformId": "U1129Z2", + "id": "f5e55659-b5fb-4b12-b27b-9d6ab421cfa5" + }, + { + "routeId": "L223", + "platformId": "U1129Z2", + "id": "2cc2802d-a76f-4b5f-b93b-7d1e28927364" + }, + { + "routeId": "L224", + "platformId": "U1129Z2", + "id": "48344d0a-23e8-436a-b415-f9a788a34dbe" + }, + { + "routeId": "L131", + "platformId": "U112Z1", + "id": "94cc8c77-aa46-4222-b954-e7256a07138c" + }, + { + "routeId": "L907", + "platformId": "U112Z1", + "id": "d1930f98-958b-486b-aad9-d34ffba18839" + }, + { + "routeId": "L131", + "platformId": "U112Z2", + "id": "c94e957b-b0c6-40ae-853f-94c488e05397" + }, + { + "routeId": "L907", + "platformId": "U112Z2", + "id": "38b1821a-c0f2-48f4-a9ac-8628291bdd7e" + }, + { + "routeId": "L149", + "platformId": "U1130Z1", + "id": "da96075e-562d-464e-8cb5-a4fd269e2d02" + }, + { + "routeId": "L174", + "platformId": "U1130Z1", + "id": "f8b8fc50-a86a-4648-a5a3-8b88d65334b8" + }, + { + "routeId": "L902", + "platformId": "U1130Z1", + "id": "cd88aae3-e477-4524-8b83-011638f56167" + }, + { + "routeId": "L904", + "platformId": "U1130Z1", + "id": "fd038fa6-2ce4-4b92-91f7-3b93e06452d8" + }, + { + "routeId": "L149", + "platformId": "U1130Z2", + "id": "4609171a-35ed-45e4-9b18-d146d9963045" + }, + { + "routeId": "L174", + "platformId": "U1130Z2", + "id": "96ae433d-e421-4c78-8478-7c556783f0f8" + }, + { + "routeId": "L902", + "platformId": "U1130Z2", + "id": "3b374569-072e-4d5d-9880-9f9e37dc1336" + }, + { + "routeId": "L904", + "platformId": "U1130Z2", + "id": "ee5164cc-a02f-4d52-9998-9fbae1785a0d" + }, + { + "routeId": "L126", + "platformId": "U1131Z1", + "id": "f30fb793-26d6-4469-be7e-3e9c4783ec40" + }, + { + "routeId": "L115", + "platformId": "U1131Z1", + "id": "f43fe0f1-3334-4a96-a323-557aa38e7aa5" + }, + { + "routeId": "L126", + "platformId": "U1131Z2", + "id": "0baf1efd-2091-4d8f-8ad9-87f0d1d5d2b1" + }, + { + "routeId": "L115", + "platformId": "U1131Z2", + "id": "829eeb4b-9137-4373-b027-bfdef4ceaa19" + }, + { + "routeId": "L115", + "platformId": "U1132Z1", + "id": "edda2ca4-93a3-4ee7-8223-8b53025be643" + }, + { + "routeId": "L236", + "platformId": "U1133Z1", + "id": "90ce025f-f607-47ec-b49b-0337668babe7" + }, + { + "routeId": "L236", + "platformId": "U1133Z2", + "id": "a688e173-b183-48db-a94f-0ccdea95411a" + }, + { + "routeId": "L236", + "platformId": "U1134Z1", + "id": "0d8f2d01-8ec8-4a2b-aa68-2e0432dc2310" + }, + { + "routeId": "L236", + "platformId": "U1134Z2", + "id": "64d39dca-abbe-4449-aee8-d78218ae2f49" + }, + { + "routeId": "L355", + "platformId": "U1136Z1", + "id": "d8ac50b9-98ee-47c4-af15-47c6e6286451" + }, + { + "routeId": "L316", + "platformId": "U1136Z1", + "id": "2fbea36a-4c46-4c95-940a-4b249052dfb2" + }, + { + "routeId": "L356", + "platformId": "U1136Z1", + "id": "2be76740-39c1-4282-8f43-ae5e79df8a68" + }, + { + "routeId": "L355", + "platformId": "U1136Z2", + "id": "c5703c0a-ab4e-42c5-86de-c5a7b877a7e0" + }, + { + "routeId": "L356", + "platformId": "U1136Z2", + "id": "d0bdf35e-8873-4dd9-b51a-fb14e28fda92" + }, + { + "routeId": "L316", + "platformId": "U1136Z2", + "id": "290bc184-72e9-4d72-a7d7-17b298ac4212" + }, + { + "routeId": "L355", + "platformId": "U1137Z1", + "id": "5d4f0558-560d-4515-80f8-f85ba58ee14f" + }, + { + "routeId": "L316", + "platformId": "U1137Z1", + "id": "d6390b1b-7aa3-445e-9727-ea1150f69768" + }, + { + "routeId": "L356", + "platformId": "U1137Z1", + "id": "e6881ff9-b504-40da-9d58-71a600b9b30f" + }, + { + "routeId": "L355", + "platformId": "U1137Z2", + "id": "f9e7e6f2-f69e-45ae-bada-e0123fff8dc9" + }, + { + "routeId": "L356", + "platformId": "U1137Z2", + "id": "d7c738d8-9c27-4f4c-b85d-13c97e3ee156" + }, + { + "routeId": "L316", + "platformId": "U1137Z2", + "id": "8b2dd82e-c526-4510-8cb2-a4b86af34ebb" + }, + { + "routeId": "L355", + "platformId": "U1138Z1", + "id": "63e592a4-e46e-4496-aaec-ad8d44388d3b" + }, + { + "routeId": "L355", + "platformId": "U1138Z2", + "id": "113b509c-b02c-40b7-b43b-00fe635cb17d" + }, + { + "routeId": "L355", + "platformId": "U1139Z1", + "id": "77d5d38d-9086-4392-94a4-8276344ef3e3" + }, + { + "routeId": "L355", + "platformId": "U1139Z2", + "id": "e264c246-3e75-4fe7-b677-774329cb7545" + }, + { + "routeId": "L9", + "platformId": "U113Z1", + "id": "a38b36ea-c496-4e74-80f1-4cd60cb53d36" + }, + { + "routeId": "L10", + "platformId": "U113Z1", + "id": "da892e2a-a3c1-4c2e-8cb0-469fb4e9be1d" + }, + { + "routeId": "L98", + "platformId": "U113Z1", + "id": "484d8f93-4920-4349-bf6f-f487d65c6902" + }, + { + "routeId": "L99", + "platformId": "U113Z1", + "id": "be6541b7-7ed8-437b-8cc8-76f561611ecd" + }, + { + "routeId": "L9", + "platformId": "U113Z2", + "id": "6be989c8-b4ca-4e6c-95ab-437361e798a4" + }, + { + "routeId": "L10", + "platformId": "U113Z2", + "id": "d330632a-cc1f-4a77-be93-60512d67c63c" + }, + { + "routeId": "L98", + "platformId": "U113Z2", + "id": "b2f62488-f498-4e74-ae45-e71dc6fe93e8" + }, + { + "routeId": "L99", + "platformId": "U113Z2", + "id": "4429942f-0867-47ca-9ab1-8221649ac112" + }, + { + "routeId": "L180", + "platformId": "U113Z3", + "id": "6b3693f4-f8fe-44e3-b024-46201607c467" + }, + { + "routeId": "L304", + "platformId": "U113Z3", + "id": "b959f043-39d7-4b86-9a44-745320e14c1f" + }, + { + "routeId": "L380", + "platformId": "U113Z3", + "id": "8bea7141-e060-49da-a261-fbf7655cd4e7" + }, + { + "routeId": "L180", + "platformId": "U113Z4", + "id": "a70dbbe4-329a-4998-b204-fe2bc8daa4dd" + }, + { + "routeId": "L304", + "platformId": "U113Z4", + "id": "7ecede6f-1d46-4191-9804-199ebc38667f" + }, + { + "routeId": "L380", + "platformId": "U113Z4", + "id": "b568672c-6f35-4ba4-9398-09a6e1a9ec13" + }, + { + "routeId": "L225", + "platformId": "U1140Z1", + "id": "35d2fded-ec69-451b-90be-00620f961ef4" + }, + { + "routeId": "L130", + "platformId": "U1140Z1", + "id": "0eb674c6-e1a6-41e1-9ee1-af5c9cbd5e1b" + }, + { + "routeId": "L246", + "platformId": "U1140Z1", + "id": "0ff5ae9c-6724-4000-b7a5-1928dd32c2b3" + }, + { + "routeId": "L904", + "platformId": "U1140Z1", + "id": "c0c11307-e8dd-4a04-8908-086ec98940f6" + }, + { + "routeId": "L418", + "platformId": "U1140Z1", + "id": "7f63eab9-ee50-401f-8012-932ae0567d5f" + }, + { + "routeId": "L992", + "platformId": "U1140Z101", + "id": "004a30dd-064c-47a2-86ee-4776b147f83d" + }, + { + "routeId": "L992", + "platformId": "U1140Z102", + "id": "9a1afa70-aa40-4481-a60b-a281a117a7b1" + }, + { + "routeId": "L225", + "platformId": "U1140Z2", + "id": "cb76eb8a-0f6d-4575-aa5b-be360114dde5" + }, + { + "routeId": "L130", + "platformId": "U1140Z2", + "id": "51eca48d-0a51-466f-830e-932ad76439ff" + }, + { + "routeId": "L246", + "platformId": "U1140Z2", + "id": "05866825-a76d-404e-9011-244f911b09c3" + }, + { + "routeId": "L904", + "platformId": "U1140Z2", + "id": "3361ea72-2bbb-49e2-a0f9-faab979e6ff4" + }, + { + "routeId": "L418", + "platformId": "U1140Z2", + "id": "2f549e8c-2718-40b7-8a0c-9456f55de90d" + }, + { + "routeId": "L100", + "platformId": "U1141Z1", + "id": "0824bdfe-be9a-45ba-ab5e-d815fb4abd97" + }, + { + "routeId": "L180", + "platformId": "U1141Z1", + "id": "ea4ec84f-c258-40d9-9131-6cc8dd1f0031" + }, + { + "routeId": "L130", + "platformId": "U1141Z1", + "id": "8e861b78-b8a4-4070-ac79-6a2077c77d77" + }, + { + "routeId": "L246", + "platformId": "U1141Z1", + "id": "c80ad8e0-1a86-48b8-a195-c22a1c5be9a3" + }, + { + "routeId": "L347", + "platformId": "U1141Z1", + "id": "3989ee21-7db9-493e-9d4c-a65e739fe838" + }, + { + "routeId": "L304", + "platformId": "U1141Z1", + "id": "c4045e27-5833-4aae-a303-6c4115af43ee" + }, + { + "routeId": "L404", + "platformId": "U1141Z1", + "id": "70e607a0-e44a-463a-b087-79bf7fa236c6" + }, + { + "routeId": "L305", + "platformId": "U1141Z1", + "id": "95a59bd4-c014-408e-8bc7-bed36b31226b" + }, + { + "routeId": "L306", + "platformId": "U1141Z1", + "id": "27900e39-a3d8-425c-9890-6a4be9984e01" + }, + { + "routeId": "L957", + "platformId": "U1141Z1", + "id": "3ca60760-3207-42d5-8b15-e350e95ba762" + }, + { + "routeId": "L307", + "platformId": "U1141Z1", + "id": "6903c2bb-0368-42ab-9388-76ab7a4b5d53" + }, + { + "routeId": "L324", + "platformId": "U1141Z1", + "id": "65ba0bce-32f3-4b6b-a447-98939465a506" + }, + { + "routeId": "L311", + "platformId": "U1141Z1", + "id": "b9655db4-1705-480f-be14-8f5df922336a" + }, + { + "routeId": "L308", + "platformId": "U1141Z1", + "id": "4813dd47-c6f5-42ae-bf9b-775f9b17d329" + }, + { + "routeId": "L310", + "platformId": "U1141Z1", + "id": "a21a0fec-ad0d-4fac-a084-69b56537a5b1" + }, + { + "routeId": "L952", + "platformId": "U1141Z1", + "id": "aa5c7974-5108-4f2b-b520-c44f997a1ffe" + }, + { + "routeId": "L384", + "platformId": "U1141Z1", + "id": "734fc45a-2fb2-4dba-9bf5-ca5037258bc3" + }, + { + "routeId": "L415", + "platformId": "U1141Z1", + "id": "49b1443e-febb-417d-898d-6750817e9e90" + }, + { + "routeId": "L904", + "platformId": "U1141Z10", + "id": "1aef2827-27a2-4b6b-8bd5-39ec1a71e50e" + }, + { + "routeId": "L992", + "platformId": "U1141Z101", + "id": "a1e57c69-844f-47bf-bea7-f8cf8c69add9" + }, + { + "routeId": "L992", + "platformId": "U1141Z102", + "id": "0c132d74-d2cc-42f1-8a03-10240d5e2164" + }, + { + "routeId": "L180", + "platformId": "U1141Z14", + "id": "49073460-eb4f-4c63-b6a2-2e08156d567c" + }, + { + "routeId": "L130", + "platformId": "U1141Z14", + "id": "cf575f12-ca34-45eb-a8a6-b9334ee9dcbf" + }, + { + "routeId": "L246", + "platformId": "U1141Z14", + "id": "f0375bcc-60bb-4a47-a00c-a6a3930662ba" + }, + { + "routeId": "L384", + "platformId": "U1141Z16", + "id": "be738e74-4599-4d1b-bf89-736e5d3ec631" + }, + { + "routeId": "L307", + "platformId": "U1141Z2", + "id": "0c3b9d3a-78ab-4fd3-89dc-1db1f45e70d7" + }, + { + "routeId": "L310", + "platformId": "U1141Z2", + "id": "7aa862e2-c980-4ea2-ac28-a80014647628" + }, + { + "routeId": "L311", + "platformId": "U1141Z2", + "id": "bec40dce-d08e-4ad2-9fb8-4a5bfc38613a" + }, + { + "routeId": "L380", + "platformId": "U1141Z2", + "id": "f0a3f0bf-b7ae-431a-80df-0bf575a01c39" + }, + { + "routeId": "L308", + "platformId": "U1141Z2", + "id": "8150cc2a-044b-4eae-95a1-f8446639c0e3" + }, + { + "routeId": "L952", + "platformId": "U1141Z2", + "id": "5818b20b-9e60-4b48-b39e-9ec6c4ba0581" + }, + { + "routeId": "L347", + "platformId": "U1141Z3", + "id": "e3a3238f-1368-4ea3-a765-8e9b3097344d" + }, + { + "routeId": "L306", + "platformId": "U1141Z3", + "id": "1b977e16-13a6-4d8b-9852-116405f32445" + }, + { + "routeId": "L957", + "platformId": "U1141Z3", + "id": "f540b894-5baa-4ffb-b45f-b6d419661122" + }, + { + "routeId": "L386", + "platformId": "U1141Z3", + "id": "c5b4cec9-fadb-40d4-985e-18636f81fc73" + }, + { + "routeId": "L100", + "platformId": "U1141Z5", + "id": "d777713d-4728-4509-8353-edb04eb28c96" + }, + { + "routeId": "L180", + "platformId": "U1141Z5", + "id": "e35aa227-a12c-47c2-a815-ddbd626a5ca5" + }, + { + "routeId": "L305", + "platformId": "U1141Z5", + "id": "ccddeb98-6db6-4368-be28-4ea02396a9bf" + }, + { + "routeId": "L304", + "platformId": "U1141Z5", + "id": "5ca15102-f0ba-429a-b584-ca31adfd21a3" + }, + { + "routeId": "L404", + "platformId": "U1141Z5", + "id": "dc4d0b21-d98d-4b5a-890c-91b4d43b2b37" + }, + { + "routeId": "L324", + "platformId": "U1141Z5", + "id": "0750a66a-3410-4db8-a88b-ee7e3518dd17" + }, + { + "routeId": "L380", + "platformId": "U1141Z5", + "id": "dd1db4ab-b019-4873-a5dc-78c11ad012ef" + }, + { + "routeId": "L417", + "platformId": "U1141Z5", + "id": "830d19fd-cbdf-4bfb-b492-8584510c6be6" + }, + { + "routeId": "L304", + "platformId": "U1141Z6", + "id": "52f11266-89be-49d3-8bf2-a5d22097bd10" + }, + { + "routeId": "L305", + "platformId": "U1141Z6", + "id": "17c1028c-1b9f-4a15-aee5-af286555126f" + }, + { + "routeId": "L404", + "platformId": "U1141Z6", + "id": "c4276381-2691-40fa-9133-f9860dfb6242" + }, + { + "routeId": "L417", + "platformId": "U1141Z6", + "id": "84df368b-2d05-42b9-a354-2dad6e3b0114" + }, + { + "routeId": "L415", + "platformId": "U1141Z6", + "id": "c5382aff-3bcf-4a42-bec3-4d8737d08aab" + }, + { + "routeId": "L386", + "platformId": "U1141Z71", + "id": "2add05d2-9bff-4cc5-b66b-307736878251" + }, + { + "routeId": "L904", + "platformId": "U1141Z9", + "id": "119d5e85-4dcf-41cd-b0ab-a99be3824bd4" + }, + { + "routeId": "L347", + "platformId": "U1142Z1", + "id": "c7f72a21-9eaa-4d6e-9ddf-41d1e3633c5f" + }, + { + "routeId": "L307", + "platformId": "U1142Z1", + "id": "865802f4-ded5-4957-8731-784f53daec08" + }, + { + "routeId": "L310", + "platformId": "U1142Z1", + "id": "090b460d-5cfa-4372-b6aa-293d768adc3c" + }, + { + "routeId": "L311", + "platformId": "U1142Z1", + "id": "4bb10567-d2a1-4966-b74f-12b0aa818dda" + }, + { + "routeId": "L380", + "platformId": "U1142Z1", + "id": "ed22a15c-1956-4433-ac17-6d93f03ccf0a" + }, + { + "routeId": "L308", + "platformId": "U1142Z1", + "id": "ffc990f8-73d6-4497-8129-ecbf3bfd993c" + }, + { + "routeId": "L952", + "platformId": "U1142Z1", + "id": "d32cc9b4-6918-443e-9f64-8b53ca071884" + }, + { + "routeId": "L347", + "platformId": "U1142Z2", + "id": "48b7e688-126f-4907-a71a-f97b30701fa0" + }, + { + "routeId": "L305", + "platformId": "U1142Z2", + "id": "7a52b496-965d-4ca9-850b-4e2fa91a5939" + }, + { + "routeId": "L304", + "platformId": "U1142Z2", + "id": "dfec6513-14c2-4e65-bc78-2d40738f672d" + }, + { + "routeId": "L307", + "platformId": "U1142Z2", + "id": "c35e5017-df57-4260-ae07-db94bc56e3e1" + }, + { + "routeId": "L311", + "platformId": "U1142Z2", + "id": "e5ccaa29-269b-449e-be1b-57be2ff0df23" + }, + { + "routeId": "L308", + "platformId": "U1142Z2", + "id": "2ba2db3d-54c1-42db-9479-5febf4b06116" + }, + { + "routeId": "L380", + "platformId": "U1142Z2", + "id": "ede80acd-9e24-4bc9-94e5-94496e2f8f61" + }, + { + "routeId": "L310", + "platformId": "U1142Z2", + "id": "1bb2d114-3c86-48e8-a7bb-4e1e0dfe16a7" + }, + { + "routeId": "L952", + "platformId": "U1142Z2", + "id": "45ad27b8-cd14-40d7-9a1a-93b4d1f1f745" + }, + { + "routeId": "L306", + "platformId": "U1143Z1", + "id": "b7294514-0e91-4485-80b1-cca5429acd77" + }, + { + "routeId": "L957", + "platformId": "U1143Z1", + "id": "fbc55052-8b54-4c59-bff6-1fd7336fac64" + }, + { + "routeId": "L306", + "platformId": "U1143Z2", + "id": "f0e19bb3-bb8d-4939-a571-c45eb10adcce" + }, + { + "routeId": "L957", + "platformId": "U1143Z2", + "id": "8a660463-2ea4-40fa-981d-203992ced5fa" + }, + { + "routeId": "L347", + "platformId": "U1144Z1", + "id": "e7c9dc5b-3617-43f4-be81-24bf864581ca" + }, + { + "routeId": "L306", + "platformId": "U1144Z1", + "id": "26a44fa7-6563-4905-b6f0-dd7d6cad5749" + }, + { + "routeId": "L957", + "platformId": "U1144Z1", + "id": "313a5ced-a80f-4e35-8017-91712c85d049" + }, + { + "routeId": "L365", + "platformId": "U1144Z1", + "id": "f3c1b7c8-85bf-484b-a679-e2b35eb065c4" + }, + { + "routeId": "L386", + "platformId": "U1144Z1", + "id": "c8f5733d-113a-4cfa-b815-1b278fb08b1d" + }, + { + "routeId": "L347", + "platformId": "U1144Z4", + "id": "ddb047ce-984b-4e3f-88e4-1a5fa79bbdb9" + }, + { + "routeId": "L306", + "platformId": "U1144Z4", + "id": "a08a7538-8ac0-47bf-bc88-e7a2994c98b5" + }, + { + "routeId": "L957", + "platformId": "U1144Z4", + "id": "893ef606-7f83-40dc-937c-c36c724f9d4e" + }, + { + "routeId": "L365", + "platformId": "U1144Z4", + "id": "a2d8f997-5fe7-44b8-ad14-30810c89ea2a" + }, + { + "routeId": "L386", + "platformId": "U1144Z4", + "id": "2ec52797-08ed-4a6e-a454-0a916a98af7b" + }, + { + "routeId": "L306", + "platformId": "U1145Z1", + "id": "ac01a0f1-fe74-4632-adbb-8a1f14668c05" + }, + { + "routeId": "L957", + "platformId": "U1145Z1", + "id": "eeb09c2e-ed91-426c-aab7-73ffc84a8671" + }, + { + "routeId": "L306", + "platformId": "U1145Z2", + "id": "060d4446-d468-4ac8-953f-0618c998ed7c" + }, + { + "routeId": "L957", + "platformId": "U1145Z2", + "id": "6be0e768-5344-4a03-a80f-d64488ede648" + }, + { + "routeId": "L365", + "platformId": "U1145Z3", + "id": "fd9a65e7-d61a-40af-b3ff-fb69e8ed770d" + }, + { + "routeId": "L386", + "platformId": "U1145Z3", + "id": "c8eba664-b0f2-44a3-96fe-3bca954716d5" + }, + { + "routeId": "L365", + "platformId": "U1145Z4", + "id": "55d3d16d-944c-4d34-b738-35481b1cb049" + }, + { + "routeId": "L386", + "platformId": "U1145Z4", + "id": "62c7a254-d3cf-47cf-8f04-df3db553139e" + }, + { + "routeId": "L347", + "platformId": "U1146Z1", + "id": "1af5c865-83f0-43d7-afcb-3eccc278832b" + }, + { + "routeId": "L306", + "platformId": "U1146Z1", + "id": "4181c266-8656-40bf-bd9b-d9b430d6686a" + }, + { + "routeId": "L957", + "platformId": "U1146Z1", + "id": "e5052050-b89f-4390-96fe-6a49ddc23fa5" + }, + { + "routeId": "L347", + "platformId": "U1146Z2", + "id": "a1f0c58e-29df-404c-9ec8-182a269c0741" + }, + { + "routeId": "L306", + "platformId": "U1146Z2", + "id": "0fe89e50-6df0-45fd-a325-67ec0fe46097" + }, + { + "routeId": "L957", + "platformId": "U1146Z2", + "id": "b05d365a-6a99-4f1a-b4a0-434407bb37df" + }, + { + "routeId": "L347", + "platformId": "U1147Z1", + "id": "35aa47e7-5e26-42eb-9f9f-45ae963351e3" + }, + { + "routeId": "L306", + "platformId": "U1147Z1", + "id": "d584925b-709e-4a51-9325-567a4c22697e" + }, + { + "routeId": "L957", + "platformId": "U1147Z1", + "id": "dafaa5b5-9f38-46b2-b8ec-115c60711994" + }, + { + "routeId": "L347", + "platformId": "U1147Z2", + "id": "0812212b-a5b6-4cd1-b51f-15dd1dccdab7" + }, + { + "routeId": "L306", + "platformId": "U1147Z2", + "id": "6dfacee4-0a50-4421-b11f-00d6b0062699" + }, + { + "routeId": "L957", + "platformId": "U1147Z2", + "id": "31e1b732-d7f0-4c4d-9ac3-adeadf6afd4c" + }, + { + "routeId": "L214", + "platformId": "U1148Z1", + "id": "b6b79079-74e9-4396-a90b-b3cd7d440027" + }, + { + "routeId": "L306", + "platformId": "U1148Z1", + "id": "36858866-19cf-45d9-9e27-f140ab085d9e" + }, + { + "routeId": "L957", + "platformId": "U1148Z1", + "id": "91cb8114-a7b6-4fc5-a522-0d5118e6ab86" + }, + { + "routeId": "L214", + "platformId": "U1148Z2", + "id": "ec5f12e2-e899-424c-bbaa-a0b18d1a2534" + }, + { + "routeId": "L306", + "platformId": "U1148Z2", + "id": "9e1ff74b-de12-4594-b48d-a849c75c82ee" + }, + { + "routeId": "L957", + "platformId": "U1148Z2", + "id": "4813a626-9f7a-4af6-bc3b-8ecfdf651c6a" + }, + { + "routeId": "L353", + "platformId": "U1149Z1", + "id": "62d2e3e3-0fa8-44c8-8225-389b1a343f24" + }, + { + "routeId": "L353", + "platformId": "U1149Z2", + "id": "99d3a917-4033-4026-98b2-8e85ec609b10" + }, + { + "routeId": "L136", + "platformId": "U114Z1", + "id": "2fba6194-a8f9-4edf-bb94-f02b64e304bc" + }, + { + "routeId": "L911", + "platformId": "U114Z1", + "id": "6d5ac8b0-9aab-40f9-8d30-8fbc1dcf480f" + }, + { + "routeId": "L351", + "platformId": "U114Z1", + "id": "279d08bf-6d66-4aba-8270-eb50623a4110" + }, + { + "routeId": "L136", + "platformId": "U114Z3", + "id": "372fa4e9-f7c9-49f7-88cd-727bfa24bf3a" + }, + { + "routeId": "L911", + "platformId": "U114Z3", + "id": "7e19a228-b97d-4a69-8b7c-895de8e315b0" + }, + { + "routeId": "L351", + "platformId": "U114Z3", + "id": "e079e4c6-9aab-452b-a48d-749e3c3fe101" + }, + { + "routeId": "L353", + "platformId": "U1150Z1", + "id": "7bf40910-73b0-4915-a8da-6cef617d045a" + }, + { + "routeId": "L353", + "platformId": "U1150Z2", + "id": "966a5ae6-48e6-4b9d-8379-1413a439f0d1" + }, + { + "routeId": "L353", + "platformId": "U1150Z3", + "id": "71d905ab-047d-4caf-ac9a-a6eb74ae892a" + }, + { + "routeId": "L151", + "platformId": "U1151Z1", + "id": "b48068ad-b0f8-42a6-84e9-135aeeeb2752" + }, + { + "routeId": "L151", + "platformId": "U1151Z2", + "id": "bf129a9f-c4d6-47ac-a196-5aa2cf1d9c16" + }, + { + "routeId": "L166", + "platformId": "U1151Z3", + "id": "ac2db852-9337-4793-8660-0468513d9c9d" + }, + { + "routeId": "L166", + "platformId": "U1151Z4", + "id": "2c2d16f9-450f-4ef7-abbf-32b77d29601a" + }, + { + "routeId": "L128", + "platformId": "U1152Z1", + "id": "735881f9-063b-4d8f-a510-d9d1ee78fbca" + }, + { + "routeId": "L128", + "platformId": "U1152Z2", + "id": "77d290d7-70b4-48ff-b8bc-381267f9322a" + }, + { + "routeId": "L128", + "platformId": "U1153Z1", + "id": "2a228810-8e3f-4f06-9882-cd2fdf483f98" + }, + { + "routeId": "L904", + "platformId": "U1154Z1", + "id": "3fe4ea1b-1c3e-4456-bb37-1ac6a19f0311" + }, + { + "routeId": "L992", + "platformId": "U1154Z101", + "id": "bfbbf676-eab3-43d0-8790-fe45a76f1703" + }, + { + "routeId": "L992", + "platformId": "U1154Z102", + "id": "0ca87ea3-41a9-437b-9795-fe7987e0562c" + }, + { + "routeId": "L904", + "platformId": "U1154Z2", + "id": "4d29a578-f3cf-4222-8853-5fda8294b569" + }, + { + "routeId": "L168", + "platformId": "U1154Z3", + "id": "bf10ad1f-3bc4-4c72-bcb8-5068aa729a41" + }, + { + "routeId": "L168", + "platformId": "U1154Z4", + "id": "283f0e70-3206-4de9-bb64-1d6cdde2791c" + }, + { + "routeId": "L128", + "platformId": "U1155Z1", + "id": "f208e042-7648-4ba0-8260-165abc93be68" + }, + { + "routeId": "L128", + "platformId": "U1156Z1", + "id": "eb20c97f-be27-4049-ad53-1f283b0a3459" + }, + { + "routeId": "L150", + "platformId": "U1157Z1", + "id": "1fbbef3c-3231-49ce-8f6e-c1fcab323348" + }, + { + "routeId": "L190", + "platformId": "U1157Z1", + "id": "829f38a4-a3c4-469f-b96a-e2df78bcdc68" + }, + { + "routeId": "L910", + "platformId": "U1157Z1", + "id": "4bee5dc3-c6cb-4c07-b120-2cebf63b1ba1" + }, + { + "routeId": "L150", + "platformId": "U1157Z2", + "id": "1d8befff-5d43-4717-8836-feb61fbf9351" + }, + { + "routeId": "L190", + "platformId": "U1157Z2", + "id": "0cd229e1-4106-4ae7-b7bb-3db3d5f09d51" + }, + { + "routeId": "L910", + "platformId": "U1157Z2", + "id": "277d8911-56b8-41ea-9e69-226ab48edf6a" + }, + { + "routeId": "L139", + "platformId": "U1158Z1", + "id": "d6219750-9bbc-4428-8fc6-4b0521d15a55" + }, + { + "routeId": "L246", + "platformId": "U1158Z1", + "id": "201dc4fb-79c7-474c-bd33-315fd004df8d" + }, + { + "routeId": "L117", + "platformId": "U1158Z1", + "id": "25976a30-676b-42ed-9c7f-9379aa74e834" + }, + { + "routeId": "L917", + "platformId": "U1158Z1", + "id": "9c935413-1064-4f26-a233-7dcbc780de3d" + }, + { + "routeId": "L341", + "platformId": "U1158Z1", + "id": "b0f2299d-5b71-43d7-8d2d-195a4d6ab466" + }, + { + "routeId": "L139", + "platformId": "U1158Z2", + "id": "d0f44087-bf97-48ee-83e7-f37a0e0182fd" + }, + { + "routeId": "L246", + "platformId": "U1158Z2", + "id": "e2faa0d3-2a1b-46bc-9d13-d98e597e47fe" + }, + { + "routeId": "L117", + "platformId": "U1158Z2", + "id": "1028b7ee-9667-499b-9421-f458ebc298c0" + }, + { + "routeId": "L917", + "platformId": "U1158Z2", + "id": "527db6de-bed5-4eba-b85f-f630e9a326fa" + }, + { + "routeId": "L341", + "platformId": "U1158Z82", + "id": "a8a3d8b2-8160-457a-8408-51f754683b57" + }, + { + "routeId": "L128", + "platformId": "U1159Z1", + "id": "6c7b803a-49a4-4f09-8d13-60d64759b84b" + }, + { + "routeId": "L1", + "platformId": "U115Z1", + "id": "9e35b91c-b5e8-4193-90ff-6fb46d6826f4" + }, + { + "routeId": "L17", + "platformId": "U115Z1", + "id": "bbbafada-a209-4ec5-89d8-7778e0fe245e" + }, + { + "routeId": "L25", + "platformId": "U115Z1", + "id": "8eadae08-dbe7-4010-8f7d-39ffb534c33a" + }, + { + "routeId": "L93", + "platformId": "U115Z1", + "id": "3e383384-bcc3-4010-859b-637ed6e9832c" + }, + { + "routeId": "L993", + "platformId": "U115Z101", + "id": "7e71ab9f-7aa9-4bc8-80fe-e65d8f028343" + }, + { + "routeId": "L993", + "platformId": "U115Z102", + "id": "cd07c3d1-fe01-41c8-a497-5475ef0ef56a" + }, + { + "routeId": "L112", + "platformId": "U115Z11", + "id": "98fa2924-638c-4631-ab37-54e89e5556fb" + }, + { + "routeId": "L234", + "platformId": "U115Z11", + "id": "3929806c-4869-4cdf-824a-fbecbbb3be2c" + }, + { + "routeId": "L1", + "platformId": "U115Z2", + "id": "946fb995-3a27-4f18-98c1-0e197d01770f" + }, + { + "routeId": "L17", + "platformId": "U115Z2", + "id": "0d5ca1ed-4614-4957-a420-157a2d54e71f" + }, + { + "routeId": "L25", + "platformId": "U115Z2", + "id": "80a63f5b-97c0-4761-b413-3b2415fe4eb4" + }, + { + "routeId": "L93", + "platformId": "U115Z2", + "id": "d3080806-0fe7-4eea-a473-bf55c9cdb899" + }, + { + "routeId": "L1", + "platformId": "U115Z3", + "id": "e8295f8b-e0c0-4cd8-8461-49ff5340831b" + }, + { + "routeId": "L17", + "platformId": "U115Z3", + "id": "bec9aa33-164b-4187-888c-75983903e10a" + }, + { + "routeId": "L25", + "platformId": "U115Z3", + "id": "179ba8ff-1854-44a0-807d-6a1ef62aa0cb" + }, + { + "routeId": "L93", + "platformId": "U115Z3", + "id": "3cb151ce-7974-4049-8efe-8da43eb475c8" + }, + { + "routeId": "L827", + "platformId": "U115Z3", + "id": "81702a76-295c-45b1-8813-facc985faf14" + }, + { + "routeId": "L1220", + "platformId": "U115Z301", + "id": "e75ef571-c208-4fe4-806b-75a4456ba9f4" + }, + { + "routeId": "L1304", + "platformId": "U115Z301", + "id": "ab3bf6e5-c016-408e-9bfa-1c3b8ecd4743" + }, + { + "routeId": "L1349", + "platformId": "U115Z301", + "id": "eb80fe04-893a-4c3a-85a9-4329ef8efd5f" + }, + { + "routeId": "L1304", + "platformId": "U115Z305", + "id": "a8bd2303-7a0d-4208-9f6c-a0ea8978b763" + }, + { + "routeId": "L1", + "platformId": "U115Z4", + "id": "fe953ab9-88d2-4871-9548-3d2cb7e1a17f" + }, + { + "routeId": "L17", + "platformId": "U115Z4", + "id": "1b5c7dce-4b88-4046-a3dd-f3cb99da6ca2" + }, + { + "routeId": "L25", + "platformId": "U115Z4", + "id": "eb86aded-731e-4487-b54f-f07b2b77add0" + }, + { + "routeId": "L93", + "platformId": "U115Z4", + "id": "53e7b261-7a8a-45bb-b7ea-35d044b8dd0e" + }, + { + "routeId": "L187", + "platformId": "U115Z51", + "id": "6d235c5d-0430-4ff7-b001-85ed15bf0acc" + }, + { + "routeId": "L112", + "platformId": "U115Z6", + "id": "1e302ac8-2816-49ff-8b09-7f76a6457197" + }, + { + "routeId": "L187", + "platformId": "U115Z6", + "id": "8477cb72-f9bf-46a8-9325-03f98a2b1bce" + }, + { + "routeId": "L201", + "platformId": "U115Z6", + "id": "e94703b6-67ae-4ef7-9688-ecdf99a72b21" + }, + { + "routeId": "L234", + "platformId": "U115Z6", + "id": "46e7007e-c6b9-46ff-beca-88312553d23b" + }, + { + "routeId": "L827", + "platformId": "U115Z6", + "id": "91a6050f-8e09-4a38-9d80-111471a37990" + }, + { + "routeId": "L112", + "platformId": "U115Z8", + "id": "598d618d-c50a-4804-a707-fbf6f3c8c8a6" + }, + { + "routeId": "L234", + "platformId": "U115Z8", + "id": "b628ec12-ea80-4030-a951-06a59d795125" + }, + { + "routeId": "L187", + "platformId": "U115Z9", + "id": "f623fd63-8c02-4aca-9b7e-d06cdf048bd4" + }, + { + "routeId": "L201", + "platformId": "U115Z9", + "id": "d66ec1e3-b0a9-4546-8a06-e20c946d170a" + }, + { + "routeId": "L155", + "platformId": "U1160Z1", + "id": "b8dcd3fe-864d-426c-b986-f0b2249a0afc" + }, + { + "routeId": "L155", + "platformId": "U1160Z2", + "id": "69630635-3cae-4e09-a08b-8a5bbffbb524" + }, + { + "routeId": "L163", + "platformId": "U1161Z1", + "id": "e607a907-308a-4877-bfaa-ccdce2fdfa77" + }, + { + "routeId": "L204", + "platformId": "U1161Z1", + "id": "5b7fa673-88e6-4395-922f-9037b0fdf6d8" + }, + { + "routeId": "L163", + "platformId": "U1161Z2", + "id": "44ef9f47-48e9-4399-9797-7cd33cf24f12" + }, + { + "routeId": "L204", + "platformId": "U1161Z2", + "id": "2e2960e9-167b-4e0b-af9e-fa889d012429" + }, + { + "routeId": "L208", + "platformId": "U1162Z1", + "id": "8dffdc5b-3680-47e7-80c5-0d438a5281a1" + }, + { + "routeId": "L204", + "platformId": "U1162Z1", + "id": "8d670cbb-a00e-46f9-bd03-a826a6d5d4fa" + }, + { + "routeId": "L224", + "platformId": "U1162Z1", + "id": "7196d99f-eda8-4b2d-b139-1409dd9a178d" + }, + { + "routeId": "L208", + "platformId": "U1163Z1", + "id": "13548e53-dc37-42c3-b7d4-935048708508" + }, + { + "routeId": "L204", + "platformId": "U1163Z1", + "id": "7c16d8d1-1158-4f05-b2e2-688bd4b167df" + }, + { + "routeId": "L224", + "platformId": "U1163Z1", + "id": "ec06f67c-93d4-41a3-a5e4-31fe0efc3235" + }, + { + "routeId": "L208", + "platformId": "U1163Z2", + "id": "5a5aede6-11d4-499e-b5d1-21ce1f77bfa6" + }, + { + "routeId": "L204", + "platformId": "U1163Z2", + "id": "c8889697-b523-4d25-9855-716d4281b4ac" + }, + { + "routeId": "L224", + "platformId": "U1163Z2", + "id": "d06ae614-36b8-4def-bc01-00c12bd2a095" + }, + { + "routeId": "L208", + "platformId": "U1164Z1", + "id": "1a084355-ab3e-401e-9f03-3d80a5be7062" + }, + { + "routeId": "L208", + "platformId": "U1164Z2", + "id": "9bd41ec3-126c-40ec-a69a-ce262f021084" + }, + { + "routeId": "L208", + "platformId": "U1165Z1", + "id": "88b5cbc1-2d87-4623-b1ce-b09986f5faa2" + }, + { + "routeId": "L208", + "platformId": "U1165Z2", + "id": "bb84f0b7-b377-4b43-866f-dd0b7462ae8b" + }, + { + "routeId": "L108", + "platformId": "U1166Z1", + "id": "ee28c23a-9d52-4ffd-89e6-6346e1a8842c" + }, + { + "routeId": "L225", + "platformId": "U1166Z3", + "id": "fd6f7f3b-ad96-4d92-bd8b-92195f5e33ef" + }, + { + "routeId": "L1224", + "platformId": "U1166Z301", + "id": "b075b179-3184-4376-b0ed-ea30303b2f96" + }, + { + "routeId": "L1245", + "platformId": "U1166Z301", + "id": "637d1c36-e688-4823-a4b0-9b0ac3612c32" + }, + { + "routeId": "L1305", + "platformId": "U1166Z301", + "id": "7bb6483d-871f-4162-af99-01c2b7525c8b" + }, + { + "routeId": "L1354", + "platformId": "U1166Z301", + "id": "9ebffb4a-1c88-4a51-8de9-243b4315e240" + }, + { + "routeId": "L108", + "platformId": "U1166Z4", + "id": "e84ba994-14c4-4d9d-b482-b6ef8478d2b7" + }, + { + "routeId": "L108", + "platformId": "U1167Z1", + "id": "bea9e23f-3584-40a4-9e17-46a0cfc35115" + }, + { + "routeId": "L108", + "platformId": "U1167Z2", + "id": "61aa25ad-64a4-49d8-9317-3a7fea73e5f4" + }, + { + "routeId": "L108", + "platformId": "U1168Z1", + "id": "5e7d2557-bf49-4c31-a143-b04028797f33" + }, + { + "routeId": "L108", + "platformId": "U1168Z2", + "id": "8d563964-3762-4d5a-b354-2786f07875be" + }, + { + "routeId": "L108", + "platformId": "U1169Z1", + "id": "79b383bd-128e-49e5-bc82-40a7212ae6f8" + }, + { + "routeId": "L108", + "platformId": "U1169Z2", + "id": "04561aad-cadd-44ed-82c6-114b5ff86ac3" + }, + { + "routeId": "L908", + "platformId": "U116Z12", + "id": "8de700a7-051e-4d3e-bd80-938005e4f58c" + }, + { + "routeId": "L137", + "platformId": "U116Z2", + "id": "f66d80e8-7ed0-43e1-90dd-55bbc1f71192" + }, + { + "routeId": "L908", + "platformId": "U116Z2", + "id": "bba0218c-fef5-4d22-8f73-c4b2d983b9e6" + }, + { + "routeId": "L201", + "platformId": "U1170Z1", + "id": "fb93a125-fb88-4551-8eef-584e547cb027" + }, + { + "routeId": "L166", + "platformId": "U1170Z1", + "id": "6706632c-e60f-408e-b500-d04751bcd7c1" + }, + { + "routeId": "L201", + "platformId": "U1170Z2", + "id": "64570d38-9794-4f94-adb8-0d2529eee25a" + }, + { + "routeId": "L166", + "platformId": "U1170Z2", + "id": "0b7422ea-18b0-40d4-9340-a4253c6a2c53" + }, + { + "routeId": "L463", + "platformId": "U1171Z1", + "id": "5f3abf1f-87bc-4f09-be46-2be0dac11137" + }, + { + "routeId": "L403", + "platformId": "U1171Z1", + "id": "7953cb4e-e535-4254-809c-231afefd1e5b" + }, + { + "routeId": "L775", + "platformId": "U1171Z1", + "id": "61bdfa54-b429-406a-9e20-20f245e550cf" + }, + { + "routeId": "L463", + "platformId": "U1171Z2", + "id": "74b9d881-af29-43d4-8b37-0342f7855915" + }, + { + "routeId": "L403", + "platformId": "U1171Z2", + "id": "1d34446e-cca0-4c81-8bf1-46bf6ffc8da6" + }, + { + "routeId": "L775", + "platformId": "U1171Z2", + "id": "943d909b-37c2-4261-b22a-ec01634e947e" + }, + { + "routeId": "L397", + "platformId": "U1172Z1", + "id": "955229c2-b9ee-45d1-986f-34aae111454f" + }, + { + "routeId": "L397", + "platformId": "U1172Z2", + "id": "bc91e521-65bf-4e45-8711-254ac432418c" + }, + { + "routeId": "L499", + "platformId": "U1173Z1", + "id": "4f483e18-5e56-476b-a792-bb3517259eca" + }, + { + "routeId": "L775", + "platformId": "U1173Z1", + "id": "77359208-9c9b-4fd6-856f-f39818dbc574" + }, + { + "routeId": "L499", + "platformId": "U1173Z2", + "id": "3dbb51f5-4f98-48ad-8880-286310d0719d" + }, + { + "routeId": "L775", + "platformId": "U1173Z2", + "id": "806e0861-4752-4738-9484-aca19613e2e0" + }, + { + "routeId": "L775", + "platformId": "U1174Z1", + "id": "7344c2d9-9ecc-47d1-be56-d84ed6c90d23" + }, + { + "routeId": "L775", + "platformId": "U1174Z2", + "id": "4383ce02-ea1b-448b-b036-8680c6da5373" + }, + { + "routeId": "L1217", + "platformId": "U1175Z301", + "id": "9d4abf41-9fdf-4f84-9137-834e1e4cc332" + }, + { + "routeId": "L1249", + "platformId": "U1175Z301", + "id": "c08171a3-a0b1-43ee-8034-517cb74c858c" + }, + { + "routeId": "L1309", + "platformId": "U1175Z301", + "id": "0682a750-6e3c-4738-8a3f-f33321bce626" + }, + { + "routeId": "L347", + "platformId": "U1176Z1", + "id": "8765f534-ee56-4be0-8059-420650c08065" + }, + { + "routeId": "L347", + "platformId": "U1176Z2", + "id": "9a0b825b-b1e0-44e6-9ae0-d0cab6cc0e62" + }, + { + "routeId": "L347", + "platformId": "U1177Z1", + "id": "cc97b0e5-49ed-48d0-bdbc-9381120ca32c" + }, + { + "routeId": "L347", + "platformId": "U1177Z2", + "id": "02ca3e07-b45d-4b84-89ba-73755c976be8" + }, + { + "routeId": "L347", + "platformId": "U1178Z1", + "id": "91b3eeac-853c-4682-aa22-90eaba0798b2" + }, + { + "routeId": "L347", + "platformId": "U1178Z2", + "id": "da08da9e-33f7-48f6-aa8c-a006dc6433df" + }, + { + "routeId": "L347", + "platformId": "U1179Z1", + "id": "0abbb45e-dedf-4b92-a375-c87bfddbde26" + }, + { + "routeId": "L105", + "platformId": "U117Z1", + "id": "8de52861-53c6-4be0-9628-796f1bd55b58" + }, + { + "routeId": "L105", + "platformId": "U117Z2", + "id": "96a38e4e-8237-4226-a60b-5808e8eea63e" + }, + { + "routeId": "L130", + "platformId": "U117Z2", + "id": "9658bea9-a25a-4ab9-9fc4-c12812959150" + }, + { + "routeId": "L130", + "platformId": "U117Z3", + "id": "3d807078-8cf4-4955-bb41-4606a0efede4" + }, + { + "routeId": "L347", + "platformId": "U1180Z1", + "id": "70f5c9bb-764c-4c8a-9ace-3b351d4f6a04" + }, + { + "routeId": "L347", + "platformId": "U1180Z2", + "id": "5f138109-54b8-488f-b547-037dd718a06c" + }, + { + "routeId": "L245", + "platformId": "U1181Z1", + "id": "dc26d8db-ef1b-4ab3-8f03-146c28e546fb" + }, + { + "routeId": "L245", + "platformId": "U1182Z1", + "id": "071016b0-e028-4b8f-be84-0f02cb983881" + }, + { + "routeId": "L172", + "platformId": "U1183Z1", + "id": "388bcd50-2cb9-435b-b5f0-48883d8e6513" + }, + { + "routeId": "L244", + "platformId": "U1183Z1", + "id": "79a65991-c54b-4a09-8e80-6cac87c9f93d" + }, + { + "routeId": "L172", + "platformId": "U1183Z2", + "id": "25a2129b-86fd-4adf-a36c-89c08db794a7" + }, + { + "routeId": "L244", + "platformId": "U1183Z2", + "id": "c90c6c10-7356-4bd2-b4ea-a4db2f7a86d3" + }, + { + "routeId": "L245", + "platformId": "U1184Z1", + "id": "c948e245-e8bd-43f7-9158-e26fe8d98b54" + }, + { + "routeId": "L352", + "platformId": "U1185Z1", + "id": "55a64cd9-1937-4bcb-aa93-2c0940c66e55" + }, + { + "routeId": "L352", + "platformId": "U1185Z2", + "id": "73cb7035-21e5-4adf-b572-ccbd5c4220fc" + }, + { + "routeId": "L352", + "platformId": "U1186Z1", + "id": "bc07657f-03d7-4eaf-ae12-aa2838d76d7f" + }, + { + "routeId": "L352", + "platformId": "U1186Z2", + "id": "7e1a1d61-34ce-43e9-882e-7a010fd78921" + }, + { + "routeId": "L352", + "platformId": "U1187Z1", + "id": "07a5d8cc-b791-4365-a86d-689fb0e7ba7b" + }, + { + "routeId": "L352", + "platformId": "U1187Z2", + "id": "6fafbdb3-8188-425a-a4c4-40c8a48abbeb" + }, + { + "routeId": "L1226", + "platformId": "U1187Z301", + "id": "22082d91-e3a8-4634-98b1-14275d09fbb9" + }, + { + "routeId": "L1306", + "platformId": "U1187Z301", + "id": "4d2648da-63af-4146-82f9-b9dacfb1f73f" + }, + { + "routeId": "L352", + "platformId": "U1188Z1", + "id": "11407d7d-1f45-4417-83d4-cecf1a79a442" + }, + { + "routeId": "L352", + "platformId": "U1188Z2", + "id": "e7f9811e-4a33-4292-9d9a-c088710e9c91" + }, + { + "routeId": "L352", + "platformId": "U1189Z1", + "id": "1b59f092-b41b-4488-a548-33a94f921b34" + }, + { + "routeId": "L310", + "platformId": "U1189Z2", + "id": "b36e4bf5-bf84-4f0c-af59-3538ac798bfd" + }, + { + "routeId": "L352", + "platformId": "U1189Z3", + "id": "f877fc83-9d70-40b3-bfda-925a0e9416c1" + }, + { + "routeId": "L10", + "platformId": "U118Z1", + "id": "3c943d85-f5ed-4c80-8450-09ab61bf3a37" + }, + { + "routeId": "L11", + "platformId": "U118Z1", + "id": "3c94a7ea-21e4-4d88-8eea-0037ca53ccdb" + }, + { + "routeId": "L13", + "platformId": "U118Z1", + "id": "34cdb391-817f-48d0-afea-263e0d04f9a0" + }, + { + "routeId": "L15", + "platformId": "U118Z1", + "id": "6bbc2d3c-04f3-4fc7-b9f8-e3a4fdfa4afd" + }, + { + "routeId": "L16", + "platformId": "U118Z1", + "id": "686c98bd-402a-4437-a83c-f3ca0d67bf4a" + }, + { + "routeId": "L91", + "platformId": "U118Z1", + "id": "2d761356-3338-4bf8-85ea-f5e8057d3678" + }, + { + "routeId": "L98", + "platformId": "U118Z1", + "id": "e368205b-42f5-4c08-bb63-8b288ad1f0d6" + }, + { + "routeId": "L991", + "platformId": "U118Z101", + "id": "3450b263-0a05-4b32-b68d-db874e7e936c" + }, + { + "routeId": "L991", + "platformId": "U118Z102", + "id": "59d3f8f6-9d76-483a-a562-9eeb4cd8ddf2" + }, + { + "routeId": "L10", + "platformId": "U118Z2", + "id": "ab5b8906-b534-4f7e-84ec-a0f804cdc1d2" + }, + { + "routeId": "L11", + "platformId": "U118Z2", + "id": "84a30371-5b3c-45ac-915c-5a50ed2db2f8" + }, + { + "routeId": "L13", + "platformId": "U118Z2", + "id": "459a04d1-62dc-4fad-9634-859bfd44af41" + }, + { + "routeId": "L15", + "platformId": "U118Z2", + "id": "f2d311ea-a6ee-4796-8f02-8b53f2ce9d7c" + }, + { + "routeId": "L16", + "platformId": "U118Z2", + "id": "786d4737-5828-4f16-bde4-fc0a0b05df77" + }, + { + "routeId": "L91", + "platformId": "U118Z2", + "id": "4bcb5d4f-6275-4193-9d82-9fcd4c5a9689" + }, + { + "routeId": "L98", + "platformId": "U118Z2", + "id": "905129f1-f292-4a4e-b4ab-517d5684842d" + }, + { + "routeId": "L136", + "platformId": "U118Z3", + "id": "242d25cf-4ca5-4ec5-815b-194dec75f5ac" + }, + { + "routeId": "L175", + "platformId": "U118Z3", + "id": "f8ecacdc-aae3-43fd-9c5e-f5d1a3185486" + }, + { + "routeId": "L913", + "platformId": "U118Z3", + "id": "ba35a34a-4ffa-496c-a6b4-79194972cd68" + }, + { + "routeId": "L136", + "platformId": "U118Z4", + "id": "b0a574f9-3821-4009-836d-a22cb445ebe3" + }, + { + "routeId": "L175", + "platformId": "U118Z4", + "id": "aaac7336-7e15-4734-b88c-cb12db4cd710" + }, + { + "routeId": "L913", + "platformId": "U118Z4", + "id": "d34b6a32-7221-422d-86e3-4e888d114892" + }, + { + "routeId": "L347", + "platformId": "U1190Z1", + "id": "18cba7ea-478e-4f93-bfe3-6e810938e012" + }, + { + "routeId": "L307", + "platformId": "U1190Z1", + "id": "e5650ab3-cd12-4446-b532-e5d3ef54c86a" + }, + { + "routeId": "L310", + "platformId": "U1190Z1", + "id": "5c7baf80-2ad6-4368-89ff-b26e68f0e57b" + }, + { + "routeId": "L311", + "platformId": "U1190Z1", + "id": "b3bad4d8-da78-4629-a9f3-15ba8fc4d86b" + }, + { + "routeId": "L380", + "platformId": "U1190Z1", + "id": "e88b74e1-95a6-46fe-84ce-c25a1856dfb9" + }, + { + "routeId": "L308", + "platformId": "U1190Z1", + "id": "ca9cc59a-5376-4d03-94a9-a191c4466c95" + }, + { + "routeId": "L952", + "platformId": "U1190Z1", + "id": "20e3f247-e54d-4840-8882-e6a0a3084d06" + }, + { + "routeId": "L347", + "platformId": "U1190Z2", + "id": "fb78181d-7b02-4b02-997f-9d58fce13959" + }, + { + "routeId": "L307", + "platformId": "U1190Z2", + "id": "b07a0806-bc63-4f7b-9e42-3f1574a11921" + }, + { + "routeId": "L311", + "platformId": "U1190Z2", + "id": "3a19d047-9c04-4dfb-aacc-9ff82998073d" + }, + { + "routeId": "L308", + "platformId": "U1190Z2", + "id": "dedb31c5-b9f4-47c8-80d0-d1eabac5d220" + }, + { + "routeId": "L380", + "platformId": "U1190Z2", + "id": "3ccb0a39-b8d1-4abf-b5ad-0a307475a195" + }, + { + "routeId": "L310", + "platformId": "U1190Z2", + "id": "12e67d03-f215-43a3-b12d-0c91de8aa715" + }, + { + "routeId": "L952", + "platformId": "U1190Z2", + "id": "4e25848b-65ea-4d1f-9e9c-8d93af2f29fd" + }, + { + "routeId": "L120", + "platformId": "U1191Z1", + "id": "3fdae734-fc49-4afa-9211-a43fa1ee2f40" + }, + { + "routeId": "L120", + "platformId": "U1191Z2", + "id": "cb281182-ef4b-4118-a885-2551a28f9c53" + }, + { + "routeId": "L355", + "platformId": "U1192Z1", + "id": "389556c7-2574-414f-b2da-98a1b1d8e638" + }, + { + "routeId": "L353", + "platformId": "U1193Z1", + "id": "d13afb31-cb9f-4767-baed-e7a7d5b9df09" + }, + { + "routeId": "L353", + "platformId": "U1193Z2", + "id": "675c6599-cdf8-4c7c-8acf-62a007113c3f" + }, + { + "routeId": "L353", + "platformId": "U1194Z1", + "id": "ea4d8ef5-39ba-484c-9cc7-f9633de7a295" + }, + { + "routeId": "L353", + "platformId": "U1194Z2", + "id": "7a4ab108-9961-41fb-9525-a666c62d25b4" + }, + { + "routeId": "L353", + "platformId": "U1195Z1", + "id": "f693e6fc-7bd5-4c3b-b6de-47dc36d4c7f3" + }, + { + "routeId": "L353", + "platformId": "U1196Z1", + "id": "4a350284-6b9a-46a6-adf1-f0582e2ad5c5" + }, + { + "routeId": "L181", + "platformId": "U1197Z1", + "id": "12d4537e-d0c6-4ddb-85bd-cb88b42b1bb4" + }, + { + "routeId": "L110", + "platformId": "U1197Z1", + "id": "45053eb6-59aa-4c98-b832-446e6dead3af" + }, + { + "routeId": "L171", + "platformId": "U1197Z1", + "id": "2801c54d-d84c-4883-8736-74013189a2ae" + }, + { + "routeId": "L224", + "platformId": "U1197Z1", + "id": "624a88a4-506d-4e06-b690-62b709749bb4" + }, + { + "routeId": "L181", + "platformId": "U1197Z2", + "id": "5c9cb169-59b5-447a-aa9c-ad42ef43d4c3" + }, + { + "routeId": "L110", + "platformId": "U1197Z2", + "id": "2c38ac30-4e6b-47b2-afd3-fe0eb0607c88" + }, + { + "routeId": "L171", + "platformId": "U1197Z2", + "id": "b5a9272b-6577-4849-a19c-4d8f82451686" + }, + { + "routeId": "L224", + "platformId": "U1197Z2", + "id": "438aad9f-41c7-47e1-a785-d79c4b6cf249" + }, + { + "routeId": "L108", + "platformId": "U1198Z1", + "id": "27626688-5e00-4383-bbb0-81875a9bb67b" + }, + { + "routeId": "L168", + "platformId": "U1198Z1", + "id": "dbce3c3c-3b0d-4ac0-bed4-9376c7c22f1c" + }, + { + "routeId": "L191", + "platformId": "U1198Z1", + "id": "a5d6d33b-7b1d-4803-a020-05599076fbcf" + }, + { + "routeId": "L910", + "platformId": "U1198Z1", + "id": "fa1b85a1-3b57-4bf2-b339-c6cdf72e84d5" + }, + { + "routeId": "L108", + "platformId": "U1198Z2", + "id": "a8350b89-9981-44fc-b368-3cb27bb6de22" + }, + { + "routeId": "L168", + "platformId": "U1198Z2", + "id": "4d1e57dc-ad93-4492-a4d5-e72043c5cc46" + }, + { + "routeId": "L191", + "platformId": "U1198Z2", + "id": "ab5dc567-8d50-49d9-ae55-125719a4d938" + }, + { + "routeId": "L910", + "platformId": "U1198Z2", + "id": "492faa03-d260-467f-a6e8-0c8488ef3c64" + }, + { + "routeId": "L301", + "platformId": "U1199Z1", + "id": "d8c2cf2a-bf16-45de-b6fb-2006d70562ce" + }, + { + "routeId": "L301", + "platformId": "U1199Z2", + "id": "79d16dd3-a159-45e9-a191-4da1bc19bc92" + }, + { + "routeId": "L301", + "platformId": "U1200Z1", + "id": "36c75c83-e1a9-489c-8792-5ed918ae68cd" + }, + { + "routeId": "L301", + "platformId": "U1200Z2", + "id": "9225fe31-6e19-4e84-8f56-a37095ef432e" + }, + { + "routeId": "L316", + "platformId": "U1201Z1", + "id": "0e151025-2560-40f7-841c-aabea0f2024d" + }, + { + "routeId": "L356", + "platformId": "U1201Z1", + "id": "5e6f947d-d020-4f75-9920-e2ed7d82c66b" + }, + { + "routeId": "L356", + "platformId": "U1201Z2", + "id": "da2bbe4a-f74f-4bde-a4aa-11684435dffe" + }, + { + "routeId": "L316", + "platformId": "U1201Z2", + "id": "09a92689-f136-4dc6-b1a3-49a4f327d4ff" + }, + { + "routeId": "L316", + "platformId": "U1202Z1", + "id": "9a115c40-8e3a-4de2-b6a6-4a7a9813e4e9" + }, + { + "routeId": "L316", + "platformId": "U1202Z2", + "id": "e7f32813-35e1-438b-86e0-ee4a54e00ee7" + }, + { + "routeId": "L225", + "platformId": "U1203Z1", + "id": "3f97c593-4194-4946-9145-f955a3379424" + }, + { + "routeId": "L214", + "platformId": "U1203Z1", + "id": "c7bc3515-e25e-4e44-a4e3-cce101f5e2df" + }, + { + "routeId": "L225", + "platformId": "U1203Z2", + "id": "7090ff74-21c9-4cb7-8061-007e5882a14d" + }, + { + "routeId": "L214", + "platformId": "U1203Z2", + "id": "66d48132-833a-4d2e-90a4-241f94ad040b" + }, + { + "routeId": "L301", + "platformId": "U1204Z1", + "id": "1de99204-d4fe-4646-8039-91c01f924125" + }, + { + "routeId": "L301", + "platformId": "U1204Z2", + "id": "a397f8f4-57c2-43c9-b62e-115d123408ce" + }, + { + "routeId": "L301", + "platformId": "U1205Z1", + "id": "d9682a10-5f14-4267-b3fd-58cad0db7f49" + }, + { + "routeId": "L301", + "platformId": "U1205Z2", + "id": "c3ccb316-f873-415a-ab33-14640d5db138" + }, + { + "routeId": "L331", + "platformId": "U1206Z1", + "id": "2b851451-fa71-4c2f-8b8e-b12bc8c4c721" + }, + { + "routeId": "L331", + "platformId": "U1206Z2", + "id": "2d9008b5-533b-4d73-895d-ed4b02b1c1b6" + }, + { + "routeId": "L331", + "platformId": "U1207Z1", + "id": "c0a8c650-5195-4636-94e5-f89488cf8916" + }, + { + "routeId": "L331", + "platformId": "U1207Z2", + "id": "ba325eda-c1b4-4fd5-9fee-d0b7ed4719a8" + }, + { + "routeId": "L331", + "platformId": "U1208Z1", + "id": "4bb74b0a-21ab-46d7-a054-c3f6555a53f3" + }, + { + "routeId": "L331", + "platformId": "U1208Z2", + "id": "8fb4f076-a3ea-4115-9bba-8bc58304a90d" + }, + { + "routeId": "L214", + "platformId": "U1209Z1", + "id": "102627f0-4f9d-4eca-91f4-1ed75426d39d" + }, + { + "routeId": "L306", + "platformId": "U1209Z1", + "id": "79b4d451-f4c9-4515-89b1-ef0bbff166ef" + }, + { + "routeId": "L957", + "platformId": "U1209Z1", + "id": "fe846928-5cf5-4c46-9601-09b02279ce31" + }, + { + "routeId": "L214", + "platformId": "U1209Z2", + "id": "7a0fb1a8-8de6-4f9b-8c78-4175754e4291" + }, + { + "routeId": "L306", + "platformId": "U1209Z2", + "id": "7e315261-a1a1-4e4c-b32d-6cd08a2253b6" + }, + { + "routeId": "L957", + "platformId": "U1209Z2", + "id": "c5c56b9d-13bc-4766-8f05-d088f759d855" + }, + { + "routeId": "L120", + "platformId": "U120Z1", + "id": "951f9878-f68c-43da-b3b1-0cc0703857f9" + }, + { + "routeId": "L951", + "platformId": "U120Z1", + "id": "f65c1726-107c-454f-921e-39c4194ad3e5" + }, + { + "routeId": "L120", + "platformId": "U120Z2", + "id": "fe93f9fa-42ff-460b-905e-04cd3e7f6296" + }, + { + "routeId": "L951", + "platformId": "U120Z2", + "id": "f38cbe10-98ba-4c21-bd53-e871531e7693" + }, + { + "routeId": "L149", + "platformId": "U1210Z1", + "id": "9f2df563-6697-41be-b747-62868c88b835" + }, + { + "routeId": "L149", + "platformId": "U1210Z2", + "id": "93677c80-0619-453a-bb03-f77c3641c267" + }, + { + "routeId": "L174", + "platformId": "U1211Z1", + "id": "1e4687d7-f77c-467c-8ebf-0d2a3f73e6d7" + }, + { + "routeId": "L902", + "platformId": "U1211Z1", + "id": "ab20a63d-37b1-4179-b142-6f5b25cec762" + }, + { + "routeId": "L352", + "platformId": "U1211Z1", + "id": "9b14012d-828f-484f-b4f7-e23ef859f0b7" + }, + { + "routeId": "L301", + "platformId": "U1211Z1", + "id": "0cae3559-8ea5-409e-8a90-2b3a5d5b314b" + }, + { + "routeId": "L174", + "platformId": "U1211Z2", + "id": "d309048f-df9e-4158-a8b8-c40e5a2ea4c7" + }, + { + "routeId": "L902", + "platformId": "U1211Z2", + "id": "33777464-c335-461b-8062-a027c94a5046" + }, + { + "routeId": "L352", + "platformId": "U1211Z2", + "id": "ab29ff27-64c5-434b-8986-3821c5ab8dd1" + }, + { + "routeId": "L301", + "platformId": "U1211Z2", + "id": "3ff1c923-19a3-42b0-882d-b11e80c18d5f" + }, + { + "routeId": "L356", + "platformId": "U1212Z1", + "id": "37272a98-b8bf-44d8-8085-80135647e379" + }, + { + "routeId": "L356", + "platformId": "U1212Z2", + "id": "9d33c3cc-df9e-482a-bf6c-b24ca37aca74" + }, + { + "routeId": "L356", + "platformId": "U1213Z1", + "id": "f96893f6-92ea-44cf-bfdd-ad3de6cc5687" + }, + { + "routeId": "L316", + "platformId": "U1214Z1", + "id": "11b25c3e-a3eb-4c6b-95e9-0367640da2fc" + }, + { + "routeId": "L356", + "platformId": "U1214Z1", + "id": "41e40c9b-394d-40a5-9dc1-644996dd2326" + }, + { + "routeId": "L356", + "platformId": "U1214Z2", + "id": "de013f74-c4f8-4b36-8f4c-900ad9e9bff7" + }, + { + "routeId": "L316", + "platformId": "U1214Z2", + "id": "164fea86-18fc-4a9f-801f-0043cb6ed5e2" + }, + { + "routeId": "L306", + "platformId": "U1215Z1", + "id": "0cdd9e95-1cdc-402a-b9d7-9651b8521666" + }, + { + "routeId": "L365", + "platformId": "U1215Z1", + "id": "340db6db-d3a9-4f98-82f7-f8d358bac971" + }, + { + "routeId": "L386", + "platformId": "U1215Z1", + "id": "20c69b5d-3c45-462a-a77b-9fedff9ad8e0" + }, + { + "routeId": "L306", + "platformId": "U1215Z2", + "id": "1d834cb7-974a-4874-926b-962ac9485fac" + }, + { + "routeId": "L365", + "platformId": "U1215Z2", + "id": "722fe404-13a1-4a52-b1dd-d3c1308aa02b" + }, + { + "routeId": "L386", + "platformId": "U1215Z2", + "id": "ca99530e-b38a-4eda-bbd4-57aa06cbbcd8" + }, + { + "routeId": "L2254", + "platformId": "U1215Z401", + "id": "00573921-1669-4498-9d38-8861582082e3" + }, + { + "routeId": "L2254", + "platformId": "U1215Z402", + "id": "65d0283d-3fc4-4dd1-8269-19fc7a99ef3a" + }, + { + "routeId": "L306", + "platformId": "U1216Z1", + "id": "3563bfdb-16fc-43b3-b055-ba4f5da59b1c" + }, + { + "routeId": "L347", + "platformId": "U1217Z1", + "id": "4e77fea2-5f25-464d-bc15-2336bec6a958" + }, + { + "routeId": "L347", + "platformId": "U1217Z2", + "id": "05b8b351-9dc4-4607-95c0-160452486654" + }, + { + "routeId": "L306", + "platformId": "U1218Z1", + "id": "a3542778-7c81-46e6-aaec-d72aad9e144e" + }, + { + "routeId": "L957", + "platformId": "U1218Z1", + "id": "36945ec9-3e26-46f4-8f35-ae6403d9df2e" + }, + { + "routeId": "L306", + "platformId": "U1218Z2", + "id": "ea4192c2-d3cc-4244-83d7-ae5c6a0b829a" + }, + { + "routeId": "L957", + "platformId": "U1218Z2", + "id": "a8d8a0cc-1f70-498b-84d5-2e8c975155d4" + }, + { + "routeId": "L161", + "platformId": "U1219Z1", + "id": "986c67a1-f407-4412-86c0-5304693308c7" + }, + { + "routeId": "L907", + "platformId": "U1219Z1", + "id": "624725ce-ab18-4d7a-8b3f-cc65910a8c04" + }, + { + "routeId": "L312", + "platformId": "U1219Z1", + "id": "5394d89b-a8aa-45fd-93ca-adb24fbdc6a0" + }, + { + "routeId": "L161", + "platformId": "U1219Z2", + "id": "35ec0334-b9a8-45f2-99c6-87dcf3dbbcb0" + }, + { + "routeId": "L907", + "platformId": "U1219Z2", + "id": "a5a27fae-6fcd-49d2-b13e-f6de5c9288b1" + }, + { + "routeId": "L312", + "platformId": "U1219Z2", + "id": "02206c0a-7bd2-4f54-b754-505a1f1b6181" + }, + { + "routeId": "L231", + "platformId": "U121Z1", + "id": "37a20e2d-9449-4fa9-82d2-b96f33923ee9" + }, + { + "routeId": "L775", + "platformId": "U1220Z1", + "id": "6088cf25-943e-47ad-ac92-8f230cb56c7e" + }, + { + "routeId": "L775", + "platformId": "U1220Z2", + "id": "833735cf-9ff6-442e-a2af-c5c4a9c09977" + }, + { + "routeId": "L170", + "platformId": "U1221Z1", + "id": "04fab213-163f-41f1-8cf3-15c18be656ea" + }, + { + "routeId": "L135", + "platformId": "U1221Z1", + "id": "e199142e-5b67-419c-b829-88644087dd20" + }, + { + "routeId": "L136", + "platformId": "U1221Z1", + "id": "caa01706-abc7-450a-8d66-7da09a37cf94" + }, + { + "routeId": "L213", + "platformId": "U1221Z1", + "id": "01efa0ad-43f8-4f0c-ae9f-858af54815ca" + }, + { + "routeId": "L905", + "platformId": "U1221Z1", + "id": "2d267d6e-53aa-414a-bd14-fa332a2029c4" + }, + { + "routeId": "L913", + "platformId": "U1221Z1", + "id": "f58e91f2-74bf-43fd-8e85-9c197fb661a7" + }, + { + "routeId": "L177", + "platformId": "U1222Z1", + "id": "13fe5c17-9b55-484f-b0ba-62dfb2d2598d" + }, + { + "routeId": "L195", + "platformId": "U1222Z1", + "id": "89b808d2-0bd1-42b6-8a25-8335bedbf708" + }, + { + "routeId": "L908", + "platformId": "U1222Z1", + "id": "91698a26-11b7-4cfd-801c-e8f00b4763c7" + }, + { + "routeId": "L177", + "platformId": "U1222Z2", + "id": "3b834c7b-05d1-4ab2-8b8c-aba72ff57300" + }, + { + "routeId": "L195", + "platformId": "U1222Z2", + "id": "99022488-fa1f-4e4b-abd0-fc698bd1db22" + }, + { + "routeId": "L908", + "platformId": "U1222Z2", + "id": "f309b892-c277-4a09-bc22-a42107e55d31" + }, + { + "routeId": "L175", + "platformId": "U1224Z1", + "id": "adb06a02-4b15-4c70-87c2-ac33eb5cf933" + }, + { + "routeId": "L175", + "platformId": "U1224Z2", + "id": "85ee8dcd-4502-4a14-b35a-d23b5c754b56" + }, + { + "routeId": "L241", + "platformId": "U1225Z1", + "id": "2ae0edc4-5b7a-4db9-9a15-ad3e477cbeef" + }, + { + "routeId": "L917", + "platformId": "U1225Z1", + "id": "77944ec0-c652-4566-ab9b-9edfa35d4d29" + }, + { + "routeId": "L241", + "platformId": "U1225Z2", + "id": "01f4938c-af32-4c78-b023-17c6039e29c5" + }, + { + "routeId": "L917", + "platformId": "U1225Z2", + "id": "6d522dbb-f782-4762-aefe-02539693bd55" + }, + { + "routeId": "L175", + "platformId": "U1226Z1", + "id": "c8f4f48c-c701-40c4-b29e-7b9db4ef856d" + }, + { + "routeId": "L175", + "platformId": "U1226Z2", + "id": "e1253eb7-6b04-4b12-8959-e1c9450e591c" + }, + { + "routeId": "L357", + "platformId": "U1227Z1", + "id": "00c35bfc-fc26-4460-9fd1-a48fc1909d45" + }, + { + "routeId": "L357", + "platformId": "U1227Z2", + "id": "57d44938-3559-41b0-843c-e184000af95e" + }, + { + "routeId": "L141", + "platformId": "U1228Z1", + "id": "39f8496e-a9bb-4215-bfad-10bf9ea4dc96" + }, + { + "routeId": "L141", + "platformId": "U1228Z2", + "id": "fdc93aeb-fd0b-4be9-9caa-80f3d84bec51" + }, + { + "routeId": "L384", + "platformId": "U1229Z1", + "id": "4a501619-01e8-4d1e-950b-751601cf34c7" + }, + { + "routeId": "L384", + "platformId": "U1229Z2", + "id": "ad50111b-11d9-4a55-80e2-7bd5b309ea2d" + }, + { + "routeId": "L174", + "platformId": "U122Z1", + "id": "fc3f332a-8f51-46f5-b1e7-33a28b4d85d3" + }, + { + "routeId": "L902", + "platformId": "U122Z1", + "id": "5fe4299e-fe66-4da5-bf43-5d76b0053232" + }, + { + "routeId": "L352", + "platformId": "U122Z1", + "id": "338c4384-969b-4256-b81e-ab8795aa316c" + }, + { + "routeId": "L301", + "platformId": "U122Z1", + "id": "9df49b64-0067-43ef-8a74-c2297ce387fe" + }, + { + "routeId": "L174", + "platformId": "U122Z2", + "id": "5f1b44a2-c3d5-405a-acb2-719bce5da084" + }, + { + "routeId": "L902", + "platformId": "U122Z2", + "id": "dd3edbaa-e2f5-4ccc-827b-3bc1c1220339" + }, + { + "routeId": "L352", + "platformId": "U122Z2", + "id": "85cd785e-e147-447f-8a24-b590fb03692f" + }, + { + "routeId": "L301", + "platformId": "U122Z2", + "id": "248ca10e-5432-4e1e-bb90-6777a288cb23" + }, + { + "routeId": "L384", + "platformId": "U1230Z1", + "id": "fd31c1d1-a076-416a-8d6b-007b000d3886" + }, + { + "routeId": "L527", + "platformId": "U1230Z1", + "id": "3c5b0502-addb-476f-b418-f76d887aef6f" + }, + { + "routeId": "L526", + "platformId": "U1230Z1", + "id": "3219f2b6-75b6-4f9d-befe-3067267a257b" + }, + { + "routeId": "L384", + "platformId": "U1230Z2", + "id": "d038a3f3-8d6c-43e7-b4ba-55f98b98f188" + }, + { + "routeId": "L527", + "platformId": "U1230Z2", + "id": "ddb85f0e-9554-41f4-a5d9-c412ca0f5e90" + }, + { + "routeId": "L528", + "platformId": "U1230Z3", + "id": "09dde26d-3dc7-469a-916e-61a467882a7b" + }, + { + "routeId": "L528", + "platformId": "U1230Z4", + "id": "943a6c99-5b9b-4856-a538-f590bd0ca4b0" + }, + { + "routeId": "L384", + "platformId": "U1231Z1", + "id": "32154c1b-1184-40b0-b1ad-fbcf5ee5acdf" + }, + { + "routeId": "L528", + "platformId": "U1231Z1", + "id": "fae4ec25-d1c5-43c2-81d9-e275f1ee3009" + }, + { + "routeId": "L528", + "platformId": "U1231Z2", + "id": "14e112e6-9b6e-4957-8bdd-50569a1bf8b0" + }, + { + "routeId": "L142", + "platformId": "U1232Z1", + "id": "df2b28a4-51cb-4af4-bfcf-0caae4ff771c" + }, + { + "routeId": "L142", + "platformId": "U1232Z2", + "id": "8d1fdb45-9e53-49b8-9cf2-0cf837809c94" + }, + { + "routeId": "L229", + "platformId": "U1233Z1", + "id": "a5251557-a8c5-402b-ada9-d29d6386e28d" + }, + { + "routeId": "L209", + "platformId": "U1233Z1", + "id": "c9c2f5dd-1d9f-44f1-966b-12aa3288923b" + }, + { + "routeId": "L903", + "platformId": "U1233Z1", + "id": "01539d80-60e4-4421-a37b-1ac29e60b79a" + }, + { + "routeId": "L366", + "platformId": "U1233Z1", + "id": "81490b43-8013-4296-8839-057fef5cdd4d" + }, + { + "routeId": "L229", + "platformId": "U1233Z2", + "id": "dc764f68-45f8-4cf5-8a7f-c9a955d4ff15" + }, + { + "routeId": "L209", + "platformId": "U1233Z2", + "id": "d8d77580-4288-45ca-aba9-3049cf924a97" + }, + { + "routeId": "L903", + "platformId": "U1233Z2", + "id": "e66b6346-d464-4eb4-8e08-a37d01ce5424" + }, + { + "routeId": "L366", + "platformId": "U1233Z2", + "id": "b6f499bd-9735-4869-90cb-03ebc635119d" + }, + { + "routeId": "L250", + "platformId": "U1235Z1", + "id": "ce0360db-53ff-46c7-9440-4e1f565f4cde" + }, + { + "routeId": "L224", + "platformId": "U1235Z1", + "id": "22f1e051-f2a9-46d2-9da4-9bb76a13de76" + }, + { + "routeId": "L240", + "platformId": "U1235Z1", + "id": "be732861-cdf0-4891-a915-629ad25d44fd" + }, + { + "routeId": "L250", + "platformId": "U1235Z2", + "id": "de72b628-91ac-41c3-8301-81acbb9b91bc" + }, + { + "routeId": "L224", + "platformId": "U1235Z2", + "id": "a23a8b54-c88f-45a3-9ace-7491107be1e6" + }, + { + "routeId": "L240", + "platformId": "U1235Z2", + "id": "001202f3-2178-4fcc-8aae-413c2ffe3dde" + }, + { + "routeId": "L377", + "platformId": "U1237Z1", + "id": "ef74e9dc-561e-407a-96da-22387aa3baa4" + }, + { + "routeId": "L377", + "platformId": "U1237Z2", + "id": "10c7d5e7-9e8e-4793-a3a3-1151793746f1" + }, + { + "routeId": "L377", + "platformId": "U1239Z1", + "id": "13735de2-a86e-4ce4-ad13-78725814b07e" + }, + { + "routeId": "L377", + "platformId": "U1239Z2", + "id": "0d518178-eb2e-43bc-8d1c-42f9e217e1d9" + }, + { + "routeId": "L229", + "platformId": "U123Z1", + "id": "23a9ecb5-7d7f-451a-93df-36c0af933641" + }, + { + "routeId": "L903", + "platformId": "U123Z1", + "id": "03d3fd9a-ef87-4843-8670-299ec03bd9c3" + }, + { + "routeId": "L366", + "platformId": "U123Z1", + "id": "018b3990-2b03-4022-8485-d429530c5d0f" + }, + { + "routeId": "L364", + "platformId": "U123Z1", + "id": "c6aad896-edf3-4fb7-a302-d72deee8b51b" + }, + { + "routeId": "L229", + "platformId": "U123Z2", + "id": "fb99f727-a39e-4a8b-bd13-b4ed91927549" + }, + { + "routeId": "L903", + "platformId": "U123Z2", + "id": "187dce2a-761f-4e98-8bd5-623647a54b0f" + }, + { + "routeId": "L366", + "platformId": "U123Z2", + "id": "b0d71587-4f72-4e26-8a72-446b953cc637" + }, + { + "routeId": "L364", + "platformId": "U123Z2", + "id": "3c4185e0-3a1c-4b4b-ba2d-6cc2d19e49e1" + }, + { + "routeId": "L377", + "platformId": "U1240Z1", + "id": "6aa4732c-59e3-40ad-aff8-bd5573c1f322" + }, + { + "routeId": "L477", + "platformId": "U1240Z1", + "id": "b6c37adb-e857-4dbd-989b-f0fb9c06caa5" + }, + { + "routeId": "L377", + "platformId": "U1240Z2", + "id": "d0529520-8a25-4dd5-b183-2caf2993b76c" + }, + { + "routeId": "L477", + "platformId": "U1240Z2", + "id": "f5d9979f-d058-421c-96a3-2bb0d673e600" + }, + { + "routeId": "L377", + "platformId": "U1241Z1", + "id": "bcc023e3-f245-408e-bfe7-1891f3011540" + }, + { + "routeId": "L477", + "platformId": "U1241Z1", + "id": "851e96ef-0559-4de2-a9ee-9c8dd447be69" + }, + { + "routeId": "L377", + "platformId": "U1241Z2", + "id": "127679ad-aa3b-4d83-91ff-7b99612bdfca" + }, + { + "routeId": "L477", + "platformId": "U1241Z2", + "id": "8645ead0-7878-4395-be15-6f3b7932d4c8" + }, + { + "routeId": "L377", + "platformId": "U1242Z1", + "id": "ed086ddc-d329-4cdc-9f56-b657be0baad4" + }, + { + "routeId": "L471", + "platformId": "U1242Z1", + "id": "9acdcba1-e9dc-428f-9a02-0b90944157e7" + }, + { + "routeId": "L478", + "platformId": "U1242Z1", + "id": "8856d01c-abed-4b7b-8352-2939ba278abd" + }, + { + "routeId": "L377", + "platformId": "U1243Z1", + "id": "64f91531-f069-4cd9-a8a7-b64bfeda73ca" + }, + { + "routeId": "L377", + "platformId": "U1243Z2", + "id": "bbb51b90-52a1-4dd4-9666-21997c67e229" + }, + { + "routeId": "L377", + "platformId": "U1244Z1", + "id": "966f6729-3a28-45f5-8f86-cac5a8c09812" + }, + { + "routeId": "L377", + "platformId": "U1244Z2", + "id": "210bd76f-0890-4ed6-baeb-61128916aef3" + }, + { + "routeId": "L377", + "platformId": "U1246Z1", + "id": "151ca587-5310-4131-900f-b5be84d1aec5" + }, + { + "routeId": "L377", + "platformId": "U1246Z2", + "id": "169e4a71-2223-4d2c-9d4f-7570605a102d" + }, + { + "routeId": "L2223", + "platformId": "U1246Z401", + "id": "864aff97-78c8-4597-8810-1f92975082cb" + }, + { + "routeId": "L2223", + "platformId": "U1246Z402", + "id": "e5cf0a75-0b4c-45ba-b68d-95325afae0a0" + }, + { + "routeId": "L477", + "platformId": "U1247Z1", + "id": "59b18ff1-973b-4f32-9e50-4933114e9f80" + }, + { + "routeId": "L477", + "platformId": "U1247Z2", + "id": "608c3c84-6ab9-4059-a37d-10103b8b5cc8" + }, + { + "routeId": "L377", + "platformId": "U1248Z1", + "id": "834f0413-5487-4ddd-a273-eb351107a296" + }, + { + "routeId": "L377", + "platformId": "U1248Z2", + "id": "2e5bbef4-ca06-4d94-aad3-16713c76529b" + }, + { + "routeId": "L478", + "platformId": "U1248Z3", + "id": "d3cf98f1-b09e-4b33-8854-0de38bfb4ca0" + }, + { + "routeId": "L478", + "platformId": "U1248Z4", + "id": "f7b35561-d833-4271-805b-5c985a3ff423" + }, + { + "routeId": "L2223", + "platformId": "U1248Z401", + "id": "ecad50cd-7b88-43b6-94fb-7e0c7e7fdb53" + }, + { + "routeId": "L2223", + "platformId": "U1248Z402", + "id": "4ebb1d6a-0c90-4faa-bd7d-9cd382458b0c" + }, + { + "routeId": "L377", + "platformId": "U1249Z1", + "id": "85012ae2-469c-456a-bdf5-435d5f04ecb7" + }, + { + "routeId": "L377", + "platformId": "U1249Z2", + "id": "b7385733-93c0-481f-b4ad-0d331f8cdc13" + }, + { + "routeId": "L121", + "platformId": "U124Z1", + "id": "13234771-d494-43d2-954a-f1b8aa9c1a01" + }, + { + "routeId": "L121", + "platformId": "U124Z2", + "id": "27073f9f-b6f5-43a5-be80-a433d265d6a0" + }, + { + "routeId": "L303", + "platformId": "U1252Z1", + "id": "a4b590f2-2bd3-4160-8791-1ab848f14215" + }, + { + "routeId": "L303", + "platformId": "U1252Z2", + "id": "e23b1e4d-0778-4c8d-9a98-81e5ed50f8f8" + }, + { + "routeId": "L329", + "platformId": "U1253Z1", + "id": "f063c5cf-73c3-4c54-bb73-c6f40f1e5475" + }, + { + "routeId": "L329", + "platformId": "U1253Z2", + "id": "10177b7e-c025-4d10-ba10-aff200cbeab4" + }, + { + "routeId": "L303", + "platformId": "U1253Z2", + "id": "9bf8aab5-c4ac-4547-85f3-bb18ca578003" + }, + { + "routeId": "L303", + "platformId": "U1253Z3", + "id": "9769705f-ba91-4f7d-b012-abb9773e76c4" + }, + { + "routeId": "L329", + "platformId": "U1255Z1", + "id": "4476d0dd-412f-49c7-9c56-225f7e0d3e87" + }, + { + "routeId": "L686", + "platformId": "U1255Z1", + "id": "eb9c6779-3616-4457-b4f0-34d6e9431bf5" + }, + { + "routeId": "L329", + "platformId": "U1255Z2", + "id": "3a22b4cf-f75d-465b-ae78-d53d1b9d8aab" + }, + { + "routeId": "L686", + "platformId": "U1255Z2", + "id": "2589080c-9a47-40f6-a23b-4e0a342157bf" + }, + { + "routeId": "L329", + "platformId": "U1256Z1", + "id": "32d8b972-a695-4d38-b080-484ce44ec1e0" + }, + { + "routeId": "L686", + "platformId": "U1256Z1", + "id": "b1eaf437-0972-49bf-a3d9-f4d05abdda27" + }, + { + "routeId": "L329", + "platformId": "U1257Z1", + "id": "c81c6a06-8df8-43a2-aa08-b9dd3d658558" + }, + { + "routeId": "L686", + "platformId": "U1257Z1", + "id": "e604fdca-2ed5-4008-932c-faf018ed341e" + }, + { + "routeId": "L329", + "platformId": "U1258Z1", + "id": "613f04f1-32bb-4aee-a86f-c1c542a6a31c" + }, + { + "routeId": "L423", + "platformId": "U1258Z1", + "id": "72b9f96e-4b82-41f9-9a77-327bd10eb7d0" + }, + { + "routeId": "L686", + "platformId": "U1258Z1", + "id": "8797f3f4-656a-463f-8871-e39298099f2b" + }, + { + "routeId": "L136", + "platformId": "U125Z1", + "id": "5ee23ae0-3ad2-4c84-b6a8-cf31153afe36" + }, + { + "routeId": "L201", + "platformId": "U125Z1", + "id": "74d641e4-e9c1-48c3-8448-fe1164528866" + }, + { + "routeId": "L911", + "platformId": "U125Z1", + "id": "df059239-144e-42f9-8907-d213aa069448" + }, + { + "routeId": "L110", + "platformId": "U125Z1", + "id": "c1b69031-2eb9-4993-9e2d-03e169a22318" + }, + { + "routeId": "L166", + "platformId": "U125Z1", + "id": "763bc6e8-b61e-4507-9e7c-52c90c8d201f" + }, + { + "routeId": "L351", + "platformId": "U125Z1", + "id": "80cd362e-5ec0-4645-8ef2-64e2705283de" + }, + { + "routeId": "L377", + "platformId": "U125Z1", + "id": "05b05bb2-94c6-4b26-956e-8c73a34e4ec0" + }, + { + "routeId": "L58", + "platformId": "U125Z1", + "id": "e4d0bdb3-f47e-48f4-b2a8-411156ebbb0d" + }, + { + "routeId": "L136", + "platformId": "U125Z2", + "id": "92c43f4c-d68f-4d9b-b869-1c9e7c7c9203" + }, + { + "routeId": "L201", + "platformId": "U125Z2", + "id": "f7914021-1421-4087-86a4-4566f4f76080" + }, + { + "routeId": "L911", + "platformId": "U125Z2", + "id": "8851e114-8a0f-4d53-8bdb-7558915a6c33" + }, + { + "routeId": "L110", + "platformId": "U125Z2", + "id": "20774578-d7a7-4a5a-b3b1-f3a4291a4ca2" + }, + { + "routeId": "L166", + "platformId": "U125Z2", + "id": "e1e59bcf-8697-4bdb-99d7-cb972651d739" + }, + { + "routeId": "L351", + "platformId": "U125Z2", + "id": "2b7e786c-c542-42f5-b2ba-d2cf39c78b2f" + }, + { + "routeId": "L377", + "platformId": "U125Z2", + "id": "7f29884a-2e22-4d86-8d1e-0b319237c9cd" + }, + { + "routeId": "L58", + "platformId": "U125Z2", + "id": "1475e6e5-e3f6-4557-80ca-73c19fe13e0a" + }, + { + "routeId": "L105", + "platformId": "U1260Z1", + "id": "6e7cbcb8-0bec-4628-bfb3-0d5cdfbb20de" + }, + { + "routeId": "L363", + "platformId": "U1262Z1", + "id": "9a9f5e1d-a901-4580-992a-f9438817a051" + }, + { + "routeId": "L363", + "platformId": "U1262Z2", + "id": "e357deb0-aa45-47f8-90b7-71b0b3082e0f" + }, + { + "routeId": "L363", + "platformId": "U1263Z4", + "id": "b0bdd831-e621-41b0-928f-2fc525d706b8" + }, + { + "routeId": "L363", + "platformId": "U1263Z5", + "id": "87d74e58-dc6e-4fde-b3fd-be83edec6117" + }, + { + "routeId": "L130", + "platformId": "U1265Z1", + "id": "342f6195-8c85-4a78-a2e2-d487683032e2" + }, + { + "routeId": "L246", + "platformId": "U1265Z1", + "id": "24c06244-79b3-494f-a61e-af2b56a2a4cf" + }, + { + "routeId": "L130", + "platformId": "U1265Z2", + "id": "0e28e1c8-b39b-4cb4-8931-c08b58a24557" + }, + { + "routeId": "L246", + "platformId": "U1265Z2", + "id": "8ddab919-fd3f-455c-a96f-f77e150599e3" + }, + { + "routeId": "L377", + "platformId": "U1269Z1", + "id": "7a520212-ac09-4bf3-9416-56ee7cf3d14e" + }, + { + "routeId": "L377", + "platformId": "U1269Z2", + "id": "b25833cb-9dfc-44d2-b3da-3e95523746a2" + }, + { + "routeId": "L107", + "platformId": "U126Z1", + "id": "fbf9c598-4082-4ece-ab9b-70bacfed83fe" + }, + { + "routeId": "L160", + "platformId": "U126Z1", + "id": "a9faa668-8acb-415c-8eb4-788681238062" + }, + { + "routeId": "L116", + "platformId": "U126Z1", + "id": "9b14e020-ddc7-4859-8ae6-1c307245aac7" + }, + { + "routeId": "L147", + "platformId": "U126Z1", + "id": "28cf019e-93b1-48cb-af8f-da5189c0e792" + }, + { + "routeId": "L902", + "platformId": "U126Z1", + "id": "ab90f624-b611-46ab-b101-2cac7d2f2dae" + }, + { + "routeId": "L909", + "platformId": "U126Z1", + "id": "5b625d8a-6758-48f7-be16-e88f54d1e4e7" + }, + { + "routeId": "L340", + "platformId": "U126Z1", + "id": "24f7e57d-907b-478d-a067-935fd5360c4c" + }, + { + "routeId": "L355", + "platformId": "U126Z1", + "id": "67b8f41c-7742-49cc-9558-5e9b48ebe64e" + }, + { + "routeId": "L954", + "platformId": "U126Z1", + "id": "873903ea-18a8-4177-9931-daf54d502921" + }, + { + "routeId": "L350", + "platformId": "U126Z1", + "id": "886e2ede-da18-45e4-a31c-364e55f9f608" + }, + { + "routeId": "L8", + "platformId": "U126Z2", + "id": "e747daa9-cb9a-4cce-a28a-dd3cd798433d" + }, + { + "routeId": "L18", + "platformId": "U126Z2", + "id": "5ed3a6e2-aec2-4261-87a7-2dd6ee0dd915" + }, + { + "routeId": "L107", + "platformId": "U126Z2", + "id": "bcdaaf05-64ba-4bc7-be72-ceec243e3e3f" + }, + { + "routeId": "L160", + "platformId": "U126Z2", + "id": "4d728707-e8c0-4969-96b0-7bf21295b06a" + }, + { + "routeId": "L116", + "platformId": "U126Z2", + "id": "9334359e-fb06-4bce-ba54-e3b10d8137ae" + }, + { + "routeId": "L147", + "platformId": "U126Z2", + "id": "02f28030-4dc1-47d7-abfd-3d1d52175c40" + }, + { + "routeId": "L902", + "platformId": "U126Z2", + "id": "565366eb-f850-4e83-a91f-3d39dc71bd7d" + }, + { + "routeId": "L909", + "platformId": "U126Z2", + "id": "fd91877e-10f6-4de1-a4a5-f100f63d2390" + }, + { + "routeId": "L340", + "platformId": "U126Z2", + "id": "664b9dbd-9b1d-4532-bbd2-be80191b743b" + }, + { + "routeId": "L355", + "platformId": "U126Z2", + "id": "bef075db-a9ab-4939-98f1-97156418a0d3" + }, + { + "routeId": "L954", + "platformId": "U126Z2", + "id": "01da1b24-649a-4b4a-8a7c-f2462505e380" + }, + { + "routeId": "L350", + "platformId": "U126Z2", + "id": "f0127bfe-1ef3-40b6-a7b9-7d6c7e9d15f0" + }, + { + "routeId": "L8", + "platformId": "U126Z3", + "id": "21a1c77f-c43e-4408-862a-6dc2ae2782ed" + }, + { + "routeId": "L18", + "platformId": "U126Z3", + "id": "5d4efd14-2790-4914-bfe9-e58cb4d9e446" + }, + { + "routeId": "L1220", + "platformId": "U126Z301", + "id": "40b16f4c-649b-46f2-ac9d-cf39a87004b8" + }, + { + "routeId": "L1304", + "platformId": "U126Z301", + "id": "6d562083-fae6-40e5-8a4b-580086bb8a72" + }, + { + "routeId": "L1349", + "platformId": "U126Z301", + "id": "ed06c0bb-e1b9-42a8-834b-95a82b7995cd" + }, + { + "routeId": "L366", + "platformId": "U1272Z1", + "id": "7ccb5710-ec9a-452c-a15f-1edbd70cb401" + }, + { + "routeId": "L366", + "platformId": "U1272Z2", + "id": "96dc4a0d-7361-4283-857f-8c941c84b0df" + }, + { + "routeId": "L245", + "platformId": "U1274Z1", + "id": "2f57e2d1-3223-4f0b-8c40-68b13d868526" + }, + { + "routeId": "L201", + "platformId": "U1276Z1", + "id": "21fc083f-b11d-471d-a989-187d66a23c58" + }, + { + "routeId": "L209", + "platformId": "U1276Z1", + "id": "954bd76e-4a84-432e-913d-cc8bc7973cd5" + }, + { + "routeId": "L376", + "platformId": "U1276Z1", + "id": "3eeb8050-e0c1-42d5-b6d0-2e1690531396" + }, + { + "routeId": "L201", + "platformId": "U1276Z2", + "id": "65b21617-3682-44d4-84ce-7071d6ac6b62" + }, + { + "routeId": "L209", + "platformId": "U1276Z2", + "id": "6543526b-2f14-44f4-8ce1-46e073f3a27c" + }, + { + "routeId": "L376", + "platformId": "U1276Z2", + "id": "9d190b0c-ed12-410d-ba04-2b49373b3839" + }, + { + "routeId": "L398", + "platformId": "U1278Z1", + "id": "a20d27e8-4ab8-47b0-a1f1-9fa506c773ff" + }, + { + "routeId": "L398", + "platformId": "U1278Z2", + "id": "98215ba9-8f2c-4815-9237-6fb408c1f64e" + }, + { + "routeId": "L662", + "platformId": "U1278Z2", + "id": "94f14b1a-4150-4a4c-bbe5-707423b057f2" + }, + { + "routeId": "L662", + "platformId": "U1278Z3", + "id": "d1d9e289-e709-4104-8681-e4be551af236" + }, + { + "routeId": "L121", + "platformId": "U127Z1", + "id": "94b35e60-2f0f-4011-874b-e713ad680bcd" + }, + { + "routeId": "L170", + "platformId": "U127Z1", + "id": "c86ff7ee-f0a2-48cf-9c0a-f80e1b5e70c2" + }, + { + "routeId": "L121", + "platformId": "U127Z2", + "id": "c50578d1-6580-4048-8334-548aee20307a" + }, + { + "routeId": "L170", + "platformId": "U127Z2", + "id": "0254eb7d-047d-403c-9b42-ae0cc3c0986d" + }, + { + "routeId": "L662", + "platformId": "U1281Z1", + "id": "db3e3f66-dd83-45c2-9ad2-b685ed1731dd" + }, + { + "routeId": "L662", + "platformId": "U1281Z2", + "id": "04b0ba5f-e490-4004-9019-74e63f1fc1a9" + }, + { + "routeId": "L662", + "platformId": "U1282Z1", + "id": "08ac6853-9cbf-4152-8c64-4725a3354584" + }, + { + "routeId": "L662", + "platformId": "U1282Z2", + "id": "835d975c-0641-43ae-a36c-3c510fa569f1" + }, + { + "routeId": "L363", + "platformId": "U1284Z1", + "id": "414aa75b-62a0-4e59-aad0-20658c7aceb5" + }, + { + "routeId": "L363", + "platformId": "U1284Z2", + "id": "6336a57a-7bd7-4526-afc3-6ed834a6cc5e" + }, + { + "routeId": "L154", + "platformId": "U1285Z1", + "id": "98b5b7d9-ad1f-41f6-a837-49152557b72a" + }, + { + "routeId": "L901", + "platformId": "U1285Z1", + "id": "183b257a-d53c-4778-8cfa-d0da00b19d72" + }, + { + "routeId": "L906", + "platformId": "U1285Z1", + "id": "49582751-1146-44ca-95d2-a22d812878ae" + }, + { + "routeId": "L154", + "platformId": "U1285Z2", + "id": "cc6a17d3-d6c0-457b-8a4e-fc9da3fc5b95" + }, + { + "routeId": "L901", + "platformId": "U1285Z2", + "id": "ce276ef2-e8b4-4ef6-bffe-5ed0ed677d2c" + }, + { + "routeId": "L906", + "platformId": "U1285Z2", + "id": "e896e659-0bde-40b6-96a3-7c18d45fd818" + }, + { + "routeId": "L204", + "platformId": "U1288Z1", + "id": "7dbd515e-2bf2-4a18-8122-b6999c2cd6fd" + }, + { + "routeId": "L220", + "platformId": "U1288Z1", + "id": "8310bbe5-05af-4171-a3a1-44ce1c974eb7" + }, + { + "routeId": "L204", + "platformId": "U1288Z2", + "id": "861748a2-cfaf-4972-9146-775e85bdd422" + }, + { + "routeId": "L220", + "platformId": "U1288Z2", + "id": "d1dfa8b0-5d2c-40d6-90c2-f5083b90e0a5" + }, + { + "routeId": "L146", + "platformId": "U128Z1", + "id": "053f2f64-69c5-4b29-88b1-3706a400b8f3" + }, + { + "routeId": "L155", + "platformId": "U128Z1", + "id": "6788e98c-0d4c-4467-9131-c6e4c5417a23" + }, + { + "routeId": "L146", + "platformId": "U128Z2", + "id": "c16cd2b8-818b-4f47-b8dc-12b1a5808c35" + }, + { + "routeId": "L155", + "platformId": "U128Z2", + "id": "4c5ccf21-b66c-4efd-a7fc-772edd3eaa31" + }, + { + "routeId": "L146", + "platformId": "U128Z3", + "id": "866ef61c-8814-4511-831f-714ca1309a67" + }, + { + "routeId": "L302", + "platformId": "U1290Z1", + "id": "b07f0db5-b601-441e-bf23-93a23fa2bba1" + }, + { + "routeId": "L302", + "platformId": "U1290Z2", + "id": "1b5b35c8-0a54-4b40-b419-22d5ee5aefca" + }, + { + "routeId": "L204", + "platformId": "U1291Z1", + "id": "4397e87a-0ddb-4a5b-90c1-9148697ab5b8" + }, + { + "routeId": "L478", + "platformId": "U1292Z1", + "id": "5fd21fab-c1a6-4e28-8697-3033686908cc" + }, + { + "routeId": "L478", + "platformId": "U1292Z2", + "id": "01c9540e-fd4b-46bd-b3a1-d228647b6d2d" + }, + { + "routeId": "L367", + "platformId": "U1293Z1", + "id": "20ccc95b-cdc4-4b61-b46a-05bf94b8827a" + }, + { + "routeId": "L906", + "platformId": "U1294Z1", + "id": "713905ad-2ce1-4709-aa89-531d420f9e96" + }, + { + "routeId": "L227", + "platformId": "U1294Z1", + "id": "74c7559b-eac7-4f16-a940-0eac15cd0b2b" + }, + { + "routeId": "L906", + "platformId": "U1294Z2", + "id": "ce638cd8-a52d-4f2b-8dfd-d9517739641b" + }, + { + "routeId": "L227", + "platformId": "U1294Z2", + "id": "74f201b7-a25a-427e-bb46-ed1ab23ba054" + }, + { + "routeId": "L191", + "platformId": "U1295Z1", + "id": "720c5717-f823-4b1d-b54a-88d943a59940" + }, + { + "routeId": "L191", + "platformId": "U1295Z2", + "id": "edc5ad61-afb6-42ed-8791-f35e4593dd31" + }, + { + "routeId": "L149", + "platformId": "U1296Z1", + "id": "92b50e29-eed1-4586-b89f-09a5f65fe543" + }, + { + "routeId": "L120", + "platformId": "U1297Z1", + "id": "832001fc-e3aa-4d35-b87f-497bd270720b" + }, + { + "routeId": "L120", + "platformId": "U1297Z2", + "id": "3e9e9db4-ec45-4915-80b6-b170da3c9980" + }, + { + "routeId": "L124", + "platformId": "U129Z1", + "id": "25084791-e93e-4ab2-91a9-3bf8433ae919" + }, + { + "routeId": "L139", + "platformId": "U129Z1", + "id": "5b0bd2d7-0876-4849-8ab9-01d0e15131fc" + }, + { + "routeId": "L150", + "platformId": "U129Z1", + "id": "73554c7b-8dc5-4bff-8c25-afe020006294" + }, + { + "routeId": "L124", + "platformId": "U129Z2", + "id": "e0b966e0-6c6d-4724-9a21-736f3b7b983e" + }, + { + "routeId": "L139", + "platformId": "U129Z2", + "id": "045800e2-d1fd-402f-ba98-92ad9a0824de" + }, + { + "routeId": "L150", + "platformId": "U129Z2", + "id": "91edd081-2507-4a77-a1d5-aa85bef85093" + }, + { + "routeId": "L12", + "platformId": "U12Z1", + "id": "9c201b96-1fff-4b5d-8a6c-68d712525a69" + }, + { + "routeId": "L31", + "platformId": "U12Z1", + "id": "4148d4a6-246f-484b-91a8-9289d4cbf422" + }, + { + "routeId": "L94", + "platformId": "U12Z1", + "id": "98c1bd6b-0476-4310-9432-49f2ccdadfc6" + }, + { + "routeId": "L7", + "platformId": "U12Z2", + "id": "57e6b8a7-a5b6-471a-8fe4-fc627b1dada1" + }, + { + "routeId": "L8", + "platformId": "U12Z2", + "id": "c6c18930-de0e-4a21-b864-008b346fe1d5" + }, + { + "routeId": "L12", + "platformId": "U12Z2", + "id": "dd0508c5-2c9d-4fc8-a821-18373128af7b" + }, + { + "routeId": "L31", + "platformId": "U12Z2", + "id": "0d057f65-2b08-4b6b-a949-b656b9bba28e" + }, + { + "routeId": "L92", + "platformId": "U12Z2", + "id": "32a5b4a2-99d1-4888-8b7c-10fa41ca487e" + }, + { + "routeId": "L94", + "platformId": "U12Z2", + "id": "dd22bba8-431a-4285-8fee-732700d4ad27" + }, + { + "routeId": "L7", + "platformId": "U12Z3", + "id": "8e700fbd-c798-4f37-8378-15ce72c84034" + }, + { + "routeId": "L8", + "platformId": "U12Z3", + "id": "c33a182d-c762-4bd4-b471-a6ece6b65775" + }, + { + "routeId": "L92", + "platformId": "U12Z3", + "id": "b8eaa685-4db3-4b4c-9fc6-b21e82e51732" + }, + { + "routeId": "L109", + "platformId": "U12Z6", + "id": "8fba07f3-8859-48dc-b943-39fcde612e3f" + }, + { + "routeId": "L903", + "platformId": "U12Z6", + "id": "ed4ad31f-5f78-4b91-b067-71988075d01f" + }, + { + "routeId": "L109", + "platformId": "U12Z7", + "id": "f7fefcd5-fdbe-4671-bc1f-0ad6a3022b8c" + }, + { + "routeId": "L903", + "platformId": "U12Z7", + "id": "4756df9f-bf31-4e7d-bd6b-47b5a7feb6c0" + }, + { + "routeId": "L351", + "platformId": "U1300Z1", + "id": "032b7fc8-1f42-48b4-b1e6-1fce1f4f4d0c" + }, + { + "routeId": "L351", + "platformId": "U1300Z2", + "id": "400e5865-2449-4df2-b661-093260a959a0" + }, + { + "routeId": "L351", + "platformId": "U1301Z1", + "id": "567fb475-069f-4447-9a52-4abf59f5492d" + }, + { + "routeId": "L351", + "platformId": "U1302Z1", + "id": "860afe34-d4ea-4519-b2b4-ef7b1a6aaf7e" + }, + { + "routeId": "L351", + "platformId": "U1302Z2", + "id": "d9f95fcb-dd3e-49d9-a95b-c389e9cb4a77" + }, + { + "routeId": "L351", + "platformId": "U1303Z1", + "id": "7bdab7e8-2e34-408a-8a67-ea1dc9d5c37a" + }, + { + "routeId": "L348", + "platformId": "U1303Z1", + "id": "5bfea9b1-dea9-4c3a-bf3c-b1b1471ec424" + }, + { + "routeId": "L471", + "platformId": "U1303Z1", + "id": "1d73bd71-6962-4f43-8692-a17a1444b452" + }, + { + "routeId": "L351", + "platformId": "U1303Z2", + "id": "cbc8efbb-8208-43bb-b1b4-965d2b152fae" + }, + { + "routeId": "L348", + "platformId": "U1303Z2", + "id": "f725ebf0-a292-48f9-a8b9-81c25e878351" + }, + { + "routeId": "L471", + "platformId": "U1303Z2", + "id": "8deea4fd-8e02-4baa-a476-fae87decc63a" + }, + { + "routeId": "L351", + "platformId": "U1304Z1", + "id": "ae4dfe11-8967-4589-8fc3-a6ad0ce7b87c" + }, + { + "routeId": "L351", + "platformId": "U1304Z2", + "id": "eb6e777a-5243-41d5-839c-886daa38efd1" + }, + { + "routeId": "L2223", + "platformId": "U1304Z401", + "id": "f8b3c21d-434b-4698-9dfb-a8b0657a213f" + }, + { + "routeId": "L2223", + "platformId": "U1304Z402", + "id": "69977c83-757f-409e-b593-4c246a1554d4" + }, + { + "routeId": "L351", + "platformId": "U1305Z1", + "id": "75ccb2ad-ff96-43c5-9573-8386be4d8e38" + }, + { + "routeId": "L1221", + "platformId": "U1305Z301", + "id": "f308783b-a923-45a1-8312-488e4743aa1c" + }, + { + "routeId": "L1343", + "platformId": "U1305Z301", + "id": "c2fc9267-f263-44d4-8139-d9b27adac59f" + }, + { + "routeId": "L1303", + "platformId": "U1305Z301", + "id": "a02e58fd-5bcc-4fb6-83ba-974aee439b5a" + }, + { + "routeId": "L2223", + "platformId": "U1305Z401", + "id": "b2307d93-a04f-4f60-9b5d-86930e39746c" + }, + { + "routeId": "L2223", + "platformId": "U1305Z461", + "id": "48add56f-f32e-4717-a695-d6d19d4994d9" + }, + { + "routeId": "L471", + "platformId": "U1306Z1", + "id": "afd1a70d-c65c-4554-accd-01e013cf19b8" + }, + { + "routeId": "L471", + "platformId": "U1306Z2", + "id": "fed049b4-6140-499f-a1e9-125db0981896" + }, + { + "routeId": "L471", + "platformId": "U1307Z1", + "id": "7f7d5c3d-8b6d-4b9d-88d3-7e1b8ad0d715" + }, + { + "routeId": "L471", + "platformId": "U1307Z2", + "id": "b3065b48-a8c7-423e-8dff-1e9cf3d0badc" + }, + { + "routeId": "L348", + "platformId": "U1308Z1", + "id": "08866b0e-6b46-41d8-89d8-07b07224419c" + }, + { + "routeId": "L368", + "platformId": "U1308Z1", + "id": "8bd04c95-4481-42a5-aef1-107c0ac880f7" + }, + { + "routeId": "L369", + "platformId": "U1308Z1", + "id": "8e992ef8-565f-4b25-a7e4-604f65a98bb1" + }, + { + "routeId": "L348", + "platformId": "U1308Z2", + "id": "e49667de-dcb9-446e-b3f5-c4797d1d9143" + }, + { + "routeId": "L368", + "platformId": "U1308Z2", + "id": "c6cfd4a5-470a-4c27-bd95-030253e3fc9e" + }, + { + "routeId": "L369", + "platformId": "U1308Z2", + "id": "94eebf58-968d-4f53-bb21-a3f77b06461b" + }, + { + "routeId": "L20", + "platformId": "U130Z1", + "id": "f735a130-7803-436c-843d-38aa9211766e" + }, + { + "routeId": "L26", + "platformId": "U130Z1", + "id": "ff4dcb60-870c-4999-acb5-cd9fc91ded1d" + }, + { + "routeId": "L91", + "platformId": "U130Z1", + "id": "6ac27bef-3d1f-4fe6-a5ee-a19a123bcea6" + }, + { + "routeId": "L20", + "platformId": "U130Z2", + "id": "df2d22a3-92d6-4419-8033-fe7dcd939a56" + }, + { + "routeId": "L26", + "platformId": "U130Z2", + "id": "f5092951-d919-49ed-bd35-7ac433d24694" + }, + { + "routeId": "L91", + "platformId": "U130Z2", + "id": "ee3cec56-81d0-4a8a-83ac-4e0a76d8bee9" + }, + { + "routeId": "L312", + "platformId": "U1310Z1", + "id": "9a7f350f-eab3-477c-9c88-8e99a97f28f1" + }, + { + "routeId": "L312", + "platformId": "U1310Z2", + "id": "6adca09c-e2dc-4888-817c-b08df8b1f812" + }, + { + "routeId": "L377", + "platformId": "U1311Z1", + "id": "4fa7fa01-f91c-47c9-9c08-a2f0be67c033" + }, + { + "routeId": "L477", + "platformId": "U1311Z1", + "id": "7461dadb-9036-4fd4-9601-c02ba811f5c3" + }, + { + "routeId": "L377", + "platformId": "U1311Z2", + "id": "098c6711-e9bc-4b47-9b49-1c071d23b567" + }, + { + "routeId": "L477", + "platformId": "U1311Z2", + "id": "70081452-da49-4135-ae3e-35191170e06d" + }, + { + "routeId": "L387", + "platformId": "U1313Z1", + "id": "7a1b97b6-4109-47cb-9283-9f67efc5d4d5" + }, + { + "routeId": "L387", + "platformId": "U1313Z2", + "id": "76385066-3bdc-4ea2-a3c6-4331b1c6222b" + }, + { + "routeId": "L421", + "platformId": "U1314Z1", + "id": "29701bfb-fb0a-4c43-baff-e5d25ba38246" + }, + { + "routeId": "L421", + "platformId": "U1314Z2", + "id": "626c3fdc-8da9-41ea-ac8d-e259e6b8b39e" + }, + { + "routeId": "L312", + "platformId": "U1317Z1", + "id": "6547ae6c-742d-46f0-9bd2-4c17f036e71d" + }, + { + "routeId": "L312", + "platformId": "U1317Z2", + "id": "550eb1f4-9836-4897-a1b3-d7d2f84bc2c1" + }, + { + "routeId": "L312", + "platformId": "U1318Z2", + "id": "6269cc9c-1302-415a-8732-efef136bf812" + }, + { + "routeId": "L312", + "platformId": "U1318Z3", + "id": "06308b7e-f7a9-4973-a39e-92b5f42d439d" + }, + { + "routeId": "L2254", + "platformId": "U1318Z402", + "id": "b3fa77f2-bd04-4447-996a-f17800643419" + }, + { + "routeId": "L2254", + "platformId": "U1318Z403", + "id": "74faa032-3cc6-4b43-b318-08ab2cd0c9ad" + }, + { + "routeId": "L312", + "platformId": "U1319Z1", + "id": "542cbb73-f8bf-433b-be36-c6ed0edd3b2a" + }, + { + "routeId": "L312", + "platformId": "U1319Z2", + "id": "bcb46ccd-7f1f-4227-8dad-3ef7bbcdd3f0" + }, + { + "routeId": "L2254", + "platformId": "U1319Z401", + "id": "6cb58bb0-9d90-4417-af4e-ffb9e4455b9a" + }, + { + "routeId": "L2254", + "platformId": "U1319Z402", + "id": "1fa7b5b2-9468-4e6f-9172-f52141cb2e4f" + }, + { + "routeId": "L229", + "platformId": "U131Z1", + "id": "f6c1e050-2c32-46e5-bc75-299bbe45c9ac" + }, + { + "routeId": "L903", + "platformId": "U131Z1", + "id": "cf4a71d4-ef58-4dfe-a93a-eb55044df8cc" + }, + { + "routeId": "L366", + "platformId": "U131Z1", + "id": "7bfb1ffc-4b33-4047-a39e-d64ee750904b" + }, + { + "routeId": "L229", + "platformId": "U131Z2", + "id": "022599fe-8ce5-422b-9c3f-d8d552fc0738" + }, + { + "routeId": "L903", + "platformId": "U131Z2", + "id": "0d0613d1-3d2d-41d1-b935-d3e905f5c01f" + }, + { + "routeId": "L366", + "platformId": "U131Z2", + "id": "d4894082-d763-47ec-83f3-f166e0bbde4d" + }, + { + "routeId": "L350", + "platformId": "U1320Z12", + "id": "ee77bc74-cd91-4b60-8b40-7efbd25a6d07" + }, + { + "routeId": "L312", + "platformId": "U1321Z1", + "id": "ecd53d73-1c6e-424d-a948-ef3b00b52722" + }, + { + "routeId": "L312", + "platformId": "U1321Z2", + "id": "892c5a46-747e-4df2-9ec7-7ef5b8e07ed2" + }, + { + "routeId": "L327", + "platformId": "U1322Z1", + "id": "b44c912d-6372-49d7-bc7d-20b07323ade2" + }, + { + "routeId": "L327", + "platformId": "U1322Z2", + "id": "c7c910aa-d7ef-4928-8b47-24d9b296ac94" + }, + { + "routeId": "L138", + "platformId": "U1323Z1", + "id": "e58d5ef2-638e-4034-9f81-fd653b23afcf" + }, + { + "routeId": "L138", + "platformId": "U1323Z2", + "id": "4bc17313-41bc-4e04-bd13-e54c4abc1fd1" + }, + { + "routeId": "L327", + "platformId": "U1326Z1", + "id": "386a0b60-dd0c-4e65-b97d-6f8445632beb" + }, + { + "routeId": "L327", + "platformId": "U1326Z2", + "id": "b7018524-1ce0-4982-88e7-442f3c9cd389" + }, + { + "routeId": "L327", + "platformId": "U1327Z1", + "id": "31d84b3c-36a3-4e6d-b0b4-046b7506fbef" + }, + { + "routeId": "L327", + "platformId": "U1327Z2", + "id": "1779b6ba-b7e7-4c65-a295-e1067b088652" + }, + { + "routeId": "L327", + "platformId": "U1328Z1", + "id": "2f40935e-60e2-4f79-a34d-b2e0553c4551" + }, + { + "routeId": "L327", + "platformId": "U1328Z2", + "id": "66432aa5-a1f6-4d40-9bac-6b575682178d" + }, + { + "routeId": "L327", + "platformId": "U1329Z1", + "id": "83250f5e-7511-4e7b-9959-c1531f2ee6f9" + }, + { + "routeId": "L327", + "platformId": "U1329Z2", + "id": "d72262a5-567f-4e5e-bc42-7abef7f3a426" + }, + { + "routeId": "L906", + "platformId": "U132Z1", + "id": "d55e1edb-b731-40c8-b58b-eb1b81b455b7" + }, + { + "routeId": "L227", + "platformId": "U132Z1", + "id": "26730cd9-3e14-4827-87fc-bc230ecaa76d" + }, + { + "routeId": "L906", + "platformId": "U132Z2", + "id": "dde463e6-b719-48d4-a7a9-2f2d391d005f" + }, + { + "routeId": "L227", + "platformId": "U132Z2", + "id": "27d8a237-eadf-4fb2-a0ff-a33c19fe65fa" + }, + { + "routeId": "L332", + "platformId": "U1330Z1", + "id": "cd8016fc-0800-4b7e-b0b3-dcb3f2adde7f" + }, + { + "routeId": "L956", + "platformId": "U1330Z1", + "id": "fa4844c1-a802-4bec-87c8-6005e802708b" + }, + { + "routeId": "L337", + "platformId": "U1330Z1", + "id": "a7bdd58d-b7d7-4089-bce1-b4c34688a3d8" + }, + { + "routeId": "L335", + "platformId": "U1330Z1", + "id": "ae4ef426-5326-4160-9289-a72aca5c8399" + }, + { + "routeId": "L339", + "platformId": "U1330Z1", + "id": "6f5b6c0b-6d35-45eb-9b3d-31c29654e435" + }, + { + "routeId": "L332", + "platformId": "U1330Z2", + "id": "57edbfc7-8ea2-4d39-afee-382a0ae8ab86" + }, + { + "routeId": "L327", + "platformId": "U1330Z2", + "id": "a7a37a9f-bd4c-4621-95a8-db8713a0e66f" + }, + { + "routeId": "L956", + "platformId": "U1330Z2", + "id": "2a347b77-e3c6-43ff-bb4e-108a71fbf4c7" + }, + { + "routeId": "L337", + "platformId": "U1330Z2", + "id": "6905bc99-59c7-4fe8-b7ba-07a74b9bd5ce" + }, + { + "routeId": "L335", + "platformId": "U1330Z2", + "id": "4f3cf0ba-adc2-4c15-abb9-e0087c6a6480" + }, + { + "routeId": "L339", + "platformId": "U1330Z2", + "id": "8ec952e4-59c4-475c-8e04-ef265e46334e" + }, + { + "routeId": "L327", + "platformId": "U1330Z3", + "id": "795bdf6d-d58b-44d3-8af5-f4edcbb64825" + }, + { + "routeId": "L332", + "platformId": "U1331Z1", + "id": "2ccb1839-a0b9-4164-a1cf-6ae184cd939d" + }, + { + "routeId": "L956", + "platformId": "U1331Z1", + "id": "702a7d38-69fe-4bd7-90a5-006c0998304a" + }, + { + "routeId": "L337", + "platformId": "U1331Z1", + "id": "bcd48915-8f06-4499-bfb9-31f2f61f72f6" + }, + { + "routeId": "L335", + "platformId": "U1331Z1", + "id": "b9cab0f1-36c2-49c4-a627-d4bf963cdddf" + }, + { + "routeId": "L339", + "platformId": "U1331Z1", + "id": "5a3fd9cb-11d7-47fd-8792-0d7eae66f2d4" + }, + { + "routeId": "L332", + "platformId": "U1331Z2", + "id": "86e5608b-92c3-46f4-9778-ca34e908ef41" + }, + { + "routeId": "L956", + "platformId": "U1331Z2", + "id": "56d6348c-ad11-4cb0-9d04-5fffbabc5fc3" + }, + { + "routeId": "L337", + "platformId": "U1331Z2", + "id": "830a0ddb-3beb-4ee8-8375-8dcc072ad77d" + }, + { + "routeId": "L335", + "platformId": "U1331Z2", + "id": "f441e6e6-2869-4a67-9411-5e0fb6cab45a" + }, + { + "routeId": "L339", + "platformId": "U1331Z2", + "id": "56914eff-0e3f-4cd2-b960-8a9ad16522d1" + }, + { + "routeId": "L332", + "platformId": "U1332Z1", + "id": "e2424192-8c6c-45db-8284-5846d5e9a23f" + }, + { + "routeId": "L956", + "platformId": "U1332Z1", + "id": "f8e5bded-3c63-46c6-b219-65f566bae836" + }, + { + "routeId": "L337", + "platformId": "U1332Z1", + "id": "d6f63ad6-4882-4077-8287-3207fb16e7d9" + }, + { + "routeId": "L335", + "platformId": "U1332Z1", + "id": "cf476de2-e612-464c-be06-ca04d5da54b1" + }, + { + "routeId": "L339", + "platformId": "U1332Z1", + "id": "5f0a120c-9fdc-4f69-8562-d3cb1ada4122" + }, + { + "routeId": "L332", + "platformId": "U1332Z2", + "id": "7bdfee47-dda7-409e-a93e-f3b121faa8f5" + }, + { + "routeId": "L956", + "platformId": "U1332Z2", + "id": "205b32a1-aceb-4619-a678-1dd6ecdf6b43" + }, + { + "routeId": "L337", + "platformId": "U1332Z2", + "id": "3b5d81e9-ecd1-4693-b406-14f6907473f3" + }, + { + "routeId": "L335", + "platformId": "U1332Z2", + "id": "849fe828-d893-49f5-b527-5c9bfd35662c" + }, + { + "routeId": "L339", + "platformId": "U1332Z2", + "id": "31228086-aa8c-4658-a6db-ecec1d2f4fec" + }, + { + "routeId": "L1223", + "platformId": "U1333Z301", + "id": "a367302b-a35f-4bfd-a1ca-b52c49109c3b" + }, + { + "routeId": "L1302", + "platformId": "U1333Z301", + "id": "8b690ab5-b54a-4b46-8530-1903f09d008c" + }, + { + "routeId": "L115", + "platformId": "U1334Z2", + "id": "8e12474b-64da-4ff5-80e2-e3a9ad259e33" + }, + { + "routeId": "L327", + "platformId": "U1335Z1", + "id": "7fc95658-868b-418c-af05-b317e82d8af7" + }, + { + "routeId": "L327", + "platformId": "U1335Z2", + "id": "c296feca-afc5-4c5c-863e-afe13fdda099" + }, + { + "routeId": "L215", + "platformId": "U1336Z1", + "id": "5e750049-bab8-411f-8fa7-800effc4b9db" + }, + { + "routeId": "L197", + "platformId": "U1336Z1", + "id": "54ff2f14-25e3-4fa7-bfe9-f5a930e65421" + }, + { + "routeId": "L904", + "platformId": "U1336Z1", + "id": "60d511d9-7657-4402-b060-5a45179f96a2" + }, + { + "routeId": "L913", + "platformId": "U1336Z1", + "id": "63e30512-307a-4a35-bffa-57c00297d1d3" + }, + { + "routeId": "L367", + "platformId": "U1339Z1", + "id": "f8d92baa-93e9-4f85-913f-4edc405a86b4" + }, + { + "routeId": "L376", + "platformId": "U1339Z1", + "id": "24eac512-4eb9-45f9-833a-fa57c3fe7a1e" + }, + { + "routeId": "L367", + "platformId": "U1339Z2", + "id": "d58346ff-152e-4bf6-8e0a-aec6dfe275ae" + }, + { + "routeId": "L376", + "platformId": "U1339Z2", + "id": "f711805c-cfab-44ce-8dae-7b4c52582f3d" + }, + { + "routeId": "L131", + "platformId": "U133Z1", + "id": "3ee2d389-e253-40eb-87a0-61621301c187" + }, + { + "routeId": "L907", + "platformId": "U133Z1", + "id": "6d4bcd54-d303-41fa-9557-2a0148cf7b1b" + }, + { + "routeId": "L131", + "platformId": "U133Z2", + "id": "77d301fc-4752-4558-97e3-dbcb77eac29b" + }, + { + "routeId": "L907", + "platformId": "U133Z2", + "id": "b125ed8e-216e-4b5f-a8c7-0f7bcff7d157" + }, + { + "routeId": "L775", + "platformId": "U1340Z1", + "id": "b9775cd1-e543-43ec-ba85-6f3e231d802f" + }, + { + "routeId": "L775", + "platformId": "U1340Z2", + "id": "d067600e-bb14-4352-8443-057a301696d5" + }, + { + "routeId": "L115", + "platformId": "U1341Z1", + "id": "23c07494-886c-4a3d-a835-41b2d97d2974" + }, + { + "routeId": "L240", + "platformId": "U1342Z1", + "id": "32d5c70a-bcc0-4000-9c4a-bf4f4d4107b4" + }, + { + "routeId": "L240", + "platformId": "U1344Z1", + "id": "325c3265-c649-409a-ad38-023a0c96082e" + }, + { + "routeId": "L125", + "platformId": "U1345Z1", + "id": "66f5ed96-1eb8-484b-8ee2-68c7ebb355d6" + }, + { + "routeId": "L154", + "platformId": "U1345Z1", + "id": "c994bcbb-c944-4dbe-a6f7-12aed364590a" + }, + { + "routeId": "L125", + "platformId": "U1345Z2", + "id": "b9c51389-bcd2-4b18-985d-b481d645a9b1" + }, + { + "routeId": "L154", + "platformId": "U1345Z2", + "id": "73f1a9b6-b6d8-414b-84c5-87059148d472" + }, + { + "routeId": "L209", + "platformId": "U1347Z1", + "id": "b704cbd2-876d-4857-85b1-3552768af409" + }, + { + "routeId": "L220", + "platformId": "U1347Z1", + "id": "7822ff53-8eda-461c-a24d-3cb42697afc7" + }, + { + "routeId": "L204", + "platformId": "U1347Z2", + "id": "b5dad4cb-06b2-49d9-bca2-3925c7f735ba" + }, + { + "routeId": "L209", + "platformId": "U1347Z2", + "id": "5642151a-8705-4f96-96e9-2ab111469865" + }, + { + "routeId": "L209", + "platformId": "U1348Z1", + "id": "e354b9a8-1bab-4149-8a41-0ad541f6f832" + }, + { + "routeId": "L220", + "platformId": "U1348Z1", + "id": "ac407e5c-2fac-407e-af2e-3123039616d5" + }, + { + "routeId": "L209", + "platformId": "U1348Z2", + "id": "887a79af-8197-49a9-89cf-b1f28c172074" + }, + { + "routeId": "L7", + "platformId": "U134Z1", + "id": "fece81cb-66f0-4ced-8faa-f3bfa4a68e0f" + }, + { + "routeId": "L8", + "platformId": "U134Z1", + "id": "cde889d4-ad46-412b-ae71-1e9385f9b124" + }, + { + "routeId": "L92", + "platformId": "U134Z1", + "id": "534b1214-74fc-4a80-94be-876588ac4b21" + }, + { + "routeId": "L7", + "platformId": "U134Z2", + "id": "b759c564-2dea-43fd-8c61-b23bb22d6a24" + }, + { + "routeId": "L8", + "platformId": "U134Z2", + "id": "dcd32029-4811-41ab-9816-cfd4b5cd1f44" + }, + { + "routeId": "L92", + "platformId": "U134Z2", + "id": "ede10e28-19bd-4a7a-bfdb-be95d108b661" + }, + { + "routeId": "L1219", + "platformId": "U134Z301", + "id": "f0c87dc2-c7cf-48e5-b5af-bd398b270ac6" + }, + { + "routeId": "L1218", + "platformId": "U134Z301", + "id": "86b5551e-46a6-40b8-8db7-eabdb945082b" + }, + { + "routeId": "L1210", + "platformId": "U134Z301", + "id": "ee5e49ae-efca-4dd9-9afc-dd10e5e4b283" + }, + { + "routeId": "L1209", + "platformId": "U134Z301", + "id": "44a40316-1390-4710-8da6-b167eedef05e" + }, + { + "routeId": "L1301", + "platformId": "U134Z301", + "id": "0be5a6d5-a449-47c8-8eaa-e5ac1f5d4d25" + }, + { + "routeId": "L1349", + "platformId": "U134Z301", + "id": "2018cad8-4655-4f62-94e0-a18c65042085" + }, + { + "routeId": "L136", + "platformId": "U134Z4", + "id": "7cdb4592-9c57-410a-ad4a-9f5d0adb3365" + }, + { + "routeId": "L177", + "platformId": "U134Z4", + "id": "c78d6197-10a8-4081-b0e8-d126852176f3" + }, + { + "routeId": "L183", + "platformId": "U134Z4", + "id": "51207383-b928-42f3-9a34-c1a09bbbe7e3" + }, + { + "routeId": "L195", + "platformId": "U134Z4", + "id": "7f8d6684-ad61-494e-a6aa-7f2c55e05919" + }, + { + "routeId": "L913", + "platformId": "U134Z4", + "id": "6266dfd3-c856-44ec-b77d-e9fd4f4101af" + }, + { + "routeId": "L136", + "platformId": "U134Z5", + "id": "bf6d4795-f626-4edf-a907-d522a8e2827b" + }, + { + "routeId": "L177", + "platformId": "U134Z5", + "id": "b7a5d066-3b36-4c00-a580-1f23bc94e2d1" + }, + { + "routeId": "L183", + "platformId": "U134Z5", + "id": "86ee5b2b-058a-4a28-b3c2-72f91163d0d9" + }, + { + "routeId": "L195", + "platformId": "U134Z5", + "id": "68b74e48-0b3f-4dc1-bc45-d2ba8a13489f" + }, + { + "routeId": "L913", + "platformId": "U134Z5", + "id": "f2034693-222a-4c48-8a01-b2cc3bb86373" + }, + { + "routeId": "L204", + "platformId": "U1351Z1", + "id": "cf2f9ee2-95e1-4bb5-9bd8-2f85f0b4eb88" + }, + { + "routeId": "L220", + "platformId": "U1351Z1", + "id": "05639419-af27-486f-a159-a376110b68a1" + }, + { + "routeId": "L204", + "platformId": "U1351Z2", + "id": "2a835016-6739-42d6-9956-463d7007bff0" + }, + { + "routeId": "L204", + "platformId": "U1352Z1", + "id": "64a81fdb-da43-4eed-bf71-8601632c53e3" + }, + { + "routeId": "L220", + "platformId": "U1352Z1", + "id": "c3bfe377-90de-47a0-8082-5f2ad31d637f" + }, + { + "routeId": "L204", + "platformId": "U1352Z2", + "id": "f4186efe-2a13-463f-8454-f8bbec134b2a" + }, + { + "routeId": "L444", + "platformId": "U1354Z1", + "id": "60c6405c-e8a5-4eb4-9931-1f44b380f76a" + }, + { + "routeId": "L444", + "platformId": "U1354Z2", + "id": "1e462e92-2c92-4a2d-abc4-461f638efecc" + }, + { + "routeId": "L444", + "platformId": "U1355Z1", + "id": "d357dc30-9a6c-4bef-a934-f14e44f492d5" + }, + { + "routeId": "L444", + "platformId": "U1355Z2", + "id": "07346dfb-eff5-42d3-b728-219e63fd23af" + }, + { + "routeId": "L444", + "platformId": "U1356Z1", + "id": "78601626-d935-40ac-9d7e-886451e03c1f" + }, + { + "routeId": "L444", + "platformId": "U1356Z2", + "id": "4933346a-dd58-417d-ade4-85650b176827" + }, + { + "routeId": "L444", + "platformId": "U1357Z1", + "id": "f0a4b5f0-e3b4-4d16-8407-a5a8b9a879fb" + }, + { + "routeId": "L444", + "platformId": "U1357Z2", + "id": "d4488cce-7a18-403f-8681-dc33fcb878c0" + }, + { + "routeId": "L444", + "platformId": "U1358Z1", + "id": "c05e37df-13ec-4169-b958-d95b1dc20428" + }, + { + "routeId": "L444", + "platformId": "U1358Z2", + "id": "7a130f46-7807-421f-b763-55aa218877e6" + }, + { + "routeId": "L7", + "platformId": "U135Z1", + "id": "b3184e10-50b3-4ca0-8a61-8b4c0ffa1dc9" + }, + { + "routeId": "L12", + "platformId": "U135Z1", + "id": "b55f710d-496c-4953-a55e-fa29bcc51083" + }, + { + "routeId": "L92", + "platformId": "U135Z1", + "id": "894beb8e-99a5-4d6e-bea8-083e314fd54e" + }, + { + "routeId": "L94", + "platformId": "U135Z1", + "id": "f3dd73d8-18c8-4cc8-b86e-2284004aa9d8" + }, + { + "routeId": "L992", + "platformId": "U135Z101", + "id": "7373ed02-0929-4ba8-83a6-1ed3dd139103" + }, + { + "routeId": "L992", + "platformId": "U135Z102", + "id": "85989186-e801-4bf2-acf1-693e1744fbb4" + }, + { + "routeId": "L7", + "platformId": "U135Z2", + "id": "f223195d-237f-43c7-b852-5619ef55cc12" + }, + { + "routeId": "L12", + "platformId": "U135Z2", + "id": "0305f933-0e62-49ce-a01f-762da36fb2f3" + }, + { + "routeId": "L92", + "platformId": "U135Z2", + "id": "16805fad-6f1c-48db-865e-06da2ac67a04" + }, + { + "routeId": "L94", + "platformId": "U135Z2", + "id": "de1ff7c6-b6ee-466b-857e-fbc8537a77a0" + }, + { + "routeId": "L141", + "platformId": "U135Z3", + "id": "bfc16427-0aa9-4572-b8c6-74da79e2a69f" + }, + { + "routeId": "L141", + "platformId": "U135Z4", + "id": "40eadb61-ac63-4a09-8735-035bb7964b61" + }, + { + "routeId": "L110", + "platformId": "U135Z4", + "id": "7d1a6c2c-8761-41fd-b0c1-dd127ea1f776" + }, + { + "routeId": "L110", + "platformId": "U135Z5", + "id": "2f3349bb-6a57-4f9f-ac5a-6a5bf658d2e9" + }, + { + "routeId": "L444", + "platformId": "U1360Z1", + "id": "c87b0be6-15e0-4bd3-a850-71cff5dd5170" + }, + { + "routeId": "L444", + "platformId": "U1360Z2", + "id": "58084937-b104-41a0-ad2a-424c0453193d" + }, + { + "routeId": "L444", + "platformId": "U1361Z1", + "id": "83b99236-caf0-40ca-b21c-723304914d53" + }, + { + "routeId": "L444", + "platformId": "U1361Z2", + "id": "9aa2ef9f-0599-411d-8b4d-e410468b9972" + }, + { + "routeId": "L312", + "platformId": "U1362Z1", + "id": "0ddf67b8-a904-4eb2-9edc-d2f23d10f4e6" + }, + { + "routeId": "L322", + "platformId": "U1363Z1", + "id": "b6972b3a-fc4a-4cf6-8d94-0a831dcb1565" + }, + { + "routeId": "L342", + "platformId": "U1363Z1", + "id": "58e5fd11-5fbf-483c-b179-f9408682a0d5" + }, + { + "routeId": "L429", + "platformId": "U1363Z1", + "id": "5c9d3748-d955-425e-b91b-a7d3c46b7ad4" + }, + { + "routeId": "L323", + "platformId": "U1363Z1", + "id": "cefe9fcc-c1f9-4af8-af00-79fa8346df06" + }, + { + "routeId": "L322", + "platformId": "U1363Z2", + "id": "cc22ae1c-e2b9-4714-b8f3-ea59bde758b0" + }, + { + "routeId": "L342", + "platformId": "U1363Z2", + "id": "16589147-7cc9-40f1-bc1c-66f48a8fab4e" + }, + { + "routeId": "L429", + "platformId": "U1363Z2", + "id": "117647e7-8476-4f9b-9bdd-e15194ffe145" + }, + { + "routeId": "L323", + "platformId": "U1363Z2", + "id": "25c9ab7f-c762-4709-b927-d09ef90a121b" + }, + { + "routeId": "L312", + "platformId": "U1364Z1", + "id": "a31adfea-73c1-4c36-a4ff-579a1c1d7dee" + }, + { + "routeId": "L357", + "platformId": "U1365Z1", + "id": "e34d3857-2262-48a1-8262-91754f445d62" + }, + { + "routeId": "L357", + "platformId": "U1365Z2", + "id": "ae662fbc-3667-4ca2-a287-f6cd600aadc7" + }, + { + "routeId": "L357", + "platformId": "U1366Z1", + "id": "77cf798a-a4b8-4ecb-9d9a-72bf977222d3" + }, + { + "routeId": "L357", + "platformId": "U1366Z2", + "id": "65e8cde2-259c-485e-bf65-f3f09c5950b2" + }, + { + "routeId": "L209", + "platformId": "U1367Z1", + "id": "05b153a5-5fa2-4606-a566-514a851ae47f" + }, + { + "routeId": "L221", + "platformId": "U1367Z1", + "id": "4ece5b51-69c7-493e-bf8f-3bac43c4260d" + }, + { + "routeId": "L209", + "platformId": "U1367Z2", + "id": "624beee2-6698-4410-9b4b-a781102caa2a" + }, + { + "routeId": "L221", + "platformId": "U1367Z2", + "id": "76c49ce8-c749-45b6-b318-c7e979054d74" + }, + { + "routeId": "L168", + "platformId": "U1369Z1", + "id": "ba8bda37-e3da-4ba8-b9f0-094261170f4a" + }, + { + "routeId": "L228", + "platformId": "U136Z1", + "id": "114fe3f4-f0be-40c7-a341-b8ca465c588a" + }, + { + "routeId": "L325", + "platformId": "U136Z1", + "id": "c9c8d0fb-334b-43e5-9b55-a7aed914e12c" + }, + { + "routeId": "L228", + "platformId": "U136Z2", + "id": "7a855b49-cee4-461b-951d-8e645edb8e80" + }, + { + "routeId": "L325", + "platformId": "U136Z2", + "id": "5dfc216b-8718-4096-935b-5cdfa01222d7" + }, + { + "routeId": "L363", + "platformId": "U1370Z1", + "id": "5b24481e-25f5-4a2a-b7d4-831c9e7a319e" + }, + { + "routeId": "L357", + "platformId": "U1370Z1", + "id": "ccf18f81-2e48-4c39-ba41-64bb947968ed" + }, + { + "routeId": "L363", + "platformId": "U1370Z2", + "id": "f0a0c365-8550-4923-895f-c6f56a954726" + }, + { + "routeId": "L357", + "platformId": "U1370Z2", + "id": "7319c48a-55d6-4973-9e20-2d937a53dfaa" + }, + { + "routeId": "L363", + "platformId": "U1371Z1", + "id": "303cfb25-3365-4cb5-b3e3-3903ec348b0c" + }, + { + "routeId": "L357", + "platformId": "U1371Z1", + "id": "580bdad7-232f-4d3f-9df4-17b7ebfb3e74" + }, + { + "routeId": "L363", + "platformId": "U1371Z2", + "id": "0de2c146-542f-4c9b-90bd-4aa2cb02e36b" + }, + { + "routeId": "L357", + "platformId": "U1371Z2", + "id": "ebe3923e-f19a-4a56-a294-468ef9554a1b" + }, + { + "routeId": "L385", + "platformId": "U1371Z3", + "id": "7c590e0f-d96c-4c91-a8f7-f04993b9cd16" + }, + { + "routeId": "L363", + "platformId": "U1372Z1", + "id": "2e266c6c-36bd-471f-9eb5-cf7f8da9d3b8" + }, + { + "routeId": "L357", + "platformId": "U1372Z1", + "id": "de1451c2-f692-42a7-847c-521a1e5032ea" + }, + { + "routeId": "L406", + "platformId": "U1372Z1", + "id": "da279d49-a529-44ac-8b37-0dc14cac4873" + }, + { + "routeId": "L401", + "platformId": "U1372Z1", + "id": "49410c4e-d44c-4460-b11b-8be61aee1059" + }, + { + "routeId": "L402", + "platformId": "U1372Z1", + "id": "f723f8d3-e857-4a25-95d4-f448b710d5f8" + }, + { + "routeId": "L363", + "platformId": "U1372Z2", + "id": "fd25a01d-be28-427f-ad72-98446b6b5fa0" + }, + { + "routeId": "L357", + "platformId": "U1372Z2", + "id": "263a5dfb-9cbb-4715-84fb-8e62604a28ad" + }, + { + "routeId": "L325", + "platformId": "U1372Z2", + "id": "135aab21-008c-452a-8402-df4e54e47cdc" + }, + { + "routeId": "L401", + "platformId": "U1372Z2", + "id": "cd373d55-5637-416a-acf3-74e1ed8a767e" + }, + { + "routeId": "L402", + "platformId": "U1372Z2", + "id": "7fda0e5d-f969-46f1-b140-c57a24c25547" + }, + { + "routeId": "L406", + "platformId": "U1372Z2", + "id": "dd7ebeeb-b763-4c74-a46d-b52d6733303f" + }, + { + "routeId": "L363", + "platformId": "U1373Z1", + "id": "e45846b0-e40b-482f-960c-1af7c04924ba" + }, + { + "routeId": "L357", + "platformId": "U1373Z1", + "id": "61840b4a-c15b-4a82-a3f7-50310782e8b6" + }, + { + "routeId": "L325", + "platformId": "U1373Z1", + "id": "ce3eb4e9-31d9-4e6d-9f42-b2199b6ce11b" + }, + { + "routeId": "L385", + "platformId": "U1373Z1", + "id": "5771c06d-a8b5-4e4a-8b55-fe3a9abf2c44" + }, + { + "routeId": "L363", + "platformId": "U1373Z2", + "id": "14ebb300-3654-45c6-8992-f19ff11f475b" + }, + { + "routeId": "L357", + "platformId": "U1373Z2", + "id": "d70fe19f-770c-4191-94c2-4c3c2bbd059d" + }, + { + "routeId": "L325", + "platformId": "U1373Z2", + "id": "c991bc75-9f9d-4560-ba43-0f104748ce9c" + }, + { + "routeId": "L385", + "platformId": "U1373Z2", + "id": "6f2be2be-cd3d-4dbd-acf5-08f37581ff26" + }, + { + "routeId": "L363", + "platformId": "U1374Z1", + "id": "af96137d-6fd9-460d-b4b2-1c6c23691ead" + }, + { + "routeId": "L325", + "platformId": "U1374Z1", + "id": "cb527fb1-a8ea-49ab-90d6-d373e0b594f6" + }, + { + "routeId": "L385", + "platformId": "U1374Z1", + "id": "9df6d555-6b64-4be5-b377-b7f17ebec811" + }, + { + "routeId": "L363", + "platformId": "U1374Z2", + "id": "672520e9-2430-44ae-b1f5-1c1487104181" + }, + { + "routeId": "L357", + "platformId": "U1374Z2", + "id": "fb10b39a-c147-4c5b-ac83-760fc4cfd89a" + }, + { + "routeId": "L325", + "platformId": "U1374Z2", + "id": "4e8e0a1d-1d22-48a1-82f0-081795d858a0" + }, + { + "routeId": "L385", + "platformId": "U1374Z2", + "id": "0f3111fd-4160-4053-b653-31fdb85f2c16" + }, + { + "routeId": "L363", + "platformId": "U1374Z3", + "id": "e6f91cc1-6fae-4fb8-aba5-991f98d90fb0" + }, + { + "routeId": "L357", + "platformId": "U1374Z3", + "id": "ae8fea55-d8fd-43e2-b2ba-76d149e26f7a" + }, + { + "routeId": "L363", + "platformId": "U1375Z1", + "id": "1027e265-f7b2-4ac3-bbcb-87baaf8c2f68" + }, + { + "routeId": "L357", + "platformId": "U1375Z1", + "id": "7f2a97fd-67cd-4974-97ec-fe0636efbc04" + }, + { + "routeId": "L325", + "platformId": "U1375Z1", + "id": "c622f003-aa2e-4f29-9360-7b5c9dbd9a6b" + }, + { + "routeId": "L385", + "platformId": "U1375Z1", + "id": "43524b85-e628-404b-8f1b-8223e71113a4" + }, + { + "routeId": "L363", + "platformId": "U1375Z2", + "id": "92c0e2a3-2c31-4186-be21-7d2867aa2b22" + }, + { + "routeId": "L357", + "platformId": "U1375Z2", + "id": "c674165f-7aaa-41e1-89f5-3c5394ca8810" + }, + { + "routeId": "L325", + "platformId": "U1375Z2", + "id": "0542122e-e9fd-4feb-8acc-95629c5a8913" + }, + { + "routeId": "L385", + "platformId": "U1375Z2", + "id": "bac5c169-daed-4ead-9810-29d76ca6b74a" + }, + { + "routeId": "L385", + "platformId": "U1376Z1", + "id": "e9a3557b-a37e-471a-8635-3a0e3090c75e" + }, + { + "routeId": "L385", + "platformId": "U1376Z2", + "id": "134b02c6-fb9c-4075-bc13-29dedef3e76c" + }, + { + "routeId": "L204", + "platformId": "U1378Z1", + "id": "e182a6a2-40f0-4601-8599-c90c6766d678" + }, + { + "routeId": "L220", + "platformId": "U1378Z1", + "id": "0c5ab619-bcaf-47b7-ae9c-44db88b8da31" + }, + { + "routeId": "L141", + "platformId": "U137Z1", + "id": "1f7dd00c-ed25-40d3-b0ee-a790ff149c15" + }, + { + "routeId": "L181", + "platformId": "U137Z1", + "id": "ddc3f048-ca39-4322-9be0-755a9e091ac8" + }, + { + "routeId": "L912", + "platformId": "U137Z1", + "id": "7afb8129-542a-415b-b23e-22a3089567ca" + }, + { + "routeId": "L110", + "platformId": "U137Z1", + "id": "15d2caff-491a-4cff-a0f7-3444890f9072" + }, + { + "routeId": "L141", + "platformId": "U137Z2", + "id": "a2e596e3-8c19-46aa-83d8-faad60b037e2" + }, + { + "routeId": "L181", + "platformId": "U137Z2", + "id": "a965bcac-a307-4e63-b896-13b918bd77cb" + }, + { + "routeId": "L912", + "platformId": "U137Z2", + "id": "90005c91-787e-4b44-ab14-a262f5d7aa8e" + }, + { + "routeId": "L110", + "platformId": "U137Z2", + "id": "a0d03976-b562-494e-b981-6df2b165366d" + }, + { + "routeId": "L340", + "platformId": "U1381Z1", + "id": "7c0ce810-c00d-4d1c-9f77-40d6f64d612e" + }, + { + "routeId": "L954", + "platformId": "U1381Z1", + "id": "49933a32-15e0-4c18-aece-7c1ca7fc5f92" + }, + { + "routeId": "L350", + "platformId": "U1381Z1", + "id": "97ae9e53-51fe-4938-b20f-3201749b5e16" + }, + { + "routeId": "L1801", + "platformId": "U1381Z11", + "id": "8d2f7bcc-0768-4738-8c5d-39e08e096f49" + }, + { + "routeId": "L340", + "platformId": "U1381Z2", + "id": "ba93f457-f8f4-4965-b58d-22bfff1452bf" + }, + { + "routeId": "L954", + "platformId": "U1381Z2", + "id": "c0a7f456-13fb-4546-b4a5-611024943b52" + }, + { + "routeId": "L350", + "platformId": "U1381Z2", + "id": "48adb133-8b04-40d2-9ac0-922396ed8545" + }, + { + "routeId": "L1220", + "platformId": "U1381Z301", + "id": "c06ee0c5-8beb-4cf3-acd3-04922fb09524" + }, + { + "routeId": "L1304", + "platformId": "U1381Z301", + "id": "aa4bb309-1c61-4818-9ee8-3b8e65f65842" + }, + { + "routeId": "L1349", + "platformId": "U1381Z301", + "id": "3cb657ba-8c2f-45aa-ae39-8ef3ccbd6228" + }, + { + "routeId": "L796", + "platformId": "U1383Z2", + "id": "fccf9023-42a9-433b-94a0-83a676814160" + }, + { + "routeId": "L1217", + "platformId": "U1383Z301", + "id": "a7ce7d19-d4b3-4bbc-a7c8-e48d3961e9b8" + }, + { + "routeId": "L1380", + "platformId": "U1383Z301", + "id": "c75bd87c-96b2-48d8-a5da-3deb7cbb1b18" + }, + { + "routeId": "L1249", + "platformId": "U1383Z301", + "id": "f62f5f0c-628d-4b8e-ab75-65c9754f247e" + }, + { + "routeId": "L1309", + "platformId": "U1383Z301", + "id": "e901f610-2931-4c42-8833-80ce72408d38" + }, + { + "routeId": "L1308", + "platformId": "U1383Z301", + "id": "eef5c659-5edd-482b-9b25-2b0d097e52a9" + }, + { + "routeId": "L406", + "platformId": "U1384Z1", + "id": "d0637d0c-bb99-4997-922f-b73754dd39f7" + }, + { + "routeId": "L796", + "platformId": "U1384Z10", + "id": "e8265e9f-3098-43f5-aa06-0a08ec15da7d" + }, + { + "routeId": "L755", + "platformId": "U1384Z10", + "id": "5cce9558-cc62-4185-a44e-1fadab73cd36" + }, + { + "routeId": "L770", + "platformId": "U1384Z11", + "id": "a9c173cc-413c-4ea1-9efc-8572a4d33f8c" + }, + { + "routeId": "L455", + "platformId": "U1384Z11", + "id": "958ef465-0452-4433-8ad6-0a86fa0c1e71" + }, + { + "routeId": "L337", + "platformId": "U1384Z15", + "id": "34864510-e398-47c0-a750-5f2ac9bf8179" + }, + { + "routeId": "L798", + "platformId": "U1384Z15", + "id": "fd54c83c-633a-4db2-a14e-a608097616f1" + }, + { + "routeId": "L770", + "platformId": "U1384Z15", + "id": "18ac9c16-444c-4cec-86b9-be12cab303a2" + }, + { + "routeId": "L796", + "platformId": "U1384Z15", + "id": "e62576f2-69c0-4132-8547-81a8a2cf9ff8" + }, + { + "routeId": "L791", + "platformId": "U1384Z15", + "id": "b39f0909-49cc-4108-86c4-6227165b737c" + }, + { + "routeId": "L452", + "platformId": "U1384Z15", + "id": "80e14b5f-666b-4532-b9d2-73215362fbe5" + }, + { + "routeId": "L553", + "platformId": "U1384Z15", + "id": "6f79f436-44c2-4c3c-b81e-13dc776ab9fd" + }, + { + "routeId": "L455", + "platformId": "U1384Z15", + "id": "74ef33a1-7a42-4f6f-87b6-192112e23419" + }, + { + "routeId": "L759", + "platformId": "U1384Z15", + "id": "1b4f3961-f3ff-4f21-a522-158ff1dc806d" + }, + { + "routeId": "L755", + "platformId": "U1384Z15", + "id": "c99cc8a7-9424-4b23-ae7a-e7ce5ccb49bb" + }, + { + "routeId": "L438", + "platformId": "U1384Z15", + "id": "c1cb8a27-4c2a-4932-9438-b49438807718" + }, + { + "routeId": "L752", + "platformId": "U1384Z15", + "id": "8655eb41-1a8a-45d7-8b03-23574179c5fb" + }, + { + "routeId": "L753", + "platformId": "U1384Z15", + "id": "fad56342-e7df-46c3-96eb-ab7129c9854a" + }, + { + "routeId": "L754", + "platformId": "U1384Z15", + "id": "c31bf534-7b73-49a7-a69e-527075c73c07" + }, + { + "routeId": "L406", + "platformId": "U1384Z16", + "id": "15fb0b71-e5b7-4ec9-b2a3-9d95f9f977b8" + }, + { + "routeId": "L337", + "platformId": "U1384Z2", + "id": "9008db18-a4f5-46de-8962-2aff205f0949" + }, + { + "routeId": "L401", + "platformId": "U1384Z2", + "id": "3f7fafd4-0d07-4edf-b853-20f655c39a29" + }, + { + "routeId": "L401", + "platformId": "U1384Z3", + "id": "6da2a91c-d205-4e54-b0dc-a3a5de64914e" + }, + { + "routeId": "L1217", + "platformId": "U1384Z301", + "id": "270a6cb3-038f-4fed-b62d-9f60ae15f67d" + }, + { + "routeId": "L1309", + "platformId": "U1384Z301", + "id": "82e85ea7-2d83-48da-81c3-d5a4af705c81" + }, + { + "routeId": "L1398", + "platformId": "U1384Z301", + "id": "51585e5b-79fa-4430-85ed-762cc047fd8a" + }, + { + "routeId": "L1399", + "platformId": "U1384Z301", + "id": "6b736187-2296-40d9-9967-c3f8f72e2cfc" + }, + { + "routeId": "L752", + "platformId": "U1384Z4", + "id": "13319d47-3a9d-480d-90c9-e33a60e6f8d8" + }, + { + "routeId": "L753", + "platformId": "U1384Z4", + "id": "899be33a-2591-47d5-bdb8-6c66871aa14e" + }, + { + "routeId": "L452", + "platformId": "U1384Z6", + "id": "7dee6f6f-9ec6-4494-ab49-52374ecdc173" + }, + { + "routeId": "L553", + "platformId": "U1384Z6", + "id": "db827e4f-82c0-489b-969c-7b415dd79fe5" + }, + { + "routeId": "L791", + "platformId": "U1384Z7", + "id": "2fefc97e-4826-43cc-b465-768a8d33a2a3" + }, + { + "routeId": "L759", + "platformId": "U1384Z8", + "id": "4bf58d00-43ec-4f2c-a90f-ae4048dc02dc" + }, + { + "routeId": "L754", + "platformId": "U1384Z8", + "id": "00f0dfc4-9b8e-486e-96c0-e382d9788f6a" + }, + { + "routeId": "L798", + "platformId": "U1384Z9", + "id": "0f8767bd-1429-4888-8f93-f9b5d07dc1b6" + }, + { + "routeId": "L438", + "platformId": "U1384Z9", + "id": "35e0ccc6-d118-4910-b34e-f28e82b589d3" + }, + { + "routeId": "L228", + "platformId": "U1385Z1", + "id": "3fbd34b1-0491-44bb-9287-7c7d06da7d68" + }, + { + "routeId": "L325", + "platformId": "U1385Z1", + "id": "c4fd0b60-0a6d-4440-9547-c6581c91c893" + }, + { + "routeId": "L228", + "platformId": "U1385Z2", + "id": "533dc0a3-9ae5-4f98-8606-70f6dbb652df" + }, + { + "routeId": "L325", + "platformId": "U1385Z2", + "id": "5011b874-97b1-4911-a4a6-fd46e38f33ce" + }, + { + "routeId": "L365", + "platformId": "U1386Z1", + "id": "bf199d81-2953-4aea-afc0-cfbcc0974d10" + }, + { + "routeId": "L386", + "platformId": "U1386Z1", + "id": "ed5995cf-e541-4fb9-80f8-fee7447c1a8b" + }, + { + "routeId": "L365", + "platformId": "U1386Z2", + "id": "a8b8ad5f-db1f-4c33-8e07-514441a69685" + }, + { + "routeId": "L155", + "platformId": "U1387Z1", + "id": "a0ccee6d-d606-4686-a287-3ecb25bcadca" + }, + { + "routeId": "L228", + "platformId": "U1387Z1", + "id": "5a0f0f72-9034-41d0-807e-5a7f778d0b3e" + }, + { + "routeId": "L12", + "platformId": "U138Z1", + "id": "9924d8b8-34ba-469e-8634-a71923f38f8e" + }, + { + "routeId": "L15", + "platformId": "U138Z1", + "id": "52823621-4832-43d0-912a-6063ea11d65e" + }, + { + "routeId": "L20", + "platformId": "U138Z1", + "id": "7c357a7c-4591-4527-a1e8-4c7a4875e950" + }, + { + "routeId": "L22", + "platformId": "U138Z1", + "id": "ec3ec320-e8d2-4638-9d4b-21b140b04b79" + }, + { + "routeId": "L23", + "platformId": "U138Z1", + "id": "8c8bd142-683b-4afe-9f31-93441a7be50a" + }, + { + "routeId": "L97", + "platformId": "U138Z1", + "id": "1383a7c2-2884-4513-bbac-ca1d03261bf2" + }, + { + "routeId": "L12", + "platformId": "U138Z2", + "id": "ea8d196f-8145-4994-b6e0-9df19d7de7b9" + }, + { + "routeId": "L15", + "platformId": "U138Z2", + "id": "de68f8b4-6098-4f0a-9bb9-17d4a27dd0b9" + }, + { + "routeId": "L20", + "platformId": "U138Z2", + "id": "5912942c-04f5-472e-a7d9-5428b45cd37a" + }, + { + "routeId": "L22", + "platformId": "U138Z2", + "id": "d1592fd7-e25a-4d45-b11c-4783d4291c58" + }, + { + "routeId": "L23", + "platformId": "U138Z2", + "id": "813d30d2-6132-441e-805a-b2a9effbd9fa" + }, + { + "routeId": "L97", + "platformId": "U138Z2", + "id": "0127ac9b-bf16-41ba-a8ce-325bea004aaa" + }, + { + "routeId": "L163", + "platformId": "U1390Z1", + "id": "b9dc5333-bc5b-4d98-b19f-0488365960c7" + }, + { + "routeId": "L204", + "platformId": "U1390Z1", + "id": "a401e0e0-1f6f-4852-9512-c3bd0edb2bb7" + }, + { + "routeId": "L163", + "platformId": "U1390Z2", + "id": "9b229045-0963-4902-a608-d612f6b5e831" + }, + { + "routeId": "L204", + "platformId": "U1390Z2", + "id": "21157e73-4455-4551-b095-906fb7b3584a" + }, + { + "routeId": "L337", + "platformId": "U1391Z1", + "id": "8dca1f4e-d540-4692-a23e-8110eb092982" + }, + { + "routeId": "L158", + "platformId": "U1392Z1", + "id": "19cd6e33-4331-455e-9253-754c31f90330" + }, + { + "routeId": "L166", + "platformId": "U1392Z1", + "id": "c1cb2602-69f3-45e2-ace4-7bbb7116c19e" + }, + { + "routeId": "L158", + "platformId": "U1392Z2", + "id": "72e4db19-edb6-4ba3-9322-db5dfb5d6411" + }, + { + "routeId": "L166", + "platformId": "U1392Z2", + "id": "677c1ee9-94fe-4656-92f5-7feb549d73c7" + }, + { + "routeId": "L283", + "platformId": "U1393Z1", + "id": "c6e2d696-8c14-4a72-9c34-9d5fe636cdc1" + }, + { + "routeId": "L166", + "platformId": "U1394Z1", + "id": "14ae607d-10ed-4724-b87d-9c8734688ded" + }, + { + "routeId": "L166", + "platformId": "U1394Z2", + "id": "cc25ed0b-419c-44f5-86de-05b5ca5d5b15" + }, + { + "routeId": "L166", + "platformId": "U1395Z1", + "id": "90745122-3432-4772-b5b9-98a63f765f44" + }, + { + "routeId": "L166", + "platformId": "U1395Z2", + "id": "a2a5192e-7ecb-479b-af80-34e8ff801b42" + }, + { + "routeId": "L166", + "platformId": "U1396Z1", + "id": "54977c0d-c41e-4489-9e40-7ec8dd2ec3da" + }, + { + "routeId": "L166", + "platformId": "U1396Z2", + "id": "9e26985d-9899-4bdc-a739-187312271f35" + }, + { + "routeId": "L166", + "platformId": "U1397Z1", + "id": "4a112f09-bf5a-4994-b9cb-c86911cf8316" + }, + { + "routeId": "L166", + "platformId": "U1397Z2", + "id": "b77d4399-e857-45b7-bdc4-21e4adc8442f" + }, + { + "routeId": "L1", + "platformId": "U139Z1", + "id": "90847438-bad2-4b9b-8334-d88e2d8149e9" + }, + { + "routeId": "L17", + "platformId": "U139Z1", + "id": "ba7f0c9d-c856-4a43-8776-6e758bc43d26" + }, + { + "routeId": "L25", + "platformId": "U139Z1", + "id": "eec13c94-0bf7-4474-9211-2fba6fcb137a" + }, + { + "routeId": "L93", + "platformId": "U139Z1", + "id": "f4fe7f34-57c3-4957-8c37-122a39d8373b" + }, + { + "routeId": "L1", + "platformId": "U139Z2", + "id": "e6678955-076b-4da5-a942-fbf0f55bea69" + }, + { + "routeId": "L17", + "platformId": "U139Z2", + "id": "5c934822-901e-4e34-a4a4-4bc6abfccbbe" + }, + { + "routeId": "L25", + "platformId": "U139Z2", + "id": "eee57b56-3d5b-4b57-a6a1-d84fc65b8a99" + }, + { + "routeId": "L93", + "platformId": "U139Z2", + "id": "521882df-341d-4b9b-be18-81420b8a4ae7" + }, + { + "routeId": "L109", + "platformId": "U13Z1", + "id": "5daf570e-78ff-46d4-8ea5-2f4aa3015bb2" + }, + { + "routeId": "L177", + "platformId": "U13Z1", + "id": "1963a73b-92c7-44df-a51f-5151ea78413f" + }, + { + "routeId": "L183", + "platformId": "U13Z1", + "id": "03c5954b-a014-4419-91af-398e0198acad" + }, + { + "routeId": "L195", + "platformId": "U13Z1", + "id": "182abdf2-12ea-419c-b0a7-ea69cded9161" + }, + { + "routeId": "L903", + "platformId": "U13Z1", + "id": "9388fd59-bc72-45e3-923d-ee25d03f4928" + }, + { + "routeId": "L109", + "platformId": "U13Z2", + "id": "20fe17a7-3255-4762-9131-e16e669dc42c" + }, + { + "routeId": "L177", + "platformId": "U13Z2", + "id": "2ba756ae-9403-4140-8866-c7b0f145a73a" + }, + { + "routeId": "L183", + "platformId": "U13Z2", + "id": "a7b549fc-f904-49b4-8bb7-848cb5d1f202" + }, + { + "routeId": "L195", + "platformId": "U13Z2", + "id": "d10edb83-427c-4538-ab8c-c7f397666ac9" + }, + { + "routeId": "L903", + "platformId": "U13Z2", + "id": "081f32d1-ee22-47ed-b232-bdcdbda5fe6b" + }, + { + "routeId": "L399", + "platformId": "U1400Z1", + "id": "fba4e29c-2e4d-4c79-9b28-87867c9b41c5" + }, + { + "routeId": "L399", + "platformId": "U1400Z2", + "id": "f50aa8c5-4ae5-40f0-872a-aaa3101bdb33" + }, + { + "routeId": "L7", + "platformId": "U1401Z1", + "id": "0c33daea-e1e5-49b0-9761-dc6dc7708fa9" + }, + { + "routeId": "L8", + "platformId": "U1401Z1", + "id": "db56e46b-9676-48d4-829b-be1d5cbc31b6" + }, + { + "routeId": "L92", + "platformId": "U1401Z1", + "id": "fd967130-4160-45d8-8d68-7188181f2269" + }, + { + "routeId": "L7", + "platformId": "U1401Z2", + "id": "d6b42472-1d48-48ea-9ae1-e3babdcfadf8" + }, + { + "routeId": "L8", + "platformId": "U1401Z2", + "id": "807c95c9-769f-4f99-8781-65af13f0c734" + }, + { + "routeId": "L92", + "platformId": "U1401Z2", + "id": "db7fd2e5-867c-4342-8b59-65cdfb286e53" + }, + { + "routeId": "L118", + "platformId": "U1402Z1", + "id": "886956f9-fdab-43d2-b1f2-70c4d6026106" + }, + { + "routeId": "L124", + "platformId": "U1402Z1", + "id": "a47161ae-379c-49d8-a821-3c55b03eca3c" + }, + { + "routeId": "L170", + "platformId": "U1402Z1", + "id": "697907c6-c269-4f30-a8bf-6abcdfe7348d" + }, + { + "routeId": "L193", + "platformId": "U1402Z1", + "id": "82f5e502-ec68-4cb8-9eb5-9e2d2be67f65" + }, + { + "routeId": "L905", + "platformId": "U1402Z1", + "id": "fc04073c-1d10-4812-b580-34f5d85442c5" + }, + { + "routeId": "L910", + "platformId": "U1402Z1", + "id": "31bf026f-35df-4be9-a425-c255efef8e5c" + }, + { + "routeId": "L118", + "platformId": "U1402Z2", + "id": "56b6d25b-bca0-4d2d-928d-06ce029e42cc" + }, + { + "routeId": "L170", + "platformId": "U1402Z2", + "id": "122dd89f-10c5-4ef4-b89e-45a543647895" + }, + { + "routeId": "L193", + "platformId": "U1402Z2", + "id": "56a9def9-c020-4994-acf9-b9c8879d73d2" + }, + { + "routeId": "L905", + "platformId": "U1402Z2", + "id": "42bd5c88-6447-4bc6-9735-06a44c057962" + }, + { + "routeId": "L910", + "platformId": "U1402Z2", + "id": "43c1d091-6db5-4dfc-b8bb-bb1ca382e344" + }, + { + "routeId": "L956", + "platformId": "U1402Z2", + "id": "3cecf226-998b-4fdf-94eb-3991b565fda8" + }, + { + "routeId": "L960", + "platformId": "U1402Z2", + "id": "cc4fab2e-bacc-48db-9e8b-f72c3c67f1ec" + }, + { + "routeId": "L118", + "platformId": "U1403Z1", + "id": "0fad16df-1280-4d5d-8375-14bede3187ab" + }, + { + "routeId": "L118", + "platformId": "U1403Z2", + "id": "f4bd44f8-c7ca-487c-a7c5-acb424a933ce" + }, + { + "routeId": "L122", + "platformId": "U1404Z1", + "id": "e6059763-28f5-4f2e-b591-854cf1c7fc9b" + }, + { + "routeId": "L906", + "platformId": "U1404Z1", + "id": "dc6df2e3-c9c0-4919-9ed4-d1710c5eef1e" + }, + { + "routeId": "L363", + "platformId": "U1404Z1", + "id": "414ec99a-d486-48ae-a6d1-75cc956a6e9b" + }, + { + "routeId": "L122", + "platformId": "U1404Z2", + "id": "9a00d786-5480-4f63-80ec-c32f5843eb75" + }, + { + "routeId": "L906", + "platformId": "U1404Z2", + "id": "8e22628e-bd8c-423b-8388-0be56e8b08a4" + }, + { + "routeId": "L363", + "platformId": "U1404Z2", + "id": "dce79320-7614-4d79-8178-5c6b2c53f84b" + }, + { + "routeId": "L229", + "platformId": "U1405Z1", + "id": "1bb52103-4410-4b51-8324-4c195c07df1f" + }, + { + "routeId": "L209", + "platformId": "U1405Z1", + "id": "3bdcd3fe-bcd8-425a-930c-67d94ee07fd0" + }, + { + "routeId": "L903", + "platformId": "U1405Z1", + "id": "edffc7b3-e297-402d-b386-58ca11ea85d4" + }, + { + "routeId": "L366", + "platformId": "U1405Z1", + "id": "64000095-daab-48fd-aa32-678413532489" + }, + { + "routeId": "L229", + "platformId": "U1405Z2", + "id": "e7092832-be96-4e20-8cc6-5afdbcd8669e" + }, + { + "routeId": "L209", + "platformId": "U1405Z2", + "id": "cebfdb0e-ec3b-4295-a5d7-9a33f60eb2c0" + }, + { + "routeId": "L903", + "platformId": "U1405Z2", + "id": "abf8c157-f21c-4c9a-ab9e-6302a48cb5dd" + }, + { + "routeId": "L366", + "platformId": "U1405Z2", + "id": "18e66561-bbe1-4a58-8885-79b9619ae79e" + }, + { + "routeId": "L130", + "platformId": "U1406Z1", + "id": "4d353ea8-a6b4-477d-a9c5-cb54519135ab" + }, + { + "routeId": "L149", + "platformId": "U1407Z1", + "id": "6ab98ed4-937d-46a9-a7d5-b9c2f694aff8" + }, + { + "routeId": "L191", + "platformId": "U1407Z1", + "id": "61695f3b-a3cd-4a83-9cd4-6433e1954713" + }, + { + "routeId": "L910", + "platformId": "U1407Z1", + "id": "b75bba4d-5a5f-4263-9223-9415cc86cf3d" + }, + { + "routeId": "L149", + "platformId": "U1407Z2", + "id": "29339857-8791-485b-92b0-760ae83a69d4" + }, + { + "routeId": "L191", + "platformId": "U1407Z2", + "id": "6f4aecb4-472f-4969-8047-6c294ecce896" + }, + { + "routeId": "L910", + "platformId": "U1407Z2", + "id": "89b86420-143f-4e11-a585-302f1d2bdccb" + }, + { + "routeId": "L194", + "platformId": "U1408Z1", + "id": "f9cba3a6-098b-4185-af7e-71148021ab67" + }, + { + "routeId": "L194", + "platformId": "U1408Z2", + "id": "66e8afc8-072f-40cf-a61b-b8f9200feffa" + }, + { + "routeId": "L194", + "platformId": "U1409Z1", + "id": "f4d13a97-78fc-47a7-969a-5c5f2a05b3a2" + }, + { + "routeId": "L25", + "platformId": "U140Z1", + "id": "5ca21555-476c-4f03-8573-b0d91274bac8" + }, + { + "routeId": "L97", + "platformId": "U140Z1", + "id": "4dbd80af-5481-42ba-adcd-3ed2136afcd9" + }, + { + "routeId": "L25", + "platformId": "U140Z2", + "id": "4b079be3-9422-4ceb-92a5-379d3283ab16" + }, + { + "routeId": "L97", + "platformId": "U140Z2", + "id": "01fe200d-c018-4f94-b027-a63b6b049897" + }, + { + "routeId": "L23", + "platformId": "U140Z3", + "id": "ad63fcdb-3000-4168-977a-beff30199938" + }, + { + "routeId": "L143", + "platformId": "U140Z5", + "id": "d0f444dd-554d-4b24-bde2-041b806c04fb" + }, + { + "routeId": "L143", + "platformId": "U140Z6", + "id": "406905ba-80d6-4f21-a137-23f138ac778a" + }, + { + "routeId": "L194", + "platformId": "U1410Z1", + "id": "fbcb046f-9ba1-4505-b528-3bfc851d0bca" + }, + { + "routeId": "L194", + "platformId": "U1410Z2", + "id": "f0bb338e-61ea-4e17-8fd0-3fd67512d4ac" + }, + { + "routeId": "L916", + "platformId": "U1413Z1", + "id": "12ce5cbc-a51f-4c6c-bc20-68a64b5b5eb4" + }, + { + "routeId": "L58", + "platformId": "U1413Z1", + "id": "5b279bea-d280-4fdf-ba90-535d624078c3" + }, + { + "routeId": "L916", + "platformId": "U1413Z2", + "id": "e9b41378-d179-405f-95e5-374afba1a517" + }, + { + "routeId": "L58", + "platformId": "U1413Z2", + "id": "ee012655-c1c2-4951-88c6-ff405b22780e" + }, + { + "routeId": "L201", + "platformId": "U1414Z1", + "id": "898e18fd-9649-4e48-b393-fd9d5f4d89b7" + }, + { + "routeId": "L953", + "platformId": "U1414Z1", + "id": "ec73acbc-29da-4f81-870d-b3679d655ab6" + }, + { + "routeId": "L201", + "platformId": "U1414Z2", + "id": "bcf53fc2-d39a-4b8c-ba86-71901c9313ab" + }, + { + "routeId": "L953", + "platformId": "U1414Z2", + "id": "381724b9-1b4e-495b-8cc9-52ee7a350089" + }, + { + "routeId": "L953", + "platformId": "U1415Z1", + "id": "f729cfc6-d473-42c2-b5e5-edc906de68ac" + }, + { + "routeId": "L953", + "platformId": "U1415Z2", + "id": "418537b7-709c-46e6-af63-aeeb2bd57dc9" + }, + { + "routeId": "L491", + "platformId": "U1416Z1", + "id": "94489793-53cb-4a27-b64c-3b4ab185f2e1" + }, + { + "routeId": "L435", + "platformId": "U1416Z2", + "id": "5b17e72b-e44d-4a0a-b57e-747ce00561c3" + }, + { + "routeId": "L662", + "platformId": "U1416Z2", + "id": "133149fe-d047-436d-ae28-7a24e2b427d2" + }, + { + "routeId": "L491", + "platformId": "U1416Z3", + "id": "ad59359f-03ae-4d8f-8589-8cb277299532" + }, + { + "routeId": "L491", + "platformId": "U1417Z1", + "id": "5b99441d-2a6f-4e7f-881d-a08bf1603a0f" + }, + { + "routeId": "L491", + "platformId": "U1417Z2", + "id": "20d1c4db-f7f8-46db-90f2-cb655f530a3d" + }, + { + "routeId": "L435", + "platformId": "U1418Z1", + "id": "5b393deb-c6fa-4602-893c-31d828e9eef4" + }, + { + "routeId": "L435", + "platformId": "U1418Z2", + "id": "33fd03c7-0eef-40dd-bf05-ce4eb0e6c20d" + }, + { + "routeId": "L435", + "platformId": "U1419Z1", + "id": "7af45c09-eff3-41ec-8791-a99b9b760956" + }, + { + "routeId": "L435", + "platformId": "U1419Z2", + "id": "65cc8c9e-314d-4ac0-a042-8caf362009f1" + }, + { + "routeId": "L170", + "platformId": "U141Z1", + "id": "8307695d-47bb-4f80-9bbd-30a0408d278b" + }, + { + "routeId": "L135", + "platformId": "U141Z1", + "id": "d4b2e0f0-5f76-4533-8347-a7a5537ad3be" + }, + { + "routeId": "L136", + "platformId": "U141Z1", + "id": "c461a606-f484-4cf0-80d3-baff5b79cdf9" + }, + { + "routeId": "L213", + "platformId": "U141Z1", + "id": "203ac9c4-a8e7-494b-8d79-7c5b3c66423a" + }, + { + "routeId": "L905", + "platformId": "U141Z1", + "id": "5f10119d-a3b9-47bf-954f-286da374396a" + }, + { + "routeId": "L913", + "platformId": "U141Z1", + "id": "6eda6cc5-c375-4d89-a7c2-c51086603d0b" + }, + { + "routeId": "L118", + "platformId": "U141Z2", + "id": "091f91de-38ba-446c-b6b9-d6550720b1a2" + }, + { + "routeId": "L135", + "platformId": "U141Z2", + "id": "9e2c9fee-554d-4149-815c-139c57c961a8" + }, + { + "routeId": "L118", + "platformId": "U141Z3", + "id": "0fe9b0d5-392a-4726-a0c1-379eb614d433" + }, + { + "routeId": "L135", + "platformId": "U141Z3", + "id": "dd085b24-55a0-4e82-ae39-e69d58b9269d" + }, + { + "routeId": "L435", + "platformId": "U1420Z1", + "id": "714db137-28a5-440f-ae6f-26e6876ff576" + }, + { + "routeId": "L435", + "platformId": "U1420Z2", + "id": "640bbad8-9880-4aae-bd18-e53d1395d629" + }, + { + "routeId": "L491", + "platformId": "U1421Z1", + "id": "4fe4c835-904b-4cc4-b384-c81cb021ee3b" + }, + { + "routeId": "L491", + "platformId": "U1421Z2", + "id": "8b01d8a4-72e6-44f1-9dba-966d92d2808a" + }, + { + "routeId": "L491", + "platformId": "U1422Z1", + "id": "e1547af6-a6d1-40f5-845c-71ca6532f9fc" + }, + { + "routeId": "L491", + "platformId": "U1422Z2", + "id": "ec265d89-c484-457f-b63f-db1281bf95f0" + }, + { + "routeId": "L491", + "platformId": "U1423Z1", + "id": "97f24e8b-5161-4ab3-a450-20fda196407d" + }, + { + "routeId": "L491", + "platformId": "U1423Z2", + "id": "6248bc6c-e6f7-4aff-b11a-c0d1d688289d" + }, + { + "routeId": "L423", + "platformId": "U1424Z1", + "id": "a1b9a8f1-af0f-4803-9e47-437f09bfc0c0" + }, + { + "routeId": "L423", + "platformId": "U1424Z2", + "id": "af693e73-76ba-4fa9-b978-c867fe4c0bb3" + }, + { + "routeId": "L435", + "platformId": "U1425Z1", + "id": "350a3d37-843c-4443-80c6-2f1b6052733d" + }, + { + "routeId": "L423", + "platformId": "U1425Z1", + "id": "55156b49-6517-46ee-bb64-9ab9449a3115" + }, + { + "routeId": "L435", + "platformId": "U1425Z2", + "id": "04a36390-1d7e-4f08-b2e5-92488face2e2" + }, + { + "routeId": "L423", + "platformId": "U1425Z2", + "id": "756acfdf-07b7-4dbb-9c67-3f1275811b78" + }, + { + "routeId": "L435", + "platformId": "U1426Z1", + "id": "0ee39322-d56b-450e-bc0a-f5fef1fb15ae" + }, + { + "routeId": "L423", + "platformId": "U1426Z1", + "id": "fd9f791e-bf70-4768-adf5-79ac53d968fd" + }, + { + "routeId": "L435", + "platformId": "U1426Z2", + "id": "fce01433-b93b-48a4-831e-d50ba8031af7" + }, + { + "routeId": "L423", + "platformId": "U1426Z2", + "id": "29aa4cf9-460d-4c17-af7a-8fe56f0cbff8" + }, + { + "routeId": "L435", + "platformId": "U1427Z1", + "id": "6e565376-f4dd-4c84-8c78-18840d8e7d43" + }, + { + "routeId": "L423", + "platformId": "U1427Z1", + "id": "765f1d02-4833-4056-81fd-9a46551b68c8" + }, + { + "routeId": "L435", + "platformId": "U1427Z2", + "id": "73a1e112-ffc9-4389-a33a-3c2e536cb942" + }, + { + "routeId": "L423", + "platformId": "U1427Z2", + "id": "c713fe94-7f3e-4f39-b0d3-f5df9c68f5d8" + }, + { + "routeId": "L435", + "platformId": "U1428Z1", + "id": "4a356e43-ca34-4eaa-9ba3-aef0849fe6e7" + }, + { + "routeId": "L423", + "platformId": "U1428Z1", + "id": "e24ad797-2335-4926-a48c-a2a1ff53f758" + }, + { + "routeId": "L435", + "platformId": "U1428Z2", + "id": "a4fd0ecb-7be1-4363-bf41-96b20323c809" + }, + { + "routeId": "L423", + "platformId": "U1428Z2", + "id": "17ff7ab4-02e0-4165-b196-e76a976870e0" + }, + { + "routeId": "L423", + "platformId": "U1429Z1", + "id": "de4e491b-7693-42ee-94a5-798581242d40" + }, + { + "routeId": "L423", + "platformId": "U1429Z2", + "id": "cd71ca87-bb09-4dd6-b0b7-eadc1f45362f" + }, + { + "routeId": "L5", + "platformId": "U142Z1", + "id": "2e4f2dfe-c979-405b-ba96-2390b66aa113" + }, + { + "routeId": "L9", + "platformId": "U142Z1", + "id": "002f3b81-a4fe-4c73-993f-9c616c60ace4" + }, + { + "routeId": "L15", + "platformId": "U142Z1", + "id": "bc597578-58ea-4059-9de2-c2121376e0a8" + }, + { + "routeId": "L26", + "platformId": "U142Z1", + "id": "58dbca9c-c56f-49fa-bc18-421a2c9546a9" + }, + { + "routeId": "L95", + "platformId": "U142Z1", + "id": "be3d0790-1d93-4e14-ab8f-bafbee015d91" + }, + { + "routeId": "L98", + "platformId": "U142Z1", + "id": "9a7b93e6-d086-4398-b85d-9c84e7870d65" + }, + { + "routeId": "L993", + "platformId": "U142Z101", + "id": "3655e89a-d65a-4f6c-89ac-c462bb0fceca" + }, + { + "routeId": "L993", + "platformId": "U142Z102", + "id": "4174f8af-c508-4b5c-9c01-2c1ca66d7a4b" + }, + { + "routeId": "L5", + "platformId": "U142Z2", + "id": "67a728a0-83c8-4fe1-bf53-8baebc6c9645" + }, + { + "routeId": "L9", + "platformId": "U142Z2", + "id": "41922065-e1d2-46b4-8015-b0181e029130" + }, + { + "routeId": "L15", + "platformId": "U142Z2", + "id": "ffc3cfa3-dca8-4f1d-9a8d-a91b5718a969" + }, + { + "routeId": "L26", + "platformId": "U142Z2", + "id": "3d24c0f9-bdb7-43b3-a676-160c434386ee" + }, + { + "routeId": "L95", + "platformId": "U142Z2", + "id": "e4a99307-b26b-464b-9165-05d7be6fde63" + }, + { + "routeId": "L98", + "platformId": "U142Z2", + "id": "58cbaa5b-1e68-4535-a471-0118d37f7508" + }, + { + "routeId": "L905", + "platformId": "U142Z3", + "id": "eb184753-75df-493b-84a4-36526b39bdc5" + }, + { + "routeId": "L907", + "platformId": "U142Z3", + "id": "bc1b41d3-c305-4cd8-a37d-cbb99452ebfa" + }, + { + "routeId": "L908", + "platformId": "U142Z3", + "id": "e1f9ada1-14ff-4e03-b1d4-f75c4e303364" + }, + { + "routeId": "L911", + "platformId": "U142Z3", + "id": "da59234c-b24a-4048-8ea1-63b81fcb16c0" + }, + { + "routeId": "L1217", + "platformId": "U142Z301", + "id": "c4caf5f6-bba8-4752-810f-7d397af015bd" + }, + { + "routeId": "L1219", + "platformId": "U142Z301", + "id": "b303566f-f6a8-472e-a542-16cdb93062aa" + }, + { + "routeId": "L1220", + "platformId": "U142Z301", + "id": "90425ccc-9e76-4271-8a82-10f5c5f331c5" + }, + { + "routeId": "L1218", + "platformId": "U142Z301", + "id": "eae1fe1e-8697-402b-8781-ffaccef4e515" + }, + { + "routeId": "L1210", + "platformId": "U142Z301", + "id": "25163e1c-2199-4abc-a198-6c99305553d8" + }, + { + "routeId": "L1209", + "platformId": "U142Z301", + "id": "58c1b839-2795-44c0-90ca-c0408740af83" + }, + { + "routeId": "L1221", + "platformId": "U142Z301", + "id": "576dbc29-e684-4c95-aa8e-aeb761f1d073" + }, + { + "routeId": "L1226", + "platformId": "U142Z301", + "id": "29c5dfc7-8585-4b44-94bb-34391d622c4c" + }, + { + "routeId": "L1249", + "platformId": "U142Z301", + "id": "0fd04a31-11c1-49f3-b2cb-8e6310243c4c" + }, + { + "routeId": "L1309", + "platformId": "U142Z301", + "id": "a7474e00-719e-4d9b-8716-0a2e75189851" + }, + { + "routeId": "L1302", + "platformId": "U142Z301", + "id": "6e0d85b8-bdf9-4d04-9b11-0542f3a90d0f" + }, + { + "routeId": "L1307", + "platformId": "U142Z301", + "id": "9fb6ab0d-60db-45c3-8242-d3633c748e7c" + }, + { + "routeId": "L1308", + "platformId": "U142Z301", + "id": "0a7c208d-72b6-4d06-a388-a39d0eaad01a" + }, + { + "routeId": "L1301", + "platformId": "U142Z301", + "id": "3cedd629-07b1-4071-950c-ee958cf5fa7f" + }, + { + "routeId": "L1322", + "platformId": "U142Z301", + "id": "64f04f32-a9e2-41fc-a4c3-19cf0bb52e58" + }, + { + "routeId": "L1303", + "platformId": "U142Z301", + "id": "8da67dd5-12e4-4232-a5cb-e53641449bc9" + }, + { + "routeId": "L1304", + "platformId": "U142Z301", + "id": "930d34bd-15eb-4c45-bfe8-3653ad103e5b" + }, + { + "routeId": "L1388", + "platformId": "U142Z301", + "id": "9553b8f7-811b-444e-b8eb-d9e38080ab39" + }, + { + "routeId": "L1365", + "platformId": "U142Z301", + "id": "85316544-84bc-468e-95d2-c94992d2c598" + }, + { + "routeId": "L290", + "platformId": "U142Z4", + "id": "394c8207-fd4c-4bdf-b6ff-be12ca4c253b" + }, + { + "routeId": "L905", + "platformId": "U142Z4", + "id": "b42551e0-9347-47cc-bdaf-94baa5d154a7" + }, + { + "routeId": "L907", + "platformId": "U142Z4", + "id": "bd07f934-8a4e-4cc0-bfeb-77389e1b2ffd" + }, + { + "routeId": "L908", + "platformId": "U142Z4", + "id": "5f511834-67c4-4226-895f-1e035ff9b2e2" + }, + { + "routeId": "L911", + "platformId": "U142Z4", + "id": "82417282-e0fa-4f3b-bde7-ffabb5efeb94" + }, + { + "routeId": "L290", + "platformId": "U142Z5", + "id": "5f5b0120-8a09-46f0-8b70-a45b29645701" + }, + { + "routeId": "L398", + "platformId": "U1430Z1", + "id": "3acb8983-4c07-43bd-a316-508502971e6c" + }, + { + "routeId": "L398", + "platformId": "U1430Z2", + "id": "e341f993-8737-468c-9109-a9d31e64dd19" + }, + { + "routeId": "L661", + "platformId": "U1430Z3", + "id": "c8479335-72cc-47a4-b50f-b1dd3bb71600" + }, + { + "routeId": "L661", + "platformId": "U1430Z4", + "id": "0229abf8-c951-46b0-bce0-a08aa336b28e" + }, + { + "routeId": "L398", + "platformId": "U1431Z1", + "id": "910c93ec-c8ee-4b03-be8e-92d940ac3d71" + }, + { + "routeId": "L398", + "platformId": "U1431Z2", + "id": "a79f55e8-e649-4265-86a1-ee48f617e1b3" + }, + { + "routeId": "L398", + "platformId": "U1432Z1", + "id": "4f34cf6f-30ce-4f24-926e-b093da1e0345" + }, + { + "routeId": "L398", + "platformId": "U1432Z2", + "id": "f74590f2-d35b-4dde-824f-26d794607b29" + }, + { + "routeId": "L398", + "platformId": "U1433Z1", + "id": "61da6ef8-976e-410f-9553-3928194f7af7" + }, + { + "routeId": "L398", + "platformId": "U1433Z2", + "id": "8f81e34a-a121-4768-84d8-b5be3790915f" + }, + { + "routeId": "L398", + "platformId": "U1434Z1", + "id": "fd010247-42c6-447b-8070-c2c34596baed" + }, + { + "routeId": "L443", + "platformId": "U1434Z1", + "id": "eddf3715-ed0d-4573-93bf-1391ee81a5b4" + }, + { + "routeId": "L398", + "platformId": "U1434Z2", + "id": "cd8369aa-8399-4fb6-a76d-642a75f69350" + }, + { + "routeId": "L443", + "platformId": "U1434Z2", + "id": "f1602247-3d85-471b-9b5c-6a744d9cd86c" + }, + { + "routeId": "L443", + "platformId": "U1435Z1", + "id": "4da5763f-87e8-48b4-b598-c1225d553d6f" + }, + { + "routeId": "L443", + "platformId": "U1437Z1", + "id": "889819b7-60a0-4e7d-aed1-5ce9c7e0aeb7" + }, + { + "routeId": "L443", + "platformId": "U1437Z2", + "id": "5a8f1d2a-26d6-4448-97ea-de59b08bd601" + }, + { + "routeId": "L443", + "platformId": "U1438Z1", + "id": "4e377a45-4d4e-4fbd-a383-863e4a6b3c6e" + }, + { + "routeId": "L443", + "platformId": "U1438Z2", + "id": "2fee83f0-955f-487b-9275-a7523d092c62" + }, + { + "routeId": "L443", + "platformId": "U1439Z1", + "id": "1d56b6ae-bacc-47f7-a8df-241bff044a61" + }, + { + "routeId": "L443", + "platformId": "U1439Z2", + "id": "61cba0a9-b59b-4b50-9926-e5e249c90241" + }, + { + "routeId": "L188", + "platformId": "U143Z1", + "id": "a65cb38a-7de3-4707-9f9d-35f4d47cce76" + }, + { + "routeId": "L195", + "platformId": "U143Z1", + "id": "4451097c-e5a3-4af2-b10e-1025c96b4e3c" + }, + { + "routeId": "L188", + "platformId": "U143Z2", + "id": "68173fc4-a535-4d32-bffd-b8b63c068200" + }, + { + "routeId": "L195", + "platformId": "U143Z2", + "id": "45dbe64c-8360-4df5-9cbe-c73a49b35bde" + }, + { + "routeId": "L443", + "platformId": "U1440Z1", + "id": "7f98bba9-6eb5-4e07-afc2-6e957f6bdef0" + }, + { + "routeId": "L443", + "platformId": "U1440Z2", + "id": "6fa67bf6-639c-48fe-99ba-fca3da278354" + }, + { + "routeId": "L443", + "platformId": "U1441Z1", + "id": "d1e47a39-8425-4bf5-b709-76a849e96641" + }, + { + "routeId": "L443", + "platformId": "U1441Z2", + "id": "a4392cf6-9f3d-4247-8ed1-56803846c27c" + }, + { + "routeId": "L1219", + "platformId": "U1442Z301", + "id": "e142271f-6cf6-4cf4-802b-854013beb3a4" + }, + { + "routeId": "L1218", + "platformId": "U1442Z301", + "id": "2ab63d9b-06d3-4793-bcff-7b63201a7079" + }, + { + "routeId": "L1209", + "platformId": "U1442Z301", + "id": "5428491b-8e8e-483d-b37b-cdfff5c0834e" + }, + { + "routeId": "L1301", + "platformId": "U1442Z301", + "id": "06942bd7-83d3-40a9-bf8b-be17fa5a5e1c" + }, + { + "routeId": "L1311", + "platformId": "U1442Z301", + "id": "00b962fa-64f3-4ee2-bd47-4cbfa3f0f1b1" + }, + { + "routeId": "L7", + "platformId": "U144Z1", + "id": "d5b28f52-79f4-47d7-8bce-6b07d1c1fbce" + }, + { + "routeId": "L12", + "platformId": "U144Z1", + "id": "d75aa1b4-bceb-4e21-adb1-ccf821907d91" + }, + { + "routeId": "L92", + "platformId": "U144Z1", + "id": "7b46e6ee-167d-42b7-aede-a2a4ed133cb7" + }, + { + "routeId": "L94", + "platformId": "U144Z1", + "id": "a64cd400-b2b0-496f-862d-0873b5747af4" + }, + { + "routeId": "L7", + "platformId": "U144Z2", + "id": "96c65fb4-0924-44ea-9530-6c640eb0aa24" + }, + { + "routeId": "L12", + "platformId": "U144Z2", + "id": "6b94afcc-1f06-4ce3-b039-425b867151c8" + }, + { + "routeId": "L92", + "platformId": "U144Z2", + "id": "b9079c89-3b95-4b88-b913-377ab23e0a11" + }, + { + "routeId": "L94", + "platformId": "U144Z2", + "id": "a1a658e7-2e1a-472c-af41-732825a557a9" + }, + { + "routeId": "L8", + "platformId": "U144Z5", + "id": "15ab35bc-7944-426f-9304-530d68300658" + }, + { + "routeId": "L8", + "platformId": "U144Z6", + "id": "e830f6f6-c76e-44c0-bf51-f1db3af57c4b" + }, + { + "routeId": "L1219", + "platformId": "U1450Z301", + "id": "7efe954c-5bc8-43fb-b7dd-f816e69fb80b" + }, + { + "routeId": "L1218", + "platformId": "U1450Z301", + "id": "a65931b9-475b-488b-9c5c-774d0fa62029" + }, + { + "routeId": "L1210", + "platformId": "U1450Z301", + "id": "fa8ab25d-8c51-4195-8e97-423d912de565" + }, + { + "routeId": "L1209", + "platformId": "U1450Z301", + "id": "cfc792f8-f6d0-46f4-a45e-db167bf3dfca" + }, + { + "routeId": "L1301", + "platformId": "U1450Z301", + "id": "8a63c61a-568e-4bb6-ab55-3567297f21a0" + }, + { + "routeId": "L1312", + "platformId": "U1450Z301", + "id": "40e9f7a5-7fd6-489e-9be2-485705e3109b" + }, + { + "routeId": "L443", + "platformId": "U1451Z1", + "id": "d4071362-bb6e-49bc-9a73-dcc3f656482c" + }, + { + "routeId": "L443", + "platformId": "U1451Z2", + "id": "5ac070fc-5808-416d-8fca-4440314f1c8b" + }, + { + "routeId": "L661", + "platformId": "U1451Z3", + "id": "19f893f8-50a7-43ae-8b7a-f9f1375bc242" + }, + { + "routeId": "L443", + "platformId": "U1452Z1", + "id": "80c04ff3-4b42-434e-a31f-28a0e7ed25a1" + }, + { + "routeId": "L661", + "platformId": "U1452Z1", + "id": "c491305f-c541-4a40-adba-0495567a6c8e" + }, + { + "routeId": "L443", + "platformId": "U1452Z2", + "id": "e242503d-2cc4-44fc-ba8d-e09d96a8fb13" + }, + { + "routeId": "L661", + "platformId": "U1452Z2", + "id": "c1bdfa44-410e-4e89-a55e-27715dcd52d7" + }, + { + "routeId": "L443", + "platformId": "U1453Z1", + "id": "f2cecfe5-0868-4719-9475-2068c9970d74" + }, + { + "routeId": "L443", + "platformId": "U1453Z2", + "id": "de3e3b69-d665-43ad-99f2-314a7420f71c" + }, + { + "routeId": "L661", + "platformId": "U1453Z3", + "id": "b483467c-98e2-4f25-928f-440d98fa870c" + }, + { + "routeId": "L661", + "platformId": "U1453Z4", + "id": "e128063c-1d54-4fc3-b39a-23865cce8a1d" + }, + { + "routeId": "L443", + "platformId": "U1458Z1", + "id": "59e64f7f-6e7a-4bc2-bb6a-037864f72a14" + }, + { + "routeId": "L443", + "platformId": "U1458Z2", + "id": "7833043f-87e9-4c24-b28a-d92aaf06b476" + }, + { + "routeId": "L669", + "platformId": "U1459Z1", + "id": "9b611000-92ae-48cc-b369-53f3c49a8906" + }, + { + "routeId": "L669", + "platformId": "U1459Z2", + "id": "8d381a2f-1324-4c9e-8054-e512a3ee2597" + }, + { + "routeId": "L916", + "platformId": "U145Z1", + "id": "a5590a57-7fc2-4afa-9f3c-620796269fd8" + }, + { + "routeId": "L378", + "platformId": "U145Z1", + "id": "718dac59-5f0b-4c91-a38f-fd00567b0b7f" + }, + { + "routeId": "L302", + "platformId": "U145Z1", + "id": "f485ff2e-1c5e-4ad5-b392-38777e80402c" + }, + { + "routeId": "L375", + "platformId": "U145Z1", + "id": "da267edc-6fd3-4efc-aa1a-4753c4775c76" + }, + { + "routeId": "L916", + "platformId": "U145Z2", + "id": "1734867f-1ac2-43eb-bbe6-a209262f39a1" + }, + { + "routeId": "L378", + "platformId": "U145Z2", + "id": "f5cfd817-d2c3-4268-9b39-ef0e92fe9f86" + }, + { + "routeId": "L302", + "platformId": "U145Z2", + "id": "2c7e9bce-50ca-4a50-9345-fe65ca7c3f48" + }, + { + "routeId": "L375", + "platformId": "U145Z2", + "id": "23c339b1-cc79-4566-80f7-ecdab6588df9" + }, + { + "routeId": "L669", + "platformId": "U1460Z1", + "id": "ad911da1-817f-4802-86d5-ef390e64f97f" + }, + { + "routeId": "L669", + "platformId": "U1460Z2", + "id": "18d9e073-bb6b-4db0-9b72-3752059aedd3" + }, + { + "routeId": "L669", + "platformId": "U1462Z1", + "id": "32fc8354-25c6-424c-a63e-56470c428a17" + }, + { + "routeId": "L669", + "platformId": "U1463Z1", + "id": "fe46acea-5e9f-44f5-b8ce-0abe1fd7c1df" + }, + { + "routeId": "L669", + "platformId": "U1463Z2", + "id": "50f1cba3-9091-487d-aae6-14c8bf6a40eb" + }, + { + "routeId": "L669", + "platformId": "U1464Z1", + "id": "9b5a2a2c-5da1-4c71-8ffa-11c288c73b70" + }, + { + "routeId": "L669", + "platformId": "U1464Z2", + "id": "1629c550-0c90-4b45-a9cc-9b761ff3c12d" + }, + { + "routeId": "L669", + "platformId": "U1465Z1", + "id": "0e526333-64b3-472e-ba8e-955bde7785e8" + }, + { + "routeId": "L669", + "platformId": "U1465Z2", + "id": "373ea84b-b4f8-4c29-b3ba-7d1cf4432e24" + }, + { + "routeId": "L669", + "platformId": "U1466Z1", + "id": "5848f98c-7977-4930-a1e2-2c4d773eb31a" + }, + { + "routeId": "L669", + "platformId": "U1466Z2", + "id": "c95b37f0-729f-475c-9cb0-110299450adc" + }, + { + "routeId": "L1223", + "platformId": "U1466Z301", + "id": "df679232-cdd9-4580-b634-c02b687128d4" + }, + { + "routeId": "L1332", + "platformId": "U1466Z301", + "id": "8705bd67-ac4f-419e-8f0b-fb5511d7a19c" + }, + { + "routeId": "L669", + "platformId": "U1467Z1", + "id": "8e7aa6af-2ef9-4431-b63b-f2475191f52c" + }, + { + "routeId": "L669", + "platformId": "U1467Z2", + "id": "74e827db-ad69-4596-bb38-ae852b37faa7" + }, + { + "routeId": "L670", + "platformId": "U1468Z1", + "id": "6fb3d1eb-d24e-4986-a96f-50401fea8547" + }, + { + "routeId": "L670", + "platformId": "U1468Z2", + "id": "36e60b77-18c0-4295-9660-a07174e0a225" + }, + { + "routeId": "L120", + "platformId": "U146Z1", + "id": "0fa5f8d1-3eb4-4e10-94e1-9a54e71cf484" + }, + { + "routeId": "L120", + "platformId": "U146Z2", + "id": "343ce638-e75d-4e8d-8110-605bc179a03d" + }, + { + "routeId": "L1226", + "platformId": "U146Z301", + "id": "1d2b7d76-4b2a-4849-8bb8-4fe654d8178d" + }, + { + "routeId": "L1306", + "platformId": "U146Z301", + "id": "6e07c43d-68f3-4ed2-92be-b867c19802fe" + }, + { + "routeId": "L669", + "platformId": "U1470Z1", + "id": "5c4a44f6-a1a6-49e1-af06-9a83fbc5891c" + }, + { + "routeId": "L670", + "platformId": "U1470Z1", + "id": "dfe0f2e8-b799-4bee-a305-6b9dbe8ab0ca" + }, + { + "routeId": "L669", + "platformId": "U1470Z2", + "id": "9ebef5dc-6698-499e-bc43-cdc8988c5838" + }, + { + "routeId": "L670", + "platformId": "U1471Z1", + "id": "5de126d1-dc0c-4335-9ebf-10ca026bb1a6" + }, + { + "routeId": "L670", + "platformId": "U1471Z2", + "id": "b50b271e-92de-4af6-9138-f2e4c1fe7fb1" + }, + { + "routeId": "L669", + "platformId": "U1472Z1", + "id": "d5da0d44-ac4b-4777-84bc-d419c87919b1" + }, + { + "routeId": "L669", + "platformId": "U1472Z2", + "id": "c0169c01-d6e6-4c86-bb46-4d9e406e250e" + }, + { + "routeId": "L670", + "platformId": "U1473Z1", + "id": "7cc6b746-a8a3-4f72-a35d-a446dc7f678d" + }, + { + "routeId": "L669", + "platformId": "U1473Z1", + "id": "96feb663-e088-4fc4-a716-cb8441c17cf1" + }, + { + "routeId": "L381", + "platformId": "U1474Z1", + "id": "723dfef1-5d72-4262-8282-d645effbbbe3" + }, + { + "routeId": "L381", + "platformId": "U1474Z2", + "id": "69197eda-edef-4843-8013-1d4bcaf071f8" + }, + { + "routeId": "L381", + "platformId": "U1475Z1", + "id": "28dcc657-9435-4b21-a2f2-76a72dd5b8ed" + }, + { + "routeId": "L381", + "platformId": "U1475Z2", + "id": "b32850e5-30de-46c4-87d0-34e143096af6" + }, + { + "routeId": "L381", + "platformId": "U1476Z1", + "id": "5092d756-4e77-4b41-87f3-67757fb3dd2f" + }, + { + "routeId": "L381", + "platformId": "U1476Z2", + "id": "495b294c-8a11-42bb-a04b-89073d8433a6" + }, + { + "routeId": "L1022", + "platformId": "U1477Z301", + "id": "ad21ec1e-01e3-4a11-8522-e7df6428924b" + }, + { + "routeId": "L1226", + "platformId": "U1478Z301", + "id": "20270e99-5ac4-42f9-b58d-85d37042ab1c" + }, + { + "routeId": "L1306", + "platformId": "U1478Z301", + "id": "e3192760-f54c-4efe-8ae3-75efcad9b33e" + }, + { + "routeId": "L646", + "platformId": "U1479Z1", + "id": "ca1afd87-3df1-4fe8-b05f-7ac802d26415" + }, + { + "routeId": "L646", + "platformId": "U1479Z2", + "id": "fe5429c5-d005-40f7-9515-a16cfea79f5d" + }, + { + "routeId": "L120", + "platformId": "U147Z3", + "id": "68cf5423-5e7f-4453-ba7d-b2effb03c918" + }, + { + "routeId": "L120", + "platformId": "U147Z4", + "id": "6627ac8b-9e76-4e52-9d24-5fe5a7bc0537" + }, + { + "routeId": "L5", + "platformId": "U147Z5", + "id": "bda32fd1-dfb1-44e0-ad23-f1bf11fd9d61" + }, + { + "routeId": "L12", + "platformId": "U147Z5", + "id": "61a1d963-2606-40fd-8712-5bb8c7640dc9" + }, + { + "routeId": "L20", + "platformId": "U147Z5", + "id": "75318d48-524b-4128-82f3-30a50a09b476" + }, + { + "routeId": "L94", + "platformId": "U147Z5", + "id": "17bbc9a2-4072-4aed-b0a9-a9182fb46bb5" + }, + { + "routeId": "L5", + "platformId": "U147Z6", + "id": "083390ff-ea6e-4cdb-969c-9bd0c0744d4b" + }, + { + "routeId": "L12", + "platformId": "U147Z6", + "id": "150b0aaf-cf1e-47c8-8a10-11edce58e881" + }, + { + "routeId": "L20", + "platformId": "U147Z6", + "id": "f1ab7e4c-bfe8-4c72-b0d7-55d13cac888c" + }, + { + "routeId": "L94", + "platformId": "U147Z6", + "id": "93df6d34-d942-47b4-b240-5f1871520747" + }, + { + "routeId": "L128", + "platformId": "U147Z7", + "id": "5f3433f0-9271-491f-8e14-361e1a3917aa" + }, + { + "routeId": "L128", + "platformId": "U147Z8", + "id": "ec220cdb-3c4b-44fa-b315-a943b7776d73" + }, + { + "routeId": "L1365", + "platformId": "U1480Z301", + "id": "e6f3cfd9-0e27-4d41-a467-375101cd9240" + }, + { + "routeId": "L1365", + "platformId": "U1482Z301", + "id": "88f9063b-b03e-4060-9f87-ebfeb93c0af5" + }, + { + "routeId": "L1365", + "platformId": "U1483Z301", + "id": "167833d0-6b37-4e68-b10f-38731c01b027" + }, + { + "routeId": "L351", + "platformId": "U1484Z1", + "id": "3283e337-adef-4a7c-940d-e9b8bdb3a094" + }, + { + "routeId": "L351", + "platformId": "U1484Z2", + "id": "eb928e28-e103-4011-822e-c54ec331c42e" + }, + { + "routeId": "L434", + "platformId": "U1488Z1", + "id": "f2fb97bb-13ea-4746-a217-a61f0adb6ca1" + }, + { + "routeId": "L430", + "platformId": "U1488Z1", + "id": "ff94a274-0b35-47d5-990a-c96d06e50d86" + }, + { + "routeId": "L432", + "platformId": "U1488Z1", + "id": "0b0f728c-1dbd-42a7-8c93-fa099e0fe30c" + }, + { + "routeId": "L434", + "platformId": "U1488Z2", + "id": "f097d8d5-0f56-4d02-8bea-4b7fa93ff304" + }, + { + "routeId": "L430", + "platformId": "U1488Z2", + "id": "79f0b5b8-4580-4823-a8f5-38e25db099a4" + }, + { + "routeId": "L432", + "platformId": "U1488Z2", + "id": "4b7722a1-2d46-4e7b-b091-0628e8872550" + }, + { + "routeId": "L430", + "platformId": "U1489Z51", + "id": "4b9cca32-9a01-47da-8097-b8fee77b7def" + }, + { + "routeId": "L432", + "platformId": "U1489Z51", + "id": "53780a7a-ca4c-4864-907e-9cc10ed237cd" + }, + { + "routeId": "L430", + "platformId": "U1489Z52", + "id": "8e7e1e7b-c5f1-420e-8064-cfd8760c8e34" + }, + { + "routeId": "L432", + "platformId": "U1489Z52", + "id": "fc6048af-67ee-43da-bfed-dcaebe911865" + }, + { + "routeId": "L176", + "platformId": "U148Z1", + "id": "2d5f7ac2-c2c9-4900-afb9-05257f713c14" + }, + { + "routeId": "L910", + "platformId": "U148Z1", + "id": "8a2cb7bb-0c9e-446a-95df-0a42ae36b247" + }, + { + "routeId": "L176", + "platformId": "U148Z2", + "id": "51767c7e-6850-48c0-8272-13d769615f00" + }, + { + "routeId": "L910", + "platformId": "U148Z2", + "id": "b43f0151-ab27-4010-9af1-f17666e49e37" + }, + { + "routeId": "L430", + "platformId": "U1490Z1", + "id": "b959b0c7-255e-4f60-a399-0c506ea2fa2b" + }, + { + "routeId": "L432", + "platformId": "U1490Z1", + "id": "ab65cf37-b3a9-43cc-89a4-3bddfdc7a8b3" + }, + { + "routeId": "L442", + "platformId": "U1490Z1", + "id": "63cf4530-0a78-45e9-8d97-2ac8e90f84fb" + }, + { + "routeId": "L430", + "platformId": "U1490Z2", + "id": "f4258c4a-d64a-4339-bb14-1f971f8e64d1" + }, + { + "routeId": "L432", + "platformId": "U1490Z2", + "id": "110cc2a8-eca1-467f-9cec-897ef0316941" + }, + { + "routeId": "L442", + "platformId": "U1490Z2", + "id": "018bed2e-b79c-4dca-a85a-8364dc73b4fe" + }, + { + "routeId": "L434", + "platformId": "U1492Z1", + "id": "7513ffc0-7635-48f4-a3b7-ff5abf5d71ef" + }, + { + "routeId": "L430", + "platformId": "U1492Z1", + "id": "36c1b426-9858-4aa8-9355-55b56cf1b927" + }, + { + "routeId": "L432", + "platformId": "U1492Z1", + "id": "be251edb-53ea-4243-85b2-0288dbf92e4f" + }, + { + "routeId": "L434", + "platformId": "U1492Z2", + "id": "d0c42a28-f1b7-4ea4-aa36-1ddde8ad445f" + }, + { + "routeId": "L430", + "platformId": "U1492Z2", + "id": "174b69e6-fc7b-4f0f-b910-f6160d04a1d3" + }, + { + "routeId": "L432", + "platformId": "U1492Z2", + "id": "433b3675-b1d6-448d-a1dd-358a47dcaa20" + }, + { + "routeId": "L434", + "platformId": "U1493Z2", + "id": "bea5c623-1fca-411f-9938-1680d582b7e9" + }, + { + "routeId": "L430", + "platformId": "U1493Z2", + "id": "965c0bfb-ecca-40d6-8c1d-3a9c60a9e816" + }, + { + "routeId": "L432", + "platformId": "U1493Z2", + "id": "7bbc6f62-97bd-4364-ae27-9a508f7433a4" + }, + { + "routeId": "L434", + "platformId": "U1494Z1", + "id": "52363663-a488-41b2-b99c-8e6df8afffbf" + }, + { + "routeId": "L434", + "platformId": "U1494Z2", + "id": "dc55dc0e-cd24-47bd-87af-548b58985b59" + }, + { + "routeId": "L430", + "platformId": "U1495Z1", + "id": "096a1952-4942-46a2-b090-5d11f6c540c6" + }, + { + "routeId": "L432", + "platformId": "U1495Z1", + "id": "35f8a5da-51c7-47bf-8240-f8c86a5ef0da" + }, + { + "routeId": "L430", + "platformId": "U1495Z2", + "id": "a520ba64-a8eb-427a-b097-1bdd661a696b" + }, + { + "routeId": "L432", + "platformId": "U1495Z2", + "id": "ebe465e3-d674-4dfa-9fc6-0a82ba21f3c5" + }, + { + "routeId": "L434", + "platformId": "U1496Z1", + "id": "442280a6-a545-4ba8-b4b5-96fbab98ac28" + }, + { + "routeId": "L430", + "platformId": "U1496Z1", + "id": "5bc986fb-2684-4703-b1e4-fb414b930cdb" + }, + { + "routeId": "L432", + "platformId": "U1496Z1", + "id": "eacc3912-5e67-446d-9f83-54c35d3c8982" + }, + { + "routeId": "L434", + "platformId": "U1496Z2", + "id": "2f07d3fd-75c3-464f-bc83-ad7512ddea1e" + }, + { + "routeId": "L430", + "platformId": "U1496Z2", + "id": "0aaf80a7-6465-4884-acd0-9682c643db50" + }, + { + "routeId": "L432", + "platformId": "U1496Z2", + "id": "a119a894-826f-4290-95cf-06eaf3e3d276" + }, + { + "routeId": "L1322", + "platformId": "U1496Z301", + "id": "4a801a8c-7369-41a1-83f7-8b464805e52f" + }, + { + "routeId": "L398", + "platformId": "U1497Z1", + "id": "cbcbd766-ee73-4833-8ccd-751456ee8468" + }, + { + "routeId": "L398", + "platformId": "U1497Z2", + "id": "ed03eb86-2ea4-435c-bb04-639e7e37eb54" + }, + { + "routeId": "L398", + "platformId": "U1498Z1", + "id": "a256ff03-28cc-483a-9532-26b7b8bf06e3" + }, + { + "routeId": "L398", + "platformId": "U1498Z2", + "id": "8b07c5c5-30dc-441e-99c1-783b02c4ca78" + }, + { + "routeId": "L344", + "platformId": "U1499Z1", + "id": "d147b788-6625-483b-9c84-d91f158e8554" + }, + { + "routeId": "L344", + "platformId": "U1499Z2", + "id": "591e952f-f83c-4662-8fe6-f054fdf81944" + }, + { + "routeId": "L104", + "platformId": "U149Z1", + "id": "d019d264-06e1-4d79-8df1-6785389b6124" + }, + { + "routeId": "L104", + "platformId": "U149Z2", + "id": "872cc3ab-f4f7-4a2d-a21d-c9fc4feafb03" + }, + { + "routeId": "L129", + "platformId": "U14Z1", + "id": "d61b92c8-07b9-4fa7-8402-ce306bf8abca" + }, + { + "routeId": "L907", + "platformId": "U14Z1", + "id": "6e3f54eb-e779-4490-876a-06bf257d5514" + }, + { + "routeId": "L129", + "platformId": "U14Z2", + "id": "cc28bbd2-de0b-4199-96b2-652f9fdf0aa5" + }, + { + "routeId": "L907", + "platformId": "U14Z2", + "id": "b0337cb9-540e-4e80-b8c4-205861d2fb14" + }, + { + "routeId": "L318", + "platformId": "U14Z2", + "id": "6a59c812-77db-4e4b-8229-f9083ccbb98b" + }, + { + "routeId": "L344", + "platformId": "U1500Z1", + "id": "eef7d04b-85ce-45c1-b9bb-5994528a3c0d" + }, + { + "routeId": "L303", + "platformId": "U1500Z1", + "id": "872f932d-f0d6-41c7-90d4-0fe599910476" + }, + { + "routeId": "L344", + "platformId": "U1500Z2", + "id": "103240d3-cd6c-4026-a089-fdff30818c85" + }, + { + "routeId": "L303", + "platformId": "U1500Z2", + "id": "f7f59c53-3753-4af2-bd2e-7aebcb057dad" + }, + { + "routeId": "L333", + "platformId": "U1501Z1", + "id": "e28769e4-2741-41d0-9ea4-c9ed8400a565" + }, + { + "routeId": "L960", + "platformId": "U1501Z1", + "id": "eb97117a-05ac-454b-a01b-84c9cddca9bb" + }, + { + "routeId": "L333", + "platformId": "U1501Z2", + "id": "7540cc5d-c796-4449-bd22-4d3ab49e72f6" + }, + { + "routeId": "L960", + "platformId": "U1501Z2", + "id": "2ba24daf-e8d1-4915-8f82-3a7b5a06ef12" + }, + { + "routeId": "L333", + "platformId": "U1502Z1", + "id": "ab9977a7-ebf0-4d74-bafa-a294b0d90ca9" + }, + { + "routeId": "L341", + "platformId": "U1502Z1", + "id": "b16e223d-b54a-4851-b969-1ac85c34357d" + }, + { + "routeId": "L333", + "platformId": "U1502Z2", + "id": "59b277bc-ff2e-4ceb-a3c4-cc5a8559a5d7" + }, + { + "routeId": "L341", + "platformId": "U1502Z2", + "id": "4328a562-f586-46a2-93b9-f58a4a1b317a" + }, + { + "routeId": "L960", + "platformId": "U1502Z2", + "id": "9b6a87a4-8a52-4201-8b8d-680e63008bc0" + }, + { + "routeId": "L331", + "platformId": "U1503Z1", + "id": "2208aaa6-7287-43cc-baeb-7897f508aa1b" + }, + { + "routeId": "L333", + "platformId": "U1503Z1", + "id": "b21ec7bc-f928-47e3-a5c7-2ae2f822b37e" + }, + { + "routeId": "L341", + "platformId": "U1503Z1", + "id": "d2d1e975-81be-4bfa-a8d7-6308d8dcbc63" + }, + { + "routeId": "L960", + "platformId": "U1503Z1", + "id": "956d1545-5519-4dd4-bbb6-583581e27cab" + }, + { + "routeId": "L331", + "platformId": "U1503Z2", + "id": "8631d7da-46ec-4ee0-9de2-c91e62cee53b" + }, + { + "routeId": "L333", + "platformId": "U1503Z2", + "id": "5e3a7248-b2f2-485c-af6a-4b8910fbf2c7" + }, + { + "routeId": "L341", + "platformId": "U1503Z2", + "id": "a0c712f5-6d0c-4686-91a0-94fdf3658dca" + }, + { + "routeId": "L333", + "platformId": "U1504Z1", + "id": "dc14caaf-6fd6-4ee8-844e-a7d69b1c33fa" + }, + { + "routeId": "L333", + "platformId": "U1504Z2", + "id": "7392ef4e-b0e8-4940-85c2-d49fc765fdec" + }, + { + "routeId": "L960", + "platformId": "U1504Z2", + "id": "900847d6-b091-4d0d-9d2f-452af5f6deb0" + }, + { + "routeId": "L331", + "platformId": "U1506Z1", + "id": "1be5f703-fef5-460a-8c44-5103701b057e" + }, + { + "routeId": "L333", + "platformId": "U1506Z1", + "id": "8687ef22-075d-4cfe-bea6-b7ac250e2d0c" + }, + { + "routeId": "L960", + "platformId": "U1506Z1", + "id": "9400729c-d131-4662-80ca-8d3e15af815b" + }, + { + "routeId": "L331", + "platformId": "U1506Z2", + "id": "042a8ab7-c5e9-4d05-a0f7-5561c9d3ff02" + }, + { + "routeId": "L333", + "platformId": "U1506Z2", + "id": "ae05349c-8530-423d-b9fd-fb6eaec7dea1" + }, + { + "routeId": "L331", + "platformId": "U1507Z1", + "id": "0680a564-4d20-49f3-90c8-11fc663b53c0" + }, + { + "routeId": "L331", + "platformId": "U1507Z2", + "id": "79959691-3967-4bd0-a237-22fa5826383e" + }, + { + "routeId": "L331", + "platformId": "U1508Z1", + "id": "3f341d62-660d-41e7-9ca6-2fc556b0bc73" + }, + { + "routeId": "L331", + "platformId": "U1508Z2", + "id": "5260b0ed-1d6b-4de0-9a7b-d9ce26d8f257" + }, + { + "routeId": "L331", + "platformId": "U1509Z1", + "id": "a46cd3aa-b4d3-45ec-aa48-308e1e8383b1" + }, + { + "routeId": "L167", + "platformId": "U150Z1", + "id": "2f37327a-501d-4152-9c96-2af3a442e121" + }, + { + "routeId": "L167", + "platformId": "U150Z2", + "id": "7d4cad3c-ecd2-4eb1-b2e6-c0f1c9e8f003" + }, + { + "routeId": "L331", + "platformId": "U1510Z1", + "id": "ce0110ac-9bb9-4b13-bdeb-c6713359cbb7" + }, + { + "routeId": "L331", + "platformId": "U1510Z2", + "id": "6b844758-139d-45fe-9b9c-a202a0d728c9" + }, + { + "routeId": "L331", + "platformId": "U1511Z1", + "id": "e78fc886-4372-4da6-b1a2-0c456583a0e2" + }, + { + "routeId": "L331", + "platformId": "U1511Z2", + "id": "5d6ccf78-676b-429e-9a7a-2adf1a6251c6" + }, + { + "routeId": "L333", + "platformId": "U1512Z1", + "id": "f7efcaff-edc6-40fb-bedf-17d0bbc2cdcf" + }, + { + "routeId": "L960", + "platformId": "U1512Z1", + "id": "4a45bcdc-c661-4001-bcb3-e22757f16c3d" + }, + { + "routeId": "L333", + "platformId": "U1512Z2", + "id": "c13d832a-4a3b-4ac7-a253-7a12a0e4f532" + }, + { + "routeId": "L333", + "platformId": "U1513Z1", + "id": "cba79963-497c-45c1-b59a-9d7786055755" + }, + { + "routeId": "L960", + "platformId": "U1513Z1", + "id": "87555617-3375-48ea-bc66-ce1f431f0aa4" + }, + { + "routeId": "L333", + "platformId": "U1513Z2", + "id": "55d52285-148e-4f0c-b755-beda07e7a2a8" + }, + { + "routeId": "L333", + "platformId": "U1514Z1", + "id": "cdab1df0-78a4-41df-8db0-8b12427a6cfa" + }, + { + "routeId": "L960", + "platformId": "U1514Z1", + "id": "57e44f4f-87d3-4ba1-9fa8-74f1094cd31f" + }, + { + "routeId": "L333", + "platformId": "U1514Z2", + "id": "b91b5bba-89db-4616-9796-1ece74ce1482" + }, + { + "routeId": "L333", + "platformId": "U1515Z1", + "id": "c1124b8b-ff3d-434a-9a2c-8659d3549c9f" + }, + { + "routeId": "L960", + "platformId": "U1515Z1", + "id": "10cf96c2-4bd2-4167-bdfe-0733d6231165" + }, + { + "routeId": "L333", + "platformId": "U1515Z2", + "id": "eebe7fd6-cfc6-47f8-af6d-84156f581778" + }, + { + "routeId": "L333", + "platformId": "U1516Z1", + "id": "399c7f96-cd86-4dd6-adf5-f9bfaf71ec28" + }, + { + "routeId": "L960", + "platformId": "U1516Z1", + "id": "6ff39d18-a41d-4b7f-a5f7-c89459d9fe62" + }, + { + "routeId": "L333", + "platformId": "U1516Z2", + "id": "131e1ff5-2d49-4207-aa73-b8a3378c0071" + }, + { + "routeId": "L333", + "platformId": "U1517Z1", + "id": "67c3c01d-20e4-423d-86b4-7d0074dd4256" + }, + { + "routeId": "L960", + "platformId": "U1517Z1", + "id": "9016340d-d664-4989-8857-03b112450f1f" + }, + { + "routeId": "L333", + "platformId": "U1517Z2", + "id": "5f684982-9602-4fca-b7b7-fa8ebdd76f28" + }, + { + "routeId": "L125", + "platformId": "U151Z1", + "id": "dee20929-7c4b-44fd-ba2c-58f43a3503a2" + }, + { + "routeId": "L126", + "platformId": "U151Z1", + "id": "a4c9470b-425d-46cb-b793-5a2cfe693e27" + }, + { + "routeId": "L170", + "platformId": "U151Z1", + "id": "8c956d09-ec82-42bd-93a8-604bbb728508" + }, + { + "routeId": "L136", + "platformId": "U151Z1", + "id": "2b688cd9-6684-4c99-b64e-53ec23c31254" + }, + { + "routeId": "L154", + "platformId": "U151Z1", + "id": "6edeca78-9848-4e3f-8267-ddcc77c6cd2e" + }, + { + "routeId": "L175", + "platformId": "U151Z1", + "id": "158ee39f-f1ff-49ea-819b-ed64debed60e" + }, + { + "routeId": "L183", + "platformId": "U151Z1", + "id": "6a65dd82-497c-46ec-bd42-ddd3fea1ab8f" + }, + { + "routeId": "L213", + "platformId": "U151Z1", + "id": "5938582b-bb43-42c7-9455-db1f1652c7e3" + }, + { + "routeId": "L905", + "platformId": "U151Z1", + "id": "eff8441c-cf47-4956-9ce7-9a56daafb08b" + }, + { + "routeId": "L911", + "platformId": "U151Z1", + "id": "3913ed5e-873e-4a0e-9f6c-bf89b773c3d5" + }, + { + "routeId": "L227", + "platformId": "U151Z1", + "id": "ec6440c6-5d74-4fba-bfb9-445a02ebde75" + }, + { + "routeId": "L226", + "platformId": "U151Z1", + "id": "0517db3d-29b2-4859-bf82-ece3c74ea435" + }, + { + "routeId": "L240", + "platformId": "U151Z1", + "id": "4cbe3c41-5888-40c7-a2fc-ee0d07a4a980" + }, + { + "routeId": "L387", + "platformId": "U151Z1", + "id": "f64ef16a-ffef-4def-a940-2e0f4ec9080a" + }, + { + "routeId": "L381", + "platformId": "U151Z1", + "id": "f364d606-203d-499b-b5b2-0db87011899a" + }, + { + "routeId": "L382", + "platformId": "U151Z1", + "id": "24387f08-3db4-4788-a79f-5a4ab7e32de9" + }, + { + "routeId": "L383", + "platformId": "U151Z1", + "id": "c18fade5-d0b5-4548-8f2c-b8f2d717a36c" + }, + { + "routeId": "L959", + "platformId": "U151Z1", + "id": "6dea5154-37ba-4f6e-a617-96ea415208d8" + }, + { + "routeId": "L125", + "platformId": "U151Z2", + "id": "8f6b32e0-5223-4b33-b7dd-82d24dfd3dd1" + }, + { + "routeId": "L126", + "platformId": "U151Z2", + "id": "2b8b7364-dad1-4b91-b889-e53f54348c0f" + }, + { + "routeId": "L170", + "platformId": "U151Z2", + "id": "41821739-e0aa-41bf-b62b-dd78c4abb1d0" + }, + { + "routeId": "L136", + "platformId": "U151Z2", + "id": "53b2f135-4901-47c9-ac6e-7ae33e62df0f" + }, + { + "routeId": "L154", + "platformId": "U151Z2", + "id": "8028f028-80ca-42d9-ade8-10c1a50f2237" + }, + { + "routeId": "L175", + "platformId": "U151Z2", + "id": "87ad3698-3488-4341-906a-a9e18f7de76a" + }, + { + "routeId": "L183", + "platformId": "U151Z2", + "id": "f9e73f90-5bac-4dd5-a29a-2b9fd43d858e" + }, + { + "routeId": "L213", + "platformId": "U151Z2", + "id": "85483f19-dc12-426e-87c9-383c79ac505b" + }, + { + "routeId": "L905", + "platformId": "U151Z2", + "id": "ccca1ad2-19eb-4436-b093-a4f0b5bc67ae" + }, + { + "routeId": "L911", + "platformId": "U151Z2", + "id": "a42d7317-ebdf-46b7-b0a7-890e0637571d" + }, + { + "routeId": "L226", + "platformId": "U151Z2", + "id": "8ab63d57-1e08-40ef-9e16-9c92d61a4ee9" + }, + { + "routeId": "L227", + "platformId": "U151Z2", + "id": "06624ee8-dc40-4a3e-a448-44b162604829" + }, + { + "routeId": "L240", + "platformId": "U151Z2", + "id": "3dc52e22-7b28-4c83-9515-40a5bd8e39e2" + }, + { + "routeId": "L381", + "platformId": "U151Z2", + "id": "0dbf9b9f-2fd8-4238-9697-134ad9476c65" + }, + { + "routeId": "L387", + "platformId": "U151Z2", + "id": "795ca767-e177-4721-864f-bda850281667" + }, + { + "routeId": "L382", + "platformId": "U151Z2", + "id": "722d912a-601e-472a-b48e-d31419699644" + }, + { + "routeId": "L383", + "platformId": "U151Z2", + "id": "a84cf1aa-253d-406b-829c-584752e1b31d" + }, + { + "routeId": "L959", + "platformId": "U151Z2", + "id": "4c97aed3-c9fa-4202-9974-0c320b552951" + }, + { + "routeId": "L445", + "platformId": "U1520Z1", + "id": "ddf7d4c8-0eca-49b4-9fbb-c9e4a813dd75" + }, + { + "routeId": "L445", + "platformId": "U1520Z2", + "id": "1a88728a-9b38-446a-8045-5995c4e65f9c" + }, + { + "routeId": "L445", + "platformId": "U1521Z1", + "id": "92be136c-ca6b-45ee-9605-6b5cb84ee76d" + }, + { + "routeId": "L445", + "platformId": "U1521Z2", + "id": "a6b06a87-dc20-43e2-b05f-523ddd57833e" + }, + { + "routeId": "L332", + "platformId": "U1522Z1", + "id": "5cff82c0-0328-4aa3-90b7-c233c3d93547" + }, + { + "routeId": "L956", + "platformId": "U1522Z1", + "id": "da436e5c-c56b-45b1-96a9-3be99bfd0813" + }, + { + "routeId": "L337", + "platformId": "U1522Z1", + "id": "f72c878d-6fe3-424c-a07e-eb98375d0b46" + }, + { + "routeId": "L335", + "platformId": "U1522Z1", + "id": "02b52bfc-4eb1-4027-b7eb-40b632046672" + }, + { + "routeId": "L339", + "platformId": "U1522Z1", + "id": "09512161-577e-4a81-8261-629b052459da" + }, + { + "routeId": "L332", + "platformId": "U1522Z2", + "id": "34ea366c-5def-46e4-bb33-54aad3a1c617" + }, + { + "routeId": "L956", + "platformId": "U1522Z2", + "id": "56d34715-2bba-4161-a543-29f040fad340" + }, + { + "routeId": "L337", + "platformId": "U1522Z2", + "id": "6e8e4f8e-7721-4315-a783-2153c3d3edeb" + }, + { + "routeId": "L335", + "platformId": "U1522Z2", + "id": "b7f03287-82be-483e-b2f3-325daa8a8b8b" + }, + { + "routeId": "L339", + "platformId": "U1522Z2", + "id": "f4af4c64-0ace-45d1-b108-70197e3f5ebc" + }, + { + "routeId": "L341", + "platformId": "U1523Z1", + "id": "1b124075-f4b1-4b1e-b831-91ba914c4f4a" + }, + { + "routeId": "L341", + "platformId": "U1523Z2", + "id": "c9ae32c4-778a-4433-aefa-d5cdc4124839" + }, + { + "routeId": "L341", + "platformId": "U1524Z1", + "id": "215a1113-b97c-447c-9e7f-ca2ffadfc528" + }, + { + "routeId": "L960", + "platformId": "U1524Z1", + "id": "68a06613-d0bf-40ca-9b8d-d19adfed3c57" + }, + { + "routeId": "L341", + "platformId": "U1524Z2", + "id": "87e95a1c-6def-44c6-80f1-37c536373cb9" + }, + { + "routeId": "L331", + "platformId": "U1525Z1", + "id": "4d0c1241-24ab-4f68-87b5-607a0115c80e" + }, + { + "routeId": "L341", + "platformId": "U1525Z1", + "id": "fad5843e-acd7-4473-8cd3-4f7bf3587632" + }, + { + "routeId": "L960", + "platformId": "U1525Z1", + "id": "d7efcad3-c2bd-4fb6-8559-394ea9af6b98" + }, + { + "routeId": "L331", + "platformId": "U1525Z2", + "id": "54bab811-9581-4b98-8d6e-c23603569cad" + }, + { + "routeId": "L341", + "platformId": "U1525Z2", + "id": "8cd92cee-4270-4106-b19e-e44fcbf5bf98" + }, + { + "routeId": "L331", + "platformId": "U1526Z1", + "id": "dccbbb2e-7eec-41e0-af82-ff8c7b6aaad8" + }, + { + "routeId": "L341", + "platformId": "U1526Z1", + "id": "e6062a54-e174-419a-b57c-ce027852a5ba" + }, + { + "routeId": "L960", + "platformId": "U1526Z1", + "id": "10d0ec2f-463c-44cd-ac1d-9701d3b52d70" + }, + { + "routeId": "L331", + "platformId": "U1526Z2", + "id": "c3a49c9b-9154-4ba5-a91f-35234d74e96f" + }, + { + "routeId": "L341", + "platformId": "U1526Z2", + "id": "4caf42f2-21a0-47ed-abe7-0ecce343f480" + }, + { + "routeId": "L331", + "platformId": "U1527Z1", + "id": "06e7879d-f414-432c-8665-fd5e9ca9310d" + }, + { + "routeId": "L341", + "platformId": "U1527Z1", + "id": "21460258-717f-4e5a-b725-c5e9ae2d494a" + }, + { + "routeId": "L960", + "platformId": "U1527Z1", + "id": "e84e7eac-200c-407f-8503-347d6bdcb386" + }, + { + "routeId": "L341", + "platformId": "U1528Z1", + "id": "94ee773c-6c86-4800-8a16-361960ed024c" + }, + { + "routeId": "L331", + "platformId": "U1528Z2", + "id": "7cd8fe5d-bfb2-4327-9695-ba759132e3bd" + }, + { + "routeId": "L341", + "platformId": "U1528Z2", + "id": "46b179ba-0619-4343-a3c1-a2ee111111bc" + }, + { + "routeId": "L341", + "platformId": "U1529Z1", + "id": "0d0f1aa8-8629-4bce-b2b8-65ce4ce45f6d" + }, + { + "routeId": "L341", + "platformId": "U1529Z2", + "id": "f82e7073-c103-4fab-a0f0-59a6b9f8294f" + }, + { + "routeId": "L11", + "platformId": "U152Z1", + "id": "e3ca5593-c91c-48ca-b146-3815619fb639" + }, + { + "routeId": "L14", + "platformId": "U152Z1", + "id": "3758968b-cf1e-4c9a-a6c9-75067ecfbffd" + }, + { + "routeId": "L96", + "platformId": "U152Z1", + "id": "5cb2fd3f-d9ec-4e0d-a6f0-183e6b940af0" + }, + { + "routeId": "L11", + "platformId": "U152Z2", + "id": "818c3b7c-ddb3-4609-b80c-c2f92b9176cc" + }, + { + "routeId": "L14", + "platformId": "U152Z2", + "id": "3f9c8f1c-b033-4227-add0-fb8f27cff623" + }, + { + "routeId": "L96", + "platformId": "U152Z2", + "id": "a6d40b80-ab0d-4696-8f32-35ba5402e763" + }, + { + "routeId": "L341", + "platformId": "U1530Z1", + "id": "f57da621-54d6-4cf6-bd31-86c7d7653ec1" + }, + { + "routeId": "L341", + "platformId": "U1530Z2", + "id": "7a20ff6b-1a97-4c3f-b251-15b947c46a15" + }, + { + "routeId": "L337", + "platformId": "U1531Z1", + "id": "0cb1a637-d26d-4102-b567-90b8f1ef9feb" + }, + { + "routeId": "L335", + "platformId": "U1531Z1", + "id": "c5f37f83-c04f-49bc-a5f4-bbfcf2cafefe" + }, + { + "routeId": "L339", + "platformId": "U1531Z1", + "id": "00d78353-9672-4667-a053-3cf6eaa0c3f9" + }, + { + "routeId": "L337", + "platformId": "U1531Z2", + "id": "d21323e9-fef3-4378-a863-06ecf2116e96" + }, + { + "routeId": "L335", + "platformId": "U1531Z2", + "id": "7c2e8c0c-e8e0-45f9-bbf6-b83ce7aadd59" + }, + { + "routeId": "L339", + "platformId": "U1531Z2", + "id": "3dc67119-0fbf-460e-8298-1b7670df428e" + }, + { + "routeId": "L337", + "platformId": "U1532Z1", + "id": "0f0d01b0-09d9-4c26-80c5-aa767a07bfd2" + }, + { + "routeId": "L335", + "platformId": "U1532Z1", + "id": "cc9ff46d-120d-40a8-ba92-8c8469e344df" + }, + { + "routeId": "L339", + "platformId": "U1532Z1", + "id": "5551c0b0-14ff-4b40-a824-fa33667342ce" + }, + { + "routeId": "L337", + "platformId": "U1532Z2", + "id": "068aec63-98ea-453d-bddb-40b72940d57a" + }, + { + "routeId": "L335", + "platformId": "U1532Z2", + "id": "394a9487-b96a-4eac-9845-88afbe4f99b8" + }, + { + "routeId": "L339", + "platformId": "U1532Z2", + "id": "444327b7-a535-48e3-82b5-d0bdfa35ea06" + }, + { + "routeId": "L335", + "platformId": "U1533Z1", + "id": "4bdbb5e8-53cb-4e84-82f2-a7068400e291" + }, + { + "routeId": "L337", + "platformId": "U1533Z2", + "id": "6c04fdf9-0259-47b7-8e83-83babe520edb" + }, + { + "routeId": "L335", + "platformId": "U1533Z2", + "id": "5ae6a485-215d-4073-9ab0-65885d82247e" + }, + { + "routeId": "L339", + "platformId": "U1533Z2", + "id": "aae4004b-fd57-4a48-a589-c62cbf38ebfa" + }, + { + "routeId": "L337", + "platformId": "U1533Z3", + "id": "97f6f846-d483-4979-89aa-2e91ce175a83" + }, + { + "routeId": "L339", + "platformId": "U1533Z3", + "id": "fa76ab20-0f90-442a-9fb6-02222f384e0e" + }, + { + "routeId": "L337", + "platformId": "U1534Z1", + "id": "75452b7e-6c22-4181-b993-cf4b46a8103d" + }, + { + "routeId": "L339", + "platformId": "U1534Z1", + "id": "10b3bb2d-6454-49ea-b7c1-c8e997ffe0cd" + }, + { + "routeId": "L337", + "platformId": "U1534Z2", + "id": "c39b1d19-bc90-4e5e-8dd8-410a46168e2f" + }, + { + "routeId": "L339", + "platformId": "U1534Z2", + "id": "fb027911-8ee9-40dd-9149-043e6e81cc6f" + }, + { + "routeId": "L337", + "platformId": "U1535Z1", + "id": "4a873edf-8ce0-4227-a5df-c70d7758b77f" + }, + { + "routeId": "L335", + "platformId": "U1535Z1", + "id": "33163acb-4519-44cd-b8d3-7fd71576bfbd" + }, + { + "routeId": "L339", + "platformId": "U1535Z1", + "id": "ef0b1026-ce6b-47cc-8af3-1f695a5a1831" + }, + { + "routeId": "L337", + "platformId": "U1535Z2", + "id": "853b89e2-a9be-4c06-b8e8-b5a4ec6a8cb5" + }, + { + "routeId": "L339", + "platformId": "U1535Z2", + "id": "c9f27f19-c7a9-40d7-b1d9-ad94f2378226" + }, + { + "routeId": "L335", + "platformId": "U1535Z3", + "id": "52b2927a-7677-4992-9c21-f726cffd118e" + }, + { + "routeId": "L335", + "platformId": "U1535Z4", + "id": "9d119adb-801b-4cdd-826c-6356ad6ee9da" + }, + { + "routeId": "L337", + "platformId": "U1536Z1", + "id": "982bf911-b747-4c33-9b8b-aacbdc572895" + }, + { + "routeId": "L335", + "platformId": "U1536Z1", + "id": "37252f7d-3441-48b1-82e3-33feadc178e5" + }, + { + "routeId": "L339", + "platformId": "U1536Z1", + "id": "febd7e6f-a2f9-442a-9f64-fed91a3efa7c" + }, + { + "routeId": "L337", + "platformId": "U1536Z2", + "id": "fd6d1a95-7058-43ca-a8b2-f648c4fe9f83" + }, + { + "routeId": "L335", + "platformId": "U1536Z2", + "id": "d3ed264f-f30b-41bd-9acf-aa41e1fc2019" + }, + { + "routeId": "L339", + "platformId": "U1536Z2", + "id": "23de6f17-8dbe-4894-b5b2-ef3e21918407" + }, + { + "routeId": "L461", + "platformId": "U1536Z3", + "id": "7af73246-83f1-4657-ae34-bba634acd1d6" + }, + { + "routeId": "L461", + "platformId": "U1536Z4", + "id": "3fa5ca5b-92d2-454b-9738-590bcd6fed86" + }, + { + "routeId": "L337", + "platformId": "U1538Z1", + "id": "d786263e-5f1e-48b4-948b-f71e56240520" + }, + { + "routeId": "L339", + "platformId": "U1538Z1", + "id": "63d4c684-341b-492f-a1c1-24b6f3f2ac8e" + }, + { + "routeId": "L461", + "platformId": "U1538Z1", + "id": "3b8bcd97-f176-4526-8c28-00e68e038f3d" + }, + { + "routeId": "L337", + "platformId": "U1538Z2", + "id": "ec25b10d-e98b-4335-b82f-7d12e55d9f69" + }, + { + "routeId": "L339", + "platformId": "U1538Z2", + "id": "68a8cb72-69e1-421b-b5ae-a68e52760fe5" + }, + { + "routeId": "L461", + "platformId": "U1538Z2", + "id": "67da180d-03b8-4d6a-96e6-5bfb137e59c3" + }, + { + "routeId": "L337", + "platformId": "U1539Z1", + "id": "054dedcd-6426-41db-93cb-9be289cdea00" + }, + { + "routeId": "L339", + "platformId": "U1539Z1", + "id": "2e12f5ef-4a92-4f10-ae19-39b4e793e35e" + }, + { + "routeId": "L461", + "platformId": "U1539Z1", + "id": "cc999608-991d-4948-835e-10376fe6085b" + }, + { + "routeId": "L337", + "platformId": "U1539Z2", + "id": "6760a31d-09f1-420a-935d-25775585377c" + }, + { + "routeId": "L339", + "platformId": "U1539Z2", + "id": "8cbd5d69-ea01-4b1c-9a55-3d52bb3de256" + }, + { + "routeId": "L461", + "platformId": "U1539Z2", + "id": "ee5dd859-7d24-41bc-9d6b-84b5770a6535" + }, + { + "routeId": "L105", + "platformId": "U153Z1", + "id": "5573cef9-d1d3-47a8-aa1a-6121fc377efd" + }, + { + "routeId": "L337", + "platformId": "U1540Z1", + "id": "a9545d04-a7ba-461a-8a69-2a222e55be1c" + }, + { + "routeId": "L339", + "platformId": "U1540Z1", + "id": "1ed0dba7-d6dc-4ba3-877c-b7797e56349e" + }, + { + "routeId": "L337", + "platformId": "U1540Z2", + "id": "cd27bf9d-c843-486b-b1ec-388dc621f140" + }, + { + "routeId": "L339", + "platformId": "U1540Z2", + "id": "b994a8f6-1515-46ab-ac8c-659e154f9cc4" + }, + { + "routeId": "L337", + "platformId": "U1541Z1", + "id": "454528de-203e-4145-b24d-66fb6f6d6c8b" + }, + { + "routeId": "L339", + "platformId": "U1541Z1", + "id": "b3e1fdd9-39fe-43bc-9268-938a9bb2bb84" + }, + { + "routeId": "L337", + "platformId": "U1541Z2", + "id": "062ae228-1652-4897-8781-cc8b2d41cd4f" + }, + { + "routeId": "L339", + "platformId": "U1541Z2", + "id": "cd757f7f-00f7-4351-b323-23d2cfb14450" + }, + { + "routeId": "L337", + "platformId": "U1542Z1", + "id": "22894aae-fa78-4fa8-80d2-8297ec8d42aa" + }, + { + "routeId": "L339", + "platformId": "U1542Z1", + "id": "e908ade6-ebd9-45f8-8070-dba1f611ce01" + }, + { + "routeId": "L337", + "platformId": "U1542Z2", + "id": "837b1354-8135-49e6-a99b-c537cb2c9658" + }, + { + "routeId": "L339", + "platformId": "U1542Z2", + "id": "b2180d80-8303-4ec6-a840-46a1a35c5031" + }, + { + "routeId": "L337", + "platformId": "U1543Z1", + "id": "fa52589b-bf25-4fff-bc47-41505bd559a3" + }, + { + "routeId": "L339", + "platformId": "U1543Z1", + "id": "7aef341f-17d8-4c0a-96a2-e5307b7be73c" + }, + { + "routeId": "L337", + "platformId": "U1543Z2", + "id": "0fa7ccaf-33bc-4ede-9f2c-6654b4a9e229" + }, + { + "routeId": "L339", + "platformId": "U1543Z2", + "id": "6f179e71-cd44-4edd-b7bc-b2976bb26713" + }, + { + "routeId": "L337", + "platformId": "U1544Z1", + "id": "df9a408a-4de4-49b4-882b-156b0a9f5919" + }, + { + "routeId": "L337", + "platformId": "U1544Z2", + "id": "932b1472-8af1-4412-8540-ca5d9fe02306" + }, + { + "routeId": "L337", + "platformId": "U1545Z1", + "id": "1b1d1266-4a5d-44f0-9e28-ca192f87c587" + }, + { + "routeId": "L337", + "platformId": "U1545Z2", + "id": "f88c6af9-388b-4171-a60c-cf3ef17cbb0a" + }, + { + "routeId": "L337", + "platformId": "U1546Z1", + "id": "69b505ea-b123-417c-8494-a6bab9bed884" + }, + { + "routeId": "L337", + "platformId": "U1546Z2", + "id": "c63effde-33dd-46f9-87e2-a4d229302058" + }, + { + "routeId": "L651", + "platformId": "U1546Z2", + "id": "17645e27-ba92-4d1c-b655-eb2c302c1013" + }, + { + "routeId": "L651", + "platformId": "U1547Z1", + "id": "4140dd82-395b-4478-a4a7-f98425678946" + }, + { + "routeId": "L651", + "platformId": "U1547Z2", + "id": "0307200c-04de-4d70-8ae1-402b8332d5e1" + }, + { + "routeId": "L651", + "platformId": "U1548Z1", + "id": "64713fda-8827-4992-ba9a-9e03677a3c72" + }, + { + "routeId": "L796", + "platformId": "U1548Z1", + "id": "7bc5088d-a522-41ab-845f-182a51ba2484" + }, + { + "routeId": "L651", + "platformId": "U1548Z2", + "id": "d439b279-4465-47ec-a3f2-68c9a65857c6" + }, + { + "routeId": "L796", + "platformId": "U1548Z2", + "id": "0fe46c90-b591-478f-add0-389abcb80e68" + }, + { + "routeId": "L651", + "platformId": "U1549Z1", + "id": "22565096-0919-4549-982b-bbac76f2f962" + }, + { + "routeId": "L796", + "platformId": "U1549Z1", + "id": "9ac6fcb5-b6ba-43a1-aee6-7344949de427" + }, + { + "routeId": "L651", + "platformId": "U1549Z2", + "id": "2f30d9e3-6fdf-4cd9-a08c-4930bedcaba2" + }, + { + "routeId": "L796", + "platformId": "U1549Z2", + "id": "492d571f-d0d2-438f-aa40-c197e011a852" + }, + { + "routeId": "L125", + "platformId": "U154Z1", + "id": "5de0e5ab-e3a5-421d-ac10-4d61b0abf8bb" + }, + { + "routeId": "L175", + "platformId": "U154Z1", + "id": "021dd711-5020-44ee-b4a0-b8a182d3be82" + }, + { + "routeId": "L911", + "platformId": "U154Z1", + "id": "f639f607-3c45-4a09-97f8-87f8449a4607" + }, + { + "routeId": "L204", + "platformId": "U154Z1", + "id": "48e109d1-5ed5-40e3-b5a1-c24664e86d2f" + }, + { + "routeId": "L240", + "platformId": "U154Z1", + "id": "4f5abd29-462d-4f36-982e-3a552f87d0a1" + }, + { + "routeId": "L154", + "platformId": "U154Z2", + "id": "aa66b156-5174-41ce-823d-654a4f208a08" + }, + { + "routeId": "L183", + "platformId": "U154Z2", + "id": "a901035d-534e-40b3-a74a-9239c4a255a1" + }, + { + "routeId": "L204", + "platformId": "U154Z2", + "id": "079bb120-6705-46c4-82db-ffab035498e8" + }, + { + "routeId": "L240", + "platformId": "U154Z2", + "id": "27b7f31b-b762-40f2-b3f7-0550b6ee7d71" + }, + { + "routeId": "L154", + "platformId": "U154Z3", + "id": "fc08799d-eb96-403c-8728-ee2f1d07cc54" + }, + { + "routeId": "L183", + "platformId": "U154Z3", + "id": "09b4c927-3fa6-40c6-ba6f-3495831bd073" + }, + { + "routeId": "L204", + "platformId": "U154Z3", + "id": "1fce79cf-65ed-4bc9-8ae5-36dcac30bf23" + }, + { + "routeId": "L240", + "platformId": "U154Z3", + "id": "e6ed2c82-7bb2-4166-ad92-ca4ee6239f2b" + }, + { + "routeId": "L125", + "platformId": "U154Z4", + "id": "83c50199-e5e7-43b2-b930-84a6b82da9d8" + }, + { + "routeId": "L175", + "platformId": "U154Z4", + "id": "e893eb4a-2350-4d76-91d8-bd888b33df60" + }, + { + "routeId": "L911", + "platformId": "U154Z4", + "id": "b77745f7-7d7d-477f-a354-c83832bc0ba8" + }, + { + "routeId": "L204", + "platformId": "U154Z4", + "id": "efa8c952-be61-408b-b1a3-98b38904509e" + }, + { + "routeId": "L240", + "platformId": "U154Z4", + "id": "6500d6a0-e660-4d52-bd49-4dbf57e9843f" + }, + { + "routeId": "L651", + "platformId": "U1550Z1", + "id": "1b0633a0-a721-483a-9241-908c2bbf690b" + }, + { + "routeId": "L651", + "platformId": "U1550Z2", + "id": "895bffa1-347f-440b-b0ab-e9e553f5b1b2" + }, + { + "routeId": "L651", + "platformId": "U1551Z1", + "id": "839ee9c5-50b6-4979-a75c-4aec5c7edc1f" + }, + { + "routeId": "L651", + "platformId": "U1551Z2", + "id": "7581c1a2-06c9-4a92-a331-f556620455a8" + }, + { + "routeId": "L651", + "platformId": "U1552Z1", + "id": "a2f506d0-8986-4aff-95ca-c2a6472eb59c" + }, + { + "routeId": "L651", + "platformId": "U1552Z2", + "id": "981c17bb-afcf-436f-808f-76d166cb9301" + }, + { + "routeId": "L1217", + "platformId": "U1553Z301", + "id": "f1eb008d-2ed6-4843-918a-cfc27f2b3407" + }, + { + "routeId": "L1249", + "platformId": "U1553Z301", + "id": "0f003505-c0f4-48eb-a11c-3d008b58b92d" + }, + { + "routeId": "L1309", + "platformId": "U1553Z301", + "id": "49a9d9c5-174f-4e22-82a9-945692cfc175" + }, + { + "routeId": "L651", + "platformId": "U1554Z1", + "id": "123c1baa-964e-4904-a598-33880cebb3eb" + }, + { + "routeId": "L1217", + "platformId": "U1554Z301", + "id": "ca757473-0ef0-4cb3-b91e-dc961e62962c" + }, + { + "routeId": "L1249", + "platformId": "U1554Z301", + "id": "dabc7c49-6139-4c29-aa74-f9b766745bd7" + }, + { + "routeId": "L1309", + "platformId": "U1554Z301", + "id": "991f45b9-eb2f-4cdd-b0b7-977609fdd9ec" + }, + { + "routeId": "L651", + "platformId": "U1555Z1", + "id": "bf33232d-4f60-4096-9fb1-3cf8957f9946" + }, + { + "routeId": "L651", + "platformId": "U1555Z2", + "id": "b84c206e-4f66-482b-af44-b4f5a3a68697" + }, + { + "routeId": "L651", + "platformId": "U1557Z1", + "id": "c14b5dc0-98af-4a1a-a81a-ab24d89e66c6" + }, + { + "routeId": "L651", + "platformId": "U1557Z2", + "id": "f7cf3ab8-2985-4b8d-bff7-6c066f4a2f72" + }, + { + "routeId": "L354", + "platformId": "U1559Z1", + "id": "71491904-540b-4d8f-8eae-baea73d68e37" + }, + { + "routeId": "L655", + "platformId": "U1559Z1", + "id": "5242840d-5c7e-44e7-a495-2d9766eb20a0" + }, + { + "routeId": "L398", + "platformId": "U1559Z1", + "id": "2fe0dec9-dccd-4574-bfa9-fe6ff74d95b8" + }, + { + "routeId": "L354", + "platformId": "U1559Z2", + "id": "78c4a40f-a5ef-48eb-a24e-60b6db97b544" + }, + { + "routeId": "L655", + "platformId": "U1559Z2", + "id": "b5170b99-7698-421f-887c-d177e12cc449" + }, + { + "routeId": "L398", + "platformId": "U1559Z2", + "id": "5fc89ac0-5f64-476d-85e4-0a73a91cec72" + }, + { + "routeId": "L344", + "platformId": "U155Z1", + "id": "677f004f-4d76-4c24-90fa-659548e45064" + }, + { + "routeId": "L303", + "platformId": "U155Z1", + "id": "3f2c4b29-459c-4a87-8a48-67a6e07dca9b" + }, + { + "routeId": "L353", + "platformId": "U155Z1", + "id": "fad397a0-bad1-4d7c-91f8-df2a7f8d4257" + }, + { + "routeId": "L354", + "platformId": "U155Z1", + "id": "b2f1e2c2-198b-488d-8008-5b83ab0d3961" + }, + { + "routeId": "L398", + "platformId": "U155Z1", + "id": "30d3a998-1238-430f-b36d-73c15bb19993" + }, + { + "routeId": "L344", + "platformId": "U155Z2", + "id": "c0ff772f-d0da-43a2-aae2-ff9cd6d18a45" + }, + { + "routeId": "L353", + "platformId": "U155Z2", + "id": "38226e32-9705-4e6c-8271-cd9f5160e509" + }, + { + "routeId": "L303", + "platformId": "U155Z2", + "id": "6f84beb6-f861-4137-b0a2-eb0f3206498d" + }, + { + "routeId": "L354", + "platformId": "U155Z2", + "id": "7df79e75-5fbc-46b3-80ec-e6819ab76d8c" + }, + { + "routeId": "L398", + "platformId": "U155Z2", + "id": "b503c6cc-8bdc-4a76-aeb8-68fcd5a6136e" + }, + { + "routeId": "L461", + "platformId": "U1560Z1", + "id": "f82ed5be-31eb-4b8c-9765-6f058e0ac49f" + }, + { + "routeId": "L461", + "platformId": "U1560Z2", + "id": "7dba76ed-eb2a-4f09-b4ee-2ac0daafa550" + }, + { + "routeId": "L461", + "platformId": "U1561Z1", + "id": "627f465d-bc2b-4dda-adef-9b7dcbeb9630" + }, + { + "routeId": "L461", + "platformId": "U1561Z2", + "id": "f80264ba-5a51-422e-843e-352896e85601" + }, + { + "routeId": "L363", + "platformId": "U1562Z1", + "id": "f85df64c-51e5-4514-b92c-0e688cf393d7" + }, + { + "routeId": "L461", + "platformId": "U1562Z1", + "id": "ecc9e8d3-e206-4ed9-a015-e22f1ac645b3" + }, + { + "routeId": "L363", + "platformId": "U1562Z2", + "id": "ecdc97b5-a3d4-45fd-a4a6-16478eafad74" + }, + { + "routeId": "L461", + "platformId": "U1562Z2", + "id": "fd7e7008-7c5c-459c-8349-0591ff8c598a" + }, + { + "routeId": "L363", + "platformId": "U1563Z1", + "id": "0c3e0b6c-5273-49a5-b96d-340774e42f30" + }, + { + "routeId": "L363", + "platformId": "U1563Z2", + "id": "d740a962-f397-4bc9-91f5-e419654b4a94" + }, + { + "routeId": "L337", + "platformId": "U1564Z1", + "id": "15905554-29d6-4a5d-ba23-72f02582293f" + }, + { + "routeId": "L335", + "platformId": "U1564Z1", + "id": "c34c4944-5874-4025-b1c5-4eeea721732b" + }, + { + "routeId": "L444", + "platformId": "U1564Z1", + "id": "1f3b5fbe-67a5-4d55-af49-1d59315d1605" + }, + { + "routeId": "L339", + "platformId": "U1564Z1", + "id": "fc8f10a5-d108-43ea-ac72-5ab474ece404" + }, + { + "routeId": "L461", + "platformId": "U1564Z1", + "id": "3223a522-ad91-4a9f-ba10-678ddf1f0af5" + }, + { + "routeId": "L335", + "platformId": "U1565Z1", + "id": "f52457f9-c333-448a-983d-0187319884e6" + }, + { + "routeId": "L444", + "platformId": "U1565Z1", + "id": "2defd662-95a4-4c4e-aa19-17d1a240e9ff" + }, + { + "routeId": "L335", + "platformId": "U1565Z2", + "id": "fbf64863-0049-436a-9e20-baa806005990" + }, + { + "routeId": "L444", + "platformId": "U1565Z2", + "id": "d35b5c57-3fa4-4fa6-bd0e-69a92a025b77" + }, + { + "routeId": "L444", + "platformId": "U1566Z1", + "id": "ccc7c154-281e-41b1-964d-46eb30fa7ad7" + }, + { + "routeId": "L444", + "platformId": "U1566Z2", + "id": "dfa275e3-4261-4209-b2c0-f5845c7284e5" + }, + { + "routeId": "L444", + "platformId": "U1567Z1", + "id": "e0f98301-81dd-42f5-9385-4902ccfe320a" + }, + { + "routeId": "L444", + "platformId": "U1567Z2", + "id": "65d74564-bba8-4a71-adb9-47ca8e3965d4" + }, + { + "routeId": "L444", + "platformId": "U1568Z1", + "id": "e1e66311-a88e-400d-ae4e-7436b01d4126" + }, + { + "routeId": "L444", + "platformId": "U1568Z2", + "id": "a6b96ee1-871b-4112-bbbb-928993c5fe44" + }, + { + "routeId": "L444", + "platformId": "U1569Z1", + "id": "0107d136-4203-4e6c-b13f-3dfa2a062ea9" + }, + { + "routeId": "L444", + "platformId": "U1569Z2", + "id": "6f0a60ba-00fa-4694-a15c-8b8abda5f84a" + }, + { + "routeId": "L123", + "platformId": "U156Z1", + "id": "6fa56ab0-2af6-419e-a7a6-3f1e27ec6d6a" + }, + { + "routeId": "L123", + "platformId": "U156Z2", + "id": "e33d11b3-b212-40e5-85cc-70c64860b779" + }, + { + "routeId": "L444", + "platformId": "U1570Z1", + "id": "6d78fae9-3571-4f69-8015-abef458e7977" + }, + { + "routeId": "L444", + "platformId": "U1570Z2", + "id": "ee937389-e6b6-4a3f-9f15-7c25f1e1fd3d" + }, + { + "routeId": "L444", + "platformId": "U1570Z3", + "id": "ba19f8e3-323d-4f67-a61e-540c0b641702" + }, + { + "routeId": "L444", + "platformId": "U1571Z1", + "id": "4d1ac7bb-f547-4604-bfe9-b5164245ac9e" + }, + { + "routeId": "L444", + "platformId": "U1571Z2", + "id": "7233169e-62de-4e36-9282-cc94beb2a5ff" + }, + { + "routeId": "L444", + "platformId": "U1572Z1", + "id": "ee497cf1-38d5-486e-9809-2ed98b49835b" + }, + { + "routeId": "L444", + "platformId": "U1572Z2", + "id": "e96f4403-8dba-4f56-9e9e-d8abbf30d98b" + }, + { + "routeId": "L335", + "platformId": "U1573Z1", + "id": "43569c04-6ac1-47fb-ba15-a2dacb26c37e" + }, + { + "routeId": "L335", + "platformId": "U1573Z2", + "id": "bc54a11e-c15b-4a74-a102-f8eb06f37a6a" + }, + { + "routeId": "L335", + "platformId": "U1574Z1", + "id": "ff07ad84-fdda-4072-9eb8-3358c734c4fb" + }, + { + "routeId": "L335", + "platformId": "U1574Z2", + "id": "7a16ccd9-2ca1-47bc-b6b7-f2292f335b44" + }, + { + "routeId": "L341", + "platformId": "U1575Z1", + "id": "8ed222e2-5198-4f19-a4cf-9dfeafa928ee" + }, + { + "routeId": "L341", + "platformId": "U1575Z2", + "id": "8705c4e9-01ae-493c-a379-8108f53b8de8" + }, + { + "routeId": "L335", + "platformId": "U1578Z1", + "id": "3db8fd37-175e-42ac-997d-d28c9ac3e94e" + }, + { + "routeId": "L335", + "platformId": "U1578Z2", + "id": "4a3e3bad-fe60-47f2-828b-6e6e9c14a5ec" + }, + { + "routeId": "L335", + "platformId": "U1579Z1", + "id": "49ea1145-b09e-406e-a3b3-467736199f6c" + }, + { + "routeId": "L335", + "platformId": "U1579Z2", + "id": "d8582407-24e1-4d55-8a36-3b3e61129f85" + }, + { + "routeId": "L20", + "platformId": "U157Z1", + "id": "388846f2-b5ea-444c-a4e7-a54ec5035e1e" + }, + { + "routeId": "L26", + "platformId": "U157Z1", + "id": "4099ef31-33fa-452e-86ac-2745fb983c8d" + }, + { + "routeId": "L91", + "platformId": "U157Z1", + "id": "77d9d313-5b0b-449e-b3d7-a4c17a2e2d9e" + }, + { + "routeId": "L991", + "platformId": "U157Z101", + "id": "508fc68a-45ca-4b5a-a34f-4779a4f66637" + }, + { + "routeId": "L991", + "platformId": "U157Z102", + "id": "b54ab797-618f-45f3-853d-6c003be9afaf" + }, + { + "routeId": "L20", + "platformId": "U157Z2", + "id": "9ba484bf-2e41-405e-b1e6-dddb11e7ad8b" + }, + { + "routeId": "L26", + "platformId": "U157Z2", + "id": "bd544209-f9e0-456c-b9c0-20f47ccf94bb" + }, + { + "routeId": "L91", + "platformId": "U157Z2", + "id": "dba5af2c-c661-4fef-a8a6-f12e0f46857a" + }, + { + "routeId": "L131", + "platformId": "U157Z3", + "id": "20d4608f-4bc5-4856-b812-c7ffb1260439" + }, + { + "routeId": "L116", + "platformId": "U157Z4", + "id": "811547e4-85f1-4106-ab00-193da0d07541" + }, + { + "routeId": "L131", + "platformId": "U157Z4", + "id": "bc98e246-111a-49f8-964e-97b55cd37dad" + }, + { + "routeId": "L161", + "platformId": "U157Z4", + "id": "66abc8a2-9019-43eb-8711-2b300ea2d293" + }, + { + "routeId": "L907", + "platformId": "U157Z4", + "id": "ed0bbbca-892d-4817-894f-6e3d05b3169c" + }, + { + "routeId": "L312", + "platformId": "U157Z4", + "id": "2091a06f-e038-46eb-91fb-1f4ed14a5e2a" + }, + { + "routeId": "L316", + "platformId": "U157Z5", + "id": "f369a00c-f4e2-4fd9-aad6-72b67e665c2c" + }, + { + "routeId": "L356", + "platformId": "U157Z5", + "id": "b35e42b3-65a3-452d-9d83-ecc9c6998455" + }, + { + "routeId": "L161", + "platformId": "U157Z6", + "id": "f68c6792-b6ef-46e0-a961-73e6f9c4cc57" + }, + { + "routeId": "L907", + "platformId": "U157Z6", + "id": "e998b4a9-9ef5-4001-8c95-f135f838908c" + }, + { + "routeId": "L312", + "platformId": "U157Z6", + "id": "6ae2f246-da58-40a0-ab93-f46d1889fc3b" + }, + { + "routeId": "L116", + "platformId": "U157Z7", + "id": "40525297-fb58-4537-85df-59c7ec17d52a" + }, + { + "routeId": "L356", + "platformId": "U157Z74", + "id": "9862bcaf-4c02-44b6-9a5d-90ae9f4ffab8" + }, + { + "routeId": "L316", + "platformId": "U157Z74", + "id": "984b7471-7e43-4869-bebd-9f5a9659e253" + }, + { + "routeId": "L335", + "platformId": "U1580Z1", + "id": "2ea69fba-c31d-477d-9c12-6344b9e7c8a5" + }, + { + "routeId": "L335", + "platformId": "U1580Z2", + "id": "9654d31b-8627-4599-bc8f-d93d25792440" + }, + { + "routeId": "L335", + "platformId": "U1581Z1", + "id": "693d1654-a206-41f7-8f21-167c5d744df1" + }, + { + "routeId": "L335", + "platformId": "U1581Z2", + "id": "c5df607a-3b49-45cd-abb1-91187575f37d" + }, + { + "routeId": "L335", + "platformId": "U1582Z1", + "id": "e1b34e40-d9e6-4c04-8544-8d7b8de2eb23" + }, + { + "routeId": "L335", + "platformId": "U1582Z2", + "id": "48643072-df63-49ce-b154-3e0ca9923c3e" + }, + { + "routeId": "L335", + "platformId": "U1583Z1", + "id": "8953c3ef-5217-4f10-8cfe-a7c1152f9679" + }, + { + "routeId": "L335", + "platformId": "U1583Z2", + "id": "d9628d15-871c-4f31-adc5-b0b77e54b15e" + }, + { + "routeId": "L113", + "platformId": "U1584Z1", + "id": "e2b20be0-782b-4bd4-ab72-5202ec713dd9" + }, + { + "routeId": "L913", + "platformId": "U1584Z1", + "id": "4ab92af0-cc27-4f08-a34c-dd59b3f7c76a" + }, + { + "routeId": "L341", + "platformId": "U1584Z1", + "id": "25f454ba-8cbc-4ceb-8be0-99238d22a3fc" + }, + { + "routeId": "L113", + "platformId": "U1584Z2", + "id": "30fc8e66-244c-4ddf-96f9-1e658345bce7" + }, + { + "routeId": "L913", + "platformId": "U1584Z2", + "id": "1aa09777-fb81-4d70-9a92-e660cfc3362b" + }, + { + "routeId": "L341", + "platformId": "U1584Z2", + "id": "1181c007-baeb-44ac-9656-ce3a503ccdb3" + }, + { + "routeId": "L469", + "platformId": "U1585Z1", + "id": "5c26567e-f309-4903-b4e2-e1a5c5028fd2" + }, + { + "routeId": "L445", + "platformId": "U1586Z1", + "id": "dbecc8d3-1248-40da-b7ec-91a6545d17d1" + }, + { + "routeId": "L445", + "platformId": "U1586Z2", + "id": "7abe1045-16c1-4164-aba1-6c1feeeb4d91" + }, + { + "routeId": "L1308", + "platformId": "U1587Z301", + "id": "4461e5bc-bb06-4f37-b171-39c0046bd3b1" + }, + { + "routeId": "L339", + "platformId": "U1588Z1", + "id": "b6e0d7dc-edbc-4acb-be5c-383633fd8638" + }, + { + "routeId": "L339", + "platformId": "U1588Z2", + "id": "50fd6033-9c83-4a22-9f48-bafb97301135" + }, + { + "routeId": "L339", + "platformId": "U1589Z1", + "id": "9a89e71a-eecc-4820-9392-cfc1fb9dbf9a" + }, + { + "routeId": "L339", + "platformId": "U1589Z2", + "id": "a5414080-71ab-4d18-9fc7-01c5c2920108" + }, + { + "routeId": "L110", + "platformId": "U158Z1", + "id": "2be919dc-be35-480c-aa10-5cbb86bdc4a9" + }, + { + "routeId": "L224", + "platformId": "U158Z1", + "id": "b39b04c1-d3fa-4228-8b80-1b4c09e68af3" + }, + { + "routeId": "L110", + "platformId": "U158Z2", + "id": "d9aab937-7bfa-4ea8-b7a7-b2c79d59b5ba" + }, + { + "routeId": "L224", + "platformId": "U158Z2", + "id": "8803ba4d-5c4b-4a1b-8212-7b473f895c06" + }, + { + "routeId": "L339", + "platformId": "U1590Z1", + "id": "a07ddea2-bdce-4cab-802e-c5cf4e31542c" + }, + { + "routeId": "L339", + "platformId": "U1590Z2", + "id": "80c87f70-d522-44df-9d5f-751dfe533ee2" + }, + { + "routeId": "L113", + "platformId": "U1591Z1", + "id": "428c0349-fc45-4151-baa7-1e02f68f56ec" + }, + { + "routeId": "L913", + "platformId": "U1591Z1", + "id": "13807fcb-eeb6-4032-9934-a878a4d6529d" + }, + { + "routeId": "L341", + "platformId": "U1591Z1", + "id": "3c61c009-4d95-45b1-b63e-3d3334955319" + }, + { + "routeId": "L113", + "platformId": "U1591Z2", + "id": "e16f2838-f4e0-4d5a-8f77-5ea1ceaeba4e" + }, + { + "routeId": "L913", + "platformId": "U1591Z2", + "id": "146271ed-e7c0-4f08-9f68-44738cf60038" + }, + { + "routeId": "L341", + "platformId": "U1591Z2", + "id": "63e49ae0-6b18-490b-8609-1b8376494935" + }, + { + "routeId": "L1217", + "platformId": "U1592Z301", + "id": "f8773637-8f30-49e0-ba7c-841ee7542f7f" + }, + { + "routeId": "L1309", + "platformId": "U1592Z301", + "id": "7f07cc9e-d8f4-4a87-a2a8-3984cc21a2d8" + }, + { + "routeId": "L339", + "platformId": "U1593Z1", + "id": "1e6c49d0-b66e-404e-a51b-b5bfe3c57b41" + }, + { + "routeId": "L752", + "platformId": "U1593Z2", + "id": "cf8c20e3-b089-4507-bfd2-abf2a7590f1e" + }, + { + "routeId": "L753", + "platformId": "U1593Z2", + "id": "5d38b3c7-a3f6-4326-9080-47474e6ec5b6" + }, + { + "routeId": "L339", + "platformId": "U1593Z3", + "id": "c077f0e3-218b-4e0f-950c-c585bdf1d2bd" + }, + { + "routeId": "L1308", + "platformId": "U1593Z301", + "id": "3c21e411-7934-4be7-a5f3-b7540439e9f3" + }, + { + "routeId": "L752", + "platformId": "U1593Z4", + "id": "924ed661-64b7-4775-9df0-4d80ffb50851" + }, + { + "routeId": "L753", + "platformId": "U1593Z4", + "id": "d6ba7d72-d68d-48ee-b87e-f90465cd46ce" + }, + { + "routeId": "L752", + "platformId": "U1594Z1", + "id": "c2102068-956c-47a1-b2b4-ba6575f0982e" + }, + { + "routeId": "L1217", + "platformId": "U1595Z301", + "id": "4c950216-1983-4d72-889f-6251620c3def" + }, + { + "routeId": "L1249", + "platformId": "U1595Z301", + "id": "6c58146d-5e1e-46f3-b8fc-f8b0ded57eb8" + }, + { + "routeId": "L1309", + "platformId": "U1595Z301", + "id": "937e0207-fddc-460b-bea7-8c7c63ef3815" + }, + { + "routeId": "L752", + "platformId": "U1596Z1", + "id": "d2b56bf4-f14c-4f04-a7ec-4863ee0920ad" + }, + { + "routeId": "L752", + "platformId": "U1596Z2", + "id": "a2d5a168-4efb-430b-8c32-2d9a92bc9ecb" + }, + { + "routeId": "L339", + "platformId": "U1597Z1", + "id": "3bb5a0a9-8a1c-4a0b-8a84-a90615e6f408" + }, + { + "routeId": "L339", + "platformId": "U1597Z2", + "id": "b91e2f55-ba7e-4415-a9be-e2156649a47e" + }, + { + "routeId": "L363", + "platformId": "U1598Z1", + "id": "e512be54-a04f-4fb3-b1f7-d4b99abb24a2" + }, + { + "routeId": "L461", + "platformId": "U1598Z1", + "id": "ee7998fd-c0fd-4786-9ebc-012b1dd64182" + }, + { + "routeId": "L363", + "platformId": "U1598Z2", + "id": "67160a73-39f3-43d5-ba23-2df276da438d" + }, + { + "routeId": "L461", + "platformId": "U1598Z2", + "id": "2d9ddd71-8d31-4662-8187-ac28ce69e6e0" + }, + { + "routeId": "L363", + "platformId": "U1599Z1", + "id": "8486d024-231c-41d8-a0f9-66b128c0bc80" + }, + { + "routeId": "L461", + "platformId": "U1599Z1", + "id": "c2c726f8-598f-4449-ace9-3d5962b1d525" + }, + { + "routeId": "L363", + "platformId": "U1599Z2", + "id": "5c8db562-66c9-4bc5-9554-c46da778b5cb" + }, + { + "routeId": "L461", + "platformId": "U1599Z2", + "id": "1ce05dab-0c5b-4e25-add9-b999e093623e" + }, + { + "routeId": "L228", + "platformId": "U159Z1", + "id": "d1def1d6-22ca-495b-b105-b41e0b4f998d" + }, + { + "routeId": "L906", + "platformId": "U159Z2", + "id": "4c08f45f-eaf3-4920-b0d5-5796a8fc1b15" + }, + { + "routeId": "L228", + "platformId": "U159Z2", + "id": "ad8b1192-82a3-4109-b15e-13878402126a" + }, + { + "routeId": "L325", + "platformId": "U159Z2", + "id": "4c960b44-2549-4d47-8def-eee537bd40f0" + }, + { + "routeId": "L325", + "platformId": "U159Z4", + "id": "34bb6e28-5931-4104-8a9d-0e6bdf67c4ff" + }, + { + "routeId": "L1", + "platformId": "U15Z1", + "id": "7374f926-8342-410a-8935-b28d16f7e6ff" + }, + { + "routeId": "L2", + "platformId": "U15Z1", + "id": "33044dc2-d9bd-4485-8c6e-19a9427216a8" + }, + { + "routeId": "L96", + "platformId": "U15Z1", + "id": "72993308-4bd9-4ec9-a8d5-227e9c78d3dd" + }, + { + "routeId": "L1", + "platformId": "U15Z2", + "id": "34f81e7d-372e-4d5a-b6e9-053f5f39adcb" + }, + { + "routeId": "L2", + "platformId": "U15Z2", + "id": "7f311972-62a8-45fb-b4af-6b3751a1faee" + }, + { + "routeId": "L96", + "platformId": "U15Z2", + "id": "df995783-3e4c-4412-8d05-db9956491eb4" + }, + { + "routeId": "L461", + "platformId": "U1600Z1", + "id": "386639c7-25e3-45f8-8091-99e4f6769d82" + }, + { + "routeId": "L363", + "platformId": "U1600Z2", + "id": "7a84013c-12e7-4854-be97-2d4efddc71b3" + }, + { + "routeId": "L461", + "platformId": "U1600Z2", + "id": "50cfa6cf-780a-44d9-a1a9-092479ab4fef" + }, + { + "routeId": "L311", + "platformId": "U1601Z1", + "id": "bdbb7bcb-daac-481e-8624-734e3a763196" + }, + { + "routeId": "L311", + "platformId": "U1601Z2", + "id": "1c828513-d13d-40c7-9fbf-b33928997977" + }, + { + "routeId": "L303", + "platformId": "U1602Z1", + "id": "7da297c6-93e4-4d8d-88b9-30ef5a92ccd1" + }, + { + "routeId": "L303", + "platformId": "U1602Z2", + "id": "99a5957e-761c-4bf5-91b9-90074bab4910" + }, + { + "routeId": "L344", + "platformId": "U1604Z1", + "id": "69c73885-30d7-4977-ad3e-a765243a2f7c" + }, + { + "routeId": "L344", + "platformId": "U1604Z2", + "id": "2d4a170f-5662-42b8-bce1-5f2808f0e039" + }, + { + "routeId": "L344", + "platformId": "U1605Z1", + "id": "00e38a0e-a9b3-40b4-8f5d-c68d0645c553" + }, + { + "routeId": "L344", + "platformId": "U1605Z2", + "id": "c9abdee6-0d83-4488-bae2-10c64ed92300" + }, + { + "routeId": "L344", + "platformId": "U1606Z1", + "id": "3ca3df75-3a79-4521-b657-fa40c51af4b5" + }, + { + "routeId": "L344", + "platformId": "U1606Z2", + "id": "10df695b-d588-4a4a-8294-0e3b24f79745" + }, + { + "routeId": "L344", + "platformId": "U1607Z1", + "id": "5f5d7c07-3cab-429a-96fd-485ac578c7f6" + }, + { + "routeId": "L344", + "platformId": "U1607Z2", + "id": "7e0b2cd6-f862-4cca-8a3f-02be836d0f46" + }, + { + "routeId": "L344", + "platformId": "U1608Z1", + "id": "f116ad23-2143-4d5b-b8fa-4bff2d2503f5" + }, + { + "routeId": "L344", + "platformId": "U1608Z2", + "id": "747a8bce-d228-4005-9b3d-d2812fb8b108" + }, + { + "routeId": "L423", + "platformId": "U1609Z2", + "id": "04b0089e-1f04-4fca-a8e4-cb9c98477d03" + }, + { + "routeId": "L177", + "platformId": "U160Z1", + "id": "bdf3dee4-bd35-47c2-8f21-fed44fb459a8" + }, + { + "routeId": "L181", + "platformId": "U160Z1", + "id": "fd7d3b66-cf07-4dd6-9af9-b9ade68662d6" + }, + { + "routeId": "L901", + "platformId": "U160Z1", + "id": "bb2e98e8-5b74-42aa-a3d8-238cbd38a80d" + }, + { + "routeId": "L906", + "platformId": "U160Z1", + "id": "b9426d0c-7850-49b6-a587-13d3e7b5340d" + }, + { + "routeId": "L177", + "platformId": "U160Z2", + "id": "461a0ef2-3208-4e62-afdd-3d8cfd5cbbf2" + }, + { + "routeId": "L181", + "platformId": "U160Z2", + "id": "2554670d-0113-4de3-afb8-9daa3c19c039" + }, + { + "routeId": "L901", + "platformId": "U160Z2", + "id": "16cedbfd-3048-4129-a6b9-373752b1a2d6" + }, + { + "routeId": "L906", + "platformId": "U160Z2", + "id": "507a1814-6100-45a7-9309-16c0b98928fd" + }, + { + "routeId": "L423", + "platformId": "U1610Z2", + "id": "2694cd71-8c2c-407b-8440-f030a40a6745" + }, + { + "routeId": "L686", + "platformId": "U1610Z2", + "id": "0c643b38-28ba-47a0-8e33-2be188a8a419" + }, + { + "routeId": "L1219", + "platformId": "U1610Z301", + "id": "d431bde8-8707-4101-856c-c38ba12972a5" + }, + { + "routeId": "L1218", + "platformId": "U1610Z301", + "id": "e400551d-ab64-4992-8a51-388da53c4b07" + }, + { + "routeId": "L1210", + "platformId": "U1610Z301", + "id": "d3db3610-cc4a-4356-b223-1869b26e316b" + }, + { + "routeId": "L1209", + "platformId": "U1610Z301", + "id": "387369e1-c97d-4132-b321-b2a49ce01c47" + }, + { + "routeId": "L1301", + "platformId": "U1610Z301", + "id": "edd1bec9-9d79-41b2-9228-a36abd9990de" + }, + { + "routeId": "L423", + "platformId": "U1611Z1", + "id": "7980ceac-13c5-4ce5-84e2-6396d2998795" + }, + { + "routeId": "L686", + "platformId": "U1611Z1", + "id": "153586cd-b7c7-4098-9770-48733b07cc43" + }, + { + "routeId": "L423", + "platformId": "U1611Z2", + "id": "9314afae-3aa5-4fa6-b914-fd1169acf686" + }, + { + "routeId": "L686", + "platformId": "U1611Z2", + "id": "0f37fe86-1c82-4f8e-80cb-099ee634251e" + }, + { + "routeId": "L344", + "platformId": "U1612Z1", + "id": "0cbe6363-14f7-48b1-9c5c-27d8369c6a14" + }, + { + "routeId": "L344", + "platformId": "U1612Z2", + "id": "e3a2e264-ef63-4669-8c67-c83dca115119" + }, + { + "routeId": "L303", + "platformId": "U1613Z1", + "id": "2f359cf0-752a-4fbc-8e6a-425fc3b5affb" + }, + { + "routeId": "L303", + "platformId": "U1613Z2", + "id": "a4fb42c5-5fea-4c1c-95aa-9d6f4f53816e" + }, + { + "routeId": "L664", + "platformId": "U1616Z1", + "id": "66a4c155-8fa5-4d56-89f4-09a14b9c2aef" + }, + { + "routeId": "L951", + "platformId": "U1616Z1", + "id": "dae7d272-108a-4893-8ab9-3018d730dd70" + }, + { + "routeId": "L419", + "platformId": "U1616Z2", + "id": "c29c7ca5-7f24-4689-af46-d1cab7a9e3c5" + }, + { + "routeId": "L664", + "platformId": "U1616Z3", + "id": "7ee18e71-fc19-42a8-9f57-1cb12b32954b" + }, + { + "routeId": "L419", + "platformId": "U1616Z3", + "id": "fb465a88-3415-42e2-9fbe-c264a430a957" + }, + { + "routeId": "L1307", + "platformId": "U1616Z301", + "id": "b7c1f4d3-59f2-4e32-827b-1c1e8940fa92" + }, + { + "routeId": "L951", + "platformId": "U1616Z4", + "id": "8bc84b39-3c29-4677-b5a2-60292b73f64b" + }, + { + "routeId": "L664", + "platformId": "U1617Z1", + "id": "cec4f7da-00e0-4316-b1be-94990eab0bd9" + }, + { + "routeId": "L664", + "platformId": "U1617Z2", + "id": "762d5551-5883-4f8d-9509-e9b911481350" + }, + { + "routeId": "L664", + "platformId": "U1618Z1", + "id": "624826a7-4150-4f47-89f8-52a681d932cf" + }, + { + "routeId": "L664", + "platformId": "U1618Z2", + "id": "5319251d-d599-4bc7-9d10-f9371594646a" + }, + { + "routeId": "L664", + "platformId": "U1619Z1", + "id": "505e9b28-37dc-47e0-bfa0-290b3caf5f04" + }, + { + "routeId": "L664", + "platformId": "U1619Z2", + "id": "aa55137d-29b2-4e00-827b-25092e23786b" + }, + { + "routeId": "L133", + "platformId": "U161Z1", + "id": "30c60028-91eb-4451-afa8-1c20e47a101e" + }, + { + "routeId": "L199", + "platformId": "U161Z1", + "id": "960b2428-fe48-4923-9ff0-bba308b01402" + }, + { + "routeId": "L188", + "platformId": "U161Z1", + "id": "4058fd3b-25d3-44eb-a322-9e805bb25dec" + }, + { + "routeId": "L908", + "platformId": "U161Z1", + "id": "709ec368-3e85-4c70-8f46-6694c94090d4" + }, + { + "routeId": "L909", + "platformId": "U161Z1", + "id": "fdf8c587-f0b2-4f86-bf88-950fdad87f40" + }, + { + "routeId": "L133", + "platformId": "U161Z2", + "id": "94cdc397-89d6-40cd-956f-6d49aac3ab7d" + }, + { + "routeId": "L199", + "platformId": "U161Z2", + "id": "6e7e598a-8d2a-4705-8359-b7e42ebfc147" + }, + { + "routeId": "L188", + "platformId": "U161Z2", + "id": "730f31d7-fd80-4e41-9df3-8934a87256b6" + }, + { + "routeId": "L908", + "platformId": "U161Z2", + "id": "10af26d1-f0c1-4592-a53f-6b24f85ff962" + }, + { + "routeId": "L909", + "platformId": "U161Z2", + "id": "500924bf-6aa9-409d-8630-f11635aafbf8" + }, + { + "routeId": "L664", + "platformId": "U1620Z1", + "id": "370b981c-b1cc-481c-9973-dcbf8f6846d5" + }, + { + "routeId": "L664", + "platformId": "U1620Z2", + "id": "f77ad855-fc98-412d-8ed4-908c234a7dcf" + }, + { + "routeId": "L664", + "platformId": "U1621Z1", + "id": "85b700f6-f7e1-4166-a692-77b8b756d627" + }, + { + "routeId": "L664", + "platformId": "U1621Z2", + "id": "554e5005-1ecd-453b-8fe8-2e61e3b9fe97" + }, + { + "routeId": "L419", + "platformId": "U1622Z1", + "id": "a943276f-0275-49f5-b4d0-f313b2cbbd12" + }, + { + "routeId": "L951", + "platformId": "U1622Z1", + "id": "b35443e6-c50c-446c-b950-3ecf6686aeb7" + }, + { + "routeId": "L419", + "platformId": "U1622Z2", + "id": "6856018d-bafc-40c6-aa35-2c372fadf519" + }, + { + "routeId": "L951", + "platformId": "U1622Z2", + "id": "cc9b49a9-5289-4fcf-8f0d-01525123b1ca" + }, + { + "routeId": "L419", + "platformId": "U1623Z1", + "id": "8a4eb8c1-7dc9-423b-9a8e-b55c6103b183" + }, + { + "routeId": "L951", + "platformId": "U1623Z1", + "id": "6052278b-d1d4-4433-9fa8-ae2c6119c70c" + }, + { + "routeId": "L419", + "platformId": "U1623Z2", + "id": "538a6aca-4980-4771-80b0-e4acf3c019d6" + }, + { + "routeId": "L951", + "platformId": "U1623Z2", + "id": "3224241c-4065-4a7b-be3e-342d16656661" + }, + { + "routeId": "L419", + "platformId": "U1624Z1", + "id": "094d93fa-6e97-4a81-b1bf-79cbfee31d5f" + }, + { + "routeId": "L951", + "platformId": "U1624Z1", + "id": "77e61636-5a39-4f68-bd48-ae9311c75f7e" + }, + { + "routeId": "L419", + "platformId": "U1624Z2", + "id": "bab8fe37-a156-403f-8bc2-1917026576ae" + }, + { + "routeId": "L951", + "platformId": "U1624Z2", + "id": "2922f1df-dfdd-458d-85f4-434dc63f4674" + }, + { + "routeId": "L419", + "platformId": "U1625Z1", + "id": "52336d89-057c-4342-8fbc-5e5dbe9d335f" + }, + { + "routeId": "L951", + "platformId": "U1625Z1", + "id": "960fdaee-044c-4706-b9a0-daf3d5e2271b" + }, + { + "routeId": "L419", + "platformId": "U1625Z2", + "id": "61344083-4d73-4da9-8a03-9044344a77af" + }, + { + "routeId": "L951", + "platformId": "U1625Z2", + "id": "0335ba03-7875-4502-a477-9748dda8fff8" + }, + { + "routeId": "L419", + "platformId": "U1626Z1", + "id": "8c43ee03-bb82-4213-a982-7be3f1e6187c" + }, + { + "routeId": "L951", + "platformId": "U1626Z1", + "id": "bac25011-07fe-415f-b35a-ae2a1a8e02c1" + }, + { + "routeId": "L419", + "platformId": "U1626Z2", + "id": "8e260ced-9fe7-4fc3-a7ec-5f224c2805c2" + }, + { + "routeId": "L311", + "platformId": "U1626Z51", + "id": "4f4d91fd-9f6b-4b71-a5c2-c8cbb0f42c2e" + }, + { + "routeId": "L419", + "platformId": "U1627Z1", + "id": "1bc58d50-7fca-4603-b727-4025ae887129" + }, + { + "routeId": "L419", + "platformId": "U1627Z2", + "id": "d995c3c3-38bb-41b3-b555-747fe6efa729" + }, + { + "routeId": "L313", + "platformId": "U1629Z1", + "id": "04612b5f-adc2-47b6-bf0d-513c40168200" + }, + { + "routeId": "L313", + "platformId": "U1629Z2", + "id": "16a0de81-db53-4f49-a7a7-9153ea380832" + }, + { + "routeId": "L107", + "platformId": "U162Z5", + "id": "867c2bc4-333f-4719-9aaa-71104dbdaa08" + }, + { + "routeId": "L160", + "platformId": "U162Z5", + "id": "397255d3-c439-41d5-8fac-75bbc7b09fb5" + }, + { + "routeId": "L116", + "platformId": "U162Z5", + "id": "04269299-fe3e-456b-9d52-e5bb6b84bfbe" + }, + { + "routeId": "L147", + "platformId": "U162Z5", + "id": "3e17a107-653c-4cdb-969e-b14df47500f2" + }, + { + "routeId": "L902", + "platformId": "U162Z5", + "id": "f4ae4be6-198b-4967-9ceb-3c2b32d1b707" + }, + { + "routeId": "L909", + "platformId": "U162Z5", + "id": "bf3b3be9-ccf7-4757-aef7-dfc0ea720169" + }, + { + "routeId": "L340", + "platformId": "U162Z5", + "id": "76fd03a3-e4d6-46cc-8152-f7f58713097a" + }, + { + "routeId": "L355", + "platformId": "U162Z5", + "id": "c7c482f3-280d-4253-8dc5-1c0f8804ad7a" + }, + { + "routeId": "L954", + "platformId": "U162Z5", + "id": "3aecc026-25f6-438a-b4a2-31f6ee3c7f7b" + }, + { + "routeId": "L350", + "platformId": "U162Z5", + "id": "2046cc96-fdf4-4cd7-935e-264a2fe77f77" + }, + { + "routeId": "L107", + "platformId": "U162Z6", + "id": "c2acd2ad-36f8-4a4a-951d-a313c6ca8d4a" + }, + { + "routeId": "L160", + "platformId": "U162Z6", + "id": "fb0db071-9caf-4730-92f0-1bb48f004e94" + }, + { + "routeId": "L116", + "platformId": "U162Z6", + "id": "c6b41025-ef91-4179-9dbc-8696eb32376d" + }, + { + "routeId": "L147", + "platformId": "U162Z6", + "id": "c61a652c-87bb-4828-9886-3bf6a8036fef" + }, + { + "routeId": "L902", + "platformId": "U162Z6", + "id": "3a5830b8-4221-4af7-a805-b8cc53c9cedf" + }, + { + "routeId": "L909", + "platformId": "U162Z6", + "id": "7c3c85ad-8c76-4a30-b7ba-6ea3fca8cafa" + }, + { + "routeId": "L340", + "platformId": "U162Z6", + "id": "cb23fd89-b5a2-494a-875a-590432810071" + }, + { + "routeId": "L355", + "platformId": "U162Z6", + "id": "28071bf0-860f-4a90-8bcd-a9d97af66260" + }, + { + "routeId": "L954", + "platformId": "U162Z6", + "id": "c1b13835-9a5f-42aa-9e5c-b668dacdc9df" + }, + { + "routeId": "L350", + "platformId": "U162Z6", + "id": "627cd1c5-142c-437f-8871-2ebbb6d1a58b" + }, + { + "routeId": "L313", + "platformId": "U1630Z1", + "id": "5cd3c8e3-08c9-403e-a5a6-89182ec4321c" + }, + { + "routeId": "L313", + "platformId": "U1630Z2", + "id": "1c1cac8a-d18a-4716-aebf-0e74afb34537" + }, + { + "routeId": "L313", + "platformId": "U1631Z1", + "id": "7df574dd-5b64-4f43-8b2f-db3dac407ddb" + }, + { + "routeId": "L313", + "platformId": "U1631Z2", + "id": "ad99e2ce-3b50-479b-adbf-8c2da3c03971" + }, + { + "routeId": "L313", + "platformId": "U1632Z1", + "id": "5d56a88a-1229-4d78-bc20-aa332dc25eda" + }, + { + "routeId": "L313", + "platformId": "U1632Z2", + "id": "4b125de8-19e2-4815-8449-52ce36f2a651" + }, + { + "routeId": "L313", + "platformId": "U1633Z1", + "id": "18fed5d6-86d0-4987-bc14-5396b3036ac5" + }, + { + "routeId": "L951", + "platformId": "U1633Z1", + "id": "75cdedc3-2811-4dde-8151-6f20e04c03aa" + }, + { + "routeId": "L313", + "platformId": "U1633Z2", + "id": "3989be5a-62b5-4099-85aa-23182099dd9f" + }, + { + "routeId": "L951", + "platformId": "U1633Z2", + "id": "750d3af3-1650-4ec9-b703-d08c4ca53d7e" + }, + { + "routeId": "L313", + "platformId": "U1634Z1", + "id": "09bec52e-3788-44d2-ab94-d94261ebc904" + }, + { + "routeId": "L313", + "platformId": "U1634Z2", + "id": "b5104a95-b3f5-429a-b345-bb84c6c67a7a" + }, + { + "routeId": "L313", + "platformId": "U1635Z1", + "id": "2a9211ba-96e5-4677-9b91-bc918430426a" + }, + { + "routeId": "L313", + "platformId": "U1635Z2", + "id": "6e65e8d8-22e0-4a5c-9e1f-8ad44b567960" + }, + { + "routeId": "L313", + "platformId": "U1636Z2", + "id": "837ec44a-cf9e-4f85-b70b-7b44fd406063" + }, + { + "routeId": "L313", + "platformId": "U1636Z3", + "id": "1a1daf9a-5944-4391-b42c-8c5cf735d87b" + }, + { + "routeId": "L313", + "platformId": "U1637Z1", + "id": "620a4ff6-fa73-4a08-8e77-c46f78bdc263" + }, + { + "routeId": "L313", + "platformId": "U1637Z2", + "id": "a30860dd-873b-415c-8e9e-12caed8f09a5" + }, + { + "routeId": "L311", + "platformId": "U1638Z3", + "id": "e9524ec5-bc90-4c51-8ae0-5fb8f526f981" + }, + { + "routeId": "L311", + "platformId": "U1638Z4", + "id": "e85a8cb6-734e-467e-b43c-46833eec4fae" + }, + { + "routeId": "L313", + "platformId": "U1639Z1", + "id": "d4d2d999-35e4-41a5-8247-2693f7178944" + }, + { + "routeId": "L313", + "platformId": "U1639Z2", + "id": "1b2c3cff-68fd-4641-9baf-f1b383e15290" + }, + { + "routeId": "L1", + "platformId": "U163Z1", + "id": "fe3fc230-5715-421e-99be-5334f6aafce3" + }, + { + "routeId": "L2", + "platformId": "U163Z1", + "id": "1b11c056-e6ca-4e9e-a367-91fbcce88622" + }, + { + "routeId": "L8", + "platformId": "U163Z1", + "id": "20c247e7-4491-4d5f-9954-c9016a10c11c" + }, + { + "routeId": "L18", + "platformId": "U163Z1", + "id": "72a4ee45-fb69-4213-9c88-9f23a3021f7e" + }, + { + "routeId": "L20", + "platformId": "U163Z1", + "id": "260f5038-e25a-4c70-be44-01daddb00704" + }, + { + "routeId": "L25", + "platformId": "U163Z1", + "id": "8edbc02d-e03e-40cb-9f08-f8c754365e01" + }, + { + "routeId": "L26", + "platformId": "U163Z1", + "id": "8d01573c-8e4d-4b97-8cc0-928c94b40784" + }, + { + "routeId": "L91", + "platformId": "U163Z1", + "id": "1ef5bc44-c1ff-4ccb-8bef-697d696c8bd4" + }, + { + "routeId": "L96", + "platformId": "U163Z1", + "id": "07208d01-df75-4d58-922a-e77b396e9139" + }, + { + "routeId": "L97", + "platformId": "U163Z1", + "id": "f256262f-2a8d-45ba-81aa-b731bb626764" + }, + { + "routeId": "L909", + "platformId": "U163Z10", + "id": "3e137ccd-ce8d-4a09-8866-3a5c42315968" + }, + { + "routeId": "L991", + "platformId": "U163Z101", + "id": "0a041bca-023a-4395-9f49-1828f0948c62" + }, + { + "routeId": "L991", + "platformId": "U163Z102", + "id": "73fd22e0-dfcd-43b8-be2b-97b658c3d369" + }, + { + "routeId": "L1", + "platformId": "U163Z2", + "id": "f0605d66-e43b-4187-b5f9-8f13106108fa" + }, + { + "routeId": "L2", + "platformId": "U163Z2", + "id": "407ce025-7166-4ad4-abd1-580fb24f4cda" + }, + { + "routeId": "L8", + "platformId": "U163Z2", + "id": "f9741e5e-fa03-4314-8726-4cd6d7b92ab3" + }, + { + "routeId": "L18", + "platformId": "U163Z2", + "id": "83644f97-3f22-490d-8bda-e0c957c85cf6" + }, + { + "routeId": "L20", + "platformId": "U163Z2", + "id": "3cde2101-4f77-483f-aeb9-189e6fdae765" + }, + { + "routeId": "L25", + "platformId": "U163Z2", + "id": "2c453a78-c04e-4eda-b722-c65e863ad558" + }, + { + "routeId": "L26", + "platformId": "U163Z2", + "id": "3357af3e-6e3b-4d41-9c91-80559406848e" + }, + { + "routeId": "L91", + "platformId": "U163Z2", + "id": "59c013c0-65a2-487c-acee-0e56d31edd50" + }, + { + "routeId": "L96", + "platformId": "U163Z2", + "id": "9548803d-5798-4bf8-87c9-0fa97c38e7d6" + }, + { + "routeId": "L97", + "platformId": "U163Z2", + "id": "853d903d-0b65-4bdd-8856-a2a6090b7716" + }, + { + "routeId": "L1224", + "platformId": "U163Z301", + "id": "61c31497-4b09-4ad4-967a-86d42c420deb" + }, + { + "routeId": "L1245", + "platformId": "U163Z301", + "id": "2dd9a5b3-f067-45a8-a4ad-16cbc1005c03" + }, + { + "routeId": "L1305", + "platformId": "U163Z301", + "id": "1bfff92e-46c1-403e-a5fb-039050c87226" + }, + { + "routeId": "L1354", + "platformId": "U163Z301", + "id": "4af17090-c096-4388-84cd-c59db231c9f3" + }, + { + "routeId": "L131", + "platformId": "U163Z5", + "id": "d34405e0-9d60-4fa5-93bc-ca15048d5b64" + }, + { + "routeId": "L907", + "platformId": "U163Z5", + "id": "521f95ae-4706-4f3c-912c-9dd5cda705f2" + }, + { + "routeId": "L131", + "platformId": "U163Z6", + "id": "298d557e-de75-491d-bd4e-97f611ead5cd" + }, + { + "routeId": "L907", + "platformId": "U163Z6", + "id": "808bba48-cf7c-422c-9071-8d496413570f" + }, + { + "routeId": "L909", + "platformId": "U163Z9", + "id": "3fad209c-537e-484c-8370-5e4677cf3cfe" + }, + { + "routeId": "L347", + "platformId": "U1643Z1", + "id": "850cad52-094a-459c-8d21-1ec7c0223c4a" + }, + { + "routeId": "L307", + "platformId": "U1643Z1", + "id": "1ac3d7d8-f1cb-4b23-b25f-c9fbe5e95b34" + }, + { + "routeId": "L310", + "platformId": "U1643Z1", + "id": "c816c698-0459-460d-8d53-33f850a8e5b9" + }, + { + "routeId": "L311", + "platformId": "U1643Z1", + "id": "32aae39b-755a-4572-9a13-4f5b11a97467" + }, + { + "routeId": "L380", + "platformId": "U1643Z1", + "id": "5543fea2-ed4a-49a9-9817-1e59adc0c1f1" + }, + { + "routeId": "L308", + "platformId": "U1643Z1", + "id": "9dbcfc4d-4162-41dd-aaf1-01756c100b6e" + }, + { + "routeId": "L952", + "platformId": "U1643Z1", + "id": "71ca4860-bb39-4060-8c73-32da1904f149" + }, + { + "routeId": "L347", + "platformId": "U1643Z2", + "id": "5ee0ba19-ab69-452d-b13a-a7739091e41f" + }, + { + "routeId": "L307", + "platformId": "U1643Z2", + "id": "32cd545b-b959-40b1-8644-b5586a00694f" + }, + { + "routeId": "L311", + "platformId": "U1643Z2", + "id": "58e4e6e9-9966-40b3-9d6d-f33edc131c0f" + }, + { + "routeId": "L308", + "platformId": "U1643Z2", + "id": "df9d4e51-03ad-4956-bbd1-6e252367ef3a" + }, + { + "routeId": "L380", + "platformId": "U1643Z2", + "id": "14ab2d1c-19a6-4da9-8641-509d0f5b7a01" + }, + { + "routeId": "L310", + "platformId": "U1643Z2", + "id": "fc49012c-0946-4541-8f5f-d7c1b1607a03" + }, + { + "routeId": "L952", + "platformId": "U1643Z2", + "id": "af0dd1ab-3ed5-4638-a22d-0bca6151a524" + }, + { + "routeId": "L307", + "platformId": "U1644Z1", + "id": "412d129f-ced2-4048-8204-5d61b0817815" + }, + { + "routeId": "L311", + "platformId": "U1644Z1", + "id": "8d2bf63d-9303-4f48-81bb-18cce2e4c3a3" + }, + { + "routeId": "L380", + "platformId": "U1644Z1", + "id": "b8563834-ec06-478f-be47-86fd98537da3" + }, + { + "routeId": "L308", + "platformId": "U1644Z1", + "id": "382045f2-2844-4226-b75f-2c11dfea140a" + }, + { + "routeId": "L952", + "platformId": "U1644Z1", + "id": "4ba0d126-fae7-4236-a837-edaae62c19e8" + }, + { + "routeId": "L307", + "platformId": "U1644Z2", + "id": "da04ace5-3de8-44ef-8eb7-e08d3c026e42" + }, + { + "routeId": "L311", + "platformId": "U1644Z2", + "id": "585ad355-7f04-4708-98bb-fbdee73de059" + }, + { + "routeId": "L308", + "platformId": "U1644Z2", + "id": "1da2a83a-4ce2-4d9f-8cb6-1fb04f72bda0" + }, + { + "routeId": "L380", + "platformId": "U1644Z2", + "id": "685d87eb-f3e7-457c-bc93-47d8c09fc3e3" + }, + { + "routeId": "L952", + "platformId": "U1644Z2", + "id": "74c53212-bade-44a3-b964-29895a646606" + }, + { + "routeId": "L307", + "platformId": "U1645Z1", + "id": "c613ba72-a280-406f-917d-50a200289150" + }, + { + "routeId": "L311", + "platformId": "U1645Z1", + "id": "f841bc13-1300-406d-a1e0-410a2d8c47d6" + }, + { + "routeId": "L380", + "platformId": "U1645Z1", + "id": "60ce304a-3667-4ecb-ba49-0c164bd4ef15" + }, + { + "routeId": "L308", + "platformId": "U1645Z1", + "id": "f6ce603f-0f45-4ea8-8cae-e835157c6300" + }, + { + "routeId": "L952", + "platformId": "U1645Z1", + "id": "a6984d81-6f28-4584-8c8e-6e1ae01f99e9" + }, + { + "routeId": "L307", + "platformId": "U1645Z2", + "id": "1cc21cda-c163-4f65-b535-6464740a55a7" + }, + { + "routeId": "L311", + "platformId": "U1645Z2", + "id": "202ae7c7-5b44-4bb7-bc0c-ca75902ffca4" + }, + { + "routeId": "L308", + "platformId": "U1645Z2", + "id": "56eb24ce-3e8a-4d45-8441-c25c2d6ee45e" + }, + { + "routeId": "L380", + "platformId": "U1645Z2", + "id": "33965277-ca0d-4dff-acdc-536ad4aebd77" + }, + { + "routeId": "L952", + "platformId": "U1645Z2", + "id": "0d7178ae-4f53-4ec2-ae6f-f699ff8f13e8" + }, + { + "routeId": "L1226", + "platformId": "U1645Z301", + "id": "1999f608-8015-4a0c-a2a9-48f67acbdfd7" + }, + { + "routeId": "L1306", + "platformId": "U1645Z301", + "id": "f2ee0e1b-a63b-4c5d-b5a9-b040a2e5ca2c" + }, + { + "routeId": "L1365", + "platformId": "U1645Z301", + "id": "5be0e65a-1dea-469d-bc91-3e03ecbbb936" + }, + { + "routeId": "L307", + "platformId": "U1646Z1", + "id": "5450be96-11b0-4dfe-a4a7-3af7dbfe62d6" + }, + { + "routeId": "L311", + "platformId": "U1646Z1", + "id": "c510b5b6-33ef-49c9-90e9-3ebeca4df410" + }, + { + "routeId": "L380", + "platformId": "U1646Z1", + "id": "977de7ca-a24c-44c6-b985-4c663ca77ebc" + }, + { + "routeId": "L308", + "platformId": "U1646Z1", + "id": "c05f9a70-be0a-4393-8ab6-39022afce393" + }, + { + "routeId": "L952", + "platformId": "U1646Z1", + "id": "96463aa8-4a3f-40d7-8f92-034336322789" + }, + { + "routeId": "L307", + "platformId": "U1646Z2", + "id": "a35d82d7-0fdc-4039-bf87-429cbb26b6d0" + }, + { + "routeId": "L311", + "platformId": "U1646Z2", + "id": "902a5069-6929-4e0c-8518-45238506d328" + }, + { + "routeId": "L308", + "platformId": "U1646Z2", + "id": "125ba9cd-95a4-4790-9308-766558439778" + }, + { + "routeId": "L380", + "platformId": "U1646Z2", + "id": "aaf3e649-5e48-4446-bd8a-049a9023fc1b" + }, + { + "routeId": "L952", + "platformId": "U1646Z2", + "id": "5466523b-f4fa-4590-8213-21e4cd107954" + }, + { + "routeId": "L307", + "platformId": "U1647Z1", + "id": "836d3b6a-23df-4eaf-a616-8087536e27ba" + }, + { + "routeId": "L311", + "platformId": "U1647Z1", + "id": "8acc7632-19c5-4435-8b73-3f8c6b6a8462" + }, + { + "routeId": "L380", + "platformId": "U1647Z1", + "id": "b89ea360-8cee-4d5a-8b2f-7b84463e46b6" + }, + { + "routeId": "L308", + "platformId": "U1647Z1", + "id": "eb519d9b-a88d-461b-9cd5-fc40594d0513" + }, + { + "routeId": "L952", + "platformId": "U1647Z1", + "id": "9fb0ca46-3757-4a9d-bea3-e6027e7dbd76" + }, + { + "routeId": "L307", + "platformId": "U1647Z2", + "id": "eb8f31c5-37fb-4783-a5cb-e579986d9427" + }, + { + "routeId": "L311", + "platformId": "U1647Z2", + "id": "ed23012f-bf20-4763-92f0-7989479b76b6" + }, + { + "routeId": "L308", + "platformId": "U1647Z2", + "id": "c80d7c80-c794-4500-9ff9-b4ad265b5d1a" + }, + { + "routeId": "L380", + "platformId": "U1647Z2", + "id": "cc2b5f6e-91cb-4dc9-9898-ace66440eaa9" + }, + { + "routeId": "L952", + "platformId": "U1647Z2", + "id": "2ab519bb-abca-438d-8b7e-d5b15219cc00" + }, + { + "routeId": "L307", + "platformId": "U1648Z1", + "id": "ae4547d2-01d0-42de-969e-5665e2acef85" + }, + { + "routeId": "L311", + "platformId": "U1648Z1", + "id": "3f19935d-de2c-4b5b-b9d4-583886a09e2c" + }, + { + "routeId": "L380", + "platformId": "U1648Z1", + "id": "c70fea2a-41f2-40d6-8805-28f2bb71093b" + }, + { + "routeId": "L308", + "platformId": "U1648Z1", + "id": "5abccd9c-1686-4b16-9962-fe6fa43dda07" + }, + { + "routeId": "L952", + "platformId": "U1648Z1", + "id": "597a327f-f9a9-45b8-aa74-558fd1486c69" + }, + { + "routeId": "L307", + "platformId": "U1648Z2", + "id": "b752649b-7720-4c6d-9136-2cfbd87186a8" + }, + { + "routeId": "L311", + "platformId": "U1648Z2", + "id": "79f5a3b0-a72e-4afb-83af-97e604df86a0" + }, + { + "routeId": "L308", + "platformId": "U1648Z2", + "id": "0ffd9e01-9c0c-447b-a805-66889b7d44f1" + }, + { + "routeId": "L380", + "platformId": "U1648Z2", + "id": "1d0a565b-93fa-41e8-9f43-a25b736e164a" + }, + { + "routeId": "L952", + "platformId": "U1648Z2", + "id": "88916c1a-5049-4a2c-be50-4fa381fa9dff" + }, + { + "routeId": "L307", + "platformId": "U1649Z1", + "id": "7179b611-b64f-40ce-bff6-c8f7461426fb" + }, + { + "routeId": "L311", + "platformId": "U1649Z1", + "id": "967480f0-ef47-4e6a-953c-dbec6627abc3" + }, + { + "routeId": "L380", + "platformId": "U1649Z1", + "id": "3091e0ed-e9b2-4173-9d1d-0537c27d0eda" + }, + { + "routeId": "L308", + "platformId": "U1649Z1", + "id": "42038c8c-d433-4ae5-b699-20e486ad77ff" + }, + { + "routeId": "L952", + "platformId": "U1649Z1", + "id": "feb2c395-ab1b-496a-ba80-5ff2ba895cf4" + }, + { + "routeId": "L307", + "platformId": "U1649Z2", + "id": "46e9c104-3582-45cc-8711-c021c8c5224d" + }, + { + "routeId": "L311", + "platformId": "U1649Z2", + "id": "b5d10768-e726-485b-82e6-a4439f25d9cc" + }, + { + "routeId": "L308", + "platformId": "U1649Z2", + "id": "9b8d3db6-d4f3-4488-8675-ed0914d6d9ac" + }, + { + "routeId": "L380", + "platformId": "U1649Z2", + "id": "33b160d2-3983-4c24-a08b-20beb2bcec86" + }, + { + "routeId": "L952", + "platformId": "U1649Z2", + "id": "f9c22cc1-3046-4c2b-b795-f2b0532fa76d" + }, + { + "routeId": "L327", + "platformId": "U164Z3", + "id": "de19fc14-8bb2-4266-8f77-2b0cb34567ad" + }, + { + "routeId": "L331", + "platformId": "U164Z3", + "id": "f6e124cc-5ce9-4e9e-a9ca-3eb315ac3ea0" + }, + { + "routeId": "L327", + "platformId": "U164Z4", + "id": "0fee7b4b-c6cc-4f92-a701-bf35c0e28dd5" + }, + { + "routeId": "L331", + "platformId": "U164Z4", + "id": "4ea338c7-4c69-4052-885b-a094cc3c76c2" + }, + { + "routeId": "L311", + "platformId": "U1650Z1", + "id": "121e0087-ae0d-4fd6-91d6-016d94065d3e" + }, + { + "routeId": "L308", + "platformId": "U1650Z1", + "id": "7475fff5-d366-46ec-9d59-7fa5d6f44c94" + }, + { + "routeId": "L311", + "platformId": "U1650Z2", + "id": "36b29ea1-d02e-466e-9715-727aa58b00e7" + }, + { + "routeId": "L308", + "platformId": "U1650Z2", + "id": "104a9a05-5279-466f-b771-c0a87ade149b" + }, + { + "routeId": "L1226", + "platformId": "U1650Z301", + "id": "cd944a80-1c85-466d-9183-9c360e447d63" + }, + { + "routeId": "L1306", + "platformId": "U1650Z301", + "id": "b6c22e42-9422-4031-8ee3-7682cbd9bec8" + }, + { + "routeId": "L311", + "platformId": "U1651Z1", + "id": "9bf56727-aacd-447d-a8b9-4a5afe1f76ea" + }, + { + "routeId": "L308", + "platformId": "U1651Z1", + "id": "ae9eb6ca-003c-4a9b-ba99-0280c0809a6d" + }, + { + "routeId": "L952", + "platformId": "U1651Z1", + "id": "131bc00f-a4bf-430f-be0d-64cecf95e299" + }, + { + "routeId": "L311", + "platformId": "U1651Z2", + "id": "eba62091-5e68-41ab-8c36-8090e87d8c32" + }, + { + "routeId": "L308", + "platformId": "U1651Z2", + "id": "5dc681bc-3bee-4375-8e14-2fe3dc9bed2a" + }, + { + "routeId": "L952", + "platformId": "U1651Z2", + "id": "5287473a-0801-4f2a-a744-943baa87bc60" + }, + { + "routeId": "L311", + "platformId": "U1652Z1", + "id": "44a8553f-9828-489c-9e6d-b2b1b07d4ceb" + }, + { + "routeId": "L310", + "platformId": "U1652Z1", + "id": "3bcbcb85-9ff6-494d-ac6a-b6ec08351ee1" + }, + { + "routeId": "L952", + "platformId": "U1652Z1", + "id": "4b082125-f3ae-4631-8f8f-9558a2d7ab6e" + }, + { + "routeId": "L311", + "platformId": "U1652Z2", + "id": "c5149095-16cd-4345-bbe2-6a37e2845be4" + }, + { + "routeId": "L310", + "platformId": "U1652Z2", + "id": "ed55bd4c-c46f-4b56-a7d9-6071a5eda3e4" + }, + { + "routeId": "L308", + "platformId": "U1652Z2", + "id": "3f6961fc-51cd-4329-9453-24a50c6f2865" + }, + { + "routeId": "L952", + "platformId": "U1652Z2", + "id": "d2a5d882-eca9-42e7-9b00-375f5b74c5f4" + }, + { + "routeId": "L311", + "platformId": "U1653Z1", + "id": "0f97bed0-6ccb-43ec-95bd-b826b49ca694" + }, + { + "routeId": "L952", + "platformId": "U1653Z1", + "id": "bca2f807-fd12-4665-a606-120fb3a409f6" + }, + { + "routeId": "L311", + "platformId": "U1653Z2", + "id": "1a7a567b-0e5e-4523-8771-d466dcdc9afe" + }, + { + "routeId": "L952", + "platformId": "U1653Z2", + "id": "a25ee7f9-8ca2-433a-b957-601f517df63d" + }, + { + "routeId": "L311", + "platformId": "U1654Z1", + "id": "877ffe80-2646-4aa0-9543-b5f92d058be8" + }, + { + "routeId": "L952", + "platformId": "U1654Z1", + "id": "995bbfbe-49f1-426e-81ba-293291614429" + }, + { + "routeId": "L311", + "platformId": "U1654Z2", + "id": "75fea3a1-ee65-4ea7-b7de-31643adb34f0" + }, + { + "routeId": "L952", + "platformId": "U1654Z2", + "id": "65ceb538-ffdf-4892-8770-ef237352a6e6" + }, + { + "routeId": "L311", + "platformId": "U1655Z1", + "id": "919d7305-f26f-42ff-880c-573cd1baa22b" + }, + { + "routeId": "L311", + "platformId": "U1655Z2", + "id": "ab5614ab-6987-4981-941e-e2c945cdb9d1" + }, + { + "routeId": "L1226", + "platformId": "U1655Z301", + "id": "4f8eaa13-be97-4af6-8447-3c75d66255f9" + }, + { + "routeId": "L1306", + "platformId": "U1655Z301", + "id": "9e261422-35ae-4ffa-9466-853fc6c49f9c" + }, + { + "routeId": "L311", + "platformId": "U1656Z1", + "id": "891f9901-3824-443c-871f-aa5b3bc856bc" + }, + { + "routeId": "L311", + "platformId": "U1656Z2", + "id": "65df050c-d4fe-40f9-847f-b7867de3cd78" + }, + { + "routeId": "L311", + "platformId": "U1657Z1", + "id": "8da584d2-1067-4c79-935a-6d2e97d4e251" + }, + { + "routeId": "L311", + "platformId": "U1657Z2", + "id": "9d8a29d6-5f3d-4c86-a99d-5aef943b6be6" + }, + { + "routeId": "L311", + "platformId": "U1658Z1", + "id": "3fdf42c3-6a12-48d2-ba4d-dc1e113df479" + }, + { + "routeId": "L311", + "platformId": "U1658Z2", + "id": "a52be3ec-59a8-45b7-ae6b-7452a9cd1eb2" + }, + { + "routeId": "L311", + "platformId": "U1659Z1", + "id": "67460e00-8d85-42f2-9d04-327f95eb9369" + }, + { + "routeId": "L311", + "platformId": "U1659Z2", + "id": "9e7b309d-2cc8-4299-aa07-f7f99b41998a" + }, + { + "routeId": "L327", + "platformId": "U165Z1", + "id": "f84a6bc1-530d-4259-a3ef-a5fc278b30ea" + }, + { + "routeId": "L331", + "platformId": "U165Z1", + "id": "33589219-2843-4449-82d3-58001655a05b" + }, + { + "routeId": "L154", + "platformId": "U165Z2", + "id": "51ecc1f7-edf8-4b09-845b-08e9749ebc1a" + }, + { + "routeId": "L901", + "platformId": "U165Z2", + "id": "71df8ef6-6712-4a91-8751-6d109f461aaa" + }, + { + "routeId": "L357", + "platformId": "U165Z2", + "id": "13ef42f9-7c75-48d9-be0f-49adb82560b3" + }, + { + "routeId": "L327", + "platformId": "U165Z2", + "id": "c9c9b84e-ee18-46a5-8c5a-b2bf4a7c0cb8" + }, + { + "routeId": "L331", + "platformId": "U165Z2", + "id": "1e97d554-d363-4b0a-a05b-851cd4654012" + }, + { + "routeId": "L154", + "platformId": "U165Z3", + "id": "29da863e-046b-4dfd-80a0-380ed2b529db" + }, + { + "routeId": "L901", + "platformId": "U165Z3", + "id": "87ac51f2-ae81-4e6f-8b2d-10576bdd2725" + }, + { + "routeId": "L357", + "platformId": "U165Z5", + "id": "b36551ec-373a-46fa-b20a-473f39b1923c" + }, + { + "routeId": "L311", + "platformId": "U1660Z1", + "id": "b37902d9-f229-48cc-87d9-e7e4e22a88e1" + }, + { + "routeId": "L311", + "platformId": "U1660Z2", + "id": "50f4720c-104b-4e37-bc41-6b31be51e431" + }, + { + "routeId": "L311", + "platformId": "U1661Z1", + "id": "4dfed0f2-c2a6-43da-9577-87749f4b14aa" + }, + { + "routeId": "L311", + "platformId": "U1661Z2", + "id": "1b4667e0-888a-495b-a413-b55cb46cf2b7" + }, + { + "routeId": "L311", + "platformId": "U1662Z1", + "id": "2b280e9f-37d9-4e16-889c-407a5472408c" + }, + { + "routeId": "L311", + "platformId": "U1663Z1", + "id": "91c262b3-5972-4338-a889-dddccfee1c08" + }, + { + "routeId": "L311", + "platformId": "U1663Z2", + "id": "2606d54e-1435-440f-ac57-9a7602391cb8" + }, + { + "routeId": "L311", + "platformId": "U1664Z1", + "id": "bf117e68-0bb6-4965-a2ec-4cf1d2a6756e" + }, + { + "routeId": "L311", + "platformId": "U1664Z2", + "id": "b5c3646e-4fbf-4b74-a4a8-7a0b20bcbe95" + }, + { + "routeId": "L311", + "platformId": "U1665Z1", + "id": "f53c958b-e6fa-48cc-9214-746c82217e97" + }, + { + "routeId": "L311", + "platformId": "U1665Z2", + "id": "386255a3-0291-4ba4-b8d0-78a06c94b4b0" + }, + { + "routeId": "L310", + "platformId": "U1666Z1", + "id": "4d434d0e-7768-4028-add9-aff24225cd14" + }, + { + "routeId": "L310", + "platformId": "U1666Z2", + "id": "3f14c2e4-5684-4a60-829b-bfeb6bff34db" + }, + { + "routeId": "L310", + "platformId": "U1667Z1", + "id": "6f6e869b-5e6b-4ff6-a756-3433f40d5bc7" + }, + { + "routeId": "L310", + "platformId": "U1667Z2", + "id": "a85b1af0-5172-4f97-ba7a-0caca903d29b" + }, + { + "routeId": "L310", + "platformId": "U1668Z1", + "id": "d9db5804-9d7c-4655-ba62-6ed6a6f26e9a" + }, + { + "routeId": "L310", + "platformId": "U1668Z2", + "id": "47da3776-bcfc-42dd-989a-84c482357c49" + }, + { + "routeId": "L310", + "platformId": "U1669Z1", + "id": "c462539a-af5b-4f0a-b790-6dee659fda76" + }, + { + "routeId": "L310", + "platformId": "U1669Z2", + "id": "61ab360b-2727-4883-9c39-2cf648d9aa5e" + }, + { + "routeId": "L177", + "platformId": "U166Z1", + "id": "02c57bb9-a501-4db7-bbab-ed62a34023b7" + }, + { + "routeId": "L901", + "platformId": "U166Z1", + "id": "2c08f3b5-efbf-4db1-9c20-4b04a3ca987f" + }, + { + "routeId": "L906", + "platformId": "U166Z1", + "id": "2ed75d42-3ad1-4956-8e06-e5af653a6d31" + }, + { + "routeId": "L177", + "platformId": "U166Z2", + "id": "0fd898d9-a661-4d51-8280-02b45111d03b" + }, + { + "routeId": "L901", + "platformId": "U166Z2", + "id": "524a7457-f6b3-45ef-84d0-08a7218d08d2" + }, + { + "routeId": "L906", + "platformId": "U166Z2", + "id": "e33e2484-cf3a-4361-a336-da9e15ae32b9" + }, + { + "routeId": "L350", + "platformId": "U1670Z3", + "id": "351abaeb-2e86-4327-82a1-87b090d5d6d6" + }, + { + "routeId": "L350", + "platformId": "U1670Z4", + "id": "f35ba73f-1ff2-4da8-95b5-3d434155c07e" + }, + { + "routeId": "L954", + "platformId": "U1670Z4", + "id": "58d33b51-4729-4901-bd4b-616b7c0831c6" + }, + { + "routeId": "L302", + "platformId": "U1671Z1", + "id": "99ddfe62-e946-4a02-93a2-e39383b17725" + }, + { + "routeId": "L302", + "platformId": "U1672Z1", + "id": "313f37ef-ef96-4220-a42d-19f14249c71d" + }, + { + "routeId": "L302", + "platformId": "U1672Z2", + "id": "cc8e33ea-3a4b-4849-b184-c9a91f782016" + }, + { + "routeId": "L954", + "platformId": "U1673Z1", + "id": "60d605ec-de5e-4549-b05d-18e76cbf4fcc" + }, + { + "routeId": "L350", + "platformId": "U1673Z4", + "id": "251614f2-8634-4b4a-ba01-52a4a1cdc872" + }, + { + "routeId": "L350", + "platformId": "U1673Z5", + "id": "8fee63bb-2345-438b-8808-a62d306d5a0b" + }, + { + "routeId": "L380", + "platformId": "U1674Z1", + "id": "898fa8c5-30a2-447d-a398-1112da952ed5" + }, + { + "routeId": "L380", + "platformId": "U1674Z2", + "id": "12fceb1d-2362-4a11-aa53-684f040f85bb" + }, + { + "routeId": "L307", + "platformId": "U1675Z1", + "id": "095104c2-fa65-4165-9880-be1c2eb9b81a" + }, + { + "routeId": "L307", + "platformId": "U1675Z2", + "id": "82e6307c-ca19-4873-8406-fa6807c7b011" + }, + { + "routeId": "L307", + "platformId": "U1676Z1", + "id": "043cfba5-5a23-4bbb-b337-c26a626f915b" + }, + { + "routeId": "L307", + "platformId": "U1676Z2", + "id": "e47ac594-2260-40af-a60b-0ed2c7114699" + }, + { + "routeId": "L307", + "platformId": "U1677Z1", + "id": "fc58351e-bbe9-4aaa-819f-d89b5bc4bbc9" + }, + { + "routeId": "L307", + "platformId": "U1677Z2", + "id": "251dcf2c-94b0-4f82-af48-8cb6f5e30bed" + }, + { + "routeId": "L307", + "platformId": "U1678Z1", + "id": "31ebc205-2d2a-499c-a245-ecc29cba4568" + }, + { + "routeId": "L307", + "platformId": "U1678Z2", + "id": "4847afc1-0a84-46a6-8501-a0c811ee6f70" + }, + { + "routeId": "L307", + "platformId": "U1679Z1", + "id": "b76ffd68-d6e7-4d2d-b551-d194cab25c35" + }, + { + "routeId": "L307", + "platformId": "U1679Z2", + "id": "07f1d3c5-1aac-4dc9-8f42-a1affb0b9e96" + }, + { + "routeId": "L103", + "platformId": "U167Z1", + "id": "c307bbc2-9daf-4e07-8e3a-fc6f6dd1a9ba" + }, + { + "routeId": "L283", + "platformId": "U167Z1", + "id": "2cf247b5-7d02-4cdc-8e18-bcb65bbfb5cc" + }, + { + "routeId": "L914", + "platformId": "U167Z1", + "id": "3743af43-03ba-476e-abaa-edf8d66f96be" + }, + { + "routeId": "L348", + "platformId": "U167Z1", + "id": "314de76a-2d44-43c7-8721-f28f01bfb968" + }, + { + "routeId": "L369", + "platformId": "U167Z1", + "id": "4c9be830-b0b4-404d-9572-55777a02ac5b" + }, + { + "routeId": "L103", + "platformId": "U167Z2", + "id": "9e7ab67a-19c1-40c8-b1ef-8b4f6a550d5c" + }, + { + "routeId": "L283", + "platformId": "U167Z2", + "id": "96986b36-440a-4e1b-94d0-6246e4013b8a" + }, + { + "routeId": "L914", + "platformId": "U167Z2", + "id": "1e6d9411-b908-498b-9bdc-01c3d0f0b205" + }, + { + "routeId": "L348", + "platformId": "U167Z2", + "id": "2cc9f981-0349-4b85-8a73-3b1f5d6423ba" + }, + { + "routeId": "L369", + "platformId": "U167Z2", + "id": "038d8d8f-15ca-4fad-bb3f-a35474f3f62b" + }, + { + "routeId": "L307", + "platformId": "U1682Z3", + "id": "81a70cb4-4d2b-406c-a8c8-e12b1d288f49" + }, + { + "routeId": "L307", + "platformId": "U1682Z5", + "id": "8dfc43dc-30d6-406e-9858-f97b51a91235" + }, + { + "routeId": "L307", + "platformId": "U1683Z1", + "id": "0c73ea0f-a545-433d-b44c-120ada32bd2f" + }, + { + "routeId": "L307", + "platformId": "U1683Z2", + "id": "433c96b6-0eb5-4528-9a63-a4f42da979de" + }, + { + "routeId": "L307", + "platformId": "U1684Z1", + "id": "a05a7cae-5ead-47ad-abc1-f911c6624fd4" + }, + { + "routeId": "L307", + "platformId": "U1684Z2", + "id": "6acd44b9-7988-4ac8-9ab4-f240721e2899" + }, + { + "routeId": "L307", + "platformId": "U1686Z1", + "id": "1163f8eb-5f2c-4eb3-bc33-5defa0230862" + }, + { + "routeId": "L386", + "platformId": "U1686Z1", + "id": "d1849b9c-4cfd-42c2-9664-1aabf5a4d57d" + }, + { + "routeId": "L429", + "platformId": "U1686Z1", + "id": "37db51bf-3b74-40df-8447-aa1f6cc813e7" + }, + { + "routeId": "L365", + "platformId": "U1686Z2", + "id": "09d95487-15e2-4b4a-ad19-ba3e8fbfca65" + }, + { + "routeId": "L630", + "platformId": "U1686Z2", + "id": "cb2823bc-5dd4-4481-b275-85fe47c4741a" + }, + { + "routeId": "L307", + "platformId": "U1686Z3", + "id": "67fa292b-d9d2-4569-acda-3b37c0dff2ac" + }, + { + "routeId": "L630", + "platformId": "U1686Z3", + "id": "4ddaaff4-fb40-4d23-bbc0-148840acac79" + }, + { + "routeId": "L365", + "platformId": "U1686Z4", + "id": "845b9ee3-799d-44ad-a6a7-6eebb4120f15" + }, + { + "routeId": "L386", + "platformId": "U1686Z4", + "id": "10ee62a6-e2be-4dd8-9522-f1256a4b59c3" + }, + { + "routeId": "L307", + "platformId": "U1686Z6", + "id": "5adebf3c-3f62-4f6a-be22-1c119096c30c" + }, + { + "routeId": "L630", + "platformId": "U1686Z6", + "id": "8717a90c-554b-454f-93d6-7c51c5641ada" + }, + { + "routeId": "L461", + "platformId": "U1687Z1", + "id": "a938f07f-dd19-4253-8248-9e1d3abbce6f" + }, + { + "routeId": "L461", + "platformId": "U1687Z2", + "id": "cf58eef2-a5d6-47ec-ba06-03ca9fab50de" + }, + { + "routeId": "L461", + "platformId": "U1688Z1", + "id": "6466857c-109a-41c1-b5b0-0430bc3974ee" + }, + { + "routeId": "L461", + "platformId": "U1688Z2", + "id": "30e343e4-d5a1-46f2-9841-11737b67f3c0" + }, + { + "routeId": "L461", + "platformId": "U1689Z1", + "id": "5b17cf16-ddd3-4980-ae10-ae30571d1ca7" + }, + { + "routeId": "L461", + "platformId": "U1689Z2", + "id": "4264e2be-7be4-4439-8b26-cf0be36141af" + }, + { + "routeId": "L176", + "platformId": "U168Z1", + "id": "8f7c13a9-91c1-4df0-907b-d305f2ba9329" + }, + { + "routeId": "L910", + "platformId": "U168Z1", + "id": "a0b5151a-e450-4f0c-943a-aa18843618ab" + }, + { + "routeId": "L176", + "platformId": "U168Z2", + "id": "a0036b7d-9b65-4639-ae98-361860f96cc8" + }, + { + "routeId": "L910", + "platformId": "U168Z2", + "id": "9cc6e83a-7fe7-42e9-b0ea-6d1addfce95c" + }, + { + "routeId": "L316", + "platformId": "U1690Z1", + "id": "91ce1346-a0a3-4bf1-81b7-35686a1c620f" + }, + { + "routeId": "L350", + "platformId": "U1690Z1", + "id": "ffba18b4-975f-468d-aee7-18b529da1936" + }, + { + "routeId": "L954", + "platformId": "U1690Z1", + "id": "ce393a26-34f9-4992-86d8-fbbe9bce4ea9" + }, + { + "routeId": "L316", + "platformId": "U1690Z2", + "id": "5c19c875-a5e6-40be-b91e-1b24d41118c4" + }, + { + "routeId": "L350", + "platformId": "U1690Z2", + "id": "043488ad-3225-4b10-80e0-4ea2c9562173" + }, + { + "routeId": "L350", + "platformId": "U1690Z8", + "id": "72cdf879-e8e5-4a8e-b5b5-e1a5355a2228" + }, + { + "routeId": "L954", + "platformId": "U1690Z8", + "id": "a8beffe0-f17d-4b2f-af3a-f299335fdbc6" + }, + { + "routeId": "L350", + "platformId": "U1690Z9", + "id": "c6e879cb-14de-4b87-beda-c8f3c8ec74b2" + }, + { + "routeId": "L316", + "platformId": "U1691Z1", + "id": "f850384e-14fb-4d2f-af8f-ed428c3547e7" + }, + { + "routeId": "L954", + "platformId": "U1691Z1", + "id": "7a252324-f97e-4450-a449-f3f519b3ba34" + }, + { + "routeId": "L316", + "platformId": "U1691Z2", + "id": "ec3c1ba0-b116-400d-9f9b-e9602b111c7e" + }, + { + "routeId": "L316", + "platformId": "U1692Z1", + "id": "161ed8c5-2326-455a-8040-308c02772dfe" + }, + { + "routeId": "L954", + "platformId": "U1692Z1", + "id": "2491cdec-92ca-48c7-bc8c-e51a6f0e43a6" + }, + { + "routeId": "L316", + "platformId": "U1692Z2", + "id": "9c78873a-2f9f-4751-89e6-b92c085e9d72" + }, + { + "routeId": "L316", + "platformId": "U1693Z1", + "id": "0f77592f-d481-4939-a69b-7556e1ab5c53" + }, + { + "routeId": "L316", + "platformId": "U1693Z2", + "id": "1dc10990-456a-4237-9cf5-01dedc782624" + }, + { + "routeId": "L954", + "platformId": "U1693Z2", + "id": "87a06811-2626-4d47-9140-18895ca50503" + }, + { + "routeId": "L469", + "platformId": "U1694Z1", + "id": "67e1ad2c-b18c-4e33-8568-a67eef3a9183" + }, + { + "routeId": "L469", + "platformId": "U1695Z1", + "id": "678c776b-20f5-4138-a0b3-3022c18f682a" + }, + { + "routeId": "L461", + "platformId": "U1696Z1", + "id": "34ebbaab-8088-490e-b9d1-9e9cbb78c12c" + }, + { + "routeId": "L469", + "platformId": "U1696Z1", + "id": "8c7170e7-b2ac-4a72-abcd-a80799e1413a" + }, + { + "routeId": "L685", + "platformId": "U1696Z2", + "id": "f3dad8a1-df17-4f8b-bd51-df408dfa1593" + }, + { + "routeId": "L489", + "platformId": "U1696Z2", + "id": "8886be7d-fdd0-412c-8711-9421c058e97b" + }, + { + "routeId": "L490", + "platformId": "U1696Z2", + "id": "a71c8588-6aad-4f98-b1ed-8a311c1f4700" + }, + { + "routeId": "L494", + "platformId": "U1696Z2", + "id": "921d99ac-d5c2-431c-a4f3-8b3cf2233f2d" + }, + { + "routeId": "L1217", + "platformId": "U1696Z301", + "id": "88747125-d93e-41a0-84fb-712d522a78b1" + }, + { + "routeId": "L1249", + "platformId": "U1696Z301", + "id": "33eeeb12-5076-4fa7-a15e-af52edbe5a0e" + }, + { + "routeId": "L1309", + "platformId": "U1696Z301", + "id": "140447fd-0053-461a-9516-bb1a1e2eae2b" + }, + { + "routeId": "L469", + "platformId": "U1696Z81", + "id": "bc5cd00f-b736-4533-bcb8-e27ff5a035b7" + }, + { + "routeId": "L461", + "platformId": "U1697Z1", + "id": "54d9fe2f-7bd2-4144-a54a-6f8acac45283" + }, + { + "routeId": "L461", + "platformId": "U1697Z2", + "id": "4451d0f1-4524-447c-943f-e42ee4224f10" + }, + { + "routeId": "L461", + "platformId": "U1698Z1", + "id": "6f4fdcaa-e97c-4168-9c09-3c54cad0b15c" + }, + { + "routeId": "L461", + "platformId": "U1698Z2", + "id": "84eba797-5536-4ac5-99e7-2dca8b4b2d42" + }, + { + "routeId": "L461", + "platformId": "U1699Z1", + "id": "552de856-55d9-4e23-8c60-5514fe251762" + }, + { + "routeId": "L461", + "platformId": "U1699Z2", + "id": "00a7a87f-46aa-4139-97c9-12cdcd47026c" + }, + { + "routeId": "L461", + "platformId": "U1699Z3", + "id": "8b4e66cf-9de0-4be3-bd02-14007e1b8fe8" + }, + { + "routeId": "L461", + "platformId": "U1699Z4", + "id": "b652f1c8-1b42-409a-aace-d8eac060eddf" + }, + { + "routeId": "L126", + "platformId": "U169Z1", + "id": "f110f8b2-f4ff-4516-92fc-f60a81941502" + }, + { + "routeId": "L906", + "platformId": "U169Z1", + "id": "741413c2-fe41-499f-88ad-7493c4a30880" + }, + { + "routeId": "L126", + "platformId": "U169Z2", + "id": "98a277b3-568b-4a44-a0d9-af037a112ed4" + }, + { + "routeId": "L906", + "platformId": "U169Z2", + "id": "a9a5e154-6a48-41fd-b63f-ff66377025e8" + }, + { + "routeId": "L133", + "platformId": "U16Z1", + "id": "6fdd0f19-d740-4137-9a1c-14690818025d" + }, + { + "routeId": "L908", + "platformId": "U16Z1", + "id": "55c262ad-8729-4bde-908a-f7624dbfbe39" + }, + { + "routeId": "L909", + "platformId": "U16Z1", + "id": "0dd3b059-44ca-490d-8a71-1fede2158aed" + }, + { + "routeId": "L133", + "platformId": "U16Z2", + "id": "58423a17-b5d2-412d-9d82-f852b1d1687c" + }, + { + "routeId": "L908", + "platformId": "U16Z2", + "id": "df00bef7-ba73-4fa6-96f0-5f9268c04f1d" + }, + { + "routeId": "L909", + "platformId": "U16Z2", + "id": "1d83a295-2134-4bef-80c6-01066f3ec228" + }, + { + "routeId": "L363", + "platformId": "U1700Z2", + "id": "646a3386-345d-4573-821d-9606f68b2ab9" + }, + { + "routeId": "L461", + "platformId": "U1700Z2", + "id": "b006c356-5e6c-48c6-8661-84a869567364" + }, + { + "routeId": "L363", + "platformId": "U1700Z3", + "id": "ad990875-96ca-42c4-a456-2f2bc78d7456" + }, + { + "routeId": "L461", + "platformId": "U1700Z3", + "id": "ba54e26f-eeed-4bdd-b499-f396e12d090f" + }, + { + "routeId": "L318", + "platformId": "U1701Z1", + "id": "f26933b5-1d23-42a4-87c5-016d53d3c333" + }, + { + "routeId": "L318", + "platformId": "U1701Z2", + "id": "018eac4b-f7ae-4ec4-9892-29272401ea95" + }, + { + "routeId": "L320", + "platformId": "U1702Z1", + "id": "90b6bd4d-0faf-4efd-b4b9-57efe7b26e28" + }, + { + "routeId": "L317", + "platformId": "U1702Z1", + "id": "0b216a64-04d5-4ea5-b670-a2685fbe817e" + }, + { + "routeId": "L318", + "platformId": "U1702Z1", + "id": "e4198719-832c-4c79-bc6b-657e78d23a17" + }, + { + "routeId": "L961", + "platformId": "U1702Z1", + "id": "929db7e0-cd62-4cba-a730-f37dd4712395" + }, + { + "routeId": "L317", + "platformId": "U1702Z2", + "id": "ac720bb4-551e-49cf-8846-4e532a351f65" + }, + { + "routeId": "L320", + "platformId": "U1702Z2", + "id": "f23cb76f-b1e5-461f-9fc8-14ba762a2eaf" + }, + { + "routeId": "L318", + "platformId": "U1702Z2", + "id": "fd4b2bd6-88ae-488f-ab2d-9c97de24f347" + }, + { + "routeId": "L961", + "platformId": "U1702Z2", + "id": "8c72587d-97dd-4a48-86b7-2d64042d4610" + }, + { + "routeId": "L320", + "platformId": "U1703Z1", + "id": "fb31b857-7bc4-4576-ab82-aa7b79d9ae12" + }, + { + "routeId": "L317", + "platformId": "U1703Z1", + "id": "ddf4318e-c754-4ce0-a371-9282ef2df55a" + }, + { + "routeId": "L961", + "platformId": "U1703Z1", + "id": "bd65ecab-52f6-48f4-acdf-7c96e08acec8" + }, + { + "routeId": "L317", + "platformId": "U1703Z2", + "id": "c41208d9-661d-4ad2-91cc-f9e7088adcf6" + }, + { + "routeId": "L320", + "platformId": "U1703Z2", + "id": "ffa999d1-873a-4179-8b99-0fdb6477ba2f" + }, + { + "routeId": "L961", + "platformId": "U1703Z2", + "id": "3e96d971-c251-443f-b722-56dc187213ba" + }, + { + "routeId": "L320", + "platformId": "U1704Z1", + "id": "5df9853a-b57a-4c65-9eb6-dcdc95deab22" + }, + { + "routeId": "L317", + "platformId": "U1704Z1", + "id": "c48ea43a-23d6-4e2e-9feb-fa0be89c1655" + }, + { + "routeId": "L961", + "platformId": "U1704Z1", + "id": "7c2254f5-4b73-4a09-b08c-ce0a12816f30" + }, + { + "routeId": "L317", + "platformId": "U1704Z2", + "id": "a44e0046-21a3-4d4e-99d5-16ee70089f17" + }, + { + "routeId": "L320", + "platformId": "U1704Z2", + "id": "7fe82e06-bb49-4f12-8dd4-6b0c43007a50" + }, + { + "routeId": "L961", + "platformId": "U1704Z2", + "id": "7e8fd463-69ff-49b3-9ebf-b1bea8797656" + }, + { + "routeId": "L318", + "platformId": "U1704Z3", + "id": "693d2e3f-e43c-454c-a9f9-def1b8b528fa" + }, + { + "routeId": "L318", + "platformId": "U1704Z4", + "id": "e6f71da7-0e40-4112-9f1d-00b91e03a6c0" + }, + { + "routeId": "L320", + "platformId": "U1705Z1", + "id": "fcfaf804-8aa2-4bd8-a8cf-4d2cbaa677cd" + }, + { + "routeId": "L317", + "platformId": "U1705Z1", + "id": "473db186-634d-4341-86e0-e502ebbb1131" + }, + { + "routeId": "L961", + "platformId": "U1705Z1", + "id": "3225891c-ae07-4952-a873-97ce6ff33990" + }, + { + "routeId": "L317", + "platformId": "U1705Z2", + "id": "68145b63-cf6a-49a6-bfb9-b40bc243cf9a" + }, + { + "routeId": "L320", + "platformId": "U1705Z2", + "id": "d7cb32a0-ed05-48f1-ac34-18a408b6c635" + }, + { + "routeId": "L961", + "platformId": "U1705Z2", + "id": "b5eca46f-4c93-469f-97e4-5baf88cdc8bc" + }, + { + "routeId": "L320", + "platformId": "U1706Z1", + "id": "687dad0d-0619-48f0-a852-ba3206c7bf98" + }, + { + "routeId": "L317", + "platformId": "U1706Z1", + "id": "5c425afa-de2e-4ea2-a78b-f9db7f6acbae" + }, + { + "routeId": "L961", + "platformId": "U1706Z1", + "id": "2dbe542d-cc2c-40c1-8fd8-f482352ef8e9" + }, + { + "routeId": "L317", + "platformId": "U1706Z2", + "id": "2eb14f1a-2d31-40a1-b6bf-7aa0fdc16b6d" + }, + { + "routeId": "L320", + "platformId": "U1706Z2", + "id": "475aafc4-0edd-4963-99ed-95dd1557e1b2" + }, + { + "routeId": "L961", + "platformId": "U1706Z2", + "id": "9c66ed64-8038-4e7c-a468-84e50acc2b20" + }, + { + "routeId": "L320", + "platformId": "U1707Z1", + "id": "c283f0de-caac-4411-8839-9440e10b207c" + }, + { + "routeId": "L317", + "platformId": "U1707Z1", + "id": "e2d35dcd-8356-4cea-a7b2-ac2756bbed5b" + }, + { + "routeId": "L961", + "platformId": "U1707Z1", + "id": "b761419d-71fe-47ba-a0c3-84672377c2df" + }, + { + "routeId": "L317", + "platformId": "U1707Z2", + "id": "33e778e0-7290-4f2a-b070-273eee7accfb" + }, + { + "routeId": "L320", + "platformId": "U1707Z2", + "id": "cce66c1a-6b56-4fec-89d7-172ad334cfd5" + }, + { + "routeId": "L961", + "platformId": "U1707Z2", + "id": "7c9af453-05d0-4486-b904-8256f6be45b6" + }, + { + "routeId": "L320", + "platformId": "U1708Z2", + "id": "9bbc814d-3bb5-4744-babe-bd015058000d" + }, + { + "routeId": "L320", + "platformId": "U1708Z3", + "id": "a421b3aa-4c7c-4e28-bc95-087a3aa48aa4" + }, + { + "routeId": "L320", + "platformId": "U1709Z1", + "id": "0a25bb80-394d-4925-ad1c-985fb5b20aed" + }, + { + "routeId": "L317", + "platformId": "U1709Z1", + "id": "86ac28c9-7bbf-4e88-b00e-421a04463975" + }, + { + "routeId": "L961", + "platformId": "U1709Z1", + "id": "0feb2c45-a288-4210-ad61-35672c90748d" + }, + { + "routeId": "L688", + "platformId": "U1709Z1", + "id": "fc5b5b6b-e896-48ab-8f62-f705e53ce093" + }, + { + "routeId": "L996", + "platformId": "U1709Z1", + "id": "9f51961c-9047-47e8-a1e8-7ba6e5aad7ee" + }, + { + "routeId": "L317", + "platformId": "U1709Z2", + "id": "1a6bf7da-a739-4c66-b2bb-f3545a212f4d" + }, + { + "routeId": "L320", + "platformId": "U1709Z2", + "id": "e9cdabf4-328f-400b-bed6-ea5cd098aaaa" + }, + { + "routeId": "L961", + "platformId": "U1709Z2", + "id": "4cf0d523-e224-4648-b085-6caf780c33af" + }, + { + "routeId": "L688", + "platformId": "U1709Z2", + "id": "9178fd4f-e428-4dbf-9a8d-1f46424e5e6c" + }, + { + "routeId": "L996", + "platformId": "U1709Z2", + "id": "ac971246-d3b4-470f-ab88-6de49b39ee19" + }, + { + "routeId": "L908", + "platformId": "U170Z1", + "id": "fcf3eab3-48e5-4958-8cd0-1aeff0a36723" + }, + { + "routeId": "L211", + "platformId": "U170Z1", + "id": "c9eb9c6c-e2d8-4802-8f6f-8fb5b4894456" + }, + { + "routeId": "L221", + "platformId": "U170Z1", + "id": "69f88a2f-c3be-403e-8b4f-d96c00206929" + }, + { + "routeId": "L391", + "platformId": "U170Z1", + "id": "47bfeb94-4d76-4762-bd8e-c1f69000e73a" + }, + { + "routeId": "L303", + "platformId": "U170Z1", + "id": "29e119d0-7ea9-4849-895f-c881d1dc3e4a" + }, + { + "routeId": "L908", + "platformId": "U170Z2", + "id": "43d83a42-9ba6-4127-aa91-0ca616e663f5" + }, + { + "routeId": "L211", + "platformId": "U170Z2", + "id": "8d21e45f-4997-4aab-a118-2b9b425027c5" + }, + { + "routeId": "L221", + "platformId": "U170Z2", + "id": "15e389ae-f731-4c4d-bf30-7f41cecb1103" + }, + { + "routeId": "L391", + "platformId": "U170Z2", + "id": "7881d716-92e8-4039-b2b7-ea469765354b" + }, + { + "routeId": "L303", + "platformId": "U170Z2", + "id": "21e0c074-1d2f-4544-9921-c2c6f8ca73e5" + }, + { + "routeId": "L317", + "platformId": "U1710Z1", + "id": "fc09502c-eccd-438f-a2ba-6748b88ead4d" + }, + { + "routeId": "L961", + "platformId": "U1710Z1", + "id": "1c81f0a6-d323-436a-b696-cacca2ba39fd" + }, + { + "routeId": "L317", + "platformId": "U1710Z2", + "id": "951e02e3-945b-4bf2-9fa4-e0d345c61fe9" + }, + { + "routeId": "L961", + "platformId": "U1710Z2", + "id": "378fd174-297f-4f40-b3ea-143dd20d3183" + }, + { + "routeId": "L317", + "platformId": "U1711Z1", + "id": "f5499c44-15df-4056-b6fb-2510037c9fd5" + }, + { + "routeId": "L961", + "platformId": "U1711Z1", + "id": "19433319-f6ba-4f8a-a177-165c451a518c" + }, + { + "routeId": "L317", + "platformId": "U1711Z2", + "id": "10a6d0ea-9b2b-4691-85fa-dc110a69554b" + }, + { + "routeId": "L961", + "platformId": "U1711Z2", + "id": "2cdb38ca-f8dc-443f-8f76-4a23ab97d1c8" + }, + { + "routeId": "L317", + "platformId": "U1712Z1", + "id": "3aafb68f-e69c-4376-bcdc-2ad9d7c5d554" + }, + { + "routeId": "L446", + "platformId": "U1712Z1", + "id": "0a7d4e13-18c3-4a50-85f7-c8f364fb89f3" + }, + { + "routeId": "L961", + "platformId": "U1712Z1", + "id": "8ef3e769-dd89-4c75-9325-5944f89e8561" + }, + { + "routeId": "L996", + "platformId": "U1712Z1", + "id": "0d72f44d-fdb7-47ff-92ca-46da8f810bdd" + }, + { + "routeId": "L317", + "platformId": "U1712Z2", + "id": "c90ae8e6-4697-47b6-afdf-d9c041842c85" + }, + { + "routeId": "L996", + "platformId": "U1712Z2", + "id": "fbf83261-7436-44d7-9a98-f22c747a3f33" + }, + { + "routeId": "L446", + "platformId": "U1712Z3", + "id": "52c5cf84-3b58-4715-b708-9a671696a92b" + }, + { + "routeId": "L446", + "platformId": "U1713Z1", + "id": "be658c70-89c8-48b2-8273-0732751d5e28" + }, + { + "routeId": "L446", + "platformId": "U1713Z2", + "id": "95952a71-14c5-4208-80d1-c688430994d7" + }, + { + "routeId": "L446", + "platformId": "U1714Z1", + "id": "db693f7a-441e-44be-9198-7f2a307cd0a1" + }, + { + "routeId": "L996", + "platformId": "U1714Z1", + "id": "954459a1-a965-4866-bcd7-186a37b16898" + }, + { + "routeId": "L996", + "platformId": "U1714Z2", + "id": "a5ca9531-d1a3-4262-8537-3cdd89135dec" + }, + { + "routeId": "L320", + "platformId": "U1715Z1", + "id": "1d8701af-72ca-4612-944c-cd857a32b103" + }, + { + "routeId": "L320", + "platformId": "U1715Z2", + "id": "58705c32-1e78-4d9b-9272-1ca693aed764" + }, + { + "routeId": "L320", + "platformId": "U1716Z1", + "id": "888d0e3f-3c10-42d7-be13-cebf365fd35f" + }, + { + "routeId": "L320", + "platformId": "U1716Z2", + "id": "0571f658-04ae-4e5b-a84f-ee99acb5b1c7" + }, + { + "routeId": "L320", + "platformId": "U1717Z1", + "id": "5816c886-f53e-4cf9-821e-26350de462cd" + }, + { + "routeId": "L320", + "platformId": "U1717Z2", + "id": "78091ab0-61fc-463b-bbf9-4bb033135087" + }, + { + "routeId": "L320", + "platformId": "U1718Z1", + "id": "29d2780e-0baf-4b75-bf91-156b1b16fc62" + }, + { + "routeId": "L320", + "platformId": "U1718Z2", + "id": "9845ca3e-6845-4622-84f0-3436227a93e9" + }, + { + "routeId": "L318", + "platformId": "U1719Z1", + "id": "2163e6d5-9f69-424c-a9d3-60c72828207c" + }, + { + "routeId": "L318", + "platformId": "U1719Z2", + "id": "af9cab5f-60b8-4d3f-a226-dffb158d1a72" + }, + { + "routeId": "L159", + "platformId": "U171Z1", + "id": "c74c9564-64fd-452a-965a-062ac9f5a2d4" + }, + { + "routeId": "L185", + "platformId": "U171Z1", + "id": "36b85a7b-d05e-4740-8cbe-8431456c38ba" + }, + { + "routeId": "L209", + "platformId": "U171Z1", + "id": "6bc770d9-7232-44d1-8517-bb61539e9f3c" + }, + { + "routeId": "L378", + "platformId": "U171Z1", + "id": "2c558ac6-af4b-44f4-a414-af855043f469" + }, + { + "routeId": "L302", + "platformId": "U171Z1", + "id": "9c100a92-f767-445b-9235-428c9f1e3063" + }, + { + "routeId": "L375", + "platformId": "U171Z1", + "id": "fb547d31-3ce0-45ec-92aa-fd8e86520378" + }, + { + "routeId": "L376", + "platformId": "U171Z1", + "id": "5b9c7ac2-a300-4ea2-868d-3c942f0612fc" + }, + { + "routeId": "L159", + "platformId": "U171Z2", + "id": "d79099ae-5503-431f-9d9c-0435c8b9d43d" + }, + { + "routeId": "L185", + "platformId": "U171Z2", + "id": "3343bd71-0d0e-47bc-be5c-81a0c201bff9" + }, + { + "routeId": "L209", + "platformId": "U171Z2", + "id": "ff4f729d-c8be-417e-8052-aa900cc4db68" + }, + { + "routeId": "L378", + "platformId": "U171Z2", + "id": "996495f3-4e98-469d-a65f-722d0158ffed" + }, + { + "routeId": "L302", + "platformId": "U171Z2", + "id": "a6e1c0a1-be60-4a5b-bf24-6f347fc3bb46" + }, + { + "routeId": "L375", + "platformId": "U171Z2", + "id": "b2682588-bedc-4abc-bcbb-567bb0c7ebf2" + }, + { + "routeId": "L376", + "platformId": "U171Z2", + "id": "b00b6227-2c0e-4e2b-a385-bb9e8d6f6fa2" + }, + { + "routeId": "L318", + "platformId": "U1720Z1", + "id": "6fd81ca6-9ad1-498f-bd49-a7b8da4dcd4a" + }, + { + "routeId": "L1388", + "platformId": "U1724Z301", + "id": "17db5f04-7f27-4549-8003-6eae2406d88d" + }, + { + "routeId": "L5", + "platformId": "U172Z1", + "id": "19835bf6-1e4c-4c1b-bce2-aaef221b03dd" + }, + { + "routeId": "L9", + "platformId": "U172Z1", + "id": "e762aa12-c8e1-4abf-bbaa-0fbf6b0d28e7" + }, + { + "routeId": "L15", + "platformId": "U172Z1", + "id": "7473f2bc-4356-45a5-be41-76166ea63331" + }, + { + "routeId": "L26", + "platformId": "U172Z1", + "id": "08aaa9dd-1e10-4c3a-be7d-064cafcfe2b2" + }, + { + "routeId": "L95", + "platformId": "U172Z1", + "id": "c5ed91c3-883c-4177-8ae2-e842bcccb03e" + }, + { + "routeId": "L98", + "platformId": "U172Z1", + "id": "886a7741-7efb-47ac-a3bd-9550e65d3d1f" + }, + { + "routeId": "L5", + "platformId": "U172Z2", + "id": "155facb0-0e67-448e-8713-29199e68225d" + }, + { + "routeId": "L9", + "platformId": "U172Z2", + "id": "cbab6ff0-c8fd-45cb-9efe-79406ce5ba04" + }, + { + "routeId": "L15", + "platformId": "U172Z2", + "id": "dffe04a8-1e74-4b1c-bf2d-3ff1f499caf6" + }, + { + "routeId": "L26", + "platformId": "U172Z2", + "id": "1774de90-3a33-4773-aec0-566d6762d05f" + }, + { + "routeId": "L95", + "platformId": "U172Z2", + "id": "d9fb9e7c-a0c8-4ed0-8471-669a733de295" + }, + { + "routeId": "L98", + "platformId": "U172Z2", + "id": "3755e6da-9a30-4525-87b5-8447e3d827b3" + }, + { + "routeId": "L101", + "platformId": "U172Z5", + "id": "ac39773d-5be5-4945-9522-f60ceac69825" + }, + { + "routeId": "L101", + "platformId": "U172Z6", + "id": "b3c1b65c-d715-4c3b-adbb-612d6a2a35aa" + }, + { + "routeId": "L688", + "platformId": "U1730Z1", + "id": "56cab0cb-4f9a-4a3c-81d6-ffc2622b09e6" + }, + { + "routeId": "L688", + "platformId": "U1730Z2", + "id": "eb46e81e-7a4a-4e75-9913-e5603fedde0a" + }, + { + "routeId": "L996", + "platformId": "U1732Z1", + "id": "d30cdf5b-deb1-4111-bbff-cec65cb802f3" + }, + { + "routeId": "L996", + "platformId": "U1732Z2", + "id": "62635bc0-a8d5-4aba-8975-3e930f1e3dae" + }, + { + "routeId": "L320", + "platformId": "U1733Z1", + "id": "83319c30-cbc5-4a8c-a967-4cd246194abe" + }, + { + "routeId": "L320", + "platformId": "U1733Z2", + "id": "ce876849-7684-4535-ae20-d0fe022e3807" + }, + { + "routeId": "L688", + "platformId": "U1734Z1", + "id": "afca855c-7bb1-4f64-877c-31343a520fa9" + }, + { + "routeId": "L688", + "platformId": "U1734Z2", + "id": "7c60dbdf-6236-41a4-9cd2-1da0747e9089" + }, + { + "routeId": "L1388", + "platformId": "U1734Z301", + "id": "81dacfeb-00e4-4d4e-a6d9-ee5af062898c" + }, + { + "routeId": "L688", + "platformId": "U1735Z1", + "id": "d73b0449-bc10-467e-aa37-13a81f1d37c9" + }, + { + "routeId": "L688", + "platformId": "U1735Z2", + "id": "cb6e52a2-98c9-4808-a7d3-f7d35c3ef87e" + }, + { + "routeId": "L688", + "platformId": "U1737Z1", + "id": "0c957ee9-52a2-49cf-9555-0b55b6f5c703" + }, + { + "routeId": "L688", + "platformId": "U1737Z2", + "id": "4956c481-daec-486f-8ffe-67b29a5dead3" + }, + { + "routeId": "L688", + "platformId": "U1738Z1", + "id": "29837cc5-e387-4355-b89b-2d776b453edb" + }, + { + "routeId": "L688", + "platformId": "U1738Z2", + "id": "f4fcd4e6-d826-4f2c-aa8e-b19862eda7cb" + }, + { + "routeId": "L318", + "platformId": "U1739Z1", + "id": "96d91109-9ea2-43b1-b1c9-b62aeaeef756" + }, + { + "routeId": "L318", + "platformId": "U1739Z2", + "id": "50b1780a-b1ea-4793-a74a-40800b396ead" + }, + { + "routeId": "L201", + "platformId": "U173Z1", + "id": "4178ccf7-38b8-4fde-96c7-a2ade235562b" + }, + { + "routeId": "L953", + "platformId": "U173Z1", + "id": "6b33075d-f7d6-4d3e-87ff-7e3cad72001c" + }, + { + "routeId": "L201", + "platformId": "U173Z2", + "id": "b02340a3-f60e-486c-8b7b-155fc4ba3b62" + }, + { + "routeId": "L953", + "platformId": "U173Z2", + "id": "8dd84c91-960a-49d3-b3a4-f51e889ac10e" + }, + { + "routeId": "L1354", + "platformId": "U1740Z301", + "id": "5677052c-3ad3-401c-8dfb-1872c93bc2f9" + }, + { + "routeId": "L2254", + "platformId": "U1740Z461", + "id": "d60d4ef9-4bc8-4f3b-a157-9b462709af03" + }, + { + "routeId": "L350", + "platformId": "U1741Z1", + "id": "bfbbbd3d-0cfd-480a-a939-4f91837f81cb" + }, + { + "routeId": "L350", + "platformId": "U1742Z1", + "id": "6b116777-83f4-4c65-9004-a26f4905eb1b" + }, + { + "routeId": "L350", + "platformId": "U1742Z2", + "id": "25f37a24-64c4-4291-9339-e92a4979aef1" + }, + { + "routeId": "L344", + "platformId": "U1743Z1", + "id": "f0aa323a-f43c-422c-b695-9c7eae4520cc" + }, + { + "routeId": "L303", + "platformId": "U1743Z1", + "id": "97872b08-46ab-416e-9087-c09170a229e2" + }, + { + "routeId": "L354", + "platformId": "U1743Z1", + "id": "2712245b-ba69-4c4f-a63d-4f091aeaf819" + }, + { + "routeId": "L398", + "platformId": "U1743Z1", + "id": "84dd21f8-5d3f-452f-b073-e2f12cd017fa" + }, + { + "routeId": "L344", + "platformId": "U1743Z2", + "id": "cb1d111d-4df1-4212-bdbc-d16b5ed147d9" + }, + { + "routeId": "L303", + "platformId": "U1743Z2", + "id": "20e321e0-0c5c-44e5-9918-ad4019935a30" + }, + { + "routeId": "L354", + "platformId": "U1743Z2", + "id": "69122e62-3d4e-47ca-8259-5346f2efd31a" + }, + { + "routeId": "L398", + "platformId": "U1743Z2", + "id": "11c3062d-78ae-4d38-b668-7c9eace65b66" + }, + { + "routeId": "L363", + "platformId": "U1744Z1", + "id": "6f6f1d86-0b39-4a7b-af75-556fe3f04105" + }, + { + "routeId": "L325", + "platformId": "U1744Z1", + "id": "44ae6208-e5b1-4350-8605-bf6412e7049f" + }, + { + "routeId": "L385", + "platformId": "U1744Z1", + "id": "c04c3eb6-2f27-4b22-a04e-705edce5d1cb" + }, + { + "routeId": "L363", + "platformId": "U1744Z2", + "id": "4a324451-49c9-4094-9912-b96ad8026b55" + }, + { + "routeId": "L325", + "platformId": "U1744Z2", + "id": "dcc41a18-4995-4055-9d34-2211052df3f5" + }, + { + "routeId": "L385", + "platformId": "U1744Z2", + "id": "094194cd-d2a7-4d5e-b8e2-0d081cbb16dc" + }, + { + "routeId": "L380", + "platformId": "U1745Z1", + "id": "e8c8da02-96d7-4c01-a6a8-c754c86f5876" + }, + { + "routeId": "L384", + "platformId": "U1745Z1", + "id": "cc1a72a5-ed92-428c-b25b-2a1538c524ec" + }, + { + "routeId": "L952", + "platformId": "U1745Z1", + "id": "823361f0-0ce0-4bf2-88d1-8ef3ed726684" + }, + { + "routeId": "L425", + "platformId": "U1745Z1", + "id": "3a03d516-7281-4c15-9ee1-404794930994" + }, + { + "routeId": "L630", + "platformId": "U1745Z1", + "id": "cbdfc082-ff31-47d3-82b2-f5a9c1650ea9" + }, + { + "routeId": "L631", + "platformId": "U1745Z1", + "id": "e9dfccb5-71e5-478f-8013-0dd9dc489ffa" + }, + { + "routeId": "L380", + "platformId": "U1745Z2", + "id": "561b71d1-40f8-45e8-b3bd-87ae6ec8d56e" + }, + { + "routeId": "L952", + "platformId": "U1745Z2", + "id": "25813a39-ccb2-44d1-b965-e0c39c247011" + }, + { + "routeId": "L384", + "platformId": "U1745Z2", + "id": "f4eb08db-d146-4e30-aab7-77c9e3023e2b" + }, + { + "routeId": "L394", + "platformId": "U1745Z2", + "id": "e2cb7da3-80b0-4ebf-9ba3-023e7ee8bd30" + }, + { + "routeId": "L425", + "platformId": "U1745Z2", + "id": "c02398d9-6b47-4f3f-ac92-7f238b852e8e" + }, + { + "routeId": "L630", + "platformId": "U1745Z2", + "id": "1e5fdd17-85ca-40c5-bc37-330031e7b826" + }, + { + "routeId": "L631", + "platformId": "U1745Z2", + "id": "8f0fa594-7e13-4719-91d1-4fa216d28858" + }, + { + "routeId": "L384", + "platformId": "U1746Z1", + "id": "db838d85-cfa4-4fdf-ae85-7a94f6f84f60" + }, + { + "routeId": "L633", + "platformId": "U1746Z1", + "id": "cd450939-2092-48da-977b-09f9426680b1" + }, + { + "routeId": "L630", + "platformId": "U1746Z1", + "id": "f1fd547d-fde4-4a58-914d-53ee849f5885" + }, + { + "routeId": "L631", + "platformId": "U1746Z1", + "id": "a043b18a-f5d4-4890-b697-7eb4875da9a7" + }, + { + "routeId": "L952", + "platformId": "U1746Z2", + "id": "c017a3bc-9f03-4e1d-b55b-3a3084dc25bf" + }, + { + "routeId": "L384", + "platformId": "U1746Z2", + "id": "1a878509-dd9c-43f3-801c-dd6671c1872a" + }, + { + "routeId": "L633", + "platformId": "U1746Z2", + "id": "5dd4893f-6e99-47e7-a400-31092d447cac" + }, + { + "routeId": "L394", + "platformId": "U1746Z2", + "id": "b5bbd1b2-a277-42c9-b1f4-94510edcf41a" + }, + { + "routeId": "L630", + "platformId": "U1746Z2", + "id": "b765d51e-5c0d-4c4e-b9a2-16f104f39273" + }, + { + "routeId": "L631", + "platformId": "U1746Z2", + "id": "3b81446c-0375-4e5d-bcf6-683581c1830f" + }, + { + "routeId": "L384", + "platformId": "U1747Z1", + "id": "c9374fad-d7ee-4ccb-ae59-437d0f22fae0" + }, + { + "routeId": "L638", + "platformId": "U1747Z1", + "id": "610c7b6a-e986-49ad-8fd2-54821076e3f5" + }, + { + "routeId": "L631", + "platformId": "U1747Z1", + "id": "be33ac25-f9e3-43dc-80bf-8acdd8c84f1e" + }, + { + "routeId": "L637", + "platformId": "U1747Z1", + "id": "9b25347a-7b37-43b2-a12f-c1fd3c177b41" + }, + { + "routeId": "L952", + "platformId": "U1747Z2", + "id": "33234e8c-b2e7-454f-bd05-5272a6f7f69d" + }, + { + "routeId": "L384", + "platformId": "U1747Z2", + "id": "868da58b-ae0a-4a49-bb05-c29ffa3c31cd" + }, + { + "routeId": "L638", + "platformId": "U1747Z2", + "id": "9e89ed77-a747-4b1d-8837-58824d51c528" + }, + { + "routeId": "L394", + "platformId": "U1747Z2", + "id": "591ddd6f-96ff-4cae-97b9-d8d7a1fe0675" + }, + { + "routeId": "L631", + "platformId": "U1747Z2", + "id": "3eb7b995-a853-4f8a-82c7-436344474e0e" + }, + { + "routeId": "L637", + "platformId": "U1747Z2", + "id": "6a9fdba8-b11d-4966-b8e6-f51cc7d4c609" + }, + { + "routeId": "L380", + "platformId": "U1748Z1", + "id": "7511ff3e-51df-4ef4-a524-2448e7b15e90" + }, + { + "routeId": "L384", + "platformId": "U1748Z1", + "id": "264583e0-19e6-4144-bbbf-919461af8d42" + }, + { + "routeId": "L638", + "platformId": "U1748Z1", + "id": "6ddec63a-18aa-4484-ada7-fa122d0798b1" + }, + { + "routeId": "L425", + "platformId": "U1748Z1", + "id": "75c7f9dd-0d57-42c2-a631-a94f1c1733b8" + }, + { + "routeId": "L631", + "platformId": "U1748Z1", + "id": "dfb71134-0e64-4764-adad-a449124a9206" + }, + { + "routeId": "L637", + "platformId": "U1748Z1", + "id": "74c0d127-9104-477e-a1c1-5c353465ed0b" + }, + { + "routeId": "L380", + "platformId": "U1748Z2", + "id": "10b17e4f-2102-477f-9cc0-1c08ea68807d" + }, + { + "routeId": "L384", + "platformId": "U1748Z2", + "id": "9cc094fc-53b6-4d30-9370-25c1575cbd4c" + }, + { + "routeId": "L638", + "platformId": "U1748Z2", + "id": "f9b8e2c3-289c-49ab-a514-8c816569578f" + }, + { + "routeId": "L394", + "platformId": "U1748Z2", + "id": "2cbc666a-3066-477c-864d-beaf8105d50b" + }, + { + "routeId": "L425", + "platformId": "U1748Z2", + "id": "dac2a776-961e-4c85-aadc-e22b691b2ad7" + }, + { + "routeId": "L631", + "platformId": "U1748Z2", + "id": "50e749d1-c388-4984-84e6-41887079aea0" + }, + { + "routeId": "L637", + "platformId": "U1748Z2", + "id": "ed6dcb9f-26fa-4669-994b-a38b0b83ee1a" + }, + { + "routeId": "L380", + "platformId": "U1749Z1", + "id": "59c7cc46-51a6-4373-9313-560f0eecaf3b" + }, + { + "routeId": "L952", + "platformId": "U1749Z1", + "id": "6e76687e-7438-4c84-b300-c06e8099aa27" + }, + { + "routeId": "L425", + "platformId": "U1749Z1", + "id": "ca8c8cec-da60-4387-bcbd-f2a397225d19" + }, + { + "routeId": "L380", + "platformId": "U1749Z2", + "id": "e0d9240e-96aa-4da2-ab14-d81e0cd04d63" + }, + { + "routeId": "L425", + "platformId": "U1749Z2", + "id": "39ca90ed-3063-47cb-9614-a22cf67623b9" + }, + { + "routeId": "L149", + "platformId": "U174Z1", + "id": "adfd4fb6-1977-4af4-b3b3-2768bf784362" + }, + { + "routeId": "L149", + "platformId": "U174Z2", + "id": "81ac831d-2827-4e96-a642-52a7fbe32b6d" + }, + { + "routeId": "L1365", + "platformId": "U174Z301", + "id": "3de961ee-f291-4dd1-b757-36a4cf5bfb89" + }, + { + "routeId": "L1388", + "platformId": "U1750Z301", + "id": "68ef2039-a3da-4440-9912-560c65fe8c47" + }, + { + "routeId": "L314", + "platformId": "U1751Z1", + "id": "b06e84bd-7c3a-41f4-ba15-69abfce00438" + }, + { + "routeId": "L314", + "platformId": "U1751Z2", + "id": "c6bcde9d-8980-449c-946e-4d7627125445" + }, + { + "routeId": "L314", + "platformId": "U1752Z1", + "id": "4f796373-59ce-4753-bf76-57bdd5974b3d" + }, + { + "routeId": "L314", + "platformId": "U1752Z2", + "id": "b195b2d8-6cf3-451d-82e5-869b9d18bf4e" + }, + { + "routeId": "L314", + "platformId": "U1753Z1", + "id": "ba0dabdc-8a22-4dbe-98ca-13f57eeaf287" + }, + { + "routeId": "L360", + "platformId": "U1753Z1", + "id": "3ff9b3eb-25c5-42d9-a089-e8a529bd2764" + }, + { + "routeId": "L361", + "platformId": "U1753Z1", + "id": "4af55927-f7b1-487d-9eb4-85bec6a9047f" + }, + { + "routeId": "L390", + "platformId": "U1753Z1", + "id": "cf605c26-0dba-4fbc-8f67-0dd10be1d8d1" + }, + { + "routeId": "L314", + "platformId": "U1753Z2", + "id": "931cb94f-217d-427c-9501-b38259fbb255" + }, + { + "routeId": "L360", + "platformId": "U1753Z2", + "id": "3444512b-a0cd-4096-8c9f-b8e6fcf731ab" + }, + { + "routeId": "L361", + "platformId": "U1753Z2", + "id": "f5efb836-f0c8-4371-a2bb-48948404fc37" + }, + { + "routeId": "L390", + "platformId": "U1753Z2", + "id": "86d2cd99-abaa-4db9-bebb-e34f1f450835" + }, + { + "routeId": "L314", + "platformId": "U1754Z1", + "id": "d372fbfd-8b8c-44c7-b143-500ff7f0a7e0" + }, + { + "routeId": "L360", + "platformId": "U1754Z1", + "id": "e8ba109e-ba2f-4c73-8acd-57adca0e56ac" + }, + { + "routeId": "L361", + "platformId": "U1754Z1", + "id": "40452651-16d1-47cf-b9be-e97757c5727b" + }, + { + "routeId": "L390", + "platformId": "U1754Z1", + "id": "faab724d-64ab-4d15-9e64-32dced482cce" + }, + { + "routeId": "L314", + "platformId": "U1754Z2", + "id": "aaa4506f-a12e-42fe-9fc0-c0c1adfdefa0" + }, + { + "routeId": "L360", + "platformId": "U1754Z2", + "id": "f1728e07-3c46-4d62-8d1f-501471743a20" + }, + { + "routeId": "L361", + "platformId": "U1754Z2", + "id": "2b1a90ed-c185-4a7f-871b-30c11a8aa004" + }, + { + "routeId": "L390", + "platformId": "U1754Z2", + "id": "86970b9a-0367-4ed0-a7ee-37a54c491184" + }, + { + "routeId": "L1388", + "platformId": "U1756Z301", + "id": "d8cd61d9-ca91-4d6b-97c2-374ba3384407" + }, + { + "routeId": "L314", + "platformId": "U1757Z1", + "id": "65050c75-14aa-4796-ab7e-033fc3563e94" + }, + { + "routeId": "L314", + "platformId": "U1757Z2", + "id": "cfa0e600-b6f0-4400-a4d7-7932ca0ce23d" + }, + { + "routeId": "L314", + "platformId": "U1758Z1", + "id": "42d4cb16-1849-4a3f-8508-f6091d32fdfb" + }, + { + "routeId": "L314", + "platformId": "U1758Z2", + "id": "bfaee506-f4fa-4815-97e4-17dae48c57be" + }, + { + "routeId": "L314", + "platformId": "U1759Z1", + "id": "f24908be-4120-4559-b461-7b46bf913a82" + }, + { + "routeId": "L314", + "platformId": "U1759Z2", + "id": "ae145622-9dc5-4d5c-af76-7c64fd040ad2" + }, + { + "routeId": "L314", + "platformId": "U1760Z1", + "id": "a9d9a9d8-8f55-46ef-ac11-6933709bdc12" + }, + { + "routeId": "L314", + "platformId": "U1760Z2", + "id": "a4ec6342-a8c5-4617-81cb-e5444f0981ec" + }, + { + "routeId": "L314", + "platformId": "U1761Z1", + "id": "47303f6e-16e8-4542-aee7-ca60ce98006d" + }, + { + "routeId": "L314", + "platformId": "U1761Z2", + "id": "df100a65-f7d3-45a3-a3e7-3ab779741e36" + }, + { + "routeId": "L314", + "platformId": "U1762Z1", + "id": "8b6fc40a-cd7a-4e8b-820b-719ac8085cb1" + }, + { + "routeId": "L444", + "platformId": "U1762Z1", + "id": "57d83c27-dbec-4549-8cbe-e96e398be169" + }, + { + "routeId": "L360", + "platformId": "U1762Z1", + "id": "26d0791a-2e6b-47a8-b0ea-39708beb8802" + }, + { + "routeId": "L361", + "platformId": "U1762Z1", + "id": "1cd5aa52-50a9-4d79-8421-2d44021fbf11" + }, + { + "routeId": "L390", + "platformId": "U1762Z1", + "id": "2e9b74de-a820-4ca4-be45-e66cfa40f809" + }, + { + "routeId": "L314", + "platformId": "U1762Z2", + "id": "62a734c3-fc7e-4e83-8180-343be7b45bfd" + }, + { + "routeId": "L360", + "platformId": "U1762Z2", + "id": "93c5c4cf-50d2-44d5-9fe9-f0c0fbe0fdfc" + }, + { + "routeId": "L361", + "platformId": "U1762Z2", + "id": "72a33db7-0484-4237-b609-516f13313836" + }, + { + "routeId": "L390", + "platformId": "U1762Z2", + "id": "9657c1db-e0aa-4e14-9c9c-3cb9515a152b" + }, + { + "routeId": "L314", + "platformId": "U1763Z1", + "id": "88acbd5d-60ec-4f9d-abf8-33276fc8c5f3" + }, + { + "routeId": "L360", + "platformId": "U1763Z1", + "id": "cd8240dc-ea3c-4d93-b617-8c3a46a5dc1c" + }, + { + "routeId": "L361", + "platformId": "U1763Z1", + "id": "5ae47f02-d69a-4030-90f3-4f828e421ef6" + }, + { + "routeId": "L390", + "platformId": "U1763Z1", + "id": "321d2044-fcd0-497d-af08-cc69e78fcf4c" + }, + { + "routeId": "L314", + "platformId": "U1763Z2", + "id": "9a1d644e-67d5-4f2e-9138-921a02d10de9" + }, + { + "routeId": "L360", + "platformId": "U1763Z2", + "id": "e3c076ad-5dc5-4d7f-b863-7f83874ecd2b" + }, + { + "routeId": "L361", + "platformId": "U1763Z2", + "id": "8e7f9f52-0f62-4047-84af-58bc79e644eb" + }, + { + "routeId": "L390", + "platformId": "U1763Z2", + "id": "7fab87fc-e237-4886-90ea-1884d17345b0" + }, + { + "routeId": "L444", + "platformId": "U1764Z1", + "id": "a4ceb8ea-7031-4e8e-af2b-890079b8a372" + }, + { + "routeId": "L360", + "platformId": "U1764Z1", + "id": "fab4444e-a95d-44d2-9b90-7c6d9af6bb5e" + }, + { + "routeId": "L361", + "platformId": "U1764Z1", + "id": "8714f083-f831-48a1-a1ca-72f6e462609e" + }, + { + "routeId": "L390", + "platformId": "U1764Z1", + "id": "6f7c881a-43df-4d85-ab55-56e6f2880b85" + }, + { + "routeId": "L444", + "platformId": "U1764Z2", + "id": "23f79f62-8114-4299-8571-2e0e55d8e650" + }, + { + "routeId": "L360", + "platformId": "U1764Z2", + "id": "4056df4f-cdab-46e3-909d-f33776e98f21" + }, + { + "routeId": "L361", + "platformId": "U1764Z2", + "id": "8d2fd665-a5ad-46a9-9910-9a38d95c0af2" + }, + { + "routeId": "L390", + "platformId": "U1764Z2", + "id": "dd810f97-692e-4f5b-9b66-5e0444e48d0c" + }, + { + "routeId": "L521", + "platformId": "U1765Z1", + "id": "44c0467f-919e-4191-8ddf-eebb387d6933" + }, + { + "routeId": "L521", + "platformId": "U1765Z2", + "id": "7e40368c-12b3-4277-b070-d8f14012739a" + }, + { + "routeId": "L470", + "platformId": "U1766Z1", + "id": "0e8db0fe-1cb1-4b8f-89bf-f51e0cc6498e" + }, + { + "routeId": "L191", + "platformId": "U176Z1", + "id": "425e3f9b-f8f8-42a9-b2c0-6f03b4b30293" + }, + { + "routeId": "L191", + "platformId": "U176Z2", + "id": "56eedd61-9330-46d1-a06b-dd63bd134138" + }, + { + "routeId": "L521", + "platformId": "U1775Z1", + "id": "21d91690-0675-4683-8b32-1459d4f137ff" + }, + { + "routeId": "L521", + "platformId": "U1775Z2", + "id": "b82d5604-c9da-4aeb-9d00-b46980c84ff9" + }, + { + "routeId": "L470", + "platformId": "U1776Z1", + "id": "968725f1-548b-4e36-b1a1-ebf859368762" + }, + { + "routeId": "L470", + "platformId": "U1776Z2", + "id": "e509ba98-efac-47ae-a957-84fd5e175e83" + }, + { + "routeId": "L521", + "platformId": "U1777Z1", + "id": "4dfa0a5e-8bd4-4a12-ae98-0ccf6584273d" + }, + { + "routeId": "L523", + "platformId": "U1777Z1", + "id": "501043cf-d0d9-4f6a-af29-36b37c331825" + }, + { + "routeId": "L521", + "platformId": "U1777Z2", + "id": "6122f59f-c865-416e-804a-609f09869539" + }, + { + "routeId": "L523", + "platformId": "U1777Z2", + "id": "477ea039-9228-4009-a43c-2c7e154b7a8d" + }, + { + "routeId": "L470", + "platformId": "U1778Z1", + "id": "b8d7ada8-f744-4441-8258-f9df8ec26ba5" + }, + { + "routeId": "L470", + "platformId": "U1778Z2", + "id": "63867ddd-2889-4de7-a4fa-9f5bbf862f89" + }, + { + "routeId": "L372", + "platformId": "U1779Z1", + "id": "14f76155-0474-4768-b82f-79d382984879" + }, + { + "routeId": "L470", + "platformId": "U1779Z1", + "id": "e1aee237-260c-464d-a3cc-aa43d64094eb" + }, + { + "routeId": "L372", + "platformId": "U1779Z2", + "id": "b0e8626c-f29e-4d7f-8346-5401ec4b72c3" + }, + { + "routeId": "L470", + "platformId": "U1779Z2", + "id": "ab5cb971-7775-4b92-9c7e-d50d8460f161" + }, + { + "routeId": "L107", + "platformId": "U177Z1", + "id": "7c09c48c-2d5a-4c32-aa13-acffbd011830" + }, + { + "routeId": "L160", + "platformId": "U177Z1", + "id": "43dfb773-079e-4a2b-aa57-0f91ed1a29ba" + }, + { + "routeId": "L116", + "platformId": "U177Z1", + "id": "d7657e68-984d-4e7b-8825-39dca3a8eca0" + }, + { + "routeId": "L147", + "platformId": "U177Z1", + "id": "421f85fd-682c-4a93-9378-47e419c98321" + }, + { + "routeId": "L902", + "platformId": "U177Z1", + "id": "fc7e2b41-9d48-45fc-8be5-0a17d9cc3436" + }, + { + "routeId": "L909", + "platformId": "U177Z1", + "id": "a616b735-d28f-432d-90bf-f5e88e7dd662" + }, + { + "routeId": "L340", + "platformId": "U177Z1", + "id": "c3257217-b83a-400e-91cc-0de6106421c6" + }, + { + "routeId": "L355", + "platformId": "U177Z1", + "id": "289306b0-4bde-4289-be42-81f7b543fc67" + }, + { + "routeId": "L954", + "platformId": "U177Z1", + "id": "dc614ea0-9473-460d-a21a-1b6232f745dd" + }, + { + "routeId": "L350", + "platformId": "U177Z1", + "id": "729acc7f-9543-414d-b441-77926999c82a" + }, + { + "routeId": "L107", + "platformId": "U177Z2", + "id": "b4a1557b-5a5e-4d6f-a683-7cb0484b7b37" + }, + { + "routeId": "L160", + "platformId": "U177Z2", + "id": "74244dfb-af38-4ff9-9006-5b3ba9c44fbb" + }, + { + "routeId": "L116", + "platformId": "U177Z2", + "id": "72247203-dba0-432a-ae9b-d5dc85faf62c" + }, + { + "routeId": "L147", + "platformId": "U177Z2", + "id": "4c4c3deb-d04f-4fb0-a9db-9c934e5fc05f" + }, + { + "routeId": "L902", + "platformId": "U177Z2", + "id": "d9941497-6324-4737-bb3f-11d6c93b62ce" + }, + { + "routeId": "L909", + "platformId": "U177Z2", + "id": "d1c1b05f-1c19-4276-8ab9-683204394124" + }, + { + "routeId": "L340", + "platformId": "U177Z2", + "id": "4a51b179-9814-43b4-b635-02c28804898c" + }, + { + "routeId": "L355", + "platformId": "U177Z2", + "id": "1032103b-8faa-46d5-b4d2-09091ded9980" + }, + { + "routeId": "L954", + "platformId": "U177Z2", + "id": "1438410b-5ba1-4f93-a03c-ef8a0c508893" + }, + { + "routeId": "L350", + "platformId": "U177Z2", + "id": "4257da7e-4b82-4b9b-ab19-7daa62e7bd6a" + }, + { + "routeId": "L372", + "platformId": "U1780Z1", + "id": "b339d2df-2e15-41ea-8590-b50837efa6f7" + }, + { + "routeId": "L470", + "platformId": "U1780Z1", + "id": "d2f9224a-b153-4cf1-89e8-43ba1872d4f3" + }, + { + "routeId": "L372", + "platformId": "U1780Z2", + "id": "5c9bd892-bc73-4b36-8e9f-3a21b79d4004" + }, + { + "routeId": "L470", + "platformId": "U1780Z2", + "id": "6d394e64-58ae-47cd-8a90-4dec1346157f" + }, + { + "routeId": "L372", + "platformId": "U1781Z1", + "id": "601b1078-9874-450e-bcb7-12240ea9774a" + }, + { + "routeId": "L324", + "platformId": "U1782Z1", + "id": "703d5bf7-bafd-4c11-9598-32cb59bbb6c4" + }, + { + "routeId": "L399", + "platformId": "U1782Z1", + "id": "fd858490-bb49-4aee-9c63-cc57dc80b2b2" + }, + { + "routeId": "L324", + "platformId": "U1782Z2", + "id": "f5bf6e8f-6bff-475e-a08a-a53c298cbe68" + }, + { + "routeId": "L399", + "platformId": "U1782Z2", + "id": "c344e86a-50bf-48bc-8e97-4d9d678e9633" + }, + { + "routeId": "L470", + "platformId": "U1783Z1", + "id": "ef7c52ee-c8f7-4ab1-b356-2764c84d80d9" + }, + { + "routeId": "L470", + "platformId": "U1783Z2", + "id": "d0431b26-871f-4165-b9e0-364e6a2801cb" + }, + { + "routeId": "L348", + "platformId": "U1784Z1", + "id": "5e0a6e9a-48cf-4b71-bae2-69572548fa20" + }, + { + "routeId": "L470", + "platformId": "U1784Z1", + "id": "cfee6476-5a6c-48c0-8ea0-de072f5cb446" + }, + { + "routeId": "L348", + "platformId": "U1784Z2", + "id": "1ea789c5-06f1-44e6-ae2d-b12456209181" + }, + { + "routeId": "L470", + "platformId": "U1784Z2", + "id": "7911c5ca-a09a-406c-861e-0a30c69827cf" + }, + { + "routeId": "L348", + "platformId": "U1785Z1", + "id": "fceda43e-897e-43c6-9978-f7d3f205e7b9" + }, + { + "routeId": "L470", + "platformId": "U1785Z1", + "id": "6a80e425-0205-4086-9c3b-f88c4634f4f0" + }, + { + "routeId": "L348", + "platformId": "U1785Z2", + "id": "962e5790-1e13-41e8-bfff-83d489ba1d70" + }, + { + "routeId": "L470", + "platformId": "U1785Z2", + "id": "e427ee57-1a16-46bc-86b3-dd6d5950ab12" + }, + { + "routeId": "L348", + "platformId": "U1785Z3", + "id": "461efc2d-1900-44f2-913b-c1b33d5acd2b" + }, + { + "routeId": "L369", + "platformId": "U1785Z3", + "id": "66f51b0f-70f7-4a90-8431-c04e4005de8c" + }, + { + "routeId": "L471", + "platformId": "U1785Z3", + "id": "23e249c1-7416-41ae-aded-84462172ea51" + }, + { + "routeId": "L470", + "platformId": "U1785Z3", + "id": "906bcffd-c43c-42f5-a4d7-34ca5f46c914" + }, + { + "routeId": "L348", + "platformId": "U1785Z4", + "id": "05b624c8-803a-4951-ba47-888cda311875" + }, + { + "routeId": "L369", + "platformId": "U1785Z4", + "id": "5145d0a9-140f-4f26-9628-8fd4b3611684" + }, + { + "routeId": "L471", + "platformId": "U1785Z4", + "id": "2b64e3cf-e961-49bb-abea-ccd7b7788c04" + }, + { + "routeId": "L470", + "platformId": "U1785Z4", + "id": "c6aa8937-d89b-45b8-8bb9-d88978c41335" + }, + { + "routeId": "L369", + "platformId": "U1786Z1", + "id": "a20706cb-3d7a-4142-96af-08569de0452f" + }, + { + "routeId": "L369", + "platformId": "U1786Z2", + "id": "8fb1ab92-7c23-4f45-a5c2-404d00c2f4b0" + }, + { + "routeId": "L369", + "platformId": "U1787Z1", + "id": "1f2e89b7-25b2-4175-918c-6839e8426712" + }, + { + "routeId": "L369", + "platformId": "U1787Z2", + "id": "a5a881ff-f937-4ea6-93f7-97df27f600c7" + }, + { + "routeId": "L369", + "platformId": "U1788Z1", + "id": "8ae676e6-e71e-45f1-9b36-970d65230873" + }, + { + "routeId": "L369", + "platformId": "U1788Z2", + "id": "23324642-2f5c-4f3c-827b-680cac120768" + }, + { + "routeId": "L369", + "platformId": "U1789Z1", + "id": "e88ead80-6fc6-451e-be89-093d2b63b5b4" + }, + { + "routeId": "L369", + "platformId": "U1789Z2", + "id": "d0e63bd5-e2a4-4cba-908b-50aa00d9ea2f" + }, + { + "routeId": "L180", + "platformId": "U178Z1", + "id": "fc3f59b0-137f-4c76-a9dc-8d0cf0f3dde1" + }, + { + "routeId": "L904", + "platformId": "U178Z1", + "id": "cf05a01e-4da8-414a-8334-dc8f8acc8e9f" + }, + { + "routeId": "L306", + "platformId": "U178Z1", + "id": "d8c5ce95-106d-4a08-b359-914a39f3de8e" + }, + { + "routeId": "L957", + "platformId": "U178Z1", + "id": "ad094366-1702-4642-b518-1b84fb86f219" + }, + { + "routeId": "L952", + "platformId": "U178Z1", + "id": "e0cc27f0-e342-4776-a99f-82276e6aa10c" + }, + { + "routeId": "L180", + "platformId": "U178Z2", + "id": "5efd4504-0185-4007-8805-2cba7346db98" + }, + { + "routeId": "L904", + "platformId": "U178Z2", + "id": "6cc60073-edd7-490c-9c91-d285ff2f1361" + }, + { + "routeId": "L306", + "platformId": "U178Z2", + "id": "624e74f3-732a-4839-917d-3aeb72cb3a54" + }, + { + "routeId": "L957", + "platformId": "U178Z2", + "id": "6ef92458-fd2f-44b8-acc6-69703aea0b40" + }, + { + "routeId": "L952", + "platformId": "U178Z2", + "id": "82150a3c-7b09-4678-a048-9d0a3c4ff3f9" + }, + { + "routeId": "L369", + "platformId": "U1790Z1", + "id": "20b4fbc2-3f9c-44a2-9829-0f0397039fee" + }, + { + "routeId": "L369", + "platformId": "U1790Z2", + "id": "8360df74-3fbf-410d-a75b-9f5d28f2030d" + }, + { + "routeId": "L369", + "platformId": "U1791Z1", + "id": "b92a7754-2336-45c7-871c-375f2e3bb994" + }, + { + "routeId": "L369", + "platformId": "U1791Z2", + "id": "ff4ac7d0-2e87-49da-baa7-7edcbedb1c49" + }, + { + "routeId": "L369", + "platformId": "U1792Z1", + "id": "6627c3c9-35fe-4bba-b5a8-9c0c2ae356a0" + }, + { + "routeId": "L474", + "platformId": "U1792Z1", + "id": "efc88fc0-645c-4030-9eb5-31352303358a" + }, + { + "routeId": "L400", + "platformId": "U1792Z1", + "id": "a2a74576-86d5-430a-b50c-ef5c000f5166" + }, + { + "routeId": "L410", + "platformId": "U1792Z1", + "id": "b26de114-bc52-4fc4-a07b-d4f33c5d1c14" + }, + { + "routeId": "L369", + "platformId": "U1792Z2", + "id": "7f3029bd-5afa-41a8-9a63-98ef52484b72" + }, + { + "routeId": "L474", + "platformId": "U1792Z2", + "id": "3b6319ca-f8f0-40e9-a354-5cc2f24afacb" + }, + { + "routeId": "L400", + "platformId": "U1792Z2", + "id": "7cb6c4c5-6598-49ea-aa05-1cb650c80d46" + }, + { + "routeId": "L410", + "platformId": "U1792Z2", + "id": "f6126dfa-6ae9-4bce-9738-9afa03629dc4" + }, + { + "routeId": "L369", + "platformId": "U1793Z1", + "id": "fcf0f687-07e5-45c1-ad47-827c099bc64b" + }, + { + "routeId": "L400", + "platformId": "U1793Z1", + "id": "c59084da-6a0d-4a8a-83ae-ec641ba3f079" + }, + { + "routeId": "L410", + "platformId": "U1793Z1", + "id": "ae1a5806-f48c-4278-be6d-0c1f58f389db" + }, + { + "routeId": "L474", + "platformId": "U1793Z10", + "id": "55b1eb76-d186-482d-8dbb-c1395d3293d7" + }, + { + "routeId": "L466", + "platformId": "U1793Z12", + "id": "31db6311-8d31-4c33-9ef0-06c4bc71793a" + }, + { + "routeId": "L475", + "platformId": "U1793Z12", + "id": "57ca3a45-1e6c-46e7-b055-9c198be9c194" + }, + { + "routeId": "L695", + "platformId": "U1793Z12", + "id": "ac4cb58c-7fd3-436a-8d11-68ad74a6b039" + }, + { + "routeId": "L696", + "platformId": "U1793Z12", + "id": "808b73df-3051-442b-bd73-9d364bcf53f5" + }, + { + "routeId": "L369", + "platformId": "U1793Z3", + "id": "eb8602ea-d6d4-4ee1-8cb9-859596d81471" + }, + { + "routeId": "L400", + "platformId": "U1793Z3", + "id": "7ab31ad6-1c6a-457e-b128-9a00acd68c6d" + }, + { + "routeId": "L410", + "platformId": "U1793Z3", + "id": "38abf95c-39a9-41e5-bf59-f4fda2f7bee7" + }, + { + "routeId": "L467", + "platformId": "U1793Z4", + "id": "8a94e842-4491-46c1-a889-08c90339c8f4" + }, + { + "routeId": "L467", + "platformId": "U1793Z5", + "id": "ad713594-5b7a-4d18-8b07-6981e87609ef" + }, + { + "routeId": "L466", + "platformId": "U1793Z7", + "id": "3ec19554-7f40-4af8-af4a-bd1cdf1bae31" + }, + { + "routeId": "L475", + "platformId": "U1793Z7", + "id": "4f2650bc-06b0-4e01-91b0-21c76fd7f5bc" + }, + { + "routeId": "L695", + "platformId": "U1793Z8", + "id": "2c484aa0-4a34-4f07-8fe3-1f9660db8298" + }, + { + "routeId": "L696", + "platformId": "U1793Z8", + "id": "575ed4dc-2393-4c84-8d42-cd18b584fc2c" + }, + { + "routeId": "L474", + "platformId": "U1793Z9", + "id": "b24bdf42-5c83-4f25-baec-13fe648c0515" + }, + { + "routeId": "L369", + "platformId": "U1794Z1", + "id": "f3f82435-bffe-4707-8ebb-a93ea5790018" + }, + { + "routeId": "L474", + "platformId": "U1794Z1", + "id": "b9c431a8-6ef2-4f56-abb7-e7e57fbf5e89" + }, + { + "routeId": "L466", + "platformId": "U1794Z1", + "id": "d84e7f7f-5a9a-4a86-ac8d-8297a45b6071" + }, + { + "routeId": "L400", + "platformId": "U1794Z1", + "id": "71e56c04-0dca-4fa0-8e9b-875a0cc77106" + }, + { + "routeId": "L410", + "platformId": "U1794Z1", + "id": "11ce0f92-67b3-463d-a828-2a9015c80d09" + }, + { + "routeId": "L475", + "platformId": "U1794Z1", + "id": "25937065-227a-4e43-9ef6-b4a56974d5d0" + }, + { + "routeId": "L467", + "platformId": "U1794Z1", + "id": "7de6eb94-fa64-4c4e-88e3-07dd08ec0172" + }, + { + "routeId": "L369", + "platformId": "U1794Z2", + "id": "9c0797d4-e9fb-4412-9959-51c120c84252" + }, + { + "routeId": "L474", + "platformId": "U1794Z2", + "id": "64a32341-e504-4758-b07a-79e6a4ce2592" + }, + { + "routeId": "L466", + "platformId": "U1794Z2", + "id": "ae4a50a7-9f44-4339-bdf3-9eb21a1b286a" + }, + { + "routeId": "L400", + "platformId": "U1794Z2", + "id": "ba08a433-0f36-4d5e-b617-4dd1c5c5e4e7" + }, + { + "routeId": "L410", + "platformId": "U1794Z2", + "id": "3423a5b5-e09a-4108-b9e5-23d8c7973d2d" + }, + { + "routeId": "L475", + "platformId": "U1794Z2", + "id": "220556d3-4da5-4303-8494-b97bb10bf171" + }, + { + "routeId": "L467", + "platformId": "U1794Z2", + "id": "74097656-45ca-457b-8294-f17f5ee29527" + }, + { + "routeId": "L369", + "platformId": "U1795Z1", + "id": "adbf34b4-daef-41ee-b406-4725318efc81" + }, + { + "routeId": "L474", + "platformId": "U1795Z1", + "id": "bdfa1705-9d9d-41fd-8cec-1561603c8908" + }, + { + "routeId": "L466", + "platformId": "U1795Z1", + "id": "78740e0a-b199-4889-92f3-3b9d406fe021" + }, + { + "routeId": "L400", + "platformId": "U1795Z1", + "id": "93d56574-4f1c-4faa-9160-7530d916cc6e" + }, + { + "routeId": "L410", + "platformId": "U1795Z1", + "id": "8aeb3283-a5c3-43ac-8644-4024e5d606e3" + }, + { + "routeId": "L475", + "platformId": "U1795Z1", + "id": "95789968-0694-485e-a2d2-bcea4c371196" + }, + { + "routeId": "L467", + "platformId": "U1795Z1", + "id": "1e58b114-3556-4357-8a66-6ad6b69b9bcc" + }, + { + "routeId": "L369", + "platformId": "U1795Z2", + "id": "40c5457a-906e-442f-a1ff-9c2de8eb3a48" + }, + { + "routeId": "L474", + "platformId": "U1795Z2", + "id": "74d8bc6a-a626-4e2c-8534-f9d3d35f5871" + }, + { + "routeId": "L466", + "platformId": "U1795Z2", + "id": "1c397667-35e9-48dc-b632-44cecb338bdc" + }, + { + "routeId": "L400", + "platformId": "U1795Z2", + "id": "316dce12-fbd0-405a-a703-f8aa9b23ebf6" + }, + { + "routeId": "L410", + "platformId": "U1795Z2", + "id": "1aff6c6e-2822-40bc-a09f-6762b35e6725" + }, + { + "routeId": "L475", + "platformId": "U1795Z2", + "id": "39da13ec-fd2e-47d4-a434-a2d62aaadb29" + }, + { + "routeId": "L467", + "platformId": "U1795Z2", + "id": "744c1c46-7085-47d6-825d-3211c7b6a403" + }, + { + "routeId": "L369", + "platformId": "U1796Z1", + "id": "3fe8d0d3-a2a4-48e5-8396-e5193cb0ea7b" + }, + { + "routeId": "L369", + "platformId": "U1796Z2", + "id": "ad6289b8-e9cf-464d-bfee-29cb140de8b1" + }, + { + "routeId": "L369", + "platformId": "U1797Z1", + "id": "be1b93be-1770-41f6-915a-f314836bd9b4" + }, + { + "routeId": "L369", + "platformId": "U1797Z2", + "id": "2b0d31bd-e445-41b0-aa8f-36e04417cbb8" + }, + { + "routeId": "L369", + "platformId": "U1798Z1", + "id": "e04e038b-9fd5-43cb-ae05-48c33cf09aae" + }, + { + "routeId": "L369", + "platformId": "U1798Z2", + "id": "8cd2afcd-c1b8-4339-88a2-2d2ab5581643" + }, + { + "routeId": "L1223", + "platformId": "U1798Z301", + "id": "536dcfcf-0580-4400-83c2-7f9d681cccab" + }, + { + "routeId": "L1332", + "platformId": "U1798Z301", + "id": "cbfd3bc9-15b4-412d-b170-fc1cb7afe9fb" + }, + { + "routeId": "L471", + "platformId": "U1799Z1", + "id": "34a8c171-275c-4054-a54c-f13b533eaef4" + }, + { + "routeId": "L471", + "platformId": "U1799Z2", + "id": "b5c96e35-8257-4cc8-aacd-e45243aaeeec" + }, + { + "routeId": "L2223", + "platformId": "U1799Z401", + "id": "fd18a3f5-6de6-4c3c-b758-1f2ab0125cf8" + }, + { + "routeId": "L2223", + "platformId": "U1799Z402", + "id": "3013efaf-24ec-42f6-a196-1da0774d0195" + }, + { + "routeId": "L159", + "platformId": "U179Z1", + "id": "840288ec-aca2-4caf-a422-8cbba91860db" + }, + { + "routeId": "L378", + "platformId": "U179Z1", + "id": "9cf76821-263d-4369-ac9d-0c1a042c1b87" + }, + { + "routeId": "L375", + "platformId": "U179Z1", + "id": "0cb70898-a12b-4a27-b7c0-6bf277a48455" + }, + { + "routeId": "L953", + "platformId": "U179Z1", + "id": "5c976beb-3f5b-433f-934d-e3fc224117af" + }, + { + "routeId": "L159", + "platformId": "U179Z2", + "id": "1ed935a9-d6f5-43d2-9af4-116327b96ade" + }, + { + "routeId": "L378", + "platformId": "U179Z2", + "id": "9547c4c5-77d8-4761-92d8-642bedfdb3eb" + }, + { + "routeId": "L375", + "platformId": "U179Z2", + "id": "8e0665de-f89d-4e6e-94dd-ca810a91cc32" + }, + { + "routeId": "L953", + "platformId": "U179Z2", + "id": "e5f4a86d-1f84-46f6-8ec2-9e9d06d76ece" + }, + { + "routeId": "L302", + "platformId": "U179Z3", + "id": "af38048c-c535-4169-a200-8b2b51717a6a" + }, + { + "routeId": "L916", + "platformId": "U179Z4", + "id": "2bfb830d-237a-4b0f-a645-59c52c33e41f" + }, + { + "routeId": "L302", + "platformId": "U179Z4", + "id": "796cfcca-8af2-4acd-99ff-7969653bff1c" + }, + { + "routeId": "L916", + "platformId": "U179Z5", + "id": "0ebf83ee-e475-46d5-b9b1-556cd68f9528" + }, + { + "routeId": "L117", + "platformId": "U17Z1", + "id": "851f8ec5-c104-4017-9992-c7f935c1a9cd" + }, + { + "routeId": "L117", + "platformId": "U17Z2", + "id": "7ad70dc9-4417-422d-aed1-5ede23dbfffe" + }, + { + "routeId": "L471", + "platformId": "U1800Z1", + "id": "d83a834d-35dd-465e-ba15-af421eefb5c0" + }, + { + "routeId": "L471", + "platformId": "U1800Z2", + "id": "4f6aaa3a-4acf-459a-b1b5-6bd83489575f" + }, + { + "routeId": "L2223", + "platformId": "U1800Z401", + "id": "f2a720c6-3785-40c5-be03-014c8cc9e430" + }, + { + "routeId": "L2223", + "platformId": "U1800Z402", + "id": "0fc47cc2-73b9-418b-9e85-7a24edaf8fc9" + }, + { + "routeId": "L471", + "platformId": "U1801Z1", + "id": "5d290fb5-994b-4334-9629-f6a267f037e9" + }, + { + "routeId": "L471", + "platformId": "U1801Z2", + "id": "19e83df1-569e-4a9b-9030-b6adcdb3e718" + }, + { + "routeId": "L471", + "platformId": "U1802Z1", + "id": "8ac6f9b5-bd79-41b0-8443-45a26ef5976b" + }, + { + "routeId": "L471", + "platformId": "U1802Z2", + "id": "6f92fac2-5859-4b1f-b721-672093ff1bf2" + }, + { + "routeId": "L478", + "platformId": "U1804Z1", + "id": "bbdd4901-d064-4e2e-8aa7-86a60cb4f203" + }, + { + "routeId": "L478", + "platformId": "U1804Z2", + "id": "89fdf455-c71a-43a0-ac28-dc688ab93018" + }, + { + "routeId": "L477", + "platformId": "U1805Z1", + "id": "f22c2907-5fbd-4960-b30d-2cdb578c5e8a" + }, + { + "routeId": "L477", + "platformId": "U1805Z2", + "id": "8a8c73dc-4418-4f3c-a7dd-b7a2aa2d48c9" + }, + { + "routeId": "L348", + "platformId": "U1806Z1", + "id": "546bd79f-dff6-4970-8737-55897faae4ab" + }, + { + "routeId": "L369", + "platformId": "U1806Z1", + "id": "5b946633-6ccd-4e8a-a84a-2879552ebc7e" + }, + { + "routeId": "L348", + "platformId": "U1806Z2", + "id": "adedfbae-eaff-4a00-a3a2-536faa0ca2b5" + }, + { + "routeId": "L369", + "platformId": "U1806Z2", + "id": "cb9610f1-b230-435d-ab78-33c9e691649f" + }, + { + "routeId": "L348", + "platformId": "U1807Z1", + "id": "eb0f1e43-2581-49f1-ab07-8a8742cffb35" + }, + { + "routeId": "L369", + "platformId": "U1807Z1", + "id": "ec0dc616-59d3-4118-ac5c-68c6129c9801" + }, + { + "routeId": "L348", + "platformId": "U1807Z2", + "id": "18000deb-f303-4e27-bc2b-36963c4e5947" + }, + { + "routeId": "L369", + "platformId": "U1807Z2", + "id": "36885b80-3a12-413a-a60f-cdb27ed2fc3c" + }, + { + "routeId": "L344", + "platformId": "U1808Z1", + "id": "d380bd01-d94d-4279-9f2a-2539d1fb9ab2" + }, + { + "routeId": "L344", + "platformId": "U1808Z2", + "id": "2bed3415-4cc7-405a-974f-16d894f7a01c" + }, + { + "routeId": "L344", + "platformId": "U1809Z1", + "id": "e321d364-6f52-404b-99b9-6540cf6aa02e" + }, + { + "routeId": "L344", + "platformId": "U1809Z2", + "id": "9f7b88d1-59af-4c82-8b4e-755b43176ef7" + }, + { + "routeId": "L9", + "platformId": "U180Z1", + "id": "db82cc35-45b7-46c4-83cb-32d83667bbb2" + }, + { + "routeId": "L11", + "platformId": "U180Z1", + "id": "35516153-f0be-4d41-9e27-026d01353bcc" + }, + { + "routeId": "L31", + "platformId": "U180Z1", + "id": "4c40b9ea-ef7f-467b-81ff-49a1e4dd9962" + }, + { + "routeId": "L98", + "platformId": "U180Z1", + "id": "f07e74e2-a083-4edd-81dd-5bba7699bcd2" + }, + { + "routeId": "L9", + "platformId": "U180Z2", + "id": "ac53cc6a-3761-4201-9b72-4a1a87e2cdad" + }, + { + "routeId": "L11", + "platformId": "U180Z2", + "id": "c093a279-ba98-47c7-8ebc-06db86025b87" + }, + { + "routeId": "L31", + "platformId": "U180Z2", + "id": "35ea3916-832a-4100-bf91-2f337fd2d633" + }, + { + "routeId": "L98", + "platformId": "U180Z2", + "id": "b17267b9-1b3e-4ae5-ad83-c9651942f955" + }, + { + "routeId": "L344", + "platformId": "U1810Z1", + "id": "ecbf5cd8-ddac-4431-accb-5e4557ee1f23" + }, + { + "routeId": "L435", + "platformId": "U1811Z1", + "id": "d2a3fee6-a585-48d0-a193-cf9529b138e4" + }, + { + "routeId": "L494", + "platformId": "U1811Z1", + "id": "ccc79145-1052-4a98-81cb-afd7feef1c1c" + }, + { + "routeId": "L686", + "platformId": "U1811Z1", + "id": "6cf72e09-622a-452c-a2a3-dc99cf2cc46d" + }, + { + "routeId": "L435", + "platformId": "U1811Z2", + "id": "129d29b4-f075-42c9-a421-a0506d00fef2" + }, + { + "routeId": "L494", + "platformId": "U1811Z2", + "id": "951a51f5-147f-4b7f-92b2-63ad8b9aea5c" + }, + { + "routeId": "L686", + "platformId": "U1811Z2", + "id": "d02a257d-b660-4f48-a578-acbaaac0a836" + }, + { + "routeId": "L366", + "platformId": "U1812Z1", + "id": "e6461ec3-9bd4-48e5-b369-681f80151a89" + }, + { + "routeId": "L303", + "platformId": "U1812Z1", + "id": "06c145f8-a4ae-4a69-91b1-b1df65eb6b3c" + }, + { + "routeId": "L686", + "platformId": "U1812Z1", + "id": "d6618526-2adf-4f31-a39d-643d8329eae7" + }, + { + "routeId": "L366", + "platformId": "U1812Z2", + "id": "25b5b6a9-090c-4d2d-9cd9-643305018137" + }, + { + "routeId": "L303", + "platformId": "U1812Z2", + "id": "5d49e1b6-a41b-4ea3-a17f-989ced88da1b" + }, + { + "routeId": "L686", + "platformId": "U1812Z2", + "id": "ff68ca21-0e9a-40e1-b0e6-a7ed1d1610d7" + }, + { + "routeId": "L364", + "platformId": "U1813Z1", + "id": "86cdb853-a9f7-4a5b-93cc-5b522a8b7982" + }, + { + "routeId": "L435", + "platformId": "U1813Z1", + "id": "a559ed37-34e4-4255-b093-de49ec0fd689" + }, + { + "routeId": "L686", + "platformId": "U1813Z1", + "id": "2ad8bb0b-d907-4dfd-9121-d9c3376a582d" + }, + { + "routeId": "L364", + "platformId": "U1814Z1", + "id": "2a064309-b37c-4124-a678-7439ec77a72d" + }, + { + "routeId": "L686", + "platformId": "U1814Z1", + "id": "cad9826a-6ea8-4e0a-b80a-b1debdde36e3" + }, + { + "routeId": "L364", + "platformId": "U1814Z4", + "id": "594e9ed5-8d89-4410-8e97-0b413766f254" + }, + { + "routeId": "L435", + "platformId": "U1814Z4", + "id": "407b5911-4324-47f8-9bb5-bbe20a93b8bf" + }, + { + "routeId": "L364", + "platformId": "U1815Z1", + "id": "7dc3804e-4c51-4824-b0f0-8e16e2b94b77" + }, + { + "routeId": "L435", + "platformId": "U1815Z1", + "id": "5f7a2a02-5ac0-4c85-b3f5-7d4a95300a34" + }, + { + "routeId": "L364", + "platformId": "U1816Z3", + "id": "dd6f7c33-f88e-464f-a391-61aa13f3428d" + }, + { + "routeId": "L686", + "platformId": "U1816Z3", + "id": "4b395b21-1b44-4b70-a9f3-4380c210314e" + }, + { + "routeId": "L364", + "platformId": "U1817Z1", + "id": "6c813185-e401-4ff4-ab7a-0cc72890964b" + }, + { + "routeId": "L435", + "platformId": "U1817Z1", + "id": "8730db20-2ac8-4fa2-b759-9918ac0a0047" + }, + { + "routeId": "L364", + "platformId": "U1817Z2", + "id": "249025a9-0a21-4a5e-920d-285d08cef884" + }, + { + "routeId": "L435", + "platformId": "U1817Z2", + "id": "8d0609eb-fdd3-4a26-a303-a78321a83945" + }, + { + "routeId": "L364", + "platformId": "U1818Z1", + "id": "62d10138-dec2-47e8-8dad-14ad993e6d6c" + }, + { + "routeId": "L435", + "platformId": "U1818Z1", + "id": "0b2513da-9047-45c4-b4a4-1d7179a59e88" + }, + { + "routeId": "L364", + "platformId": "U1818Z2", + "id": "5e61a714-6490-46f7-8796-f4bd452f74ea" + }, + { + "routeId": "L435", + "platformId": "U1818Z2", + "id": "3f1c4cce-8148-40ca-acbd-60359a72842c" + }, + { + "routeId": "L364", + "platformId": "U1819Z1", + "id": "4f7c13ad-f0c1-488b-abd0-4110b11eba6c" + }, + { + "routeId": "L435", + "platformId": "U1819Z1", + "id": "6474c5ec-8209-4190-9a0e-a6d027775b9e" + }, + { + "routeId": "L364", + "platformId": "U1819Z2", + "id": "5d4fc820-d54b-45a7-ba92-5e20791f7d22" + }, + { + "routeId": "L435", + "platformId": "U1819Z2", + "id": "e47074de-952f-428c-a550-0987e03cdc69" + }, + { + "routeId": "L125", + "platformId": "U181Z1", + "id": "96adc1c6-746d-48de-a122-54df632e3857" + }, + { + "routeId": "L170", + "platformId": "U181Z1", + "id": "73ed9977-8696-4754-8f0a-c4bb23a55d98" + }, + { + "routeId": "L136", + "platformId": "U181Z1", + "id": "40d445df-e0b3-40ad-a317-e4ac8c808f07" + }, + { + "routeId": "L213", + "platformId": "U181Z1", + "id": "1238a52c-9080-4b15-b973-1ee15a5e17c1" + }, + { + "routeId": "L905", + "platformId": "U181Z1", + "id": "8eb0ca6d-366d-4539-96ff-8b75e7b9263e" + }, + { + "routeId": "L115", + "platformId": "U181Z1", + "id": "64783b7f-01cc-4a28-a6f4-81661dba964d" + }, + { + "routeId": "L203", + "platformId": "U181Z1", + "id": "01d578c7-a821-4215-818f-3487178fe8c5" + }, + { + "routeId": "L125", + "platformId": "U181Z2", + "id": "b9cb0bcc-e534-4dca-919d-abc0e308d39f" + }, + { + "routeId": "L170", + "platformId": "U181Z2", + "id": "f2ff2047-8fd8-4119-8228-0e817631d3f5" + }, + { + "routeId": "L136", + "platformId": "U181Z2", + "id": "d97c2cbe-3ecc-42ce-94fb-331aed5a8d39" + }, + { + "routeId": "L213", + "platformId": "U181Z2", + "id": "7b28082e-5da7-45c1-992f-55c5386ff1bc" + }, + { + "routeId": "L905", + "platformId": "U181Z2", + "id": "56ea9069-5cab-4233-b45b-f16824444fa1" + }, + { + "routeId": "L203", + "platformId": "U181Z2", + "id": "95b32208-b91d-491f-8723-19023166ee4a" + }, + { + "routeId": "L477", + "platformId": "U1820Z1", + "id": "3ebdd393-9b00-4182-b9e3-6d66682c5064" + }, + { + "routeId": "L477", + "platformId": "U1820Z2", + "id": "06ffef19-f690-4bdb-9903-73f425c8a785" + }, + { + "routeId": "L378", + "platformId": "U1821Z1", + "id": "33458abc-9e67-4225-b4f0-9d6a643bd52a" + }, + { + "routeId": "L367", + "platformId": "U1821Z1", + "id": "423125fb-a38a-4a84-aa59-7672c2191e81" + }, + { + "routeId": "L378", + "platformId": "U1821Z2", + "id": "a2e508dd-0194-4588-aad8-1dd8fe7582c7" + }, + { + "routeId": "L367", + "platformId": "U1821Z2", + "id": "db879e16-5a0c-4d00-aaf4-39c74b439c0a" + }, + { + "routeId": "L367", + "platformId": "U1822Z1", + "id": "796c6fb8-6efc-440e-8e9b-8d65c490c87f" + }, + { + "routeId": "L375", + "platformId": "U1822Z1", + "id": "87cd0e80-33d2-4901-ad9a-520bcdc5144e" + }, + { + "routeId": "L953", + "platformId": "U1822Z1", + "id": "95c04d94-6a6c-4024-bfde-bcf7e16ba7e0" + }, + { + "routeId": "L367", + "platformId": "U1822Z2", + "id": "a0a00d20-9287-4673-985b-6668860f0660" + }, + { + "routeId": "L375", + "platformId": "U1822Z2", + "id": "9882ca09-c448-4034-b16f-46478aa28db2" + }, + { + "routeId": "L953", + "platformId": "U1822Z2", + "id": "8d3d2a23-539f-4906-a4fd-4d4cb4665282" + }, + { + "routeId": "L367", + "platformId": "U1823Z1", + "id": "3c360efa-c029-4f8c-8c62-f352ad9ad836" + }, + { + "routeId": "L375", + "platformId": "U1823Z1", + "id": "5d1ff7d7-c437-4c75-b26f-5a03d2902334" + }, + { + "routeId": "L953", + "platformId": "U1823Z1", + "id": "d5b54977-b8b9-46df-a25e-e915e4bcf5af" + }, + { + "routeId": "L367", + "platformId": "U1823Z2", + "id": "01d58224-91d9-4f56-93ca-b563d0eb539f" + }, + { + "routeId": "L375", + "platformId": "U1823Z2", + "id": "b8f1ef15-59a3-42b8-9440-1914779a17bc" + }, + { + "routeId": "L953", + "platformId": "U1823Z2", + "id": "53403a54-456f-4330-9e34-5d5297a6cf97" + }, + { + "routeId": "L367", + "platformId": "U1824Z1", + "id": "87088de0-725c-4b12-95c9-0dd2751353a3" + }, + { + "routeId": "L375", + "platformId": "U1824Z1", + "id": "0cbccdc9-152c-4798-9a99-9ff7ee3584fd" + }, + { + "routeId": "L478", + "platformId": "U1824Z1", + "id": "da2a21fc-03d5-4be7-99a0-36c4aa47e3cf" + }, + { + "routeId": "L953", + "platformId": "U1824Z1", + "id": "4d1c271b-9ac2-4842-8133-74266e684d26" + }, + { + "routeId": "L367", + "platformId": "U1824Z2", + "id": "2853e937-60ff-43c9-b752-453881e92d5e" + }, + { + "routeId": "L375", + "platformId": "U1824Z2", + "id": "a8f2840a-2c2c-40c1-a998-73a8faf761bc" + }, + { + "routeId": "L478", + "platformId": "U1824Z2", + "id": "8f8d9b73-4497-4f47-8925-e88125e2a95c" + }, + { + "routeId": "L953", + "platformId": "U1824Z2", + "id": "1d7fd8b5-bb35-41b0-beae-871b504b0f7a" + }, + { + "routeId": "L376", + "platformId": "U1825Z1", + "id": "6282c85c-6b24-46a0-b148-2b6cd9f7f039" + }, + { + "routeId": "L478", + "platformId": "U1825Z1", + "id": "d5eafe0c-3ae4-4871-9911-1bf453b2c9db" + }, + { + "routeId": "L376", + "platformId": "U1825Z2", + "id": "714c9823-361d-4b76-a03b-52126ee5781b" + }, + { + "routeId": "L478", + "platformId": "U1825Z2", + "id": "2b22eca8-459c-40ea-b661-388427499252" + }, + { + "routeId": "L367", + "platformId": "U1826Z2", + "id": "934de1a2-6d06-4a4a-a8dc-da1687339317" + }, + { + "routeId": "L375", + "platformId": "U1826Z2", + "id": "743688b4-39b4-4a67-a681-bc06d30c3c1f" + }, + { + "routeId": "L953", + "platformId": "U1826Z2", + "id": "12fdd352-95cc-4f11-aa50-9d7ea40c8e84" + }, + { + "routeId": "L478", + "platformId": "U1826Z3", + "id": "80c72bf9-77cd-4908-83a1-801988269027" + }, + { + "routeId": "L477", + "platformId": "U1826Z3", + "id": "68cda30c-7163-4622-844d-f08436d7d0e2" + }, + { + "routeId": "L367", + "platformId": "U1827Z1", + "id": "6e1a5dab-8538-4394-b738-f11b825159d8" + }, + { + "routeId": "L375", + "platformId": "U1827Z1", + "id": "33f587e2-0ed1-4de6-a474-fbc22b9349e5" + }, + { + "routeId": "L376", + "platformId": "U1827Z1", + "id": "d1a3ef94-dbe7-4ae8-88f5-a7416387d2d8" + }, + { + "routeId": "L655", + "platformId": "U1827Z1", + "id": "745c8a7c-5077-48ab-9fad-c46912a68aca" + }, + { + "routeId": "L667", + "platformId": "U1827Z1", + "id": "7136a21a-b00c-4e51-8e4b-b9c6b185f67e" + }, + { + "routeId": "L953", + "platformId": "U1827Z1", + "id": "969a222f-cc41-4b5d-a776-871f43a05487" + }, + { + "routeId": "L367", + "platformId": "U1827Z2", + "id": "9a88482a-cd20-481f-a8d5-cd495f3d14ae" + }, + { + "routeId": "L375", + "platformId": "U1827Z2", + "id": "09549db8-4897-4a15-a253-49ba7fdc458b" + }, + { + "routeId": "L655", + "platformId": "U1827Z2", + "id": "149737fe-d989-42a6-88c8-ca1688d24795" + }, + { + "routeId": "L376", + "platformId": "U1827Z2", + "id": "838a6483-d2db-4c7c-818e-f2f826b15c45" + }, + { + "routeId": "L667", + "platformId": "U1827Z2", + "id": "f46532fd-4cd6-48ab-8f78-7dbbf99d7bcb" + }, + { + "routeId": "L953", + "platformId": "U1827Z2", + "id": "6664a89a-2469-4a2e-a4fe-d42169cfc351" + }, + { + "routeId": "L2223", + "platformId": "U1827Z401", + "id": "fb8224e4-1b30-4c04-b1ed-4a7741fe5259" + }, + { + "routeId": "L2223", + "platformId": "U1827Z402", + "id": "2bb92dd7-f87f-440c-9838-46679997413d" + }, + { + "routeId": "L367", + "platformId": "U1828Z1", + "id": "134f2217-768b-4c68-be56-cffbf4cd9ee3" + }, + { + "routeId": "L375", + "platformId": "U1828Z1", + "id": "310528d1-67a3-4ccd-bc38-d85200d77ecf" + }, + { + "routeId": "L478", + "platformId": "U1828Z1", + "id": "fb96fa0d-ab1a-4e0e-9d55-bfc8cce75519" + }, + { + "routeId": "L667", + "platformId": "U1828Z1", + "id": "5a4b8eed-7862-4b1c-818f-fc1bb9fa5ce9" + }, + { + "routeId": "L953", + "platformId": "U1828Z1", + "id": "c6ed8988-4594-4175-9d4e-c6308d4129e3" + }, + { + "routeId": "L367", + "platformId": "U1828Z2", + "id": "5868906d-837a-4e3c-bf65-b8f2f923f7b2" + }, + { + "routeId": "L375", + "platformId": "U1828Z2", + "id": "106e857f-c462-4c96-a48f-d3195894a0f9" + }, + { + "routeId": "L478", + "platformId": "U1828Z2", + "id": "28b3bd9c-ea12-48ce-8f3d-ecf6213aeeab" + }, + { + "routeId": "L667", + "platformId": "U1828Z2", + "id": "2c35faca-f04d-47cc-97ac-d152bbe434b9" + }, + { + "routeId": "L953", + "platformId": "U1828Z2", + "id": "8c689f3b-1fba-410e-8fb6-fec97da09e9d" + }, + { + "routeId": "L367", + "platformId": "U1829Z1", + "id": "93d81850-f698-446a-949b-ce9f18c96c2c" + }, + { + "routeId": "L375", + "platformId": "U1829Z1", + "id": "9f4f7a98-8217-43b2-9202-ab8d8210aa51" + }, + { + "routeId": "L478", + "platformId": "U1829Z1", + "id": "9a939efd-72bc-4010-b3e1-83d51add781e" + }, + { + "routeId": "L666", + "platformId": "U1829Z1", + "id": "b47224bb-ba11-426d-a1d7-2d1dbd4c687a" + }, + { + "routeId": "L953", + "platformId": "U1829Z1", + "id": "b7c35c34-5384-4e85-99ce-d79cc19261ae" + }, + { + "routeId": "L670", + "platformId": "U1829Z2", + "id": "d09ff5f2-7a7d-4dc1-9221-51fd15aae7b5" + }, + { + "routeId": "L669", + "platformId": "U1829Z2", + "id": "0f75a001-0b4d-459b-88de-2a0842e0deed" + }, + { + "routeId": "L666", + "platformId": "U1829Z3", + "id": "b26899b8-dd71-4b87-bf4e-226bb1168522" + }, + { + "routeId": "L667", + "platformId": "U1829Z3", + "id": "14bece59-b99c-488a-87b3-2064d9c661e0" + }, + { + "routeId": "L367", + "platformId": "U1829Z4", + "id": "2a723dc7-d288-42d5-a70d-7d8816ce6aa8" + }, + { + "routeId": "L375", + "platformId": "U1829Z4", + "id": "5d57d1bc-ae91-4aa7-94e6-8f5d54a42d62" + }, + { + "routeId": "L666", + "platformId": "U1829Z4", + "id": "731f9f9c-455b-404d-90b6-91d395112aa4" + }, + { + "routeId": "L478", + "platformId": "U1829Z4", + "id": "21299b36-4d81-4657-96ce-347313574dd1" + }, + { + "routeId": "L670", + "platformId": "U1829Z4", + "id": "b301a079-27df-4fbb-9ea7-88445f3b8f5d" + }, + { + "routeId": "L669", + "platformId": "U1829Z4", + "id": "25db724c-293b-4de6-be97-fbaabe27fe67" + }, + { + "routeId": "L953", + "platformId": "U1829Z4", + "id": "332af104-2b20-4cc6-a6d1-053cec6bbf25" + }, + { + "routeId": "L149", + "platformId": "U182Z1", + "id": "f035c894-f829-4e95-850c-f987c271ecba" + }, + { + "routeId": "L180", + "platformId": "U182Z1", + "id": "ac97b31f-11fb-476e-afe3-bc96f27fb525" + }, + { + "routeId": "L902", + "platformId": "U182Z1", + "id": "fd5a3402-29f0-45ee-a395-5277c36b1d8d" + }, + { + "routeId": "L149", + "platformId": "U182Z2", + "id": "8ac6363a-49c2-4e5c-9790-1c1929eea114" + }, + { + "routeId": "L180", + "platformId": "U182Z2", + "id": "a069d072-1923-4a3e-a5cf-0e3e372ec367" + }, + { + "routeId": "L902", + "platformId": "U182Z2", + "id": "b8df66bd-e791-45e5-90c3-5ccf05eb42f3" + }, + { + "routeId": "L375", + "platformId": "U1830Z1", + "id": "abc091b0-c7fa-4884-a84e-6c28278d098d" + }, + { + "routeId": "L670", + "platformId": "U1830Z1", + "id": "8a12ab5b-81c1-4e4e-8180-c44197a03667" + }, + { + "routeId": "L667", + "platformId": "U1830Z1", + "id": "3180b3eb-ead7-48eb-9b58-505e47d888f9" + }, + { + "routeId": "L375", + "platformId": "U1830Z2", + "id": "e43941ca-7e27-41b9-836a-756baf76b48a" + }, + { + "routeId": "L670", + "platformId": "U1830Z2", + "id": "74c85689-3a22-470a-87e2-6184c5c1a11c" + }, + { + "routeId": "L667", + "platformId": "U1830Z2", + "id": "e971a65d-efe1-49f6-a43f-c0e06745e041" + }, + { + "routeId": "L375", + "platformId": "U1831Z1", + "id": "2961ad41-0e12-4566-882e-37816a9eec1f" + }, + { + "routeId": "L375", + "platformId": "U1831Z2", + "id": "b81aebd4-9afc-4931-a7c1-779d59d074fd" + }, + { + "routeId": "L375", + "platformId": "U1832Z1", + "id": "65d284da-055f-480f-860f-ed2dc56a6551" + }, + { + "routeId": "L375", + "platformId": "U1832Z2", + "id": "0c2bda28-9532-41d2-add1-b4d2b07fc254" + }, + { + "routeId": "L1223", + "platformId": "U1832Z301", + "id": "f6062da2-56e9-4225-b032-cc379607cbe2" + }, + { + "routeId": "L1332", + "platformId": "U1832Z301", + "id": "133eea2b-ce81-4e4d-83e9-0c5b2efef3a0" + }, + { + "routeId": "L666", + "platformId": "U1833Z1", + "id": "44320455-b4d5-41a0-829c-eb220cd5ffe0" + }, + { + "routeId": "L666", + "platformId": "U1833Z2", + "id": "33a6e373-f8ba-4f75-a89f-9a5fb96c5ffa" + }, + { + "routeId": "L666", + "platformId": "U1834Z1", + "id": "897d0d93-080a-4efe-81c2-2855a63c791e" + }, + { + "routeId": "L666", + "platformId": "U1834Z2", + "id": "b6c469b5-ab8b-4eca-a458-3fc93ee3e690" + }, + { + "routeId": "L666", + "platformId": "U1835Z1", + "id": "a45ed3e8-b060-4677-b654-eacd73e10d15" + }, + { + "routeId": "L666", + "platformId": "U1835Z2", + "id": "09d8f900-5718-4020-ac98-0246379224f8" + }, + { + "routeId": "L666", + "platformId": "U1837Z1", + "id": "4b41994b-846b-4303-8d62-9103696f8d2f" + }, + { + "routeId": "L666", + "platformId": "U1837Z2", + "id": "c835f701-209e-45ca-93aa-0130345291c0" + }, + { + "routeId": "L666", + "platformId": "U1838Z1", + "id": "31096a50-e457-49fa-ae16-a581bd0dbf51" + }, + { + "routeId": "L666", + "platformId": "U1838Z2", + "id": "249ae61a-f9b2-4c33-979c-d2f025311890" + }, + { + "routeId": "L666", + "platformId": "U1839Z1", + "id": "3acff2eb-1c49-4e15-ba30-7fa653f5f11e" + }, + { + "routeId": "L666", + "platformId": "U1839Z2", + "id": "907956ff-8743-47b8-94b5-30f551207ba6" + }, + { + "routeId": "L11", + "platformId": "U183Z1", + "id": "e407af98-ecd2-4c20-98c5-3d650fe479c8" + }, + { + "routeId": "L14", + "platformId": "U183Z1", + "id": "ba75df3b-32d2-45f6-a2e8-7d6be3b356bc" + }, + { + "routeId": "L96", + "platformId": "U183Z1", + "id": "63f3eacd-c15a-400d-b9df-06effc54d0a8" + }, + { + "routeId": "L150", + "platformId": "U183Z1", + "id": "5ceab5df-2ba4-471b-a013-fe67649c9899" + }, + { + "routeId": "L188", + "platformId": "U183Z1", + "id": "c50e2993-c6e3-43b9-bf21-bc44a39fa710" + }, + { + "routeId": "L11", + "platformId": "U183Z2", + "id": "2ea89a7e-e5d3-4936-9a62-3ff931c8238f" + }, + { + "routeId": "L14", + "platformId": "U183Z2", + "id": "9fc5323e-ea58-46fe-85bd-99e9b0ae5d76" + }, + { + "routeId": "L96", + "platformId": "U183Z2", + "id": "55e4d7a4-192d-4ec5-a4ab-fa920aa975d5" + }, + { + "routeId": "L150", + "platformId": "U183Z2", + "id": "30a84b78-35f1-4350-89aa-d9ebd620bd9d" + }, + { + "routeId": "L188", + "platformId": "U183Z2", + "id": "1ec0815d-a869-439d-9f78-e8b73469d7bc" + }, + { + "routeId": "L135", + "platformId": "U183Z3", + "id": "46b898b9-3b08-43c7-b9ac-8bc1c5c13519" + }, + { + "routeId": "L136", + "platformId": "U183Z3", + "id": "1d6b123b-0822-440c-a8bd-74e3d251788c" + }, + { + "routeId": "L213", + "platformId": "U183Z3", + "id": "687fb313-36e8-453a-b450-f5dbe3c38e6b" + }, + { + "routeId": "L913", + "platformId": "U183Z3", + "id": "42c2215f-164c-47b8-91b0-bfbc096f154d" + }, + { + "routeId": "L135", + "platformId": "U183Z4", + "id": "fc9dce47-a619-4d26-97cb-b4b285fc6bfc" + }, + { + "routeId": "L136", + "platformId": "U183Z4", + "id": "059fd0a7-5e88-4f49-ac3e-a29a4d022e9b" + }, + { + "routeId": "L213", + "platformId": "U183Z4", + "id": "269744b6-0f9d-4148-9813-c37165f757ee" + }, + { + "routeId": "L913", + "platformId": "U183Z4", + "id": "c4cae618-b28a-49f2-811f-b8d2a4a1d38f" + }, + { + "routeId": "L666", + "platformId": "U1840Z1", + "id": "4206ce02-a15a-42fc-be07-f82f42899741" + }, + { + "routeId": "L666", + "platformId": "U1840Z2", + "id": "3b776c05-3854-4cbb-847e-c22cac93607f" + }, + { + "routeId": "L666", + "platformId": "U1841Z1", + "id": "9c69dfdb-c2f7-436e-a100-767d5111d4f0" + }, + { + "routeId": "L314", + "platformId": "U1842Z1", + "id": "e7ec0cc0-b053-4f57-b75e-c79972aafdb4" + }, + { + "routeId": "L688", + "platformId": "U1842Z1", + "id": "383216ce-12ca-4980-8f25-b840159d8349" + }, + { + "routeId": "L314", + "platformId": "U1842Z2", + "id": "02ed40a8-8d82-4bc9-b58b-f0d831e2f9d6" + }, + { + "routeId": "L688", + "platformId": "U1842Z2", + "id": "11c42af5-04c6-45e9-9ffa-c19a31da6aef" + }, + { + "routeId": "L1388", + "platformId": "U1842Z301", + "id": "ac2d8f00-9b95-459a-b8e4-caf96a0cecec" + }, + { + "routeId": "L317", + "platformId": "U1843Z1", + "id": "21df0971-1f9a-4d0f-a43c-6ebf652f9b6e" + }, + { + "routeId": "L961", + "platformId": "U1843Z1", + "id": "82fef9f9-04cb-47fa-9466-9f9b4081b131" + }, + { + "routeId": "L395", + "platformId": "U1843Z1", + "id": "f1adccce-b2ed-48a9-898d-a9baef390cc9" + }, + { + "routeId": "L420", + "platformId": "U1843Z1", + "id": "19b4a013-cad1-4eff-844a-ac74c497189b" + }, + { + "routeId": "L392", + "platformId": "U1843Z1", + "id": "8287b7a1-04c2-4d89-85d8-6f23da15b350" + }, + { + "routeId": "L317", + "platformId": "U1843Z2", + "id": "0ea873d3-5e2e-47d7-85a5-a11d2fe8099e" + }, + { + "routeId": "L395", + "platformId": "U1843Z2", + "id": "c94051ae-d38f-4433-b351-0a22238c9add" + }, + { + "routeId": "L392", + "platformId": "U1843Z2", + "id": "8c2ad555-402c-4ef8-9318-f2c446c46d52" + }, + { + "routeId": "L420", + "platformId": "U1843Z2", + "id": "2d44afa1-3a6d-4c6e-b40f-4ae638595416" + }, + { + "routeId": "L314", + "platformId": "U1844Z1", + "id": "3761c8fe-a075-4d1d-ab94-298465917802" + }, + { + "routeId": "L688", + "platformId": "U1845Z1", + "id": "edacbc0f-23b7-4caa-9f3f-acd287d68e2e" + }, + { + "routeId": "L688", + "platformId": "U1845Z2", + "id": "844ea6f2-fbd7-4294-bbf4-adacefb961cd" + }, + { + "routeId": "L688", + "platformId": "U1847Z1", + "id": "9bd06d09-d082-49e9-b094-e189c0e62677" + }, + { + "routeId": "L688", + "platformId": "U1847Z2", + "id": "6c8e3f09-2f65-4135-a23b-5876745d081b" + }, + { + "routeId": "L320", + "platformId": "U1848Z1", + "id": "b8f7b573-7054-4e5c-b5a5-46ecb29219c3" + }, + { + "routeId": "L317", + "platformId": "U1848Z1", + "id": "9988f5f1-8dd7-428f-8974-73c728bcef3f" + }, + { + "routeId": "L961", + "platformId": "U1848Z1", + "id": "427c07a4-0854-469c-813b-b508dcb77d6e" + }, + { + "routeId": "L688", + "platformId": "U1848Z1", + "id": "029d52d0-be64-4f50-8728-3e0b0be14e90" + }, + { + "routeId": "L317", + "platformId": "U1848Z2", + "id": "2dfac00c-3da8-4c44-9892-afb72be6ba79" + }, + { + "routeId": "L320", + "platformId": "U1848Z2", + "id": "6a81e757-6dfe-4bdc-9538-ac85320d967b" + }, + { + "routeId": "L961", + "platformId": "U1848Z2", + "id": "d7c27733-2889-4dc4-988c-24685ece98fd" + }, + { + "routeId": "L688", + "platformId": "U1848Z2", + "id": "6bf1167b-1277-4916-b8a5-406f37ac14eb" + }, + { + "routeId": "L317", + "platformId": "U1849Z1", + "id": "7b27e6d2-fabc-4f3d-83f7-22dc22b46836" + }, + { + "routeId": "L961", + "platformId": "U1849Z1", + "id": "0fa3ed7b-0e84-40c7-8560-6cc69d72804d" + }, + { + "routeId": "L317", + "platformId": "U1849Z2", + "id": "3953e420-d2c7-4b66-b32f-ebe2afd786dc" + }, + { + "routeId": "L904", + "platformId": "U184Z1", + "id": "3794cc2e-fef8-4552-9533-608164ad21ac" + }, + { + "routeId": "L153", + "platformId": "U184Z13", + "id": "b83dfdaf-f536-4aa5-9a8e-f32e20b72616" + }, + { + "routeId": "L153", + "platformId": "U184Z14", + "id": "312a90f1-2848-4177-8fca-8502b7a948a8" + }, + { + "routeId": "L904", + "platformId": "U184Z2", + "id": "b2b66a9e-ae32-4f5a-a957-dea8c8b9aca5" + }, + { + "routeId": "L7", + "platformId": "U184Z3", + "id": "64c55fac-152d-41de-9be6-e92b96673dd9" + }, + { + "routeId": "L7", + "platformId": "U184Z4", + "id": "6905ebf2-68a8-4d8f-83be-6aba82f99575" + }, + { + "routeId": "L317", + "platformId": "U1850Z1", + "id": "0b53fb3f-faea-4a54-a8a9-722cd6f48abe" + }, + { + "routeId": "L420", + "platformId": "U1850Z1", + "id": "52304fd1-9f20-47c8-8a7a-13c2e6068af9" + }, + { + "routeId": "L392", + "platformId": "U1850Z1", + "id": "62e01fab-372d-44bd-88da-95356a1742a7" + }, + { + "routeId": "L317", + "platformId": "U1850Z2", + "id": "d4d87b5f-0541-426c-b33f-9d83c73173a2" + }, + { + "routeId": "L392", + "platformId": "U1850Z2", + "id": "e4f8ecfe-b0fe-492d-8940-9e7acc13c36c" + }, + { + "routeId": "L420", + "platformId": "U1850Z2", + "id": "b775b7a9-2ec1-47ce-9014-01be2d6ccfbb" + }, + { + "routeId": "L361", + "platformId": "U1850Z3", + "id": "e949fe7e-8fa5-4117-b2c9-99a85d8c8037" + }, + { + "routeId": "L1388", + "platformId": "U1850Z301", + "id": "4f215af4-a613-492e-88fd-733d9481cd57" + }, + { + "routeId": "L361", + "platformId": "U1850Z4", + "id": "40d60801-c6bc-4a01-9653-756ed5543531" + }, + { + "routeId": "L317", + "platformId": "U1851Z1", + "id": "7260b84c-1e8c-41b2-b48b-b57359c87514" + }, + { + "routeId": "L961", + "platformId": "U1851Z1", + "id": "dc9572a8-f567-4c6d-a1ee-76a97f5a69da" + }, + { + "routeId": "L392", + "platformId": "U1851Z1", + "id": "ae7c29cf-e356-48c5-8a0a-89b25f1a8d89" + }, + { + "routeId": "L361", + "platformId": "U1851Z1", + "id": "bb942817-b93f-4378-ac48-805d45e8dad5" + }, + { + "routeId": "L514", + "platformId": "U1851Z1", + "id": "bdd8de0a-1273-44b4-90c0-e2f47697f3ce" + }, + { + "routeId": "L317", + "platformId": "U1851Z2", + "id": "60b6fd66-7c5e-4c7f-94e4-321db56f2ca8" + }, + { + "routeId": "L517", + "platformId": "U1851Z2", + "id": "b4c4ed59-38d1-4764-8a04-79fdb4c396f2" + }, + { + "routeId": "L361", + "platformId": "U1851Z3", + "id": "972e0d29-3671-488a-a3e9-90bec60b3e32" + }, + { + "routeId": "L395", + "platformId": "U1851Z4", + "id": "545a21de-d4b9-4979-bb3c-f7d81cd7e79d" + }, + { + "routeId": "L392", + "platformId": "U1851Z4", + "id": "9ed49349-e57b-4ee9-b294-e1f5106d19da" + }, + { + "routeId": "L520", + "platformId": "U1851Z4", + "id": "59255986-529e-4920-a44c-6f2661513b71" + }, + { + "routeId": "L420", + "platformId": "U1851Z4", + "id": "7f5668a0-161a-4e6e-829a-3797b0fed105" + }, + { + "routeId": "L420", + "platformId": "U1851Z7", + "id": "98a3e194-bc10-4d8c-ad61-98d5ae7c3ee1" + }, + { + "routeId": "L520", + "platformId": "U1851Z7", + "id": "b60ee379-a297-4b69-bafa-92ac7ca2404c" + }, + { + "routeId": "L514", + "platformId": "U1851Z7", + "id": "0ccbf1f1-bfb0-448c-96d1-5b3db00b1722" + }, + { + "routeId": "L395", + "platformId": "U1851Z8", + "id": "c2d06f42-e1a2-4a35-b500-e3aa351e41ae" + }, + { + "routeId": "L517", + "platformId": "U1851Z8", + "id": "1a7455b9-23b4-4208-9c62-2dad8f2c7f82" + }, + { + "routeId": "L392", + "platformId": "U1851Z9", + "id": "a5891bd6-def4-4011-b79f-ba67a1b0c2bb" + }, + { + "routeId": "L951", + "platformId": "U1852Z1", + "id": "a1f6c3a0-6cc8-4910-a2d3-8585ac2ae1b6" + }, + { + "routeId": "L951", + "platformId": "U1852Z2", + "id": "9a12f977-a97f-4488-b782-e92d47246b40" + }, + { + "routeId": "L311", + "platformId": "U1852Z51", + "id": "d8115db3-6c71-4772-96d1-5a325f6e3d55" + }, + { + "routeId": "L996", + "platformId": "U1853Z3", + "id": "11e2714e-ef07-4c27-9f09-e9c71713ff16" + }, + { + "routeId": "L1307", + "platformId": "U1853Z301", + "id": "ae510b59-8ce9-4f09-8f7d-7bd3395d2e39" + }, + { + "routeId": "L996", + "platformId": "U1855Z1", + "id": "12cc8b39-edce-4cef-9b71-1f4f6c37ed5f" + }, + { + "routeId": "L996", + "platformId": "U1855Z2", + "id": "68fbbf77-f169-4786-b57c-0ff453d36e48" + }, + { + "routeId": "L996", + "platformId": "U1857Z1", + "id": "b949aa45-a648-4787-b90f-d32ff499a0ea" + }, + { + "routeId": "L996", + "platformId": "U1857Z2", + "id": "33902e88-0b41-4195-9f9d-17d2f509716d" + }, + { + "routeId": "L996", + "platformId": "U1858Z1", + "id": "d4785332-75c1-4c71-b4ad-f457328c801c" + }, + { + "routeId": "L996", + "platformId": "U1858Z2", + "id": "b1851a8b-347b-442a-8ee3-2db2448aabe8" + }, + { + "routeId": "L461", + "platformId": "U1859Z1", + "id": "5896f221-104c-4b03-9ebf-bd8731885eeb" + }, + { + "routeId": "L113", + "platformId": "U185Z1", + "id": "874981bf-bad0-4fe6-888e-6383a1ff244d" + }, + { + "routeId": "L913", + "platformId": "U185Z1", + "id": "0c256827-1281-4c21-befa-4d8ae49633fb" + }, + { + "routeId": "L113", + "platformId": "U185Z2", + "id": "bedf7355-f918-4983-8172-9b75804705ee" + }, + { + "routeId": "L913", + "platformId": "U185Z2", + "id": "abdfccb2-4795-4b87-98d5-a7e87c73492a" + }, + { + "routeId": "L341", + "platformId": "U185Z2", + "id": "edc49f77-632e-449e-8c34-2b3550dbdffc" + }, + { + "routeId": "L385", + "platformId": "U1861Z1", + "id": "4865997c-4985-46f1-b0d6-671517a530f9" + }, + { + "routeId": "L385", + "platformId": "U1861Z2", + "id": "2057178c-67bb-4cf7-9931-eeea33a90c42" + }, + { + "routeId": "L1217", + "platformId": "U1863Z301", + "id": "07c9abd9-4efb-4dd1-b5f3-cbfe0d844c16" + }, + { + "routeId": "L1249", + "platformId": "U1863Z301", + "id": "078dd485-761c-41f5-b4d3-4f26f8b8d4c4" + }, + { + "routeId": "L1309", + "platformId": "U1863Z301", + "id": "6f03cfa3-a0cc-4dbc-8389-1b081954a7e8" + }, + { + "routeId": "L363", + "platformId": "U1864Z1", + "id": "84aa3e82-5786-47c8-b5c9-298a2e042867" + }, + { + "routeId": "L363", + "platformId": "U1864Z2", + "id": "b660d5e6-91ba-4a40-a3e9-531c608b07bc" + }, + { + "routeId": "L363", + "platformId": "U1866Z1", + "id": "e146aeea-45fe-41ff-a7d9-ded57d74bed1" + }, + { + "routeId": "L363", + "platformId": "U1866Z2", + "id": "c93fcb36-27bf-4b0e-be85-783106611b0c" + }, + { + "routeId": "L385", + "platformId": "U1869Z1", + "id": "a1afdcd0-77d1-4c8d-8370-049a54c51981" + }, + { + "routeId": "L385", + "platformId": "U1869Z2", + "id": "d424ac09-da09-4801-b58c-678072864c43" + }, + { + "routeId": "L341", + "platformId": "U186Z1", + "id": "b6853298-80ad-4da1-9aa9-f3c82b42fed6" + }, + { + "routeId": "L341", + "platformId": "U186Z2", + "id": "80e466ec-b7dc-4e78-9fff-6f7607a60baf" + }, + { + "routeId": "L385", + "platformId": "U1870Z1", + "id": "9c832a76-8726-4738-8a5b-8f771c7d185e" + }, + { + "routeId": "L435", + "platformId": "U1870Z1", + "id": "05b1bb2c-899e-4e44-99a6-80310607a682" + }, + { + "routeId": "L494", + "platformId": "U1870Z1", + "id": "12c20987-c489-4365-8331-7dccf1a1befb" + }, + { + "routeId": "L686", + "platformId": "U1870Z1", + "id": "de637864-e8df-4773-af92-7ac30fec5afb" + }, + { + "routeId": "L385", + "platformId": "U1870Z2", + "id": "88a69f67-7acf-4fa9-9354-c3f5d21e3853" + }, + { + "routeId": "L494", + "platformId": "U1870Z2", + "id": "a76ce454-de2d-4ba9-b518-983a0368f178" + }, + { + "routeId": "L686", + "platformId": "U1870Z2", + "id": "c90eb975-93e1-49b5-9d58-54be27e87b9b" + }, + { + "routeId": "L363", + "platformId": "U1871Z1", + "id": "3735ba94-c63c-483f-987c-d1bfabd1664d" + }, + { + "routeId": "L363", + "platformId": "U1871Z2", + "id": "9ec48397-ccf8-4a14-8374-4ac61ffdfa9a" + }, + { + "routeId": "L363", + "platformId": "U1872Z1", + "id": "0bd53677-4e0a-44d3-8091-f72cf8c17130" + }, + { + "routeId": "L363", + "platformId": "U1872Z2", + "id": "0db0f615-6845-44cd-b6a7-aab5fa760fa4" + }, + { + "routeId": "L363", + "platformId": "U1873Z1", + "id": "c839b6b7-d9a1-419e-ad81-af01dfd2ec2e" + }, + { + "routeId": "L363", + "platformId": "U1873Z2", + "id": "4faefde6-64d7-4372-9086-44fde63de46a" + }, + { + "routeId": "L363", + "platformId": "U1874Z1", + "id": "21f19a06-8f19-40c9-b162-330b38926c89" + }, + { + "routeId": "L363", + "platformId": "U1874Z2", + "id": "04ecaf29-00d0-47e2-bbc5-15928eedb675" + }, + { + "routeId": "L364", + "platformId": "U1875Z1", + "id": "f4403b62-bd25-4638-9ed5-a625f6acbe49" + }, + { + "routeId": "L494", + "platformId": "U1875Z1", + "id": "11977a97-76a3-4457-883c-2ba8e6b84e91" + }, + { + "routeId": "L364", + "platformId": "U1875Z2", + "id": "0359194c-7920-4e0f-b341-03b38d7e98b0" + }, + { + "routeId": "L385", + "platformId": "U1875Z2", + "id": "661d586b-ee4f-4776-b6ec-4742dfb69b32" + }, + { + "routeId": "L494", + "platformId": "U1875Z2", + "id": "8b7bbb11-66de-4bbb-bda5-741413d1b841" + }, + { + "routeId": "L469", + "platformId": "U1877Z3", + "id": "85470d5e-3e25-48ba-ab7d-6208acccfcba" + }, + { + "routeId": "L387", + "platformId": "U1878Z1", + "id": "305f89d5-fe30-45d0-a4bd-19476ed32d17" + }, + { + "routeId": "L381", + "platformId": "U1878Z1", + "id": "4afb7c3f-3323-4105-8cda-4e8f68bd5453" + }, + { + "routeId": "L382", + "platformId": "U1878Z1", + "id": "db3e0697-7b10-4203-b98c-7b6e2793c48c" + }, + { + "routeId": "L383", + "platformId": "U1878Z1", + "id": "9d1f00ba-aef7-4063-9056-03b7389dd886" + }, + { + "routeId": "L385", + "platformId": "U1878Z1", + "id": "be5f4c9d-b81b-4e4e-aa59-4c825afdae63" + }, + { + "routeId": "L494", + "platformId": "U1878Z1", + "id": "19f88fd8-47be-473d-8f19-7f5f0ba8eb4b" + }, + { + "routeId": "L959", + "platformId": "U1878Z1", + "id": "89f80d19-1ccd-4559-89de-4a986008b503" + }, + { + "routeId": "L381", + "platformId": "U1878Z2", + "id": "078fd4d6-25fd-4429-bcb1-c4533b98cc1f" + }, + { + "routeId": "L387", + "platformId": "U1878Z2", + "id": "9f40d755-594f-452a-a393-3c997ec46e40" + }, + { + "routeId": "L382", + "platformId": "U1878Z2", + "id": "1d865bbb-228c-4aa5-aaa1-aecc4ddcc9ed" + }, + { + "routeId": "L383", + "platformId": "U1878Z2", + "id": "896a4d09-6459-40dc-806c-697aa61a7b69" + }, + { + "routeId": "L385", + "platformId": "U1878Z2", + "id": "51a45e88-efce-4abe-a5c8-efcf3ed9a4d9" + }, + { + "routeId": "L494", + "platformId": "U1878Z2", + "id": "2f1e85cd-8ac8-4958-8b05-3af41431b0aa" + }, + { + "routeId": "L959", + "platformId": "U1878Z2", + "id": "784e6729-8072-4c17-ba00-eba2ea38930a" + }, + { + "routeId": "L2", + "platformId": "U187Z1", + "id": "ba486e41-54a6-4a6d-8616-2fb12fcb59d7" + }, + { + "routeId": "L12", + "platformId": "U187Z1", + "id": "ca37a46d-3d35-4f88-ab18-82bd5bf496f8" + }, + { + "routeId": "L18", + "platformId": "U187Z1", + "id": "4ebec1f6-9a82-45aa-b6a2-dee9c4be4182" + }, + { + "routeId": "L20", + "platformId": "U187Z1", + "id": "29c7bf3e-0f71-452d-87f8-63dc939669b2" + }, + { + "routeId": "L97", + "platformId": "U187Z1", + "id": "aaf019f9-5e1a-47b7-8202-05105148454f" + }, + { + "routeId": "L2", + "platformId": "U187Z2", + "id": "7078bae5-15bd-4256-8a49-764641f8ab60" + }, + { + "routeId": "L12", + "platformId": "U187Z2", + "id": "29ebeeb7-bfbb-4b01-a620-c570515fff77" + }, + { + "routeId": "L18", + "platformId": "U187Z2", + "id": "e6e4c79e-c015-4be3-98fe-c506452677b4" + }, + { + "routeId": "L20", + "platformId": "U187Z2", + "id": "97e1657d-df8b-47a9-8b9a-69ba3b3f7a89" + }, + { + "routeId": "L97", + "platformId": "U187Z2", + "id": "ef87d7f1-3c30-4348-bd78-be323437bcb5" + }, + { + "routeId": "L385", + "platformId": "U1881Z1", + "id": "49c2a606-70e8-4f4e-ae98-a2d701d332ca" + }, + { + "routeId": "L435", + "platformId": "U1881Z1", + "id": "d7de3213-f06c-46f2-a356-47227e087432" + }, + { + "routeId": "L494", + "platformId": "U1881Z1", + "id": "11fb3c51-c0b4-4427-973a-74691a428f48" + }, + { + "routeId": "L686", + "platformId": "U1881Z1", + "id": "51715c8d-a827-41cf-9dbf-2a937b7d3be0" + }, + { + "routeId": "L385", + "platformId": "U1881Z2", + "id": "418a2728-befb-4428-87ba-417ad6d6b0b2" + }, + { + "routeId": "L435", + "platformId": "U1881Z2", + "id": "11916cb0-19b9-40e8-ae50-5f036733c7b8" + }, + { + "routeId": "L494", + "platformId": "U1881Z2", + "id": "89903bf8-3370-49fd-85f6-ef89b4960435" + }, + { + "routeId": "L686", + "platformId": "U1881Z2", + "id": "6973898c-9768-40a4-88de-6bc38ea36b9c" + }, + { + "routeId": "L387", + "platformId": "U1882Z1", + "id": "625111bc-7b08-48a2-aa27-c5e310493c1a" + }, + { + "routeId": "L381", + "platformId": "U1882Z1", + "id": "7c01b413-70f7-40f0-b311-3326dcd2cb88" + }, + { + "routeId": "L382", + "platformId": "U1882Z1", + "id": "d583d841-4f4b-4817-9e14-40b8f7f5c166" + }, + { + "routeId": "L383", + "platformId": "U1882Z1", + "id": "dd948cf2-0807-4fb4-b5bd-b1c25643a0f1" + }, + { + "routeId": "L385", + "platformId": "U1882Z1", + "id": "17830653-e096-4679-96c2-114c38947c7d" + }, + { + "routeId": "L494", + "platformId": "U1882Z1", + "id": "36f8570a-7af2-4e2e-8d39-efd587a255e8" + }, + { + "routeId": "L959", + "platformId": "U1882Z1", + "id": "32d7e536-d697-4a1f-b3d2-4508b3a13a95" + }, + { + "routeId": "L364", + "platformId": "U1882Z2", + "id": "1bf69817-12ee-458e-8415-f8686b7534ec" + }, + { + "routeId": "L381", + "platformId": "U1882Z2", + "id": "a924e9ed-4f2a-4b82-8ffd-6eb01a95a79e" + }, + { + "routeId": "L387", + "platformId": "U1882Z2", + "id": "7509a92e-c25e-4061-a6b9-23535ad44a3c" + }, + { + "routeId": "L382", + "platformId": "U1882Z2", + "id": "5fcfa6da-cf6b-42f9-855c-507170132306" + }, + { + "routeId": "L383", + "platformId": "U1882Z2", + "id": "297ca6d7-dedc-443f-9e7f-24249b88b5e0" + }, + { + "routeId": "L385", + "platformId": "U1882Z2", + "id": "2b54259a-ef83-40be-a230-ac0cdc8ea71b" + }, + { + "routeId": "L435", + "platformId": "U1882Z2", + "id": "fd3cc824-cd65-453e-8591-c327ea790416" + }, + { + "routeId": "L494", + "platformId": "U1882Z2", + "id": "ea3a4095-ff97-446b-913e-2e6da6e1b2e8" + }, + { + "routeId": "L959", + "platformId": "U1882Z2", + "id": "369c2e99-eb40-4c5d-8e55-b3e3a2109a16" + }, + { + "routeId": "L435", + "platformId": "U1883Z1", + "id": "a248c2d4-fdde-4e4f-97eb-24a6d10917b8" + }, + { + "routeId": "L385", + "platformId": "U1884Z1", + "id": "ca61e1bf-9971-4248-a28c-766550e22856" + }, + { + "routeId": "L435", + "platformId": "U1884Z1", + "id": "ad8f1057-2982-4b93-b7c5-2cd66f594b2f" + }, + { + "routeId": "L494", + "platformId": "U1884Z1", + "id": "29163351-0645-4fa9-8325-6994d82de037" + }, + { + "routeId": "L686", + "platformId": "U1884Z1", + "id": "a3e96f53-eba0-4149-a1e3-811ba3d7b9ab" + }, + { + "routeId": "L385", + "platformId": "U1884Z2", + "id": "6baf33fb-6270-4541-87f5-39b764d86646" + }, + { + "routeId": "L494", + "platformId": "U1884Z2", + "id": "0bd010d5-68e4-4c53-997d-714696f30073" + }, + { + "routeId": "L686", + "platformId": "U1884Z2", + "id": "03b2bf2f-8e40-4f89-9a43-bcce3dd6cb00" + }, + { + "routeId": "L364", + "platformId": "U1885Z1", + "id": "c656cb9c-3a93-426d-b8f0-2f8e5cdd3aaa" + }, + { + "routeId": "L387", + "platformId": "U1885Z1", + "id": "27469f67-7460-4f31-984c-26ee5b709c7b" + }, + { + "routeId": "L381", + "platformId": "U1885Z1", + "id": "7f38cf39-c91d-462d-b02f-a4fdcc9f597d" + }, + { + "routeId": "L382", + "platformId": "U1885Z1", + "id": "42e01531-8b53-47f8-b26c-42df7ab77131" + }, + { + "routeId": "L383", + "platformId": "U1885Z1", + "id": "5e324afa-ca8e-4a0f-8934-7215df232d76" + }, + { + "routeId": "L494", + "platformId": "U1885Z1", + "id": "4f682d5d-6e25-40b8-8545-7ec47eca934a" + }, + { + "routeId": "L959", + "platformId": "U1885Z1", + "id": "00c36771-8946-4b56-afd0-ee0fd6887c4e" + }, + { + "routeId": "L364", + "platformId": "U1885Z2", + "id": "80777c46-9677-4f96-a44d-12d532e63bf9" + }, + { + "routeId": "L381", + "platformId": "U1885Z2", + "id": "32d54887-af7a-4ad8-ab9d-8bfb3819fe24" + }, + { + "routeId": "L387", + "platformId": "U1885Z2", + "id": "943a73ef-e390-42a5-af68-adf270d23d50" + }, + { + "routeId": "L382", + "platformId": "U1885Z2", + "id": "d30da940-aa65-4a0b-b8ce-c8a1828b18c6" + }, + { + "routeId": "L383", + "platformId": "U1885Z2", + "id": "48fd7171-618f-4983-a9b1-1c6fe88fb5ac" + }, + { + "routeId": "L494", + "platformId": "U1885Z2", + "id": "65cc6773-4a9c-4149-8527-35934343ec17" + }, + { + "routeId": "L959", + "platformId": "U1885Z2", + "id": "f591fe4d-e4e6-4834-903d-6d6aaad9a742" + }, + { + "routeId": "L387", + "platformId": "U1886Z1", + "id": "6b6c9ebd-6f70-4a79-988d-6c7dc2666c99" + }, + { + "routeId": "L381", + "platformId": "U1886Z1", + "id": "e77b8461-4af0-4427-8997-1c6e2a4d5e41" + }, + { + "routeId": "L382", + "platformId": "U1886Z1", + "id": "7bfb4239-c73f-4ac5-853d-ba4eac862412" + }, + { + "routeId": "L383", + "platformId": "U1886Z1", + "id": "d6ea0832-2b3c-4716-aff6-476227a8c35f" + }, + { + "routeId": "L385", + "platformId": "U1886Z1", + "id": "ccce4d7d-c8b2-40a7-930f-2f4f28b83799" + }, + { + "routeId": "L494", + "platformId": "U1886Z1", + "id": "8c403265-2299-49d0-893e-9f862cb6202d" + }, + { + "routeId": "L959", + "platformId": "U1886Z1", + "id": "1083e472-255b-4889-befc-a91b95945e75" + }, + { + "routeId": "L364", + "platformId": "U1886Z2", + "id": "26215fa5-33f1-4f1b-8916-721bca4f98af" + }, + { + "routeId": "L381", + "platformId": "U1886Z2", + "id": "5adf16b9-12ef-44d9-a083-dad2f970c7ca" + }, + { + "routeId": "L387", + "platformId": "U1886Z2", + "id": "265f6b43-18a5-4e94-85e7-b69ffe2ccc73" + }, + { + "routeId": "L382", + "platformId": "U1886Z2", + "id": "bab43e2f-1314-4e67-91d0-65c38d156479" + }, + { + "routeId": "L383", + "platformId": "U1886Z2", + "id": "73c82c71-f5d6-4cd2-a3eb-5a7511431c2c" + }, + { + "routeId": "L385", + "platformId": "U1886Z2", + "id": "e6710efb-1453-4c86-896a-3694d341db76" + }, + { + "routeId": "L435", + "platformId": "U1886Z2", + "id": "35e823eb-3507-4a83-81ce-f18e5aefecd7" + }, + { + "routeId": "L494", + "platformId": "U1886Z2", + "id": "adc2be8c-9853-4a3f-9eb3-a6a1a5137ffd" + }, + { + "routeId": "L959", + "platformId": "U1886Z2", + "id": "2c191be2-5651-48f5-9bff-297235169c03" + }, + { + "routeId": "L385", + "platformId": "U1889Z1", + "id": "a438f6b4-666c-413b-bd03-5e99b46788f3" + }, + { + "routeId": "L385", + "platformId": "U1889Z2", + "id": "1348bdc1-d2cf-46a2-aa01-4fc7e6546f04" + }, + { + "routeId": "L141", + "platformId": "U188Z1", + "id": "a9000bec-3a3d-4066-9de7-e5bbdc6774b3" + }, + { + "routeId": "L912", + "platformId": "U188Z1", + "id": "29c2f53e-427f-4013-9d5b-5258002aa697" + }, + { + "routeId": "L171", + "platformId": "U188Z1", + "id": "96ddba71-2ff6-48ad-996a-bfec742e18f5" + }, + { + "routeId": "L221", + "platformId": "U188Z1", + "id": "cd374e06-4d2b-45ce-8676-40ab6eaa1f69" + }, + { + "routeId": "L223", + "platformId": "U188Z1", + "id": "dc775725-b75c-47c4-9189-86f859140f7d" + }, + { + "routeId": "L224", + "platformId": "U188Z1", + "id": "9d762445-2a03-4ee9-9593-d65ff4676e82" + }, + { + "routeId": "L344", + "platformId": "U188Z1", + "id": "571ba5b6-ea1c-40fc-bde0-b1477eb569bd" + }, + { + "routeId": "L303", + "platformId": "U188Z1", + "id": "0ef14e90-bf96-419e-b3c6-f9ee06e09cc4" + }, + { + "routeId": "L353", + "platformId": "U188Z1", + "id": "bc6daf13-554a-4b91-8061-276f8873da07" + }, + { + "routeId": "L354", + "platformId": "U188Z1", + "id": "b5559c1f-3e8f-4019-a629-2ffd135f9afa" + }, + { + "routeId": "L398", + "platformId": "U188Z1", + "id": "c5c74e1d-14d2-4d79-8563-6d04f042f69a" + }, + { + "routeId": "L141", + "platformId": "U188Z2", + "id": "bffddcca-84c8-49a3-bf7c-523f8ed4fdc1" + }, + { + "routeId": "L912", + "platformId": "U188Z2", + "id": "2a0a362d-95cc-42e7-89bb-dd101bb0fcda" + }, + { + "routeId": "L171", + "platformId": "U188Z2", + "id": "f684be29-230f-41e3-9501-684d720dbcff" + }, + { + "routeId": "L221", + "platformId": "U188Z2", + "id": "99cc8e55-4564-43bb-a123-2b9822f2e5bd" + }, + { + "routeId": "L223", + "platformId": "U188Z2", + "id": "757bc4d4-b3d5-4c20-901b-042a5e444236" + }, + { + "routeId": "L224", + "platformId": "U188Z2", + "id": "aca5abc4-a9b7-4f4c-afb9-57ac6463d7d5" + }, + { + "routeId": "L344", + "platformId": "U188Z2", + "id": "749bdcea-2dfc-4c7d-8758-71cea6392f5c" + }, + { + "routeId": "L353", + "platformId": "U188Z2", + "id": "d5fef2ba-287b-42fb-bdd0-a37acf8034ca" + }, + { + "routeId": "L303", + "platformId": "U188Z2", + "id": "c2d95fe2-bd05-4edc-a03e-bf14153abaad" + }, + { + "routeId": "L354", + "platformId": "U188Z2", + "id": "38b9a44c-d744-40c0-a02d-1d96fbe0f503" + }, + { + "routeId": "L398", + "platformId": "U188Z2", + "id": "ed721e5e-dd63-40f2-a1a7-16e2932d4413" + }, + { + "routeId": "L385", + "platformId": "U1890Z1", + "id": "c99a41b1-813e-4e21-abdd-599e9ceedaed" + }, + { + "routeId": "L435", + "platformId": "U1890Z1", + "id": "2c1de1ba-5269-407a-ab28-4169b8ec4bd0" + }, + { + "routeId": "L494", + "platformId": "U1890Z1", + "id": "40756580-3954-44fc-a8e5-a3f7be9c1c37" + }, + { + "routeId": "L686", + "platformId": "U1890Z1", + "id": "50380a0f-765c-42e1-bc64-042230b78e93" + }, + { + "routeId": "L686", + "platformId": "U1891Z1", + "id": "6c7510e0-2644-41f5-9cdc-616bb1e461dd" + }, + { + "routeId": "L435", + "platformId": "U1891Z2", + "id": "8a905426-b1ee-4747-8c15-eb63cb928d5f" + }, + { + "routeId": "L494", + "platformId": "U1891Z2", + "id": "2586f3b8-9bb1-4f01-901d-920324138f62" + }, + { + "routeId": "L686", + "platformId": "U1891Z2", + "id": "939b5f5f-ec6e-4a0f-8b05-8efc2208f1dd" + }, + { + "routeId": "L469", + "platformId": "U1893Z1", + "id": "db27553f-7b36-4ebc-aeda-1df9e0f62b8b" + }, + { + "routeId": "L618", + "platformId": "U1895Z1", + "id": "0452448d-e730-4c5e-9501-1cb8741a51c2" + }, + { + "routeId": "L600", + "platformId": "U1895Z1", + "id": "21bd7b4b-efde-4b70-a668-ee3c3e5b0c04" + }, + { + "routeId": "L619", + "platformId": "U1895Z1", + "id": "d441ae19-0eee-4b15-ad59-e87e95ef7c99" + }, + { + "routeId": "L555", + "platformId": "U1895Z1", + "id": "98b43cb7-f5b7-4107-843c-dfc5084b9a96" + }, + { + "routeId": "L618", + "platformId": "U1895Z2", + "id": "5117585d-1af5-41c6-a6d6-9bfd1aaddabb" + }, + { + "routeId": "L600", + "platformId": "U1895Z2", + "id": "c340e5f3-8700-4899-9551-f6299dcb6269" + }, + { + "routeId": "L619", + "platformId": "U1895Z2", + "id": "5246be24-e352-4cac-ac65-1ae1c9f12427" + }, + { + "routeId": "L555", + "platformId": "U1895Z2", + "id": "5e51d6e1-2f42-4d27-a2cf-2712fcff2bdd" + }, + { + "routeId": "L363", + "platformId": "U1896Z1", + "id": "b86f9085-5102-469c-9094-c6852f8ab860" + }, + { + "routeId": "L363", + "platformId": "U1896Z2", + "id": "fcee92c9-2462-4aee-a1d0-0b8110b75c01" + }, + { + "routeId": "L364", + "platformId": "U1897Z2", + "id": "cf603c96-98ab-4311-a3ea-112be934200a" + }, + { + "routeId": "L435", + "platformId": "U1897Z2", + "id": "b2d12a59-95e6-442d-a5af-faaffc6f0876" + }, + { + "routeId": "L435", + "platformId": "U1898Z1", + "id": "f3baf0ea-fa4a-49be-8f55-fa5cea4aa6a0" + }, + { + "routeId": "L494", + "platformId": "U1898Z1", + "id": "2e3b3d41-a157-4e35-b07c-12ed1081a9ce" + }, + { + "routeId": "L686", + "platformId": "U1898Z1", + "id": "4bd07c63-d2b6-49da-9bfb-547fc2bcff78" + }, + { + "routeId": "L435", + "platformId": "U1898Z2", + "id": "eba57866-b81c-457a-9968-b2dd8e633a96" + }, + { + "routeId": "L494", + "platformId": "U1898Z2", + "id": "b2664fb4-a336-45cf-a8a4-b41d11cc3bab" + }, + { + "routeId": "L686", + "platformId": "U1898Z2", + "id": "1f874862-520c-4076-a7c3-e25cbc9e339e" + }, + { + "routeId": "L101", + "platformId": "U189Z1", + "id": "f1c876e2-4235-4f77-b505-b3ea47e7c779" + }, + { + "routeId": "L124", + "platformId": "U189Z1", + "id": "1759b0ed-7739-40ff-b8b2-34f29793e5fe" + }, + { + "routeId": "L139", + "platformId": "U189Z1", + "id": "59ff82d2-744d-4d0f-85aa-560d9f2e277c" + }, + { + "routeId": "L101", + "platformId": "U189Z3", + "id": "34442753-be60-45e2-9b5a-b32a6b7b95cd" + }, + { + "routeId": "L908", + "platformId": "U18Z1", + "id": "d44ecce9-0147-4d79-8fa8-3f51c311e8a3" + }, + { + "routeId": "L221", + "platformId": "U18Z1", + "id": "8abae9df-beb5-4f73-a27d-1fc6482c873a" + }, + { + "routeId": "L303", + "platformId": "U18Z1", + "id": "0e27acc3-ae50-45c1-8dbd-e7c4dc02fe33" + }, + { + "routeId": "L908", + "platformId": "U18Z2", + "id": "0318623e-2075-4828-8501-4f2d76db7bbe" + }, + { + "routeId": "L221", + "platformId": "U18Z2", + "id": "6a6b7b49-f13d-453d-b676-d9db811dec27" + }, + { + "routeId": "L303", + "platformId": "U18Z2", + "id": "9c74d623-3af9-4f3c-90e9-3f4fad555d89" + }, + { + "routeId": "L469", + "platformId": "U1901Z1", + "id": "dc0d30a5-0873-4465-9201-2c41df1b6a8b" + }, + { + "routeId": "L469", + "platformId": "U1902Z1", + "id": "332fa9ef-b73f-4d74-bc4d-ac075e640e1e" + }, + { + "routeId": "L333", + "platformId": "U1904Z1", + "id": "9a5f823a-33ea-4349-9d72-c5a91905edb9" + }, + { + "routeId": "L960", + "platformId": "U1904Z1", + "id": "04d21d83-4c95-48a8-9c5e-d7b70145bb8a" + }, + { + "routeId": "L333", + "platformId": "U1904Z2", + "id": "672737b2-75c7-45c5-8ed0-e2d2b4a89bdc" + }, + { + "routeId": "L333", + "platformId": "U1905Z1", + "id": "b535f969-4c63-42f2-a4ee-b6db4a15504a" + }, + { + "routeId": "L445", + "platformId": "U1905Z1", + "id": "942b7cf4-ed6c-4e20-9b89-456d34270656" + }, + { + "routeId": "L960", + "platformId": "U1905Z1", + "id": "542df04e-6122-4086-a462-607bd5c9f756" + }, + { + "routeId": "L445", + "platformId": "U1905Z2", + "id": "42c2edda-cc3a-41a1-8966-644237dfe13b" + }, + { + "routeId": "L333", + "platformId": "U1905Z2", + "id": "c260bfdd-f117-4feb-9fd4-3defdf05076f" + }, + { + "routeId": "L391", + "platformId": "U1906Z1", + "id": "45f51098-53fd-4b2c-901d-8aa475ec5a39" + }, + { + "routeId": "L391", + "platformId": "U1906Z2", + "id": "5eb6481e-481c-46c1-842c-f079827e413f" + }, + { + "routeId": "L391", + "platformId": "U1907Z1", + "id": "7f161c3b-8b80-4cc5-9d8d-22d124dd72e0" + }, + { + "routeId": "L391", + "platformId": "U1907Z2", + "id": "6ea1df27-0351-4246-ae79-58de920dab8b" + }, + { + "routeId": "L491", + "platformId": "U1908Z1", + "id": "a22bd8c7-b73e-4cd3-8faf-aa4038cc353a" + }, + { + "routeId": "L491", + "platformId": "U1908Z2", + "id": "f01e8b95-4601-49dc-9334-203692f6f16e" + }, + { + "routeId": "L387", + "platformId": "U1909Z1", + "id": "7d31485f-8590-4f1b-8f1e-1efe153cc614" + }, + { + "routeId": "L381", + "platformId": "U1909Z1", + "id": "d68b8d4f-31f4-4b86-b1d0-4d11381c9d43" + }, + { + "routeId": "L382", + "platformId": "U1909Z1", + "id": "e1816d49-b231-4575-84b2-cffde7132d98" + }, + { + "routeId": "L489", + "platformId": "U1909Z1", + "id": "237b87eb-fd8f-45b5-90d2-e3fc40076778" + }, + { + "routeId": "L959", + "platformId": "U1909Z1", + "id": "b044c505-f782-481a-bac6-5309ea354717" + }, + { + "routeId": "L381", + "platformId": "U1909Z2", + "id": "c0056828-959f-48c5-8604-7eaf368f42a5" + }, + { + "routeId": "L387", + "platformId": "U1909Z2", + "id": "7f0748a3-21aa-45cc-9bd6-a2b3045e4256" + }, + { + "routeId": "L382", + "platformId": "U1909Z2", + "id": "f2ad01a1-4e87-44b0-a711-b60f554ef81a" + }, + { + "routeId": "L489", + "platformId": "U1909Z2", + "id": "9a48230e-6016-4de5-ad6e-e51a70ba8380" + }, + { + "routeId": "L959", + "platformId": "U1909Z2", + "id": "9bfc3bf9-4d3c-42d6-9c82-2e60cd318c66" + }, + { + "routeId": "L6", + "platformId": "U190Z1", + "id": "8770a425-e1a0-49f5-a060-7ec20f19743c" + }, + { + "routeId": "L10", + "platformId": "U190Z1", + "id": "0aa5a943-d40c-493e-8103-8f9dfc130633" + }, + { + "routeId": "L16", + "platformId": "U190Z1", + "id": "9e5a5c48-8dd4-4dee-9787-a733ee61509a" + }, + { + "routeId": "L22", + "platformId": "U190Z1", + "id": "a720950e-5c2b-4959-8aaf-de686c74f08f" + }, + { + "routeId": "L23", + "platformId": "U190Z1", + "id": "51b7dc92-1af8-4405-ab40-16a2b70acdf5" + }, + { + "routeId": "L91", + "platformId": "U190Z1", + "id": "d5ea8edc-0cd3-440b-b208-a700ed6c4bbe" + }, + { + "routeId": "L96", + "platformId": "U190Z1", + "id": "c6ababab-dcb5-4c40-a9df-1152fbb50e1e" + }, + { + "routeId": "L97", + "platformId": "U190Z1", + "id": "859ba4c0-e142-4331-80fd-023e43b45b3c" + }, + { + "routeId": "L99", + "platformId": "U190Z1", + "id": "9fbaa787-0517-479c-a4e8-2ed1a25bd9b5" + }, + { + "routeId": "L993", + "platformId": "U190Z101", + "id": "fae5eaea-918e-4181-9a80-fd57c1385fcc" + }, + { + "routeId": "L993", + "platformId": "U190Z102", + "id": "a882692b-cdb8-4d85-b131-90595cce895c" + }, + { + "routeId": "L6", + "platformId": "U190Z2", + "id": "ff32c073-ee44-415e-9e17-10827a512bbe" + }, + { + "routeId": "L10", + "platformId": "U190Z2", + "id": "b55186e1-e5f7-4e83-b854-fdfacd52b6ad" + }, + { + "routeId": "L16", + "platformId": "U190Z2", + "id": "590d672a-8622-45fc-931d-89621c3b73fb" + }, + { + "routeId": "L22", + "platformId": "U190Z2", + "id": "64cf4fce-92f8-4db0-82b0-d1bf765f8d20" + }, + { + "routeId": "L23", + "platformId": "U190Z2", + "id": "c17678e5-a010-4884-a3c9-203917debfe1" + }, + { + "routeId": "L91", + "platformId": "U190Z2", + "id": "dc48e1ff-44f2-4f21-8b80-24d69e028595" + }, + { + "routeId": "L96", + "platformId": "U190Z2", + "id": "5212bfe2-b7ab-4816-ab69-f9003e1b9bd1" + }, + { + "routeId": "L97", + "platformId": "U190Z2", + "id": "3ca402bd-11ff-4ba9-8249-5fc4cf5bdf61" + }, + { + "routeId": "L99", + "platformId": "U190Z2", + "id": "f1e622ea-8739-448e-94b3-b16dc39215de" + }, + { + "routeId": "L11", + "platformId": "U190Z3", + "id": "8e8fdee0-5446-4989-bda3-aeff4b2f27b2" + }, + { + "routeId": "L13", + "platformId": "U190Z3", + "id": "c90ae6ae-463a-486c-b0b7-34bb0630d727" + }, + { + "routeId": "L11", + "platformId": "U190Z4", + "id": "c8754a79-e52f-49d5-b193-8efc03b10575" + }, + { + "routeId": "L13", + "platformId": "U190Z4", + "id": "5e74e5cd-ef81-48d4-adae-8d44676e5bd4" + }, + { + "routeId": "L148", + "platformId": "U190Z5", + "id": "47731b26-2a2c-447f-b4d7-53003f2a7cb8" + }, + { + "routeId": "L904", + "platformId": "U190Z5", + "id": "02a323c2-a42e-47e1-a425-847fb9e8ff43" + }, + { + "routeId": "L905", + "platformId": "U190Z5", + "id": "14ea2cdf-1321-4384-a682-b555923fca5b" + }, + { + "routeId": "L910", + "platformId": "U190Z5", + "id": "bcac43ba-da48-414f-9916-36ae020816d1" + }, + { + "routeId": "L911", + "platformId": "U190Z5", + "id": "16686ff3-27e7-4f04-a0aa-75f5f9a05fbf" + }, + { + "routeId": "L904", + "platformId": "U190Z6", + "id": "541fecad-a69f-4fb6-b9af-2dc10763d533" + }, + { + "routeId": "L905", + "platformId": "U190Z6", + "id": "8f8ac852-2dea-47a3-967b-5820412fddec" + }, + { + "routeId": "L907", + "platformId": "U190Z6", + "id": "1ce4197a-9f90-42ab-992c-7f83a1d03460" + }, + { + "routeId": "L908", + "platformId": "U190Z6", + "id": "72dae302-03ec-44b2-9d7f-c348253703e7" + }, + { + "routeId": "L910", + "platformId": "U190Z6", + "id": "15775105-1c22-4c85-961b-22f8d8557fdb" + }, + { + "routeId": "L911", + "platformId": "U190Z6", + "id": "cee13952-76af-4028-8c77-2c078c12e1e0" + }, + { + "routeId": "L148", + "platformId": "U190Z9", + "id": "fb138d9c-a772-4da9-97c4-2d3775091408" + }, + { + "routeId": "L489", + "platformId": "U1910Z1", + "id": "f46d1503-59d1-4c83-9868-e91312ab3b6d" + }, + { + "routeId": "L337", + "platformId": "U1911Z1", + "id": "e7957afb-9ef1-491d-a1ab-22dd0c9a5c3f" + }, + { + "routeId": "L337", + "platformId": "U1911Z2", + "id": "8c8b2ffd-5a18-4b0d-a8c4-c9de5b96ee6a" + }, + { + "routeId": "L391", + "platformId": "U1912Z1", + "id": "faa53253-b058-4139-a0cd-8d5963015706" + }, + { + "routeId": "L391", + "platformId": "U1912Z2", + "id": "79630ba2-3ae8-4ecc-96d7-d9aba42aaddd" + }, + { + "routeId": "L391", + "platformId": "U1913Z1", + "id": "322c8666-cce6-4092-adf1-fa74c87b528c" + }, + { + "routeId": "L391", + "platformId": "U1913Z2", + "id": "ff0cb405-66cb-4cc3-9f1d-be9a4b3e5d8c" + }, + { + "routeId": "L324", + "platformId": "U1915Z1", + "id": "4491a46e-7b9c-40b7-b9e1-9a1e9b184e4e" + }, + { + "routeId": "L627", + "platformId": "U1915Z1", + "id": "0a384fc9-8f09-4b1c-8abd-dc8582fe650e" + }, + { + "routeId": "L399", + "platformId": "U1915Z1", + "id": "375fa23a-c3c6-424e-8a6f-1a032bd7481b" + }, + { + "routeId": "L590", + "platformId": "U1915Z1", + "id": "dd7c394d-a878-4a5b-bf42-adc9d17a9d51" + }, + { + "routeId": "L324", + "platformId": "U1915Z2", + "id": "c0661e3a-4d35-4499-95d4-9f22806d248d" + }, + { + "routeId": "L399", + "platformId": "U1915Z2", + "id": "04865a49-a296-4475-886e-05d721475392" + }, + { + "routeId": "L590", + "platformId": "U1915Z2", + "id": "44bb61b1-bdd3-44c9-ab29-c27b5f8f89d6" + }, + { + "routeId": "L324", + "platformId": "U1918Z1", + "id": "0d2338d1-7fe8-4706-b63e-800ecefd84d1" + }, + { + "routeId": "L399", + "platformId": "U1918Z1", + "id": "0649e4d6-1657-4417-a650-c39090c5c038" + }, + { + "routeId": "L324", + "platformId": "U1918Z2", + "id": "1fad54f8-afd3-4929-9fc3-7bf2451fb92f" + }, + { + "routeId": "L399", + "platformId": "U1918Z2", + "id": "cdb697e5-c108-44be-89fe-ec7e417f2792" + }, + { + "routeId": "L11", + "platformId": "U191Z1", + "id": "25c47825-3972-4b87-951c-7ccddeccd2cd" + }, + { + "routeId": "L13", + "platformId": "U191Z1", + "id": "daa87da8-9361-4b1d-a0cf-44bdc1719a9b" + }, + { + "routeId": "L11", + "platformId": "U191Z2", + "id": "07be5ad4-813d-494e-870f-99ded8a8c402" + }, + { + "routeId": "L13", + "platformId": "U191Z2", + "id": "88f3471a-afd9-47af-bf97-8e8f8deb5cca" + }, + { + "routeId": "L666", + "platformId": "U1923Z1", + "id": "6076606b-ff95-4529-86ca-8be250214270" + }, + { + "routeId": "L666", + "platformId": "U1923Z2", + "id": "a71eeee1-51a2-44a2-80b6-c0ebd7cc9c48" + }, + { + "routeId": "L367", + "platformId": "U1924Z1", + "id": "8250d57a-2bb5-49a2-8f21-c0ec7e40840a" + }, + { + "routeId": "L375", + "platformId": "U1924Z1", + "id": "8101817c-02e6-4eaf-a115-97050e62a404" + }, + { + "routeId": "L478", + "platformId": "U1924Z1", + "id": "1c578ebf-ddb8-4b88-ae5f-b6f7e1ddc91c" + }, + { + "routeId": "L667", + "platformId": "U1924Z1", + "id": "12c22238-e4c1-492d-96dc-1a0934676a6b" + }, + { + "routeId": "L953", + "platformId": "U1924Z1", + "id": "75723618-8049-4aab-96f5-19287d6dedee" + }, + { + "routeId": "L367", + "platformId": "U1924Z2", + "id": "bdd9c62a-97a3-4d49-8c87-654f663c5cb7" + }, + { + "routeId": "L375", + "platformId": "U1924Z2", + "id": "e63b9b3f-d495-4165-b9ad-d6304d5884ef" + }, + { + "routeId": "L478", + "platformId": "U1924Z2", + "id": "b673f2c6-37ee-4868-b8a5-6820b7958dd6" + }, + { + "routeId": "L667", + "platformId": "U1924Z2", + "id": "2ccf6b87-d639-4afc-b6db-f43f05b13cc9" + }, + { + "routeId": "L953", + "platformId": "U1924Z2", + "id": "6996b9cc-b0fd-4ef9-9bfc-f3cb4cd9f156" + }, + { + "routeId": "L307", + "platformId": "U1926Z1", + "id": "98870052-6622-4fc4-a7aa-89de6fe44122" + }, + { + "routeId": "L307", + "platformId": "U1926Z2", + "id": "99625874-f7bf-46db-b2f3-0a45e4b4ec56" + }, + { + "routeId": "L469", + "platformId": "U1927Z2", + "id": "d674fcf2-f04e-4fcd-bdbd-e880725f36fe" + }, + { + "routeId": "L1217", + "platformId": "U1928Z301", + "id": "c6223eb1-1222-44a1-9a4d-af0303e08372" + }, + { + "routeId": "L1249", + "platformId": "U1928Z301", + "id": "4cbef585-d2c4-4ee4-8cc6-402b51d8c66c" + }, + { + "routeId": "L1309", + "platformId": "U1928Z301", + "id": "660a6840-9fb0-43b0-bde3-46be54faf51f" + }, + { + "routeId": "L494", + "platformId": "U1929Z1", + "id": "b45bf274-0188-46a9-8c26-79a0d61b6193" + }, + { + "routeId": "L188", + "platformId": "U192Z1", + "id": "2fdf2e56-bbdf-4060-b312-324df2b13568" + }, + { + "routeId": "L195", + "platformId": "U192Z1", + "id": "404c2ab7-4fbf-483e-9e03-b87adce6dbae" + }, + { + "routeId": "L188", + "platformId": "U192Z2", + "id": "9aaab261-24b4-4886-b4ff-769c173df204" + }, + { + "routeId": "L195", + "platformId": "U192Z2", + "id": "55587c91-56af-499d-aac6-edc3261953e2" + }, + { + "routeId": "L686", + "platformId": "U1930Z1", + "id": "50851eb8-e82c-4991-a4ad-169a990aec05" + }, + { + "routeId": "L686", + "platformId": "U1930Z2", + "id": "0c1dec74-8d96-4bec-876a-49bc4a916f73" + }, + { + "routeId": "L332", + "platformId": "U1936Z1", + "id": "304b8f25-4acb-4ae5-9a96-0d64eb9551f2" + }, + { + "routeId": "L752", + "platformId": "U1936Z1", + "id": "5ac97dbc-be10-4da3-a110-2a8ab2666c53" + }, + { + "routeId": "L332", + "platformId": "U1936Z2", + "id": "2fb1ea0a-10b8-4b4a-8e40-b138b11dd770" + }, + { + "routeId": "L752", + "platformId": "U1936Z2", + "id": "42ff48aa-282d-4f56-9000-27a26632c6ee" + }, + { + "routeId": "L1308", + "platformId": "U1936Z301", + "id": "965d23f9-0289-45c2-8012-e9c76966720b" + }, + { + "routeId": "L332", + "platformId": "U1937Z1", + "id": "38679889-0c73-4fdd-858a-4f78dbc0319e" + }, + { + "routeId": "L752", + "platformId": "U1937Z1", + "id": "2159db14-1284-45b3-a4c9-41cc34adccc0" + }, + { + "routeId": "L332", + "platformId": "U1937Z2", + "id": "33386216-c773-4a76-9e87-7fbe6b60d41b" + }, + { + "routeId": "L752", + "platformId": "U1937Z2", + "id": "73c266d5-5378-4317-87b0-323159780f89" + }, + { + "routeId": "L332", + "platformId": "U1938Z1", + "id": "8f4bb76e-c2a7-4b20-b629-39b176b0d401" + }, + { + "routeId": "L752", + "platformId": "U1938Z1", + "id": "6a78bfc9-0186-450d-84f2-5bb39baaf9e2" + }, + { + "routeId": "L332", + "platformId": "U1938Z2", + "id": "6de458e8-4339-48a3-9cd9-393ba577fae7" + }, + { + "routeId": "L752", + "platformId": "U1938Z2", + "id": "00b7aa87-c7c3-462e-b3e3-ad7bd8081095" + }, + { + "routeId": "L332", + "platformId": "U1939Z1", + "id": "db1210fd-f3ce-44ae-ac8c-6c6d2705fe56" + }, + { + "routeId": "L752", + "platformId": "U1939Z1", + "id": "1cbc82d6-1a55-4ebc-ab7f-064df2ed1f4e" + }, + { + "routeId": "L332", + "platformId": "U1939Z2", + "id": "173257bf-63a1-409c-82b8-01362cfd9e2b" + }, + { + "routeId": "L752", + "platformId": "U1939Z2", + "id": "118f230a-c8c1-48ab-8512-d496b472482d" + }, + { + "routeId": "L1308", + "platformId": "U1939Z301", + "id": "7468391f-4da5-4b88-bb13-5e2a37e06cbd" + }, + { + "routeId": "L109", + "platformId": "U193Z1", + "id": "938814d9-7487-4d2a-b5ab-037e0e4e3ac1" + }, + { + "routeId": "L909", + "platformId": "U193Z1", + "id": "bb02a771-26e8-4513-a8d6-4f4ce0b9f243" + }, + { + "routeId": "L110", + "platformId": "U193Z1", + "id": "31336c29-0954-42a2-88e5-b441a0a7a660" + }, + { + "routeId": "L208", + "platformId": "U193Z1", + "id": "086a4c8b-a8ed-46b0-b14e-66ceab0cc84e" + }, + { + "routeId": "L224", + "platformId": "U193Z1", + "id": "46b4438d-942f-4f7c-8009-7bfaf2bdc4a9" + }, + { + "routeId": "L109", + "platformId": "U193Z2", + "id": "aaef47b3-f271-4c98-877e-82d1bf50fa75" + }, + { + "routeId": "L909", + "platformId": "U193Z2", + "id": "5d656dd9-8629-4a4e-b962-324eef37e122" + }, + { + "routeId": "L110", + "platformId": "U193Z2", + "id": "dcf507d3-8169-492f-9023-bc0a80d837fc" + }, + { + "routeId": "L208", + "platformId": "U193Z2", + "id": "67ccab0e-c8f2-4054-a5c9-7b6f7ec86a03" + }, + { + "routeId": "L224", + "platformId": "U193Z2", + "id": "5572a274-5f00-4044-9f20-85046b717071" + }, + { + "routeId": "L332", + "platformId": "U1940Z1", + "id": "4d0d958e-4e62-4a8d-9c2a-e62981e463e7" + }, + { + "routeId": "L752", + "platformId": "U1940Z1", + "id": "655af6e3-758e-4c88-b55e-420d4fa0072e" + }, + { + "routeId": "L332", + "platformId": "U1940Z2", + "id": "0c48b553-a82b-484a-ad8d-b66f04edbc33" + }, + { + "routeId": "L752", + "platformId": "U1940Z2", + "id": "9e036662-cecc-4d80-93db-ef45c717c8af" + }, + { + "routeId": "L332", + "platformId": "U1941Z1", + "id": "be3b540e-cec6-4665-931b-42e681242748" + }, + { + "routeId": "L752", + "platformId": "U1941Z1", + "id": "c23e2fe7-dde5-4bde-b0dc-344fe4ee2e38" + }, + { + "routeId": "L332", + "platformId": "U1941Z2", + "id": "c6658233-e2c2-4851-8416-db030e043b90" + }, + { + "routeId": "L752", + "platformId": "U1941Z2", + "id": "f400f191-135d-43b8-b95b-14bc35a8bd35" + }, + { + "routeId": "L1308", + "platformId": "U1941Z301", + "id": "2d704134-ed33-463d-b48f-151db21d087a" + }, + { + "routeId": "L376", + "platformId": "U1942Z1", + "id": "0eed92e7-50ef-4d95-b4ee-0cefc3a1e4b8" + }, + { + "routeId": "L655", + "platformId": "U1942Z1", + "id": "c47f8702-95a7-4875-9c7d-61fdbb592d39" + }, + { + "routeId": "L667", + "platformId": "U1942Z1", + "id": "61f92931-5f8c-433b-86d8-27aee3bbc981" + }, + { + "routeId": "L478", + "platformId": "U1942Z2", + "id": "cd21e3b4-30e0-4d1d-b1a3-4a6db35e33c8" + }, + { + "routeId": "L477", + "platformId": "U1942Z2", + "id": "d8ff3c86-aa5f-47e2-a550-ad7c3f15de67" + }, + { + "routeId": "L655", + "platformId": "U1942Z3", + "id": "57dbacef-e094-4ab1-bcd8-a96c356821c2" + }, + { + "routeId": "L376", + "platformId": "U1942Z3", + "id": "f907ba2c-f36e-4fe4-9a40-0b0692c91404" + }, + { + "routeId": "L667", + "platformId": "U1942Z3", + "id": "19cf45fe-b426-4c8f-8df6-d93d593e1740" + }, + { + "routeId": "L477", + "platformId": "U1942Z3", + "id": "10f02df8-e30d-4293-89d5-7e52c56d332f" + }, + { + "routeId": "L2223", + "platformId": "U1942Z403", + "id": "cd12147c-7292-4711-9242-610db8f227d5" + }, + { + "routeId": "L478", + "platformId": "U1943Z1", + "id": "859857a5-37c7-431c-bb55-339fd4d4a0fc" + }, + { + "routeId": "L477", + "platformId": "U1943Z1", + "id": "ea03a48f-7492-459f-a658-aaf50ae84ff9" + }, + { + "routeId": "L478", + "platformId": "U1944Z1", + "id": "818040e7-0a51-4ec3-b0bd-71d6ffe59af5" + }, + { + "routeId": "L477", + "platformId": "U1944Z1", + "id": "397d148b-07c3-423c-97bb-bc2b15d683f2" + }, + { + "routeId": "L478", + "platformId": "U1944Z2", + "id": "6ef6138e-4f44-4956-a821-5c33daed8d89" + }, + { + "routeId": "L477", + "platformId": "U1944Z2", + "id": "f11383ec-93e6-4542-9e67-474222ecb33c" + }, + { + "routeId": "L478", + "platformId": "U1946Z1", + "id": "fc7d04ae-c9c8-4dbd-bd31-a328921f2c86" + }, + { + "routeId": "L477", + "platformId": "U1946Z1", + "id": "57a5df09-d734-4a25-b11c-8e007b0c3395" + }, + { + "routeId": "L478", + "platformId": "U1946Z2", + "id": "759d7744-d2dd-474f-8181-6daf95dc3908" + }, + { + "routeId": "L478", + "platformId": "U1947Z1", + "id": "bc0b7ff2-31f0-4606-8f48-be7fd4cc4a3c" + }, + { + "routeId": "L477", + "platformId": "U1947Z1", + "id": "6be20cfd-f249-4591-8b91-2441a65313ae" + }, + { + "routeId": "L478", + "platformId": "U1947Z2", + "id": "967be5c7-ae4a-445e-98e4-9927fd5d4d46" + }, + { + "routeId": "L478", + "platformId": "U1948Z1", + "id": "7d593a1b-9e5e-4575-a390-d75f043aea46" + }, + { + "routeId": "L477", + "platformId": "U1948Z1", + "id": "1d41e1c2-4e9f-469a-aa39-4a4dbdb2c812" + }, + { + "routeId": "L478", + "platformId": "U1948Z2", + "id": "68759119-dad8-471f-95d0-082e5084d8d7" + }, + { + "routeId": "L477", + "platformId": "U1948Z2", + "id": "6b5b49cc-831c-4d94-a767-e723396e1f20" + }, + { + "routeId": "L478", + "platformId": "U1949Z1", + "id": "2ce06864-ff3c-4e23-8479-ea79b0acdec4" + }, + { + "routeId": "L478", + "platformId": "U1949Z2", + "id": "bd638f32-710f-42d3-aeaf-4267dd3f597c" + }, + { + "routeId": "L113", + "platformId": "U194Z1", + "id": "3971f8c9-3488-4929-b61e-a2254b73d0f0" + }, + { + "routeId": "L913", + "platformId": "U194Z1", + "id": "badc7c1d-df06-4d5e-b8b1-15b8d5bc9cac" + }, + { + "routeId": "L333", + "platformId": "U194Z1", + "id": "359c1292-6489-4570-8168-99554b60531e" + }, + { + "routeId": "L960", + "platformId": "U194Z1", + "id": "3dc4a5ae-c452-4153-be8b-af7f73e7b842" + }, + { + "routeId": "L113", + "platformId": "U194Z2", + "id": "69b559bf-7d28-4eb1-9249-e85f99fc7ea5" + }, + { + "routeId": "L913", + "platformId": "U194Z2", + "id": "8ad506ec-9612-438f-88c3-756bb1d3edf8" + }, + { + "routeId": "L333", + "platformId": "U194Z2", + "id": "1042b2df-6b11-4eb1-b0e1-b6f62ee80c60" + }, + { + "routeId": "L960", + "platformId": "U194Z2", + "id": "b5710565-e636-40c4-b808-f0ab0eaca747" + }, + { + "routeId": "L478", + "platformId": "U1950Z1", + "id": "f3f18243-b563-4528-8c59-6d289f9b1444" + }, + { + "routeId": "L478", + "platformId": "U1950Z2", + "id": "16ab0b2e-c207-4935-899e-3c0af4d804b1" + }, + { + "routeId": "L434", + "platformId": "U1951Z1", + "id": "71544af1-5aca-4d70-aaed-2b5f7d15448f" + }, + { + "routeId": "L434", + "platformId": "U1951Z2", + "id": "40878490-dd03-4c1c-a4fd-6fa3dd73ca8d" + }, + { + "routeId": "L314", + "platformId": "U1952Z1", + "id": "35fe9713-8947-48be-998d-43ddbe4ef02e" + }, + { + "routeId": "L314", + "platformId": "U1953Z1", + "id": "886a89da-024a-464a-8ebe-752d61ca13ce" + }, + { + "routeId": "L314", + "platformId": "U1953Z2", + "id": "2e06136d-6cc6-48f3-8b6b-18b0534ba0d7" + }, + { + "routeId": "L314", + "platformId": "U1954Z1", + "id": "2ecac403-a48c-45ff-a4b9-eacdeb31bd20" + }, + { + "routeId": "L348", + "platformId": "U1955Z1", + "id": "8d8639b4-f6dd-4192-bbb1-8f147e5e4a01" + }, + { + "routeId": "L471", + "platformId": "U1955Z1", + "id": "0ede1ef8-3c71-4216-8a92-e79be104bee2" + }, + { + "routeId": "L348", + "platformId": "U1955Z2", + "id": "04135ae4-b9f1-44d4-ab6c-b7d6b10c810c" + }, + { + "routeId": "L471", + "platformId": "U1955Z2", + "id": "0d4ca120-9e33-47f5-98f7-30d899a0dfa2" + }, + { + "routeId": "L385", + "platformId": "U1956Z1", + "id": "02e4c57e-5204-41b3-956c-a495749a3602" + }, + { + "routeId": "L385", + "platformId": "U1956Z2", + "id": "aa110d05-a7e8-4d04-b0c0-9222302c313e" + }, + { + "routeId": "L302", + "platformId": "U1957Z51", + "id": "c76af260-b2ed-450e-88aa-1fc9fc2c017d" + }, + { + "routeId": "L302", + "platformId": "U1957Z52", + "id": "1709c8d3-278b-47f7-b267-124113895ca1" + }, + { + "routeId": "L348", + "platformId": "U1958Z1", + "id": "a393c000-513a-4d2b-a42b-5a2180e48a9f" + }, + { + "routeId": "L369", + "platformId": "U1958Z1", + "id": "03a0304f-9c6f-432d-bf39-f8f702236f62" + }, + { + "routeId": "L348", + "platformId": "U1958Z2", + "id": "788fe466-9883-46be-bae1-e5766c383912" + }, + { + "routeId": "L369", + "platformId": "U1958Z2", + "id": "411b711b-649d-4d4e-8685-06524b788ecd" + }, + { + "routeId": "L348", + "platformId": "U1959Z1", + "id": "36ed497a-a1ba-490e-8fab-6d7ca53cc8e9" + }, + { + "routeId": "L369", + "platformId": "U1959Z1", + "id": "5e9c2414-8f51-45df-a348-43e2c02e185b" + }, + { + "routeId": "L348", + "platformId": "U1959Z2", + "id": "79b639a8-083f-41c8-befc-f4a043ae3b45" + }, + { + "routeId": "L369", + "platformId": "U1959Z2", + "id": "9258a2b2-ca5e-46b4-81f5-b49896f79e23" + }, + { + "routeId": "L177", + "platformId": "U195Z1", + "id": "655c99dc-f8e1-4a71-96c7-bc2055697e73" + }, + { + "routeId": "L901", + "platformId": "U195Z1", + "id": "5473482d-65fc-4ad5-bb5b-3a6f47de5bd1" + }, + { + "routeId": "L906", + "platformId": "U195Z1", + "id": "280c4191-f206-4045-a967-ce4dcbde22cd" + }, + { + "routeId": "L177", + "platformId": "U195Z2", + "id": "f97c9b69-6b93-4f94-b2ff-f1843999c2a2" + }, + { + "routeId": "L901", + "platformId": "U195Z2", + "id": "2b1494ab-7332-4006-b2e3-0cf0c6555aa7" + }, + { + "routeId": "L906", + "platformId": "U195Z2", + "id": "ccec348c-941a-4468-a709-c53904906b4c" + }, + { + "routeId": "L348", + "platformId": "U1960Z1", + "id": "ea937d3f-be3f-4c29-be1b-139d9b391a1d" + }, + { + "routeId": "L369", + "platformId": "U1960Z1", + "id": "50a2391f-7c9f-4e33-8824-6abdb82d9c40" + }, + { + "routeId": "L348", + "platformId": "U1960Z2", + "id": "fbcfd058-fae4-4b52-90ca-c79223e9cd23" + }, + { + "routeId": "L369", + "platformId": "U1960Z2", + "id": "9b8a9874-e2db-4f9b-a9aa-8f854b5a3406" + }, + { + "routeId": "L477", + "platformId": "U1962Z1", + "id": "c04c85a8-2dcd-4e45-8170-aaf3023236ab" + }, + { + "routeId": "L477", + "platformId": "U1962Z2", + "id": "dd8ca6c4-c4d1-4a36-9558-06c6ca5e6faa" + }, + { + "routeId": "L369", + "platformId": "U1963Z1", + "id": "d58fb407-0e61-4a5f-b127-9a9dbe88f099" + }, + { + "routeId": "L369", + "platformId": "U1963Z2", + "id": "d188d2ea-81c4-4327-bfad-aa4b9bbaf378" + }, + { + "routeId": "L348", + "platformId": "U1964Z1", + "id": "7bf4c973-a754-4d45-a0b7-4fe2c4db0817" + }, + { + "routeId": "L471", + "platformId": "U1964Z1", + "id": "b337af40-8e83-4b73-a334-f7e27f1ca251" + }, + { + "routeId": "L348", + "platformId": "U1964Z2", + "id": "2f226f92-dd60-46cd-a51d-484bf810415b" + }, + { + "routeId": "L471", + "platformId": "U1964Z2", + "id": "35768976-a2f8-4c29-b29f-3a78abab31cd" + }, + { + "routeId": "L521", + "platformId": "U1965Z1", + "id": "9a93f332-6371-438e-8743-472edbfc0468" + }, + { + "routeId": "L347", + "platformId": "U1968Z1", + "id": "c141a94b-e670-47b2-ab0a-d4a7007572d6" + }, + { + "routeId": "L307", + "platformId": "U1968Z1", + "id": "c7db0fd4-ed4b-4a28-b1f1-3a9959ba7a85" + }, + { + "routeId": "L310", + "platformId": "U1968Z1", + "id": "d2b46390-c6fd-4086-901d-49e657a89761" + }, + { + "routeId": "L311", + "platformId": "U1968Z1", + "id": "45b7e0e1-64a8-4ad8-8203-df551db9fef5" + }, + { + "routeId": "L380", + "platformId": "U1968Z1", + "id": "618f9058-e253-4fd4-960a-1f0d06125227" + }, + { + "routeId": "L308", + "platformId": "U1968Z1", + "id": "381be164-49f7-4e79-be1b-280630c546b9" + }, + { + "routeId": "L952", + "platformId": "U1968Z1", + "id": "c84f1280-ca9a-4284-8231-5a896fe1f880" + }, + { + "routeId": "L347", + "platformId": "U1968Z2", + "id": "98222df6-615f-456e-91c4-161c081b228a" + }, + { + "routeId": "L307", + "platformId": "U1968Z2", + "id": "b478b02f-eddc-486f-8ba4-21281b315cce" + }, + { + "routeId": "L311", + "platformId": "U1968Z2", + "id": "2634645e-a8d0-4499-9ad4-55ba984886ce" + }, + { + "routeId": "L308", + "platformId": "U1968Z2", + "id": "50d80b2a-709c-4859-ae04-8e0fe37d1a4a" + }, + { + "routeId": "L380", + "platformId": "U1968Z2", + "id": "ba3220f8-5630-48fb-a2e8-1d3ae68d3510" + }, + { + "routeId": "L310", + "platformId": "U1968Z2", + "id": "a062860e-e8fe-4e39-9fcc-f39435179353" + }, + { + "routeId": "L952", + "platformId": "U1968Z2", + "id": "305df444-da33-4b80-acfa-afcb88d737de" + }, + { + "routeId": "L429", + "platformId": "U1969Z1", + "id": "29d0aba1-b900-455b-ad4b-0cca96c3fbda" + }, + { + "routeId": "L429", + "platformId": "U1969Z2", + "id": "00f139f6-2035-4133-845d-27157ad29d80" + }, + { + "routeId": "L187", + "platformId": "U196Z1", + "id": "dca06ee8-5ca8-4bdc-8c33-6304275d1181" + }, + { + "routeId": "L201", + "platformId": "U196Z1", + "id": "20191b6a-13c8-4380-891c-f7eaed589cbc" + }, + { + "routeId": "L905", + "platformId": "U196Z1", + "id": "9ec37bbc-b500-4a2e-a1f9-625898e2005e" + }, + { + "routeId": "L911", + "platformId": "U196Z1", + "id": "93b7cb69-5675-4874-9c35-701d998d41dd" + }, + { + "routeId": "L201", + "platformId": "U196Z2", + "id": "e669fdf8-3df1-425e-b18f-913d7b05746d" + }, + { + "routeId": "L905", + "platformId": "U196Z2", + "id": "638a6a4e-65fc-4c47-a5f5-1288a336ab56" + }, + { + "routeId": "L911", + "platformId": "U196Z2", + "id": "82a3892c-eb88-422b-a9a4-c802f331a965" + }, + { + "routeId": "L429", + "platformId": "U1970Z1", + "id": "74f49527-50d1-43bf-af5d-b190c48ba52c" + }, + { + "routeId": "L429", + "platformId": "U1970Z2", + "id": "455d5c99-e28b-456e-a2a3-b51b7f8ca5af" + }, + { + "routeId": "L348", + "platformId": "U1971Z1", + "id": "6b0d2811-2fcd-4a2a-ac67-1ae8947ab99a" + }, + { + "routeId": "L471", + "platformId": "U1971Z1", + "id": "6bd60df3-58f5-4e32-ad9c-e8d4cd13c03b" + }, + { + "routeId": "L348", + "platformId": "U1971Z2", + "id": "ba6ffd20-c6e4-424d-beb2-8a80aa036c91" + }, + { + "routeId": "L471", + "platformId": "U1971Z2", + "id": "42116193-09ce-4b0b-aa5d-2ff37d4df77f" + }, + { + "routeId": "L369", + "platformId": "U1972Z1", + "id": "9eae118a-b5da-4f70-b919-7d2af102026c" + }, + { + "routeId": "L369", + "platformId": "U1972Z2", + "id": "bb0c0bff-7409-472b-a81a-15470fffc23e" + }, + { + "routeId": "L655", + "platformId": "U1973Z1", + "id": "76c99a20-4f02-4e8c-965a-73967b90618a" + }, + { + "routeId": "L376", + "platformId": "U1973Z1", + "id": "86831be9-a8cb-4bcd-a8cb-6a6a6aeac820" + }, + { + "routeId": "L478", + "platformId": "U1973Z1", + "id": "a3fa8439-b033-4729-8b7b-033c4b76d0b6" + }, + { + "routeId": "L376", + "platformId": "U1973Z2", + "id": "cfab3195-4f83-47c1-92fb-0315ae461007" + }, + { + "routeId": "L655", + "platformId": "U1973Z2", + "id": "bc9676ce-6ac9-4234-9b59-b11ab4048e31" + }, + { + "routeId": "L478", + "platformId": "U1973Z2", + "id": "5b411148-65a5-410c-a7f5-64b68fc4e2d2" + }, + { + "routeId": "L2223", + "platformId": "U1973Z401", + "id": "3b2002ee-f515-457e-971b-ef315a60affb" + }, + { + "routeId": "L2223", + "platformId": "U1973Z402", + "id": "fceab1d7-1959-42ca-9940-203f24c58d7b" + }, + { + "routeId": "L348", + "platformId": "U1974Z1", + "id": "5fcda941-6a2a-455b-b927-fc49aa0e0b9d" + }, + { + "routeId": "L348", + "platformId": "U1974Z2", + "id": "7d2ff211-f5cf-43fa-a249-26953056eb8a" + }, + { + "routeId": "L373", + "platformId": "U1975Z1", + "id": "dee6ac33-98b4-488a-a888-a83a33a0b02b" + }, + { + "routeId": "L373", + "platformId": "U1975Z2", + "id": "e920ab9e-78e8-45de-94e0-bd3052c425ca" + }, + { + "routeId": "L348", + "platformId": "U1976Z1", + "id": "5ad31da2-a1ef-4138-bf01-10e5951a5ded" + }, + { + "routeId": "L369", + "platformId": "U1976Z1", + "id": "899dc63b-d1ea-4f92-8880-6b7ec0635f44" + }, + { + "routeId": "L348", + "platformId": "U1976Z2", + "id": "e847ab23-69b5-4d95-ab9f-26a15afe8d3b" + }, + { + "routeId": "L369", + "platformId": "U1976Z2", + "id": "120aebde-3920-4a1d-abf3-f5ffdfbc9e17" + }, + { + "routeId": "L317", + "platformId": "U1977Z1", + "id": "09d471d6-77d1-4353-93ab-c4ea4f855d94" + }, + { + "routeId": "L961", + "platformId": "U1977Z1", + "id": "e0c1658f-f5f3-49b3-83e9-ca3893b58030" + }, + { + "routeId": "L395", + "platformId": "U1977Z1", + "id": "0936f658-015a-4d20-aebd-2dabdb0e1a2f" + }, + { + "routeId": "L420", + "platformId": "U1977Z1", + "id": "d75edd8e-6153-4b18-b29b-1ac974a6a56e" + }, + { + "routeId": "L392", + "platformId": "U1977Z1", + "id": "923c2354-996b-4eb6-bee4-3ef67598a876" + }, + { + "routeId": "L317", + "platformId": "U1977Z2", + "id": "45767bbf-244b-41e5-a98f-d8c46c8b0574" + }, + { + "routeId": "L395", + "platformId": "U1977Z2", + "id": "f4ea57ba-7dc2-4ac8-8ee9-2d81e7bccc86" + }, + { + "routeId": "L392", + "platformId": "U1977Z2", + "id": "cc6d5640-e59d-43d0-afba-f32cd7194e75" + }, + { + "routeId": "L420", + "platformId": "U1977Z2", + "id": "1ed0bf89-ccee-4679-89fa-3975c96dd3c6" + }, + { + "routeId": "L387", + "platformId": "U1978Z1", + "id": "6b2f4690-ff37-4295-bb4f-f478b4566c23" + }, + { + "routeId": "L381", + "platformId": "U1978Z1", + "id": "044cf0f2-97a8-4fdd-be6f-a3161440b4f3" + }, + { + "routeId": "L659", + "platformId": "U1978Z1", + "id": "d6460afb-f8e9-4c69-a926-349858734d2e" + }, + { + "routeId": "L381", + "platformId": "U1978Z2", + "id": "332e91c3-9e4c-4ccc-b0d5-6359e65b758d" + }, + { + "routeId": "L387", + "platformId": "U1978Z2", + "id": "3a95bd1d-2907-4ae8-91bb-2bfa4e1bc12e" + }, + { + "routeId": "L659", + "platformId": "U1978Z2", + "id": "6897af98-5265-454a-a882-e68dfeaf5d11" + }, + { + "routeId": "L387", + "platformId": "U1979Z1", + "id": "f74976af-8529-401d-9124-12180bf624f7" + }, + { + "routeId": "L381", + "platformId": "U1979Z1", + "id": "0ea53741-a2ff-426e-a55e-815fec6dd14e" + }, + { + "routeId": "L381", + "platformId": "U1979Z2", + "id": "963ec4ed-1a41-4a96-a8a8-d8ed41d24b34" + }, + { + "routeId": "L387", + "platformId": "U1979Z2", + "id": "d8d6ac3d-7ae7-497c-ae97-b405e66dd8ca" + }, + { + "routeId": "L659", + "platformId": "U1979Z2", + "id": "dfdeacd8-4c4c-4ff8-a67c-ac36d15203e7" + }, + { + "routeId": "L659", + "platformId": "U1979Z3", + "id": "662d412d-bc21-43aa-ab20-2b97dd4cb7c7" + }, + { + "routeId": "L304", + "platformId": "U197Z1", + "id": "8be4d590-1399-48a4-974a-83a27915473c" + }, + { + "routeId": "L380", + "platformId": "U197Z1", + "id": "d73569f7-8d4a-4a34-8be8-a42320e15c07" + }, + { + "routeId": "L381", + "platformId": "U1980Z1", + "id": "b64e7c21-7836-412e-bbdf-03361d84ff9e" + }, + { + "routeId": "L381", + "platformId": "U1980Z2", + "id": "570b9ef0-e0c1-481e-a85b-3dc0deafd6a5" + }, + { + "routeId": "L381", + "platformId": "U1982Z1", + "id": "77384173-4a39-4e58-872a-d9ecc90e6f6a" + }, + { + "routeId": "L381", + "platformId": "U1982Z2", + "id": "263a1020-8bea-451a-b154-ac82f9a64278" + }, + { + "routeId": "L381", + "platformId": "U1983Z1", + "id": "00f3de40-1521-4b7a-8471-772f493eed03" + }, + { + "routeId": "L381", + "platformId": "U1983Z2", + "id": "8a1cdce1-fb69-42d0-813d-2e84ca94a79c" + }, + { + "routeId": "L424", + "platformId": "U1983Z3", + "id": "712d5030-3e8b-4c98-b060-e99900b7eb8a" + }, + { + "routeId": "L381", + "platformId": "U1984Z1", + "id": "fcef9af4-db26-47e6-908f-d71491de1726" + }, + { + "routeId": "L424", + "platformId": "U1984Z1", + "id": "ae49d614-9a40-4802-937e-ff088f484516" + }, + { + "routeId": "L381", + "platformId": "U1984Z2", + "id": "b0dfc788-0dc4-4996-949d-4e3cfa174f39" + }, + { + "routeId": "L424", + "platformId": "U1984Z2", + "id": "5e7adb4b-ef74-40c2-b09e-b5310cbea5da" + }, + { + "routeId": "L421", + "platformId": "U1984Z3", + "id": "40372ee8-be30-45de-982a-8fc6641924d1" + }, + { + "routeId": "L421", + "platformId": "U1984Z4", + "id": "2cf487e0-4b6a-4927-abc6-802215beb1f7" + }, + { + "routeId": "L659", + "platformId": "U1985Z1", + "id": "7f4a8e4d-c8f7-44a6-b274-44576933430c" + }, + { + "routeId": "L659", + "platformId": "U1985Z2", + "id": "6bb5f0d7-7e4b-433c-81eb-92bfe25e96b3" + }, + { + "routeId": "L387", + "platformId": "U1986Z1", + "id": "34c05049-391b-4f79-a782-83fc7ddffec2" + }, + { + "routeId": "L387", + "platformId": "U1986Z2", + "id": "f83fd2e0-0e04-40fa-9e66-e23b1efbfb59" + }, + { + "routeId": "L387", + "platformId": "U1987Z1", + "id": "e2b440c8-7462-43d0-9403-d2f467d5effe" + }, + { + "routeId": "L387", + "platformId": "U1987Z2", + "id": "b3f1fc8a-fddc-4b54-8ac0-86fd13b93690" + }, + { + "routeId": "L387", + "platformId": "U1987Z3", + "id": "9fd06fc0-7072-4598-aa0c-4272919f417e" + }, + { + "routeId": "L659", + "platformId": "U1988Z1", + "id": "5a272ef9-3343-4f55-bf20-bc21e22ea0f5" + }, + { + "routeId": "L659", + "platformId": "U1988Z2", + "id": "df596a23-4660-47d9-87f6-bd1f66620675" + }, + { + "routeId": "L659", + "platformId": "U1989Z1", + "id": "64cfb5cb-23a7-45c0-920e-a21512473194" + }, + { + "routeId": "L659", + "platformId": "U1989Z2", + "id": "d085a44a-ad32-4515-bd07-81be366f7412" + }, + { + "routeId": "L154", + "platformId": "U198Z1", + "id": "2653b0cf-63ac-43de-9c51-173b1b7474b6" + }, + { + "routeId": "L188", + "platformId": "U198Z1", + "id": "591d0e04-889b-4010-b496-3bba3b2d64f5" + }, + { + "routeId": "L901", + "platformId": "U198Z1", + "id": "ee203681-33fe-4d53-a215-f90e899a2ece" + }, + { + "routeId": "L906", + "platformId": "U198Z1", + "id": "0faacad9-9cbe-4b57-9d17-beb7e429955d" + }, + { + "routeId": "L154", + "platformId": "U198Z2", + "id": "eed9a9c1-f63d-4e02-b18b-0dc7c1b14461" + }, + { + "routeId": "L188", + "platformId": "U198Z2", + "id": "5b1db241-d5e6-4ca6-a4d0-3cd86b54efb8" + }, + { + "routeId": "L901", + "platformId": "U198Z2", + "id": "aec65bd5-8f85-404d-8ed4-52fd63553819" + }, + { + "routeId": "L906", + "platformId": "U198Z2", + "id": "2c95733d-5f45-4521-9ffe-b7f93584a11d" + }, + { + "routeId": "L659", + "platformId": "U1990Z1", + "id": "6b247467-818b-41ac-ac43-488129679b18" + }, + { + "routeId": "L659", + "platformId": "U1990Z2", + "id": "84f7bb20-007f-4836-b073-6fe8edc41998" + }, + { + "routeId": "L659", + "platformId": "U1991Z1", + "id": "b899cef9-0b1d-46fc-8a77-c07fc0506e40" + }, + { + "routeId": "L659", + "platformId": "U1991Z2", + "id": "cac60a8e-dd1f-4816-a020-068f686c0387" + }, + { + "routeId": "L659", + "platformId": "U1992Z1", + "id": "b09a0092-aa97-470a-b6cb-60e0949d7469" + }, + { + "routeId": "L659", + "platformId": "U1992Z2", + "id": "c008cbcb-4b96-444c-9c4b-16f528e4c8ee" + }, + { + "routeId": "L387", + "platformId": "U1993Z1", + "id": "c5f050cf-0999-432e-9235-c0225ef4e6e1" + }, + { + "routeId": "L659", + "platformId": "U1993Z1", + "id": "6dc0fb48-5357-4fd5-82bd-b7d60247fba6" + }, + { + "routeId": "L387", + "platformId": "U1993Z2", + "id": "cb977f74-c2fb-4eae-8794-2899ea844237" + }, + { + "routeId": "L659", + "platformId": "U1993Z2", + "id": "26ec6d86-7bdb-474d-a558-100feff9e10b" + }, + { + "routeId": "L387", + "platformId": "U1994Z1", + "id": "13dc8224-e97a-4b5d-9d1f-74facfd153da" + }, + { + "routeId": "L659", + "platformId": "U1994Z1", + "id": "1cb76485-6afe-450c-900e-3d74835eff66" + }, + { + "routeId": "L387", + "platformId": "U1994Z2", + "id": "dca4a801-9ace-4897-bea3-26b5482c5cac" + }, + { + "routeId": "L659", + "platformId": "U1994Z2", + "id": "54607d57-709f-43d5-8b6c-432ce7125f96" + }, + { + "routeId": "L660", + "platformId": "U1995Z1", + "id": "2700d4dd-b4cc-49c6-be6d-093fdf9c9adb" + }, + { + "routeId": "L660", + "platformId": "U1995Z2", + "id": "38d06347-0e2c-4943-8119-241fa4d90f56" + }, + { + "routeId": "L478", + "platformId": "U1996Z1", + "id": "67e94f78-8f45-480c-a083-644ac860757b" + }, + { + "routeId": "L478", + "platformId": "U1996Z2", + "id": "81d30ec7-525a-4b8a-98f3-40e85a7f4b16" + }, + { + "routeId": "L161", + "platformId": "U199Z1", + "id": "e54b7b3c-6be8-4eee-878c-159e722e8c79" + }, + { + "routeId": "L907", + "platformId": "U199Z1", + "id": "5c66febe-61df-40a7-9484-3bf944be28ee" + }, + { + "routeId": "L312", + "platformId": "U199Z1", + "id": "3dbba4f6-0d30-4cfb-a78c-a13e7648b9f9" + }, + { + "routeId": "L316", + "platformId": "U199Z1", + "id": "77ca5c19-7fa1-42a1-9964-0c8c2ac15d96" + }, + { + "routeId": "L356", + "platformId": "U199Z1", + "id": "540809a0-66be-406a-a0d7-9a0c85f6f47b" + }, + { + "routeId": "L116", + "platformId": "U199Z3", + "id": "6e1739de-ff64-4b37-a9dc-c64c0b9137b1" + }, + { + "routeId": "L161", + "platformId": "U199Z3", + "id": "9db192be-9614-4f04-a3c0-6be11a6a120e" + }, + { + "routeId": "L907", + "platformId": "U199Z3", + "id": "282b4d7f-f406-486c-806f-e0de20233c61" + }, + { + "routeId": "L312", + "platformId": "U199Z3", + "id": "a2943a18-f424-4e37-a971-39f38e167f1a" + }, + { + "routeId": "L356", + "platformId": "U199Z3", + "id": "64b4fd08-3ac4-4c26-8df6-c644f59e8111" + }, + { + "routeId": "L316", + "platformId": "U199Z3", + "id": "e876ac01-c497-45a6-b72a-b13908ac43bd" + }, + { + "routeId": "L17", + "platformId": "U19Z1", + "id": "56616b14-680a-42b3-97cf-a6852e53fd1a" + }, + { + "routeId": "L27", + "platformId": "U19Z1", + "id": "1a57c5a7-bf06-46d2-a7ef-29f0c3b9eb90" + }, + { + "routeId": "L92", + "platformId": "U19Z1", + "id": "1c5c0a8e-61fb-4479-af96-7ff28ffa8f8b" + }, + { + "routeId": "L1804", + "platformId": "U19Z11", + "id": "11f227f8-a215-4358-9404-20374acb2d0f" + }, + { + "routeId": "L17", + "platformId": "U19Z2", + "id": "ce29a323-4e87-466d-9db6-5f20a2ffc5cd" + }, + { + "routeId": "L27", + "platformId": "U19Z2", + "id": "713a77ee-4151-4495-ad75-4ba0f494c857" + }, + { + "routeId": "L92", + "platformId": "U19Z2", + "id": "f1f3fc01-0e12-4779-9dfb-3bc011d8a1f9" + }, + { + "routeId": "L158", + "platformId": "U1Z1", + "id": "c35031da-d067-4f33-975e-cb468c20e1e0" + }, + { + "routeId": "L195", + "platformId": "U1Z1", + "id": "6e7b8179-51db-4e8d-ba05-7367cb42a6d4" + }, + { + "routeId": "L916", + "platformId": "U1Z1", + "id": "11d0d5e1-3144-43c0-afb0-fdb94728d0bc" + }, + { + "routeId": "L158", + "platformId": "U1Z2", + "id": "460188fd-ebd4-4db8-9be8-325dc50be70d" + }, + { + "routeId": "L195", + "platformId": "U1Z2", + "id": "7904bc5d-08f0-486a-8c70-110c7610b806" + }, + { + "routeId": "L916", + "platformId": "U1Z2", + "id": "febfaebb-b9c1-42e8-bb3b-84d9d6b885ee" + }, + { + "routeId": "L1221", + "platformId": "U2000Z301", + "id": "9e8cd565-c011-46c7-b653-6d3b91a928e3" + }, + { + "routeId": "L1303", + "platformId": "U2000Z301", + "id": "27f6f999-edff-45fe-ad1c-e8066b09f957" + }, + { + "routeId": "L1380", + "platformId": "U2004Z301", + "id": "ab2672a5-dded-41a2-87e2-be4d1995821b" + }, + { + "routeId": "L489", + "platformId": "U2005Z1", + "id": "8075ecbd-ff56-4597-b480-6b414b432847" + }, + { + "routeId": "L489", + "platformId": "U2005Z2", + "id": "3573bd51-ca9f-486a-83d2-8f171374b9b2" + }, + { + "routeId": "L387", + "platformId": "U2006Z1", + "id": "7c2e241e-32e4-479c-80a7-8791080391c8" + }, + { + "routeId": "L381", + "platformId": "U2006Z1", + "id": "ce186ad9-d400-4a3b-a7f0-4e12504dc30a" + }, + { + "routeId": "L382", + "platformId": "U2006Z1", + "id": "ce4dd58d-1f35-4ec3-887e-64c08336c723" + }, + { + "routeId": "L383", + "platformId": "U2006Z1", + "id": "6bb8b5a4-ff09-416c-b2e5-6d733f3b6f4f" + }, + { + "routeId": "L959", + "platformId": "U2006Z1", + "id": "6ca3cf1a-3b42-4ccd-9f0b-a98bca2de506" + }, + { + "routeId": "L381", + "platformId": "U2006Z2", + "id": "4af648ba-c5aa-487a-ab59-540acb797f62" + }, + { + "routeId": "L387", + "platformId": "U2006Z2", + "id": "06a8216b-0ca6-40f2-8a5f-1d1e7283bd1c" + }, + { + "routeId": "L382", + "platformId": "U2006Z2", + "id": "60b42c78-9dd1-488e-8397-fe07cfa5d36a" + }, + { + "routeId": "L383", + "platformId": "U2006Z2", + "id": "3fd00878-a603-4ef5-9be6-638e36e8a655" + }, + { + "routeId": "L959", + "platformId": "U2006Z2", + "id": "bd4302ae-bb68-40cb-80bc-049bb83d6ce1" + }, + { + "routeId": "L382", + "platformId": "U2007Z1", + "id": "c074d780-d0e4-4080-83be-b27fdca3d6ff" + }, + { + "routeId": "L383", + "platformId": "U2007Z1", + "id": "7b5a7606-9404-41eb-9eea-352584cda26c" + }, + { + "routeId": "L382", + "platformId": "U2007Z2", + "id": "c0f301e2-6285-4856-adb9-c89e1ac9020d" + }, + { + "routeId": "L383", + "platformId": "U2007Z2", + "id": "5ed3e31c-5d3c-4048-a856-37ff5f0df44c" + }, + { + "routeId": "L387", + "platformId": "U2008Z1", + "id": "7e354bd8-51c4-411b-b5c6-960efc6ae4a9" + }, + { + "routeId": "L381", + "platformId": "U2008Z1", + "id": "a83d534b-74e8-47d8-b767-efaf6e3b17f7" + }, + { + "routeId": "L382", + "platformId": "U2008Z1", + "id": "5cfdee7e-ce17-4366-a335-dd3ed335985f" + }, + { + "routeId": "L959", + "platformId": "U2008Z1", + "id": "fce8c5c4-6f1d-4847-a212-2852308fdb31" + }, + { + "routeId": "L381", + "platformId": "U2008Z2", + "id": "de3b8e1e-652d-4fad-b3db-d42507f643fc" + }, + { + "routeId": "L387", + "platformId": "U2008Z2", + "id": "227548c2-fb28-4d99-becb-bf028c68f324" + }, + { + "routeId": "L382", + "platformId": "U2008Z2", + "id": "c62566bd-e262-4730-a15c-0de0187ecb71" + }, + { + "routeId": "L491", + "platformId": "U2008Z2", + "id": "ed545991-5fe1-43d7-a312-b74a6a710f61" + }, + { + "routeId": "L959", + "platformId": "U2008Z2", + "id": "8f5fd803-5360-4251-b9fc-4fb4a1118041" + }, + { + "routeId": "L489", + "platformId": "U2008Z3", + "id": "1aae6c29-eafb-4bbb-8c9e-89443368f1ed" + }, + { + "routeId": "L491", + "platformId": "U2008Z3", + "id": "dea1c4bf-ebec-4409-9690-b49dbd74752b" + }, + { + "routeId": "L562", + "platformId": "U2009Z1", + "id": "ec2d0e24-4c3e-4503-a20c-26ec5d682083" + }, + { + "routeId": "L625", + "platformId": "U2009Z1", + "id": "426a96b8-0960-4d74-a3de-d9455d922751" + }, + { + "routeId": "L580", + "platformId": "U2009Z1", + "id": "6a07e661-40f1-4032-8e6e-db7dc41980a3" + }, + { + "routeId": "L562", + "platformId": "U2009Z2", + "id": "e2b2461c-39fb-4f87-a2e6-24d06f828fb2" + }, + { + "routeId": "L625", + "platformId": "U2009Z2", + "id": "4da317b8-591e-441f-99a1-c60d0579117e" + }, + { + "routeId": "L580", + "platformId": "U2009Z2", + "id": "51d644aa-30a6-4288-8581-6b357f74eca7" + }, + { + "routeId": "L204", + "platformId": "U200Z5", + "id": "43297a00-253c-43e9-9cc9-c2cabb269d80" + }, + { + "routeId": "L223", + "platformId": "U200Z5", + "id": "d5578df0-f87e-49ec-b91e-dc094c3dc7a4" + }, + { + "routeId": "L224", + "platformId": "U200Z5", + "id": "905898a4-15c4-4084-ae3f-e43aea2fe26a" + }, + { + "routeId": "L387", + "platformId": "U2010Z1", + "id": "7e414123-8f4e-445d-9f42-1890359e51d2" + }, + { + "routeId": "L381", + "platformId": "U2010Z1", + "id": "6fd98f41-264b-4c45-98f0-43b19524e08d" + }, + { + "routeId": "L382", + "platformId": "U2010Z1", + "id": "bef619c3-4827-42c9-a0b7-b6bdabe8e6b6" + }, + { + "routeId": "L959", + "platformId": "U2010Z1", + "id": "0147b662-398d-4eb5-97a4-6f288154070f" + }, + { + "routeId": "L381", + "platformId": "U2010Z2", + "id": "6eb9cdf6-6815-4f5a-9630-33f397f633d2" + }, + { + "routeId": "L387", + "platformId": "U2010Z2", + "id": "615eb779-3ef8-4547-84ef-290171bb3556" + }, + { + "routeId": "L382", + "platformId": "U2010Z2", + "id": "eba448ad-ec5b-4791-8be8-4655b4260c20" + }, + { + "routeId": "L959", + "platformId": "U2010Z2", + "id": "9411ba36-f052-4fee-a645-cd4cd395cea9" + }, + { + "routeId": "L489", + "platformId": "U2010Z3", + "id": "8fd9b00b-f0e0-46fe-b872-10b2bd0cb555" + }, + { + "routeId": "L387", + "platformId": "U2011Z1", + "id": "547d1b26-4cdf-4ea3-b5ab-7015882f6167" + }, + { + "routeId": "L381", + "platformId": "U2011Z1", + "id": "0a2239de-e7b6-40bc-b623-6141e068eca7" + }, + { + "routeId": "L959", + "platformId": "U2011Z1", + "id": "1c88100e-eef5-43e3-9c60-109e6f61f449" + }, + { + "routeId": "L381", + "platformId": "U2011Z2", + "id": "ca3d5ccf-57e2-4188-a910-7eafe438e580" + }, + { + "routeId": "L387", + "platformId": "U2011Z2", + "id": "cdf089f4-2798-4be9-8e48-a534d995e4ea" + }, + { + "routeId": "L959", + "platformId": "U2011Z2", + "id": "3ae3a311-955f-4a05-8ffc-e66d1fc236bd" + }, + { + "routeId": "L382", + "platformId": "U2011Z3", + "id": "cfc2784c-2128-4bb6-9454-9c7d9b0a22c8" + }, + { + "routeId": "L382", + "platformId": "U2011Z4", + "id": "18a7a423-d4b2-4dca-b55a-f238f3d68b5f" + }, + { + "routeId": "L387", + "platformId": "U2012Z1", + "id": "6bcdd1ee-ed4d-4a64-9735-58f70eed651a" + }, + { + "routeId": "L381", + "platformId": "U2012Z1", + "id": "c144e55e-20cd-4ca4-abc9-f2bbbebf3928" + }, + { + "routeId": "L660", + "platformId": "U2012Z1", + "id": "38e314aa-f4d8-4ecb-8dbc-e99c4ec3cbbf" + }, + { + "routeId": "L959", + "platformId": "U2012Z1", + "id": "de694651-2e05-4fe0-a8a4-8f9eda51ce06" + }, + { + "routeId": "L381", + "platformId": "U2012Z2", + "id": "cedef34a-b0b3-4edb-9ef7-8b53817d1237" + }, + { + "routeId": "L387", + "platformId": "U2012Z2", + "id": "b81641ac-3aea-4a5e-b654-49c770e100e8" + }, + { + "routeId": "L959", + "platformId": "U2012Z2", + "id": "5fa0f099-ff49-47e4-947a-b53f298dbe2a" + }, + { + "routeId": "L387", + "platformId": "U2013Z1", + "id": "2bf31a51-65be-41e1-97e2-58c03dd15c6f" + }, + { + "routeId": "L381", + "platformId": "U2013Z1", + "id": "541542dc-cbde-4954-acc8-fee18e7b1869" + }, + { + "routeId": "L660", + "platformId": "U2013Z1", + "id": "bc84bbeb-621d-4644-ab44-0690ce36b947" + }, + { + "routeId": "L959", + "platformId": "U2013Z1", + "id": "d86cdaa8-5acb-4c15-85ab-0ba460d0116e" + }, + { + "routeId": "L381", + "platformId": "U2013Z2", + "id": "1b218ffc-5a5f-4195-b541-bf936b26dff5" + }, + { + "routeId": "L387", + "platformId": "U2013Z2", + "id": "6afe7424-e047-4cea-82d1-e07158f9e3be" + }, + { + "routeId": "L660", + "platformId": "U2013Z2", + "id": "e0717240-3c9f-4805-adbc-ae2240b62526" + }, + { + "routeId": "L959", + "platformId": "U2013Z2", + "id": "8c79a90d-b8ed-4ca4-952a-3d757a7a63b2" + }, + { + "routeId": "L387", + "platformId": "U2014Z1", + "id": "6b46cc47-8b7b-40d5-b0a2-fa27d3fb83fe" + }, + { + "routeId": "L381", + "platformId": "U2014Z1", + "id": "82aa14ff-ec01-405f-adca-c569ab9027f8" + }, + { + "routeId": "L660", + "platformId": "U2014Z1", + "id": "aa8c0a8b-fb8e-4f45-818e-b4f24d2b8d24" + }, + { + "routeId": "L959", + "platformId": "U2014Z1", + "id": "7e31d7f8-e70b-43e9-9d83-496fcbd26c7a" + }, + { + "routeId": "L381", + "platformId": "U2014Z2", + "id": "c56a3cb6-f4b5-4fce-95f5-105adb7944cd" + }, + { + "routeId": "L387", + "platformId": "U2014Z2", + "id": "70c586ec-7fc0-4aa4-8bca-9326bcb65a4c" + }, + { + "routeId": "L660", + "platformId": "U2014Z2", + "id": "f18597bb-c719-40a1-88ba-39d97a9a05a0" + }, + { + "routeId": "L959", + "platformId": "U2014Z2", + "id": "2bdf804d-3c93-4030-b943-f09f5f8e626b" + }, + { + "routeId": "L387", + "platformId": "U2015Z1", + "id": "0f9dfd40-9cc5-4d0b-a8b1-67f77b7030bc" + }, + { + "routeId": "L381", + "platformId": "U2015Z1", + "id": "363e5bb2-7de9-41a7-9fc9-215f2c06b581" + }, + { + "routeId": "L660", + "platformId": "U2015Z1", + "id": "42efcae4-9952-49c4-8457-c4892c5411e8" + }, + { + "routeId": "L959", + "platformId": "U2015Z1", + "id": "658e2544-e8c1-4158-ba30-2888babd18be" + }, + { + "routeId": "L381", + "platformId": "U2015Z2", + "id": "f266417e-1e12-4699-a98b-fae9b19e9871" + }, + { + "routeId": "L387", + "platformId": "U2015Z2", + "id": "58d8edda-6abd-4242-a7ac-7647abff382c" + }, + { + "routeId": "L660", + "platformId": "U2015Z2", + "id": "5ce6883e-90a0-44da-bdd5-19e1cf410854" + }, + { + "routeId": "L959", + "platformId": "U2015Z2", + "id": "3e0e58ea-ff0d-429d-bfb8-2276a4a40788" + }, + { + "routeId": "L387", + "platformId": "U2016Z1", + "id": "29a9e10d-a80c-41cc-a964-71738dd7d5c9" + }, + { + "routeId": "L381", + "platformId": "U2016Z1", + "id": "6e4aee44-be42-4f67-bbf6-f410a4a7e906" + }, + { + "routeId": "L659", + "platformId": "U2016Z1", + "id": "0ee3cd40-c3b8-4ea4-83c1-a5da2b04e125" + }, + { + "routeId": "L492", + "platformId": "U2016Z1", + "id": "72ceb2d4-c48b-4e1b-8629-4917054633f9" + }, + { + "routeId": "L660", + "platformId": "U2016Z1", + "id": "5009d766-c3ff-4fb2-a897-f043f42259c4" + }, + { + "routeId": "L959", + "platformId": "U2016Z1", + "id": "e75280df-15aa-4bd6-9e96-c5c8f5af064f" + }, + { + "routeId": "L381", + "platformId": "U2016Z2", + "id": "9d0bd6aa-4abe-4e51-bc01-ecbefd46bb69" + }, + { + "routeId": "L387", + "platformId": "U2016Z2", + "id": "c665832e-a010-4c7c-a96a-3174f765d5f5" + }, + { + "routeId": "L660", + "platformId": "U2016Z2", + "id": "889451af-c92e-4ee8-a5a4-761d0acfe0f5" + }, + { + "routeId": "L492", + "platformId": "U2016Z2", + "id": "24e45a25-9f0f-4aa3-8711-56be0e9eb7f0" + }, + { + "routeId": "L659", + "platformId": "U2016Z2", + "id": "1310087e-905a-4176-ab12-353110d8cf14" + }, + { + "routeId": "L959", + "platformId": "U2016Z2", + "id": "89bf6f5b-b247-408d-be53-000743d31dfb" + }, + { + "routeId": "L382", + "platformId": "U2017Z1", + "id": "fbfe0c6e-8cfd-4800-bffd-b0ae17feb832" + }, + { + "routeId": "L382", + "platformId": "U2017Z2", + "id": "b70dc59c-3ce7-4bbf-9e26-0f0dc90a7178" + }, + { + "routeId": "L382", + "platformId": "U2018Z1", + "id": "b97d2dda-66cc-49bb-9f0e-1c43eee3d5f7" + }, + { + "routeId": "L382", + "platformId": "U2018Z2", + "id": "6a8563e7-d46e-4e11-8b24-b17e61e9f143" + }, + { + "routeId": "L382", + "platformId": "U2019Z1", + "id": "f4bd1588-1dac-42e8-9e3d-2f39739547c7" + }, + { + "routeId": "L382", + "platformId": "U2019Z2", + "id": "3f0de149-5655-4ad1-880a-0ba3c90d9cfd" + }, + { + "routeId": "L492", + "platformId": "U2019Z2", + "id": "7a6de623-63e0-4ce8-b867-6953192dddde" + }, + { + "routeId": "L492", + "platformId": "U2019Z3", + "id": "cabcefe0-5885-44da-8105-697e8511d9d5" + }, + { + "routeId": "L492", + "platformId": "U2019Z4", + "id": "b27007b6-6a3e-4cf3-aa0c-d9a1974f8b10" + }, + { + "routeId": "L188", + "platformId": "U201Z1", + "id": "231c80d7-f1ab-47a4-affd-8e53a0eaa006" + }, + { + "routeId": "L188", + "platformId": "U201Z2", + "id": "f8e93f6e-db32-4d0e-a088-d1b7ddde21ef" + }, + { + "routeId": "L382", + "platformId": "U2020Z1", + "id": "7d547abe-8ae9-4d95-8b05-79e9832c1f10" + }, + { + "routeId": "L492", + "platformId": "U2020Z1", + "id": "e2cd0ca3-614b-405b-99f4-21f208cd3b54" + }, + { + "routeId": "L382", + "platformId": "U2020Z2", + "id": "70b10c3b-488c-4f6c-b056-1cfb8701844e" + }, + { + "routeId": "L492", + "platformId": "U2020Z2", + "id": "1eca9d24-d097-477f-baed-8296179d75d5" + }, + { + "routeId": "L382", + "platformId": "U2022Z1", + "id": "f7523e4c-a671-4b0a-a735-828a802c0de4" + }, + { + "routeId": "L382", + "platformId": "U2022Z2", + "id": "650f959d-4402-415f-a52e-fa841b550462" + }, + { + "routeId": "L382", + "platformId": "U2023Z1", + "id": "147ebe3f-2a5a-472f-8126-b27dfab9919e" + }, + { + "routeId": "L382", + "platformId": "U2023Z2", + "id": "2512ae9e-b7b6-4f96-8187-011b2bc166bc" + }, + { + "routeId": "L382", + "platformId": "U2024Z1", + "id": "d0128112-bcd9-4b27-b440-399c7a77518a" + }, + { + "routeId": "L382", + "platformId": "U2024Z2", + "id": "f014a42c-0025-47de-9839-737a215471c3" + }, + { + "routeId": "L382", + "platformId": "U2025Z1", + "id": "8de14059-4630-4a5c-8d45-aa87f1955ed7" + }, + { + "routeId": "L382", + "platformId": "U2025Z2", + "id": "6f38f66f-d44a-4734-b385-7ce0140e82a0" + }, + { + "routeId": "L382", + "platformId": "U2026Z1", + "id": "2e9c7dbc-8fc7-4d2c-9c4d-c6dec44d7435" + }, + { + "routeId": "L490", + "platformId": "U2026Z1", + "id": "2741d8c8-04af-48e6-b10f-b04a7a227329" + }, + { + "routeId": "L382", + "platformId": "U2026Z2", + "id": "a9013f95-1d9f-4b9d-84be-8960f8030433" + }, + { + "routeId": "L490", + "platformId": "U2026Z2", + "id": "5c6b9681-0ca2-4269-be14-ff935c157306" + }, + { + "routeId": "L382", + "platformId": "U2027Z1", + "id": "3d07dab1-3bb9-42bd-8edf-7cdf5404505a" + }, + { + "routeId": "L382", + "platformId": "U2027Z2", + "id": "de6fcc76-74d0-4a36-864b-3007e851700b" + }, + { + "routeId": "L382", + "platformId": "U2028Z1", + "id": "91bb26e8-dc65-42bb-bda7-8ad104451d8b" + }, + { + "routeId": "L382", + "platformId": "U2028Z2", + "id": "514f7b31-8814-46bc-92b5-03769f3a4235" + }, + { + "routeId": "L382", + "platformId": "U2029Z1", + "id": "9a45aee3-3b13-4f8d-888d-737889af5e3b" + }, + { + "routeId": "L382", + "platformId": "U2029Z2", + "id": "d9e8c635-55ff-4e52-9d10-c5465f6b55c2" + }, + { + "routeId": "L659", + "platformId": "U2029Z2", + "id": "f4276700-f513-48bf-8f02-1d6b68bc6e49" + }, + { + "routeId": "L659", + "platformId": "U2029Z3", + "id": "3d9a2ef2-84e1-403b-a24f-47ca1fa5bab7" + }, + { + "routeId": "L1380", + "platformId": "U2029Z301", + "id": "d89b4ae8-5226-4cae-98e4-71f1a68dcead" + }, + { + "routeId": "L159", + "platformId": "U202Z1", + "id": "1526a7d0-6331-4b40-b749-65087f5e989e" + }, + { + "routeId": "L185", + "platformId": "U202Z2", + "id": "facfa1b0-7e81-41ef-8749-d608258383e2" + }, + { + "routeId": "L201", + "platformId": "U202Z2", + "id": "9fe49572-c1e8-4174-aae6-839b7faa0b05" + }, + { + "routeId": "L916", + "platformId": "U202Z2", + "id": "110c5bb2-714d-4ce6-ad71-c5f55513bf53" + }, + { + "routeId": "L185", + "platformId": "U202Z3", + "id": "527f9977-6ba0-4236-85af-100ebc9f160d" + }, + { + "routeId": "L201", + "platformId": "U202Z3", + "id": "d1e67b60-fa87-4304-874d-b011edd7a189" + }, + { + "routeId": "L916", + "platformId": "U202Z3", + "id": "f6f3c68a-a81e-48b6-8a9e-d87d97dd499e" + }, + { + "routeId": "L159", + "platformId": "U202Z5", + "id": "cc5775bd-0efb-42b7-b2be-aad836155bbe" + }, + { + "routeId": "L382", + "platformId": "U2030Z1", + "id": "118023bd-8d80-418e-9627-99112390fb81" + }, + { + "routeId": "L382", + "platformId": "U2030Z2", + "id": "25780a25-a087-4bee-b4e8-5246b9c1d185" + }, + { + "routeId": "L659", + "platformId": "U2030Z3", + "id": "513b1db2-6622-4b9d-9133-cec04f288139" + }, + { + "routeId": "L659", + "platformId": "U2030Z4", + "id": "57385cc0-fb20-47cd-8b36-db614442e891" + }, + { + "routeId": "L382", + "platformId": "U2031Z1", + "id": "6e6081cc-897e-42b5-94c3-b1e16e123f13" + }, + { + "routeId": "L382", + "platformId": "U2031Z2", + "id": "e25b50b4-ff43-4372-a495-0f0f2245b281" + }, + { + "routeId": "L382", + "platformId": "U2032Z1", + "id": "397e657d-4ae2-4683-87bc-d21dfa446e8f" + }, + { + "routeId": "L770", + "platformId": "U2032Z1", + "id": "32fed949-4d2b-41ea-a395-f1755d408d04" + }, + { + "routeId": "L421", + "platformId": "U2032Z1", + "id": "428204a2-f91e-4a4b-90a1-9a134bf9fddf" + }, + { + "routeId": "L382", + "platformId": "U2032Z2", + "id": "9077b1fa-eb74-4eb9-a96c-0ac62006d80a" + }, + { + "routeId": "L770", + "platformId": "U2032Z2", + "id": "9322de4e-d31a-4442-bc86-feafafc8fda0" + }, + { + "routeId": "L421", + "platformId": "U2032Z2", + "id": "f09f513e-ff85-404f-8739-544798dc6f39" + }, + { + "routeId": "L770", + "platformId": "U2033Z2", + "id": "c7156ba9-8c96-49ed-bfa7-cc4bcf01e792" + }, + { + "routeId": "L770", + "platformId": "U2033Z3", + "id": "c121628d-02c7-451b-9a84-52f84a64ac23" + }, + { + "routeId": "L1380", + "platformId": "U2033Z301", + "id": "3b72422f-2bdb-4cec-992a-5bdbc77e3f64" + }, + { + "routeId": "L1318", + "platformId": "U2033Z301", + "id": "74c2f8fa-0485-412b-98aa-514b2fd321e5" + }, + { + "routeId": "L382", + "platformId": "U2033Z4", + "id": "12082634-2174-4e2a-b1af-46b63f69ef54" + }, + { + "routeId": "L421", + "platformId": "U2033Z4", + "id": "194d3351-e21b-40d7-9ce1-67f71c4dbc57" + }, + { + "routeId": "L382", + "platformId": "U2033Z5", + "id": "cffc3215-6d72-41ba-be98-a2fe757013ac" + }, + { + "routeId": "L421", + "platformId": "U2033Z5", + "id": "e99d0f2a-48b6-42a2-ad3e-defdc6b79840" + }, + { + "routeId": "L383", + "platformId": "U2034Z1", + "id": "8e02f79a-ed3a-4b34-891e-a9773c31d21a" + }, + { + "routeId": "L383", + "platformId": "U2034Z2", + "id": "b949867f-7502-41fb-b084-d3cde2fb7135" + }, + { + "routeId": "L383", + "platformId": "U2035Z1", + "id": "438212c2-5187-4eaa-b9d0-559bc1ad74fa" + }, + { + "routeId": "L383", + "platformId": "U2035Z2", + "id": "8d4ef42d-4955-45bb-8db5-feb39c1df792" + }, + { + "routeId": "L383", + "platformId": "U2036Z1", + "id": "767e16f0-e9d4-4c9e-a8b3-b56fdc9ab8a6" + }, + { + "routeId": "L489", + "platformId": "U2036Z1", + "id": "a7b44d97-911b-468a-a1ae-c130fcff39ca" + }, + { + "routeId": "L383", + "platformId": "U2036Z2", + "id": "6afe80de-4cff-491b-b091-d4949250e387" + }, + { + "routeId": "L489", + "platformId": "U2036Z2", + "id": "a519a1b8-9f99-4b46-a725-677123be66c1" + }, + { + "routeId": "L383", + "platformId": "U2037Z1", + "id": "d5da2861-9014-4af7-9360-ed345d89c4ac" + }, + { + "routeId": "L489", + "platformId": "U2037Z1", + "id": "51b3bd38-19ae-4bf4-84c9-66962cf3a132" + }, + { + "routeId": "L383", + "platformId": "U2037Z2", + "id": "4bb6d020-0857-4221-adac-cba88e5c0b13" + }, + { + "routeId": "L489", + "platformId": "U2037Z2", + "id": "c61cc65e-3651-4744-899c-1aa5ff7e4131" + }, + { + "routeId": "L383", + "platformId": "U2038Z1", + "id": "1cd39258-9408-47f0-a421-55961ce668ef" + }, + { + "routeId": "L489", + "platformId": "U2038Z1", + "id": "944102ea-deaf-4147-8587-c8b5152f18f3" + }, + { + "routeId": "L383", + "platformId": "U2038Z2", + "id": "e69105d8-7e44-4284-8357-b1550a903738" + }, + { + "routeId": "L489", + "platformId": "U2038Z2", + "id": "4dc6a7be-047e-4c25-b160-3d93f135a212" + }, + { + "routeId": "L383", + "platformId": "U2039Z1", + "id": "ab118e73-c759-4ec0-979a-639646b93123" + }, + { + "routeId": "L383", + "platformId": "U2039Z2", + "id": "00801d55-17f8-45db-8d64-249668957804" + }, + { + "routeId": "L3", + "platformId": "U203Z1", + "id": "da1caac7-e6c5-46d5-8279-28b73a67d6a6" + }, + { + "routeId": "L5", + "platformId": "U203Z1", + "id": "c4d3b87e-09c0-4ebe-b9e0-eb67062b7600" + }, + { + "routeId": "L6", + "platformId": "U203Z1", + "id": "b696cc91-b841-4c3c-a67c-6b4bf039fedf" + }, + { + "routeId": "L9", + "platformId": "U203Z1", + "id": "450c0908-1551-4993-b623-47e3e89aaac8" + }, + { + "routeId": "L14", + "platformId": "U203Z1", + "id": "e7dcfe55-edf3-4f09-853a-f5f035c4a61d" + }, + { + "routeId": "L91", + "platformId": "U203Z1", + "id": "565ba4cd-371c-4097-8dba-edecaa60f1ec" + }, + { + "routeId": "L92", + "platformId": "U203Z1", + "id": "4c8f5ec3-75de-47a0-9499-9589a1c7186e" + }, + { + "routeId": "L94", + "platformId": "U203Z1", + "id": "fe7953f5-d676-420d-81d9-0a8e30826a6b" + }, + { + "routeId": "L95", + "platformId": "U203Z1", + "id": "2cf18e39-eb71-4290-bbe6-b8414baf4b3d" + }, + { + "routeId": "L96", + "platformId": "U203Z1", + "id": "8d0ee522-b250-4d39-b9c6-b8374164b135" + }, + { + "routeId": "L98", + "platformId": "U203Z1", + "id": "3007b479-e6d4-4a1a-bf6b-b6e2ea5a9ebb" + }, + { + "routeId": "L3", + "platformId": "U203Z2", + "id": "6074f691-5920-4bdc-b43b-c2afe0cbcda1" + }, + { + "routeId": "L5", + "platformId": "U203Z2", + "id": "9c035fe0-2994-4b7c-94e5-be44cc222abf" + }, + { + "routeId": "L6", + "platformId": "U203Z2", + "id": "f1d88a23-d028-4def-9274-fa036caf6588" + }, + { + "routeId": "L9", + "platformId": "U203Z2", + "id": "3671e64f-c264-438b-be6a-0416ee7bd5eb" + }, + { + "routeId": "L14", + "platformId": "U203Z2", + "id": "feb82011-60a9-4721-80ab-0177333f7a56" + }, + { + "routeId": "L91", + "platformId": "U203Z2", + "id": "09e7fdae-a2f4-4956-8cd7-8404e85ac933" + }, + { + "routeId": "L92", + "platformId": "U203Z2", + "id": "dbc6a9cf-fcc4-4835-910e-c8d48d39bfc1" + }, + { + "routeId": "L94", + "platformId": "U203Z2", + "id": "03379da8-ab2c-4983-8cfa-5675a358d36e" + }, + { + "routeId": "L95", + "platformId": "U203Z2", + "id": "33a1f0b8-4cdb-42c2-a56e-af03c097a875" + }, + { + "routeId": "L96", + "platformId": "U203Z2", + "id": "158f8ae0-e31c-42b1-b5c1-e888c7427516" + }, + { + "routeId": "L98", + "platformId": "U203Z2", + "id": "f5d24e13-d6f7-45c4-90b2-01823d89153f" + }, + { + "routeId": "L383", + "platformId": "U2040Z1", + "id": "68e19950-38a4-4f95-8599-f9fdaa80c121" + }, + { + "routeId": "L383", + "platformId": "U2040Z2", + "id": "f745d517-6d3e-4341-89e4-4224c09a34f1" + }, + { + "routeId": "L383", + "platformId": "U2041Z1", + "id": "cb99cd31-c630-413d-bb56-f4135f066afc" + }, + { + "routeId": "L685", + "platformId": "U2041Z1", + "id": "851d321d-33b0-4e81-bfa0-61210ccba288" + }, + { + "routeId": "L383", + "platformId": "U2041Z2", + "id": "795e8ce8-489f-49c1-8bef-98463b1bed4b" + }, + { + "routeId": "L685", + "platformId": "U2041Z2", + "id": "8f2d6e26-4b0a-42a6-bbdb-186badfdf52a" + }, + { + "routeId": "L383", + "platformId": "U2041Z3", + "id": "0094e42e-c7be-4979-9288-2a2c15632031" + }, + { + "routeId": "L383", + "platformId": "U2042Z1", + "id": "791d68cc-309f-4f70-bed2-7eea2a9394b3" + }, + { + "routeId": "L685", + "platformId": "U2042Z1", + "id": "31f106f2-4d8c-44b5-a2ef-91fb321d6229" + }, + { + "routeId": "L383", + "platformId": "U2043Z2", + "id": "04bf672c-ddee-4b1e-a0d7-739ab6225ffd" + }, + { + "routeId": "L383", + "platformId": "U2044Z1", + "id": "206d8aa1-fe14-4a5d-a3b2-9e3db429f7a8" + }, + { + "routeId": "L383", + "platformId": "U2044Z2", + "id": "b3ef61d1-2fe2-45ca-b2b1-4816dcce6b12" + }, + { + "routeId": "L383", + "platformId": "U2045Z1", + "id": "ff2ce9d9-8157-4bd6-ba22-627a316464f6" + }, + { + "routeId": "L383", + "platformId": "U2045Z2", + "id": "3c01f5d6-0e90-413a-ad9f-33aa3b353593" + }, + { + "routeId": "L383", + "platformId": "U2046Z1", + "id": "7742826c-673a-4223-856f-e4c9c9677b82" + }, + { + "routeId": "L490", + "platformId": "U2046Z1", + "id": "4d0ddd5e-f3d6-4190-80ba-85b50ab15ad6" + }, + { + "routeId": "L383", + "platformId": "U2046Z2", + "id": "a8bdee0d-b2df-4cc0-a3e4-7bf49b32be7b" + }, + { + "routeId": "L490", + "platformId": "U2046Z2", + "id": "1b70f02b-cadb-454a-92e7-2fd7809b84e3" + }, + { + "routeId": "L383", + "platformId": "U2047Z1", + "id": "1c1595c5-5f4d-4943-800a-deef52710fec" + }, + { + "routeId": "L659", + "platformId": "U2048Z1", + "id": "f226b729-5636-4202-9e28-70f58a487179" + }, + { + "routeId": "L659", + "platformId": "U2048Z2", + "id": "261ae0a0-d367-49e4-bd27-2a4f649c3dee" + }, + { + "routeId": "L387", + "platformId": "U2049Z1", + "id": "b8dd64c2-8815-4d2c-97f6-91ced1ddd5d9" + }, + { + "routeId": "L387", + "platformId": "U2049Z2", + "id": "2b5e6444-6cb1-447b-95c1-8687e7dc4eac" + }, + { + "routeId": "L421", + "platformId": "U2049Z3", + "id": "e86d6eae-20e0-4b71-b612-c9335ef74715" + }, + { + "routeId": "L421", + "platformId": "U2049Z4", + "id": "fec02b3e-f870-456e-ac5d-72ea75bc292a" + }, + { + "routeId": "L327", + "platformId": "U204Z1", + "id": "69a31055-3e8b-4ae8-bc13-80f70507b564" + }, + { + "routeId": "L331", + "platformId": "U204Z1", + "id": "60df9090-7202-490a-a583-59ffd20074fa" + }, + { + "routeId": "L659", + "platformId": "U2050Z1", + "id": "d393c0af-7bb9-4243-8693-1c2fdd14a564" + }, + { + "routeId": "L659", + "platformId": "U2050Z2", + "id": "424e8c0f-cb53-4c6e-a576-e27ef518608d" + }, + { + "routeId": "L659", + "platformId": "U2051Z1", + "id": "d19173eb-6d1d-4798-a246-f97e23c014aa" + }, + { + "routeId": "L659", + "platformId": "U2051Z2", + "id": "69ce079b-7de8-4fd7-8d40-bd8168e8a54c" + }, + { + "routeId": "L494", + "platformId": "U2052Z2", + "id": "6cfcb838-a09a-4892-b6e3-ebf42721a37c" + }, + { + "routeId": "L685", + "platformId": "U2055Z1", + "id": "e0c9606c-62fc-468d-be59-a2a89fc84a59" + }, + { + "routeId": "L489", + "platformId": "U2055Z1", + "id": "c8772aa6-053c-4b84-87f0-78718b9e1976" + }, + { + "routeId": "L490", + "platformId": "U2055Z1", + "id": "baa2145a-5295-4d2e-b028-6b18948b1afa" + }, + { + "routeId": "L685", + "platformId": "U2055Z2", + "id": "72813acc-f159-4428-b15c-281b5559e9ff" + }, + { + "routeId": "L489", + "platformId": "U2055Z2", + "id": "53dabefe-1e47-472a-9033-f88df30b0676" + }, + { + "routeId": "L490", + "platformId": "U2055Z2", + "id": "3734d32d-9493-4694-af62-e82624cd7d64" + }, + { + "routeId": "L490", + "platformId": "U2056Z1", + "id": "dc6566e6-fdb9-4e91-a73c-43bd06193246" + }, + { + "routeId": "L490", + "platformId": "U2056Z2", + "id": "b6bcd28d-ced4-4160-aaba-48be77b75a8c" + }, + { + "routeId": "L490", + "platformId": "U2057Z1", + "id": "c0fdbe81-4f49-4c08-ab23-100cd036d964" + }, + { + "routeId": "L490", + "platformId": "U2057Z2", + "id": "8b45a196-ff3c-4ef5-92bb-98e7c7bb2789" + }, + { + "routeId": "L490", + "platformId": "U2058Z1", + "id": "03598f5e-7ae9-4a58-a97a-972daf0208b7" + }, + { + "routeId": "L490", + "platformId": "U2058Z2", + "id": "67456d4e-f0ac-49dd-ad33-7e83ee4c64e0" + }, + { + "routeId": "L490", + "platformId": "U2059Z1", + "id": "f93858c3-3304-41ad-9667-a2e171084616" + }, + { + "routeId": "L490", + "platformId": "U2059Z2", + "id": "9b8880e5-dff9-47b1-89f0-5617b9502d02" + }, + { + "routeId": "L904", + "platformId": "U205Z1", + "id": "f7471527-ec19-4a4f-b920-178f5cdfc383" + }, + { + "routeId": "L904", + "platformId": "U205Z2", + "id": "e510a220-a732-479e-8e9a-bfb0092ef0ac" + }, + { + "routeId": "L490", + "platformId": "U2060Z1", + "id": "aed9abb0-378e-4e47-ae1d-2302c83144db" + }, + { + "routeId": "L490", + "platformId": "U2060Z2", + "id": "28f6ba39-a007-4cbd-9094-b38d05ff8d7d" + }, + { + "routeId": "L490", + "platformId": "U2061Z1", + "id": "529a7968-a06c-4eb9-aa4e-d02db352ab4e" + }, + { + "routeId": "L490", + "platformId": "U2061Z2", + "id": "3b2f1784-48ab-446a-9b4f-bade0045a1f4" + }, + { + "routeId": "L490", + "platformId": "U2062Z1", + "id": "9bfa0a0f-a8b4-49b5-8375-e1a1a7556f98" + }, + { + "routeId": "L490", + "platformId": "U2062Z2", + "id": "489c59e9-7dcd-42eb-b4ab-b16b126af992" + }, + { + "routeId": "L490", + "platformId": "U2063Z1", + "id": "99d751a1-56e8-47fc-83e9-74228c1f6e20" + }, + { + "routeId": "L490", + "platformId": "U2063Z2", + "id": "6ca3764f-6169-4c81-bf01-edd586ebc7cb" + }, + { + "routeId": "L490", + "platformId": "U2064Z1", + "id": "597bf5bf-6dff-40b4-8896-806957449bb8" + }, + { + "routeId": "L490", + "platformId": "U2064Z2", + "id": "645a7a83-e474-4451-b64c-8fb6ead0a308" + }, + { + "routeId": "L685", + "platformId": "U2065Z1", + "id": "63fef5c3-971c-468b-9148-48a0a99a51fa" + }, + { + "routeId": "L489", + "platformId": "U2065Z1", + "id": "01ecb098-fb3c-43d5-92c0-7cb17b47349e" + }, + { + "routeId": "L490", + "platformId": "U2065Z1", + "id": "1eefd585-a263-4f51-a636-93b6604319bf" + }, + { + "routeId": "L685", + "platformId": "U2065Z2", + "id": "01b278b1-9668-4ab8-bc5d-f844ba9e3b0b" + }, + { + "routeId": "L489", + "platformId": "U2065Z2", + "id": "1ec7ef34-bf7a-4f43-b291-db224f3d26e3" + }, + { + "routeId": "L490", + "platformId": "U2065Z2", + "id": "a267e6bc-efc9-4fce-941c-7764a5ac1c44" + }, + { + "routeId": "L149", + "platformId": "U206Z1", + "id": "4b74a543-87dc-4899-b23f-92dfcf28a819" + }, + { + "routeId": "L423", + "platformId": "U2070Z1", + "id": "28d40477-cbb5-4d05-824b-22ab9a347a7a" + }, + { + "routeId": "L491", + "platformId": "U2070Z2", + "id": "3a1788ad-e5db-4db1-904c-7115234cdd17" + }, + { + "routeId": "L491", + "platformId": "U2071Z1", + "id": "58440558-b9de-4ad1-aff5-a30062b9c689" + }, + { + "routeId": "L491", + "platformId": "U2071Z2", + "id": "b6ac135c-67bf-47eb-88dd-55cd1d1a5296" + }, + { + "routeId": "L491", + "platformId": "U2072Z1", + "id": "de14b75b-d8ad-41f5-af0a-e166f4792434" + }, + { + "routeId": "L491", + "platformId": "U2072Z2", + "id": "1fd3b813-e492-4b88-8162-fe860956d045" + }, + { + "routeId": "L685", + "platformId": "U2073Z1", + "id": "e5ccc646-4bb3-4c28-b708-095ae12b4872" + }, + { + "routeId": "L685", + "platformId": "U2073Z2", + "id": "26dd50d8-b351-45dd-81b5-7f0ec1d895e6" + }, + { + "routeId": "L492", + "platformId": "U2074Z1", + "id": "2dd6d57a-3383-471f-bc76-eb0c359d8cea" + }, + { + "routeId": "L492", + "platformId": "U2074Z2", + "id": "2d735972-22c1-4484-98e6-17fa1a13389a" + }, + { + "routeId": "L492", + "platformId": "U2075Z1", + "id": "2f42eedb-56a0-415a-85e7-f3c04cbe68c3" + }, + { + "routeId": "L492", + "platformId": "U2075Z2", + "id": "ae5236d6-38ee-4a68-b999-be84f2612653" + }, + { + "routeId": "L492", + "platformId": "U2077Z1", + "id": "07adee00-2c8f-44d0-bae1-7b5d402cafd5" + }, + { + "routeId": "L492", + "platformId": "U2077Z2", + "id": "7f75473d-ef5b-40df-b06c-0fe56d772a60" + }, + { + "routeId": "L492", + "platformId": "U2078Z1", + "id": "1f61508a-c353-434e-81bc-4749605368c1" + }, + { + "routeId": "L492", + "platformId": "U2078Z2", + "id": "7be4f149-f977-4bc4-b023-484681cb1034" + }, + { + "routeId": "L492", + "platformId": "U2079Z1", + "id": "3bb97426-735c-41d7-8efe-cac4fe682ed0" + }, + { + "routeId": "L492", + "platformId": "U2079Z2", + "id": "5ab22c6b-d5fe-4fba-8a94-ddc2fbe56b6e" + }, + { + "routeId": "L181", + "platformId": "U207Z1", + "id": "89eb3382-88dd-43be-bdab-a7dc44f7923e" + }, + { + "routeId": "L909", + "platformId": "U207Z1", + "id": "1776617f-73c9-4503-b005-cde8d52ec5af" + }, + { + "routeId": "L171", + "platformId": "U207Z1", + "id": "0709c382-9b95-48fb-98bd-6ce4615b6724" + }, + { + "routeId": "L181", + "platformId": "U207Z2", + "id": "0930fd92-d547-41e7-8c81-acb10677d5c8" + }, + { + "routeId": "L909", + "platformId": "U207Z2", + "id": "46080c83-9009-4443-8d11-110746be201c" + }, + { + "routeId": "L171", + "platformId": "U207Z2", + "id": "825ce4ec-0963-4963-bca4-b53c8f042152" + }, + { + "routeId": "L909", + "platformId": "U207Z3", + "id": "2777fe1d-be8b-4a95-8583-fac95412abb0" + }, + { + "routeId": "L110", + "platformId": "U207Z3", + "id": "6ee551f1-1243-410a-8584-c68feecec920" + }, + { + "routeId": "L224", + "platformId": "U207Z3", + "id": "7d5c87f3-5a9f-47f0-8abd-0f8b490d9733" + }, + { + "routeId": "L909", + "platformId": "U207Z4", + "id": "67bcbdce-f5dd-4ae5-a267-001af9910297" + }, + { + "routeId": "L110", + "platformId": "U207Z4", + "id": "71572d82-abdf-49e0-a340-8936a8cf8b00" + }, + { + "routeId": "L224", + "platformId": "U207Z4", + "id": "28af9e08-88d6-461e-aeb4-ce9e6c782485" + }, + { + "routeId": "L685", + "platformId": "U2080Z1", + "id": "5ed95dbb-a901-4907-a917-219b66636392" + }, + { + "routeId": "L492", + "platformId": "U2080Z1", + "id": "8de41201-20ee-4c30-954f-5210057b2626" + }, + { + "routeId": "L685", + "platformId": "U2080Z2", + "id": "b64b964c-9814-4679-8d37-b334c64f0ff3" + }, + { + "routeId": "L492", + "platformId": "U2080Z2", + "id": "117cc80f-fc55-4395-bf37-4719b9e37b24" + }, + { + "routeId": "L685", + "platformId": "U2081Z1", + "id": "a4390077-5bf0-4cf0-a240-f21e28255e10" + }, + { + "routeId": "L492", + "platformId": "U2081Z1", + "id": "050606e1-b8a3-4584-93d5-33757978b877" + }, + { + "routeId": "L489", + "platformId": "U2082Z1", + "id": "dfad9301-4c68-4478-84ce-06bf4cb18f69" + }, + { + "routeId": "L489", + "platformId": "U2082Z2", + "id": "c5036cd2-f469-4963-b90f-781962e6a247" + }, + { + "routeId": "L489", + "platformId": "U2083Z1", + "id": "6bb9b48e-5ce8-49f2-b46f-394bb85c1429" + }, + { + "routeId": "L489", + "platformId": "U2083Z2", + "id": "f56132a2-5d85-4932-959d-fe605c995542" + }, + { + "routeId": "L489", + "platformId": "U2084Z1", + "id": "d5c7fd97-94c8-4f39-8db0-5c6b15bf4f60" + }, + { + "routeId": "L385", + "platformId": "U2085Z1", + "id": "abd2920c-f8ff-4495-9388-3bc38e4a0df9" + }, + { + "routeId": "L494", + "platformId": "U2085Z1", + "id": "704ba13c-b370-4734-a27c-8656a3a8344e" + }, + { + "routeId": "L385", + "platformId": "U2085Z3", + "id": "7169bd92-5a9b-451a-9faf-ca0465887ed8" + }, + { + "routeId": "L435", + "platformId": "U2085Z3", + "id": "617353bb-8911-4972-aa3f-f8fe6417e119" + }, + { + "routeId": "L494", + "platformId": "U2086Z1", + "id": "2bec639c-39b9-491e-8c59-3febf94b0bc8" + }, + { + "routeId": "L494", + "platformId": "U2086Z2", + "id": "4c859c50-fbdd-4e57-933b-48cf5858a1a5" + }, + { + "routeId": "L685", + "platformId": "U2087Z1", + "id": "34b246b0-3bc9-4bf3-be64-b3945020cd1d" + }, + { + "routeId": "L685", + "platformId": "U2087Z2", + "id": "cc9aad3b-7b17-4e82-955d-05b734d71598" + }, + { + "routeId": "L492", + "platformId": "U2088Z1", + "id": "a888526d-4c66-47ba-82be-1ba14b85dc2f" + }, + { + "routeId": "L492", + "platformId": "U2088Z2", + "id": "deb95f0f-d1c7-4d1c-8802-3f2b6f6f7b0e" + }, + { + "routeId": "L383", + "platformId": "U2089Z1", + "id": "164a996f-546b-4195-bcfa-6c5fa800a43f" + }, + { + "routeId": "L383", + "platformId": "U2089Z2", + "id": "e4ccb26e-37e3-4452-ac59-1fc260324ae6" + }, + { + "routeId": "L5", + "platformId": "U208Z1", + "id": "7fcef1e7-809b-4886-99ff-1e3a07558462" + }, + { + "routeId": "L9", + "platformId": "U208Z1", + "id": "b7d99eea-4b98-424a-9254-fd2ecc75a15f" + }, + { + "routeId": "L12", + "platformId": "U208Z1", + "id": "99d23c9d-6920-4ecc-925a-01c1905d1659" + }, + { + "routeId": "L17", + "platformId": "U208Z1", + "id": "1bed57b0-8010-40db-9214-1a7200e94574" + }, + { + "routeId": "L27", + "platformId": "U208Z1", + "id": "4139f918-a249-4e84-9bf2-0ef9fa1c56c5" + }, + { + "routeId": "L20", + "platformId": "U208Z1", + "id": "a2400d9f-2a52-4446-96de-8a7ad38c5efc" + }, + { + "routeId": "L904", + "platformId": "U208Z1", + "id": "11d28b50-273f-4eb4-87f3-d01dc52811b2" + }, + { + "routeId": "L910", + "platformId": "U208Z1", + "id": "a9e01a9b-681a-4194-9d7f-a7e00e8055aa" + }, + { + "routeId": "L5", + "platformId": "U208Z2", + "id": "a71f4684-d91b-4ec9-8728-7a228a6d1904" + }, + { + "routeId": "L9", + "platformId": "U208Z2", + "id": "6fdf2341-9549-4824-9869-e2e0a1068393" + }, + { + "routeId": "L12", + "platformId": "U208Z2", + "id": "cb5979be-b815-4548-b603-c4d0b2745066" + }, + { + "routeId": "L17", + "platformId": "U208Z2", + "id": "615981a0-3a7f-4252-8ada-58becf4a17b1" + }, + { + "routeId": "L27", + "platformId": "U208Z2", + "id": "8148a379-634d-4717-ad34-e236b48f3d85" + }, + { + "routeId": "L20", + "platformId": "U208Z2", + "id": "f713f197-3f69-4870-b53f-2cc9280b9b3a" + }, + { + "routeId": "L176", + "platformId": "U208Z3", + "id": "fd3cf6af-4fce-4d3e-8b8b-c5eaf24a5930" + }, + { + "routeId": "L910", + "platformId": "U208Z3", + "id": "25a1236d-5b49-48aa-b228-509c39e9c68a" + }, + { + "routeId": "L176", + "platformId": "U208Z4", + "id": "b21973fe-0592-421a-800d-efeab3dc3d2f" + }, + { + "routeId": "L907", + "platformId": "U208Z4", + "id": "9377ff3f-be08-42c4-97e8-5a98acc2a62a" + }, + { + "routeId": "L908", + "platformId": "U208Z4", + "id": "c8d69344-8d88-4f15-b627-016994cb4968" + }, + { + "routeId": "L382", + "platformId": "U2091Z1", + "id": "32389ad0-ec5a-46fa-a230-ca7f20304db5" + }, + { + "routeId": "L382", + "platformId": "U2091Z2", + "id": "8ddd84fd-f7d0-4414-85f5-f103f863f250" + }, + { + "routeId": "L490", + "platformId": "U2092Z1", + "id": "d7926ae9-4941-4805-88bf-b1ca4e3ef2d8" + }, + { + "routeId": "L490", + "platformId": "U2092Z2", + "id": "8a852523-b1ec-4fb9-b75b-14eb9d2a46af" + }, + { + "routeId": "L625", + "platformId": "U2093Z1", + "id": "39ff01ec-da8d-4389-8322-a134e95cae1a" + }, + { + "routeId": "L580", + "platformId": "U2093Z1", + "id": "390f038f-376e-43e9-ba56-cbcb36295ba0" + }, + { + "routeId": "L625", + "platformId": "U2093Z2", + "id": "294535a4-1e6d-4ec4-8b8e-138acbfc420f" + }, + { + "routeId": "L580", + "platformId": "U2093Z2", + "id": "5a50baec-f606-49b2-ab6e-fee971593cae" + }, + { + "routeId": "L350", + "platformId": "U2094Z2", + "id": "8b1e5493-ffc6-4ddb-b801-c585685b09db" + }, + { + "routeId": "L323", + "platformId": "U2094Z2", + "id": "027664b5-612c-4d78-9ae1-0367eadaa514" + }, + { + "routeId": "L622", + "platformId": "U2094Z2", + "id": "a2a163fe-9668-46d7-9e7b-9ac1319632bc" + }, + { + "routeId": "L2254", + "platformId": "U2094Z402", + "id": "19f6b948-949f-499b-bde0-e74310c3bcf6" + }, + { + "routeId": "L340", + "platformId": "U2095Z1", + "id": "289fdd4a-db25-44eb-b2d9-c895e8c67d26" + }, + { + "routeId": "L954", + "platformId": "U2095Z1", + "id": "7aad2bb0-f9f0-42a5-9779-79b4d905686d" + }, + { + "routeId": "L350", + "platformId": "U2095Z1", + "id": "c7b60817-a968-46c8-bf72-2f1a93823a9a" + }, + { + "routeId": "L340", + "platformId": "U2095Z2", + "id": "2f9b0418-cf5a-4fc4-9c65-61438fdb63ab" + }, + { + "routeId": "L954", + "platformId": "U2095Z2", + "id": "c54ed43d-6f53-497d-b53a-8f7467ad2a18" + }, + { + "routeId": "L350", + "platformId": "U2095Z2", + "id": "64d3cb99-9127-4f32-b04a-d331b1f15cc4" + }, + { + "routeId": "L1220", + "platformId": "U2095Z301", + "id": "892c9c5f-ebe8-4de6-8f41-491bd2d61ffc" + }, + { + "routeId": "L1304", + "platformId": "U2095Z301", + "id": "83f7c2e3-166a-41ed-98ed-461b163e8a8b" + }, + { + "routeId": "L1349", + "platformId": "U2095Z301", + "id": "1375b1fc-942e-4a5a-99d0-f2f6181879c9" + }, + { + "routeId": "L340", + "platformId": "U2096Z1", + "id": "dc7f0449-42b3-4b0d-8013-57579eb8bf93" + }, + { + "routeId": "L954", + "platformId": "U2096Z1", + "id": "95d241e2-84fa-4a5a-8637-372d39a0cd67" + }, + { + "routeId": "L350", + "platformId": "U2096Z1", + "id": "1854d6a0-01f9-4a65-99ae-5dc3a0e0343a" + }, + { + "routeId": "L340", + "platformId": "U2096Z2", + "id": "770d0c8a-e969-4649-819a-fe77f76d7d86" + }, + { + "routeId": "L954", + "platformId": "U2096Z2", + "id": "110012b7-c1e2-4f6e-bafe-c40288240917" + }, + { + "routeId": "L350", + "platformId": "U2096Z2", + "id": "d84af7b4-559e-4de4-9f96-8334b4c2c311" + }, + { + "routeId": "L385", + "platformId": "U2097Z1", + "id": "134c3ad8-1554-4033-b065-af1a9c9c719c" + }, + { + "routeId": "L385", + "platformId": "U2097Z2", + "id": "1d4fd1fd-b613-4f8f-8a06-339fc0675fcf" + }, + { + "routeId": "L340", + "platformId": "U2098Z1", + "id": "1e619241-36fb-4c66-93be-6cee91197d5f" + }, + { + "routeId": "L954", + "platformId": "U2098Z1", + "id": "adea5829-40c0-464b-8f6e-d7c0f0e78c63" + }, + { + "routeId": "L350", + "platformId": "U2098Z1", + "id": "e61604e8-09f6-4faa-a5f7-5b0b5fd57e26" + }, + { + "routeId": "L340", + "platformId": "U2098Z2", + "id": "3f0caeed-6067-4045-a0ed-d5f070264a59" + }, + { + "routeId": "L954", + "platformId": "U2098Z2", + "id": "3678856a-eb52-4fa3-8b04-2c729eeb1aee" + }, + { + "routeId": "L350", + "platformId": "U2098Z2", + "id": "b7c63f75-655b-4cf6-8df3-e7460f84f953" + }, + { + "routeId": "L340", + "platformId": "U2099Z1", + "id": "600c4c4f-48cf-4ee4-b168-cb5ad9f3e12e" + }, + { + "routeId": "L954", + "platformId": "U2099Z1", + "id": "c8dc757d-28c5-492e-917a-4cfc6de58901" + }, + { + "routeId": "L350", + "platformId": "U2099Z1", + "id": "6e9824b6-f5cc-449c-9593-d0d82231840e" + }, + { + "routeId": "L340", + "platformId": "U2099Z2", + "id": "5c907141-3954-4735-873f-283ac4962b92" + }, + { + "routeId": "L954", + "platformId": "U2099Z2", + "id": "41c81ee8-00f8-42af-9a2a-96be7fc39526" + }, + { + "routeId": "L350", + "platformId": "U2099Z2", + "id": "d96f264c-2953-443c-ac1d-8e17463fd7c1" + }, + { + "routeId": "L11", + "platformId": "U209Z1", + "id": "d430d4c3-01e2-42f2-a1cc-499bdc2a46b1" + }, + { + "routeId": "L13", + "platformId": "U209Z1", + "id": "029ba7c7-9b10-4dad-a25c-cc0c6a660b41" + }, + { + "routeId": "L991", + "platformId": "U209Z101", + "id": "54aa59ed-1118-4efa-a2d0-511f791d547e" + }, + { + "routeId": "L991", + "platformId": "U209Z102", + "id": "fdadb212-b692-4f36-b392-daac14742365" + }, + { + "routeId": "L11", + "platformId": "U209Z2", + "id": "68e10ad4-3bb3-466f-84b5-ecfaa787d3cc" + }, + { + "routeId": "L13", + "platformId": "U209Z2", + "id": "644df7c5-4d4c-430d-9a5a-ae1e58788a7d" + }, + { + "routeId": "L101", + "platformId": "U209Z3", + "id": "86978a52-8ffa-4346-90d2-5697e95b1677" + }, + { + "routeId": "L101", + "platformId": "U209Z4", + "id": "e262e1d7-cfc2-4de1-9390-9ae865ffe2ec" + }, + { + "routeId": "L22", + "platformId": "U20Z1", + "id": "aba8f1d9-8d36-423c-ab06-2ff001238cbe" + }, + { + "routeId": "L23", + "platformId": "U20Z1", + "id": "9cb3978c-3b8b-41fa-8c0d-8522e8370d57" + }, + { + "routeId": "L22", + "platformId": "U20Z2", + "id": "d5a3e29c-605c-4fa5-9c56-efd38ebe66e6" + }, + { + "routeId": "L23", + "platformId": "U20Z2", + "id": "a77584c3-71b9-4c20-9170-2a9d511b83b3" + }, + { + "routeId": "L445", + "platformId": "U2100Z1", + "id": "1f4faf67-56c5-46fc-9775-08f9df01f457" + }, + { + "routeId": "L445", + "platformId": "U2100Z2", + "id": "caa0a32c-ab65-4d73-8aac-92c90c2a3c53" + }, + { + "routeId": "L341", + "platformId": "U2101Z1", + "id": "e4fba13c-bff4-486a-8b59-ae1338616270" + }, + { + "routeId": "L341", + "platformId": "U2101Z2", + "id": "fc62b9bd-4847-4a3a-b291-fcb62c6fd88c" + }, + { + "routeId": "L341", + "platformId": "U2102Z1", + "id": "5dd7a251-99f7-4ec1-885a-dfac56272b2b" + }, + { + "routeId": "L341", + "platformId": "U2102Z2", + "id": "a7dfac3f-1e64-4f8b-a685-2792e8b434df" + }, + { + "routeId": "L341", + "platformId": "U2103Z1", + "id": "a0c05c66-be58-4959-a12b-d0c490f67aa4" + }, + { + "routeId": "L341", + "platformId": "U2103Z2", + "id": "9709bbc3-a156-42af-95c6-e04f7b9ec10a" + }, + { + "routeId": "L341", + "platformId": "U2104Z1", + "id": "d0796790-f087-4533-990c-f4808dc71b10" + }, + { + "routeId": "L341", + "platformId": "U2104Z2", + "id": "5ddf6961-ba94-40c1-b7fa-6eabece12ee9" + }, + { + "routeId": "L341", + "platformId": "U2105Z1", + "id": "b8427f59-d166-4ba3-8a4c-da3c470998fc" + }, + { + "routeId": "L341", + "platformId": "U2105Z2", + "id": "e94bac15-2ca7-46ed-998c-2739bcca428c" + }, + { + "routeId": "L332", + "platformId": "U2106Z1", + "id": "791afde9-adb8-4626-a49d-fea4821ca7d4" + }, + { + "routeId": "L956", + "platformId": "U2106Z1", + "id": "a671b24f-76f0-43af-a1ff-6ff3d84b326b" + }, + { + "routeId": "L341", + "platformId": "U2106Z1", + "id": "dabceae7-0d73-4314-8d3f-3905e1ccb31e" + }, + { + "routeId": "L332", + "platformId": "U2106Z2", + "id": "b93a15a8-6346-4845-8717-284cf5ad93d6" + }, + { + "routeId": "L956", + "platformId": "U2106Z2", + "id": "3c1491c8-2f8a-4206-90c2-d40e7ed22786" + }, + { + "routeId": "L341", + "platformId": "U2106Z2", + "id": "5bc35d31-4ebe-45f8-a2ff-bfaa5559cc18" + }, + { + "routeId": "L332", + "platformId": "U2107Z1", + "id": "fd04d1c3-aa82-4f2d-819a-0c4340ba3901" + }, + { + "routeId": "L956", + "platformId": "U2107Z1", + "id": "05f8549b-790f-4c8b-ba9e-ab6e1f8d5671" + }, + { + "routeId": "L341", + "platformId": "U2107Z1", + "id": "bd7c26ad-c9bb-4494-8f1b-4fd80f05782b" + }, + { + "routeId": "L332", + "platformId": "U2107Z2", + "id": "b7ab99dd-f0a2-40e0-801e-0e7dfb91983d" + }, + { + "routeId": "L956", + "platformId": "U2107Z2", + "id": "c31c7a3a-ef1c-4792-84c5-e219b2fc04d7" + }, + { + "routeId": "L341", + "platformId": "U2107Z2", + "id": "14366d32-b075-4a59-afa3-be2f8a60eae2" + }, + { + "routeId": "L332", + "platformId": "U2108Z1", + "id": "b6822d07-d145-47eb-852b-562666f2aaa9" + }, + { + "routeId": "L956", + "platformId": "U2108Z1", + "id": "01c7acbd-aff2-40a4-abea-fd2ae7cd87c5" + }, + { + "routeId": "L444", + "platformId": "U2108Z1", + "id": "aec7ca04-fd28-4e71-9813-3a06aed19461" + }, + { + "routeId": "L341", + "platformId": "U2108Z1", + "id": "cc3f5630-f386-4e1b-a19a-7d71ff91e038" + }, + { + "routeId": "L332", + "platformId": "U2108Z2", + "id": "aa7fe350-8084-447e-a2bf-4ebaf06abede" + }, + { + "routeId": "L956", + "platformId": "U2108Z2", + "id": "4a4f353b-d4ea-42fd-bdc2-5ab048553c47" + }, + { + "routeId": "L444", + "platformId": "U2108Z2", + "id": "e41ca801-7e99-4231-862f-9eeb219c5cdc" + }, + { + "routeId": "L341", + "platformId": "U2108Z2", + "id": "98620189-3f66-492e-93ed-6336ecbc2933" + }, + { + "routeId": "L332", + "platformId": "U2109Z1", + "id": "26cc2958-770b-449a-bf13-c029afc19c31" + }, + { + "routeId": "L956", + "platformId": "U2109Z1", + "id": "89461dfd-4c99-4a42-974c-4c0ccb5b7eb1" + }, + { + "routeId": "L444", + "platformId": "U2109Z1", + "id": "9742f086-7866-47eb-a7f9-1b1379daca78" + }, + { + "routeId": "L341", + "platformId": "U2109Z1", + "id": "5b911a98-7064-45fd-9e0d-d1d7257d8651" + }, + { + "routeId": "L752", + "platformId": "U2109Z1", + "id": "a4dc259c-d72b-4fcf-a100-7797393be397" + }, + { + "routeId": "L332", + "platformId": "U2109Z2", + "id": "33044e97-d2ee-464a-b11e-8d5ddba6b4ab" + }, + { + "routeId": "L956", + "platformId": "U2109Z2", + "id": "259682db-4444-41f3-a130-e447f613b0eb" + }, + { + "routeId": "L445", + "platformId": "U2109Z2", + "id": "3e920b7a-bbed-4787-b2d6-d4cbe5864a57" + }, + { + "routeId": "L444", + "platformId": "U2109Z2", + "id": "a26c220f-2034-48e7-88f7-b3e3270d865c" + }, + { + "routeId": "L341", + "platformId": "U2109Z2", + "id": "d29f1177-bfa0-4438-96bc-7b700a90c5ba" + }, + { + "routeId": "L445", + "platformId": "U2109Z3", + "id": "d137db92-9560-4f73-82aa-f66b4c4e783f" + }, + { + "routeId": "L170", + "platformId": "U210Z1", + "id": "4be8879d-c105-4712-83b4-fb3961b58da0" + }, + { + "routeId": "L136", + "platformId": "U210Z1", + "id": "da8d8942-ae51-4efb-a411-3c541da41aec" + }, + { + "routeId": "L213", + "platformId": "U210Z1", + "id": "6fa456fd-cbf2-44ba-a201-e9a06f2de42f" + }, + { + "routeId": "L905", + "platformId": "U210Z1", + "id": "15c8f2cc-f6ad-4450-ba81-dabf1912f757" + }, + { + "routeId": "L170", + "platformId": "U210Z2", + "id": "aa35f666-0f0f-4085-a2be-9ce980bc76f3" + }, + { + "routeId": "L136", + "platformId": "U210Z2", + "id": "dcb6f5b4-07bd-47c2-add0-95defa8d87be" + }, + { + "routeId": "L213", + "platformId": "U210Z2", + "id": "9390ca88-5af0-4ed3-ad3f-e2314531885a" + }, + { + "routeId": "L905", + "platformId": "U210Z2", + "id": "c1bec276-e15b-47fa-b9d3-6b5c8fc0b21a" + }, + { + "routeId": "L340", + "platformId": "U2110Z1", + "id": "b4c0b399-ac4f-4681-a0ad-780238b6be04" + }, + { + "routeId": "L340", + "platformId": "U2110Z2", + "id": "255174ea-d026-4ef3-8a29-723b765398c2" + }, + { + "routeId": "L685", + "platformId": "U2112Z1", + "id": "ebcc34a9-49b1-41c8-8ae5-c3ca42258592" + }, + { + "routeId": "L685", + "platformId": "U2112Z2", + "id": "4c7f8194-d70c-4e78-a2b5-25d0bb9d4002" + }, + { + "routeId": "L365", + "platformId": "U2113Z1", + "id": "92e842cd-1cab-487e-a813-91ad6bd441fc" + }, + { + "routeId": "L386", + "platformId": "U2113Z1", + "id": "7dfd1be0-41d1-434f-9b09-a7cbde617e02" + }, + { + "routeId": "L365", + "platformId": "U2113Z2", + "id": "7a9da20d-ffd9-43f5-af8f-8a6e48683360" + }, + { + "routeId": "L386", + "platformId": "U2113Z2", + "id": "3ddc06e7-444a-40b6-9bd4-51c6e12c5e79" + }, + { + "routeId": "L365", + "platformId": "U2114Z1", + "id": "d2134310-a58c-4038-aed7-c2d2dacbdb49" + }, + { + "routeId": "L386", + "platformId": "U2114Z1", + "id": "16870420-208f-42bf-b3bd-07dd3e858c3c" + }, + { + "routeId": "L365", + "platformId": "U2114Z2", + "id": "6af2949b-f14c-433d-9514-c0319e0c5444" + }, + { + "routeId": "L386", + "platformId": "U2114Z2", + "id": "f6afd56a-43fb-454d-b1e3-82e5b3d890f0" + }, + { + "routeId": "L306", + "platformId": "U2115Z1", + "id": "fd8f3c05-9578-4f03-aa25-1785b1fb42cc" + }, + { + "routeId": "L957", + "platformId": "U2115Z1", + "id": "a123895b-e58c-4fb3-bdbb-2b5798952a01" + }, + { + "routeId": "L306", + "platformId": "U2115Z2", + "id": "0ab80075-fd0b-4a47-be0f-388b26333873" + }, + { + "routeId": "L957", + "platformId": "U2115Z2", + "id": "c03182c2-be10-4c27-9575-aac96875bad1" + }, + { + "routeId": "L1365", + "platformId": "U2115Z301", + "id": "7ad27bf9-28a2-48a0-83eb-8dcf4305a027" + }, + { + "routeId": "L347", + "platformId": "U2116Z3", + "id": "aa946c36-d9f0-48eb-82c4-a63c0b8cf476" + }, + { + "routeId": "L1224", + "platformId": "U2116Z301", + "id": "317c2e21-9260-402c-b275-aaf1ed73e760" + }, + { + "routeId": "L1245", + "platformId": "U2116Z301", + "id": "3b133ce4-8ba2-44b3-9673-9e22768b6f23" + }, + { + "routeId": "L1305", + "platformId": "U2116Z301", + "id": "ecc8dec6-e696-426d-95e8-f5af874e8fdc" + }, + { + "routeId": "L1354", + "platformId": "U2116Z301", + "id": "139861ce-ccb2-45c6-b2d8-c22c387806bc" + }, + { + "routeId": "L1365", + "platformId": "U2116Z301", + "id": "9a831f2d-c717-41e4-9714-ead772d2fd8d" + }, + { + "routeId": "L347", + "platformId": "U2116Z4", + "id": "261824b0-48eb-489b-a813-0d5efd8067d2" + }, + { + "routeId": "L2254", + "platformId": "U2116Z401", + "id": "3fb47a5c-bd0f-4955-84fc-c4aaa3621a4c" + }, + { + "routeId": "L306", + "platformId": "U2117Z1", + "id": "6d459321-482d-4556-91c9-726239ee37fc" + }, + { + "routeId": "L365", + "platformId": "U2117Z1", + "id": "2412ed05-65d5-4f19-ab90-e93fb8ab669b" + }, + { + "routeId": "L386", + "platformId": "U2117Z1", + "id": "f2c5ec1f-acc3-40df-9818-8186b8c1a795" + }, + { + "routeId": "L306", + "platformId": "U2117Z2", + "id": "acbb06a1-55ae-4d8a-95a5-ddad9827716f" + }, + { + "routeId": "L365", + "platformId": "U2117Z2", + "id": "8322ae81-fc79-4f57-afe5-f3a5c4076f24" + }, + { + "routeId": "L386", + "platformId": "U2117Z2", + "id": "273f4fd9-2740-4439-9f81-80263ffbac7e" + }, + { + "routeId": "L306", + "platformId": "U2118Z2", + "id": "b02a5547-8e25-4aba-ab80-a364eeac7b67" + }, + { + "routeId": "L1224", + "platformId": "U2118Z301", + "id": "0e73f4e8-9740-4116-b591-286afd512361" + }, + { + "routeId": "L1245", + "platformId": "U2118Z301", + "id": "34bc5560-ad04-4e4f-abc7-d40f9c91ef1c" + }, + { + "routeId": "L1305", + "platformId": "U2118Z301", + "id": "bb75aaba-88d2-442f-a2ba-bfe192e7bcae" + }, + { + "routeId": "L1354", + "platformId": "U2118Z303", + "id": "d87c6514-337b-465b-bd4e-058b28c4b9b4" + }, + { + "routeId": "L434", + "platformId": "U2119Z1", + "id": "f3591428-3aa0-4473-b212-c620b0aa3cd3" + }, + { + "routeId": "L434", + "platformId": "U2119Z2", + "id": "ed5ac8af-db89-4b42-acc0-41effd2039ce" + }, + { + "routeId": "L246", + "platformId": "U211Z1", + "id": "bf2859cf-8216-425b-b028-4b12742bdb40" + }, + { + "routeId": "L917", + "platformId": "U211Z1", + "id": "f06f49c3-be76-480d-9b91-44403bf76adb" + }, + { + "routeId": "L306", + "platformId": "U2120Z2", + "id": "4ce11ce1-2f7f-4d30-845d-9f18c1e386eb" + }, + { + "routeId": "L429", + "platformId": "U2120Z2", + "id": "d181a33b-e196-4738-a26b-93d9f90159ea" + }, + { + "routeId": "L432", + "platformId": "U2121Z1", + "id": "36e16360-4294-46c1-9608-9c290b280949" + }, + { + "routeId": "L432", + "platformId": "U2121Z2", + "id": "dd60fc7e-3860-4472-b58f-42d20cef3dce" + }, + { + "routeId": "L320", + "platformId": "U2122Z1", + "id": "378ca51f-44c6-42df-8783-36e1b3e84c01" + }, + { + "routeId": "L996", + "platformId": "U2122Z1", + "id": "2c1a87ad-d348-445f-87d0-93ca7c3ed0af" + }, + { + "routeId": "L320", + "platformId": "U2122Z2", + "id": "1ce46ab6-919f-4173-888f-85e90feedc6c" + }, + { + "routeId": "L996", + "platformId": "U2122Z2", + "id": "a9dbb26c-af0b-4c5a-a18a-64db1aa79e43" + }, + { + "routeId": "L305", + "platformId": "U2123Z1", + "id": "443bbb2a-8ea1-4c23-9827-ad08b28a85d6" + }, + { + "routeId": "L415", + "platformId": "U2123Z1", + "id": "1c389b98-294d-406c-a68d-fba3e8459b33" + }, + { + "routeId": "L580", + "platformId": "U2123Z1", + "id": "0878d21b-fdf8-4093-98c0-1fa2e87eb87c" + }, + { + "routeId": "L305", + "platformId": "U2123Z2", + "id": "c2215fbb-8fad-42ef-9432-64923ec205a5" + }, + { + "routeId": "L415", + "platformId": "U2123Z2", + "id": "98d2fd3d-ca47-4311-98bc-edd4c5a019de" + }, + { + "routeId": "L580", + "platformId": "U2123Z2", + "id": "eb8628d2-dccf-483c-827b-0379902743ed" + }, + { + "routeId": "L429", + "platformId": "U2124Z1", + "id": "170c1e45-84d0-4760-b763-157659519c63" + }, + { + "routeId": "L429", + "platformId": "U2124Z2", + "id": "badc8dd0-4781-4fdf-b725-2404f9805cd5" + }, + { + "routeId": "L2254", + "platformId": "U2124Z401", + "id": "30fd0aaf-7178-4778-92f5-72ff197bc0ab" + }, + { + "routeId": "L316", + "platformId": "U2125Z1", + "id": "2978d4ce-aa22-4e60-8de2-3bdfe6ec2d35" + }, + { + "routeId": "L954", + "platformId": "U2125Z1", + "id": "8900f3a5-ec01-434b-96ac-d3f9ec71b0e5" + }, + { + "routeId": "L332", + "platformId": "U2127Z1", + "id": "c354e56a-ab25-4534-b5a3-3708ce55e5e8" + }, + { + "routeId": "L956", + "platformId": "U2127Z1", + "id": "2a00f2e0-cad7-4980-a31e-c05a778c5b21" + }, + { + "routeId": "L332", + "platformId": "U2127Z2", + "id": "ca00592a-3d46-4095-8ff8-5f358d1d7362" + }, + { + "routeId": "L956", + "platformId": "U2127Z2", + "id": "d6474368-86c5-44fb-ab62-5326cc2d8008" + }, + { + "routeId": "L332", + "platformId": "U2128Z1", + "id": "778a1d2c-1c39-45e0-b132-cde7e52de150" + }, + { + "routeId": "L956", + "platformId": "U2128Z1", + "id": "7e36f018-2ceb-48ae-8860-7e6db4df23fa" + }, + { + "routeId": "L332", + "platformId": "U2128Z2", + "id": "e4744111-b3fa-4abd-bca1-3bf00be6c00b" + }, + { + "routeId": "L956", + "platformId": "U2128Z2", + "id": "eecaa6da-ecaf-4d92-918b-d211d15b3b1c" + }, + { + "routeId": "L332", + "platformId": "U2129Z1", + "id": "41bcf393-a921-4ba0-944c-0ee92aef256d" + }, + { + "routeId": "L956", + "platformId": "U2129Z1", + "id": "5dd99761-05e7-40dd-aadc-b99106e06300" + }, + { + "routeId": "L332", + "platformId": "U2129Z2", + "id": "6d86431b-9f45-453a-bab1-0d78b1903413" + }, + { + "routeId": "L956", + "platformId": "U2129Z2", + "id": "9cc6109c-9b95-42f5-971a-2fe03a03306a" + }, + { + "routeId": "L201", + "platformId": "U212Z1", + "id": "74491f2a-a632-4170-a309-98954d8efcd2" + }, + { + "routeId": "L953", + "platformId": "U212Z1", + "id": "c05c63c6-5dec-4712-bc28-5243ff336c2b" + }, + { + "routeId": "L332", + "platformId": "U2130Z1", + "id": "005154bf-638e-4de7-b391-ccc95fc2efd0" + }, + { + "routeId": "L956", + "platformId": "U2130Z1", + "id": "272256e7-9ca0-4547-9c60-8499bac69607" + }, + { + "routeId": "L332", + "platformId": "U2130Z2", + "id": "38699641-3988-442f-81bf-744edd0f27bd" + }, + { + "routeId": "L956", + "platformId": "U2130Z2", + "id": "6d8032a7-11b8-4b6f-8166-6b4222006bca" + }, + { + "routeId": "L429", + "platformId": "U2132Z1", + "id": "83575e56-dfc6-4c41-bb75-70dca9e8a22b" + }, + { + "routeId": "L429", + "platformId": "U2132Z2", + "id": "b4b5c7dd-5c45-4896-a879-4d4fae78a160" + }, + { + "routeId": "L306", + "platformId": "U2133Z1", + "id": "ed85d240-b4ea-4a05-887c-cc12a8d8b082" + }, + { + "routeId": "L306", + "platformId": "U2133Z2", + "id": "355e3845-9d12-4a66-8481-c9420ba10a87" + }, + { + "routeId": "L322", + "platformId": "U2134Z1", + "id": "f880bdba-5123-4979-8520-2aa27515953d" + }, + { + "routeId": "L342", + "platformId": "U2134Z1", + "id": "013466e5-ae65-4c62-9290-e97f24dca79f" + }, + { + "routeId": "L429", + "platformId": "U2134Z1", + "id": "6109e78d-317e-4e2b-985e-4fb7e60be127" + }, + { + "routeId": "L323", + "platformId": "U2134Z1", + "id": "5bcd343a-2b27-42a2-ad4d-e6a3a3053d37" + }, + { + "routeId": "L322", + "platformId": "U2134Z2", + "id": "f98c090e-ef9b-4596-bc5f-65422af3079a" + }, + { + "routeId": "L342", + "platformId": "U2134Z2", + "id": "4a7d13c7-62c7-4cab-9438-3801b99b9d79" + }, + { + "routeId": "L429", + "platformId": "U2134Z2", + "id": "301ae988-5246-47d5-8f23-1a0c7c1cd971" + }, + { + "routeId": "L323", + "platformId": "U2134Z2", + "id": "81251dad-0226-4f0a-b176-f2ee32903f91" + }, + { + "routeId": "L2254", + "platformId": "U2134Z401", + "id": "d69a70a3-8cb4-4bf4-bb3b-6df0b10a490d" + }, + { + "routeId": "L2254", + "platformId": "U2134Z402", + "id": "66e60547-a14f-4fbe-8cb3-33c628fde02c" + }, + { + "routeId": "L322", + "platformId": "U2135Z1", + "id": "7821e890-1966-433f-a965-23893cbd8aca" + }, + { + "routeId": "L342", + "platformId": "U2135Z1", + "id": "9f994529-ad41-4843-9f15-2c5328b19b39" + }, + { + "routeId": "L323", + "platformId": "U2135Z1", + "id": "41459895-9a69-412a-b313-9892325e81ed" + }, + { + "routeId": "L322", + "platformId": "U2135Z2", + "id": "13e2fda9-3ee3-4c46-b7c2-4d8a9ad32d87" + }, + { + "routeId": "L342", + "platformId": "U2135Z2", + "id": "11ed797e-58cf-4a92-a5a3-08724eab46cd" + }, + { + "routeId": "L323", + "platformId": "U2135Z2", + "id": "17e8b3f6-b647-42cd-8bfa-67cd641f3b85" + }, + { + "routeId": "L364", + "platformId": "U2137Z1", + "id": "212f8924-64a1-4ec9-8d76-d2c4f61da70d" + }, + { + "routeId": "L382", + "platformId": "U2137Z1", + "id": "70b83ac3-3adb-47e6-b844-7ea53fb8a3c5" + }, + { + "routeId": "L383", + "platformId": "U2137Z1", + "id": "41710a54-f5d6-46cf-9c64-915160f01eb8" + }, + { + "routeId": "L364", + "platformId": "U2137Z2", + "id": "93a1e3b0-a3a8-409b-8148-09c06b60f1c3" + }, + { + "routeId": "L382", + "platformId": "U2137Z2", + "id": "5aa7d730-58e4-417b-a583-3c70caf06e30" + }, + { + "routeId": "L383", + "platformId": "U2137Z2", + "id": "d3425526-0c27-40ed-a414-2564677e7509" + }, + { + "routeId": "L337", + "platformId": "U2139Z1", + "id": "d20c5e10-c0c6-4223-a937-85e5b1d5b4da" + }, + { + "routeId": "L406", + "platformId": "U2139Z1", + "id": "94e61659-616e-47e3-9c71-49ff1c8bf987" + }, + { + "routeId": "L401", + "platformId": "U2139Z1", + "id": "536ee567-4a6b-40b6-8b7d-7789cc911356" + }, + { + "routeId": "L337", + "platformId": "U2139Z2", + "id": "0832db0d-2d06-4b3c-be9d-31bfe3c6b2e0" + }, + { + "routeId": "L406", + "platformId": "U2139Z2", + "id": "400156cd-88eb-4a0f-a533-070f9d81be9a" + }, + { + "routeId": "L401", + "platformId": "U2139Z2", + "id": "9e8672a4-e99c-44b6-989d-760e0bde0658" + }, + { + "routeId": "L131", + "platformId": "U213Z1", + "id": "184868d2-ba19-4f42-a7b1-6a299746fd4b" + }, + { + "routeId": "L907", + "platformId": "U213Z1", + "id": "7e0b46fe-152f-4818-8579-bfb7153ec741" + }, + { + "routeId": "L131", + "platformId": "U213Z2", + "id": "bdc4eecb-808d-4a03-be8b-2514f0a10ba8" + }, + { + "routeId": "L907", + "platformId": "U213Z2", + "id": "56941a97-a64b-4b86-a64c-05b052ce2a40" + }, + { + "routeId": "L312", + "platformId": "U2140Z1", + "id": "cc426c75-6cbd-42d5-9e34-f9f617e9be45" + }, + { + "routeId": "L385", + "platformId": "U2141Z1", + "id": "402b599a-3ebd-4529-9930-32df1ae78023" + }, + { + "routeId": "L435", + "platformId": "U2141Z1", + "id": "8e8e34b3-6e79-40f7-816b-37846a0795e9" + }, + { + "routeId": "L494", + "platformId": "U2141Z1", + "id": "2bfc1e7f-e26a-4e81-b10c-2efca59ca43c" + }, + { + "routeId": "L686", + "platformId": "U2141Z1", + "id": "476d2bfb-7099-4a58-84c3-d07ac7d4b1d9" + }, + { + "routeId": "L385", + "platformId": "U2141Z2", + "id": "344ffa3b-9fa8-4a43-92f2-8691f419aef4" + }, + { + "routeId": "L494", + "platformId": "U2141Z2", + "id": "bb4047ef-2e8f-47dd-be86-778249a76a1b" + }, + { + "routeId": "L686", + "platformId": "U2141Z2", + "id": "2f48a81f-d98a-40af-99b9-2d7158d1ee2f" + }, + { + "routeId": "L385", + "platformId": "U2142Z1", + "id": "f9ac7314-66b3-45a6-979d-2b916b330f6c" + }, + { + "routeId": "L494", + "platformId": "U2142Z1", + "id": "6812f200-39d5-414b-ae22-9bc4ae9c4911" + }, + { + "routeId": "L686", + "platformId": "U2142Z1", + "id": "67574da6-d7d5-4f43-9201-a954bbf87154" + }, + { + "routeId": "L435", + "platformId": "U2142Z11", + "id": "1ed2a34b-1e50-4ef2-9324-bdf59f3fb2c9" + }, + { + "routeId": "L385", + "platformId": "U2142Z2", + "id": "1b64562e-80ce-494e-8c70-2b701dfd2f95" + }, + { + "routeId": "L494", + "platformId": "U2142Z2", + "id": "881029e2-23d7-4bdc-b020-28d65a05b316" + }, + { + "routeId": "L686", + "platformId": "U2142Z2", + "id": "9c39ed65-31fc-444e-915b-19cadc88a22f" + }, + { + "routeId": "L1217", + "platformId": "U2142Z301", + "id": "a40dd1f7-d306-4a40-aa61-334b2388e36e" + }, + { + "routeId": "L1249", + "platformId": "U2142Z301", + "id": "c31bc864-b039-4aa2-9093-230437161913" + }, + { + "routeId": "L1309", + "platformId": "U2142Z301", + "id": "1460a8e4-e892-48a3-ac62-39c7f676867f" + }, + { + "routeId": "L625", + "platformId": "U2143Z1", + "id": "b9803a08-3e25-434d-91e7-0fa06ce9f3ad" + }, + { + "routeId": "L580", + "platformId": "U2143Z1", + "id": "35a6eb50-a982-4454-8f52-3537d953c726" + }, + { + "routeId": "L625", + "platformId": "U2143Z2", + "id": "cb8d0739-2f2d-4be6-9bc1-a6899ac24453" + }, + { + "routeId": "L580", + "platformId": "U2143Z2", + "id": "c352642d-c8ff-4149-bf1d-4d444498ddc9" + }, + { + "routeId": "L685", + "platformId": "U2144Z1", + "id": "23b8bfd7-c095-46a4-a68e-916648f74cf3" + }, + { + "routeId": "L685", + "platformId": "U2144Z2", + "id": "fd480971-5b0f-4b83-a175-68430f841c7a" + }, + { + "routeId": "L381", + "platformId": "U2145Z1", + "id": "8caee475-c1eb-4e18-ac4e-d69fc259c4d5" + }, + { + "routeId": "L381", + "platformId": "U2145Z2", + "id": "a475ced5-207e-4373-810a-2fedaf79d477" + }, + { + "routeId": "L422", + "platformId": "U2146Z1", + "id": "0284002e-d28a-4e3a-828d-ad2f4f8c8af9" + }, + { + "routeId": "L422", + "platformId": "U2146Z2", + "id": "137c9442-def2-41eb-80e2-76044ed6a218" + }, + { + "routeId": "L422", + "platformId": "U2148Z1", + "id": "792038a6-038e-4954-8bf7-b36a94d1e92a" + }, + { + "routeId": "L422", + "platformId": "U2148Z2", + "id": "ce9e6e13-27ce-428b-8737-b482778ca150" + }, + { + "routeId": "L381", + "platformId": "U2149Z1", + "id": "666f855a-5879-4eca-844d-84eee449b4f8" + }, + { + "routeId": "L381", + "platformId": "U2149Z2", + "id": "57a28735-b324-4db7-b8cd-3802eb681ded" + }, + { + "routeId": "L120", + "platformId": "U214Z1", + "id": "4b51cab4-401e-410e-b247-2e93f7ccf20b" + }, + { + "routeId": "L951", + "platformId": "U214Z1", + "id": "550f3029-8442-4e96-b4ea-91e48dcdf064" + }, + { + "routeId": "L120", + "platformId": "U214Z2", + "id": "18b4f736-8d1b-48da-8177-caecd2078dca" + }, + { + "routeId": "L951", + "platformId": "U214Z2", + "id": "df190e72-d942-4f53-91d1-a95ab7cd5c85" + }, + { + "routeId": "L381", + "platformId": "U2150Z1", + "id": "3a4a4790-fc95-4e2a-b3cf-2f8c86741049" + }, + { + "routeId": "L381", + "platformId": "U2150Z2", + "id": "836d975a-b060-4fd2-8d3a-dd43ad9893bb" + }, + { + "routeId": "L381", + "platformId": "U2151Z1", + "id": "1a65b2b7-30a9-4af1-a1ab-a23ee9cce9bd" + }, + { + "routeId": "L706", + "platformId": "U2151Z1", + "id": "127d0a2a-880e-43ba-a8ae-b88114569c2c" + }, + { + "routeId": "L381", + "platformId": "U2151Z2", + "id": "b0de609c-a539-4dca-84d7-9c2219564f0a" + }, + { + "routeId": "L706", + "platformId": "U2151Z3", + "id": "e642fe47-3724-4b03-998e-9bcc11dab6b1" + }, + { + "routeId": "L316", + "platformId": "U2152Z1", + "id": "7c23de87-06c7-4957-8926-bf32a08d5250" + }, + { + "routeId": "L316", + "platformId": "U2152Z2", + "id": "c2e96709-75df-46e2-b578-22f18449a95d" + }, + { + "routeId": "L381", + "platformId": "U2153Z1", + "id": "204e116b-4c45-4160-86f9-15ca5abee5e5" + }, + { + "routeId": "L706", + "platformId": "U2153Z1", + "id": "8b07ab96-7bc2-4eff-a3ab-d03762c02934" + }, + { + "routeId": "L381", + "platformId": "U2153Z2", + "id": "c7b119cd-5c09-4557-b2e1-51b740f96c6f" + }, + { + "routeId": "L706", + "platformId": "U2153Z2", + "id": "5029d489-f002-4e5c-8127-c466838a1733" + }, + { + "routeId": "L381", + "platformId": "U2154Z1", + "id": "188d03c9-9abe-41fe-aa21-2bdd758683fb" + }, + { + "routeId": "L706", + "platformId": "U2154Z1", + "id": "d6280799-0c18-4912-aed4-9151f849f275" + }, + { + "routeId": "L381", + "platformId": "U2154Z2", + "id": "debf3701-710b-4b70-a59a-2e545e589941" + }, + { + "routeId": "L706", + "platformId": "U2154Z2", + "id": "911aa569-d59f-47e8-bb5f-0d1a927a9010" + }, + { + "routeId": "L1318", + "platformId": "U2154Z301", + "id": "c547791e-ac23-42af-9f26-d9c71bae5ff7" + }, + { + "routeId": "L381", + "platformId": "U2155Z1", + "id": "067bf725-915f-44e3-a693-94b334413ffa" + }, + { + "routeId": "L706", + "platformId": "U2155Z1", + "id": "58a1a9a2-a94a-467a-9191-9497c1e2ea37" + }, + { + "routeId": "L381", + "platformId": "U2155Z2", + "id": "3243c09c-45dd-4ff4-9b3e-24d0a2d46305" + }, + { + "routeId": "L706", + "platformId": "U2155Z2", + "id": "8ca827b9-ee38-4719-be52-faf0fd27c6b9" + }, + { + "routeId": "L381", + "platformId": "U2156Z2", + "id": "41cdb0b8-0d0f-4192-9429-785877e4f57c" + }, + { + "routeId": "L681", + "platformId": "U2156Z2", + "id": "9748354c-70ce-4b51-a284-9c5d370e19d6" + }, + { + "routeId": "L770", + "platformId": "U2157Z1", + "id": "2c7ba0f2-8a5f-4071-b2e9-b4be0166f192" + }, + { + "routeId": "L387", + "platformId": "U2157Z2", + "id": "38411a16-6118-4299-bf1b-16577eddff5d" + }, + { + "routeId": "L787", + "platformId": "U2157Z2", + "id": "301bc61f-52af-4521-92e1-4a87c8cd38f3" + }, + { + "routeId": "L770", + "platformId": "U2157Z2", + "id": "6ceb23c5-e6e4-49ef-86e4-bfc346719f1e" + }, + { + "routeId": "L681", + "platformId": "U2157Z2", + "id": "0690dca9-9893-404f-a366-bae98257ca50" + }, + { + "routeId": "L487", + "platformId": "U2157Z2", + "id": "09d1d607-4cff-47d1-a600-ec9b222e2c42" + }, + { + "routeId": "L706", + "platformId": "U2157Z2", + "id": "e4b4cd9a-5659-4a13-8134-bec0737d6a7d" + }, + { + "routeId": "L337", + "platformId": "U2158Z1", + "id": "fa73b72b-2806-41af-ae01-69fcec7c15d0" + }, + { + "routeId": "L337", + "platformId": "U2158Z2", + "id": "f6e2ad40-2775-43a4-aa58-9bdec160c358" + }, + { + "routeId": "L387", + "platformId": "U2159Z1", + "id": "150824cd-3d3e-43cd-ad19-2d8ab2f1159a" + }, + { + "routeId": "L770", + "platformId": "U2159Z1", + "id": "26339d44-4abe-4670-9b1b-b23f868089d8" + }, + { + "routeId": "L387", + "platformId": "U2159Z2", + "id": "99cab58d-5937-4d3b-ab94-9358a76cb175" + }, + { + "routeId": "L770", + "platformId": "U2159Z2", + "id": "8b91823b-73ec-4818-be0c-366cd1ac2e65" + }, + { + "routeId": "L111", + "platformId": "U215Z1", + "id": "d7d73259-e883-4221-827e-97405527acd6" + }, + { + "routeId": "L908", + "platformId": "U215Z1", + "id": "219980f2-5b66-443e-8f1d-9872070e7241" + }, + { + "routeId": "L240", + "platformId": "U215Z1", + "id": "aeb8e0e8-c0cc-461f-acdb-c40b45b1f3ff" + }, + { + "routeId": "L329", + "platformId": "U215Z1", + "id": "e13e4207-f4d8-4213-8838-e1404fcdd934" + }, + { + "routeId": "L111", + "platformId": "U215Z2", + "id": "2904f313-8fd9-4e52-9193-8cc97046a49b" + }, + { + "routeId": "L908", + "platformId": "U215Z2", + "id": "df27c4cb-324b-42f2-bcd1-d947c7417fd2" + }, + { + "routeId": "L240", + "platformId": "U215Z2", + "id": "fecaa152-3993-4358-93f9-90d37dca49e7" + }, + { + "routeId": "L329", + "platformId": "U215Z2", + "id": "79a3b353-ec49-43ef-8d87-05e6bb66c8fa" + }, + { + "routeId": "L387", + "platformId": "U2160Z1", + "id": "b85ba069-9ae9-457a-9d8c-2046afda6d40" + }, + { + "routeId": "L387", + "platformId": "U2160Z2", + "id": "56805d4a-a152-4ef0-8312-c2445a384ff4" + }, + { + "routeId": "L387", + "platformId": "U2161Z1", + "id": "54ee9055-592e-4bd3-9069-c855d62e2b26" + }, + { + "routeId": "L421", + "platformId": "U2161Z1", + "id": "f0a27e2f-db29-44f8-afd1-05ab2c12dafd" + }, + { + "routeId": "L387", + "platformId": "U2161Z2", + "id": "4e8353f9-d2e4-4fad-a09c-5ebc9630bb17" + }, + { + "routeId": "L421", + "platformId": "U2161Z2", + "id": "337525c5-05a4-4e53-bc2f-6219face2b8e" + }, + { + "routeId": "L387", + "platformId": "U2162Z1", + "id": "bc25a740-082a-41b8-8e29-22ea4b1aa8d4" + }, + { + "routeId": "L770", + "platformId": "U2162Z1", + "id": "82582911-033b-4df0-b069-83774f927dec" + }, + { + "routeId": "L387", + "platformId": "U2162Z2", + "id": "17bfff08-bd7c-4bf3-83c5-4ef84238e5da" + }, + { + "routeId": "L770", + "platformId": "U2162Z2", + "id": "91704298-23ce-4e70-aae3-2795d5073e2f" + }, + { + "routeId": "L387", + "platformId": "U2163Z1", + "id": "3421b4d2-a13e-48a1-b423-38c6b72de9b9" + }, + { + "routeId": "L387", + "platformId": "U2163Z2", + "id": "a897e44c-779b-481a-b234-699fecce2783" + }, + { + "routeId": "L387", + "platformId": "U2164Z1", + "id": "fdea644f-ca1f-49b9-8b57-c97ae386034a" + }, + { + "routeId": "L387", + "platformId": "U2164Z2", + "id": "8a4eda23-b613-4ab7-9b1f-21f262b7ca3e" + }, + { + "routeId": "L387", + "platformId": "U2165Z1", + "id": "b072b278-111b-4bee-9c7d-377542206ceb" + }, + { + "routeId": "L387", + "platformId": "U2165Z2", + "id": "0a85244f-c9ad-4457-80b3-b7583355ed09" + }, + { + "routeId": "L381", + "platformId": "U2166Z1", + "id": "a0d32b7b-ae5e-4d13-8e2a-53689036c01c" + }, + { + "routeId": "L381", + "platformId": "U2166Z2", + "id": "ecf83a11-9517-4694-b18a-49bf17183d6b" + }, + { + "routeId": "L489", + "platformId": "U2167Z1", + "id": "ecd0dc3d-3dc7-4e16-8488-6a2ec4251ab6" + }, + { + "routeId": "L489", + "platformId": "U2167Z2", + "id": "ce461fa0-4d3c-44a4-880c-30993616d2f8" + }, + { + "routeId": "L490", + "platformId": "U2168Z1", + "id": "f2d44d82-044d-4871-9843-531364dafb8e" + }, + { + "routeId": "L490", + "platformId": "U2168Z2", + "id": "02b896c9-bb09-49a8-837d-03332c24a9f5" + }, + { + "routeId": "L380", + "platformId": "U2169Z1", + "id": "d57370da-0f12-4385-9cd1-26b2de6b6470" + }, + { + "routeId": "L380", + "platformId": "U2169Z2", + "id": "2bb48ae2-9a65-4a34-a92f-b4f61839a0d2" + }, + { + "routeId": "L120", + "platformId": "U216Z2", + "id": "4f8618a6-1c7a-4be2-80be-94b47fb06433" + }, + { + "routeId": "L130", + "platformId": "U216Z2", + "id": "2fb59903-7b64-4a89-a8b3-192c1096e622" + }, + { + "routeId": "L951", + "platformId": "U216Z2", + "id": "d11929d0-36c1-42e5-8eee-e57bbb9e5ea7" + }, + { + "routeId": "L425", + "platformId": "U2171Z1", + "id": "984fcd40-0687-4ea2-babe-7e6c66b64977" + }, + { + "routeId": "L425", + "platformId": "U2171Z2", + "id": "a8bb2b20-c2bd-4919-8562-0786fa3a2f8d" + }, + { + "routeId": "L425", + "platformId": "U2172Z3", + "id": "81873c6d-3ebc-4f87-9a35-37ffe77c1e20" + }, + { + "routeId": "L425", + "platformId": "U2173Z1", + "id": "0b1086f3-8bae-4427-854c-868c314c3628" + }, + { + "routeId": "L425", + "platformId": "U2173Z2", + "id": "f357793e-3410-4d90-86a6-9af7d3a8b7ce" + }, + { + "routeId": "L387", + "platformId": "U2174Z1", + "id": "c5c06d26-92f5-43aa-a79d-5defb9cf4b3f" + }, + { + "routeId": "L770", + "platformId": "U2174Z1", + "id": "bac37c83-8cb8-442c-ab30-61298a9d9f8f" + }, + { + "routeId": "L387", + "platformId": "U2174Z2", + "id": "b2bf583b-446f-44bf-9436-d6c5d64b3452" + }, + { + "routeId": "L770", + "platformId": "U2174Z2", + "id": "1136cd5b-42b2-4cca-a445-63d09736fceb" + }, + { + "routeId": "L387", + "platformId": "U2175Z1", + "id": "215ec18d-028d-4d84-98d3-f786fec9afab" + }, + { + "routeId": "L770", + "platformId": "U2175Z1", + "id": "6450f973-5529-4815-b6ea-5d5da7587368" + }, + { + "routeId": "L387", + "platformId": "U2175Z2", + "id": "6b50072f-a3fa-4a76-bbfa-393fc7361506" + }, + { + "routeId": "L770", + "platformId": "U2175Z2", + "id": "7b6d2952-b335-49c6-a651-ff95e1d25bdb" + }, + { + "routeId": "L387", + "platformId": "U2176Z1", + "id": "64b474a8-aab9-4aaf-a07a-2d329e7bcb3b" + }, + { + "routeId": "L770", + "platformId": "U2176Z1", + "id": "acd17bd2-d15d-435d-85ea-cedb52a01117" + }, + { + "routeId": "L387", + "platformId": "U2176Z2", + "id": "7bbd2530-60ca-417f-a88d-c374d92daeba" + }, + { + "routeId": "L770", + "platformId": "U2176Z2", + "id": "e4f8a897-db11-47d3-8a8b-bcf1d9ef6de5" + }, + { + "routeId": "L387", + "platformId": "U2177Z1", + "id": "5565d4b1-8a9c-4332-abb5-1fdf0b3fae8e" + }, + { + "routeId": "L770", + "platformId": "U2177Z1", + "id": "e01ed12c-573b-44bc-bd9e-fd9bf2de6f4c" + }, + { + "routeId": "L387", + "platformId": "U2177Z2", + "id": "cfbf96c7-a8d8-46f4-a26e-edfa7b0e95a3" + }, + { + "routeId": "L770", + "platformId": "U2177Z2", + "id": "4fbdc475-6e3d-4129-a6c1-e84c9d978460" + }, + { + "routeId": "L381", + "platformId": "U2178Z1", + "id": "9b04df7a-7e02-4bc7-8640-c0e55f8a5bc4" + }, + { + "routeId": "L487", + "platformId": "U2178Z1", + "id": "7a079de5-dc02-491f-8057-46acdaaaed79" + }, + { + "routeId": "L381", + "platformId": "U2178Z2", + "id": "2026f2ae-692d-48f2-89e1-11089f1a0fcc" + }, + { + "routeId": "L487", + "platformId": "U2178Z2", + "id": "e5eaaded-bf3f-403c-8d5d-7589a419b0db" + }, + { + "routeId": "L706", + "platformId": "U2178Z3", + "id": "c33c7e33-08be-4ce6-84a2-873d4136859d" + }, + { + "routeId": "L706", + "platformId": "U2178Z4", + "id": "093fcd64-89a3-4706-af75-a4617ac0a88b" + }, + { + "routeId": "L381", + "platformId": "U2179Z1", + "id": "eab62b27-7ebe-4bca-86b2-4ac757bf5ba2" + }, + { + "routeId": "L381", + "platformId": "U2179Z2", + "id": "c5512fe7-d34f-4961-94fb-49c5ef487311" + }, + { + "routeId": "L203", + "platformId": "U217Z1", + "id": "28d531b1-7df0-4c45-9cb8-b56f17595726" + }, + { + "routeId": "L203", + "platformId": "U217Z2", + "id": "eabcb2fc-bb42-46ad-9417-e7711f6a6b36" + }, + { + "routeId": "L381", + "platformId": "U2180Z1", + "id": "fe619e0f-221e-4489-a039-c16c045c2fa1" + }, + { + "routeId": "L487", + "platformId": "U2180Z1", + "id": "355d8332-2685-4193-90f0-66d2054ea88f" + }, + { + "routeId": "L381", + "platformId": "U2180Z2", + "id": "24c2c476-2d42-4472-b7c9-bf4b370fd123" + }, + { + "routeId": "L487", + "platformId": "U2180Z2", + "id": "385909a1-24f6-4f15-95bd-13007cfd95fe" + }, + { + "routeId": "L337", + "platformId": "U2181Z1", + "id": "e7bd9431-01a6-4d31-a578-47aebd0fa99a" + }, + { + "routeId": "L337", + "platformId": "U2181Z2", + "id": "1fb980a8-adcc-4fb6-beaf-11ef334d40a8" + }, + { + "routeId": "L478", + "platformId": "U2189Z1", + "id": "a3f50891-3fa8-44e6-9891-196cea24a022" + }, + { + "routeId": "L478", + "platformId": "U2189Z2", + "id": "230903f3-d1df-488d-9e08-54ae1ee10415" + }, + { + "routeId": "L100", + "platformId": "U218Z1", + "id": "645021b8-9ac8-4216-9997-98e4657ead59" + }, + { + "routeId": "L191", + "platformId": "U218Z1", + "id": "8a2c53e5-7497-47e0-8b7a-566e234473d5" + }, + { + "routeId": "L910", + "platformId": "U218Z1", + "id": "44e6763c-88db-45a2-9d1c-0f5a58f60979" + }, + { + "routeId": "L59", + "platformId": "U218Z1", + "id": "327f9bda-a494-4dd7-9fb9-c91f077eb660" + }, + { + "routeId": "L100", + "platformId": "U218Z2", + "id": "4b8d0b0e-464c-4dbf-938d-e7cf4cf832c7" + }, + { + "routeId": "L191", + "platformId": "U218Z2", + "id": "165454fd-f878-4c23-ad55-77d306f46c41" + }, + { + "routeId": "L910", + "platformId": "U218Z2", + "id": "55044427-6404-48b5-91b2-a576ee7995f5" + }, + { + "routeId": "L322", + "platformId": "U218Z2", + "id": "2ee69aff-c0c3-40c9-8621-ed2a17e7442b" + }, + { + "routeId": "L324", + "platformId": "U218Z2", + "id": "94073479-a5bc-4892-b7fd-ce073a98dc63" + }, + { + "routeId": "L342", + "platformId": "U218Z2", + "id": "07b03388-502e-4128-b41d-069d660120ad" + }, + { + "routeId": "L388", + "platformId": "U218Z2", + "id": "5bce10bc-fda1-4080-8d20-0e6ae9a3fe96" + }, + { + "routeId": "L429", + "platformId": "U218Z2", + "id": "ebd87bf0-85e4-4799-addc-0f83b8ed1704" + }, + { + "routeId": "L323", + "platformId": "U218Z2", + "id": "d54d6467-fc61-45d6-8f65-fc040d00f0b2" + }, + { + "routeId": "L59", + "platformId": "U218Z2", + "id": "66c3fef0-179c-41f5-924b-2828d45cba44" + }, + { + "routeId": "L322", + "platformId": "U218Z3", + "id": "ab2b7f59-ea79-4219-9734-1cabccb10403" + }, + { + "routeId": "L324", + "platformId": "U218Z3", + "id": "bd277528-1af1-4ca6-abeb-29bdd06ee7a0" + }, + { + "routeId": "L342", + "platformId": "U218Z3", + "id": "5c19145c-8829-4a4f-81d6-7dbbdc91dd39" + }, + { + "routeId": "L388", + "platformId": "U218Z3", + "id": "7b627d3c-f157-470a-a10f-63a3acb2f741" + }, + { + "routeId": "L429", + "platformId": "U218Z3", + "id": "92333663-c59b-443d-b13b-f6353ca36e67" + }, + { + "routeId": "L323", + "platformId": "U218Z3", + "id": "385a918d-66fe-4531-ab24-684a89bd7476" + }, + { + "routeId": "L375", + "platformId": "U2190Z1", + "id": "221e0c4c-a371-477c-9450-6a923e288fd7" + }, + { + "routeId": "L953", + "platformId": "U2190Z1", + "id": "41966176-f37a-4a5d-b629-a29510bd0d5b" + }, + { + "routeId": "L375", + "platformId": "U2190Z2", + "id": "37904ee9-f5e7-4bff-8706-3985add191b6" + }, + { + "routeId": "L953", + "platformId": "U2190Z2", + "id": "a6ef4a4e-9367-4f02-94f8-466144f4a3cd" + }, + { + "routeId": "L317", + "platformId": "U2191Z1", + "id": "afd1ef4d-5c6f-49f2-8f93-72056091d58e" + }, + { + "routeId": "L420", + "platformId": "U2191Z1", + "id": "5669e8bb-b3db-4574-9d52-b36508f7700d" + }, + { + "routeId": "L392", + "platformId": "U2191Z1", + "id": "fbf775cb-4508-48c7-8e75-33aef28e8417" + }, + { + "routeId": "L317", + "platformId": "U2191Z2", + "id": "1c0cd7e5-6dec-4eea-aa65-76083c912354" + }, + { + "routeId": "L392", + "platformId": "U2191Z2", + "id": "9bea344d-5b44-4024-b401-fded07a79ff6" + }, + { + "routeId": "L420", + "platformId": "U2191Z2", + "id": "470d74f7-2a2b-41ac-b54d-8a508266eea0" + }, + { + "routeId": "L376", + "platformId": "U2193Z1", + "id": "3413eeb6-22ae-48c6-833d-2ec5f6bf8bc1" + }, + { + "routeId": "L376", + "platformId": "U2193Z2", + "id": "f26e6541-7464-4549-a224-48ddf49a739d" + }, + { + "routeId": "L353", + "platformId": "U2194Z1", + "id": "38cf54f5-c190-4a20-9da7-d836f719409b" + }, + { + "routeId": "L376", + "platformId": "U2194Z1", + "id": "d7052b00-6348-4735-959e-0e0b3da51234" + }, + { + "routeId": "L353", + "platformId": "U2194Z2", + "id": "e2fbaac5-2217-4c99-916b-c2ccf0446e7f" + }, + { + "routeId": "L376", + "platformId": "U2194Z2", + "id": "90173525-30c0-47fc-ae41-a454691c54f2" + }, + { + "routeId": "L376", + "platformId": "U2195Z1", + "id": "fcaa3d01-c859-4c55-9a96-99e9dff187ee" + }, + { + "routeId": "L376", + "platformId": "U2195Z2", + "id": "ac79f595-1355-4760-bf3a-f1a3b0699fa7" + }, + { + "routeId": "L376", + "platformId": "U2196Z1", + "id": "8378a3c6-3649-442a-99cc-87a2d1d71e65" + }, + { + "routeId": "L376", + "platformId": "U2196Z2", + "id": "54f55f26-3d69-48ff-8812-c385df610e28" + }, + { + "routeId": "L667", + "platformId": "U2198Z1", + "id": "2734be8f-9201-4844-bb73-11dbf4a78955" + }, + { + "routeId": "L667", + "platformId": "U2198Z2", + "id": "323a0bcd-7482-49e9-860a-fe68248896a4" + }, + { + "routeId": "L667", + "platformId": "U2199Z1", + "id": "1e27dff2-385d-41c3-afb4-1054b77eba8a" + }, + { + "routeId": "L667", + "platformId": "U2199Z2", + "id": "65a632d8-4d79-4221-b666-a31312685e4e" + }, + { + "routeId": "L181", + "platformId": "U219Z1", + "id": "7d307b0d-7d49-4a80-a273-ad2f94d2f65b" + }, + { + "routeId": "L181", + "platformId": "U219Z2", + "id": "626ca0df-2a4d-40bd-8a13-b9edd3064569" + }, + { + "routeId": "L158", + "platformId": "U21Z1", + "id": "88bb7bb4-59b4-4c12-9cbc-fb5f4e7abe6b" + }, + { + "routeId": "L195", + "platformId": "U21Z1", + "id": "6049efb0-aa5e-4d35-8f44-7a677c21340f" + }, + { + "routeId": "L201", + "platformId": "U21Z1", + "id": "d921a73d-a25d-477f-b725-4329b08609c8" + }, + { + "routeId": "L158", + "platformId": "U21Z2", + "id": "5ee5983a-9b2a-417b-816b-48edfce20941" + }, + { + "routeId": "L195", + "platformId": "U21Z2", + "id": "523df139-6fde-40aa-b0df-0f37a4c24ff0" + }, + { + "routeId": "L201", + "platformId": "U21Z2", + "id": "7e03a712-667d-4b18-8857-e2dafb2c0063" + }, + { + "routeId": "L667", + "platformId": "U2200Z1", + "id": "08f58cbf-ccb6-4e86-8fbf-f1334dd3e309" + }, + { + "routeId": "L667", + "platformId": "U2200Z2", + "id": "cc52dce8-c6ac-4347-94fa-f001fdc7acf2" + }, + { + "routeId": "L667", + "platformId": "U2201Z1", + "id": "64ee6260-10c9-44ef-8fba-3e5b50efbd48" + }, + { + "routeId": "L667", + "platformId": "U2201Z2", + "id": "d2d44652-2646-426d-9c84-e5055a7ab14e" + }, + { + "routeId": "L655", + "platformId": "U2202Z1", + "id": "1ac7fc38-a756-4dd3-acac-95e157440b6b" + }, + { + "routeId": "L655", + "platformId": "U2202Z2", + "id": "403a6ee0-0a23-4803-bd7d-24609eb10d14" + }, + { + "routeId": "L655", + "platformId": "U2203Z1", + "id": "be3e4cfb-0d30-4583-a21a-15f847696df4" + }, + { + "routeId": "L655", + "platformId": "U2203Z2", + "id": "77d75257-7dac-4d28-bae9-8623c104a3fa" + }, + { + "routeId": "L2223", + "platformId": "U2203Z401", + "id": "5aaef9bb-c1f0-4816-a94f-a75779481042" + }, + { + "routeId": "L2223", + "platformId": "U2203Z402", + "id": "6b3b2948-706c-4a73-980a-a1ec263fb594" + }, + { + "routeId": "L655", + "platformId": "U2204Z1", + "id": "a3ba3b4c-fe39-4f76-9742-c9d712e41db4" + }, + { + "routeId": "L655", + "platformId": "U2204Z2", + "id": "17a72923-b38d-48a7-bfdb-92c5b7210985" + }, + { + "routeId": "L2223", + "platformId": "U2204Z401", + "id": "6420acb4-42c2-4328-82e4-17bc21135e3a" + }, + { + "routeId": "L2223", + "platformId": "U2204Z402", + "id": "73b7c645-df26-4576-9750-fe0312dbffa8" + }, + { + "routeId": "L1223", + "platformId": "U2205Z301", + "id": "716d9d19-9d6e-4f2c-b49f-5683af1b0c91" + }, + { + "routeId": "L1332", + "platformId": "U2205Z301", + "id": "919746c9-eacc-445e-a1e1-ebea78a6c50d" + }, + { + "routeId": "L655", + "platformId": "U2206Z1", + "id": "844f27b2-1270-4f83-8de5-105f9a00fb84" + }, + { + "routeId": "L655", + "platformId": "U2207Z1", + "id": "5a43225e-efff-4b70-b827-ec7afad9903b" + }, + { + "routeId": "L655", + "platformId": "U2207Z2", + "id": "a3240165-e9a6-4ba6-84ac-48ea728a79ab" + }, + { + "routeId": "L2223", + "platformId": "U2207Z401", + "id": "69a23698-0bdd-471c-bdab-0ea06c96f998" + }, + { + "routeId": "L2223", + "platformId": "U2207Z402", + "id": "6ef69265-3964-4ec2-8267-a06e20b0d903" + }, + { + "routeId": "L655", + "platformId": "U2208Z1", + "id": "c3c9cfa2-6b7d-4f8a-bcd8-a3132dd2ec5c" + }, + { + "routeId": "L655", + "platformId": "U2208Z2", + "id": "b2e929fa-5913-4b07-84f6-0c94d891ffd0" + }, + { + "routeId": "L2223", + "platformId": "U2208Z401", + "id": "949eabba-c13f-4e33-b922-b6c44992397c" + }, + { + "routeId": "L2223", + "platformId": "U2208Z402", + "id": "579ad422-374a-4ed8-9ab5-f31ecf2f79da" + }, + { + "routeId": "L461", + "platformId": "U2209Z1", + "id": "b595609c-0db7-4d1d-962a-0255de516b4a" + }, + { + "routeId": "L469", + "platformId": "U2209Z1", + "id": "4eb450fa-4b15-4342-981d-4119d311cace" + }, + { + "routeId": "L126", + "platformId": "U220Z1", + "id": "8ffae1b7-9824-4763-ae95-b598119a50ed" + }, + { + "routeId": "L906", + "platformId": "U220Z1", + "id": "d4e5b415-d33b-4895-9d42-5fb7f5724725" + }, + { + "routeId": "L126", + "platformId": "U220Z2", + "id": "467dad23-bdea-45f0-8f1f-c35a7d8765d8" + }, + { + "routeId": "L906", + "platformId": "U220Z2", + "id": "baed4d37-fb4d-480d-8368-b62348fe6a70" + }, + { + "routeId": "L655", + "platformId": "U2210Z1", + "id": "6d5b6673-29fc-4ef3-b8f6-eced0ee3f718" + }, + { + "routeId": "L655", + "platformId": "U2210Z2", + "id": "2a74e1a8-ddde-4802-ace9-c9b026da9b88" + }, + { + "routeId": "L2223", + "platformId": "U2210Z401", + "id": "e1682605-6bb7-42bd-a01e-8865285357f4" + }, + { + "routeId": "L2223", + "platformId": "U2210Z402", + "id": "80e89dc2-9d41-4318-8733-8dcd585d740c" + }, + { + "routeId": "L655", + "platformId": "U2211Z1", + "id": "8e7fae45-0f3b-4374-a5ce-d9e073d3ee13" + }, + { + "routeId": "L655", + "platformId": "U2211Z2", + "id": "e79c08b5-f6e1-4aad-a07f-abb15880a80f" + }, + { + "routeId": "L655", + "platformId": "U2213Z1", + "id": "1049d712-2655-44fd-a4a1-553b2d79d861" + }, + { + "routeId": "L662", + "platformId": "U2213Z1", + "id": "533ff282-f89e-4788-92e6-5b0a57fd1c44" + }, + { + "routeId": "L655", + "platformId": "U2213Z2", + "id": "a9d10cc4-56a7-4ffa-a17b-b511d7ae6c23" + }, + { + "routeId": "L662", + "platformId": "U2213Z2", + "id": "54017b42-4217-4a38-9624-bc989ad4df9f" + }, + { + "routeId": "L2223", + "platformId": "U2213Z402", + "id": "2362f4f9-8ab6-4bf0-b8e5-e08ca7376b82" + }, + { + "routeId": "L1302", + "platformId": "U2214Z301", + "id": "20925749-1487-4a3a-b76e-24908113e51f" + }, + { + "routeId": "L1322", + "platformId": "U2214Z301", + "id": "0847819f-fe2d-4010-ba76-56214c5f48eb" + }, + { + "routeId": "L370", + "platformId": "U2215Z1", + "id": "0f18428e-ac8d-40e5-87e2-c654a99d697e" + }, + { + "routeId": "L663", + "platformId": "U2215Z1", + "id": "872f15f2-3cc1-40d1-b2ae-174515526cab" + }, + { + "routeId": "L370", + "platformId": "U2215Z2", + "id": "ac56d4ea-71ea-46ca-9a2b-caf5ba598da4" + }, + { + "routeId": "L663", + "platformId": "U2215Z3", + "id": "fcb5a213-a54a-4024-9291-456d701bec80" + }, + { + "routeId": "L370", + "platformId": "U2216Z1", + "id": "f874845c-70c7-4eb1-a0e3-ca4240472c41" + }, + { + "routeId": "L371", + "platformId": "U2216Z1", + "id": "0f9dfcb5-45b0-4829-b5ea-1e722b6ed598" + }, + { + "routeId": "L374", + "platformId": "U2216Z1", + "id": "9dce2ff3-a60e-4f96-9396-969d411937f4" + }, + { + "routeId": "L373", + "platformId": "U2216Z1", + "id": "b30c370d-8412-4d95-9bba-cd7a1b5dd35e" + }, + { + "routeId": "L958", + "platformId": "U2216Z1", + "id": "449452d9-abff-4eb3-ada0-f9e77fda76c8" + }, + { + "routeId": "L370", + "platformId": "U2216Z2", + "id": "ed6dc927-1a01-455d-880d-560922358e5a" + }, + { + "routeId": "L373", + "platformId": "U2216Z2", + "id": "156eb900-302a-4dd7-9bbd-045b9495f0ba" + }, + { + "routeId": "L370", + "platformId": "U2217Z1", + "id": "cf77598b-af8f-4127-a84e-207154e2f918" + }, + { + "routeId": "L373", + "platformId": "U2217Z1", + "id": "86d0ed5a-d96e-434e-a093-bb9f2de6d9e5" + }, + { + "routeId": "L958", + "platformId": "U2217Z1", + "id": "f13ce129-8ef4-481d-ad3a-a580f1e305ff" + }, + { + "routeId": "L370", + "platformId": "U2217Z2", + "id": "7a37a536-684a-48ca-91d3-444aa28976e4" + }, + { + "routeId": "L373", + "platformId": "U2217Z3", + "id": "11c91ecc-0402-4e66-baab-42e0442df3e0" + }, + { + "routeId": "L370", + "platformId": "U2218Z1", + "id": "a2301f9b-a36b-4185-a511-a60fc3a4e2d2" + }, + { + "routeId": "L373", + "platformId": "U2218Z1", + "id": "ee81141d-3517-401e-ae01-f498a2a4562b" + }, + { + "routeId": "L958", + "platformId": "U2218Z1", + "id": "1868a0a3-9f12-4897-a9cd-5f0ddc1bf5d8" + }, + { + "routeId": "L370", + "platformId": "U2218Z2", + "id": "ed7be860-cd6d-4df7-b2cf-6e570a1779c6" + }, + { + "routeId": "L373", + "platformId": "U2218Z2", + "id": "5665fb5d-ad11-4f62-9147-ca1cb70cf470" + }, + { + "routeId": "L958", + "platformId": "U2218Z2", + "id": "c93c6c92-32ae-4dc7-8e33-66a8bc46f896" + }, + { + "routeId": "L2", + "platformId": "U221Z1", + "id": "ae2bb6b1-447b-43c3-afed-ddbea9ccc437" + }, + { + "routeId": "L17", + "platformId": "U221Z1", + "id": "b3e69654-755e-4cdf-b8de-27a2457433f1" + }, + { + "routeId": "L27", + "platformId": "U221Z1", + "id": "7c0df56b-fc88-4ba8-ada1-910fe434d608" + }, + { + "routeId": "L18", + "platformId": "U221Z1", + "id": "715bd5f8-9198-4d5d-9d23-df03d9a55d96" + }, + { + "routeId": "L93", + "platformId": "U221Z1", + "id": "34f91893-795c-4b4c-a628-96a95591a4a8" + }, + { + "routeId": "L2", + "platformId": "U221Z2", + "id": "0aac3332-a57f-43ad-8784-ea5ff394a4a5" + }, + { + "routeId": "L17", + "platformId": "U221Z2", + "id": "5ab4c725-9698-4cb1-81c1-107db73f4a68" + }, + { + "routeId": "L27", + "platformId": "U221Z2", + "id": "5b63a414-edac-4f30-a7e2-887b1401567d" + }, + { + "routeId": "L18", + "platformId": "U221Z2", + "id": "7534a0d2-222d-47b6-9218-a7e8397924ba" + }, + { + "routeId": "L93", + "platformId": "U221Z2", + "id": "65077694-6c73-4cb8-964e-f22e7b55ba82" + }, + { + "routeId": "L370", + "platformId": "U2220Z1", + "id": "3c363ff6-999e-475b-937b-26127f995672" + }, + { + "routeId": "L373", + "platformId": "U2220Z1", + "id": "836dd983-d888-42c3-be6d-95f90d420fbc" + }, + { + "routeId": "L958", + "platformId": "U2220Z1", + "id": "390559de-0a86-444a-bd55-4033372f6407" + }, + { + "routeId": "L663", + "platformId": "U2220Z1", + "id": "3922e7aa-caf3-4148-a93f-efd71ad025a2" + }, + { + "routeId": "L370", + "platformId": "U2220Z2", + "id": "e89463da-5cc5-4599-b085-c3dc79ddb254" + }, + { + "routeId": "L373", + "platformId": "U2220Z2", + "id": "ac5a91aa-faba-4f22-bf35-15cdceccc587" + }, + { + "routeId": "L958", + "platformId": "U2220Z2", + "id": "a37525c7-f922-4a2f-8291-3708702b51d2" + }, + { + "routeId": "L663", + "platformId": "U2220Z2", + "id": "f589cbff-0a94-4dc2-962a-81c71b41e7c2" + }, + { + "routeId": "L370", + "platformId": "U2221Z1", + "id": "074492c9-7a50-415e-8256-93633e74bce9" + }, + { + "routeId": "L373", + "platformId": "U2221Z1", + "id": "1e6ac8f5-7cf5-43e0-880b-4751400f491e" + }, + { + "routeId": "L958", + "platformId": "U2221Z1", + "id": "d384d6b5-c6fb-4c48-8ad1-4ca6db5fa64c" + }, + { + "routeId": "L663", + "platformId": "U2221Z1", + "id": "94d3feb6-cb4f-4193-9729-ca8bf8d946f9" + }, + { + "routeId": "L370", + "platformId": "U2222Z1", + "id": "59cdf9d9-0a6d-4218-89fa-8c6752137db5" + }, + { + "routeId": "L373", + "platformId": "U2222Z1", + "id": "31c4079b-beb9-4fc6-9dd6-90e24b6ab4d5" + }, + { + "routeId": "L372", + "platformId": "U2222Z1", + "id": "bc35c392-cf7e-4d12-bdc0-4f91fcd54b8b" + }, + { + "routeId": "L958", + "platformId": "U2222Z1", + "id": "15d84cc2-cf9b-40c9-b38c-219a8b55610e" + }, + { + "routeId": "L663", + "platformId": "U2222Z1", + "id": "dac4f181-9018-4659-9106-0aebda450141" + }, + { + "routeId": "L370", + "platformId": "U2222Z2", + "id": "18b05005-881f-409c-9896-7cfc161a85b1" + }, + { + "routeId": "L372", + "platformId": "U2222Z2", + "id": "cff77ff8-8684-4020-914d-06b69a28106f" + }, + { + "routeId": "L373", + "platformId": "U2222Z2", + "id": "85a8d1ef-f4a6-478c-b540-672d90e9f2ba" + }, + { + "routeId": "L958", + "platformId": "U2222Z2", + "id": "1af95b3e-0158-46f6-915b-3cce2987f9b0" + }, + { + "routeId": "L663", + "platformId": "U2222Z2", + "id": "a896cfa2-af51-44ef-b31d-20963fac8a69" + }, + { + "routeId": "L370", + "platformId": "U2223Z1", + "id": "f0acdd17-a77f-4a8b-802f-7147f0deb05e" + }, + { + "routeId": "L663", + "platformId": "U2223Z1", + "id": "6eea6755-dd00-46f1-be35-b29883330c65" + }, + { + "routeId": "L370", + "platformId": "U2223Z2", + "id": "1329445e-8889-427f-9c14-af38067ab185" + }, + { + "routeId": "L663", + "platformId": "U2223Z2", + "id": "e6322d76-6dfc-4a3c-8cab-832f10d5a6e1" + }, + { + "routeId": "L663", + "platformId": "U2224Z1", + "id": "5e9ac0ab-7250-4c51-9b19-b943df446204" + }, + { + "routeId": "L663", + "platformId": "U2224Z2", + "id": "ae8e7269-d88a-4d4a-bd35-0c4cb052c162" + }, + { + "routeId": "L370", + "platformId": "U2225Z1", + "id": "fad07344-6233-452b-bf57-6f0973f5a742" + }, + { + "routeId": "L663", + "platformId": "U2225Z1", + "id": "921d8156-0917-4d18-aef8-8931750634e1" + }, + { + "routeId": "L370", + "platformId": "U2225Z2", + "id": "5621c80b-1b7d-4dd7-b2d7-beeeb347ecc8" + }, + { + "routeId": "L663", + "platformId": "U2225Z2", + "id": "3babb229-9632-449f-8f73-7ffd8e09bfc6" + }, + { + "routeId": "L663", + "platformId": "U2226Z1", + "id": "004761b9-e950-4766-b5de-203f2932619c" + }, + { + "routeId": "L663", + "platformId": "U2226Z2", + "id": "f34a4d43-2bc1-4f86-9821-9a71da00cba5" + }, + { + "routeId": "L663", + "platformId": "U2227Z1", + "id": "4b65fd33-4383-412c-baab-6f113d2e323f" + }, + { + "routeId": "L663", + "platformId": "U2227Z2", + "id": "3b17f7dd-3146-4cf6-a98b-3d930a382dad" + }, + { + "routeId": "L370", + "platformId": "U2228Z1", + "id": "a9d6aa6c-7e55-4a35-86bf-ae227a87eb3c" + }, + { + "routeId": "L470", + "platformId": "U2228Z1", + "id": "55ae4d69-2d1c-4919-88c9-a49c9e04ab17" + }, + { + "routeId": "L370", + "platformId": "U2228Z2", + "id": "068d9b68-8478-4a27-9ae4-a3979389f532" + }, + { + "routeId": "L470", + "platformId": "U2228Z2", + "id": "83a95d64-03fd-45c9-8e28-7070f57ff033" + }, + { + "routeId": "L370", + "platformId": "U2229Z1", + "id": "032affca-17c9-48fc-bdb8-30b478a74c32" + }, + { + "routeId": "L373", + "platformId": "U2229Z1", + "id": "576cd36c-4998-48c2-aa48-58ddc81fb211" + }, + { + "routeId": "L370", + "platformId": "U2229Z2", + "id": "4f917f6d-0e6d-4f2b-a1b4-1ff2e485e121" + }, + { + "routeId": "L373", + "platformId": "U2229Z2", + "id": "02afca9e-1d4a-42d1-9efb-23edfc89c012" + }, + { + "routeId": "L110", + "platformId": "U222Z1", + "id": "715e3fdf-7036-4e0d-a660-c987af674de3" + }, + { + "routeId": "L110", + "platformId": "U222Z2", + "id": "9ccc53bf-a506-42a2-b863-f1931e66ff3f" + }, + { + "routeId": "L370", + "platformId": "U2231Z1", + "id": "7e602841-a87d-4f06-84c0-757399c10405" + }, + { + "routeId": "L466", + "platformId": "U2231Z1", + "id": "614b9336-d9e1-4e08-ba63-bbb22deb9a43" + }, + { + "routeId": "L457", + "platformId": "U2231Z1", + "id": "d21863d9-d264-4dc7-8ffe-8b7ccddaf7bd" + }, + { + "routeId": "L470", + "platformId": "U2231Z1", + "id": "3a973ab3-1197-457f-895c-ca962fd4c77d" + }, + { + "routeId": "L370", + "platformId": "U2231Z2", + "id": "1d987f74-8220-4579-9a5a-ecf773ce71a9" + }, + { + "routeId": "L466", + "platformId": "U2231Z2", + "id": "15d04902-3338-43c3-b8d8-e4c3a25ee325" + }, + { + "routeId": "L457", + "platformId": "U2231Z2", + "id": "05745748-2e68-4d31-934d-54a02bf110d5" + }, + { + "routeId": "L470", + "platformId": "U2231Z2", + "id": "07071681-aea8-46ea-a995-1af70fbccadd" + }, + { + "routeId": "L663", + "platformId": "U2232Z1", + "id": "d883bb5f-e48a-41c9-8072-346af5310c11" + }, + { + "routeId": "L663", + "platformId": "U2232Z2", + "id": "114b013c-3e38-4a3b-85e8-7c1f4730d26c" + }, + { + "routeId": "L663", + "platformId": "U2233Z1", + "id": "cc0b86eb-3757-4254-ac62-18a68ed44678" + }, + { + "routeId": "L663", + "platformId": "U2233Z2", + "id": "29ef71af-1427-47fe-97f1-b040788936ed" + }, + { + "routeId": "L663", + "platformId": "U2234Z1", + "id": "ed403a84-f467-4780-9f86-043786a1cea7" + }, + { + "routeId": "L663", + "platformId": "U2234Z2", + "id": "8ea0ad57-1688-45e2-8290-638eb60202f2" + }, + { + "routeId": "L370", + "platformId": "U2235Z1", + "id": "10bf5fb3-58de-4d1c-8719-f89192627a1f" + }, + { + "routeId": "L466", + "platformId": "U2235Z1", + "id": "cb0a7739-deb7-4aba-a067-871c30a71c57" + }, + { + "routeId": "L617", + "platformId": "U2235Z1", + "id": "0e09b6c8-5a5b-4ece-83a0-7ee19006babd" + }, + { + "routeId": "L457", + "platformId": "U2235Z1", + "id": "cc702893-c55e-4c62-8bf3-f86efb934406" + }, + { + "routeId": "L470", + "platformId": "U2235Z1", + "id": "4bd7cbc2-b19f-4b78-81bb-2f29c51b8af9" + }, + { + "routeId": "L646", + "platformId": "U2235Z1", + "id": "6b2ede43-f2ab-45c1-a437-0d4e0a7f0e88" + }, + { + "routeId": "L663", + "platformId": "U2235Z1", + "id": "cc390209-f630-4839-b87d-d48d3e6f6a22" + }, + { + "routeId": "L370", + "platformId": "U2235Z2", + "id": "df8c732e-d08d-4a85-9b19-a84f188cd556" + }, + { + "routeId": "L466", + "platformId": "U2235Z2", + "id": "a9064fb9-09ba-4c8e-af91-dfe35cfed79b" + }, + { + "routeId": "L617", + "platformId": "U2235Z2", + "id": "ccd523ea-366d-4602-8f73-33fa81b59969" + }, + { + "routeId": "L457", + "platformId": "U2235Z2", + "id": "db5446cd-611f-4614-8537-493e259b537b" + }, + { + "routeId": "L470", + "platformId": "U2235Z2", + "id": "4cb25c9d-ecd8-4cf8-875f-aa519e568b26" + }, + { + "routeId": "L646", + "platformId": "U2235Z2", + "id": "c1984f27-d7a8-4f67-9509-7fbd226fe891" + }, + { + "routeId": "L663", + "platformId": "U2235Z2", + "id": "236056bc-3373-4891-a6ab-752f07659336" + }, + { + "routeId": "L617", + "platformId": "U2236Z1", + "id": "c5bf49f9-1b73-45a7-acf9-445930efee2e" + }, + { + "routeId": "L457", + "platformId": "U2236Z1", + "id": "6d804e3d-46b9-4ad0-b089-e19d03af444c" + }, + { + "routeId": "L316", + "platformId": "U2236Z2", + "id": "8e31dcde-21c8-4545-bcdd-b102bf348b3d" + }, + { + "routeId": "L617", + "platformId": "U2236Z2", + "id": "9f55c00d-d972-4602-9fdc-66c8a5bd78d8" + }, + { + "routeId": "L457", + "platformId": "U2236Z2", + "id": "b24ef67e-4aec-44a5-9e6e-85258e042c49" + }, + { + "routeId": "L620", + "platformId": "U2236Z2", + "id": "37df6218-a6c8-46a0-8af6-4eaa519cf1ff" + }, + { + "routeId": "L646", + "platformId": "U2236Z2", + "id": "0eff6614-4a5f-4faa-b798-117fd6934a48" + }, + { + "routeId": "L370", + "platformId": "U2236Z3", + "id": "76c3853b-d07c-4ad0-ae54-b259ab599918" + }, + { + "routeId": "L466", + "platformId": "U2236Z3", + "id": "016b94de-194f-4efd-a5be-81bd796d22f4" + }, + { + "routeId": "L470", + "platformId": "U2236Z3", + "id": "1bf1e29f-9a96-4dca-b119-e3ee2dc68528" + }, + { + "routeId": "L646", + "platformId": "U2236Z3", + "id": "24b0f375-b191-4a22-9e6f-a3b2ae66ca7b" + }, + { + "routeId": "L663", + "platformId": "U2236Z3", + "id": "d8f95b45-a632-4100-84dd-cb10e1b0f2cf" + }, + { + "routeId": "L1220", + "platformId": "U2236Z301", + "id": "a0464fb6-cfb3-4f0e-af01-b90b3b89641c" + }, + { + "routeId": "L1304", + "platformId": "U2236Z301", + "id": "06181d01-414e-4717-ae93-11f5ac46bec9" + }, + { + "routeId": "L1343", + "platformId": "U2236Z301", + "id": "9ea2132a-f6bc-4339-9ba5-b3e8db509f25" + }, + { + "routeId": "L1345", + "platformId": "U2236Z301", + "id": "cbcee4c5-6698-4cea-be1c-5e81b9667d5c" + }, + { + "routeId": "L1344", + "platformId": "U2236Z301", + "id": "aa3fef1b-c35b-4c97-9d94-2c88a850cbcd" + }, + { + "routeId": "L2240", + "platformId": "U2236Z401", + "id": "226ebf53-8a27-4606-a96b-8cfde5394a33" + }, + { + "routeId": "L2240", + "platformId": "U2236Z406", + "id": "7883eba5-5f27-4e51-9632-5add4e6121fd" + }, + { + "routeId": "L316", + "platformId": "U2236Z6", + "id": "c37bebba-6be6-440e-ac90-b98ba5905c20" + }, + { + "routeId": "L370", + "platformId": "U2236Z6", + "id": "025ac2ce-c418-4a6c-8313-72ff741a047f" + }, + { + "routeId": "L466", + "platformId": "U2236Z6", + "id": "8671c881-7283-48e1-9941-274655b7d1ed" + }, + { + "routeId": "L470", + "platformId": "U2236Z6", + "id": "70af3729-bd65-4a93-82f0-ef03b8c3d28d" + }, + { + "routeId": "L620", + "platformId": "U2236Z6", + "id": "429116df-9f95-4d53-b530-945f41ad64ba" + }, + { + "routeId": "L663", + "platformId": "U2236Z6", + "id": "4547ed2d-9664-4faf-b878-5c3f19881970" + }, + { + "routeId": "L371", + "platformId": "U2237Z1", + "id": "c83154ba-e1b3-4193-8903-e4513899529f" + }, + { + "routeId": "L374", + "platformId": "U2237Z1", + "id": "478ff6f3-855e-450d-becc-ae4dbcc11b44" + }, + { + "routeId": "L958", + "platformId": "U2237Z1", + "id": "75fefaa0-e9a8-4c31-8c5a-7d2984604c18" + }, + { + "routeId": "L371", + "platformId": "U2237Z2", + "id": "9d2ac952-da1f-4d2f-804e-d43b7886e6a7" + }, + { + "routeId": "L374", + "platformId": "U2237Z2", + "id": "e5ff2594-e77f-4a44-82ad-ae914d1543b8" + }, + { + "routeId": "L958", + "platformId": "U2237Z2", + "id": "e98dd51d-1ac2-4b28-81d4-787b06ee5cf9" + }, + { + "routeId": "L371", + "platformId": "U2238Z1", + "id": "95681f68-8d5b-490e-a0fd-2ce80b439bb0" + }, + { + "routeId": "L374", + "platformId": "U2238Z1", + "id": "d8a68ffe-0030-45b6-9eb4-2b0e802a46b4" + }, + { + "routeId": "L958", + "platformId": "U2238Z1", + "id": "cebee9fd-77c6-42f3-b9b1-8c5a58a05b53" + }, + { + "routeId": "L371", + "platformId": "U2238Z2", + "id": "34fa4072-f0a3-4564-a53f-0f02cec6d425" + }, + { + "routeId": "L374", + "platformId": "U2238Z2", + "id": "6e1c1b5d-1b01-41f2-9126-9e8664edaf46" + }, + { + "routeId": "L958", + "platformId": "U2238Z2", + "id": "8a6c8167-7421-493c-b92c-926d5f0c069a" + }, + { + "routeId": "L371", + "platformId": "U2239Z1", + "id": "8efe6827-c240-4ffd-aafa-34c5fdcf8b5a" + }, + { + "routeId": "L374", + "platformId": "U2239Z1", + "id": "a948054a-1d07-46ae-b341-f2c2f10ee6f6" + }, + { + "routeId": "L958", + "platformId": "U2239Z1", + "id": "6cfd1a63-226f-419c-a095-2bdd33b514d9" + }, + { + "routeId": "L371", + "platformId": "U2239Z2", + "id": "4e77e97b-daf0-4217-bb9e-a65b3b5a9589" + }, + { + "routeId": "L374", + "platformId": "U2239Z2", + "id": "6bc4889d-5d80-41f4-91a1-ad58c28402cf" + }, + { + "routeId": "L958", + "platformId": "U2239Z2", + "id": "aec61406-54f8-488d-9739-1705f35d37cb" + }, + { + "routeId": "L161", + "platformId": "U223Z1", + "id": "02337df3-0ec0-48dc-8140-8ce8bc4f8e4f" + }, + { + "routeId": "L907", + "platformId": "U223Z1", + "id": "0bcdcf3f-4293-4e26-87b3-4b2f44420f3c" + }, + { + "routeId": "L312", + "platformId": "U223Z1", + "id": "3a4dbaa4-ab31-43fd-9f49-0f975907a361" + }, + { + "routeId": "L907", + "platformId": "U223Z2", + "id": "e92c03bb-f536-4a6b-a8bb-1e4f7e210442" + }, + { + "routeId": "L312", + "platformId": "U223Z2", + "id": "d8354373-d870-4d5c-bd12-b9eaa31b9b0f" + }, + { + "routeId": "L371", + "platformId": "U2240Z1", + "id": "e8d3827e-c34a-41f3-a4a9-ce4be0972073" + }, + { + "routeId": "L374", + "platformId": "U2240Z1", + "id": "5b1f4bea-ecad-4d9b-a091-a41d41db01e5" + }, + { + "routeId": "L958", + "platformId": "U2240Z1", + "id": "08cfdc6c-e5ff-4bec-809b-7a4aca2a0729" + }, + { + "routeId": "L371", + "platformId": "U2240Z2", + "id": "f1bfe9e3-33c0-46ae-bfe8-f5d3154e20bf" + }, + { + "routeId": "L374", + "platformId": "U2240Z2", + "id": "1fdabeee-220a-4a5e-bb72-36b7ad0f8c24" + }, + { + "routeId": "L958", + "platformId": "U2240Z2", + "id": "73b13c72-41fa-4184-84bd-28e7ce9a367e" + }, + { + "routeId": "L371", + "platformId": "U2241Z1", + "id": "39a312ae-f328-47e8-8aba-85944549adcf" + }, + { + "routeId": "L374", + "platformId": "U2241Z1", + "id": "60a9a6ec-b036-4e3c-a4b6-3bf8e35bbafa" + }, + { + "routeId": "L958", + "platformId": "U2241Z1", + "id": "680fe98f-5692-4c74-a8ae-c281049ce5c0" + }, + { + "routeId": "L371", + "platformId": "U2241Z2", + "id": "e6859dc6-c4a6-4d94-8e10-44d11885ab22" + }, + { + "routeId": "L374", + "platformId": "U2241Z2", + "id": "f0206650-faeb-4af8-b4ee-7d68f3ce57d3" + }, + { + "routeId": "L958", + "platformId": "U2241Z2", + "id": "e8e42abc-09c3-4ad9-8c1b-5fc875519acf" + }, + { + "routeId": "L371", + "platformId": "U2242Z1", + "id": "73b1bc28-2590-4818-9b21-8f369dff32a6" + }, + { + "routeId": "L371", + "platformId": "U2242Z2", + "id": "64ad05ce-0b77-45ee-9774-d9fb4c6bd341" + }, + { + "routeId": "L371", + "platformId": "U2243Z2", + "id": "d0e37fcb-e8ab-40bd-bbcf-035d848e8199" + }, + { + "routeId": "L371", + "platformId": "U2244Z1", + "id": "77995337-e6cd-41aa-87fc-2bfa258dabea" + }, + { + "routeId": "L374", + "platformId": "U2244Z1", + "id": "da8f7551-c738-4622-9bff-1cedfae21482" + }, + { + "routeId": "L371", + "platformId": "U2244Z2", + "id": "6e298ca0-fcc2-4ec6-803f-7c766c8d3814" + }, + { + "routeId": "L374", + "platformId": "U2244Z2", + "id": "5b7dd311-527f-4f1e-b7c0-5a1164d44794" + }, + { + "routeId": "L371", + "platformId": "U2245Z1", + "id": "a117c0fa-9a3b-477b-b015-412b4fef2d98" + }, + { + "routeId": "L371", + "platformId": "U2245Z2", + "id": "e66bb80d-1032-4ec8-ac1e-91436b26663c" + }, + { + "routeId": "L371", + "platformId": "U2246Z1", + "id": "520fdc5a-b79c-4f84-b1a7-dda004ce9f97" + }, + { + "routeId": "L371", + "platformId": "U2246Z2", + "id": "9d0700a8-6b15-453c-9126-2a115f33e337" + }, + { + "routeId": "L371", + "platformId": "U2247Z1", + "id": "04b4bd69-9918-4735-9cf7-a0f09b559eb9" + }, + { + "routeId": "L371", + "platformId": "U2247Z2", + "id": "f2b82c47-57f5-4b4e-9ae4-edbed24d65ee" + }, + { + "routeId": "L371", + "platformId": "U2248Z2", + "id": "b4964a69-b993-441b-b9bd-ffb74ccbb753" + }, + { + "routeId": "L373", + "platformId": "U2249Z1", + "id": "8b4dbd69-889e-4673-887f-f1789b554607" + }, + { + "routeId": "L373", + "platformId": "U2249Z2", + "id": "c8d399e5-882e-4f83-bc99-64e60a251cd9" + }, + { + "routeId": "L341", + "platformId": "U224Z2", + "id": "985b5e3f-166f-4795-bfdc-0ca8018d43ff" + }, + { + "routeId": "L341", + "platformId": "U224Z3", + "id": "666f0f42-7dc8-4413-a4fd-6635361b20ce" + }, + { + "routeId": "L368", + "platformId": "U2250Z1", + "id": "0d32a8b5-a36d-45e9-84a7-4cc6b3ef2668" + }, + { + "routeId": "L368", + "platformId": "U2250Z2", + "id": "b9900b5f-bc3b-4110-8495-1ecda058a3bd" + }, + { + "routeId": "L374", + "platformId": "U2251Z1", + "id": "53cb087f-2e55-4bda-b7c6-6111da99e58c" + }, + { + "routeId": "L374", + "platformId": "U2252Z1", + "id": "2d1c23ef-7126-48e7-b0bd-82ea645eb595" + }, + { + "routeId": "L374", + "platformId": "U2252Z2", + "id": "b65261c8-21e4-4148-b5b8-0fda6cf07600" + }, + { + "routeId": "L374", + "platformId": "U2253Z1", + "id": "c1e93097-d589-4f51-8fae-f55e4e729a81" + }, + { + "routeId": "L374", + "platformId": "U2253Z2", + "id": "c1b0a94e-667c-47f2-ab36-884d69a1f1f5" + }, + { + "routeId": "L374", + "platformId": "U2255Z1", + "id": "83af62bd-af1b-46b5-8fa8-cf0a5957adea" + }, + { + "routeId": "L374", + "platformId": "U2255Z2", + "id": "1ef0cff0-278b-4169-8c2c-11a722735252" + }, + { + "routeId": "L374", + "platformId": "U2256Z1", + "id": "ebe60a54-4f75-4c1d-9e3c-7096c5571ad0" + }, + { + "routeId": "L374", + "platformId": "U2256Z2", + "id": "8bbe4294-4e9f-49a5-a71a-0510bcb92db8" + }, + { + "routeId": "L374", + "platformId": "U2257Z1", + "id": "d5e17a05-920f-40db-801c-15d7f2bd49dd" + }, + { + "routeId": "L374", + "platformId": "U2257Z2", + "id": "ee1c83bb-55fd-4b31-b477-efaca9933819" + }, + { + "routeId": "L374", + "platformId": "U2258Z1", + "id": "07ce03eb-ed1a-4e0a-86b0-f8fb03f1b024" + }, + { + "routeId": "L136", + "platformId": "U225Z1", + "id": "e66d8944-e6f8-48d8-8b6f-775d75a485b4" + }, + { + "routeId": "L177", + "platformId": "U225Z1", + "id": "09d5c9d3-637f-47d9-b3b1-6de5305a359b" + }, + { + "routeId": "L183", + "platformId": "U225Z1", + "id": "e1996f40-4321-46d1-888a-c7caa3a97896" + }, + { + "routeId": "L195", + "platformId": "U225Z1", + "id": "d3e1dfef-158f-46c1-a7f2-c614f521020d" + }, + { + "routeId": "L913", + "platformId": "U225Z1", + "id": "edb58a03-fb70-42a5-8727-db550fc00dda" + }, + { + "routeId": "L136", + "platformId": "U225Z2", + "id": "5ffd523c-558a-4c5d-9705-2a0c2c71a3ec" + }, + { + "routeId": "L177", + "platformId": "U225Z2", + "id": "acae5e46-037d-4312-ab5e-70074bcd98f8" + }, + { + "routeId": "L183", + "platformId": "U225Z2", + "id": "233a12a8-3c53-47d4-b5fc-156a5ad9094d" + }, + { + "routeId": "L195", + "platformId": "U225Z2", + "id": "067c7c85-83ae-4f26-b7c7-2e4c40dfc5cc" + }, + { + "routeId": "L913", + "platformId": "U225Z2", + "id": "4ca8b81d-0dd6-4019-9600-f4003271041c" + }, + { + "routeId": "L373", + "platformId": "U2260Z1", + "id": "4ef0dfe0-0b2a-47bd-b9cd-3d4148dbda0a" + }, + { + "routeId": "L663", + "platformId": "U2260Z1", + "id": "d038466b-cdd1-4afb-b3e0-990e28c5bd22" + }, + { + "routeId": "L373", + "platformId": "U2260Z2", + "id": "08f6d0ae-115a-40e2-b9f3-1e9847ff5fbd" + }, + { + "routeId": "L663", + "platformId": "U2260Z2", + "id": "a8d144b6-564c-48ed-baec-21256b538cf8" + }, + { + "routeId": "L373", + "platformId": "U2261Z1", + "id": "fc54d59a-96af-49bd-b6b8-ef46e6dd0277" + }, + { + "routeId": "L373", + "platformId": "U2261Z2", + "id": "044b481a-a947-4bee-ab04-d052b8a6fd15" + }, + { + "routeId": "L373", + "platformId": "U2262Z1", + "id": "885d7627-c7a9-4a08-bde8-9b6365670ff1" + }, + { + "routeId": "L373", + "platformId": "U2262Z2", + "id": "190e088d-a6c3-4d7a-8b16-dc79116628ad" + }, + { + "routeId": "L373", + "platformId": "U2263Z1", + "id": "c9cb29b2-67fb-41ce-8256-a4f35245e026" + }, + { + "routeId": "L373", + "platformId": "U2263Z2", + "id": "ecf7a7af-e8e7-4012-ab0b-4137dfca364d" + }, + { + "routeId": "L370", + "platformId": "U2264Z1", + "id": "15409a7f-a4de-45bd-bdb4-75e0b054ea82" + }, + { + "routeId": "L371", + "platformId": "U2264Z1", + "id": "80cda12d-9fae-44aa-9ce3-f86cd6e9ebce" + }, + { + "routeId": "L374", + "platformId": "U2264Z1", + "id": "022b0a5c-00cf-474f-a72b-b66dd31cb5bb" + }, + { + "routeId": "L373", + "platformId": "U2264Z1", + "id": "9132c40a-7fa9-4620-a195-cae6e0fa2db7" + }, + { + "routeId": "L958", + "platformId": "U2264Z1", + "id": "c5fe7f74-9129-450c-9100-9668cad5c9f7" + }, + { + "routeId": "L370", + "platformId": "U2264Z2", + "id": "69e159b4-70dc-4d4f-8c26-0e7a863ef7dd" + }, + { + "routeId": "L371", + "platformId": "U2264Z2", + "id": "8640ca9d-b387-4ba0-ac32-cdc7095f202a" + }, + { + "routeId": "L374", + "platformId": "U2264Z2", + "id": "83afb577-0532-4f90-acb7-7d93a789a354" + }, + { + "routeId": "L373", + "platformId": "U2264Z2", + "id": "b1f2db45-9e0d-4702-9a3e-3893734da0c6" + }, + { + "routeId": "L958", + "platformId": "U2264Z2", + "id": "7ecc007d-eb68-417f-95cb-40b29c953a40" + }, + { + "routeId": "L373", + "platformId": "U2265Z3", + "id": "72b0b7e8-7564-45b9-9e05-44d81443b609" + }, + { + "routeId": "L373", + "platformId": "U2266Z1", + "id": "9fe12514-cf90-42fc-869a-ac8608ef025a" + }, + { + "routeId": "L373", + "platformId": "U2267Z1", + "id": "4112fd93-4149-4d0c-8360-67aa917da1b2" + }, + { + "routeId": "L373", + "platformId": "U2267Z2", + "id": "de34c95a-02c7-4b47-aa28-910474f540ab" + }, + { + "routeId": "L368", + "platformId": "U2268Z1", + "id": "eacc52b3-1fbd-4527-890d-583e8796ef25" + }, + { + "routeId": "L368", + "platformId": "U2268Z2", + "id": "7ca68e80-3d55-431a-9614-fb15286e6b40" + }, + { + "routeId": "L422", + "platformId": "U2269Z1", + "id": "f8c0f4e7-ae87-42a1-9693-aefada997ee2" + }, + { + "routeId": "L659", + "platformId": "U2269Z1", + "id": "0823af80-26c9-487a-94b3-9415ef82afcd" + }, + { + "routeId": "L491", + "platformId": "U2269Z1", + "id": "a0e57aae-3190-430e-82cf-15e71204081b" + }, + { + "routeId": "L660", + "platformId": "U2269Z1", + "id": "0c280d39-e80a-465c-8c67-a5db9e8ad810" + }, + { + "routeId": "L661", + "platformId": "U2269Z1", + "id": "8937494c-0464-441a-9a28-777dd323f7b7" + }, + { + "routeId": "L1219", + "platformId": "U2269Z301", + "id": "f4a9931d-c56d-4f65-8442-f989f59bcf0b" + }, + { + "routeId": "L1218", + "platformId": "U2269Z301", + "id": "a2721d23-1c1b-49f5-81b3-93a41dd3b9dc" + }, + { + "routeId": "L1210", + "platformId": "U2269Z301", + "id": "6155debd-a50a-4998-b599-a79d93dc21e0" + }, + { + "routeId": "L1209", + "platformId": "U2269Z301", + "id": "cf513c05-7be2-4612-8df7-467e2f4f2b55" + }, + { + "routeId": "L1301", + "platformId": "U2269Z301", + "id": "dc1e62c6-4c7b-4c36-89c7-f564aa12acb5" + }, + { + "routeId": "L435", + "platformId": "U2269Z4", + "id": "6140149f-6d2e-4dcf-aea4-11eb6a283962" + }, + { + "routeId": "L662", + "platformId": "U2269Z4", + "id": "ad00e65f-6a19-4a9a-a981-791b286234e8" + }, + { + "routeId": "L422", + "platformId": "U2269Z5", + "id": "bbba4a48-2e54-46de-87c9-f39a1df5467a" + }, + { + "routeId": "L660", + "platformId": "U2269Z5", + "id": "77395454-12f1-4f44-b4da-5dd4f7b04b4b" + }, + { + "routeId": "L491", + "platformId": "U2269Z5", + "id": "c1a90e8b-2eae-412c-a968-d8e0d66eca90" + }, + { + "routeId": "L659", + "platformId": "U2269Z5", + "id": "f1b801a2-b8a2-4025-89ae-46f66d0ec8da" + }, + { + "routeId": "L661", + "platformId": "U2269Z5", + "id": "95ddf489-ca92-4129-b3a1-b595c4918bb0" + }, + { + "routeId": "L435", + "platformId": "U2269Z6", + "id": "be184175-1429-4f6f-9a3b-c25965c6a354" + }, + { + "routeId": "L662", + "platformId": "U2269Z6", + "id": "974cbc79-e745-4d13-9044-9d6eeb3cc12e" + }, + { + "routeId": "L101", + "platformId": "U226Z1", + "id": "700fb065-353f-46c7-b75a-6f6b3acfed57" + }, + { + "routeId": "L111", + "platformId": "U226Z1", + "id": "083ef09f-1075-47b7-9fde-6a41e90a11e0" + }, + { + "routeId": "L125", + "platformId": "U226Z1", + "id": "c987ba47-d3c4-4858-be1c-418a83c970a3" + }, + { + "routeId": "L908", + "platformId": "U226Z1", + "id": "22b6efb3-b36e-4038-9779-1c75d6fe9766" + }, + { + "routeId": "L329", + "platformId": "U226Z1", + "id": "691900f2-1d59-4e49-86c9-2f695b88c640" + }, + { + "routeId": "L101", + "platformId": "U226Z2", + "id": "0a0cf6ee-8ce1-46a8-a10a-8f89c66db2b3" + }, + { + "routeId": "L125", + "platformId": "U226Z2", + "id": "591b84a0-3aab-4fac-8da7-3a740cce0adc" + }, + { + "routeId": "L908", + "platformId": "U226Z2", + "id": "41bacc64-316c-4090-a64a-9d140ca2c8f0" + }, + { + "routeId": "L111", + "platformId": "U226Z3", + "id": "54d95836-3a8f-4db6-9e72-f154495be62c" + }, + { + "routeId": "L329", + "platformId": "U226Z3", + "id": "509b7640-8957-44f2-814b-36a33578e3ad" + }, + { + "routeId": "L422", + "platformId": "U2270Z2", + "id": "99ebefa1-374e-41b2-baf8-35ba69102b05" + }, + { + "routeId": "L435", + "platformId": "U2270Z2", + "id": "e9f66c49-d94d-4e3a-9f0d-878b119edf52" + }, + { + "routeId": "L660", + "platformId": "U2270Z2", + "id": "33e9c452-8b9d-44be-b689-c7841d83edf7" + }, + { + "routeId": "L491", + "platformId": "U2270Z2", + "id": "e7be97fb-c0d8-4b66-a254-3c28d6238cd9" + }, + { + "routeId": "L659", + "platformId": "U2270Z2", + "id": "b78b4379-f1e6-4c36-b9c8-ed186aae78f4" + }, + { + "routeId": "L662", + "platformId": "U2270Z2", + "id": "b1a16fea-8124-4932-86cd-a7fe16479ba5" + }, + { + "routeId": "L661", + "platformId": "U2272Z1", + "id": "9ab6c26b-b52a-4924-b00e-b383b18c5e6e" + }, + { + "routeId": "L661", + "platformId": "U2272Z2", + "id": "c97f8359-3c48-470e-b888-f022e7c3bb10" + }, + { + "routeId": "L491", + "platformId": "U2273Z1", + "id": "6ed8b948-81a8-43bb-92f9-fddc5968e7ef" + }, + { + "routeId": "L491", + "platformId": "U2273Z2", + "id": "d971609f-3872-4d24-b7d1-562930dea1ef" + }, + { + "routeId": "L662", + "platformId": "U2274Z1", + "id": "01d3740b-6860-44cb-91ed-cbd48a516c98" + }, + { + "routeId": "L662", + "platformId": "U2274Z2", + "id": "ed619d3d-733a-4f5a-a4a5-aab83946ee2e" + }, + { + "routeId": "L1219", + "platformId": "U2275Z301", + "id": "a19e5873-2268-417b-9c34-74ce5fcb89c6" + }, + { + "routeId": "L1218", + "platformId": "U2275Z301", + "id": "ddbdc007-5e31-4a58-a840-8cfee2a20273" + }, + { + "routeId": "L1210", + "platformId": "U2275Z301", + "id": "bdf4126f-722f-4c70-909f-6c2e90270bc9" + }, + { + "routeId": "L1209", + "platformId": "U2275Z301", + "id": "b50bc0ce-2d5d-4c90-a13c-1bbd8da21714" + }, + { + "routeId": "L1301", + "platformId": "U2275Z301", + "id": "27f9f80c-4e06-482c-badd-540aa6b2f8da" + }, + { + "routeId": "L109", + "platformId": "U2276Z1", + "id": "b5e991c0-a965-40e3-a3b0-f907a8bd28ed" + }, + { + "routeId": "L209", + "platformId": "U2276Z1", + "id": "e8771500-a28f-4f0d-8bc5-f3dec76ff841" + }, + { + "routeId": "L221", + "platformId": "U2276Z1", + "id": "ed443488-eeb2-4e0a-9ccd-a135b2549d18" + }, + { + "routeId": "L109", + "platformId": "U2276Z2", + "id": "21cff7d0-f0c6-401c-99e3-b0a70a2f51df" + }, + { + "routeId": "L209", + "platformId": "U2276Z2", + "id": "41cde4b1-ffd8-4b18-914a-63000a95d54f" + }, + { + "routeId": "L221", + "platformId": "U2276Z2", + "id": "8cc2d623-eaa1-4279-9f0c-422ae7714492" + }, + { + "routeId": "L1219", + "platformId": "U2276Z301", + "id": "e3e47869-c4dd-4018-b021-6fab57e79470" + }, + { + "routeId": "L1218", + "platformId": "U2276Z301", + "id": "7dcac85d-1ddd-42e3-9b75-c187b4ad88d7" + }, + { + "routeId": "L1210", + "platformId": "U2276Z301", + "id": "1647d8fe-86d3-40b6-9851-b3aead17904a" + }, + { + "routeId": "L1209", + "platformId": "U2276Z301", + "id": "badae46b-d01e-4fd2-a9ca-ff14ab6be263" + }, + { + "routeId": "L1301", + "platformId": "U2276Z301", + "id": "ed78f75e-db73-4301-9a1d-145590155fda" + }, + { + "routeId": "L1217", + "platformId": "U2277Z301", + "id": "306f1af2-5938-44f2-8272-06ceff8e2b73" + }, + { + "routeId": "L1249", + "platformId": "U2277Z301", + "id": "b4bb45dd-b94d-40c4-8e9f-6ab93243b29d" + }, + { + "routeId": "L1309", + "platformId": "U2277Z301", + "id": "bc55e18c-03ed-4c39-a6d1-8bb3a4e57d9b" + }, + { + "routeId": "L1307", + "platformId": "U2278Z301", + "id": "168a8ac1-a3a0-4c86-ac64-277df0c51282" + }, + { + "routeId": "L1307", + "platformId": "U2279Z301", + "id": "eee8153a-05f2-4d4c-aa41-e8aaecf54762" + }, + { + "routeId": "L101", + "platformId": "U227Z1", + "id": "ab8c249c-ef85-4a61-889d-3445417dbc6c" + }, + { + "routeId": "L101", + "platformId": "U227Z2", + "id": "a211600e-f475-4760-96a2-54c2fe850732" + }, + { + "routeId": "L111", + "platformId": "U227Z3", + "id": "a33d7cff-72eb-49d9-bd3a-7183907b8d50" + }, + { + "routeId": "L181", + "platformId": "U227Z3", + "id": "77c97de3-bb52-4446-b7f2-69d38c8b3d40" + }, + { + "routeId": "L183", + "platformId": "U227Z3", + "id": "a934ad65-514f-4256-8650-7d3ee8a29b15" + }, + { + "routeId": "L329", + "platformId": "U227Z3", + "id": "bc777d61-d719-4e6e-ad65-839726a4ca7d" + }, + { + "routeId": "L181", + "platformId": "U227Z4", + "id": "8fb2f570-79f7-4307-88cf-10615a7527c7" + }, + { + "routeId": "L183", + "platformId": "U227Z4", + "id": "2ab8f52a-ecd5-4a84-a9eb-e5a00c4ff780" + }, + { + "routeId": "L908", + "platformId": "U227Z4", + "id": "13097e65-d979-45f3-80d2-57d2fae00a89" + }, + { + "routeId": "L311", + "platformId": "U2280Z1", + "id": "d77ce338-617b-4c2f-8f6d-eeb401061c5b" + }, + { + "routeId": "L637", + "platformId": "U2280Z1", + "id": "82df9c6a-cda3-496f-b5c4-b7c025dab872" + }, + { + "routeId": "L632", + "platformId": "U2280Z1", + "id": "b5e76975-30ea-427f-b440-684ac2db8987" + }, + { + "routeId": "L1307", + "platformId": "U2280Z301", + "id": "ae0d40bf-513f-45db-852b-04fc377af20b" + }, + { + "routeId": "L2276", + "platformId": "U2280Z401", + "id": "d180212e-b0c2-4a67-a6d3-ee641d3375d5" + }, + { + "routeId": "L1302", + "platformId": "U2281Z301", + "id": "3370f847-fbe4-4fb2-84da-39d2994e98a3" + }, + { + "routeId": "L1322", + "platformId": "U2281Z301", + "id": "5606cbc5-837e-4a85-9e01-1362ad80aea0" + }, + { + "routeId": "L443", + "platformId": "U2282Z1", + "id": "fda673be-5750-4ce9-a303-52058ee967bb" + }, + { + "routeId": "L443", + "platformId": "U2282Z2", + "id": "f2607ffd-646c-4b4b-880f-667dd300c05d" + }, + { + "routeId": "L646", + "platformId": "U2285Z1", + "id": "5de671dc-f3ec-4531-9ccf-5195edf4af4d" + }, + { + "routeId": "L646", + "platformId": "U2285Z2", + "id": "6b343548-d60f-4358-8fb9-2fad55872feb" + }, + { + "routeId": "L316", + "platformId": "U2286Z1", + "id": "5e7f3d7b-6c67-42cc-840f-a58933929245" + }, + { + "routeId": "L370", + "platformId": "U2286Z1", + "id": "10a14c60-e26c-4cc2-b408-ac89479fb7c2" + }, + { + "routeId": "L466", + "platformId": "U2286Z1", + "id": "b16cb040-7349-4d68-bf6c-0e294481c478" + }, + { + "routeId": "L617", + "platformId": "U2286Z1", + "id": "1b599a7f-b49e-4001-ae32-4fcaef8d5094" + }, + { + "routeId": "L457", + "platformId": "U2286Z1", + "id": "e7f2e8df-0f3f-4cf1-a54c-553e2457a2f9" + }, + { + "routeId": "L470", + "platformId": "U2286Z1", + "id": "cbb72cd9-51b7-4683-9565-db2cd5386bbd" + }, + { + "routeId": "L620", + "platformId": "U2286Z1", + "id": "265550a2-d23f-4019-9d95-4e0d39f37c99" + }, + { + "routeId": "L646", + "platformId": "U2286Z1", + "id": "d22c9464-e254-46ca-aef1-3e6b01b236ee" + }, + { + "routeId": "L663", + "platformId": "U2286Z1", + "id": "e792d959-1a8c-4c42-959b-548aa8532cf1" + }, + { + "routeId": "L316", + "platformId": "U2286Z2", + "id": "2f0796e5-c7a9-404e-9b3f-6bc1bccb6e09" + }, + { + "routeId": "L370", + "platformId": "U2286Z2", + "id": "e69682df-07f9-4fd6-8902-a4929ea10749" + }, + { + "routeId": "L466", + "platformId": "U2286Z2", + "id": "048e08ae-bc8f-4cce-9e6d-eb61e765d3cb" + }, + { + "routeId": "L617", + "platformId": "U2286Z2", + "id": "57cd0b00-deef-4a8a-a179-e216672801b2" + }, + { + "routeId": "L457", + "platformId": "U2286Z2", + "id": "643adb88-9e68-40e7-ae31-3ef0b266eb04" + }, + { + "routeId": "L470", + "platformId": "U2286Z2", + "id": "0bf72c83-dff3-45e4-adff-dca9c4e46896" + }, + { + "routeId": "L620", + "platformId": "U2286Z2", + "id": "22b64be0-f7f2-4c05-bad4-2843628a3ddf" + }, + { + "routeId": "L646", + "platformId": "U2286Z2", + "id": "917786dd-8348-426c-87bd-c2f3151a598a" + }, + { + "routeId": "L663", + "platformId": "U2286Z2", + "id": "de4ca10c-64ec-4f51-8358-5b78f1f1a89d" + }, + { + "routeId": "L659", + "platformId": "U2287Z1", + "id": "3f8390a1-558b-46ec-8661-f12522cc9caa" + }, + { + "routeId": "L659", + "platformId": "U2287Z2", + "id": "734e909f-4b9f-4f79-9a93-6ee809f99564" + }, + { + "routeId": "L337", + "platformId": "U2288Z1", + "id": "715165d2-425c-43d1-a40a-840b3057a867" + }, + { + "routeId": "L335", + "platformId": "U2288Z1", + "id": "35828fc7-0d3a-47af-b2da-41d7928dbd72" + }, + { + "routeId": "L339", + "platformId": "U2288Z1", + "id": "ac610695-ce8f-49f0-b09c-a64c663481bb" + }, + { + "routeId": "L337", + "platformId": "U2288Z2", + "id": "135bfd65-774e-4c0f-888e-c91f989c5fc1" + }, + { + "routeId": "L335", + "platformId": "U2288Z2", + "id": "c7ea8e13-fa9d-4934-9441-41267f662e6e" + }, + { + "routeId": "L339", + "platformId": "U2288Z2", + "id": "0e88d92d-3888-4d60-baee-da14e33ce6b8" + }, + { + "routeId": "L659", + "platformId": "U2289Z1", + "id": "310a6189-bf17-44e1-85eb-5fcbfa18f15a" + }, + { + "routeId": "L659", + "platformId": "U2289Z2", + "id": "077b257a-6178-4e18-b7f8-4066e0d1b136" + }, + { + "routeId": "L113", + "platformId": "U228Z1", + "id": "fefdd3a2-a5bc-4417-8d3a-579afc100cbe" + }, + { + "routeId": "L956", + "platformId": "U228Z1", + "id": "5ad4d96c-78ce-4e13-85e9-811efc2b3649" + }, + { + "routeId": "L333", + "platformId": "U228Z1", + "id": "c1741f01-22e8-43b1-a514-5461d36ffe95" + }, + { + "routeId": "L960", + "platformId": "U228Z1", + "id": "493a60fd-c0aa-49f3-af82-c334625c921a" + }, + { + "routeId": "L993", + "platformId": "U228Z101", + "id": "94b85fe2-61a6-49e1-a314-a3db80b57758" + }, + { + "routeId": "L993", + "platformId": "U228Z102", + "id": "79215cad-1d34-4907-ae29-fff65e4d90e6" + }, + { + "routeId": "L138", + "platformId": "U228Z2", + "id": "e31c92df-89ce-4f46-bbe0-6fb64df63af7" + }, + { + "routeId": "L215", + "platformId": "U228Z2", + "id": "4a5627d2-ad8b-415f-95d8-ce079580ea1e" + }, + { + "routeId": "L189", + "platformId": "U228Z2", + "id": "2a59e21e-ad52-4d05-b08e-e03527092804" + }, + { + "routeId": "L193", + "platformId": "U228Z2", + "id": "670d0880-6dc7-42f0-aac2-cc0ebc4e25c9" + }, + { + "routeId": "L106", + "platformId": "U228Z3", + "id": "2aba0d2a-e2f1-41f2-8bfb-b4b388ff52b6" + }, + { + "routeId": "L139", + "platformId": "U228Z3", + "id": "64758ef9-39f2-4e8c-8cc5-68845c0e01eb" + }, + { + "routeId": "L150", + "platformId": "U228Z3", + "id": "0507e930-aad2-41a7-a002-2e206e4205b9" + }, + { + "routeId": "L196", + "platformId": "U228Z3", + "id": "e0e71262-fd6c-499d-9681-307663606918" + }, + { + "routeId": "L910", + "platformId": "U228Z3", + "id": "90c7d2ee-ca4d-436b-b35e-192cad33981d" + }, + { + "routeId": "L1308", + "platformId": "U228Z301", + "id": "7f740aa4-a439-4559-aaa1-6e7e26e354d3" + }, + { + "routeId": "L1388", + "platformId": "U228Z301", + "id": "7d95eb67-efec-4b91-8db7-9afb0713a31e" + }, + { + "routeId": "L138", + "platformId": "U228Z4", + "id": "0f6b6073-c0c0-4ad0-b070-ad81796be420" + }, + { + "routeId": "L139", + "platformId": "U228Z4", + "id": "b05f595a-3c98-48d4-b9c1-cfeda94f0001" + }, + { + "routeId": "L150", + "platformId": "U228Z4", + "id": "fc833f8b-361e-43af-9798-8996aab6a9c1" + }, + { + "routeId": "L193", + "platformId": "U228Z4", + "id": "3a8ce1bf-f392-4cda-a935-ca345457b0cb" + }, + { + "routeId": "L910", + "platformId": "U228Z4", + "id": "ade9db81-f27a-4ff5-805b-e26bdc30f526" + }, + { + "routeId": "L106", + "platformId": "U228Z5", + "id": "2fbdc4f4-aedc-41d4-9f1d-59b90b1d96c6" + }, + { + "routeId": "L113", + "platformId": "U228Z5", + "id": "45fb83db-dc91-4f0b-b983-2426ab6f0450" + }, + { + "routeId": "L139", + "platformId": "U228Z5", + "id": "a6fd2820-61ed-4c62-a85d-8def2d1e7572" + }, + { + "routeId": "L150", + "platformId": "U228Z5", + "id": "2d4d849b-980c-4f7f-8674-192ec910ca26" + }, + { + "routeId": "L196", + "platformId": "U228Z5", + "id": "82cb462b-0c45-4c03-8cc7-b4de98815348" + }, + { + "routeId": "L189", + "platformId": "U228Z5", + "id": "8a5779d7-25dc-488f-a522-90d645c902dd" + }, + { + "routeId": "L215", + "platformId": "U228Z5", + "id": "343e7f47-f0f1-4ee2-b92a-8b293e85e173" + }, + { + "routeId": "L910", + "platformId": "U228Z5", + "id": "994f174e-e067-407f-99eb-ac470c689d0e" + }, + { + "routeId": "L333", + "platformId": "U228Z5", + "id": "d9a20116-c7c6-4ef3-a54d-4d882089dbe9" + }, + { + "routeId": "L659", + "platformId": "U2290Z1", + "id": "82f4c311-0cde-46af-8c8d-1b24c6173c35" + }, + { + "routeId": "L659", + "platformId": "U2290Z2", + "id": "493254b6-0bf0-4df2-8a41-5f2e8e47e91c" + }, + { + "routeId": "L659", + "platformId": "U2291Z1", + "id": "78890d86-3879-4dae-b664-b5bd92004b2e" + }, + { + "routeId": "L659", + "platformId": "U2291Z2", + "id": "29fa3df2-9062-4ff9-a519-b3b27264deed" + }, + { + "routeId": "L434", + "platformId": "U2292Z1", + "id": "c229a2ac-c7ca-4b9f-80de-9eecee448027" + }, + { + "routeId": "L434", + "platformId": "U2292Z2", + "id": "35d58131-6e10-4bfc-a04c-cd8ee47369f7" + }, + { + "routeId": "L422", + "platformId": "U2293Z1", + "id": "50237c29-cd9a-41fc-821b-68e92aaaf199" + }, + { + "routeId": "L659", + "platformId": "U2293Z1", + "id": "19fe84c7-401e-4e7f-a987-5932c1a165e9" + }, + { + "routeId": "L660", + "platformId": "U2293Z1", + "id": "07404ac4-2835-4876-8b4a-fe4a1b725785" + }, + { + "routeId": "L422", + "platformId": "U2293Z2", + "id": "7085bb73-93c6-4be4-98a5-3e5f8764536b" + }, + { + "routeId": "L660", + "platformId": "U2293Z2", + "id": "d05c4b4c-c666-414f-a755-68d9f111bd1c" + }, + { + "routeId": "L659", + "platformId": "U2293Z2", + "id": "3802c124-c4b9-4985-89a3-af5e72440fe4" + }, + { + "routeId": "L422", + "platformId": "U2294Z1", + "id": "5908d92e-e3fb-471c-9378-bdbc0b6ce12a" + }, + { + "routeId": "L659", + "platformId": "U2294Z1", + "id": "bf4f6a3a-4d14-43b0-8803-8bdd363b3f85" + }, + { + "routeId": "L660", + "platformId": "U2294Z1", + "id": "779643a5-2f45-4397-aec9-1ce3555e03a3" + }, + { + "routeId": "L422", + "platformId": "U2294Z2", + "id": "ef7ea4e9-81b8-4870-9170-bea3bfbed0c4" + }, + { + "routeId": "L660", + "platformId": "U2294Z2", + "id": "36dc325f-2c33-4281-b057-19e823391db2" + }, + { + "routeId": "L659", + "platformId": "U2294Z2", + "id": "2127eded-18b3-4e04-8b8e-6f382493a2c3" + }, + { + "routeId": "L660", + "platformId": "U2295Z1", + "id": "acc019fd-4e64-4a3f-b2af-a713c2ca5209" + }, + { + "routeId": "L660", + "platformId": "U2295Z2", + "id": "11f7bdff-2c5d-4a65-9cad-984d30ce0171" + }, + { + "routeId": "L660", + "platformId": "U2296Z1", + "id": "2372eda5-96a0-48f6-91ba-d86178d5e3c1" + }, + { + "routeId": "L660", + "platformId": "U2296Z52", + "id": "a354b02c-df8c-4142-beb4-1dc4b2a3398d" + }, + { + "routeId": "L660", + "platformId": "U2297Z1", + "id": "2b94f7d1-7efa-477f-ab39-4ac239a032c6" + }, + { + "routeId": "L660", + "platformId": "U2298Z1", + "id": "8920ed72-bf15-4305-ae0b-dfa8b38997b3" + }, + { + "routeId": "L660", + "platformId": "U2298Z2", + "id": "ca54e63f-a78e-4f1e-a563-ea730aa46ae4" + }, + { + "routeId": "L660", + "platformId": "U2299Z1", + "id": "62aa01bd-d859-4962-b965-9a306c7b6acb" + }, + { + "routeId": "L660", + "platformId": "U2299Z2", + "id": "c24ee275-1c3b-4533-b3af-bf0a9a8699e0" + }, + { + "routeId": "L180", + "platformId": "U229Z1", + "id": "555783a8-87b3-4b44-9e1d-10aaa3d0b9f3" + }, + { + "routeId": "L902", + "platformId": "U229Z1", + "id": "ea62466b-402f-4a82-ae3b-2235b37fc27c" + }, + { + "routeId": "L180", + "platformId": "U229Z2", + "id": "87084d47-10b0-4168-93ce-ab2160d04137" + }, + { + "routeId": "L902", + "platformId": "U229Z2", + "id": "cc03a060-3f3a-48c1-9d64-0695fb102f87" + }, + { + "routeId": "L164", + "platformId": "U229Z2", + "id": "e0fcece8-c937-4be8-92bc-52bac05ce046" + }, + { + "routeId": "L164", + "platformId": "U229Z3", + "id": "02afbf37-9d6c-4452-ae52-b296f23e4803" + }, + { + "routeId": "L906", + "platformId": "U22Z1", + "id": "1e275311-c82d-4438-8b34-02677ec74a0c" + }, + { + "routeId": "L228", + "platformId": "U22Z1", + "id": "8264a31e-6ede-4788-82ce-14863d492348" + }, + { + "routeId": "L325", + "platformId": "U22Z1", + "id": "5943295f-4e85-4f2a-8baa-c3b57ee3b47e" + }, + { + "routeId": "L906", + "platformId": "U22Z2", + "id": "1e48c172-3728-4bb3-bb62-bdde4b95f398" + }, + { + "routeId": "L228", + "platformId": "U22Z2", + "id": "fa3187dd-42e9-4a26-b80e-956623adf972" + }, + { + "routeId": "L325", + "platformId": "U22Z2", + "id": "0418c498-cb23-4672-aeb3-efd162be5828" + }, + { + "routeId": "L422", + "platformId": "U2300Z1", + "id": "7e7ae06d-f176-4229-8f74-75f33bf1196b" + }, + { + "routeId": "L424", + "platformId": "U2300Z1", + "id": "ffac8d87-aacf-4171-8d76-838780d47dae" + }, + { + "routeId": "L421", + "platformId": "U2300Z1", + "id": "4d13006d-dc3f-493f-9fa4-7a75bfaa5711" + }, + { + "routeId": "L662", + "platformId": "U2300Z1", + "id": "0ac0c772-e0f3-43c9-b255-42879c3c8a15" + }, + { + "routeId": "L422", + "platformId": "U2300Z2", + "id": "2bcca7ce-572c-4bf9-a9b7-c29ccdf60121" + }, + { + "routeId": "L424", + "platformId": "U2300Z2", + "id": "a303a0c5-112e-4fc2-a0e2-789f7dd23d7d" + }, + { + "routeId": "L421", + "platformId": "U2300Z2", + "id": "fa68f691-a131-430a-b2cd-6264320d7144" + }, + { + "routeId": "L662", + "platformId": "U2300Z2", + "id": "b509272a-5af3-4dc2-9e44-91fb11b50849" + }, + { + "routeId": "L422", + "platformId": "U2301Z1", + "id": "ec6da411-6275-4e42-8afe-f801678251eb" + }, + { + "routeId": "L422", + "platformId": "U2301Z2", + "id": "59f0637c-d5b2-4972-b1be-bd7795ddc0bd" + }, + { + "routeId": "L424", + "platformId": "U2301Z3", + "id": "f6d675b9-da6b-420d-adbf-6cc9af74df0a" + }, + { + "routeId": "L421", + "platformId": "U2301Z3", + "id": "d3515e5c-b5db-42aa-8b45-19700f4b371e" + }, + { + "routeId": "L424", + "platformId": "U2301Z4", + "id": "fd4d22f7-23c9-4700-a816-227411b3bdc7" + }, + { + "routeId": "L421", + "platformId": "U2301Z4", + "id": "4c281e51-cae3-4d1d-9797-a5a8d6bae05b" + }, + { + "routeId": "L378", + "platformId": "U2304Z1", + "id": "65718df3-2d30-447e-97d9-5da9d613c7f8" + }, + { + "routeId": "L378", + "platformId": "U2304Z2", + "id": "c921c011-8636-44fc-842a-43658c14461f" + }, + { + "routeId": "L422", + "platformId": "U2305Z1", + "id": "afdf86d2-c853-4d5d-bdf5-e4edbd67f4db" + }, + { + "routeId": "L422", + "platformId": "U2305Z2", + "id": "a3220f8a-aadb-45af-ac4c-6b0963b6af00" + }, + { + "routeId": "L422", + "platformId": "U2306Z1", + "id": "5692a83a-9fcc-4f2c-b99e-44977efd090b" + }, + { + "routeId": "L422", + "platformId": "U2306Z2", + "id": "f165cdb7-9427-435a-bc7b-3b5f5eee2415" + }, + { + "routeId": "L422", + "platformId": "U2308Z1", + "id": "6d731b9d-8b23-4114-8c62-fe3e626b2b59" + }, + { + "routeId": "L662", + "platformId": "U2308Z1", + "id": "c86054b7-0551-4c70-89dc-54c779e7e6ba" + }, + { + "routeId": "L422", + "platformId": "U2308Z2", + "id": "3d380110-7b5a-4b22-ab4b-594ef3156fae" + }, + { + "routeId": "L662", + "platformId": "U2308Z2", + "id": "f05d520e-ed3f-4ef7-8183-d0bdc1575d48" + }, + { + "routeId": "L662", + "platformId": "U2309Z1", + "id": "8e571312-19f3-4375-aaea-c66a51123a3d" + }, + { + "routeId": "L662", + "platformId": "U2309Z2", + "id": "26960493-6d81-4153-a844-4ae42f368474" + }, + { + "routeId": "L116", + "platformId": "U230Z1", + "id": "16958884-ad9a-458d-8dc8-579ed5e02fe3" + }, + { + "routeId": "L116", + "platformId": "U230Z2", + "id": "dd60af3f-7004-4943-806d-e864da62032e" + }, + { + "routeId": "L662", + "platformId": "U2310Z1", + "id": "d9171b12-5f00-4033-940e-055b25198f00" + }, + { + "routeId": "L662", + "platformId": "U2310Z2", + "id": "4e6fd199-4818-4bee-9c50-5fc5583f09e6" + }, + { + "routeId": "L391", + "platformId": "U2311Z1", + "id": "4241992c-d0a6-4691-901e-4f6927addfe9" + }, + { + "routeId": "L391", + "platformId": "U2311Z2", + "id": "a9e085b5-77ad-40d4-a684-55a291b85bb5" + }, + { + "routeId": "L422", + "platformId": "U2312Z1", + "id": "975b8ac1-cf35-4bb2-99e3-b16e18d2d40c" + }, + { + "routeId": "L662", + "platformId": "U2312Z1", + "id": "44362b28-dd4d-49ce-af19-6ac43d321209" + }, + { + "routeId": "L422", + "platformId": "U2312Z2", + "id": "8290e67a-7d33-4c06-9654-87656e051f6f" + }, + { + "routeId": "L662", + "platformId": "U2312Z2", + "id": "0a67ee25-9cc0-4429-89ae-acdd71fe8c6b" + }, + { + "routeId": "L422", + "platformId": "U2313Z1", + "id": "e53d3618-8ada-4552-bbb1-8267b73ee23b" + }, + { + "routeId": "L422", + "platformId": "U2313Z2", + "id": "a3e26ae3-42f7-40b5-954e-fafa1aceb893" + }, + { + "routeId": "L1219", + "platformId": "U2314Z301", + "id": "b689896d-f0e2-48a1-813f-e3faf3422f29" + }, + { + "routeId": "L1218", + "platformId": "U2314Z301", + "id": "e56fa8dd-6dd2-4ad7-a9bb-7e54f7703746" + }, + { + "routeId": "L1210", + "platformId": "U2314Z301", + "id": "a127660d-98c6-46e7-bc9a-52bfc5cc88a4" + }, + { + "routeId": "L1209", + "platformId": "U2314Z301", + "id": "0010e9d8-df7c-496f-854e-22f0786935fa" + }, + { + "routeId": "L1301", + "platformId": "U2314Z301", + "id": "c7fbb14b-7981-44ab-bc3b-ea945d22b6a7" + }, + { + "routeId": "L423", + "platformId": "U2315Z1", + "id": "89035930-ff38-426c-860e-d795790fed79" + }, + { + "routeId": "L686", + "platformId": "U2315Z1", + "id": "3f61f122-c1e4-4eec-bc67-16378271270e" + }, + { + "routeId": "L432", + "platformId": "U2316Z1", + "id": "c6f55620-40f7-4990-bd54-31e7c21b82ce" + }, + { + "routeId": "L432", + "platformId": "U2316Z2", + "id": "ca5dc8b7-e7d2-4397-a0aa-838b74379c25" + }, + { + "routeId": "L659", + "platformId": "U2319Z1", + "id": "91bc656f-f16d-4191-8966-f864743da565" + }, + { + "routeId": "L659", + "platformId": "U2319Z2", + "id": "b4d6b652-66a8-4121-98bf-49aebfc79642" + }, + { + "routeId": "L1", + "platformId": "U231Z1", + "id": "a912d53c-82b7-4d3e-86d9-ec73cf85ebc2" + }, + { + "routeId": "L8", + "platformId": "U231Z1", + "id": "24c136e1-4fe1-44a7-a8d9-c27316116e2c" + }, + { + "routeId": "L12", + "platformId": "U231Z1", + "id": "a75ddb8f-043a-43d4-9b1d-8dd37f7e33c4" + }, + { + "routeId": "L14", + "platformId": "U231Z1", + "id": "beba8a9f-c990-4c45-87ff-5b3a231a69d5" + }, + { + "routeId": "L25", + "platformId": "U231Z1", + "id": "710fbd44-0023-46ac-948b-486f8bf44474" + }, + { + "routeId": "L26", + "platformId": "U231Z1", + "id": "e7e4b796-9b2c-4f1c-b49d-16cfdef2106d" + }, + { + "routeId": "L91", + "platformId": "U231Z1", + "id": "75c544ae-e89a-4af3-8922-dc233b926ea0" + }, + { + "routeId": "L96", + "platformId": "U231Z1", + "id": "aeab61ac-3151-4df7-b06f-f126d5808fc2" + }, + { + "routeId": "L1", + "platformId": "U231Z2", + "id": "94845e26-fa1b-49f2-b7fe-c9901a861b23" + }, + { + "routeId": "L8", + "platformId": "U231Z2", + "id": "c777541e-0a69-4c5e-8bbc-199ddf6eeb11" + }, + { + "routeId": "L12", + "platformId": "U231Z2", + "id": "1019c08a-08cf-4f11-8251-8cdbea97b9e2" + }, + { + "routeId": "L14", + "platformId": "U231Z2", + "id": "53df2b60-0469-4418-9dca-043e7f583ac0" + }, + { + "routeId": "L25", + "platformId": "U231Z2", + "id": "2e7bc7ce-4590-40bd-bf13-4cffad642f6b" + }, + { + "routeId": "L26", + "platformId": "U231Z2", + "id": "3e1b2e81-cba3-43a0-934b-da4898d70398" + }, + { + "routeId": "L91", + "platformId": "U231Z2", + "id": "1524c303-867d-4c0d-af06-644cbacf5ca6" + }, + { + "routeId": "L96", + "platformId": "U231Z2", + "id": "480cf217-1302-4831-bf5f-b7d15c005370" + }, + { + "routeId": "L156", + "platformId": "U231Z2", + "id": "8627c9d7-f3a7-45b6-841b-53b6b0c5a084" + }, + { + "routeId": "L659", + "platformId": "U2320Z1", + "id": "6f16779a-86b7-48a8-becc-7c128011dae2" + }, + { + "routeId": "L659", + "platformId": "U2320Z2", + "id": "3d963580-a9ce-478b-b38d-44759776f051" + }, + { + "routeId": "L380", + "platformId": "U2321Z1", + "id": "9db14c95-53b2-4bc1-bc5a-ede46bf8ed7a" + }, + { + "routeId": "L380", + "platformId": "U2321Z2", + "id": "a739d560-d643-4fc4-81d2-4e952e4e9ea8" + }, + { + "routeId": "L380", + "platformId": "U2322Z1", + "id": "2a08a23f-a291-4f89-b8c7-f6f9858f350d" + }, + { + "routeId": "L380", + "platformId": "U2322Z2", + "id": "a8c31ca7-5401-4bce-8a66-eb86f392f74e" + }, + { + "routeId": "L307", + "platformId": "U2323Z1", + "id": "0ce8f3a6-2e6e-45d2-984c-86dcc2a1fc64" + }, + { + "routeId": "L311", + "platformId": "U2323Z1", + "id": "bc3c6378-7726-4284-a397-55d67bb91610" + }, + { + "routeId": "L380", + "platformId": "U2323Z1", + "id": "c4145526-afc7-4899-be46-a7303f6c85eb" + }, + { + "routeId": "L308", + "platformId": "U2323Z1", + "id": "edd03b9c-f9de-4e5f-84e9-4009f5e44bfe" + }, + { + "routeId": "L952", + "platformId": "U2323Z1", + "id": "2cd73009-3b16-423e-92cf-1a807ff7ae1b" + }, + { + "routeId": "L307", + "platformId": "U2323Z2", + "id": "47f1cf7f-8263-44d3-b616-9552cfb77b86" + }, + { + "routeId": "L311", + "platformId": "U2323Z2", + "id": "ea2f0c37-1461-4b0f-95e0-41e56789ad1c" + }, + { + "routeId": "L308", + "platformId": "U2323Z2", + "id": "a050cbc0-9667-4aae-9ee9-bdcf62afe7a6" + }, + { + "routeId": "L380", + "platformId": "U2323Z2", + "id": "6b91a2ef-d8b4-40b7-bcab-737c2c207c19" + }, + { + "routeId": "L952", + "platformId": "U2323Z2", + "id": "936fbac8-bd8c-4893-b0f9-e5d2c4dabb24" + }, + { + "routeId": "L311", + "platformId": "U2324Z1", + "id": "29b67f05-1b79-4472-b15e-25842ad6a06a" + }, + { + "routeId": "L308", + "platformId": "U2324Z1", + "id": "78c8f6ad-5ca0-4446-9cc8-d6955ec1024b" + }, + { + "routeId": "L952", + "platformId": "U2324Z1", + "id": "e3d76c13-f5ec-44a9-b2fb-3f772b256411" + }, + { + "routeId": "L311", + "platformId": "U2324Z2", + "id": "a3cbe014-2f2f-4f10-a943-d6b3cb4ffebe" + }, + { + "routeId": "L308", + "platformId": "U2324Z2", + "id": "c0f82239-a7d1-40bb-859c-b3fd446a2991" + }, + { + "routeId": "L952", + "platformId": "U2324Z2", + "id": "9a70d850-ba57-40f0-a9e6-33cb974e595f" + }, + { + "routeId": "L371", + "platformId": "U2325Z1", + "id": "0feb10c2-1f21-457b-bb39-85af4070af94" + }, + { + "routeId": "L368", + "platformId": "U2327Z1", + "id": "eb37f0e4-6cbf-4490-be2a-1ee8f099a5fd" + }, + { + "routeId": "L368", + "platformId": "U2327Z2", + "id": "db59ec37-f221-40a9-a711-5cc951ad0246" + }, + { + "routeId": "L477", + "platformId": "U2328Z1", + "id": "3524a358-1116-4497-be1a-ae6fa6061c97" + }, + { + "routeId": "L477", + "platformId": "U2328Z2", + "id": "18eb5fb6-b75a-4ce4-9444-647e034f2fb3" + }, + { + "routeId": "L2223", + "platformId": "U2328Z401", + "id": "59a26caa-b3c8-4e7c-9cd1-54be317e92f7" + }, + { + "routeId": "L2223", + "platformId": "U2328Z402", + "id": "7ce0c5b5-e6bb-466e-bb0c-f512cc93aa85" + }, + { + "routeId": "L377", + "platformId": "U2329Z1", + "id": "5fed8ad1-3679-4143-9a79-ac2d6a523665" + }, + { + "routeId": "L477", + "platformId": "U2329Z1", + "id": "068a899f-9542-4573-adbf-55a7b0a98e1c" + }, + { + "routeId": "L377", + "platformId": "U2329Z2", + "id": "bf80f179-02bf-4f6d-89ee-b3f637b5c7cc" + }, + { + "routeId": "L477", + "platformId": "U2329Z2", + "id": "8fcdd7c2-89c3-418b-b291-dad12793eb63" + }, + { + "routeId": "L314", + "platformId": "U232Z1", + "id": "0a30372a-c644-4a98-ab17-da1824061fd6" + }, + { + "routeId": "L360", + "platformId": "U232Z1", + "id": "2943a20b-09d9-4054-8252-43bb3f6c2db0" + }, + { + "routeId": "L361", + "platformId": "U232Z1", + "id": "8d458242-1354-4a4a-9042-2b4824e0f80a" + }, + { + "routeId": "L390", + "platformId": "U232Z1", + "id": "9eda86e5-e3ee-46f1-b54d-115e33c78938" + }, + { + "routeId": "L314", + "platformId": "U232Z2", + "id": "f8e2107a-3eae-4359-8b75-12475f8f3196" + }, + { + "routeId": "L360", + "platformId": "U232Z2", + "id": "ca915e92-ba17-4934-8fa9-f61f4cbc0527" + }, + { + "routeId": "L361", + "platformId": "U232Z2", + "id": "1c357116-5b5f-4973-b8bb-239b3664c1ce" + }, + { + "routeId": "L390", + "platformId": "U232Z2", + "id": "82583e67-98ab-4d10-892d-e28345a37750" + }, + { + "routeId": "L368", + "platformId": "U2330Z1", + "id": "978c25df-a535-40fc-8ca0-5b5d6732abe3" + }, + { + "routeId": "L368", + "platformId": "U2330Z2", + "id": "f0c29524-e713-4ff7-9593-f78837628294" + }, + { + "routeId": "L1221", + "platformId": "U2331Z301", + "id": "5351db1f-cf86-418a-b194-501e84c96248" + }, + { + "routeId": "L1303", + "platformId": "U2331Z301", + "id": "2c5f6e98-813e-4153-b099-e99172f60ac5" + }, + { + "routeId": "L348", + "platformId": "U2334Z1", + "id": "458ea018-40f8-4cf5-8256-4ad084bbf0b2" + }, + { + "routeId": "L369", + "platformId": "U2334Z1", + "id": "f78d2fa5-9de3-4ad1-9cb2-be8f7f99c262" + }, + { + "routeId": "L348", + "platformId": "U2334Z2", + "id": "0e8e80ed-d60c-4e89-8f0e-fea8b9d44453" + }, + { + "routeId": "L369", + "platformId": "U2334Z2", + "id": "96144ce1-b4b2-48c3-b4d1-a7146acd1779" + }, + { + "routeId": "L348", + "platformId": "U2335Z1", + "id": "9337f152-b2e1-4b12-a86b-23b5f63854ff" + }, + { + "routeId": "L471", + "platformId": "U2335Z1", + "id": "5fe313e1-30cf-479d-8e54-80da02d251a8" + }, + { + "routeId": "L348", + "platformId": "U2335Z2", + "id": "dd98af45-abc8-4a3a-916d-c2c4d376e389" + }, + { + "routeId": "L471", + "platformId": "U2335Z2", + "id": "04d42f73-383b-4bee-a5a4-910c8ac1d8b2" + }, + { + "routeId": "L471", + "platformId": "U2336Z1", + "id": "4232d1b3-af45-4ffa-84c4-8086ff13063b" + }, + { + "routeId": "L471", + "platformId": "U2336Z2", + "id": "cd4fbd59-3cb5-4abf-a8f0-311f86190c3c" + }, + { + "routeId": "L372", + "platformId": "U2337Z1", + "id": "2980bc08-64dd-442d-88eb-b346ac0ae39d" + }, + { + "routeId": "L372", + "platformId": "U2337Z2", + "id": "b7595774-86aa-4b7d-97e4-22556d154596" + }, + { + "routeId": "L1343", + "platformId": "U2337Z301", + "id": "c76e0f98-2f1f-4517-bfea-e1d305227634" + }, + { + "routeId": "L372", + "platformId": "U2338Z1", + "id": "24019e86-43cc-4b8d-9450-1c10d56203c5" + }, + { + "routeId": "L372", + "platformId": "U2338Z2", + "id": "046c0c27-00b2-41c4-941f-528cfa8bf9d7" + }, + { + "routeId": "L372", + "platformId": "U2339Z1", + "id": "3b2bbcb7-1f09-47dd-bcd1-250950de29ee" + }, + { + "routeId": "L372", + "platformId": "U2339Z2", + "id": "964b5825-db1d-4a48-8891-e2cda223e616" + }, + { + "routeId": "L147", + "platformId": "U233Z1", + "id": "37c54075-5d46-4b0b-96ed-553fe354b6d0" + }, + { + "routeId": "L107", + "platformId": "U233Z2", + "id": "0b1b97d8-2df3-406e-afe0-9f9ae5b02f38" + }, + { + "routeId": "L147", + "platformId": "U233Z2", + "id": "02cb4528-67a8-451d-b3fc-38a083e3fa9d" + }, + { + "routeId": "L909", + "platformId": "U233Z2", + "id": "3b149e0e-df70-4aa5-8df5-f049bd64e63d" + }, + { + "routeId": "L107", + "platformId": "U233Z3", + "id": "a98ad982-32b8-4767-bc8e-9d3c5326f265" + }, + { + "routeId": "L909", + "platformId": "U233Z3", + "id": "73f56e5f-469c-4ef0-bbd6-79f346d86eb1" + }, + { + "routeId": "L470", + "platformId": "U2340Z1", + "id": "8365c1d8-5ee2-439b-b1d4-fe57b19fd319" + }, + { + "routeId": "L470", + "platformId": "U2340Z2", + "id": "3a7ffc95-b02f-465e-93a0-b007fb17f6ea" + }, + { + "routeId": "L470", + "platformId": "U2341Z1", + "id": "0cead2f2-1bd1-4e7a-9213-32c7e002fffd" + }, + { + "routeId": "L470", + "platformId": "U2341Z2", + "id": "d4163704-73b0-44f7-b6b3-9aac795a08a5" + }, + { + "routeId": "L470", + "platformId": "U2342Z1", + "id": "b0dc1048-7eb4-4dc5-afdd-4af6affc4e9c" + }, + { + "routeId": "L470", + "platformId": "U2342Z2", + "id": "cccfbee1-1106-47d4-8886-9cd7ed0fcf4b" + }, + { + "routeId": "L348", + "platformId": "U2343Z1", + "id": "f54316c1-3adb-410b-aea5-8012442ebe0e" + }, + { + "routeId": "L369", + "platformId": "U2343Z1", + "id": "7b62e575-c3ba-4840-98e0-5c2053522c29" + }, + { + "routeId": "L348", + "platformId": "U2343Z2", + "id": "23257b1d-70f8-4b81-8e8d-ee859ba45723" + }, + { + "routeId": "L369", + "platformId": "U2343Z2", + "id": "56990d6e-fe69-4913-bd93-36db9aaf25a5" + }, + { + "routeId": "L1221", + "platformId": "U2345Z301", + "id": "4b8f12d4-601f-46a6-a238-81fc13bca2f7" + }, + { + "routeId": "L1303", + "platformId": "U2345Z301", + "id": "77b7ce91-05fe-4dd0-aa0f-f235027b56ae" + }, + { + "routeId": "L370", + "platformId": "U2346Z1", + "id": "4e99b619-6f94-4792-bb51-b81c15abaf48" + }, + { + "routeId": "L466", + "platformId": "U2346Z1", + "id": "ab2c6379-d82c-409e-8cfb-d2889ec78f1c" + }, + { + "routeId": "L470", + "platformId": "U2346Z1", + "id": "21a9aed2-50da-4d86-9833-a425776a61dc" + }, + { + "routeId": "L646", + "platformId": "U2346Z1", + "id": "7509d694-df9f-4fe3-a955-573615a9a25b" + }, + { + "routeId": "L370", + "platformId": "U2346Z2", + "id": "c63f778b-cbc0-4306-8c9f-7954cabf39f6" + }, + { + "routeId": "L466", + "platformId": "U2346Z2", + "id": "4678fcd5-fc2a-4bdd-98bd-1c98ff8dfd05" + }, + { + "routeId": "L470", + "platformId": "U2346Z2", + "id": "d397eff1-efa6-4dbe-8516-d98c03d6349f" + }, + { + "routeId": "L646", + "platformId": "U2346Z2", + "id": "67f41cda-d536-4607-bb9b-42c38c641ba3" + }, + { + "routeId": "L374", + "platformId": "U2347Z1", + "id": "64b92bd9-6cbf-40ec-b82e-46d7de97ddc4" + }, + { + "routeId": "L655", + "platformId": "U2349Z1", + "id": "115bf49c-2ad7-4170-ad51-2a4960b79932" + }, + { + "routeId": "L443", + "platformId": "U2349Z1", + "id": "e8facc78-57df-4b5c-a5da-433af02ae261" + }, + { + "routeId": "L662", + "platformId": "U2349Z1", + "id": "14ed8d27-63a7-431c-b5b1-663862b725e9" + }, + { + "routeId": "L655", + "platformId": "U2349Z2", + "id": "ae94169b-5a28-4c5f-bb3b-3f4ca990475e" + }, + { + "routeId": "L443", + "platformId": "U2349Z2", + "id": "1377f4e9-d7cb-4997-bc7b-d4099ebae31c" + }, + { + "routeId": "L662", + "platformId": "U2349Z2", + "id": "2455592a-a649-480e-b73f-d3adcfaefdd5" + }, + { + "routeId": "L1302", + "platformId": "U2349Z301", + "id": "1ddb4aa2-11ca-42aa-a881-6273a0b883eb" + }, + { + "routeId": "L1322", + "platformId": "U2349Z301", + "id": "77d6df81-a471-42cb-8176-6ec0cb67b7e4" + }, + { + "routeId": "L2223", + "platformId": "U2349Z402", + "id": "2be63065-6317-4eeb-a9dd-4e7613cc806e" + }, + { + "routeId": "L123", + "platformId": "U234Z1", + "id": "f6b54e14-eca0-4305-89b0-74a5e012f98b" + }, + { + "routeId": "L655", + "platformId": "U2350Z1", + "id": "229bf421-1e34-40b7-9b83-ae0b3d065740" + }, + { + "routeId": "L655", + "platformId": "U2350Z2", + "id": "05860d7e-e6f1-488e-9671-0739411a584a" + }, + { + "routeId": "L655", + "platformId": "U2351Z1", + "id": "4df125b1-b8f0-4dd6-a012-25dc8c999305" + }, + { + "routeId": "L655", + "platformId": "U2351Z2", + "id": "1fed9c0e-a83f-4f21-b524-bfd050009e4d" + }, + { + "routeId": "L655", + "platformId": "U2352Z1", + "id": "227ba912-10c4-47f6-acb5-36012a63df49" + }, + { + "routeId": "L655", + "platformId": "U2352Z2", + "id": "dfa2c598-8e65-433d-9d31-a851f9999c1b" + }, + { + "routeId": "L354", + "platformId": "U2353Z1", + "id": "77ecff2d-5235-48aa-bfe6-2103bbff404d" + }, + { + "routeId": "L655", + "platformId": "U2353Z1", + "id": "0895639d-2eb6-4f1c-8e9b-f1350992d6bb" + }, + { + "routeId": "L398", + "platformId": "U2353Z1", + "id": "ccc68490-5a99-46aa-aa4c-93bc563fbe1a" + }, + { + "routeId": "L354", + "platformId": "U2353Z2", + "id": "fc35d2a9-981e-4166-aaf2-42c78441e9be" + }, + { + "routeId": "L655", + "platformId": "U2353Z2", + "id": "e1886f19-d03f-467c-b01c-74c2db67be0e" + }, + { + "routeId": "L398", + "platformId": "U2353Z2", + "id": "f3b9231a-cac4-44f8-a763-fe166100f8b5" + }, + { + "routeId": "L423", + "platformId": "U2356Z1", + "id": "babe082d-974d-4481-b248-11a930f2c5b7" + }, + { + "routeId": "L686", + "platformId": "U2356Z1", + "id": "10f6af0c-64c5-425c-a4c2-962e44cc0606" + }, + { + "routeId": "L423", + "platformId": "U2356Z2", + "id": "5cef3816-4053-4ff6-b5bf-d5b141d8445a" + }, + { + "routeId": "L686", + "platformId": "U2356Z2", + "id": "2af2b9b1-ec2e-4432-86fe-38ad41cecf82" + }, + { + "routeId": "L425", + "platformId": "U2357Z1", + "id": "9816816a-306b-46ac-894a-def0080c28f8" + }, + { + "routeId": "L425", + "platformId": "U2357Z2", + "id": "d78423ff-1bc3-43c7-bc39-f572fb684300" + }, + { + "routeId": "L423", + "platformId": "U2358Z1", + "id": "f4112165-1252-44da-bc52-1ba6c8a7e8c7" + }, + { + "routeId": "L686", + "platformId": "U2358Z1", + "id": "7d5a3b6b-c1ab-4256-8c55-6f983b46c35c" + }, + { + "routeId": "L423", + "platformId": "U2358Z2", + "id": "889b2049-83f1-4ecf-ab31-62fbc38b2631" + }, + { + "routeId": "L686", + "platformId": "U2358Z2", + "id": "2af6e917-8239-4ead-90b6-921f16f55c10" + }, + { + "routeId": "L489", + "platformId": "U2359Z1", + "id": "307672e2-334d-4505-9340-bd82bc55866c" + }, + { + "routeId": "L489", + "platformId": "U2359Z2", + "id": "d6a2dfce-5b37-49ec-82a4-c47493e1a283" + }, + { + "routeId": "L685", + "platformId": "U2360Z1", + "id": "a98878f5-fca2-4cb6-81b3-3a8d9094b6a8" + }, + { + "routeId": "L489", + "platformId": "U2360Z1", + "id": "3f294f2d-1d5b-448d-b0d0-525c06ff1b96" + }, + { + "routeId": "L490", + "platformId": "U2360Z1", + "id": "8cc53689-17bc-4591-a653-449d69c5075a" + }, + { + "routeId": "L685", + "platformId": "U2360Z2", + "id": "e7e88d1e-54d1-48d8-bc6f-bf8006d04111" + }, + { + "routeId": "L489", + "platformId": "U2360Z2", + "id": "87eebd4f-c7b5-40c4-8a92-d2b52fb92d28" + }, + { + "routeId": "L490", + "platformId": "U2360Z2", + "id": "50e7fd0a-9d54-48bb-b4ca-cfd633d324ca" + }, + { + "routeId": "L490", + "platformId": "U2361Z1", + "id": "744386dc-f602-4984-bb37-3537beb113dc" + }, + { + "routeId": "L490", + "platformId": "U2361Z2", + "id": "29a2c6ef-cacc-4172-9414-8096ef5f8ebf" + }, + { + "routeId": "L669", + "platformId": "U2362Z2", + "id": "83f39c76-185d-4e78-acfb-2f6df0dafe0f" + }, + { + "routeId": "L669", + "platformId": "U2363Z1", + "id": "40b29833-cb77-4dc4-b7a4-76ac67499d02" + }, + { + "routeId": "L669", + "platformId": "U2363Z2", + "id": "7db18959-2e0f-47c1-841c-09de825e08e9" + }, + { + "routeId": "L1226", + "platformId": "U2366Z301", + "id": "2f981bd8-6949-47b0-8966-46e40668b263" + }, + { + "routeId": "L1306", + "platformId": "U2366Z301", + "id": "1254f874-2abc-4fda-afe1-257e1340107d" + }, + { + "routeId": "L380", + "platformId": "U2368Z1", + "id": "64e95ff0-83ed-4a2d-a6da-946c733b635c" + }, + { + "routeId": "L952", + "platformId": "U2368Z1", + "id": "0d3debbd-2adf-4711-b796-483da29c35a2" + }, + { + "routeId": "L380", + "platformId": "U2368Z2", + "id": "7f936693-d323-4192-b2ed-5a3e27ce52d4" + }, + { + "routeId": "L952", + "platformId": "U2368Z2", + "id": "8df6dcff-0f74-4ad4-9061-98ea9eaca4da" + }, + { + "routeId": "L380", + "platformId": "U2369Z1", + "id": "914b9cb0-b506-4cdb-8a0f-97cc4b22a7fd" + }, + { + "routeId": "L952", + "platformId": "U2369Z1", + "id": "838565d5-c3d0-4a48-9e27-42520839bbd5" + }, + { + "routeId": "L380", + "platformId": "U2369Z2", + "id": "372bb563-5dd5-403e-8202-45b2f40d1e4e" + }, + { + "routeId": "L952", + "platformId": "U2369Z2", + "id": "e1002117-56c7-4e8e-aece-fdcbad3a3721" + }, + { + "routeId": "L9", + "platformId": "U236Z1", + "id": "a8a675bb-ff32-427a-9536-4725cb9a8c1d" + }, + { + "routeId": "L10", + "platformId": "U236Z1", + "id": "08197d37-e9c7-47fd-b50c-3af0e77640ee" + }, + { + "routeId": "L98", + "platformId": "U236Z1", + "id": "f49fdc6a-b4b7-4549-8fd4-a71e6eb83c5e" + }, + { + "routeId": "L99", + "platformId": "U236Z1", + "id": "57dde609-9a02-42ad-83df-0da8175c9fbb" + }, + { + "routeId": "L9", + "platformId": "U236Z2", + "id": "14d0cbae-3bb4-47fb-a412-dc46d3bcf853" + }, + { + "routeId": "L10", + "platformId": "U236Z2", + "id": "6503985d-167b-40e2-b08a-3a7c69e8ca42" + }, + { + "routeId": "L98", + "platformId": "U236Z2", + "id": "39076c8a-3c15-4922-bcca-c815c4296301" + }, + { + "routeId": "L99", + "platformId": "U236Z2", + "id": "da6191f9-da77-4f0a-9ecb-86cba83cdcd9" + }, + { + "routeId": "L180", + "platformId": "U236Z3", + "id": "4c3d47a3-37c4-40bd-a754-7d235100cce1" + }, + { + "routeId": "L225", + "platformId": "U236Z3", + "id": "6cb094eb-0aa5-40db-ba6b-2b4213db7d0f" + }, + { + "routeId": "L164", + "platformId": "U236Z3", + "id": "eaa67738-b5d3-4d09-a5b6-8e4eafdded7f" + }, + { + "routeId": "L180", + "platformId": "U236Z4", + "id": "a6a78024-df65-4dec-92ea-6067cf6800f9" + }, + { + "routeId": "L225", + "platformId": "U236Z4", + "id": "2cd47d62-5f7e-4182-9bcf-9606e84a24cf" + }, + { + "routeId": "L164", + "platformId": "U236Z4", + "id": "9f508d13-3164-4c51-b1f8-5b2ca61b7704" + }, + { + "routeId": "L380", + "platformId": "U2370Z1", + "id": "8f53be33-f3b4-48f4-995e-c8cbc66f87fb" + }, + { + "routeId": "L384", + "platformId": "U2370Z1", + "id": "ff7a68bf-d5e7-4fad-b2dd-b5747979c607" + }, + { + "routeId": "L952", + "platformId": "U2370Z1", + "id": "3d2738be-456c-4199-8ce7-3cd16d6aa953" + }, + { + "routeId": "L425", + "platformId": "U2370Z1", + "id": "936ae4ea-9c96-4345-a6d5-6a284c13b6d2" + }, + { + "routeId": "L636", + "platformId": "U2370Z1", + "id": "8d988407-b67e-41fc-ae30-2de5453c8fca" + }, + { + "routeId": "L380", + "platformId": "U2370Z2", + "id": "24bfcced-14f3-4220-80d3-25a2850cdbb0" + }, + { + "routeId": "L952", + "platformId": "U2370Z2", + "id": "2d913375-190c-4ad8-8c2d-48227eb9f2a3" + }, + { + "routeId": "L384", + "platformId": "U2370Z2", + "id": "566cf81c-2b54-45cd-8bae-608066087872" + }, + { + "routeId": "L425", + "platformId": "U2370Z2", + "id": "5642f4c7-6308-46fd-94de-477ee33645bb" + }, + { + "routeId": "L636", + "platformId": "U2370Z2", + "id": "c72152ad-f568-4e69-af69-988627070170" + }, + { + "routeId": "L380", + "platformId": "U2371Z1", + "id": "08be8ce5-e734-44a1-81a7-5eb6584be070" + }, + { + "routeId": "L384", + "platformId": "U2371Z1", + "id": "45ecf130-357c-4388-a931-80a1d2dac866" + }, + { + "routeId": "L952", + "platformId": "U2371Z1", + "id": "ae7d9e0d-c949-4e97-8bb5-afe8fb5b15a9" + }, + { + "routeId": "L380", + "platformId": "U2371Z2", + "id": "4b2f0fbd-170e-4de2-ac2e-44a550c58dbd" + }, + { + "routeId": "L952", + "platformId": "U2371Z2", + "id": "e4d8da66-f31c-422f-880f-db0d96326f31" + }, + { + "routeId": "L384", + "platformId": "U2371Z2", + "id": "2a184b46-b1b6-446f-a4ab-452721ee8a16" + }, + { + "routeId": "L380", + "platformId": "U2372Z1", + "id": "e19c69c1-8fc8-4365-a982-20b2e6033cae" + }, + { + "routeId": "L384", + "platformId": "U2372Z1", + "id": "f9b7c634-7613-42c5-a4d6-9ce963ecb605" + }, + { + "routeId": "L952", + "platformId": "U2372Z1", + "id": "68b0756f-a21a-4de1-ad68-1a7de63c6bf5" + }, + { + "routeId": "L380", + "platformId": "U2372Z2", + "id": "2daadc90-6348-48a3-9112-bd872c460285" + }, + { + "routeId": "L952", + "platformId": "U2372Z2", + "id": "592c9701-a230-4f34-87d1-5a99e8aea02f" + }, + { + "routeId": "L384", + "platformId": "U2372Z2", + "id": "cda0875c-9952-430f-a9e7-899590f76da2" + }, + { + "routeId": "L380", + "platformId": "U2373Z1", + "id": "ac6ef6df-392d-43da-841e-f330726527a4" + }, + { + "routeId": "L384", + "platformId": "U2373Z1", + "id": "57152546-f07f-4083-897e-37b274106074" + }, + { + "routeId": "L952", + "platformId": "U2373Z1", + "id": "ff96da9b-6c53-403f-9a22-403cf0a153fa" + }, + { + "routeId": "L380", + "platformId": "U2373Z2", + "id": "52b85e31-e89c-4229-b809-7f3416b11469" + }, + { + "routeId": "L952", + "platformId": "U2373Z2", + "id": "e0d124d8-e19e-4b90-b33e-626f4ab765cb" + }, + { + "routeId": "L384", + "platformId": "U2373Z2", + "id": "d2c135e5-66e6-475a-a9d6-5d10aa8a1eaf" + }, + { + "routeId": "L1226", + "platformId": "U2373Z301", + "id": "a178376a-80ae-4bd4-9fd9-ab5fcb336cee" + }, + { + "routeId": "L1306", + "platformId": "U2373Z301", + "id": "4ff8f86b-81be-4262-a99a-36210c938491" + }, + { + "routeId": "L499", + "platformId": "U2374Z1", + "id": "06cbe824-4098-46cd-92c2-fac4c6092d27" + }, + { + "routeId": "L434", + "platformId": "U2374Z1", + "id": "5bedbb15-d9a8-44c3-821e-cec5c4c17014" + }, + { + "routeId": "L499", + "platformId": "U2374Z2", + "id": "13ef40be-3f0c-4492-b672-dad21569a253" + }, + { + "routeId": "L434", + "platformId": "U2374Z2", + "id": "89963e8c-7eb2-496c-9cc8-03b9f009c31c" + }, + { + "routeId": "L688", + "platformId": "U2376Z1", + "id": "5d514994-4972-41f4-bd78-3a9bbe9ece2e" + }, + { + "routeId": "L688", + "platformId": "U2376Z2", + "id": "c37fd886-c68a-4459-895f-a9df1c2c713b" + }, + { + "routeId": "L311", + "platformId": "U2377Z1", + "id": "6c6ed3d9-4662-40bb-8b6a-2fbdcab44a02" + }, + { + "routeId": "L669", + "platformId": "U2378Z1", + "id": "985c2981-4f49-4555-81fe-eeb4e1a4b15b" + }, + { + "routeId": "L669", + "platformId": "U2378Z2", + "id": "98041938-754b-40c0-8756-b09fb4c0013b" + }, + { + "routeId": "L655", + "platformId": "U2379Z1", + "id": "16d9297d-5fe3-49c6-bc6c-e8eec446a412" + }, + { + "routeId": "L655", + "platformId": "U2379Z2", + "id": "b29c339f-7d66-47e4-afef-cf98b6377488" + }, + { + "routeId": "L2", + "platformId": "U237Z1", + "id": "0867e48a-1afd-4b0e-b494-c3a538df87fd" + }, + { + "routeId": "L3", + "platformId": "U237Z1", + "id": "ff7a7ff3-0449-4702-becd-942c07168a10" + }, + { + "routeId": "L10", + "platformId": "U237Z1", + "id": "16ddd008-903b-4a4e-bc42-57ee5d8f35c8" + }, + { + "routeId": "L14", + "platformId": "U237Z1", + "id": "1a556e82-a038-457b-b74c-b05f78bd472a" + }, + { + "routeId": "L15", + "platformId": "U237Z1", + "id": "8947ad14-9239-435f-a93f-531bb7be1c01" + }, + { + "routeId": "L16", + "platformId": "U237Z1", + "id": "1754a9c1-523c-4688-8246-c3f044f550fe" + }, + { + "routeId": "L18", + "platformId": "U237Z1", + "id": "7ea0b144-ffc9-4f38-ae25-78d69d81aa4c" + }, + { + "routeId": "L92", + "platformId": "U237Z1", + "id": "2500f00c-7307-42a8-968f-7fefb5b61fc9" + }, + { + "routeId": "L93", + "platformId": "U237Z1", + "id": "b4652197-4135-41bc-b11e-73645d437649" + }, + { + "routeId": "L94", + "platformId": "U237Z1", + "id": "3e66ceb6-904b-4fa2-9676-99c142603c0d" + }, + { + "routeId": "L95", + "platformId": "U237Z1", + "id": "3bd5a8c2-43bd-4c64-ac54-3ae7b2537113" + }, + { + "routeId": "L176", + "platformId": "U237Z10", + "id": "846564fd-5457-4ee8-96ee-9c353f6347c1" + }, + { + "routeId": "L148", + "platformId": "U237Z10", + "id": "ec52ecf4-12e1-4e61-9443-a442225bb2fa" + }, + { + "routeId": "L904", + "platformId": "U237Z10", + "id": "b0e47713-594c-480b-986b-7a5b4a2fa178" + }, + { + "routeId": "L907", + "platformId": "U237Z10", + "id": "d799ba8f-4ffb-4efc-ad22-fe29863c4d0e" + }, + { + "routeId": "L908", + "platformId": "U237Z10", + "id": "5f6dc8c3-e54f-4424-b686-5ad702104082" + }, + { + "routeId": "L910", + "platformId": "U237Z10", + "id": "9a49a560-2b1e-4c75-8849-5b1e9a461838" + }, + { + "routeId": "L992", + "platformId": "U237Z101", + "id": "8797f8e4-f05c-4ea5-932e-a67657c23b2c" + }, + { + "routeId": "L992", + "platformId": "U237Z102", + "id": "a459e189-33ea-4256-b823-cfacdef6d960" + }, + { + "routeId": "L2", + "platformId": "U237Z13", + "id": "1a250209-5e7d-458a-9062-350dfbda7b99" + }, + { + "routeId": "L3", + "platformId": "U237Z13", + "id": "04417dfc-9e6e-4ca4-843b-79726abab619" + }, + { + "routeId": "L6", + "platformId": "U237Z13", + "id": "03daea77-84ed-44e0-aedd-d396de34048e" + }, + { + "routeId": "L14", + "platformId": "U237Z13", + "id": "f50eaee0-9df6-4d1d-af10-60a6327c6e87" + }, + { + "routeId": "L15", + "platformId": "U237Z13", + "id": "819712e2-e951-4634-b6cf-7a3fa8ae1af1" + }, + { + "routeId": "L18", + "platformId": "U237Z13", + "id": "9f02fb36-933a-4a53-a1c1-db3bb61b2935" + }, + { + "routeId": "L22", + "platformId": "U237Z13", + "id": "1321b84b-8156-42db-bf0b-10163bc354e0" + }, + { + "routeId": "L23", + "platformId": "U237Z13", + "id": "774b0e64-0e3b-4be3-9154-eedc72eff941" + }, + { + "routeId": "L91", + "platformId": "U237Z13", + "id": "4c3780c7-70f9-47f7-83af-b0badc586ae4" + }, + { + "routeId": "L92", + "platformId": "U237Z13", + "id": "f76d7c05-8ba9-4970-ad67-ba86ed9a94bd" + }, + { + "routeId": "L93", + "platformId": "U237Z13", + "id": "acac1f03-b265-4b49-a21b-8c2c269b8fa0" + }, + { + "routeId": "L94", + "platformId": "U237Z13", + "id": "39fe409e-5695-4bb2-9d7c-9134007636d5" + }, + { + "routeId": "L95", + "platformId": "U237Z13", + "id": "c5d9c319-d35d-4067-b2d8-c9f4b4c7957c" + }, + { + "routeId": "L96", + "platformId": "U237Z13", + "id": "d6ea4a01-b5ed-4a66-826f-07f484274498" + }, + { + "routeId": "L97", + "platformId": "U237Z13", + "id": "1168538d-93ce-4da9-b0d3-843e1ac3f160" + }, + { + "routeId": "L99", + "platformId": "U237Z13", + "id": "a16a3857-206d-4416-971b-7d2686639355" + }, + { + "routeId": "L2", + "platformId": "U237Z2", + "id": "92d2d8f2-da8d-4858-ab8b-19837f937d50" + }, + { + "routeId": "L3", + "platformId": "U237Z2", + "id": "3426ec61-dc41-46f8-b3ce-98ff445aa42f" + }, + { + "routeId": "L6", + "platformId": "U237Z2", + "id": "205cc5ee-59e6-4b2c-aefe-6c2bb7fbfd8d" + }, + { + "routeId": "L14", + "platformId": "U237Z2", + "id": "f6eeba06-31b8-4a79-bc5f-49977ec8ed37" + }, + { + "routeId": "L15", + "platformId": "U237Z2", + "id": "05314c06-3aac-420a-9384-b7db39cedb2a" + }, + { + "routeId": "L18", + "platformId": "U237Z2", + "id": "811be37b-f069-4b46-bb45-925960ccb3ca" + }, + { + "routeId": "L22", + "platformId": "U237Z2", + "id": "b8b299c9-658c-409a-89e7-be0722a208de" + }, + { + "routeId": "L23", + "platformId": "U237Z2", + "id": "10fc0b4a-7458-49c7-b650-231f731f2a4e" + }, + { + "routeId": "L91", + "platformId": "U237Z2", + "id": "0e1a1650-88d6-4301-9ab6-39fb9ee2a142" + }, + { + "routeId": "L92", + "platformId": "U237Z2", + "id": "605a8efc-cb8c-4cf7-a96f-ace49ac20d20" + }, + { + "routeId": "L93", + "platformId": "U237Z2", + "id": "0b780003-34eb-45db-9f75-bfe9b90a3c84" + }, + { + "routeId": "L94", + "platformId": "U237Z2", + "id": "18c0f425-c8e7-44e4-b0f4-3711afc9f120" + }, + { + "routeId": "L95", + "platformId": "U237Z2", + "id": "7d7c6b47-04a5-4893-a0f4-bf4483c7c313" + }, + { + "routeId": "L96", + "platformId": "U237Z2", + "id": "f2a4258f-313d-4f9b-8bbc-a8e5ac245eb8" + }, + { + "routeId": "L97", + "platformId": "U237Z2", + "id": "15e1da97-d90a-4797-a997-87c1f0547696" + }, + { + "routeId": "L99", + "platformId": "U237Z2", + "id": "66fcbfa1-4775-48f4-8e94-50f2ec288de4" + }, + { + "routeId": "L148", + "platformId": "U237Z22", + "id": "9696213f-840b-4d1f-b6c9-6bf75f20d91a" + }, + { + "routeId": "L6", + "platformId": "U237Z3", + "id": "e73324ef-efe3-4100-8732-4bfb309c877d" + }, + { + "routeId": "L10", + "platformId": "U237Z3", + "id": "9dea43e6-caf9-4b12-bfec-7a11e233f5eb" + }, + { + "routeId": "L16", + "platformId": "U237Z3", + "id": "7374466c-7804-4d57-8bae-c8726d339158" + }, + { + "routeId": "L22", + "platformId": "U237Z3", + "id": "a56f45ed-817c-40fe-8ae8-021cae3d94b3" + }, + { + "routeId": "L23", + "platformId": "U237Z3", + "id": "2f5661e9-fa1f-46cb-86f1-e19aab785878" + }, + { + "routeId": "L91", + "platformId": "U237Z3", + "id": "0064d794-16d8-4055-890b-427adac68c06" + }, + { + "routeId": "L96", + "platformId": "U237Z3", + "id": "962dba46-5539-45cc-8184-32f613573951" + }, + { + "routeId": "L97", + "platformId": "U237Z3", + "id": "b6fa5f5f-a546-4937-acc6-43b0027a5899" + }, + { + "routeId": "L99", + "platformId": "U237Z3", + "id": "8d1aa415-2358-42e5-bf28-3321f784cf85" + }, + { + "routeId": "L2", + "platformId": "U237Z4", + "id": "b532a951-e1d0-4456-97a7-5da576e46a5f" + }, + { + "routeId": "L3", + "platformId": "U237Z4", + "id": "6271361d-f73e-4dfa-a17d-54ad6d7cb964" + }, + { + "routeId": "L10", + "platformId": "U237Z4", + "id": "620d735d-c4a6-4e98-9ccd-4a5df25e5b0f" + }, + { + "routeId": "L14", + "platformId": "U237Z4", + "id": "617e7a57-88e4-4a78-9c50-4d0738c4d075" + }, + { + "routeId": "L15", + "platformId": "U237Z4", + "id": "8cfca0eb-ab5c-406a-9cb9-3efcd4d522d0" + }, + { + "routeId": "L16", + "platformId": "U237Z4", + "id": "40b6c588-af5d-4ef7-9ed9-56558c99c98a" + }, + { + "routeId": "L18", + "platformId": "U237Z4", + "id": "1cc07cc4-c2d1-4b6a-b9e7-f76ac455117d" + }, + { + "routeId": "L92", + "platformId": "U237Z4", + "id": "d2dd1480-8203-43da-958e-cac66e4ec4f4" + }, + { + "routeId": "L93", + "platformId": "U237Z4", + "id": "54080ee5-197a-4321-a702-f5e29ba961e1" + }, + { + "routeId": "L94", + "platformId": "U237Z4", + "id": "8a998144-e538-4655-8e00-22f12964435d" + }, + { + "routeId": "L95", + "platformId": "U237Z4", + "id": "84d06c1e-c5e0-4c28-a0ea-0ef7abeb6142" + }, + { + "routeId": "L2", + "platformId": "U237Z5", + "id": "0f27574e-3f82-41e7-b3b5-cea554ae7ca6" + }, + { + "routeId": "L3", + "platformId": "U237Z5", + "id": "33e1f9c9-a3d8-42e0-8b61-c8ffb048504d" + }, + { + "routeId": "L10", + "platformId": "U237Z5", + "id": "43ff6624-3075-4a18-974e-7da406e84b6b" + }, + { + "routeId": "L15", + "platformId": "U237Z5", + "id": "dc8db374-23a6-47f4-92b0-28088a034b22" + }, + { + "routeId": "L16", + "platformId": "U237Z5", + "id": "8a414866-6573-4827-9963-891da052e0f8" + }, + { + "routeId": "L92", + "platformId": "U237Z5", + "id": "13efd8aa-3c86-450c-bb98-7209a05461cf" + }, + { + "routeId": "L94", + "platformId": "U237Z5", + "id": "96209038-43da-4a9b-a704-027c9920a9d3" + }, + { + "routeId": "L2", + "platformId": "U237Z6", + "id": "ae97a339-eb02-4f9a-955d-d962cb2236fb" + }, + { + "routeId": "L3", + "platformId": "U237Z6", + "id": "ec514903-f2c4-4c3c-ad87-eaafe0b50d7c" + }, + { + "routeId": "L10", + "platformId": "U237Z6", + "id": "4423999a-8e8f-4d44-89c0-0497232ea819" + }, + { + "routeId": "L15", + "platformId": "U237Z6", + "id": "d9032d6a-189d-4694-b63f-e75921777e42" + }, + { + "routeId": "L16", + "platformId": "U237Z6", + "id": "ac9945fa-2c7a-4523-bef8-256df1005e52" + }, + { + "routeId": "L92", + "platformId": "U237Z6", + "id": "34b738ca-fe0a-4c9e-a533-1fadc26df16d" + }, + { + "routeId": "L94", + "platformId": "U237Z6", + "id": "7c6f5591-494f-4ea4-87da-ccc4ba4ef7fd" + }, + { + "routeId": "L176", + "platformId": "U237Z6", + "id": "fed5de36-2601-496b-8fcf-642fd0120fb2" + }, + { + "routeId": "L904", + "platformId": "U237Z6", + "id": "942f9dfa-31b6-4b1f-9d44-633eb2ebd4ab" + }, + { + "routeId": "L907", + "platformId": "U237Z6", + "id": "bb3d9884-d843-4e32-920f-f850c8103cdc" + }, + { + "routeId": "L908", + "platformId": "U237Z6", + "id": "d142fe7b-5730-4004-8b21-2bb678a35bee" + }, + { + "routeId": "L910", + "platformId": "U237Z6", + "id": "892eda7c-89e8-4ee4-b23e-f286b26f4521" + }, + { + "routeId": "L2", + "platformId": "U237Z7", + "id": "d5510aad-69c5-4b09-9dfd-eb5e17503af3" + }, + { + "routeId": "L3", + "platformId": "U237Z7", + "id": "09cfb9ff-7027-4216-8f4f-930c85a07477" + }, + { + "routeId": "L7", + "platformId": "U237Z7", + "id": "cb4fa0d2-e307-433e-bc37-67fddb53da3e" + }, + { + "routeId": "L17", + "platformId": "U237Z7", + "id": "6aebe50a-32b5-444f-8f8a-086f20339eea" + }, + { + "routeId": "L27", + "platformId": "U237Z7", + "id": "e9433b94-7a5d-4c83-8573-cd1ee4a6ec06" + }, + { + "routeId": "L92", + "platformId": "U237Z7", + "id": "2b97933a-da00-4d7f-bde3-704cfc835d94" + }, + { + "routeId": "L2", + "platformId": "U237Z8", + "id": "47001115-02d6-4cdb-ac59-2bf3ea403c50" + }, + { + "routeId": "L3", + "platformId": "U237Z8", + "id": "74b02802-d085-4c58-99b8-d96131caf38b" + }, + { + "routeId": "L7", + "platformId": "U237Z8", + "id": "4d9e9a8f-ecf6-4736-9ee8-a4ecd2dfe06d" + }, + { + "routeId": "L17", + "platformId": "U237Z8", + "id": "b4f2c9eb-9118-4045-845b-fb63f24997c5" + }, + { + "routeId": "L27", + "platformId": "U237Z8", + "id": "9171b8f7-0d87-40bc-92f6-4406468b8837" + }, + { + "routeId": "L92", + "platformId": "U237Z8", + "id": "ae845d7a-763c-4316-b366-cd961f276d52" + }, + { + "routeId": "L176", + "platformId": "U237Z9", + "id": "bd21164d-aec8-412c-9449-63c859fd49f8" + }, + { + "routeId": "L423", + "platformId": "U2380Z1", + "id": "00148229-7c4e-4e86-9791-803bd56dfe84" + }, + { + "routeId": "L686", + "platformId": "U2380Z1", + "id": "224a6dc6-89d1-4a12-85b5-9688035ed8f8" + }, + { + "routeId": "L423", + "platformId": "U2380Z2", + "id": "956f98e0-ed74-430d-9f93-55c450084720" + }, + { + "routeId": "L686", + "platformId": "U2380Z2", + "id": "06ff69e6-f1fa-4757-8143-fcb378c6733c" + }, + { + "routeId": "L421", + "platformId": "U2381Z1", + "id": "94b34d82-b651-452e-9f7f-b1d7f9faebe2" + }, + { + "routeId": "L421", + "platformId": "U2381Z2", + "id": "875a865a-c38b-4a0b-a9b0-2562e0edeb14" + }, + { + "routeId": "L421", + "platformId": "U2382Z1", + "id": "096d3257-d249-46c7-b765-29aab5b2bf3e" + }, + { + "routeId": "L421", + "platformId": "U2383Z1", + "id": "897e8367-b1dd-4b22-a713-9912eb15c502" + }, + { + "routeId": "L421", + "platformId": "U2383Z2", + "id": "077378f6-4613-480b-a56b-432b370eceb9" + }, + { + "routeId": "L383", + "platformId": "U2384Z1", + "id": "c7352975-1774-4022-bd72-22b9c988562f" + }, + { + "routeId": "L383", + "platformId": "U2384Z2", + "id": "84cbae98-c3d8-4e9b-bbb2-a3cb6d50ffa7" + }, + { + "routeId": "L421", + "platformId": "U2385Z1", + "id": "cde29741-ba2d-4355-8f3a-bf7e586675bf" + }, + { + "routeId": "L421", + "platformId": "U2385Z2", + "id": "1387b6f4-7c16-475d-898d-e767bc5b6fd7" + }, + { + "routeId": "L421", + "platformId": "U2386Z1", + "id": "a7964efc-47ba-4866-b5fd-abadef1dd88c" + }, + { + "routeId": "L421", + "platformId": "U2386Z2", + "id": "4c380b55-7370-472e-b926-4993228e5e89" + }, + { + "routeId": "L421", + "platformId": "U2387Z1", + "id": "aa534b01-c29f-4fbf-ac60-3cbf46298a4e" + }, + { + "routeId": "L421", + "platformId": "U2387Z2", + "id": "b46c18b1-b00b-4547-8a0d-1a997805ef84" + }, + { + "routeId": "L425", + "platformId": "U2388Z1", + "id": "1cedc3b0-6eaa-4cce-a889-8bc6f914325a" + }, + { + "routeId": "L425", + "platformId": "U2388Z2", + "id": "c0cdef74-b9aa-4e55-b9c2-dcf0001139da" + }, + { + "routeId": "L425", + "platformId": "U2389Z1", + "id": "3b7e7d6c-cc3b-4d53-9617-929d9710e4eb" + }, + { + "routeId": "L425", + "platformId": "U2389Z2", + "id": "c7f260c9-8369-4c29-a052-38a9c56b30a4" + }, + { + "routeId": "L149", + "platformId": "U238Z1", + "id": "6a738ccf-ce3e-46e6-a4b3-6823f321fb1e" + }, + { + "routeId": "L149", + "platformId": "U238Z2", + "id": "a0b747ad-5ecb-4bfd-90b8-abb0cb114c27" + }, + { + "routeId": "L421", + "platformId": "U2390Z1", + "id": "33d94758-f87c-4c94-b700-09f1c76757d8" + }, + { + "routeId": "L425", + "platformId": "U2391Z1", + "id": "885c517a-ae5b-4290-bcaa-5f601e58d76f" + }, + { + "routeId": "L425", + "platformId": "U2391Z2", + "id": "2ec75185-e62b-413b-91fb-309c829343a0" + }, + { + "routeId": "L424", + "platformId": "U2392Z1", + "id": "9c872720-4cc5-4101-a34f-2504ad04a05f" + }, + { + "routeId": "L424", + "platformId": "U2392Z2", + "id": "64023fbd-b4b8-4c32-8137-d02ced404a1e" + }, + { + "routeId": "L425", + "platformId": "U2393Z1", + "id": "355e2418-698c-46a8-b97c-a1d2dd147bc7" + }, + { + "routeId": "L425", + "platformId": "U2393Z2", + "id": "4e12b320-af38-4d53-b3f1-512d4d719189" + }, + { + "routeId": "L421", + "platformId": "U2394Z1", + "id": "c79a7ce3-3630-49d1-855c-c0d51aaddeca" + }, + { + "routeId": "L435", + "platformId": "U2395Z1", + "id": "67f889d6-c3b8-4515-a8a9-2783288f8e44" + }, + { + "routeId": "L435", + "platformId": "U2395Z2", + "id": "59560feb-1468-41dd-99bf-c9bebd41a9b4" + }, + { + "routeId": "L435", + "platformId": "U2397Z1", + "id": "8b971a00-1d33-4437-9677-3898cd051027" + }, + { + "routeId": "L435", + "platformId": "U2397Z2", + "id": "3bb439bc-7060-4eaf-a4d1-b77b12ca5796" + }, + { + "routeId": "L435", + "platformId": "U2398Z1", + "id": "a3241db5-35ec-4b63-83e2-bb88d6e79135" + }, + { + "routeId": "L491", + "platformId": "U2398Z1", + "id": "28840dc9-c726-4928-b411-4f7d7954cb6f" + }, + { + "routeId": "L662", + "platformId": "U2398Z1", + "id": "11fe53e7-133c-4b6f-ab0a-1b0cafd94690" + }, + { + "routeId": "L435", + "platformId": "U2399Z1", + "id": "001703cd-d847-4326-a373-f75487783bac" + }, + { + "routeId": "L491", + "platformId": "U2399Z1", + "id": "bc04e7fe-800d-4317-a5d8-15dd3ddb8b32" + }, + { + "routeId": "L662", + "platformId": "U2399Z1", + "id": "20d36734-14cb-42b8-a62d-6c36bc6a123b" + }, + { + "routeId": "L122", + "platformId": "U239Z1", + "id": "50a84a0c-45bd-4cf8-a279-4dbb50982ad7" + }, + { + "routeId": "L906", + "platformId": "U239Z1", + "id": "3e6f6173-faab-40d7-82db-6507caca4fa5" + }, + { + "routeId": "L363", + "platformId": "U239Z1", + "id": "95bb4edd-4528-45da-a2ba-f4e3d6c471e9" + }, + { + "routeId": "L122", + "platformId": "U239Z2", + "id": "d3eb699e-03cf-4f64-87e9-08e105221cb7" + }, + { + "routeId": "L906", + "platformId": "U239Z2", + "id": "6e12838e-6a9b-4850-a760-f1bedeab5cf1" + }, + { + "routeId": "L363", + "platformId": "U239Z2", + "id": "2ad79ec7-11e3-413d-9ddf-d789888535ca" + }, + { + "routeId": "L126", + "platformId": "U23Z1", + "id": "c7f56af3-8835-4f8f-a774-3775aa0b59d5" + }, + { + "routeId": "L170", + "platformId": "U23Z1", + "id": "4f5724ff-537d-4ae7-a705-569a78954b0a" + }, + { + "routeId": "L126", + "platformId": "U23Z2", + "id": "fccbf02e-406e-42e9-a11c-98f193719071" + }, + { + "routeId": "L170", + "platformId": "U23Z2", + "id": "3f1c64d8-b5bd-4357-8318-e10394c7c920" + }, + { + "routeId": "L662", + "platformId": "U2400Z1", + "id": "025b6567-5a72-4b28-884b-a99134c5e55b" + }, + { + "routeId": "L435", + "platformId": "U2400Z2", + "id": "746ccc53-97aa-4844-ba95-7ef17cdaa1ed" + }, + { + "routeId": "L662", + "platformId": "U2400Z2", + "id": "6a66b98f-924f-4f9a-a9aa-44d99cafd7b5" + }, + { + "routeId": "L662", + "platformId": "U2402Z1", + "id": "45fc8ac4-f0e1-48d2-a8e4-91e12513615b" + }, + { + "routeId": "L662", + "platformId": "U2402Z2", + "id": "d2213d0f-330c-49c6-b868-ae6b4fa64ab3" + }, + { + "routeId": "L661", + "platformId": "U2403Z1", + "id": "104aa6ce-dbfe-46c9-8288-15e96f67f7dd" + }, + { + "routeId": "L661", + "platformId": "U2403Z2", + "id": "f0e5f545-8cb5-4df8-a466-c19ddd09b1cd" + }, + { + "routeId": "L435", + "platformId": "U2404Z1", + "id": "6222483e-4423-4941-a853-566bec828b25" + }, + { + "routeId": "L662", + "platformId": "U2404Z1", + "id": "a528d09e-07bb-49ac-b3e8-2779fd7b830b" + }, + { + "routeId": "L435", + "platformId": "U2404Z2", + "id": "58468e48-c8cc-4a53-a6e3-e65ce2d5f49b" + }, + { + "routeId": "L662", + "platformId": "U2404Z2", + "id": "7479e5b0-c3c7-460f-94b3-123f604c587e" + }, + { + "routeId": "L435", + "platformId": "U2405Z1", + "id": "44954123-0cd0-4b3e-9b2e-bfa0cbe064be" + }, + { + "routeId": "L662", + "platformId": "U2405Z1", + "id": "8fac7f39-3681-4331-8e65-846ac92d0329" + }, + { + "routeId": "L435", + "platformId": "U2405Z2", + "id": "10aebd80-6985-4187-82a0-5d53f5af2f66" + }, + { + "routeId": "L662", + "platformId": "U2405Z2", + "id": "f3156afb-a05d-48eb-9fbf-6e596ec24fcf" + }, + { + "routeId": "L435", + "platformId": "U2406Z1", + "id": "3169f5c3-dd33-4e7f-ab69-95ac0eb07d83" + }, + { + "routeId": "L662", + "platformId": "U2406Z1", + "id": "1d571478-6dd3-4027-af6b-753400e24764" + }, + { + "routeId": "L435", + "platformId": "U2406Z2", + "id": "748e5774-6cf4-4233-9072-c56f3dbd329d" + }, + { + "routeId": "L662", + "platformId": "U2406Z2", + "id": "3dc0e3c0-4ec1-4209-b359-2566d41cbd3f" + }, + { + "routeId": "L435", + "platformId": "U2407Z1", + "id": "9355782f-73e6-4e66-983a-39228bd8f8cd" + }, + { + "routeId": "L435", + "platformId": "U2407Z2", + "id": "9de73164-f670-47f1-87ec-761f36a26f4c" + }, + { + "routeId": "L435", + "platformId": "U2409Z1", + "id": "b4913f66-08e3-4c1c-b27b-114f0a3b4645" + }, + { + "routeId": "L662", + "platformId": "U2409Z1", + "id": "2d0329f9-71d4-47ab-a83e-b03cf352ffce" + }, + { + "routeId": "L435", + "platformId": "U2409Z2", + "id": "cc335612-0872-4ec5-9fec-7023bd192d14" + }, + { + "routeId": "L662", + "platformId": "U2409Z2", + "id": "0fe0693f-9666-4796-82a0-5730d0cc3b85" + }, + { + "routeId": "L9", + "platformId": "U240Z1", + "id": "cd303c6c-845a-4b64-9568-a097859908fc" + }, + { + "routeId": "L10", + "platformId": "U240Z1", + "id": "97b20274-558b-43df-9a18-590e75c2d83c" + }, + { + "routeId": "L15", + "platformId": "U240Z1", + "id": "1d48bd4c-bb5a-4c83-a7f3-71ea9dbeb7a6" + }, + { + "routeId": "L16", + "platformId": "U240Z1", + "id": "d9ec5127-8c20-4707-a7d6-2c573385a0c5" + }, + { + "routeId": "L98", + "platformId": "U240Z1", + "id": "8184309d-c946-4f83-ac43-5730c2683b75" + }, + { + "routeId": "L99", + "platformId": "U240Z1", + "id": "607fe9dd-54aa-47d9-8be7-10dd5eee04b0" + }, + { + "routeId": "L9", + "platformId": "U240Z2", + "id": "c7501b40-5abb-4cc8-82fe-9eb23d56a0e2" + }, + { + "routeId": "L10", + "platformId": "U240Z2", + "id": "932c8d87-c19a-4629-affc-2b568fcdf734" + }, + { + "routeId": "L15", + "platformId": "U240Z2", + "id": "396451b0-31c2-4da8-8977-ae05e42357e7" + }, + { + "routeId": "L16", + "platformId": "U240Z2", + "id": "6298a759-2d29-4526-9636-acf0cd9fdb2c" + }, + { + "routeId": "L98", + "platformId": "U240Z2", + "id": "ca03aca6-0c8c-4831-ac1d-aba96f208eec" + }, + { + "routeId": "L99", + "platformId": "U240Z2", + "id": "9d7b04a1-e70b-4e95-97bd-11758710b3df" + }, + { + "routeId": "L123", + "platformId": "U240Z3", + "id": "90cd56ef-282e-42f9-b5c4-4925534d05e8" + }, + { + "routeId": "L123", + "platformId": "U240Z4", + "id": "bde29ce4-5743-41c6-9ff2-5577bf3662e5" + }, + { + "routeId": "L167", + "platformId": "U240Z4", + "id": "2e2fec44-1f74-4640-a208-cfc48e9c1337" + }, + { + "routeId": "L123", + "platformId": "U240Z5", + "id": "2e5d87a7-d644-497f-9b64-52f2ce6925e8" + }, + { + "routeId": "L167", + "platformId": "U240Z5", + "id": "de9265e0-08bb-406e-9c2d-c3113970496c" + }, + { + "routeId": "L435", + "platformId": "U2410Z51", + "id": "4b58bbc6-beb7-44eb-bef9-2fcb8817f0b0" + }, + { + "routeId": "L435", + "platformId": "U2410Z52", + "id": "452a02bb-f514-4e44-9085-6401da9742bb" + }, + { + "routeId": "L435", + "platformId": "U2411Z1", + "id": "d3947bb6-388d-4cf4-9adf-cfde39a71bc8" + }, + { + "routeId": "L435", + "platformId": "U2411Z2", + "id": "cfe9484a-efc0-4f19-ae1e-dd438db41b39" + }, + { + "routeId": "L435", + "platformId": "U2414Z1", + "id": "1b022f06-041f-4fb2-9ec7-1dccb5a4e554" + }, + { + "routeId": "L435", + "platformId": "U2414Z2", + "id": "e859127e-7b00-4a13-99d8-294dcb25b190" + }, + { + "routeId": "L662", + "platformId": "U2415Z1", + "id": "3ddf899c-667e-4a87-9883-2806f0d2ee69" + }, + { + "routeId": "L662", + "platformId": "U2415Z2", + "id": "b31d9a40-70ad-4c61-b2ad-78e4788bc683" + }, + { + "routeId": "L662", + "platformId": "U2416Z1", + "id": "78f73a46-0284-40ae-a328-9ef1100a3f40" + }, + { + "routeId": "L662", + "platformId": "U2416Z2", + "id": "c80c958a-3552-4ac9-add4-c0380375bf1b" + }, + { + "routeId": "L422", + "platformId": "U2417Z1", + "id": "c1ac653c-37b2-4365-b43a-e5a229a2af84" + }, + { + "routeId": "L662", + "platformId": "U2417Z1", + "id": "015e2a16-0636-457b-8eb3-5ff95a55ff52" + }, + { + "routeId": "L422", + "platformId": "U2417Z2", + "id": "c63ee1a6-3f57-4afd-b780-e7f5d0e33cf5" + }, + { + "routeId": "L662", + "platformId": "U2417Z2", + "id": "53d1379b-d29b-47ea-8e35-cf957fddc4c2" + }, + { + "routeId": "L662", + "platformId": "U2418Z1", + "id": "506f9ed8-2ac4-403b-982a-e44dbea321fc" + }, + { + "routeId": "L662", + "platformId": "U2418Z2", + "id": "70882ab3-2230-4cf7-9bb1-45c1b467ea0c" + }, + { + "routeId": "L112", + "platformId": "U241Z1", + "id": "1e36fea3-ba0f-453e-8ad9-247ceb8a2346" + }, + { + "routeId": "L234", + "platformId": "U241Z1", + "id": "75804615-188e-44d7-880f-a4bc4a9d979b" + }, + { + "routeId": "L112", + "platformId": "U241Z2", + "id": "01fb928d-965a-446b-9f47-b05ccc72912b" + }, + { + "routeId": "L234", + "platformId": "U241Z2", + "id": "616e53f9-af5d-4a96-979d-21c9f30da575" + }, + { + "routeId": "L661", + "platformId": "U2420Z1", + "id": "7ebe6861-feac-4c06-99eb-d7550e03fa64" + }, + { + "routeId": "L661", + "platformId": "U2420Z2", + "id": "6d2423a2-72fa-429d-a0a9-46abf06935b5" + }, + { + "routeId": "L661", + "platformId": "U2421Z1", + "id": "af19fb5d-f41a-4340-a8ea-4b1be68fc177" + }, + { + "routeId": "L661", + "platformId": "U2421Z2", + "id": "c81df4a2-36e5-40df-a38c-c59a3de48a60" + }, + { + "routeId": "L662", + "platformId": "U2422Z1", + "id": "039f2477-8fc9-4d85-b1c7-d606272b1080" + }, + { + "routeId": "L662", + "platformId": "U2422Z2", + "id": "8939f246-3181-4fc9-a952-ccfcf49f7291" + }, + { + "routeId": "L662", + "platformId": "U2423Z1", + "id": "42fccc4b-788e-4c32-947d-c5ebad79424c" + }, + { + "routeId": "L662", + "platformId": "U2423Z2", + "id": "814c4cad-4f4d-456b-bd5c-5b29b07527d8" + }, + { + "routeId": "L1219", + "platformId": "U2424Z301", + "id": "c35e1d4c-ed36-45f1-bc02-ba0d475829b5" + }, + { + "routeId": "L1218", + "platformId": "U2424Z301", + "id": "3010ae81-c2f2-4cf9-b112-0240530ccf7d" + }, + { + "routeId": "L1210", + "platformId": "U2424Z301", + "id": "a3e2fa3b-0518-425c-9087-71c6b6033bca" + }, + { + "routeId": "L1209", + "platformId": "U2424Z301", + "id": "e646c621-a6eb-4ae7-9f49-db31779f179c" + }, + { + "routeId": "L1301", + "platformId": "U2424Z301", + "id": "22641555-543a-430a-b039-d98b89466f1a" + }, + { + "routeId": "L662", + "platformId": "U2427Z1", + "id": "be79a3c6-76fc-411a-be51-dbbeea8c8f76" + }, + { + "routeId": "L662", + "platformId": "U2427Z2", + "id": "5a0c4a1a-ccd5-4543-8a0d-cb8d39410bf3" + }, + { + "routeId": "L443", + "platformId": "U2428Z1", + "id": "487acd7b-9250-4a4b-b89e-dac1ee2cf9ae" + }, + { + "routeId": "L661", + "platformId": "U2428Z1", + "id": "eed96688-4834-479c-b878-6fec95635303" + }, + { + "routeId": "L443", + "platformId": "U2428Z2", + "id": "6605c4ec-c4e6-4a0b-825a-711bdbbf455a" + }, + { + "routeId": "L661", + "platformId": "U2428Z2", + "id": "780d220b-f4f4-49a7-8f47-73fa8f5cff08" + }, + { + "routeId": "L443", + "platformId": "U2429Z1", + "id": "05fb3187-3fa4-4cec-a0fc-3e1f74b7ac44" + }, + { + "routeId": "L661", + "platformId": "U2429Z1", + "id": "4e7f7512-8539-4aaf-8662-f0a80fc96324" + }, + { + "routeId": "L443", + "platformId": "U2429Z2", + "id": "b5114a06-07f8-4e8b-a016-7cfa1099e239" + }, + { + "routeId": "L661", + "platformId": "U2429Z2", + "id": "38de7917-1f13-40b9-8881-a9ba6f130620" + }, + { + "routeId": "L110", + "platformId": "U242Z3", + "id": "b48cd3a6-4a45-4af8-b3b4-a21b012cd799" + }, + { + "routeId": "L110", + "platformId": "U242Z4", + "id": "2f1e9d0e-9f04-4756-b9a2-a881ca60c28e" + }, + { + "routeId": "L430", + "platformId": "U2431Z1", + "id": "14a9be4f-2a10-497d-91a1-279f8d1cc063" + }, + { + "routeId": "L432", + "platformId": "U2431Z1", + "id": "30a0d33b-69f4-42e7-8d06-a326e304f310" + }, + { + "routeId": "L431", + "platformId": "U2431Z1", + "id": "ab85a3bc-f7ae-4bcf-857f-2ba431a695a7" + }, + { + "routeId": "L442", + "platformId": "U2431Z1", + "id": "076f2def-5bb5-44a8-9179-b500528f48a2" + }, + { + "routeId": "L661", + "platformId": "U2431Z1", + "id": "1b927b45-e620-4d14-816f-6ff0a3fe517f" + }, + { + "routeId": "L430", + "platformId": "U2431Z2", + "id": "c67c224d-072c-413d-a313-507fd716d8a9" + }, + { + "routeId": "L432", + "platformId": "U2431Z2", + "id": "f745c404-197c-49fd-a0ca-a861578aa75d" + }, + { + "routeId": "L431", + "platformId": "U2431Z2", + "id": "6883d4bf-1822-4aad-9902-31fa6f4c89e3" + }, + { + "routeId": "L442", + "platformId": "U2431Z2", + "id": "bff739f7-8c86-4fae-a1bb-057b143f3a1f" + }, + { + "routeId": "L661", + "platformId": "U2431Z2", + "id": "ac50d3c4-541e-40f6-bded-d8b410f1f122" + }, + { + "routeId": "L430", + "platformId": "U2432Z1", + "id": "b98d373c-14c0-40d5-83bc-91556d2208d5" + }, + { + "routeId": "L432", + "platformId": "U2432Z1", + "id": "c78fef2d-b317-4b4d-a56f-09d36eda25b7" + }, + { + "routeId": "L431", + "platformId": "U2432Z1", + "id": "34fc6fc1-822a-4b1f-83c0-1e9f99c31dd5" + }, + { + "routeId": "L442", + "platformId": "U2432Z1", + "id": "a41dc1c9-b3bb-4d70-a689-772978f4368b" + }, + { + "routeId": "L661", + "platformId": "U2432Z1", + "id": "a2bce747-5312-4aba-8f33-5cbfd2a4de6b" + }, + { + "routeId": "L430", + "platformId": "U2432Z2", + "id": "eeb28d64-6628-4f14-9ca6-1409afb99374" + }, + { + "routeId": "L432", + "platformId": "U2432Z2", + "id": "0d69c0ce-5cfe-4eaa-b527-2933d295b643" + }, + { + "routeId": "L431", + "platformId": "U2432Z2", + "id": "aae90414-967b-4c01-9298-a1d9e9be20b3" + }, + { + "routeId": "L661", + "platformId": "U2432Z2", + "id": "bebf101d-3c53-49bf-b78c-902626eb8df2" + }, + { + "routeId": "L1223", + "platformId": "U2432Z301", + "id": "3199dca7-36ba-46f5-8334-7440afd5eb07" + }, + { + "routeId": "L1302", + "platformId": "U2432Z301", + "id": "d89e5718-3bbe-4a30-941b-3af9f59891cb" + }, + { + "routeId": "L1322", + "platformId": "U2432Z301", + "id": "aed6995a-7a65-48ce-87ef-0f6d91a22286" + }, + { + "routeId": "L1332", + "platformId": "U2432Z301", + "id": "cdf68c27-b4a2-46df-b90e-b80e48769f68" + }, + { + "routeId": "L661", + "platformId": "U2433Z1", + "id": "0268e6b7-6088-416c-a36a-da0a13aed155" + }, + { + "routeId": "L661", + "platformId": "U2433Z2", + "id": "729b0b11-60cb-471e-bd1b-8c10c2c56afd" + }, + { + "routeId": "L661", + "platformId": "U2434Z1", + "id": "f31de02a-acd1-4d96-ac2f-ff0429a47aa8" + }, + { + "routeId": "L661", + "platformId": "U2434Z2", + "id": "1898a12e-bf57-4fe2-8c52-d6dfac5a347b" + }, + { + "routeId": "L661", + "platformId": "U2435Z1", + "id": "b0014ea1-c8bf-4fe7-a9bf-cbd256f91a5d" + }, + { + "routeId": "L661", + "platformId": "U2435Z2", + "id": "2b974755-f4bf-445e-a27d-53bde4ee246d" + }, + { + "routeId": "L1219", + "platformId": "U2436Z301", + "id": "0f5754cb-acb9-4d68-9236-b34956db604f" + }, + { + "routeId": "L1218", + "platformId": "U2436Z301", + "id": "5415ef6b-3388-478f-a77f-0e41f496b3fc" + }, + { + "routeId": "L1209", + "platformId": "U2436Z301", + "id": "1d2a83f2-9137-4aaf-a8d9-a69d450eac9c" + }, + { + "routeId": "L1301", + "platformId": "U2436Z301", + "id": "ed3ab6ca-6787-40b3-a8a8-244e5c0fc107" + }, + { + "routeId": "L916", + "platformId": "U243Z1", + "id": "8ed51a2c-92fc-4d43-84fa-36c1bff52826" + }, + { + "routeId": "L378", + "platformId": "U243Z1", + "id": "9a34be43-7e67-4b4d-b88e-6669023d46d7" + }, + { + "routeId": "L302", + "platformId": "U243Z1", + "id": "72c1b0b9-213a-49e9-8369-c7af0128208f" + }, + { + "routeId": "L375", + "platformId": "U243Z1", + "id": "2e7426c5-b8ec-4705-a2a1-a860c44aebb2" + }, + { + "routeId": "L209", + "platformId": "U243Z15", + "id": "17b15721-9948-4b82-9d0f-a1114a86dfdf" + }, + { + "routeId": "L209", + "platformId": "U243Z16", + "id": "1be7fbae-943c-4166-b898-2309e976dbfc" + }, + { + "routeId": "L916", + "platformId": "U243Z2", + "id": "9fd8ea95-9c96-42da-9c99-2e6f60de5295" + }, + { + "routeId": "L378", + "platformId": "U243Z2", + "id": "1ef49675-b27d-4e03-9f0c-3cb0a01ca076" + }, + { + "routeId": "L302", + "platformId": "U243Z2", + "id": "b244c002-8087-42e1-ad27-82868f23439e" + }, + { + "routeId": "L375", + "platformId": "U243Z2", + "id": "fd68a937-52ff-4b05-adb1-3b2184793d10" + }, + { + "routeId": "L185", + "platformId": "U243Z3", + "id": "b0c3497f-9184-4c7d-a08f-1332c7736d10" + }, + { + "routeId": "L201", + "platformId": "U243Z3", + "id": "df252e8a-640e-45e6-b48b-9d237d5f9a61" + }, + { + "routeId": "L916", + "platformId": "U243Z3", + "id": "fd4d6405-1df2-44b3-903f-0d75afb5dca1" + }, + { + "routeId": "L185", + "platformId": "U243Z4", + "id": "349201db-d1d9-4a9a-b5b1-f77a3446b1bf" + }, + { + "routeId": "L201", + "platformId": "U243Z4", + "id": "a7565a70-146b-4968-9680-72178169000a" + }, + { + "routeId": "L916", + "platformId": "U243Z4", + "id": "948999b9-85fd-4217-bb7a-67237ac9e453" + }, + { + "routeId": "L201", + "platformId": "U243Z5", + "id": "e598ed1f-8ab2-4d7b-94a9-dec50022b84d" + }, + { + "routeId": "L376", + "platformId": "U243Z5", + "id": "1837315b-7218-4b40-b077-30ec582e2e21" + }, + { + "routeId": "L201", + "platformId": "U243Z6", + "id": "14d04a1f-cee9-438f-92a2-024f4263d3eb" + }, + { + "routeId": "L376", + "platformId": "U243Z6", + "id": "69c7fe85-d0cb-47df-b2ca-7c44878634e7" + }, + { + "routeId": "L443", + "platformId": "U2441Z1", + "id": "1478c6e6-fe28-4891-8502-2f008d9406d7" + }, + { + "routeId": "L662", + "platformId": "U2441Z1", + "id": "4f4a8a53-041b-4d5b-baa6-06a9709cb7aa" + }, + { + "routeId": "L443", + "platformId": "U2441Z2", + "id": "d309761a-49a6-4df9-8493-37d94c560e9c" + }, + { + "routeId": "L662", + "platformId": "U2441Z2", + "id": "09072a77-7695-4926-9832-a51c819d4544" + }, + { + "routeId": "L443", + "platformId": "U2442Z1", + "id": "9eff6c19-1248-4e33-98bf-540199a3fa7f" + }, + { + "routeId": "L443", + "platformId": "U2442Z2", + "id": "d8af3990-4105-48f9-9363-b608f41106e6" + }, + { + "routeId": "L398", + "platformId": "U2443Z1", + "id": "815646df-eeb7-4826-b1ce-c47957d6eed2" + }, + { + "routeId": "L398", + "platformId": "U2443Z2", + "id": "cfe5c36f-5806-4ade-a433-9f2735cf651d" + }, + { + "routeId": "L646", + "platformId": "U2444Z1", + "id": "906146c2-f0ff-4c3f-a04f-3a70a7628a0e" + }, + { + "routeId": "L646", + "platformId": "U2444Z2", + "id": "91ef3bf8-699c-40a7-9c60-ab5c17ef4bf8" + }, + { + "routeId": "L430", + "platformId": "U2445Z1", + "id": "10fcd310-de17-4229-88c1-4d5d6612b12d" + }, + { + "routeId": "L432", + "platformId": "U2445Z1", + "id": "f1796ccf-e1ab-409b-85be-617fc1bff23e" + }, + { + "routeId": "L442", + "platformId": "U2445Z1", + "id": "4de3d4c3-7fd3-4aaf-9c51-4c167d70b992" + }, + { + "routeId": "L430", + "platformId": "U2445Z2", + "id": "67d58669-fcc5-4a03-85b7-1b27c606e99d" + }, + { + "routeId": "L432", + "platformId": "U2445Z2", + "id": "20762a9d-3465-4dd1-94c9-3b5a615a1988" + }, + { + "routeId": "L442", + "platformId": "U2445Z2", + "id": "1f56e38f-9a97-4fe9-9d80-b6aa2a443a02" + }, + { + "routeId": "L662", + "platformId": "U2446Z1", + "id": "27f5abe5-5565-4142-80aa-b877dcae0a54" + }, + { + "routeId": "L1210", + "platformId": "U2447Z301", + "id": "9f8a88cf-afb4-4dfb-b6a1-ac22202071d5" + }, + { + "routeId": "L1312", + "platformId": "U2447Z301", + "id": "d391b7af-894e-4434-afa6-33f4a1bd6dbb" + }, + { + "routeId": "L164", + "platformId": "U244Z1", + "id": "a01b4872-7716-46cf-b92e-fb051fc72b4c" + }, + { + "routeId": "L164", + "platformId": "U244Z2", + "id": "60e105cb-a60b-4105-bf26-6a84d68def88" + }, + { + "routeId": "L661", + "platformId": "U2450Z1", + "id": "b431119d-d4a2-4227-bdc8-2068df4fa0fa" + }, + { + "routeId": "L661", + "platformId": "U2450Z2", + "id": "aee8c658-2f78-4464-acae-ddac71efa7e8" + }, + { + "routeId": "L354", + "platformId": "U2451Z1", + "id": "31026310-d5ea-4813-ae1c-2f78a607489c" + }, + { + "routeId": "L398", + "platformId": "U2451Z1", + "id": "16041832-02a6-4374-bcd8-66936621e6dc" + }, + { + "routeId": "L354", + "platformId": "U2451Z2", + "id": "f3778133-817d-49f1-95fd-d40e29110634" + }, + { + "routeId": "L398", + "platformId": "U2451Z2", + "id": "d9e265ee-d113-447e-b02b-363b904d4669" + }, + { + "routeId": "L354", + "platformId": "U2452Z1", + "id": "6b39f8e8-a54f-4858-9849-a6656e1e603a" + }, + { + "routeId": "L398", + "platformId": "U2452Z1", + "id": "23d4159a-178c-45a6-a83b-78cc86642885" + }, + { + "routeId": "L354", + "platformId": "U2452Z2", + "id": "96b464ca-baee-4021-b0b2-f4b90deb65f9" + }, + { + "routeId": "L398", + "platformId": "U2452Z2", + "id": "962fc8f1-e7a8-4218-ac17-43b98c24e845" + }, + { + "routeId": "L562", + "platformId": "U2454Z1", + "id": "40b0fb4b-764b-439b-9f8a-5e1b13fbde03" + }, + { + "routeId": "L625", + "platformId": "U2454Z1", + "id": "56143940-8e12-478c-ac15-4f3e77b75166" + }, + { + "routeId": "L580", + "platformId": "U2454Z1", + "id": "1b40fcbc-3df8-499d-b55f-acedfb0587ad" + }, + { + "routeId": "L562", + "platformId": "U2454Z2", + "id": "7a18af8a-f3b0-4d8b-8303-cd1dc9b6cd28" + }, + { + "routeId": "L625", + "platformId": "U2454Z2", + "id": "a78e5599-a3ba-4ae9-9796-bcf18e955d1c" + }, + { + "routeId": "L580", + "platformId": "U2454Z2", + "id": "445bb1c1-36a5-454c-b1bd-1511f26721d8" + }, + { + "routeId": "L364", + "platformId": "U2456Z1", + "id": "3a438b16-295c-4f15-8128-c3830fdae6e1" + }, + { + "routeId": "L435", + "platformId": "U2456Z1", + "id": "a4dfdf82-850a-452b-b0c8-827160639f36" + }, + { + "routeId": "L686", + "platformId": "U2456Z1", + "id": "d26e21fa-11a9-4d95-ab69-60f99723634f" + }, + { + "routeId": "L478", + "platformId": "U2457Z1", + "id": "d5074def-a4eb-4792-83fe-08ca01ad89a1" + }, + { + "routeId": "L478", + "platformId": "U2457Z2", + "id": "eb2b6438-9aca-44c9-a911-42dda568c22b" + }, + { + "routeId": "L705", + "platformId": "U2458Z1", + "id": "f72ec185-603b-450d-86fb-d2d8748da32a" + }, + { + "routeId": "L598", + "platformId": "U2458Z1", + "id": "8094571e-b624-4883-aac2-d7511d136f59" + }, + { + "routeId": "L542", + "platformId": "U2458Z1", + "id": "0573d7a5-8b44-47a9-a966-fe8a77858b70" + }, + { + "routeId": "L598", + "platformId": "U2458Z2", + "id": "2d674e72-337c-454d-a72a-e10ae1a6b784" + }, + { + "routeId": "L542", + "platformId": "U2458Z2", + "id": "898e6660-3bb6-4f56-a1e4-1c58e129e8d4" + }, + { + "routeId": "L705", + "platformId": "U2459Z1", + "id": "2b706cc0-4fdb-4d7f-a131-7568535731db" + }, + { + "routeId": "L598", + "platformId": "U2459Z1", + "id": "e07c4cec-ad53-444a-80d4-e4a38b5e2271" + }, + { + "routeId": "L542", + "platformId": "U2459Z1", + "id": "b7157fe2-3c13-4b34-9858-a71c7e04b806" + }, + { + "routeId": "L598", + "platformId": "U2459Z2", + "id": "5fd857e7-8ed2-4c64-94f0-1ba79337743e" + }, + { + "routeId": "L542", + "platformId": "U2459Z2", + "id": "c2fe5fc9-ac26-4d4b-8d22-bf9ec6b7dc8d" + }, + { + "routeId": "L170", + "platformId": "U245Z1", + "id": "c9c3f500-c5cd-4fd6-82d5-ab52870944e6" + }, + { + "routeId": "L196", + "platformId": "U245Z1", + "id": "799d022b-c911-44fe-9427-928afa5baea3" + }, + { + "routeId": "L197", + "platformId": "U245Z1", + "id": "470365eb-2587-4b77-b93c-b62bbfd9959d" + }, + { + "routeId": "L901", + "platformId": "U245Z1", + "id": "7791c5b3-0768-472c-b172-d1a6968683e4" + }, + { + "routeId": "L170", + "platformId": "U245Z2", + "id": "ad4e492e-c855-4236-bf1e-2fbc45bcfd6d" + }, + { + "routeId": "L196", + "platformId": "U245Z2", + "id": "a1cc7932-fa9e-41a6-b02f-70b2285a5faa" + }, + { + "routeId": "L197", + "platformId": "U245Z2", + "id": "05be47f9-e419-41e5-b997-171824694219" + }, + { + "routeId": "L901", + "platformId": "U245Z2", + "id": "f316cb59-60ac-429b-9ead-03db920274bd" + }, + { + "routeId": "L598", + "platformId": "U2460Z1", + "id": "5d191e8d-dd91-43e7-952d-c83bb7c926c5" + }, + { + "routeId": "L598", + "platformId": "U2460Z2", + "id": "ed163c5a-0452-43ef-8b22-7957d805d5e8" + }, + { + "routeId": "L371", + "platformId": "U2461Z1", + "id": "cda87fb0-7b6f-47d0-8801-ec358f2c6b45" + }, + { + "routeId": "L371", + "platformId": "U2461Z2", + "id": "a70a26cc-cc6f-440a-96f0-c8638c6c6884" + }, + { + "routeId": "L373", + "platformId": "U2462Z1", + "id": "2a5118b4-6836-40a0-8914-011fec2cd6d2" + }, + { + "routeId": "L373", + "platformId": "U2462Z2", + "id": "49611955-1251-4fd5-90ff-52bfdfcf1f51" + }, + { + "routeId": "L434", + "platformId": "U2463Z1", + "id": "df8cba20-659a-4273-92dd-fb16eea346fd" + }, + { + "routeId": "L430", + "platformId": "U2463Z1", + "id": "743d21ab-dc62-4196-bb6e-e155085484ee" + }, + { + "routeId": "L432", + "platformId": "U2463Z1", + "id": "4db22ccb-084a-456e-80e7-ea5930094e83" + }, + { + "routeId": "L434", + "platformId": "U2463Z2", + "id": "7a5c7e42-e4d4-4785-8266-8d7dfb6a5eb9" + }, + { + "routeId": "L434", + "platformId": "U2464Z1", + "id": "00106a3c-728c-4e86-8fa7-64a56ff17f4d" + }, + { + "routeId": "L430", + "platformId": "U2464Z1", + "id": "96ddb4bf-2c9b-48bf-a9c8-5a0ffaf03d1b" + }, + { + "routeId": "L432", + "platformId": "U2464Z1", + "id": "a4046ab2-508a-4c0e-8fa6-6f42d6a06022" + }, + { + "routeId": "L434", + "platformId": "U2464Z2", + "id": "df388ee1-61a3-4b93-9f4e-edbc61fd8343" + }, + { + "routeId": "L430", + "platformId": "U2464Z2", + "id": "e95f22d7-088d-4276-8ff0-f67a854ed20f" + }, + { + "routeId": "L432", + "platformId": "U2464Z2", + "id": "730817cc-3e9e-4044-b0d8-e3d40e7c2b2c" + }, + { + "routeId": "L430", + "platformId": "U2465Z51", + "id": "81a02981-4c10-4505-8781-b44e63e2b958" + }, + { + "routeId": "L432", + "platformId": "U2465Z51", + "id": "059effd1-5eb3-459e-81e4-36d62471d2d6" + }, + { + "routeId": "L430", + "platformId": "U2465Z52", + "id": "09eebf94-ba67-4e3b-a808-45bfe5fdc5bd" + }, + { + "routeId": "L432", + "platformId": "U2465Z52", + "id": "c9facc62-8aa7-4774-92e3-f7de3577170d" + }, + { + "routeId": "L434", + "platformId": "U2466Z1", + "id": "78202bd4-4783-4ecd-b9e7-6590e69eb1b2" + }, + { + "routeId": "L432", + "platformId": "U2466Z1", + "id": "08534149-c130-4481-8cd6-7c16f06185ce" + }, + { + "routeId": "L434", + "platformId": "U2466Z2", + "id": "cd39f037-ca2e-419f-b90f-ad26a6ff2256" + }, + { + "routeId": "L432", + "platformId": "U2466Z2", + "id": "4f00e864-f3b6-4e5f-9d17-24a73dd95796" + }, + { + "routeId": "L430", + "platformId": "U2467Z1", + "id": "ef337ec1-9ff3-4aae-bacb-d90b48634de6" + }, + { + "routeId": "L434", + "platformId": "U2468Z1", + "id": "979864d5-7aa1-41e6-a166-8d024b7a76d7" + }, + { + "routeId": "L432", + "platformId": "U2468Z1", + "id": "f31a66b9-b816-429f-aae2-50ff901c1d47" + }, + { + "routeId": "L434", + "platformId": "U2468Z2", + "id": "00d1378a-b677-448e-bbb0-15e367188af2" + }, + { + "routeId": "L432", + "platformId": "U2468Z2", + "id": "b03faac1-49ed-49bb-ae85-c6a19e6bbfe0" + }, + { + "routeId": "L434", + "platformId": "U2469Z1", + "id": "b5531add-155b-4f92-9412-8b4ca64a4943" + }, + { + "routeId": "L432", + "platformId": "U2469Z1", + "id": "f62b7001-3761-4cd9-9382-6d56074d6d11" + }, + { + "routeId": "L432", + "platformId": "U2469Z2", + "id": "b7a4edc0-33cf-4f6a-bfc3-55948789bf54" + }, + { + "routeId": "L117", + "platformId": "U246Z1", + "id": "b68ae650-3fbb-4173-9a90-1cfed5f2f2a6" + }, + { + "routeId": "L431", + "platformId": "U2470Z1", + "id": "07295675-a99d-4c0f-a33c-ba7b2e1e9988" + }, + { + "routeId": "L431", + "platformId": "U2470Z2", + "id": "2eeea805-5b95-4521-ad03-3174ca51a84c" + }, + { + "routeId": "L378", + "platformId": "U2471Z1", + "id": "8c36b855-7d14-4aac-8a50-7da6a8a9f1b3" + }, + { + "routeId": "L378", + "platformId": "U2471Z2", + "id": "0854da4c-193d-49ed-b025-38bb80b1a5b1" + }, + { + "routeId": "L431", + "platformId": "U2472Z1", + "id": "a7411791-a218-47ee-9d0e-2040d07e8c4c" + }, + { + "routeId": "L431", + "platformId": "U2472Z2", + "id": "a451230d-8295-4ad3-90ef-853a060a223a" + }, + { + "routeId": "L431", + "platformId": "U2473Z1", + "id": "6c97edc9-3b96-4025-ab7a-6a94b3e72fe5" + }, + { + "routeId": "L431", + "platformId": "U2473Z2", + "id": "5a58a257-8964-45e3-a30b-e228c91d5a0b" + }, + { + "routeId": "L431", + "platformId": "U2474Z1", + "id": "08194443-81a8-41e8-bf1f-d62f70b195b1" + }, + { + "routeId": "L431", + "platformId": "U2474Z2", + "id": "f4ef0ca5-6ad0-4807-a860-2697173bf089" + }, + { + "routeId": "L431", + "platformId": "U2475Z1", + "id": "f3e0140a-28cd-4538-8a73-7a74188c87bc" + }, + { + "routeId": "L431", + "platformId": "U2475Z2", + "id": "8adaf717-f900-4a33-9d0a-b3ce3377b0c0" + }, + { + "routeId": "L434", + "platformId": "U2476Z1", + "id": "b3791fa3-35ff-4a03-9f52-a93dcab11130" + }, + { + "routeId": "L442", + "platformId": "U2476Z1", + "id": "2cf57f4a-8a71-4579-aa45-37499d7a233e" + }, + { + "routeId": "L434", + "platformId": "U2476Z2", + "id": "93f845e4-b78c-4bb1-980e-1eeab6a0fd05" + }, + { + "routeId": "L442", + "platformId": "U2476Z2", + "id": "d10f738c-3e75-4c8f-b5a5-8f9c51c158fc" + }, + { + "routeId": "L381", + "platformId": "U2477Z1", + "id": "56591b3b-b392-41eb-81fe-0697aa0c330c" + }, + { + "routeId": "L381", + "platformId": "U2478Z1", + "id": "e71d106b-f0bb-495f-b3d7-433f9a3782ff" + }, + { + "routeId": "L381", + "platformId": "U2478Z2", + "id": "032020cc-7134-4501-812a-2595f646ea38" + }, + { + "routeId": "L381", + "platformId": "U2479Z1", + "id": "54cdd966-774e-4b5c-8225-5a76202dff99" + }, + { + "routeId": "L381", + "platformId": "U2479Z2", + "id": "a1caa278-2909-4b5d-ab78-bbedfcb6c476" + }, + { + "routeId": "L122", + "platformId": "U247Z1", + "id": "b60674b0-44d1-4a69-8ecb-aa2a708ffe93" + }, + { + "routeId": "L906", + "platformId": "U247Z1", + "id": "7c24c3d4-ea91-439b-bde8-834f8d9529bf" + }, + { + "routeId": "L363", + "platformId": "U247Z1", + "id": "9700dedd-07d7-49fa-91c3-f6d045a1e71f" + }, + { + "routeId": "L122", + "platformId": "U247Z2", + "id": "52f112ac-e595-4bac-8cf9-4b67a88de9ee" + }, + { + "routeId": "L906", + "platformId": "U247Z2", + "id": "326ab821-c1cf-4ebf-aa25-3f399dad5a3d" + }, + { + "routeId": "L363", + "platformId": "U247Z2", + "id": "2a446e79-456f-4b47-96f6-d65fb7c4ae41" + }, + { + "routeId": "L533", + "platformId": "U2480Z13", + "id": "267c95fb-824e-49eb-ba6b-0026f45d95e5" + }, + { + "routeId": "L533", + "platformId": "U2480Z3", + "id": "244e936b-4213-47a3-b12e-4a6803cfd40c" + }, + { + "routeId": "L381", + "platformId": "U2480Z7", + "id": "05f11442-b495-40d3-922b-c1260d70702f" + }, + { + "routeId": "L705", + "platformId": "U2480Z7", + "id": "cab5ef82-5008-49c0-85a1-dc197c766fed" + }, + { + "routeId": "L481", + "platformId": "U2480Z7", + "id": "df04de31-6126-49ca-8d62-2a607718cdc0" + }, + { + "routeId": "L381", + "platformId": "U2480Z8", + "id": "34ce85f0-09b8-42e4-9f8d-f71792d39eeb" + }, + { + "routeId": "L705", + "platformId": "U2480Z9", + "id": "07f235eb-2915-483b-af07-157dc69bc66e" + }, + { + "routeId": "L481", + "platformId": "U2480Z9", + "id": "e01582a9-ae2a-444a-aae5-11b3035d5f6e" + }, + { + "routeId": "L381", + "platformId": "U2481Z1", + "id": "9f83fb60-61b2-4e1f-8db9-61d02cbfdea7" + }, + { + "routeId": "L481", + "platformId": "U2481Z1", + "id": "ca85352e-0c8b-4293-a6a7-07dff231082c" + }, + { + "routeId": "L705", + "platformId": "U2481Z1", + "id": "f9d74b69-51bb-4692-90e8-3426d8736229" + }, + { + "routeId": "L2805", + "platformId": "U2481Z1", + "id": "9448a40b-4da2-49e9-a1b5-37ca94936bde" + }, + { + "routeId": "L533", + "platformId": "U2481Z1", + "id": "7bd773e8-3bc1-456c-bde0-5ac5a9ee4ec8" + }, + { + "routeId": "L2801", + "platformId": "U2481Z1", + "id": "79bec9a1-159e-4c7f-9c66-b4f5940a4b32" + }, + { + "routeId": "L381", + "platformId": "U2481Z2", + "id": "4f1e0e3b-5f3a-43b5-9b76-b8084cdb4a7a" + }, + { + "routeId": "L481", + "platformId": "U2481Z2", + "id": "9704c4de-ece2-4524-8aa9-f66b0e75cdef" + }, + { + "routeId": "L2805", + "platformId": "U2481Z2", + "id": "576acc52-48cb-4abd-81fd-1ff1432c8aab" + }, + { + "routeId": "L533", + "platformId": "U2481Z2", + "id": "568ed437-343f-45bd-bb07-1ec0af725bf1" + }, + { + "routeId": "L2801", + "platformId": "U2481Z2", + "id": "054bdc53-0cec-41ba-8394-47fb3f75f6b8" + }, + { + "routeId": "L381", + "platformId": "U2482Z1", + "id": "c0c922b4-7d8d-4d19-9a5e-b2ee7c842f01" + }, + { + "routeId": "L481", + "platformId": "U2482Z1", + "id": "36b81626-5039-4a15-baf2-c586e403dc1d" + }, + { + "routeId": "L705", + "platformId": "U2482Z1", + "id": "55c6ae1b-dd76-4fc5-bfff-c52d2c52d3fe" + }, + { + "routeId": "L2805", + "platformId": "U2482Z1", + "id": "c29be720-76b5-4a1a-ac5d-256d5de21f6f" + }, + { + "routeId": "L533", + "platformId": "U2482Z1", + "id": "640e0504-1443-4c8e-9b55-6170a85308b8" + }, + { + "routeId": "L2801", + "platformId": "U2482Z1", + "id": "3ee9aa4f-27e6-4f71-8f71-bf6692afc030" + }, + { + "routeId": "L381", + "platformId": "U2482Z2", + "id": "c214e292-ffa3-4fd2-871a-a070e4afe908" + }, + { + "routeId": "L481", + "platformId": "U2482Z2", + "id": "3cc1f408-673f-45f2-b4ce-85a0ce3048cc" + }, + { + "routeId": "L2805", + "platformId": "U2482Z2", + "id": "0129304a-92ed-49b3-94c3-9db6ceb03198" + }, + { + "routeId": "L533", + "platformId": "U2482Z2", + "id": "95bf2bf7-ca59-437b-aefb-57eca61d2f56" + }, + { + "routeId": "L2801", + "platformId": "U2482Z2", + "id": "2f49c470-7ac4-4f50-884a-6c34f18cd956" + }, + { + "routeId": "L598", + "platformId": "U2483Z1", + "id": "761acd93-e2b1-48c5-a13d-82dae9d9faf5" + }, + { + "routeId": "L598", + "platformId": "U2483Z2", + "id": "49ecd56a-6779-4f90-85c6-fa1d02ceb586" + }, + { + "routeId": "L598", + "platformId": "U2484Z1", + "id": "201f198f-0c44-45cf-be59-60197230d85a" + }, + { + "routeId": "L598", + "platformId": "U2484Z2", + "id": "71be23db-e288-46d0-bdc0-a3605d92ecf9" + }, + { + "routeId": "L598", + "platformId": "U2486Z1", + "id": "f85c0c40-1601-4918-b842-ec1074f55887" + }, + { + "routeId": "L598", + "platformId": "U2486Z2", + "id": "9d498e8d-1388-4106-aba0-2ce69e0c76a3" + }, + { + "routeId": "L390", + "platformId": "U2487Z1", + "id": "3e110c8a-bbf5-48de-acf5-4eba6a32da53" + }, + { + "routeId": "L390", + "platformId": "U2487Z2", + "id": "9cf6e20f-e057-4d7c-aaae-dffda7294121" + }, + { + "routeId": "L390", + "platformId": "U2488Z1", + "id": "01427b45-1dbd-499b-92bd-e79c7bcc5c34" + }, + { + "routeId": "L390", + "platformId": "U2488Z2", + "id": "ef4bbf35-6f1c-4dc1-87ff-4bce854eaa45" + }, + { + "routeId": "L360", + "platformId": "U2489Z1", + "id": "ce7f2d0f-cd77-46e2-bb71-3c23777eb9f8" + }, + { + "routeId": "L361", + "platformId": "U2489Z1", + "id": "e84e5bb6-4f4c-4ca1-956d-f0cb021bb3b1" + }, + { + "routeId": "L390", + "platformId": "U2489Z1", + "id": "126980f7-fc1e-4318-96ec-51e108ea95e6" + }, + { + "routeId": "L360", + "platformId": "U2489Z2", + "id": "85f5ef32-8d48-4845-82e2-d3d4e791b0d6" + }, + { + "routeId": "L361", + "platformId": "U2489Z2", + "id": "04988a2c-f032-4325-8925-83f591645f99" + }, + { + "routeId": "L390", + "platformId": "U2489Z2", + "id": "1083c895-49ab-4068-8a05-5f7d6ae8eba9" + }, + { + "routeId": "L158", + "platformId": "U248Z1", + "id": "d0aa023c-9e54-499d-8da5-674d9397517c" + }, + { + "routeId": "L202", + "platformId": "U248Z1", + "id": "26e4b8f6-0990-4ac7-8952-9568a4701296" + }, + { + "routeId": "L915", + "platformId": "U248Z1", + "id": "2aa0b6c2-90f8-4457-8fb2-51104595fa6c" + }, + { + "routeId": "L166", + "platformId": "U248Z1", + "id": "c1baafc1-bb0f-4acb-8329-ffdd7f0d5c4b" + }, + { + "routeId": "L58", + "platformId": "U248Z1", + "id": "f144330d-6673-47a7-877d-586da4f41b91" + }, + { + "routeId": "L158", + "platformId": "U248Z2", + "id": "def829ce-feb4-40f4-bfc7-af9e60aac2ec" + }, + { + "routeId": "L202", + "platformId": "U248Z2", + "id": "ab520154-07e2-459d-9b64-050a792bbeac" + }, + { + "routeId": "L915", + "platformId": "U248Z2", + "id": "648cb319-1262-49b6-afcc-87d122a0532b" + }, + { + "routeId": "L166", + "platformId": "U248Z2", + "id": "d3e6c127-b35a-4795-a6a5-bf8c7bcd4932" + }, + { + "routeId": "L58", + "platformId": "U248Z2", + "id": "3f6cdce2-6146-41e7-b235-85637de1d4c1" + }, + { + "routeId": "L360", + "platformId": "U2490Z1", + "id": "4bcfb089-d48a-414f-a7e4-f31f8f5b4204" + }, + { + "routeId": "L361", + "platformId": "U2490Z1", + "id": "4d592c9e-ac1e-4029-89a7-a217805aafcd" + }, + { + "routeId": "L390", + "platformId": "U2490Z1", + "id": "6b6e8e0a-8fb6-4dd9-8f2e-a6126eb8896a" + }, + { + "routeId": "L360", + "platformId": "U2490Z2", + "id": "8fdcb96f-2ff2-456c-bb8a-4931392356c4" + }, + { + "routeId": "L361", + "platformId": "U2490Z2", + "id": "133ad55f-a735-41c9-aaaa-d910a9d96415" + }, + { + "routeId": "L390", + "platformId": "U2490Z2", + "id": "54773973-d714-484e-89b4-a8076315c911" + }, + { + "routeId": "L440", + "platformId": "U2490Z2", + "id": "a9a66f8b-8e1c-494d-a8ad-83307d8d3452" + }, + { + "routeId": "L440", + "platformId": "U2491Z1", + "id": "a7e5f5dd-90ee-4ec9-8de1-28f614268911" + }, + { + "routeId": "L440", + "platformId": "U2491Z2", + "id": "bfdfb193-6789-4771-883f-a0d57657d8b9" + }, + { + "routeId": "L440", + "platformId": "U2492Z1", + "id": "6367ac2e-6590-44a3-b04c-09eb9cd93f90" + }, + { + "routeId": "L440", + "platformId": "U2492Z2", + "id": "073335c8-d451-4abf-a040-e8d25b2ae118" + }, + { + "routeId": "L440", + "platformId": "U2493Z1", + "id": "4f8d64bd-d6c0-49cb-8082-86f705510f68" + }, + { + "routeId": "L440", + "platformId": "U2493Z2", + "id": "60c1147d-4045-4b9b-8fce-9f93edf62cee" + }, + { + "routeId": "L338", + "platformId": "U2495Z11", + "id": "72ce12fb-b566-427f-9ae2-1caa6f434378" + }, + { + "routeId": "L438", + "platformId": "U2495Z11", + "id": "907bdffe-7a16-472f-915e-b85e3e242e90" + }, + { + "routeId": "L338", + "platformId": "U2496Z1", + "id": "7323a456-15aa-4d0c-a2b2-87c4479655fb" + }, + { + "routeId": "L438", + "platformId": "U2496Z1", + "id": "4cbee89b-3c00-4b38-b9b4-ebdb85fb7923" + }, + { + "routeId": "L338", + "platformId": "U2496Z2", + "id": "83e6b27f-8090-4ef5-bc27-78665143905f" + }, + { + "routeId": "L438", + "platformId": "U2496Z2", + "id": "93a271a5-c544-495b-845c-49282fe8a122" + }, + { + "routeId": "L438", + "platformId": "U2497Z1", + "id": "0d66c8ff-4905-4f97-b4c1-e9cf3e6ff7fa" + }, + { + "routeId": "L338", + "platformId": "U2497Z2", + "id": "5dbc0add-b73d-4a24-87c7-b2d00b453e67" + }, + { + "routeId": "L438", + "platformId": "U2497Z2", + "id": "04a0e3c4-24ed-4949-b917-6d15198abab4" + }, + { + "routeId": "L338", + "platformId": "U2497Z3", + "id": "270ba332-8f8e-4430-8766-273f7e42540f" + }, + { + "routeId": "L338", + "platformId": "U2498Z1", + "id": "99bab44f-d457-4ee9-bf4d-92fc79c58ed4" + }, + { + "routeId": "L338", + "platformId": "U2498Z2", + "id": "9304fdeb-3d97-4404-95a2-6a0d6e9b6e25" + }, + { + "routeId": "L338", + "platformId": "U2499Z1", + "id": "eb26fa3f-0d2c-4f4e-8297-1475b02cd243" + }, + { + "routeId": "L338", + "platformId": "U2499Z2", + "id": "77acdd53-f954-452f-9fd4-90a60be35978" + }, + { + "routeId": "L1", + "platformId": "U249Z1", + "id": "ac9a39fe-267d-4bfa-b045-9fe70e10f44b" + }, + { + "routeId": "L3", + "platformId": "U249Z1", + "id": "6045731e-3395-4e94-8492-ed2345de44f9" + }, + { + "routeId": "L10", + "platformId": "U249Z1", + "id": "7785e01f-e955-4d7f-81b0-6e66a5774453" + }, + { + "routeId": "L17", + "platformId": "U249Z1", + "id": "2ad68b9d-d0be-4b89-8492-b5cffb4f43bf" + }, + { + "routeId": "L25", + "platformId": "U249Z1", + "id": "b9b43273-ff1f-48cc-886e-4daab7aff1fd" + }, + { + "routeId": "L93", + "platformId": "U249Z1", + "id": "b577eb80-b1a1-4df3-83b1-f12569fee470" + }, + { + "routeId": "L95", + "platformId": "U249Z1", + "id": "9cc03c72-750e-453c-8b28-065d6db7d7c4" + }, + { + "routeId": "L1", + "platformId": "U249Z2", + "id": "dc48f923-bdbd-4401-b126-c4c50efe60e8" + }, + { + "routeId": "L3", + "platformId": "U249Z2", + "id": "064fadb4-9049-496c-b471-81628df04f38" + }, + { + "routeId": "L10", + "platformId": "U249Z2", + "id": "95fbf634-bcf1-4d4e-8ce4-447f8c83e2d8" + }, + { + "routeId": "L17", + "platformId": "U249Z2", + "id": "b8c6396e-77c6-409f-8171-6ffc6eef30af" + }, + { + "routeId": "L25", + "platformId": "U249Z2", + "id": "c10d6c5b-b8df-44a5-a088-da222ef8c884" + }, + { + "routeId": "L93", + "platformId": "U249Z2", + "id": "02ce3460-e1ef-41e4-b8ee-236ebe32f270" + }, + { + "routeId": "L95", + "platformId": "U249Z2", + "id": "b319aafe-8913-4449-9739-99a7000f866b" + }, + { + "routeId": "L150", + "platformId": "U24Z1", + "id": "e258b3fc-f7bf-4042-ba37-0d10abcbe005" + }, + { + "routeId": "L190", + "platformId": "U24Z1", + "id": "2653b2cd-b33b-4111-a346-2f6e3fab3933" + }, + { + "routeId": "L910", + "platformId": "U24Z1", + "id": "077bf312-f29f-420f-b3ac-f3567691dd32" + }, + { + "routeId": "L341", + "platformId": "U24Z1", + "id": "a6594ea9-7f6c-4b16-880d-57b31f0365ee" + }, + { + "routeId": "L150", + "platformId": "U24Z2", + "id": "44a35fc8-8ed8-4431-b0c1-ecf9cee26343" + }, + { + "routeId": "L190", + "platformId": "U24Z2", + "id": "30c4b065-d747-4fa4-ae0d-d6d5e2d14a02" + }, + { + "routeId": "L910", + "platformId": "U24Z2", + "id": "490666e4-1c41-48b5-aa2b-134eef78c06a" + }, + { + "routeId": "L341", + "platformId": "U24Z2", + "id": "88390241-870e-4257-8df2-8b5726b3d999" + }, + { + "routeId": "L338", + "platformId": "U2500Z1", + "id": "839c2f2f-8b4c-45cd-8fdb-6bdad47ff8f6" + }, + { + "routeId": "L338", + "platformId": "U2500Z2", + "id": "9dac4d90-e5a8-4d1a-82ae-0620bd69c721" + }, + { + "routeId": "L338", + "platformId": "U2501Z1", + "id": "d47c8b7d-ebfe-449d-b88d-79af1796edb9" + }, + { + "routeId": "L438", + "platformId": "U2502Z1", + "id": "fae0c014-0f03-4769-b3d5-071f89b1b76a" + }, + { + "routeId": "L438", + "platformId": "U2502Z2", + "id": "2b3df8f1-c0ee-474e-9c45-e178e358e89e" + }, + { + "routeId": "L438", + "platformId": "U2503Z1", + "id": "b8ede570-2f69-4aaa-84a6-daae9d1f5fd2" + }, + { + "routeId": "L438", + "platformId": "U2503Z2", + "id": "5a3d12fa-e085-46dc-8c8e-c2d51350a535" + }, + { + "routeId": "L438", + "platformId": "U2504Z1", + "id": "313e9059-cf9b-4689-916a-ebf07ffa99f8" + }, + { + "routeId": "L438", + "platformId": "U2504Z2", + "id": "56652f91-fcc7-4d48-9c0b-d47d7c7779f5" + }, + { + "routeId": "L438", + "platformId": "U2505Z1", + "id": "a5e3645a-2593-4dc8-85f0-9505e27ea0d0" + }, + { + "routeId": "L438", + "platformId": "U2505Z2", + "id": "4df8b251-7d3e-4aaa-829d-195dbd70be80" + }, + { + "routeId": "L438", + "platformId": "U2506Z1", + "id": "181cbf2c-5c6d-420c-87da-5c470f3066c7" + }, + { + "routeId": "L438", + "platformId": "U2506Z2", + "id": "3282dbc6-29bc-4953-aeec-9f9f300c312e" + }, + { + "routeId": "L438", + "platformId": "U2507Z1", + "id": "e1ad035e-7742-4f49-9d93-e94df0084421" + }, + { + "routeId": "L438", + "platformId": "U2507Z2", + "id": "9789dbf2-506f-486e-881d-0a383e61d6c4" + }, + { + "routeId": "L438", + "platformId": "U2508Z1", + "id": "f514a0b6-cd15-4dbf-8c11-8441aa3022bc" + }, + { + "routeId": "L438", + "platformId": "U2508Z2", + "id": "ca597822-ea11-42c8-9ae7-fb051cd91fa5" + }, + { + "routeId": "L438", + "platformId": "U2509Z1", + "id": "93f1b907-992c-4896-9b0f-e2f7fedfd23d" + }, + { + "routeId": "L438", + "platformId": "U2509Z2", + "id": "ab1730a6-e389-40b6-9723-da21583aa650" + }, + { + "routeId": "L438", + "platformId": "U2510Z1", + "id": "04df5ffa-de62-4eb4-a74f-f480b4ffabab" + }, + { + "routeId": "L438", + "platformId": "U2510Z2", + "id": "b7df3515-a9d7-4dbf-887e-d1ed3e32218f" + }, + { + "routeId": "L332", + "platformId": "U2510Z3", + "id": "015ddb3f-0526-41b9-8aa5-4b9385ac99ae" + }, + { + "routeId": "L753", + "platformId": "U2510Z3", + "id": "2b86b64e-f8e6-4cba-a7ef-addd4997368d" + }, + { + "routeId": "L332", + "platformId": "U2510Z4", + "id": "799c397e-0861-463a-bf02-e42e9085f3f1" + }, + { + "routeId": "L753", + "platformId": "U2510Z4", + "id": "cb582f1a-328f-4537-a93c-869e05f3a83f" + }, + { + "routeId": "L438", + "platformId": "U2511Z1", + "id": "ce71fcc2-416c-4712-b187-59c5e1b71fb7" + }, + { + "routeId": "L438", + "platformId": "U2511Z2", + "id": "6da6f86b-e7d4-43aa-8a74-575e52f9f188" + }, + { + "routeId": "L338", + "platformId": "U2512Z1", + "id": "ab65191b-5aba-41e4-a522-3f0660cd12a5" + }, + { + "routeId": "L338", + "platformId": "U2512Z2", + "id": "e3747a1a-b2fb-407c-99e7-82387a8702fa" + }, + { + "routeId": "L1308", + "platformId": "U2513Z301", + "id": "17812e06-5d6d-4e39-b74d-86a58b5c6fa0" + }, + { + "routeId": "L1388", + "platformId": "U2513Z301", + "id": "b92628a9-3d9e-4d42-bf48-c8aaa6fdc93a" + }, + { + "routeId": "L1308", + "platformId": "U2514Z301", + "id": "bfadb0bb-c230-4b74-b24b-c43d106b400c" + }, + { + "routeId": "L1388", + "platformId": "U2514Z301", + "id": "b5136774-ee91-4360-9116-02d20db2f00b" + }, + { + "routeId": "L361", + "platformId": "U2515Z1", + "id": "0883c38a-490f-4f71-8041-7e127ac55e56" + }, + { + "routeId": "L390", + "platformId": "U2515Z1", + "id": "c7526e1c-e4c7-431c-be7e-7f38bd1a667e" + }, + { + "routeId": "L361", + "platformId": "U2515Z2", + "id": "b63900aa-7c67-4496-a750-d01fbdf17e96" + }, + { + "routeId": "L390", + "platformId": "U2515Z2", + "id": "8ebaea2d-6abe-4116-8ca7-827d91b13604" + }, + { + "routeId": "L360", + "platformId": "U2515Z3", + "id": "bce5e856-94cc-4783-9bc2-3ef22dd6609c" + }, + { + "routeId": "L360", + "platformId": "U2515Z4", + "id": "0dd54b0b-66ad-412e-a8b0-8f3061947772" + }, + { + "routeId": "L361", + "platformId": "U2516Z1", + "id": "58d225ff-2075-49d9-82ff-491836652c0d" + }, + { + "routeId": "L361", + "platformId": "U2516Z2", + "id": "0f5f11c3-9f9e-4fff-ad7e-3dda723867c3" + }, + { + "routeId": "L390", + "platformId": "U2516Z3", + "id": "36bb5c8d-f052-4687-848a-bba8c4a775cb" + }, + { + "routeId": "L390", + "platformId": "U2516Z4", + "id": "38e51640-dd99-4c25-a303-d150a22152ca" + }, + { + "routeId": "L1308", + "platformId": "U2518Z301", + "id": "5752e7a8-6374-423d-b388-669d70be8389" + }, + { + "routeId": "L1388", + "platformId": "U2518Z301", + "id": "3b9ea1df-449f-4f88-ba16-f66da6e95214" + }, + { + "routeId": "L390", + "platformId": "U2519Z1", + "id": "412ee095-c201-4e3e-ab54-b85541ee458e" + }, + { + "routeId": "L390", + "platformId": "U2519Z2", + "id": "99c2d970-1a26-4211-ade6-89fb3fd76a83" + }, + { + "routeId": "L916", + "platformId": "U251Z1", + "id": "9b597257-d53e-4957-9a97-b0eaaffba309" + }, + { + "routeId": "L58", + "platformId": "U251Z1", + "id": "a7a584f8-2c67-4f96-b762-44009717706c" + }, + { + "routeId": "L916", + "platformId": "U251Z2", + "id": "a890f072-ac0d-4c54-99f1-818a1b47329b" + }, + { + "routeId": "L58", + "platformId": "U251Z2", + "id": "07790f4b-3f54-4a15-8413-ec515662beb6" + }, + { + "routeId": "L390", + "platformId": "U2520Z1", + "id": "259acd88-bcb2-41cf-973a-f6af3680114e" + }, + { + "routeId": "L390", + "platformId": "U2521Z1", + "id": "f9f23b4b-8909-4398-9c3a-8288efcbd54f" + }, + { + "routeId": "L390", + "platformId": "U2521Z2", + "id": "e448306a-a9ca-437b-ad30-6cee2468f109" + }, + { + "routeId": "L390", + "platformId": "U2522Z1", + "id": "a85e90a7-2a50-4a28-9667-21b670a7b169" + }, + { + "routeId": "L390", + "platformId": "U2522Z2", + "id": "34138713-0f84-4521-8fc5-5f071565108d" + }, + { + "routeId": "L361", + "platformId": "U2523Z1", + "id": "b38a9996-c831-4d50-b9f5-37bf8e721569" + }, + { + "routeId": "L361", + "platformId": "U2523Z2", + "id": "93aa6003-bda1-4426-bc7b-e07a60eb9b43" + }, + { + "routeId": "L361", + "platformId": "U2524Z1", + "id": "7f6b0bc6-d8f8-4ab0-9e11-40384acd5115" + }, + { + "routeId": "L361", + "platformId": "U2525Z1", + "id": "3bb74be9-21f0-41e5-a7d2-5c014a72512d" + }, + { + "routeId": "L361", + "platformId": "U2525Z2", + "id": "fac889b2-dc78-44de-b505-afd6df762b50" + }, + { + "routeId": "L361", + "platformId": "U2526Z1", + "id": "fb3d5940-1a51-42be-b2d0-b855129ea1ff" + }, + { + "routeId": "L361", + "platformId": "U2526Z2", + "id": "3df674f0-6b24-4b3f-b1a6-9cf2416a75af" + }, + { + "routeId": "L360", + "platformId": "U2527Z1", + "id": "6f06cf29-2212-4c7e-895d-189865500fcb" + }, + { + "routeId": "L360", + "platformId": "U2527Z2", + "id": "2807dc6e-6dfa-4062-9324-3e165f0021e8" + }, + { + "routeId": "L360", + "platformId": "U2528Z1", + "id": "8749636a-ab0e-4a3c-95e7-aeb124e4f10a" + }, + { + "routeId": "L360", + "platformId": "U2528Z2", + "id": "799aa505-6849-41f7-a58d-9541da356e5e" + }, + { + "routeId": "L360", + "platformId": "U2529Z1", + "id": "9718bc8e-f8c0-4cad-92d5-2b7d6ace6493" + }, + { + "routeId": "L360", + "platformId": "U2529Z2", + "id": "b3ceed17-9e6a-4d0b-8600-63bfc8c36802" + }, + { + "routeId": "L231", + "platformId": "U252Z1", + "id": "d10fc2e1-f607-4f2a-9170-c2b35eb20cb1" + }, + { + "routeId": "L360", + "platformId": "U2533Z1", + "id": "28dc6b30-8623-423c-b6bc-f96a9483a17e" + }, + { + "routeId": "L360", + "platformId": "U2533Z2", + "id": "8d792940-1f55-43ae-8ef6-dbe163bde12f" + }, + { + "routeId": "L361", + "platformId": "U2534Z1", + "id": "072d2ade-e90a-4f58-a42a-f79b4dfedf4d" + }, + { + "routeId": "L361", + "platformId": "U2534Z2", + "id": "30b93f5b-846f-40c0-bd22-391c9cc53b66" + }, + { + "routeId": "L360", + "platformId": "U2534Z3", + "id": "5aea4410-6011-4f6e-b19b-80eaddca9a7a" + }, + { + "routeId": "L360", + "platformId": "U2534Z4", + "id": "0740c7af-1659-4686-b5fa-89f24a4fd075" + }, + { + "routeId": "L361", + "platformId": "U2536Z1", + "id": "b2687464-125f-4d71-9b91-79af9840335d" + }, + { + "routeId": "L361", + "platformId": "U2536Z2", + "id": "e73ed894-a722-4f17-90a1-a2b3903f7d8f" + }, + { + "routeId": "L361", + "platformId": "U2537Z1", + "id": "eab02372-b447-409b-891f-baff78286e95" + }, + { + "routeId": "L688", + "platformId": "U2537Z1", + "id": "8ed10ba2-0f7b-47cf-ad9e-c5ac7b19aede" + }, + { + "routeId": "L361", + "platformId": "U2537Z2", + "id": "a214c138-7af5-4b0f-8dff-9c7af6232088" + }, + { + "routeId": "L688", + "platformId": "U2537Z2", + "id": "8fd687a5-9fc3-44e2-a8ff-3497a0bfcfe9" + }, + { + "routeId": "L688", + "platformId": "U2538Z1", + "id": "c7f9a37b-5633-4dd5-8600-692c33157a99" + }, + { + "routeId": "L688", + "platformId": "U2538Z2", + "id": "5d19b931-6bf2-4176-873d-2efdb3e16f46" + }, + { + "routeId": "L688", + "platformId": "U2539Z1", + "id": "e5a46f2a-be7d-4703-98b4-266b4fe7d2e1" + }, + { + "routeId": "L688", + "platformId": "U2539Z2", + "id": "57553616-63f6-4063-a274-cf2fd483c4a2" + }, + { + "routeId": "L204", + "platformId": "U253Z1", + "id": "70995d90-7e73-4c71-a57c-fd19c20a702f" + }, + { + "routeId": "L223", + "platformId": "U253Z1", + "id": "41b1c191-b35a-4729-835f-d281c99e18b2" + }, + { + "routeId": "L224", + "platformId": "U253Z1", + "id": "96b2ca55-55ac-4e72-8a39-62bf618a82fe" + }, + { + "routeId": "L390", + "platformId": "U2543Z3", + "id": "bb6aac8c-08a4-4a21-86b6-0152b118f110" + }, + { + "routeId": "L390", + "platformId": "U2543Z4", + "id": "60c22013-7b10-44fb-a314-d66a46cd1847" + }, + { + "routeId": "L390", + "platformId": "U2544Z1", + "id": "ca6ae106-bb45-46df-8cd2-54d38a7e59bc" + }, + { + "routeId": "L390", + "platformId": "U2544Z2", + "id": "98be8397-2af0-4973-8286-8be026f7c4dc" + }, + { + "routeId": "L390", + "platformId": "U2545Z1", + "id": "d21cea91-e2ad-4fd0-aa83-28aa1f3b925b" + }, + { + "routeId": "L390", + "platformId": "U2545Z2", + "id": "24cf0185-1c74-4c87-a97c-2c5cdcb21a61" + }, + { + "routeId": "L755", + "platformId": "U2545Z3", + "id": "0b1a4dc7-2baf-4e83-a0b9-57d1e2cae733" + }, + { + "routeId": "L755", + "platformId": "U2545Z4", + "id": "1021bb53-4323-4b3c-8f3c-738fab09ceed" + }, + { + "routeId": "L390", + "platformId": "U2546Z1", + "id": "88b44d45-4cc0-491c-b6ed-ce7fc58be7c8" + }, + { + "routeId": "L755", + "platformId": "U2546Z1", + "id": "bd55d29d-3f8a-4b55-b883-b1eed34aeb85" + }, + { + "routeId": "L390", + "platformId": "U2546Z2", + "id": "104061bf-10a0-4c8c-8d98-dd6239b2b211" + }, + { + "routeId": "L755", + "platformId": "U2546Z2", + "id": "f9c13d01-eae5-4f47-a772-3e9deaeb3b77" + }, + { + "routeId": "L390", + "platformId": "U2547Z1", + "id": "cc898376-d97d-45bf-afc2-cdbb8cd5eb8a" + }, + { + "routeId": "L390", + "platformId": "U2547Z2", + "id": "0d1d74b9-4080-48e0-b411-3c342fceb7c9" + }, + { + "routeId": "L317", + "platformId": "U2549Z1", + "id": "db78a261-5f8b-44a4-8865-ccf4ff0157c4" + }, + { + "routeId": "L420", + "platformId": "U2549Z1", + "id": "1cbcd452-d335-4d94-8f90-b1aa0aaaf7a9" + }, + { + "routeId": "L392", + "platformId": "U2549Z1", + "id": "981b1cc4-25a8-4a38-9c6a-b4e7d7df8ccf" + }, + { + "routeId": "L317", + "platformId": "U2549Z2", + "id": "2817e37a-9e86-48e5-879a-dacb6790c684" + }, + { + "routeId": "L392", + "platformId": "U2549Z2", + "id": "0b9619cf-3279-43b8-b557-9801bdfa7d90" + }, + { + "routeId": "L420", + "platformId": "U2549Z2", + "id": "4fdff09c-890c-4f91-bff4-87383eaef063" + }, + { + "routeId": "L9", + "platformId": "U254Z1", + "id": "ac4e4566-281d-4a8b-b2a7-c691bb06f5b2" + }, + { + "routeId": "L10", + "platformId": "U254Z1", + "id": "a32eccfc-5304-4fdd-8667-6c5e84f5d947" + }, + { + "routeId": "L15", + "platformId": "U254Z1", + "id": "93b0a071-9ea9-4286-9dc3-eaf81c02687f" + }, + { + "routeId": "L16", + "platformId": "U254Z1", + "id": "cc242183-e8c9-4f0f-a798-364ccf6f34e6" + }, + { + "routeId": "L98", + "platformId": "U254Z1", + "id": "9f4cada4-0ab2-4f82-9b9c-1afb25e10622" + }, + { + "routeId": "L99", + "platformId": "U254Z1", + "id": "5c4c0c29-679c-4e21-ba6f-629f06bcdb10" + }, + { + "routeId": "L9", + "platformId": "U254Z2", + "id": "5ded7fab-e827-4c8e-92ed-7c08e20f1230" + }, + { + "routeId": "L10", + "platformId": "U254Z2", + "id": "34e53ea8-a4b1-4b47-a3d9-9cb570ea30c5" + }, + { + "routeId": "L15", + "platformId": "U254Z2", + "id": "e6242529-88e7-473a-9bb2-2151ff7c7820" + }, + { + "routeId": "L16", + "platformId": "U254Z2", + "id": "a2a8c27b-7824-400c-bf94-1b4f1243b802" + }, + { + "routeId": "L98", + "platformId": "U254Z2", + "id": "473ce815-cc81-4cc1-983a-75a926939ceb" + }, + { + "routeId": "L99", + "platformId": "U254Z2", + "id": "04ff218a-c9d2-442e-98a4-4a2a999c7117" + }, + { + "routeId": "L167", + "platformId": "U254Z3", + "id": "be1f3c02-143f-429a-897c-6acf35f10b5b" + }, + { + "routeId": "L149", + "platformId": "U254Z4", + "id": "fddca74b-0f7a-4e31-86e2-a4b4117cef3c" + }, + { + "routeId": "L191", + "platformId": "U254Z4", + "id": "12119589-275e-4081-ba54-687cfae5a984" + }, + { + "routeId": "L149", + "platformId": "U254Z5", + "id": "34dd872e-fc5b-4caf-b1b1-efdd661e249a" + }, + { + "routeId": "L191", + "platformId": "U254Z5", + "id": "9018b9c0-77eb-418d-a96e-2ef3306190c4" + }, + { + "routeId": "L149", + "platformId": "U254Z6", + "id": "497abc79-5061-4f02-bc78-a417d6882887" + }, + { + "routeId": "L167", + "platformId": "U254Z6", + "id": "d46fdf20-0159-4c42-b2c3-3782d24d5e21" + }, + { + "routeId": "L659", + "platformId": "U2550Z1", + "id": "85115100-4bdb-4990-8fba-0714a3c03c33" + }, + { + "routeId": "L659", + "platformId": "U2550Z2", + "id": "a4671189-7654-4d26-96e9-4d4fe8c38c37" + }, + { + "routeId": "L659", + "platformId": "U2551Z1", + "id": "00d56a4c-1b87-411f-9875-5041663c29b5" + }, + { + "routeId": "L659", + "platformId": "U2551Z2", + "id": "4cfca855-a22f-4705-b1f2-f2eb93b93bb2" + }, + { + "routeId": "L382", + "platformId": "U2552Z1", + "id": "df086868-c38b-4af8-b9fe-533bf179b25b" + }, + { + "routeId": "L382", + "platformId": "U2552Z2", + "id": "b4aaa66e-705d-426b-b0c4-620c44857761" + }, + { + "routeId": "L1388", + "platformId": "U2554Z301", + "id": "7ab3707b-3699-4e1c-82fa-9c093ae0081c" + }, + { + "routeId": "L360", + "platformId": "U2555Z1", + "id": "3770226a-2df5-4df6-8de8-7036281562db" + }, + { + "routeId": "L360", + "platformId": "U2556Z1", + "id": "771ef3dc-a88d-4aa7-ae77-d9a10272e9e5" + }, + { + "routeId": "L360", + "platformId": "U2556Z2", + "id": "9c3fa385-c20e-4582-a4d0-f42f7e036908" + }, + { + "routeId": "L360", + "platformId": "U2557Z1", + "id": "6f7de888-181e-4845-be52-412f8caa2ca9" + }, + { + "routeId": "L360", + "platformId": "U2557Z2", + "id": "bf6b4f2d-5fbb-4ea8-bc41-4894b8be64c5" + }, + { + "routeId": "L325", + "platformId": "U2558Z1", + "id": "a7f23459-5ff2-411e-bb9f-e1bb9d85971c" + }, + { + "routeId": "L385", + "platformId": "U2558Z1", + "id": "c6136ea1-e963-42f3-96bd-659484aa4ce5" + }, + { + "routeId": "L385", + "platformId": "U2558Z2", + "id": "2af818ef-2dab-425e-bced-a4db3ff1713c" + }, + { + "routeId": "L461", + "platformId": "U2559Z1", + "id": "831ec248-f35d-4d51-8d14-64c386445d6a" + }, + { + "routeId": "L461", + "platformId": "U2559Z2", + "id": "7a1e837c-298c-47de-beec-92077975b551" + }, + { + "routeId": "L121", + "platformId": "U255Z1", + "id": "f871afab-c02a-4119-9c19-32189b5c5bb4" + }, + { + "routeId": "L121", + "platformId": "U255Z2", + "id": "2ff7f900-7559-4139-8f78-75f87a707717" + }, + { + "routeId": "L314", + "platformId": "U2560Z1", + "id": "fbe3820d-9dc5-4a4b-944e-b65a38e0da2d" + }, + { + "routeId": "L314", + "platformId": "U2560Z2", + "id": "10271d04-d09a-489a-b155-1bc0ae484fb7" + }, + { + "routeId": "L373", + "platformId": "U2562Z1", + "id": "d0b54c91-bab0-450f-98f5-9408fe8d7083" + }, + { + "routeId": "L373", + "platformId": "U2562Z2", + "id": "93c5ce2a-5ac0-4ea3-b600-0fdcbc2ac0bc" + }, + { + "routeId": "L685", + "platformId": "U2563Z1", + "id": "43b2a1a0-56e7-4722-89e5-7551f83c816c" + }, + { + "routeId": "L489", + "platformId": "U2563Z1", + "id": "0ccf0bb6-cb31-4fce-86ab-7c359674e8e3" + }, + { + "routeId": "L490", + "platformId": "U2563Z1", + "id": "9357f6b4-7564-4f14-a3da-efca1a97b5cb" + }, + { + "routeId": "L685", + "platformId": "U2563Z2", + "id": "13921a6e-60a5-415d-b8ba-8ca17f3e896a" + }, + { + "routeId": "L489", + "platformId": "U2563Z2", + "id": "cd563545-01a1-45ad-b670-ed5cbd92ccda" + }, + { + "routeId": "L490", + "platformId": "U2563Z2", + "id": "02676308-4d60-43f8-bb43-f96934a731d7" + }, + { + "routeId": "L311", + "platformId": "U2569Z1", + "id": "322b56b9-94ff-4ac3-8d12-ddd42b27cf72" + }, + { + "routeId": "L908", + "platformId": "U256Z1", + "id": "70d8d056-b33e-4cf9-9316-fb99fd4c2ada" + }, + { + "routeId": "L221", + "platformId": "U256Z1", + "id": "bc11cf9f-d27a-4e90-8ae9-d906de0aea57" + }, + { + "routeId": "L908", + "platformId": "U256Z2", + "id": "a1fbce8d-b3a4-4b3b-98f7-2b23da7200b3" + }, + { + "routeId": "L221", + "platformId": "U256Z2", + "id": "80486ae7-f503-46d4-bd73-3e4e86337c43" + }, + { + "routeId": "L311", + "platformId": "U2570Z1", + "id": "0192a541-650d-4374-b824-1c282df8385e" + }, + { + "routeId": "L311", + "platformId": "U2570Z2", + "id": "ca4bf102-78df-4b7a-8720-e197ba71d14e" + }, + { + "routeId": "L302", + "platformId": "U2572Z1", + "id": "024650cf-b25b-437c-9018-3f9da2ba4786" + }, + { + "routeId": "L302", + "platformId": "U2572Z2", + "id": "ae801c95-a7ed-4801-a93d-3a15fda7f3a9" + }, + { + "routeId": "L104", + "platformId": "U2574Z1", + "id": "54d4a063-33e3-418e-9889-fdb3d31f258d" + }, + { + "routeId": "L172", + "platformId": "U2574Z1", + "id": "fe41d906-cd68-4ce1-b6ec-fcb1547b278a" + }, + { + "routeId": "L398", + "platformId": "U2575Z1", + "id": "f4a1360b-27e1-47c6-bd71-65ba7837e5af" + }, + { + "routeId": "L398", + "platformId": "U2575Z2", + "id": "6f5ff6e9-ad2b-4a3e-8bd1-d47ffd09c714" + }, + { + "routeId": "L398", + "platformId": "U2576Z1", + "id": "78bcea58-1902-400a-b401-877bcb0f4411" + }, + { + "routeId": "L398", + "platformId": "U2576Z2", + "id": "c8a7b7ee-258d-47b9-8497-db7dd68dc3f8" + }, + { + "routeId": "L398", + "platformId": "U2577Z1", + "id": "542400b0-ed76-4bc2-bf27-e4034773644a" + }, + { + "routeId": "L398", + "platformId": "U2577Z2", + "id": "1616114b-97ac-43e1-89c4-1517b7e4900a" + }, + { + "routeId": "L398", + "platformId": "U2578Z1", + "id": "ff63a710-f64e-4fa7-b586-32abd159ed66" + }, + { + "routeId": "L679", + "platformId": "U2578Z1", + "id": "e9a69875-1abd-48f8-92c7-d7f47444c7ed" + }, + { + "routeId": "L598", + "platformId": "U2578Z1", + "id": "050a81be-0d01-403d-ad36-7475a825096f" + }, + { + "routeId": "L542", + "platformId": "U2578Z1", + "id": "37a4cf34-9283-4e3d-8ab4-18909c640762" + }, + { + "routeId": "L398", + "platformId": "U2578Z2", + "id": "f6975689-7a9d-40f2-bda4-f40416137ce3" + }, + { + "routeId": "L705", + "platformId": "U2578Z2", + "id": "19876eee-c929-4a77-af29-6bc3c04c507d" + }, + { + "routeId": "L679", + "platformId": "U2578Z2", + "id": "70211a4e-296d-4254-af5e-65309646bf05" + }, + { + "routeId": "L598", + "platformId": "U2578Z2", + "id": "e4fd11cd-9b26-44ff-828e-7d605b8008cb" + }, + { + "routeId": "L542", + "platformId": "U2578Z2", + "id": "10f47e0d-011b-41cb-be00-e799fa844707" + }, + { + "routeId": "L398", + "platformId": "U2579Z1", + "id": "07f51012-ab06-4cff-b6e9-1adff46a7e52" + }, + { + "routeId": "L1210", + "platformId": "U2579Z301", + "id": "bb795343-ff56-40e8-9465-aee684e73333" + }, + { + "routeId": "L1222", + "platformId": "U2579Z301", + "id": "ebc49e26-02f1-45c4-8151-68703dee5a5b" + }, + { + "routeId": "L1223", + "platformId": "U2579Z301", + "id": "dbd58084-f0bc-490d-b17d-96679ff047d8" + }, + { + "routeId": "L1302", + "platformId": "U2579Z301", + "id": "7d35a931-ee75-4fce-9ff3-f4571a942eaf" + }, + { + "routeId": "L398", + "platformId": "U2579Z4", + "id": "300339b2-5ef7-4c8c-9c3b-7cdce9fffc48" + }, + { + "routeId": "L679", + "platformId": "U2579Z4", + "id": "09beefdc-fed2-47b3-a7d7-62402b5fd700" + }, + { + "routeId": "L598", + "platformId": "U2579Z4", + "id": "3a55c8f0-4751-45ee-be08-b9ada8ff3de3" + }, + { + "routeId": "L542", + "platformId": "U2579Z4", + "id": "c22ddc16-2c17-48b6-bacb-35b3ba8d86dc" + }, + { + "routeId": "L598", + "platformId": "U2579Z6", + "id": "b7f550bb-e57d-4f61-81eb-b613e6cb5668" + }, + { + "routeId": "L542", + "platformId": "U2579Z6", + "id": "2b5532ac-7c3b-4aad-82ce-07bc2a00488f" + }, + { + "routeId": "L705", + "platformId": "U2579Z7", + "id": "ae5703a5-5921-4dba-8efa-632f0f9d6f3d" + }, + { + "routeId": "L679", + "platformId": "U2579Z7", + "id": "ece4bfb4-6687-4bed-a31a-84d7a574d800" + }, + { + "routeId": "L138", + "platformId": "U257Z1", + "id": "480cb185-b2c6-4ead-85cf-cb7b0a8fdf25" + }, + { + "routeId": "L193", + "platformId": "U257Z1", + "id": "c74f9a7b-d1c7-4076-99dc-f43a5401b5b2" + }, + { + "routeId": "L901", + "platformId": "U257Z1", + "id": "80236919-5482-48bf-af3f-2cdf7b6b139d" + }, + { + "routeId": "L203", + "platformId": "U257Z1", + "id": "a7d414de-6d7a-4da5-b0f2-6cfca5d015b2" + }, + { + "routeId": "L138", + "platformId": "U257Z2", + "id": "34395f6d-6592-4f11-bff4-4ad11554310a" + }, + { + "routeId": "L193", + "platformId": "U257Z2", + "id": "4f9f54b3-bf84-478e-91c6-b83769797772" + }, + { + "routeId": "L901", + "platformId": "U257Z2", + "id": "ba946c70-c3ed-4b4f-a97e-39c3debd046f" + }, + { + "routeId": "L705", + "platformId": "U2580Z1", + "id": "1fba644c-2a46-4394-a25b-3e5b46c9ca70" + }, + { + "routeId": "L598", + "platformId": "U2580Z1", + "id": "e3894d27-4b9c-4b58-9bcc-547483e8601d" + }, + { + "routeId": "L542", + "platformId": "U2580Z1", + "id": "468c915a-1ba2-49de-94b1-1d0275dc3ec1" + }, + { + "routeId": "L598", + "platformId": "U2580Z2", + "id": "9a31ed8d-3de2-4002-98df-9f89d4c31560" + }, + { + "routeId": "L542", + "platformId": "U2580Z2", + "id": "b0d0d940-15db-4fad-b5ef-9723e6ac4829" + }, + { + "routeId": "L598", + "platformId": "U2581Z1", + "id": "28e56153-c0b9-46d1-bc1a-81c971104f4f" + }, + { + "routeId": "L598", + "platformId": "U2582Z1", + "id": "3596b8fb-669e-45d4-ba0a-29716756b1a0" + }, + { + "routeId": "L542", + "platformId": "U2584Z1", + "id": "4f59057d-f475-4629-a852-23b6f85ba9bd" + }, + { + "routeId": "L542", + "platformId": "U2584Z2", + "id": "20db9552-0224-485b-b936-033f6380f924" + }, + { + "routeId": "L598", + "platformId": "U2586Z1", + "id": "fcb60687-8f4f-4625-b550-69aec0091218" + }, + { + "routeId": "L598", + "platformId": "U2586Z2", + "id": "2cafd744-eeea-43df-b21c-aeac55aaf03d" + }, + { + "routeId": "L598", + "platformId": "U2587Z1", + "id": "86e0bcac-e069-4a97-9969-508288d4ec43" + }, + { + "routeId": "L598", + "platformId": "U2587Z2", + "id": "562fb0b1-1b84-4fba-a57a-d73ce0cbef28" + }, + { + "routeId": "L598", + "platformId": "U2588Z1", + "id": "1f18cbd0-2742-4306-98fd-6bbb1d9696ee" + }, + { + "routeId": "L598", + "platformId": "U2588Z2", + "id": "6a897501-a617-40ac-91b0-22c58c6f98d3" + }, + { + "routeId": "L538", + "platformId": "U2588Z3", + "id": "04065772-f4ea-4fd3-8f6f-41908e71c6b0" + }, + { + "routeId": "L443", + "platformId": "U2589Z1", + "id": "2a55e3d9-8fe1-4557-ac25-45684159d739" + }, + { + "routeId": "L443", + "platformId": "U2589Z2", + "id": "21bb8171-626d-4e6f-bce4-6836d65057c5" + }, + { + "routeId": "L992", + "platformId": "U258Z101", + "id": "78871801-b708-4e95-902e-33b7966fa33a" + }, + { + "routeId": "L992", + "platformId": "U258Z102", + "id": "e809ee50-7f26-4ad7-a5b0-d73e1b29e269" + }, + { + "routeId": "L443", + "platformId": "U2591Z1", + "id": "a0d109d0-17fe-48f6-9a9b-b33e286f5c05" + }, + { + "routeId": "L443", + "platformId": "U2591Z2", + "id": "7c26a205-539b-4270-925a-7f54594a2e6d" + }, + { + "routeId": "L443", + "platformId": "U2594Z1", + "id": "db94d602-c813-4afa-bd5c-15d4668b99b2" + }, + { + "routeId": "L443", + "platformId": "U2594Z2", + "id": "01207811-f3d5-4664-a781-e1927b41dc50" + }, + { + "routeId": "L444", + "platformId": "U2598Z1", + "id": "3a5b8a79-014b-409d-99eb-84760fc9342b" + }, + { + "routeId": "L444", + "platformId": "U2598Z2", + "id": "ebfe8229-7bad-410a-bd3c-41b7870ceef0" + }, + { + "routeId": "L151", + "platformId": "U259Z1", + "id": "529f499e-b944-4637-a474-dcffb223949e" + }, + { + "routeId": "L151", + "platformId": "U259Z2", + "id": "c63d56f4-6c48-4131-b895-2ea699bf704e" + }, + { + "routeId": "L9", + "platformId": "U25Z1", + "id": "b89337db-af3b-4c89-8dfd-82bc745f5e5c" + }, + { + "routeId": "L10", + "platformId": "U25Z1", + "id": "1ca98389-cb26-49eb-8d35-ce05e9a00b15" + }, + { + "routeId": "L15", + "platformId": "U25Z1", + "id": "02fe29e2-0284-41c6-9cca-6705547900e1" + }, + { + "routeId": "L16", + "platformId": "U25Z1", + "id": "f7cb03ba-a074-447f-b9c6-fb85a19071db" + }, + { + "routeId": "L98", + "platformId": "U25Z1", + "id": "89a4c99a-e213-4977-bf73-ddfb70e35322" + }, + { + "routeId": "L99", + "platformId": "U25Z1", + "id": "255b7bae-73f4-4737-b8a2-26d48d17cc2f" + }, + { + "routeId": "L9", + "platformId": "U25Z2", + "id": "db7d9d2a-158a-4a30-ac0e-aa663ef24a8e" + }, + { + "routeId": "L10", + "platformId": "U25Z2", + "id": "ebf25f4f-3922-4287-b3cf-73bfee37ed28" + }, + { + "routeId": "L15", + "platformId": "U25Z2", + "id": "05efa02e-18aa-4ecf-b435-6f2a82d3edd6" + }, + { + "routeId": "L16", + "platformId": "U25Z2", + "id": "a724d983-0fe0-46be-b0db-671fc0a84a7b" + }, + { + "routeId": "L98", + "platformId": "U25Z2", + "id": "f8630752-2056-40a3-b9e9-4058928187fe" + }, + { + "routeId": "L99", + "platformId": "U25Z2", + "id": "a340a2a6-9d35-4641-840f-993e9f7ece59" + }, + { + "routeId": "L159", + "platformId": "U2600Z1", + "id": "bc3cec3b-18f3-4924-83da-db9cfeae6d98" + }, + { + "routeId": "L159", + "platformId": "U2600Z2", + "id": "a8daa8a6-360f-46b9-a6cb-ea70b058ac46" + }, + { + "routeId": "L158", + "platformId": "U2601Z1", + "id": "d44bcd85-9db7-4754-8e18-5557fccaadcf" + }, + { + "routeId": "L195", + "platformId": "U2601Z1", + "id": "a86c7102-b33c-4bbe-97b9-62586ba590b1" + }, + { + "routeId": "L201", + "platformId": "U2601Z1", + "id": "6e868b8e-44be-42f8-a139-8248a4d44eb6" + }, + { + "routeId": "L117", + "platformId": "U2602Z1", + "id": "e35acd02-838e-4d4f-b655-03115b51e628" + }, + { + "routeId": "L204", + "platformId": "U2603Z3", + "id": "1656bd8f-f647-46eb-ae49-e2890bf40b75" + }, + { + "routeId": "L223", + "platformId": "U2603Z3", + "id": "2944590a-a472-4747-bc03-83f72e0006dc" + }, + { + "routeId": "L224", + "platformId": "U2603Z3", + "id": "570cd10d-9866-46dd-b15c-49f783ce571b" + }, + { + "routeId": "L123", + "platformId": "U2604Z1", + "id": "9bce9e6d-6150-48cc-8166-b020f08f9f1a" + }, + { + "routeId": "L444", + "platformId": "U2606Z1", + "id": "180fe89b-4752-4a9b-9939-76fb348bdfb8" + }, + { + "routeId": "L444", + "platformId": "U2606Z2", + "id": "011c4ced-a66a-4fb5-baa5-ff910f27d008" + }, + { + "routeId": "L176", + "platformId": "U2607Z1", + "id": "d9e0ceb6-5f69-46d8-82b9-a8f01d99b55d" + }, + { + "routeId": "L910", + "platformId": "U2607Z1", + "id": "3a50462b-0983-4269-a00d-33cbe0d7b3ab" + }, + { + "routeId": "L176", + "platformId": "U2607Z2", + "id": "56bfd58c-6ac1-4df7-b451-fa99cd0c5825" + }, + { + "routeId": "L910", + "platformId": "U2607Z2", + "id": "430d3452-7455-4944-83e6-1b22140f5796" + }, + { + "routeId": "L164", + "platformId": "U2608Z1", + "id": "3c7fd1bd-f935-4275-a4f0-bdb395a483eb" + }, + { + "routeId": "L164", + "platformId": "U2608Z2", + "id": "abb4207d-a6b4-4797-a732-dba21079dd4b" + }, + { + "routeId": "L164", + "platformId": "U2609Z2", + "id": "9ea44b9a-1c86-4bdd-91bb-2cca7094b03b" + }, + { + "routeId": "L151", + "platformId": "U260Z1", + "id": "f84c2a92-9503-4533-96d3-a8306a8cc6ac" + }, + { + "routeId": "L151", + "platformId": "U260Z2", + "id": "5d7fa42d-4585-4302-879e-7b11e2336048" + }, + { + "routeId": "L134", + "platformId": "U261Z1", + "id": "de64b478-8c85-44c5-832e-2eccef3afae8" + }, + { + "routeId": "L134", + "platformId": "U261Z2", + "id": "9cbaed28-767b-4c39-9cfd-a31027954a30" + }, + { + "routeId": "L1", + "platformId": "U262Z2", + "id": "9f9d517a-e8d0-48c4-9f78-15e8c68ebfec" + }, + { + "routeId": "L8", + "platformId": "U262Z2", + "id": "5d958551-806a-4c67-92e6-53f35fe607a9" + }, + { + "routeId": "L12", + "platformId": "U262Z2", + "id": "362a6a5b-e6c1-4bb9-bc27-854ac4ae8329" + }, + { + "routeId": "L14", + "platformId": "U262Z2", + "id": "fc8b2651-8679-4e63-92be-9e894a766796" + }, + { + "routeId": "L25", + "platformId": "U262Z2", + "id": "a5115df9-5d42-489f-9a42-da2e455c948f" + }, + { + "routeId": "L26", + "platformId": "U262Z2", + "id": "ec855f46-43c5-4a62-916b-08385834e618" + }, + { + "routeId": "L91", + "platformId": "U262Z2", + "id": "da59dfcc-cb0b-4b54-9147-7df2845f3d61" + }, + { + "routeId": "L96", + "platformId": "U262Z2", + "id": "40389ce4-232d-442f-a5db-c68557a72f57" + }, + { + "routeId": "L907", + "platformId": "U262Z3", + "id": "46e3848e-3eb7-4747-b4de-57ec1d51ee77" + }, + { + "routeId": "L124", + "platformId": "U263Z1", + "id": "577442cb-46bd-464c-973b-de3acb47e8d1" + }, + { + "routeId": "L139", + "platformId": "U263Z1", + "id": "67b29146-77e4-44a4-a692-d10bf7276c2a" + }, + { + "routeId": "L124", + "platformId": "U263Z3", + "id": "35e1644e-9b04-4ad3-bf8c-7d9770fa5ef1" + }, + { + "routeId": "L139", + "platformId": "U263Z3", + "id": "5a8d1804-75aa-4fce-8bc5-b62c982aa2cc" + }, + { + "routeId": "L188", + "platformId": "U263Z4", + "id": "b12723e2-b9a1-46fd-bde1-50f8e0568b75" + }, + { + "routeId": "L188", + "platformId": "U263Z5", + "id": "5e5b5d7d-9a66-4c50-a715-4ee7e7364c85" + }, + { + "routeId": "L104", + "platformId": "U264Z1", + "id": "f5b18476-017d-48ea-bb9c-d81f50496943" + }, + { + "routeId": "L104", + "platformId": "U264Z2", + "id": "4a2606a9-aa34-4db9-81ff-0cf6acd7c4b1" + }, + { + "routeId": "L118", + "platformId": "U265Z1", + "id": "c54dbc32-a866-4d72-9715-27ea4fae7e02" + }, + { + "routeId": "L124", + "platformId": "U265Z1", + "id": "4cea501a-0934-4d2d-8713-1d075595e9b2" + }, + { + "routeId": "L170", + "platformId": "U265Z1", + "id": "c924b24f-515f-4f88-b15b-d297cf65e514" + }, + { + "routeId": "L193", + "platformId": "U265Z1", + "id": "87a5f2c0-6a51-441f-bb8b-5e2211e0c9ab" + }, + { + "routeId": "L905", + "platformId": "U265Z1", + "id": "4fa616c8-7805-477e-a86d-c975848e904f" + }, + { + "routeId": "L910", + "platformId": "U265Z1", + "id": "bc365807-7b3d-4866-9eaf-26e2040ccc89" + }, + { + "routeId": "L118", + "platformId": "U265Z2", + "id": "30f92072-5f44-4259-bd89-ee97b11a27f0" + }, + { + "routeId": "L124", + "platformId": "U265Z2", + "id": "eb4920ea-00b8-4c7b-ba27-418ea9fe3495" + }, + { + "routeId": "L170", + "platformId": "U265Z2", + "id": "929406bb-1a57-4d81-8736-e0c2575374fe" + }, + { + "routeId": "L193", + "platformId": "U265Z2", + "id": "f4f48fe1-2b10-46b2-9773-a92abd9d6582" + }, + { + "routeId": "L905", + "platformId": "U265Z2", + "id": "b943c2b2-05e4-4262-bd53-14cd20b9259a" + }, + { + "routeId": "L910", + "platformId": "U265Z2", + "id": "9ad6695f-2860-4925-9d6c-97c583e93874" + }, + { + "routeId": "L956", + "platformId": "U265Z2", + "id": "6c88e620-261a-4c62-967c-20900fcf0381" + }, + { + "routeId": "L960", + "platformId": "U265Z2", + "id": "be43944f-fdf4-4f8a-88e9-84f8db958153" + }, + { + "routeId": "L9", + "platformId": "U266Z1", + "id": "407fc85f-cde1-4387-92a2-890c056f4ddd" + }, + { + "routeId": "L11", + "platformId": "U266Z1", + "id": "87c3887e-a21a-4d83-96a7-a29f34c272e0" + }, + { + "routeId": "L31", + "platformId": "U266Z1", + "id": "299e1459-e257-4836-ac30-f382d477ecdc" + }, + { + "routeId": "L98", + "platformId": "U266Z1", + "id": "4eb42d4a-752d-4253-9604-ecff3de0c56f" + }, + { + "routeId": "L9", + "platformId": "U266Z2", + "id": "703d76b7-94f2-4d14-b585-fdfc8bda4dc1" + }, + { + "routeId": "L11", + "platformId": "U266Z2", + "id": "6db36b19-1ef9-4751-9987-c02765030aab" + }, + { + "routeId": "L31", + "platformId": "U266Z2", + "id": "fee2e098-934d-463c-9721-3d024717be4e" + }, + { + "routeId": "L98", + "platformId": "U266Z2", + "id": "e7416a53-8e13-48f6-9ad5-6507368209a5" + }, + { + "routeId": "L146", + "platformId": "U266Z3", + "id": "b58af09b-5a75-4282-a3dc-4c4ad242696e" + }, + { + "routeId": "L146", + "platformId": "U266Z4", + "id": "4c3370d9-ee95-4691-b45b-6048bf8b6430" + }, + { + "routeId": "L102", + "platformId": "U267Z1", + "id": "31134e81-35bc-45e7-97bf-b7ac412a3890" + }, + { + "routeId": "L152", + "platformId": "U267Z1", + "id": "4e15f05a-271f-438e-9dd6-8723099c4fcd" + }, + { + "routeId": "L177", + "platformId": "U267Z1", + "id": "e0562e5d-90ec-4cc8-ae5a-8ba78071e714" + }, + { + "routeId": "L905", + "platformId": "U267Z1", + "id": "10ca8fa4-b907-4be4-ba3c-972bed16e8de" + }, + { + "routeId": "L102", + "platformId": "U267Z2", + "id": "918a7c04-605c-4522-ab67-8cb589a5ac14" + }, + { + "routeId": "L152", + "platformId": "U267Z2", + "id": "5819b109-d834-4756-b5a1-9de2fbf6e5dd" + }, + { + "routeId": "L177", + "platformId": "U267Z2", + "id": "f75557fe-4a32-46cf-ad93-f8ea4eee6a8a" + }, + { + "routeId": "L905", + "platformId": "U267Z2", + "id": "f6b238a5-71cd-440e-8729-fb3c8c43d546" + }, + { + "routeId": "L124", + "platformId": "U268Z1", + "id": "85bb2aaa-9755-44ba-bd12-c9b427be12cd" + }, + { + "routeId": "L135", + "platformId": "U268Z1", + "id": "97f0ba00-737e-4c4c-81b1-cbc0d3de92e8" + }, + { + "routeId": "L139", + "platformId": "U268Z1", + "id": "0c4e3952-adda-4694-a726-3b302bcb7782" + }, + { + "routeId": "L6", + "platformId": "U269Z1", + "id": "59d269bb-6959-43e8-8be5-09c7b7731777" + }, + { + "routeId": "L7", + "platformId": "U269Z1", + "id": "c92bbcbe-9cea-4cf3-8f34-c2b3112fbd73" + }, + { + "routeId": "L19", + "platformId": "U269Z1", + "id": "75f80fd1-2b2d-438f-a272-9870229f891b" + }, + { + "routeId": "L22", + "platformId": "U269Z1", + "id": "978f6a1c-b826-44fe-82e9-56e7d56194e4" + }, + { + "routeId": "L95", + "platformId": "U269Z1", + "id": "8b60467d-c07f-4afc-832f-8a8d107260a1" + }, + { + "routeId": "L97", + "platformId": "U269Z1", + "id": "01948b30-3ba8-44cd-b9b7-628a2d27b068" + }, + { + "routeId": "L99", + "platformId": "U269Z1", + "id": "5a98528b-4fcc-425f-92d0-fbd22bb6c19c" + }, + { + "routeId": "L6", + "platformId": "U269Z2", + "id": "7f8cfd29-e255-4c79-89c9-70ef243a8b6c" + }, + { + "routeId": "L7", + "platformId": "U269Z2", + "id": "4af30660-fa95-433b-a13a-1b5a4efda84f" + }, + { + "routeId": "L19", + "platformId": "U269Z2", + "id": "c5a75acd-8453-4063-9dd9-ec4222f7c420" + }, + { + "routeId": "L22", + "platformId": "U269Z2", + "id": "041c398e-ec8e-4842-8acd-3b1957bd4421" + }, + { + "routeId": "L95", + "platformId": "U269Z2", + "id": "924d7e5b-fd65-4a8a-b43f-d1801abbb853" + }, + { + "routeId": "L97", + "platformId": "U269Z2", + "id": "fcfa4fec-18e4-47c1-a20f-7164e1e6f575" + }, + { + "routeId": "L99", + "platformId": "U269Z2", + "id": "4124ce56-bda4-46dd-a8f4-525aa4471d70" + }, + { + "routeId": "L101", + "platformId": "U269Z3", + "id": "f648b85a-702b-45fd-aedb-c3cd80e4848f" + }, + { + "routeId": "L101", + "platformId": "U269Z4", + "id": "cdbc1579-3d7b-444d-a597-a49be34d8195" + }, + { + "routeId": "L124", + "platformId": "U269Z4", + "id": "563e9b7f-2225-48b3-be9d-66de05e25453" + }, + { + "routeId": "L139", + "platformId": "U269Z4", + "id": "4b9f289f-7ab6-427c-90f9-906499bec537" + }, + { + "routeId": "L227", + "platformId": "U26Z1", + "id": "3f6f68ee-a29b-4fe3-a65c-73b71eff9fa6" + }, + { + "routeId": "L226", + "platformId": "U26Z1", + "id": "15405a52-26c7-4f22-a54c-202bee83cb3a" + }, + { + "routeId": "L959", + "platformId": "U26Z1", + "id": "9b5cb262-194a-4eee-96f7-47b24cd02912" + }, + { + "routeId": "L226", + "platformId": "U26Z2", + "id": "c019e2a8-75be-4352-a0a4-91d11f48f3da" + }, + { + "routeId": "L227", + "platformId": "U26Z2", + "id": "7e715596-b660-417b-8813-aba59e1caeef" + }, + { + "routeId": "L959", + "platformId": "U26Z2", + "id": "f2d44b26-3095-4e1c-b0a2-b5caa6298a1f" + }, + { + "routeId": "L5", + "platformId": "U2701Z1", + "id": "64c8ab16-75c8-42a0-ad04-2be1e0a725d2" + }, + { + "routeId": "L94", + "platformId": "U2701Z1", + "id": "6715f3fe-7621-41f9-96a5-cf36ab3958e1" + }, + { + "routeId": "L5", + "platformId": "U2701Z2", + "id": "6307a852-65a5-456e-a13b-7a9e8cefc22e" + }, + { + "routeId": "L94", + "platformId": "U2701Z2", + "id": "3a38b9ba-68cd-4136-b1d1-11334072bae0" + }, + { + "routeId": "L5", + "platformId": "U2702Z1", + "id": "53f45b3b-f139-4d48-abbe-8fb9154321d6" + }, + { + "routeId": "L94", + "platformId": "U2702Z1", + "id": "e3866577-3c2b-4ffe-8e65-8d12dd32b199" + }, + { + "routeId": "L5", + "platformId": "U2702Z2", + "id": "09056f36-9d1c-436c-a1a8-669c5387dd5e" + }, + { + "routeId": "L94", + "platformId": "U2702Z2", + "id": "7c37f2d4-1b86-4a64-8509-0cd15f97d67d" + }, + { + "routeId": "L177", + "platformId": "U2703Z1", + "id": "9f4758de-b425-434e-b11c-51599548b2be" + }, + { + "routeId": "L195", + "platformId": "U2703Z1", + "id": "6b65ff3d-ac30-43dc-9c75-d6eebd9a5b76" + }, + { + "routeId": "L903", + "platformId": "U2703Z1", + "id": "f57de35e-d374-49bb-b0e8-5af7282aab46" + }, + { + "routeId": "L177", + "platformId": "U2703Z2", + "id": "2ac70acb-4f32-4a33-9d2f-12d20541fb56" + }, + { + "routeId": "L195", + "platformId": "U2703Z2", + "id": "66948239-943e-4bd5-aa30-083a209ed41d" + }, + { + "routeId": "L903", + "platformId": "U2703Z2", + "id": "6317c458-5c3e-4ba6-9ee3-d0bfbdd44f6b" + }, + { + "routeId": "L201", + "platformId": "U2704Z1", + "id": "43f773a5-e790-4e97-85cb-f22617ef289a" + }, + { + "routeId": "L166", + "platformId": "U2704Z1", + "id": "db5360e9-4831-4e7d-b326-e5d0cfb996de" + }, + { + "routeId": "L201", + "platformId": "U2704Z2", + "id": "ef185c7b-d501-4098-94e0-995c07ac4465" + }, + { + "routeId": "L166", + "platformId": "U2704Z2", + "id": "82d345d4-812d-484e-9622-5c75db1f3bfb" + }, + { + "routeId": "L355", + "platformId": "U2706Z1", + "id": "023d5e9e-e1de-4622-99c6-382bff7bfa56" + }, + { + "routeId": "L355", + "platformId": "U2706Z2", + "id": "813ae2a2-1d46-4031-b9cc-8875667a8eb7" + }, + { + "routeId": "L125", + "platformId": "U2707Z1", + "id": "979b6e11-ce06-42f0-ac7a-1032c4088bd6" + }, + { + "routeId": "L154", + "platformId": "U2707Z1", + "id": "b2d2e61f-f587-4a68-a56b-f45b8c1836d7" + }, + { + "routeId": "L175", + "platformId": "U2707Z1", + "id": "75778b41-3d30-474b-be32-c9771a208db5" + }, + { + "routeId": "L183", + "platformId": "U2707Z1", + "id": "f9fc0e09-d874-4e21-8af2-686ddcd49856" + }, + { + "routeId": "L911", + "platformId": "U2707Z1", + "id": "13e45ebe-6e2e-496b-8d41-b8b0b0fab151" + }, + { + "routeId": "L125", + "platformId": "U2707Z2", + "id": "b196d583-3ce2-41c0-80e0-7d65fa14d0be" + }, + { + "routeId": "L154", + "platformId": "U2707Z2", + "id": "fe1d3ebe-7729-4f3a-887d-751f467ecc5c" + }, + { + "routeId": "L175", + "platformId": "U2707Z2", + "id": "f14e0a1b-821e-4c21-9336-c6d7f2b46e23" + }, + { + "routeId": "L183", + "platformId": "U2707Z2", + "id": "ee027556-1582-4047-979b-fa836764dde8" + }, + { + "routeId": "L911", + "platformId": "U2707Z2", + "id": "7d22bdb0-e8a8-442c-9e8f-e96d372903c6" + }, + { + "routeId": "L27", + "platformId": "U2708Z1", + "id": "70c262cc-958d-46ee-9010-e9bcaae42db6" + }, + { + "routeId": "L27", + "platformId": "U2708Z2", + "id": "6405bf4c-2e7a-4869-84a6-904a8453a0c6" + }, + { + "routeId": "L283", + "platformId": "U270Z2", + "id": "344c1cb7-e2b8-4f87-ac3e-1504ebe2a82c" + }, + { + "routeId": "L5", + "platformId": "U2711Z1", + "id": "7ae5128b-0b3a-40c4-9ee3-77225e952933" + }, + { + "routeId": "L94", + "platformId": "U2711Z1", + "id": "3d0e118a-4bdc-470e-9193-6f973c60efc6" + }, + { + "routeId": "L5", + "platformId": "U2711Z2", + "id": "605de0d3-6400-4989-a8d6-df8c5e59275e" + }, + { + "routeId": "L94", + "platformId": "U2711Z2", + "id": "f599fc30-4b43-485a-a8dd-e3525988e9ed" + }, + { + "routeId": "L104", + "platformId": "U2711Z51", + "id": "e5da9814-db95-4c23-935b-27c4ef7609b5" + }, + { + "routeId": "L120", + "platformId": "U2711Z51", + "id": "61f50cec-4646-4441-9259-42ed07cf15b0" + }, + { + "routeId": "L130", + "platformId": "U2711Z51", + "id": "80ceb893-bd16-410b-89a6-ab34cf5d1f0c" + }, + { + "routeId": "L951", + "platformId": "U2711Z51", + "id": "a559ae27-d39c-44dc-85f1-0986a71289bc" + }, + { + "routeId": "L104", + "platformId": "U2711Z52", + "id": "20c96893-9f90-491f-92c4-0ecf00e494cf" + }, + { + "routeId": "L120", + "platformId": "U2711Z52", + "id": "5cc85cee-c5f8-4f07-8034-47d997957ded" + }, + { + "routeId": "L130", + "platformId": "U2711Z52", + "id": "4661f576-fc16-44bc-8635-b1aaf67f55f0" + }, + { + "routeId": "L951", + "platformId": "U2711Z52", + "id": "e0490fef-587f-473d-bce9-b20c9d0c3c5d" + }, + { + "routeId": "L104", + "platformId": "U2712Z1", + "id": "404fadb7-25fb-4386-98de-305299457c9d" + }, + { + "routeId": "L130", + "platformId": "U2712Z1", + "id": "8ea0079a-b4ff-4e8a-9300-a0234ecff5b8" + }, + { + "routeId": "L176", + "platformId": "U2713Z2", + "id": "97e3116b-7737-4199-a01b-8cd3227913c8" + }, + { + "routeId": "L910", + "platformId": "U2713Z2", + "id": "a1b54617-f5bc-4eea-ad41-535311aac103" + }, + { + "routeId": "L241", + "platformId": "U2714Z1", + "id": "8ceef493-d432-49bd-a583-f99dd138ca3b" + }, + { + "routeId": "L917", + "platformId": "U2714Z1", + "id": "3eb7528f-d500-4aba-8935-3cac347374c7" + }, + { + "routeId": "L154", + "platformId": "U2715Z1", + "id": "66120733-b9a6-4ede-a392-c98900f3f840" + }, + { + "routeId": "L901", + "platformId": "U2715Z1", + "id": "61dac465-e62e-4709-a967-1ce199e1223f" + }, + { + "routeId": "L357", + "platformId": "U2715Z1", + "id": "646e740a-19dd-434e-954b-42417d68f0ea" + }, + { + "routeId": "L327", + "platformId": "U2715Z1", + "id": "822b54af-4de7-4af9-bd43-f219dc701cd9" + }, + { + "routeId": "L331", + "platformId": "U2715Z1", + "id": "bd39fe47-60f7-45df-971d-b7d3cee1a0c0" + }, + { + "routeId": "L154", + "platformId": "U2715Z2", + "id": "43b42736-aac6-4ea3-85dd-ea8b0897013f" + }, + { + "routeId": "L901", + "platformId": "U2715Z2", + "id": "28a0dbb3-1026-4410-8fbf-6b1cb9485726" + }, + { + "routeId": "L357", + "platformId": "U2715Z2", + "id": "5daa7be3-e55f-4c7b-aa4a-21205e4d7821" + }, + { + "routeId": "L327", + "platformId": "U2715Z2", + "id": "448ca076-87fa-428a-b35b-565a9b61130f" + }, + { + "routeId": "L331", + "platformId": "U2715Z2", + "id": "1883584a-ffc8-42da-b9ed-344eb82a3807" + }, + { + "routeId": "L108", + "platformId": "U2716Z1", + "id": "143b71b5-4d5d-4159-a417-16a25389f7e2" + }, + { + "routeId": "L131", + "platformId": "U2716Z1", + "id": "feb3e8cf-0c6d-4311-b1bc-1c79e817e474" + }, + { + "routeId": "L907", + "platformId": "U2716Z1", + "id": "f92a7230-f5e2-4115-a215-50dc32a87125" + }, + { + "routeId": "L108", + "platformId": "U2716Z2", + "id": "095a6346-c71a-49da-b45d-a726f0590b7b" + }, + { + "routeId": "L131", + "platformId": "U2716Z2", + "id": "f5ba08ee-df63-471c-8b78-599a15f6ae69" + }, + { + "routeId": "L907", + "platformId": "U2716Z2", + "id": "f52d24d6-f86a-4e00-900a-30e59a759770" + }, + { + "routeId": "L156", + "platformId": "U2719Z1", + "id": "564a4aab-664c-4ca7-aabc-70dfd79f67ec" + }, + { + "routeId": "L126", + "platformId": "U271Z1", + "id": "5b415c0f-660b-4ec5-8bd0-700041c01f62" + }, + { + "routeId": "L203", + "platformId": "U271Z1", + "id": "65c46433-2d36-490f-8ee8-0f0eee302fb4" + }, + { + "routeId": "L126", + "platformId": "U271Z2", + "id": "78e95436-74ea-4066-ac44-49b074543367" + }, + { + "routeId": "L203", + "platformId": "U271Z2", + "id": "f86b14f1-5b39-4b0f-ac7a-23cb257ca99e" + }, + { + "routeId": "L3", + "platformId": "U272Z1", + "id": "da131992-5c09-4c93-b771-280c81710592" + }, + { + "routeId": "L10", + "platformId": "U272Z1", + "id": "938e2024-7f61-43b7-aeb4-ad15ddb2e0f6" + }, + { + "routeId": "L95", + "platformId": "U272Z1", + "id": "f2bd2fb4-92fe-4006-9433-2a1c4e07d10a" + }, + { + "routeId": "L825", + "platformId": "U272Z1", + "id": "15a718a8-d3a0-4465-b168-a12d8be7dea9" + }, + { + "routeId": "L894", + "platformId": "U272Z1", + "id": "dee52a61-18a6-444b-88c4-1cd8750ff23a" + }, + { + "routeId": "L168", + "platformId": "U273Z1", + "id": "ecb0c0ae-80cc-43c9-b896-b4469ce6f52f" + }, + { + "routeId": "L191", + "platformId": "U273Z1", + "id": "dfcc0db9-1b1f-4d6c-b6ff-c052cd11eda9" + }, + { + "routeId": "L910", + "platformId": "U273Z1", + "id": "b7c749fe-518d-4fd0-ba6e-9e6bab7b00c7" + }, + { + "routeId": "L111", + "platformId": "U274Z1", + "id": "a000aea5-fae5-4ff1-b16b-0979366b3a80" + }, + { + "routeId": "L111", + "platformId": "U274Z2", + "id": "4abc56fb-55ff-4aa9-881c-0443a36c873d" + }, + { + "routeId": "L329", + "platformId": "U274Z2", + "id": "ee4a6ed9-70fe-4069-8593-e61775029e9b" + }, + { + "routeId": "L303", + "platformId": "U274Z2", + "id": "4e062348-ced3-42c6-be3b-5b9c05295fd3" + }, + { + "routeId": "L175", + "platformId": "U2751Z1", + "id": "b7d1d2a3-2024-44cf-a6aa-8935c564e5fc" + }, + { + "routeId": "L175", + "platformId": "U2751Z2", + "id": "530cac62-490e-4922-a524-e74b2d6c2e5f" + }, + { + "routeId": "L175", + "platformId": "U2752Z1", + "id": "3a84be9e-895b-48a9-a66f-1280ccfc1e2a" + }, + { + "routeId": "L175", + "platformId": "U2752Z2", + "id": "36a4096d-130c-40a0-b967-23b7fd984823" + }, + { + "routeId": "L162", + "platformId": "U2753Z2", + "id": "ebce5eba-fb5e-4d5b-955c-e10bf5ca1d09" + }, + { + "routeId": "L913", + "platformId": "U2753Z2", + "id": "3ecc6adb-f26c-4468-9db1-eb64e074ff0d" + }, + { + "routeId": "L113", + "platformId": "U2754Z1", + "id": "26da1859-ab22-40f1-a0fe-fcc06e95e571" + }, + { + "routeId": "L113", + "platformId": "U2754Z2", + "id": "22824ebd-a147-491e-abf6-08cb7e3c1004" + }, + { + "routeId": "L108", + "platformId": "U2757Z1", + "id": "c97bd888-be0d-45d9-9f0f-337800cd07da" + }, + { + "routeId": "L108", + "platformId": "U2757Z2", + "id": "6ea9fd1f-b742-463a-aec3-2bd3a28020f8" + }, + { + "routeId": "L229", + "platformId": "U2758Z1", + "id": "ce64eca8-b914-4e74-8072-c266f51cad4e" + }, + { + "routeId": "L229", + "platformId": "U2758Z2", + "id": "f578019e-9512-4eb2-947e-b4a033700b41" + }, + { + "routeId": "L159", + "platformId": "U2759Z1", + "id": "80b8f4f4-1ccf-4a3e-9266-2e83e53b030b" + }, + { + "routeId": "L159", + "platformId": "U2759Z2", + "id": "0cfc17c1-cc96-4cb1-a123-72ae87349394" + }, + { + "routeId": "L111", + "platformId": "U275Z1", + "id": "79b7dc15-9546-4f9b-84b6-00c1f4e3af86" + }, + { + "routeId": "L908", + "platformId": "U275Z1", + "id": "f76d3afd-c12a-463f-b6ba-c1c9888e8fd9" + }, + { + "routeId": "L329", + "platformId": "U275Z1", + "id": "277b2b92-8227-4d89-99e5-c018aad1e465" + }, + { + "routeId": "L111", + "platformId": "U275Z2", + "id": "8e8dc28a-d69d-432d-9b30-80cce4456734" + }, + { + "routeId": "L908", + "platformId": "U275Z2", + "id": "be408bd8-d000-40d3-8eab-76f34445c497" + }, + { + "routeId": "L329", + "platformId": "U275Z2", + "id": "042146c2-02cc-4b4d-abf8-926bb671f60b" + }, + { + "routeId": "L159", + "platformId": "U2760Z1", + "id": "e7988a6c-c095-425e-99b3-2f8a67b09bc2" + }, + { + "routeId": "L159", + "platformId": "U2760Z2", + "id": "eccaf2ff-185c-4940-9176-988c781c5320" + }, + { + "routeId": "L224", + "platformId": "U2763Z1", + "id": "ef0b15b8-d930-4112-8430-032127e84170" + }, + { + "routeId": "L130", + "platformId": "U2764Z1", + "id": "8aa11ea5-339c-4633-b360-1102a2d19523" + }, + { + "routeId": "L246", + "platformId": "U2764Z1", + "id": "d045848e-9d71-47da-9c88-e7710bfaf4f2" + }, + { + "routeId": "L130", + "platformId": "U2764Z2", + "id": "1aff06af-91ba-4f16-abc7-92fde2e300f0" + }, + { + "routeId": "L246", + "platformId": "U2764Z2", + "id": "be8811de-c9cf-4c1f-aa5e-9ce10504082d" + }, + { + "routeId": "L164", + "platformId": "U2766Z1", + "id": "1dec2a6d-48fc-4c0f-96e9-c00f8e7c8489" + }, + { + "routeId": "L164", + "platformId": "U2766Z2", + "id": "e5ac9772-a6d5-498c-8fe6-93c87e6e052f" + }, + { + "routeId": "L108", + "platformId": "U2767Z1", + "id": "8bcc96dc-dc68-4d64-9e57-2fbed3a94950" + }, + { + "routeId": "L108", + "platformId": "U2767Z2", + "id": "e26301ae-ebfb-4c4e-9453-f5e596dc0232" + }, + { + "routeId": "L108", + "platformId": "U2768Z1", + "id": "68c8fe93-089c-4429-b977-db82c713a955" + }, + { + "routeId": "L108", + "platformId": "U2768Z2", + "id": "1bc0e6be-1efe-4810-82f2-4ef96c5f340b" + }, + { + "routeId": "L159", + "platformId": "U2769Z1", + "id": "022ce6a2-b079-4e29-8ffc-9eb0d5105bcb" + }, + { + "routeId": "L201", + "platformId": "U2769Z1", + "id": "75359e2d-08d0-45d9-8653-f9d0b7aed6f2" + }, + { + "routeId": "L916", + "platformId": "U2769Z1", + "id": "276939cf-be13-422b-b126-941686933787" + }, + { + "routeId": "L159", + "platformId": "U2769Z2", + "id": "27fb4dd8-ca46-49b7-8b80-ea9de177246f" + }, + { + "routeId": "L201", + "platformId": "U2769Z2", + "id": "be8ac43c-58f2-4707-8304-3dd10e325317" + }, + { + "routeId": "L916", + "platformId": "U2769Z2", + "id": "52320ca6-e988-41a8-bc71-c6e888758f7b" + }, + { + "routeId": "L109", + "platformId": "U276Z1", + "id": "64c48a5d-56a8-479d-9dbc-b13fea320ec0" + }, + { + "routeId": "L183", + "platformId": "U276Z1", + "id": "e7198028-eaab-4df9-ac06-7ececc935653" + }, + { + "routeId": "L109", + "platformId": "U276Z2", + "id": "25c53024-1103-4bc1-967d-a64170303700" + }, + { + "routeId": "L183", + "platformId": "U276Z2", + "id": "3343774e-2e10-47ec-9fdf-ccbf440f90fc" + }, + { + "routeId": "L156", + "platformId": "U2770Z1", + "id": "ab34487b-e24b-4926-b10d-2e7ece53d319" + }, + { + "routeId": "L235", + "platformId": "U2771Z1", + "id": "f3cd38e6-5d3c-478b-be97-2889541f17e0" + }, + { + "routeId": "L235", + "platformId": "U2771Z2", + "id": "314b15eb-4ead-473a-a604-33af60abc068" + }, + { + "routeId": "L235", + "platformId": "U2772Z1", + "id": "da88de2d-1fab-4caf-8a6a-74582bcbf2da" + }, + { + "routeId": "L235", + "platformId": "U2773Z1", + "id": "db563625-3b48-4a04-9f87-9594bf186bf3" + }, + { + "routeId": "L235", + "platformId": "U2774Z1", + "id": "dbe69444-dc56-47bc-8323-84fecc167815" + }, + { + "routeId": "L235", + "platformId": "U2775Z1", + "id": "4770820f-4a24-457a-80be-c34405339206" + }, + { + "routeId": "L235", + "platformId": "U2776Z1", + "id": "8d34fd53-e9ed-4bf4-8d10-a8132380dd86" + }, + { + "routeId": "L110", + "platformId": "U2778Z1", + "id": "b00e1fea-c863-48da-8c7b-049cc7243693" + }, + { + "routeId": "L351", + "platformId": "U2778Z1", + "id": "f626b4f6-1431-414f-8036-0bba5520de4c" + }, + { + "routeId": "L110", + "platformId": "U2778Z2", + "id": "35bbc1ce-d6f9-4153-84f5-2f1d55fdea90" + }, + { + "routeId": "L351", + "platformId": "U2778Z2", + "id": "c1324047-3ce3-4c06-91f0-b3f0470f3df8" + }, + { + "routeId": "L226", + "platformId": "U277Z1", + "id": "e04281b7-635b-424e-bfcd-0622d6ab9eef" + }, + { + "routeId": "L227", + "platformId": "U277Z1", + "id": "5283f30b-e21c-4264-9c2f-8c19fdbf12b6" + }, + { + "routeId": "L226", + "platformId": "U277Z2", + "id": "f391e4e9-5e57-4aa8-8766-c81772f3ea86" + }, + { + "routeId": "L227", + "platformId": "U277Z2", + "id": "cb46338e-2a22-4725-a440-ed711b978404" + }, + { + "routeId": "L122", + "platformId": "U2780Z1", + "id": "f79c8eb1-7b05-433d-8caa-e7e4268488a1" + }, + { + "routeId": "L906", + "platformId": "U2780Z1", + "id": "d8a8ddc4-e4b6-42b7-bab9-2d5a8650a25d" + }, + { + "routeId": "L363", + "platformId": "U2780Z1", + "id": "c430c1a2-8594-4602-9818-2698a5f5c92a" + }, + { + "routeId": "L122", + "platformId": "U2780Z2", + "id": "b117268f-d4c1-405b-ad42-dba4b2b0ca39" + }, + { + "routeId": "L906", + "platformId": "U2780Z2", + "id": "dd44ae5d-fc9f-40b2-8644-c506675dc2f7" + }, + { + "routeId": "L363", + "platformId": "U2780Z2", + "id": "10295f31-0c58-437d-8d27-eaf602d3ba65" + }, + { + "routeId": "L22", + "platformId": "U2781Z1", + "id": "147ad520-34ca-4dee-8c3e-46ae1ec81876" + }, + { + "routeId": "L26", + "platformId": "U2781Z1", + "id": "14a82bf7-df3c-4efb-a037-46b82970249c" + }, + { + "routeId": "L97", + "platformId": "U2781Z1", + "id": "5ecdaf91-cc86-483a-9910-1196c8a62152" + }, + { + "routeId": "L99", + "platformId": "U2781Z1", + "id": "64f8e19a-9ddb-4f2e-9e29-84fc3b5752ed" + }, + { + "routeId": "L101", + "platformId": "U2781Z1", + "id": "2b5507d7-37ab-45b3-af09-4d36af8b652b" + }, + { + "routeId": "L138", + "platformId": "U2781Z1", + "id": "ffa489b0-903c-40f6-a075-fecef8d24b78" + }, + { + "routeId": "L175", + "platformId": "U2781Z1", + "id": "bb3be103-ea8b-41e4-8a15-7c6f09b7afff" + }, + { + "routeId": "L177", + "platformId": "U2781Z1", + "id": "c2214be2-bf45-4c26-89b6-6aeb345029c7" + }, + { + "routeId": "L195", + "platformId": "U2781Z1", + "id": "21154fd1-0d19-4e5d-bb00-a554487805d0" + }, + { + "routeId": "L22", + "platformId": "U2781Z2", + "id": "3ff83df0-9013-4fa5-b910-be27a736e510" + }, + { + "routeId": "L26", + "platformId": "U2781Z2", + "id": "7ae98e33-cc29-4c49-92f2-9446ae94eaab" + }, + { + "routeId": "L97", + "platformId": "U2781Z2", + "id": "2c5c4877-5f41-40f4-8c63-bc9643b7fd2f" + }, + { + "routeId": "L99", + "platformId": "U2781Z2", + "id": "ec1f1168-df69-41e0-85bf-2b03f9c1eb32" + }, + { + "routeId": "L101", + "platformId": "U2781Z2", + "id": "d701bd0a-5796-49a0-8d18-c24f31e7a417" + }, + { + "routeId": "L138", + "platformId": "U2781Z2", + "id": "2471a285-d62d-4839-903c-cbb5f912a9a7" + }, + { + "routeId": "L175", + "platformId": "U2781Z2", + "id": "a034ea61-e98a-48dc-89de-47eab6173e56" + }, + { + "routeId": "L177", + "platformId": "U2781Z2", + "id": "ef49679a-1797-4297-88fd-1b94b94775ac" + }, + { + "routeId": "L195", + "platformId": "U2781Z2", + "id": "1f27f18a-3a19-4141-82f7-c6af5e7589d5" + }, + { + "routeId": "L1217", + "platformId": "U2781Z301", + "id": "40fd3d02-18d1-4d05-8582-9c2a7276f1e0" + }, + { + "routeId": "L1249", + "platformId": "U2781Z301", + "id": "ecff74b0-1be6-4929-b663-d73e1809ee9a" + }, + { + "routeId": "L1309", + "platformId": "U2781Z301", + "id": "c55487da-a926-443a-91e7-4f675ae062b9" + }, + { + "routeId": "L18", + "platformId": "U2784Z1", + "id": "1391d449-43fd-4bbc-9b9d-587d91232aa8" + }, + { + "routeId": "L19", + "platformId": "U2784Z1", + "id": "10294ec7-1144-4887-8c23-3b8f8f23c883" + }, + { + "routeId": "L93", + "platformId": "U2784Z1", + "id": "4321f413-d7c5-4030-a6d2-0c6eea9f52ae" + }, + { + "routeId": "L193", + "platformId": "U2784Z1", + "id": "90c3536c-c647-4817-9e89-b133ac8ebf3c" + }, + { + "routeId": "L905", + "platformId": "U2784Z1", + "id": "f2c7b46a-831e-430d-839e-23e0b1057bf3" + }, + { + "routeId": "L910", + "platformId": "U2784Z1", + "id": "ba93a8d3-5268-4787-8ebd-e18cd59277ac" + }, + { + "routeId": "L18", + "platformId": "U2784Z2", + "id": "2ccbdcf0-2eee-4884-82bd-13c9f43c47a7" + }, + { + "routeId": "L19", + "platformId": "U2784Z2", + "id": "f4988498-fc1b-44a9-bee7-bc1d46433f71" + }, + { + "routeId": "L93", + "platformId": "U2784Z2", + "id": "2ec54645-6523-456c-b909-d48c15cc2b5b" + }, + { + "routeId": "L193", + "platformId": "U2784Z2", + "id": "ddf69eec-e406-4ffe-accd-535114dd02bf" + }, + { + "routeId": "L905", + "platformId": "U2784Z2", + "id": "5e1a35ba-2997-489f-beb2-394ca68edc90" + }, + { + "routeId": "L910", + "platformId": "U2784Z2", + "id": "fbb6919b-8b3b-4630-b451-e3f20cf99d49" + }, + { + "routeId": "L172", + "platformId": "U2786Z1", + "id": "b75e302a-ed2c-4aef-9f25-5d38e7d85b8f" + }, + { + "routeId": "L244", + "platformId": "U2786Z1", + "id": "ebbf89f1-8285-41c2-8eaf-fcae311cea9c" + }, + { + "routeId": "L133", + "platformId": "U2787Z1", + "id": "a159a5ef-5bfc-43ec-808a-b701e997e880" + }, + { + "routeId": "L136", + "platformId": "U2787Z1", + "id": "9f1a3e47-acb9-4b94-997e-973f5c14bec9" + }, + { + "routeId": "L207", + "platformId": "U2787Z1", + "id": "f0241ab9-f5a6-424a-8167-932a1a7f6001" + }, + { + "routeId": "L908", + "platformId": "U2787Z1", + "id": "4d566bdf-6a6a-4c67-8e7c-534b4edbde98" + }, + { + "routeId": "L909", + "platformId": "U2787Z1", + "id": "cbe2d234-fc16-4630-b2f3-9e5516f50557" + }, + { + "routeId": "L913", + "platformId": "U2787Z1", + "id": "11f2022d-2310-4f98-a87d-e75ea5d38ba6" + }, + { + "routeId": "L133", + "platformId": "U2787Z2", + "id": "a4be6cbe-9558-4b4c-be2c-81c0ca42146b" + }, + { + "routeId": "L136", + "platformId": "U2787Z2", + "id": "6d60de9b-4273-4acb-84d7-5227cef43263" + }, + { + "routeId": "L207", + "platformId": "U2787Z2", + "id": "fb2f954b-85ab-48a4-8ff0-8cce9828b978" + }, + { + "routeId": "L908", + "platformId": "U2787Z2", + "id": "40fedc18-5e7d-463b-9215-5a9c12ca9df3" + }, + { + "routeId": "L909", + "platformId": "U2787Z2", + "id": "2ab3c7b5-366f-4ad3-93e5-fcc61a41b996" + }, + { + "routeId": "L913", + "platformId": "U2787Z2", + "id": "b7b345f6-74ec-4543-9298-bbd92fcc4003" + }, + { + "routeId": "L101", + "platformId": "U2788Z1", + "id": "769f45b0-be68-4530-976f-9fed860a0603" + }, + { + "routeId": "L101", + "platformId": "U2788Z2", + "id": "c194a527-baf8-40cb-8af2-677f1a8faf96" + }, + { + "routeId": "L101", + "platformId": "U2789Z1", + "id": "2f1d8d5f-2341-4b6d-9ad7-dc9704e44ff0" + }, + { + "routeId": "L101", + "platformId": "U2789Z2", + "id": "d3c97d77-841c-4c61-9608-fbc65c791c3e" + }, + { + "routeId": "L122", + "platformId": "U278Z1", + "id": "9938a32b-24fb-4bae-a0d8-11c33fbe186f" + }, + { + "routeId": "L906", + "platformId": "U278Z1", + "id": "ee55cb94-bc35-4047-a270-91f68fef4150" + }, + { + "routeId": "L363", + "platformId": "U278Z1", + "id": "f4184d43-edbe-49bb-a8de-70f3e6f2f036" + }, + { + "routeId": "L122", + "platformId": "U278Z2", + "id": "7e086821-971e-4c73-bcfd-8573a2749516" + }, + { + "routeId": "L906", + "platformId": "U278Z2", + "id": "776cf3f9-48f8-40ea-9b08-44e1878cddce" + }, + { + "routeId": "L363", + "platformId": "U278Z2", + "id": "1fa8bbea-83bb-4db0-9d71-9ec0eecbc2e6" + }, + { + "routeId": "L164", + "platformId": "U2791Z1", + "id": "8acdf6c0-da72-41c7-86a8-a7f50254331b" + }, + { + "routeId": "L164", + "platformId": "U2791Z2", + "id": "7bdd431e-b5bc-4397-ba47-05a7ae933928" + }, + { + "routeId": "L154", + "platformId": "U2794Z1", + "id": "6e05978c-974f-42e7-ba1e-f6d747f9791e" + }, + { + "routeId": "L901", + "platformId": "U2794Z1", + "id": "3d1c6f4c-72b5-48b4-ac10-ba44bd6758f7" + }, + { + "routeId": "L203", + "platformId": "U2794Z1", + "id": "5034252d-7445-43a3-8d59-5106d50a980a" + }, + { + "routeId": "L154", + "platformId": "U2794Z2", + "id": "bfffdc7a-1cb7-4fbe-8efc-1d5a775681c4" + }, + { + "routeId": "L901", + "platformId": "U2794Z2", + "id": "ef114bb0-f476-477b-adf1-9d681b75316d" + }, + { + "routeId": "L203", + "platformId": "U2794Z2", + "id": "6eb5cbd5-b1f7-445b-a3a7-aaa6cc899ee7" + }, + { + "routeId": "L166", + "platformId": "U2796Z1", + "id": "f800216e-aa30-43b2-88ab-5c71e41e3925" + }, + { + "routeId": "L158", + "platformId": "U2796Z2", + "id": "8aff74d7-7e20-4e11-9289-c257f2cf60ba" + }, + { + "routeId": "L110", + "platformId": "U2796Z2", + "id": "fc8d5330-50e0-41d5-bce5-63d5ba667a84" + }, + { + "routeId": "L166", + "platformId": "U2796Z2", + "id": "c3a411a3-aa0f-495b-8e86-2105f1693347" + }, + { + "routeId": "L351", + "platformId": "U2796Z2", + "id": "16f7dafe-fe43-412e-bf4e-f8ff8b5e498f" + }, + { + "routeId": "L141", + "platformId": "U279Z1", + "id": "847ded0b-6612-485a-8601-a84202615fc3" + }, + { + "routeId": "L912", + "platformId": "U279Z1", + "id": "866d4b5d-67ea-4757-9a05-398240011b45" + }, + { + "routeId": "L171", + "platformId": "U279Z1", + "id": "7316a310-9ce2-4853-a934-948ec44b262c" + }, + { + "routeId": "L141", + "platformId": "U279Z2", + "id": "270a1320-1a09-4902-ab75-ee237c963a1f" + }, + { + "routeId": "L912", + "platformId": "U279Z2", + "id": "0643d80f-cb72-4be9-adad-44b0a6c027d2" + }, + { + "routeId": "L171", + "platformId": "U279Z2", + "id": "1a207ade-a560-477d-9633-68f908b84bf2" + }, + { + "routeId": "L149", + "platformId": "U27Z1", + "id": "f2346294-337d-4198-82d9-f790d1ad44df" + }, + { + "routeId": "L904", + "platformId": "U27Z1", + "id": "7f7b0498-b74e-4ec3-a0a0-6f56bb4bc1a0" + }, + { + "routeId": "L149", + "platformId": "U27Z2", + "id": "8bf8931d-1175-439e-b849-32a0a6626fa5" + }, + { + "routeId": "L904", + "platformId": "U27Z2", + "id": "7961c999-bab7-41ab-b02d-411e9a54bda5" + }, + { + "routeId": "L1223", + "platformId": "U2801Z301", + "id": "80b56d59-dd8f-4441-a26a-d98c726027e2" + }, + { + "routeId": "L1302", + "platformId": "U2801Z301", + "id": "e81f05dc-c504-42ca-813c-72e4a8b645be" + }, + { + "routeId": "L1223", + "platformId": "U2802Z301", + "id": "304dfb4b-641c-415d-8c60-e95e30764038" + }, + { + "routeId": "L1302", + "platformId": "U2802Z301", + "id": "b3827ba7-d594-4f9e-95bc-593743061a08" + }, + { + "routeId": "L616", + "platformId": "U2803Z1", + "id": "175c789d-e003-4e22-9953-68ab6a41a44d" + }, + { + "routeId": "L616", + "platformId": "U2803Z2", + "id": "c8c03afd-bbc7-48a8-8c71-f8d20d3cfee4" + }, + { + "routeId": "L1210", + "platformId": "U2804Z301", + "id": "05f21589-0065-48ba-b22b-1f9994dadb79" + }, + { + "routeId": "L1312", + "platformId": "U2804Z301", + "id": "f7a1aac2-585d-4245-b328-67139ba7a038" + }, + { + "routeId": "L1210", + "platformId": "U2806Z301", + "id": "9ea45e52-9d18-42d9-aa0d-23b26fef1dd3" + }, + { + "routeId": "L1312", + "platformId": "U2806Z301", + "id": "88fac72f-6c1e-4c17-97bd-b640c6bfbc2b" + }, + { + "routeId": "L1210", + "platformId": "U2807Z301", + "id": "0c6394de-028c-4cff-b0b8-b8f0c8d2d3ca" + }, + { + "routeId": "L1312", + "platformId": "U2807Z301", + "id": "7918c108-3ab7-4fdf-a36f-66a95869383a" + }, + { + "routeId": "L1354", + "platformId": "U2809Z301", + "id": "5ca587fc-a6c5-4b2c-9f2d-3207b96ec111" + }, + { + "routeId": "L139", + "platformId": "U280Z1", + "id": "b697d30c-4fe0-4288-834f-2d7789e6bace" + }, + { + "routeId": "L246", + "platformId": "U280Z1", + "id": "8c276e85-a513-4bb6-b9a2-51ff7c96ce9c" + }, + { + "routeId": "L117", + "platformId": "U280Z1", + "id": "7063962c-71e7-4767-b659-d1312599fc98" + }, + { + "routeId": "L917", + "platformId": "U280Z1", + "id": "12d59d51-3243-4104-a7c6-d2498c07a185" + }, + { + "routeId": "L139", + "platformId": "U280Z2", + "id": "dc921ca1-ff10-42a2-aa4d-33d7e68986b7" + }, + { + "routeId": "L117", + "platformId": "U280Z2", + "id": "f15afdec-8a39-486b-9811-d549ee928cc8" + }, + { + "routeId": "L139", + "platformId": "U280Z3", + "id": "2af53d11-84ad-4e0e-90e9-71e48d5b5e7e" + }, + { + "routeId": "L246", + "platformId": "U280Z3", + "id": "043e713f-2c1f-4c77-b3fb-b1d43fc662e2" + }, + { + "routeId": "L117", + "platformId": "U280Z3", + "id": "a0c89e8a-0ef2-46ad-8934-af6610efa0ab" + }, + { + "routeId": "L917", + "platformId": "U280Z3", + "id": "8040d3f4-9d07-4dc9-924b-55b956fc7a3e" + }, + { + "routeId": "L1308", + "platformId": "U280Z301", + "id": "47a5f5f4-75bb-4331-ac29-dcee29f66955" + }, + { + "routeId": "L1388", + "platformId": "U280Z301", + "id": "b538c275-9250-4f4a-a616-a9491059e84f" + }, + { + "routeId": "L1354", + "platformId": "U2810Z301", + "id": "32d751f0-fa60-4c45-a2d8-8683702ab553" + }, + { + "routeId": "L1221", + "platformId": "U2811Z301", + "id": "fb470adf-31d7-4076-8c12-6e1404b22c62" + }, + { + "routeId": "L1303", + "platformId": "U2811Z301", + "id": "11405635-6d9f-4977-9fe6-8eda6437b3a6" + }, + { + "routeId": "L1221", + "platformId": "U2812Z301", + "id": "0686fa9f-abfa-4a36-b119-f9a6ff05f37f" + }, + { + "routeId": "L1303", + "platformId": "U2812Z301", + "id": "b0086267-2761-484e-9e38-b8202675d941" + }, + { + "routeId": "L1221", + "platformId": "U2814Z301", + "id": "da965cb2-164f-42db-9763-f93071183a29" + }, + { + "routeId": "L1303", + "platformId": "U2814Z301", + "id": "808ef378-d67f-4efd-b9c7-253f7cffc090" + }, + { + "routeId": "L747", + "platformId": "U2815Z1", + "id": "fdfa9976-87cf-4e40-98ca-105539545cc1" + }, + { + "routeId": "L1221", + "platformId": "U2815Z301", + "id": "fb922305-4840-48e5-8951-6c07646cbc27" + }, + { + "routeId": "L1223", + "platformId": "U2815Z301", + "id": "b3bb445e-21cd-4fb5-86eb-e148673ff3f7" + }, + { + "routeId": "L1332", + "platformId": "U2815Z301", + "id": "155cb81c-e582-4d8a-8d49-c6fd414a4b29" + }, + { + "routeId": "L1303", + "platformId": "U2815Z301", + "id": "24d7bba3-8233-498b-a9c1-dfbed49b9e45" + }, + { + "routeId": "L679", + "platformId": "U2816Z10", + "id": "4fdf2be9-aed8-4492-88bc-1bf91fea6cf6" + }, + { + "routeId": "L422", + "platformId": "U2816Z10", + "id": "f8eba775-58cb-4fb6-9bf1-175d9bd8a00e" + }, + { + "routeId": "L2805", + "platformId": "U2816Z12", + "id": "f320f454-dfb5-405d-b01a-e6a0a2664a12" + }, + { + "routeId": "L535", + "platformId": "U2816Z12", + "id": "f408aaab-1ed1-45b1-8408-427840fb7161" + }, + { + "routeId": "L536", + "platformId": "U2816Z12", + "id": "f5453f57-8f86-4757-9908-7d57e93ab0bc" + }, + { + "routeId": "L681", + "platformId": "U2816Z12", + "id": "a7c6985e-d628-4e14-9204-02428de0bfcd" + }, + { + "routeId": "L702", + "platformId": "U2816Z12", + "id": "8dcd3db4-2630-46eb-9c06-a272e739bce0" + }, + { + "routeId": "L679", + "platformId": "U2816Z12", + "id": "0d6c3f34-710a-4b6b-a432-8021d7fb8d32" + }, + { + "routeId": "L487", + "platformId": "U2816Z12", + "id": "7af3dbf4-ea01-414a-89d3-a4dd96b78747" + }, + { + "routeId": "L422", + "platformId": "U2816Z12", + "id": "c866607d-8555-4d56-821b-88ce73a41df5" + }, + { + "routeId": "L424", + "platformId": "U2816Z12", + "id": "e4a4309f-a99f-49a6-b229-33abba50b9d0" + }, + { + "routeId": "L421", + "platformId": "U2816Z12", + "id": "bf949041-c8c1-4174-8e50-df547b0e0053" + }, + { + "routeId": "L2805", + "platformId": "U2816Z3", + "id": "ba106186-14f2-4585-a3cc-d20e37ac5ea2" + }, + { + "routeId": "L1219", + "platformId": "U2816Z301", + "id": "6bcd3159-a1c8-437b-9d0b-c76bd9c1f335" + }, + { + "routeId": "L1218", + "platformId": "U2816Z301", + "id": "244f5ccd-8a85-44f0-bd0c-4024fee83586" + }, + { + "routeId": "L1209", + "platformId": "U2816Z301", + "id": "d0ece3d5-4331-4b02-88ee-8f2b92bd9ece" + }, + { + "routeId": "L1222", + "platformId": "U2816Z301", + "id": "42902f41-9577-4b21-89e0-737834bd2422" + }, + { + "routeId": "L1223", + "platformId": "U2816Z301", + "id": "78ee93bf-6f8f-449b-a370-b649dcde708f" + }, + { + "routeId": "L1041", + "platformId": "U2816Z301", + "id": "fd81c739-bd3d-436f-a37e-48db4145f839" + }, + { + "routeId": "L1320", + "platformId": "U2816Z301", + "id": "cb3858f2-268e-490e-8bce-7e6a3a3f7bc4" + }, + { + "routeId": "L1310", + "platformId": "U2816Z301", + "id": "bb20f1d1-4109-43ef-8953-2dad0332744d" + }, + { + "routeId": "L1302", + "platformId": "U2816Z301", + "id": "8bf4975e-6fc3-4483-be05-818dfbb377a6" + }, + { + "routeId": "L1301", + "platformId": "U2816Z301", + "id": "3ebd6321-a923-4612-9c60-03dfc2f7d8dc" + }, + { + "routeId": "L1318", + "platformId": "U2816Z301", + "id": "3a88e5f7-c4a6-42f5-9ea5-31bc30412a98" + }, + { + "routeId": "L705", + "platformId": "U2816Z4", + "id": "0315fa7f-f284-4dfe-a6d8-00786a881335" + }, + { + "routeId": "L702", + "platformId": "U2816Z4", + "id": "14028adf-5a20-405b-86c8-44063b65213a" + }, + { + "routeId": "L681", + "platformId": "U2816Z5", + "id": "ab937e59-75fb-4778-8bc5-76302385eeec" + }, + { + "routeId": "L487", + "platformId": "U2816Z5", + "id": "b9779045-6640-4763-b688-2715a0c451ba" + }, + { + "routeId": "L706", + "platformId": "U2816Z5", + "id": "83edddfa-0a6d-4cb9-bc91-fbfaf2153f38" + }, + { + "routeId": "L705", + "platformId": "U2816Z6", + "id": "06c57f59-5f3b-431a-a338-e3b94f4f0e13" + }, + { + "routeId": "L706", + "platformId": "U2816Z6", + "id": "427779ea-374f-473f-9cbc-d443793a0e08" + }, + { + "routeId": "L536", + "platformId": "U2816Z7", + "id": "6d7cd154-80d4-4850-9a18-fb024a7cf486" + }, + { + "routeId": "L535", + "platformId": "U2816Z8", + "id": "1cdd95dd-362d-4521-8c04-93cc5e29cd5a" + }, + { + "routeId": "L424", + "platformId": "U2816Z9", + "id": "f40629ca-90a1-4a69-a4bd-7af8d4925260" + }, + { + "routeId": "L421", + "platformId": "U2816Z9", + "id": "3f9e5174-07ad-4dbf-8bb0-861a2ad02581" + }, + { + "routeId": "L679", + "platformId": "U2817Z1", + "id": "5e1ab5ca-e2ef-4cc5-9690-395256d13967" + }, + { + "routeId": "L422", + "platformId": "U2817Z1", + "id": "5a7bc1df-1105-4dc6-b248-49dc7c5c7364" + }, + { + "routeId": "L679", + "platformId": "U2817Z2", + "id": "0b08fb1d-c6c1-49b0-993b-27717a8854d7" + }, + { + "routeId": "L422", + "platformId": "U2817Z2", + "id": "ade5febb-271b-462d-82bf-0c5101eacf66" + }, + { + "routeId": "L1219", + "platformId": "U2818Z301", + "id": "373938d0-73b2-48bc-b864-1df36d86d2fb" + }, + { + "routeId": "L1218", + "platformId": "U2818Z301", + "id": "e8506721-658a-4e12-a504-6817a2b58121" + }, + { + "routeId": "L1209", + "platformId": "U2818Z301", + "id": "95b07454-a4c6-4bdc-b8b9-a866b37d368f" + }, + { + "routeId": "L1301", + "platformId": "U2818Z301", + "id": "e2cad00a-76d0-4446-8c44-229ac6c7992f" + }, + { + "routeId": "L679", + "platformId": "U2819Z1", + "id": "c20d342f-1088-4341-8630-ea2172e0c4e6" + }, + { + "routeId": "L679", + "platformId": "U2819Z2", + "id": "f03adde3-5535-47ef-a5ce-b0808c7162e1" + }, + { + "routeId": "L1219", + "platformId": "U2819Z301", + "id": "6ace91e2-6767-46b6-8ef4-adb43953f74b" + }, + { + "routeId": "L1218", + "platformId": "U2819Z301", + "id": "d0809422-ec39-415f-ad9a-3eaee89c2b0f" + }, + { + "routeId": "L1209", + "platformId": "U2819Z301", + "id": "3bf0e891-eaf6-416f-84ee-c4e36502a948" + }, + { + "routeId": "L1301", + "platformId": "U2819Z301", + "id": "d2319e39-de29-467c-b793-2a32c1959b32" + }, + { + "routeId": "L149", + "platformId": "U281Z1", + "id": "7acf7479-6e2a-402c-b127-e2ae626e1ecd" + }, + { + "routeId": "L130", + "platformId": "U281Z1", + "id": "baae5e89-7282-41e2-bc58-a552778c35f5" + }, + { + "routeId": "L246", + "platformId": "U281Z1", + "id": "99b91c36-6173-4e5d-a2ef-6e38e22c7b19" + }, + { + "routeId": "L225", + "platformId": "U281Z3", + "id": "941c36a7-acd4-4a96-a000-b6e67ba9a67f" + }, + { + "routeId": "L225", + "platformId": "U281Z4", + "id": "6c365a71-bef7-44f8-a505-96154460283e" + }, + { + "routeId": "L149", + "platformId": "U281Z6", + "id": "f684c10e-9c11-4cbe-9672-b602293e3fd2" + }, + { + "routeId": "L130", + "platformId": "U281Z7", + "id": "ab0de53b-9579-4e28-868a-f6ad118f75f7" + }, + { + "routeId": "L246", + "platformId": "U281Z7", + "id": "1f6811de-3ee0-41c9-b9a4-0b6f4765e8ed" + }, + { + "routeId": "L1220", + "platformId": "U2821Z301", + "id": "5f320e2f-54d4-4c43-a9b0-6e8afab61ca9" + }, + { + "routeId": "L1304", + "platformId": "U2821Z301", + "id": "9e4c0d2f-4c01-448e-966a-028c9358a2be" + }, + { + "routeId": "L1220", + "platformId": "U2822Z301", + "id": "7dc9cf81-bb61-4feb-b199-f7381eee542d" + }, + { + "routeId": "L1304", + "platformId": "U2822Z301", + "id": "9f984863-f8c7-4240-b2f9-24d94a08adc7" + }, + { + "routeId": "L1220", + "platformId": "U2823Z301", + "id": "6959d377-43f9-46fe-9722-fc3d66301f45" + }, + { + "routeId": "L1304", + "platformId": "U2823Z301", + "id": "a90452b0-d24f-41a0-a657-82239fade9c3" + }, + { + "routeId": "L1220", + "platformId": "U2824Z301", + "id": "07b219c6-1202-46df-843e-9a4f4f2cfd3d" + }, + { + "routeId": "L1304", + "platformId": "U2824Z301", + "id": "f512f873-4a21-4e10-9735-742a58422314" + }, + { + "routeId": "L1220", + "platformId": "U2825Z301", + "id": "68ab1d8a-5a94-4904-8d83-d3c8fca14f4a" + }, + { + "routeId": "L1304", + "platformId": "U2825Z301", + "id": "62808b19-07a1-4202-9fc2-720342180fe6" + }, + { + "routeId": "L1220", + "platformId": "U2826Z301", + "id": "28dd13e8-84fa-4c42-918b-08b16aa91229" + }, + { + "routeId": "L1304", + "platformId": "U2826Z301", + "id": "95cb3eca-ebf6-4bcc-866b-1a5ddb6e662b" + }, + { + "routeId": "L1220", + "platformId": "U2827Z301", + "id": "e7170d8b-fe27-45bd-af7b-2f8f63e1d2e8" + }, + { + "routeId": "L1304", + "platformId": "U2827Z301", + "id": "8ea83739-0605-4e92-ac98-37d67f4a6e5a" + }, + { + "routeId": "L1220", + "platformId": "U2828Z301", + "id": "5088d492-414b-49e5-a2c6-e335a3e9c5f7" + }, + { + "routeId": "L1304", + "platformId": "U2828Z301", + "id": "d2b8d163-f51f-411f-937a-8e9888a48017" + }, + { + "routeId": "L466", + "platformId": "U2829Z1", + "id": "7bb72a16-eb53-4253-bdb2-a3d9099c461d" + }, + { + "routeId": "L617", + "platformId": "U2829Z1", + "id": "5d06edd8-0fdd-4140-850e-accfae976a0f" + }, + { + "routeId": "L646", + "platformId": "U2829Z1", + "id": "fddf87f8-5683-4906-a22c-64d5ac66df7c" + }, + { + "routeId": "L466", + "platformId": "U2829Z2", + "id": "baf682be-6640-4f4c-ad9f-9febe7942b10" + }, + { + "routeId": "L617", + "platformId": "U2829Z2", + "id": "23b8673a-97d6-46b1-9c90-a0df97f31d2b" + }, + { + "routeId": "L646", + "platformId": "U2829Z2", + "id": "f79409d3-59f0-4f2d-9d33-8ce0900370ca" + }, + { + "routeId": "L1220", + "platformId": "U2829Z301", + "id": "c8bcf0c9-c130-4e9e-8ccc-1f8e8dfd934c" + }, + { + "routeId": "L1304", + "platformId": "U2829Z301", + "id": "2b6306fa-df8f-4238-ad21-a993d33bd992" + }, + { + "routeId": "L231", + "platformId": "U282Z1", + "id": "2e014cea-10ec-444a-9901-210276fc956c" + }, + { + "routeId": "L1220", + "platformId": "U2830Z301", + "id": "d77aae56-f239-4288-a6a3-70935f256329" + }, + { + "routeId": "L1304", + "platformId": "U2830Z301", + "id": "a735bb25-a281-424f-8e91-7cfc08b8ff21" + }, + { + "routeId": "L466", + "platformId": "U2831Z1", + "id": "4b8d8c93-92cb-4984-a7f8-07df29e390f4" + }, + { + "routeId": "L466", + "platformId": "U2831Z2", + "id": "9bba1983-9e07-4b0f-9c6c-731fa4860526" + }, + { + "routeId": "L1220", + "platformId": "U2831Z301", + "id": "9848ea42-07e9-432e-9534-3b02cbd51872" + }, + { + "routeId": "L1304", + "platformId": "U2831Z301", + "id": "df507f12-8a46-41a4-b1a5-41dc7ff659d4" + }, + { + "routeId": "L1022", + "platformId": "U2831Z301", + "id": "e981f70f-b80b-4237-849c-88f37bd6b01d" + }, + { + "routeId": "L350", + "platformId": "U2833Z1", + "id": "8eff958a-7592-4cf8-b431-286fbfbdecfa" + }, + { + "routeId": "L954", + "platformId": "U2833Z1", + "id": "f26aca75-7a12-411e-8c34-f488ec4e24ab" + }, + { + "routeId": "L350", + "platformId": "U2833Z2", + "id": "713f28fc-912a-4b18-8f76-938b3f266041" + }, + { + "routeId": "L2254", + "platformId": "U2833Z401", + "id": "95d36c11-00f8-4b3a-83eb-39a5943f55e9" + }, + { + "routeId": "L2254", + "platformId": "U2833Z402", + "id": "ff4a7251-6929-438f-907c-e3a92fb3ee23" + }, + { + "routeId": "L429", + "platformId": "U2835Z1", + "id": "d760ca29-47e9-424b-b2b9-a7286333a9d6" + }, + { + "routeId": "L429", + "platformId": "U2835Z2", + "id": "e3c4791c-37f7-4fa5-9562-8b995e8954b7" + }, + { + "routeId": "L1224", + "platformId": "U2835Z301", + "id": "a4328c49-dc22-4031-b1a5-14764d4d4c86" + }, + { + "routeId": "L1245", + "platformId": "U2835Z301", + "id": "64050216-6ea0-4f1c-8757-34754bf81420" + }, + { + "routeId": "L1305", + "platformId": "U2835Z301", + "id": "f7d631e2-919e-48f5-8590-32af14057e8f" + }, + { + "routeId": "L1224", + "platformId": "U2836Z301", + "id": "e3e8d204-928e-4dc7-91c4-98a2e2b8edba" + }, + { + "routeId": "L1245", + "platformId": "U2836Z301", + "id": "8e463983-f1ca-4a7c-a846-a5f216deedc6" + }, + { + "routeId": "L1305", + "platformId": "U2836Z301", + "id": "473d482c-0b82-45c6-998d-4f911c641139" + }, + { + "routeId": "L1224", + "platformId": "U2837Z301", + "id": "9eed683c-0762-493b-9164-d20b855408fd" + }, + { + "routeId": "L1245", + "platformId": "U2837Z301", + "id": "48be5336-dfd4-42ed-940b-5aaabdcf3daf" + }, + { + "routeId": "L1350", + "platformId": "U2837Z301", + "id": "16ca671c-610d-428b-a072-d0e7afa84aba" + }, + { + "routeId": "L1305", + "platformId": "U2837Z301", + "id": "a1541756-8261-42ac-b7e8-4581f4e18c45" + }, + { + "routeId": "L1345", + "platformId": "U2837Z301", + "id": "39907ebd-5b72-4dd3-83cb-292d3557a422" + }, + { + "routeId": "L1365", + "platformId": "U2838Z301", + "id": "e0d69793-7069-40f0-800b-67f040c24185" + }, + { + "routeId": "L323", + "platformId": "U2839Z1", + "id": "b5e9c119-209e-48b7-9cd7-5cc2bc326dcc" + }, + { + "routeId": "L622", + "platformId": "U2839Z1", + "id": "de0f07ef-4dc3-4867-a100-48eedbdcbd20" + }, + { + "routeId": "L323", + "platformId": "U2839Z2", + "id": "3b9ddd88-10ca-4db7-b6df-5beada3679cd" + }, + { + "routeId": "L622", + "platformId": "U2839Z2", + "id": "8fe1b554-d0e5-431e-a2bb-66e8eea467d2" + }, + { + "routeId": "L2254", + "platformId": "U2839Z401", + "id": "54493d0e-e6c2-455c-bb99-19eab8f1e10d" + }, + { + "routeId": "L2254", + "platformId": "U2839Z402", + "id": "6a96664e-9785-4849-8d22-357ca0723d31" + }, + { + "routeId": "L20", + "platformId": "U283Z1", + "id": "958f343c-88a4-453b-b05a-de23a66668f4" + }, + { + "routeId": "L26", + "platformId": "U283Z1", + "id": "df3de896-5e35-4337-9b1a-e15b51a9f8da" + }, + { + "routeId": "L91", + "platformId": "U283Z1", + "id": "d4bf6b12-8532-457f-b7f4-f0118798ec51" + }, + { + "routeId": "L20", + "platformId": "U283Z2", + "id": "9ecbe784-fbc2-4fcd-860e-f0183a26aef6" + }, + { + "routeId": "L26", + "platformId": "U283Z2", + "id": "7ccb58fd-b577-4ecd-8dd1-33e57b9fdb43" + }, + { + "routeId": "L91", + "platformId": "U283Z2", + "id": "26d3a600-51c6-45c1-a6d1-822be8774f3b" + }, + { + "routeId": "L1224", + "platformId": "U2840Z301", + "id": "1a6d2723-bb4e-45bc-97dc-08de5c643193" + }, + { + "routeId": "L1350", + "platformId": "U2840Z301", + "id": "7b9f2d86-2d13-47ce-a3ff-a5c6a29a6d11" + }, + { + "routeId": "L1224", + "platformId": "U2841Z301", + "id": "2a481970-2a5b-4593-ba47-7217d887f38b" + }, + { + "routeId": "L1350", + "platformId": "U2841Z301", + "id": "cedf44bb-3482-492a-a8b5-83c1d2020f0c" + }, + { + "routeId": "L323", + "platformId": "U2842Z1", + "id": "79939801-5ac3-4978-ac7b-850e0a0f6f48" + }, + { + "routeId": "L323", + "platformId": "U2842Z2", + "id": "1daafe6d-3877-445f-8738-f1a7fbbc6fea" + }, + { + "routeId": "L2254", + "platformId": "U2842Z401", + "id": "0adf6a1e-1109-4a4d-958e-446e8327ba5a" + }, + { + "routeId": "L2254", + "platformId": "U2842Z402", + "id": "8288561d-817b-48b1-8952-e3a31abc4d1a" + }, + { + "routeId": "L1307", + "platformId": "U2845Z301", + "id": "9e3a06cb-66d8-498f-a35c-9c7ef3126acc" + }, + { + "routeId": "L1376", + "platformId": "U2845Z301", + "id": "d065c11c-9ec3-4274-83bd-77dbc97016cb" + }, + { + "routeId": "L1307", + "platformId": "U2846Z301", + "id": "3f5f8473-51fa-427c-bbe0-a7108ffc89c9" + }, + { + "routeId": "L1307", + "platformId": "U2847Z301", + "id": "bb119c85-14b4-40e3-931f-76eb5db55fe7" + }, + { + "routeId": "L638", + "platformId": "U2848Z1", + "id": "71c63f8f-44d5-46c8-88e0-28d8fcad491a" + }, + { + "routeId": "L637", + "platformId": "U2848Z1", + "id": "fd4b7d9e-8d64-42b7-9361-9607f43bf785" + }, + { + "routeId": "L631", + "platformId": "U2848Z2", + "id": "830194b2-01b1-4588-8b5f-140200fed34c" + }, + { + "routeId": "L638", + "platformId": "U2848Z3", + "id": "f07ea73a-cea5-465b-88a5-60671292e17d" + }, + { + "routeId": "L637", + "platformId": "U2848Z3", + "id": "7c737a1a-85cd-44c6-a8fb-f1d0cc8e76a0" + }, + { + "routeId": "L1216", + "platformId": "U2848Z301", + "id": "c290ccff-c747-4329-99be-430261417d0c" + }, + { + "routeId": "L1226", + "platformId": "U2848Z301", + "id": "f3d4a612-3cac-4900-814c-320bf7f13390" + }, + { + "routeId": "L1375", + "platformId": "U2848Z301", + "id": "6fa720bc-7a04-4690-bccd-8f3c8deba2fb" + }, + { + "routeId": "L1370", + "platformId": "U2848Z301", + "id": "e740c39b-bbb4-4e8a-bb85-399b72b372c6" + }, + { + "routeId": "L1307", + "platformId": "U2848Z301", + "id": "0fba446d-e0ad-447e-9b28-98ce59fe1c63" + }, + { + "routeId": "L1306", + "platformId": "U2848Z301", + "id": "ec305f7d-b599-4cba-ae6f-057788c25f99" + }, + { + "routeId": "L633", + "platformId": "U2848Z4", + "id": "26534253-a567-4f46-8e58-fc8e52645f1b" + }, + { + "routeId": "L630", + "platformId": "U2848Z4", + "id": "cfd397f0-aa8b-412a-9c46-5bba186fe36e" + }, + { + "routeId": "L631", + "platformId": "U2848Z4", + "id": "25f82035-002e-43ca-bcdd-1fee97315089" + }, + { + "routeId": "L2260", + "platformId": "U2848Z410", + "id": "35357ea4-f0a9-4339-9bc8-19da0c92c50e" + }, + { + "routeId": "L630", + "platformId": "U2848Z5", + "id": "e45cfbbb-2909-48c0-bf88-b4275c7d45ae" + }, + { + "routeId": "L638", + "platformId": "U2848Z5", + "id": "eaafd0f0-74b0-40df-aef0-e56609740be6" + }, + { + "routeId": "L633", + "platformId": "U2848Z6", + "id": "2f7f0c11-6cec-44ed-acf7-bbcddb2a0b19" + }, + { + "routeId": "L637", + "platformId": "U2848Z6", + "id": "eefda2f0-87c9-4479-8825-3feed7681d75" + }, + { + "routeId": "L1216", + "platformId": "U2849Z301", + "id": "15a71676-6bc4-47a5-a3b0-d2392a3dd2c4" + }, + { + "routeId": "L1226", + "platformId": "U2849Z301", + "id": "cc130d28-9a70-4854-a788-b956ed75ee25" + }, + { + "routeId": "L1370", + "platformId": "U2849Z301", + "id": "e24113db-383b-4a97-8cf5-11a3d65d264c" + }, + { + "routeId": "L121", + "platformId": "U284Z1", + "id": "ca31af73-b4a5-40cb-9bd4-be1892f82b7e" + }, + { + "routeId": "L121", + "platformId": "U284Z2", + "id": "8f97914b-1f0a-45cf-83cf-fb08c0ed17f0" + }, + { + "routeId": "L425", + "platformId": "U2850Z1", + "id": "61d34cf0-7391-4b64-bfed-07ac5838d8d0" + }, + { + "routeId": "L1216", + "platformId": "U2850Z301", + "id": "65c08a62-10c0-4b16-a816-685d40fefbac" + }, + { + "routeId": "L1226", + "platformId": "U2850Z301", + "id": "fb704c74-ef45-4308-8589-dfbd6be9cd12" + }, + { + "routeId": "L1370", + "platformId": "U2850Z301", + "id": "69af096e-fc96-4e7a-bf02-88b05061fe8a" + }, + { + "routeId": "L2260", + "platformId": "U2850Z401", + "id": "f3bc6991-ce26-4922-81f6-67728c9e0f63" + }, + { + "routeId": "L1388", + "platformId": "U2851Z301", + "id": "57a4eba9-3ee4-4601-a6a1-5aa02bfb2aaf" + }, + { + "routeId": "L1388", + "platformId": "U2852Z301", + "id": "ef632108-123f-42f7-884f-a835fbfaf2a9" + }, + { + "routeId": "L1388", + "platformId": "U2854Z301", + "id": "38a1d004-3ef9-4440-89d8-c3863ee5a663" + }, + { + "routeId": "L361", + "platformId": "U2855Z1", + "id": "f0ae3de2-4bac-4947-9037-e7274a3c4e13" + }, + { + "routeId": "L361", + "platformId": "U2855Z2", + "id": "b139f9e7-cebc-4feb-b488-911f35a382c6" + }, + { + "routeId": "L1388", + "platformId": "U2855Z301", + "id": "60a92b23-6dbf-4c71-8158-6f4c72854af8" + }, + { + "routeId": "L361", + "platformId": "U2856Z1", + "id": "f7cace71-9b72-46fa-a1c5-3bdaca84bfe1" + }, + { + "routeId": "L361", + "platformId": "U2856Z2", + "id": "73c14480-70ad-42c6-81ce-12278905f239" + }, + { + "routeId": "L1388", + "platformId": "U2856Z301", + "id": "bd7f6465-c317-4716-8539-14a3cedc2cc9" + }, + { + "routeId": "L1308", + "platformId": "U2857Z301", + "id": "0c641cba-6248-47cb-ac39-a1347ccf311f" + }, + { + "routeId": "L1308", + "platformId": "U2858Z301", + "id": "372fd1e6-1bed-4ed9-adc2-ab66e25c22ad" + }, + { + "routeId": "L1308", + "platformId": "U2859Z301", + "id": "4164012c-6425-43da-93ab-fa1f93b28122" + }, + { + "routeId": "L116", + "platformId": "U285Z1", + "id": "03d48312-9c34-43ed-9a87-4ba806e53700" + }, + { + "routeId": "L116", + "platformId": "U285Z2", + "id": "f6b0bf37-345b-4da9-9100-45092d8bb499" + }, + { + "routeId": "L961", + "platformId": "U2860Z1", + "id": "ed790922-33e4-49ee-9dcc-2583b1d0b955" + }, + { + "routeId": "L395", + "platformId": "U2860Z1", + "id": "f08f508b-9035-41f4-b9dc-442178e27e4b" + }, + { + "routeId": "L395", + "platformId": "U2860Z2", + "id": "8b04ff5e-563c-4ab5-bb95-d40a02ac7a42" + }, + { + "routeId": "L752", + "platformId": "U2861Z1", + "id": "127f4a66-9361-49e5-ba0b-733f9eb0f128" + }, + { + "routeId": "L752", + "platformId": "U2861Z2", + "id": "f1ec4f0e-f3f7-4d94-bb21-84d340ea32c5" + }, + { + "routeId": "L1308", + "platformId": "U2861Z301", + "id": "f8315cbb-6dfe-4368-8727-18c7559b3e2a" + }, + { + "routeId": "L1308", + "platformId": "U2862Z301", + "id": "7cce722f-33e9-4f9c-b3e2-601d0d196e0e" + }, + { + "routeId": "L753", + "platformId": "U2863Z1", + "id": "fb4777b9-1036-4e6b-a2b7-c1f1f339ecdb" + }, + { + "routeId": "L753", + "platformId": "U2863Z2", + "id": "7ab9939f-2506-45bf-a36f-3820f3a81b5c" + }, + { + "routeId": "L1308", + "platformId": "U2863Z301", + "id": "9b67edec-8971-47f7-b95b-19ec6da0e0a7" + }, + { + "routeId": "L1308", + "platformId": "U2864Z301", + "id": "2aa00417-692b-4a36-af0a-821acb82e462" + }, + { + "routeId": "L1308", + "platformId": "U2865Z301", + "id": "6ecd1a6f-45f8-468d-97a9-9380938f1c04" + }, + { + "routeId": "L626", + "platformId": "U2866Z1", + "id": "a33e9c9a-84a3-44c6-b01d-d69b2b34988f" + }, + { + "routeId": "L626", + "platformId": "U2866Z2", + "id": "20aa0028-1711-4cfb-93a3-38bd3db2152a" + }, + { + "routeId": "L2240", + "platformId": "U2866Z401", + "id": "ff2ad3a9-82c1-4054-a762-f3b9c85a7171" + }, + { + "routeId": "L2254", + "platformId": "U2866Z401", + "id": "b191137e-5bb3-4eb4-b2e9-4e40da2b254d" + }, + { + "routeId": "L2240", + "platformId": "U2866Z402", + "id": "8354a967-b740-46fc-ab76-4b5ca9a807ee" + }, + { + "routeId": "L2254", + "platformId": "U2866Z402", + "id": "93598542-c783-4647-b45b-d7ff0f70b7b2" + }, + { + "routeId": "L342", + "platformId": "U2867Z1", + "id": "eaa428d0-0ae6-4f52-a586-4e01302eb507" + }, + { + "routeId": "L388", + "platformId": "U2867Z1", + "id": "a5c5b402-b10f-4fc6-a22c-2f676d419595" + }, + { + "routeId": "L389", + "platformId": "U2867Z1", + "id": "575dce02-20f3-4e43-9518-d54b5748aa02" + }, + { + "routeId": "L342", + "platformId": "U2867Z2", + "id": "9c186a12-5907-4e24-a45d-0ab34945c8f1" + }, + { + "routeId": "L388", + "platformId": "U2867Z2", + "id": "a56644fc-b4a9-489a-8cd0-fbf829179a73" + }, + { + "routeId": "L389", + "platformId": "U2867Z2", + "id": "15080185-1271-4e37-a408-4ec4a38226c5" + }, + { + "routeId": "L2240", + "platformId": "U2867Z401", + "id": "3c641f91-02c1-4278-b9f8-9cd2332001d8" + }, + { + "routeId": "L2254", + "platformId": "U2867Z401", + "id": "c3fa57d6-885d-4754-9dbf-99b5213bff5b" + }, + { + "routeId": "L2240", + "platformId": "U2867Z402", + "id": "41e5213e-7433-4ab1-a85f-556e265de710" + }, + { + "routeId": "L2254", + "platformId": "U2867Z402", + "id": "a560ffa5-4c19-4cc0-a010-db13c2093e2c" + }, + { + "routeId": "L342", + "platformId": "U2868Z1", + "id": "d6724a58-788a-48ed-9de0-c668a8437d49" + }, + { + "routeId": "L388", + "platformId": "U2868Z1", + "id": "247d7062-9864-41c3-8a8b-9ba8ccd052b3" + }, + { + "routeId": "L587", + "platformId": "U2868Z1", + "id": "65a16f99-6bff-4434-a219-49b838c1cbc8" + }, + { + "routeId": "L342", + "platformId": "U2868Z2", + "id": "6bddbdf0-ff8b-41be-be3a-e47b82b981a8" + }, + { + "routeId": "L388", + "platformId": "U2868Z2", + "id": "cbd02cdd-572a-48fd-b1bb-256303d40b45" + }, + { + "routeId": "L587", + "platformId": "U2868Z2", + "id": "ec5bbde9-1a70-41bb-8330-1ad4ea70e919" + }, + { + "routeId": "L1040", + "platformId": "U2868Z301", + "id": "f8c6aaef-572d-45a9-8afa-80312dd089b7" + }, + { + "routeId": "L2240", + "platformId": "U2868Z401", + "id": "682d45eb-5bf3-4cdb-ba15-a22f8b120326" + }, + { + "routeId": "L2254", + "platformId": "U2868Z401", + "id": "f6af8627-cc3f-4ba1-8408-2dfd2923c05c" + }, + { + "routeId": "L1216", + "platformId": "U2869Z301", + "id": "85233ad0-8895-4cfd-bdc2-4857c91cd182" + }, + { + "routeId": "L1226", + "platformId": "U2869Z301", + "id": "51a95cc9-e7ac-4ee6-b35d-e91bc131aaa3" + }, + { + "routeId": "L1370", + "platformId": "U2869Z301", + "id": "0985352a-0bcc-4a97-ba8f-b5a47e3784fe" + }, + { + "routeId": "L2260", + "platformId": "U2869Z402", + "id": "2aa54dc1-73ea-40b5-8ce4-bdfbb6c593fa" + }, + { + "routeId": "L136", + "platformId": "U286Z1", + "id": "10bdd865-9925-4734-99b6-92618acbc0b3" + }, + { + "routeId": "L213", + "platformId": "U286Z1", + "id": "80332946-5c76-44ec-9bb3-707b996b73c5" + }, + { + "routeId": "L905", + "platformId": "U286Z1", + "id": "f3e920de-41c2-4dec-aaae-75bcc17fa5bf" + }, + { + "routeId": "L911", + "platformId": "U286Z1", + "id": "4fd52ddb-cd6f-40df-a4a1-1fedcad346e3" + }, + { + "routeId": "L993", + "platformId": "U286Z101", + "id": "e00b59f8-2684-4d99-9623-2d221b98b732" + }, + { + "routeId": "L993", + "platformId": "U286Z102", + "id": "3bfc2a63-0fa0-4f1f-ab81-e2ea03534b79" + }, + { + "routeId": "L203", + "platformId": "U286Z13", + "id": "71d4eb0a-4e9c-4afc-ab19-b0dcf34770ce" + }, + { + "routeId": "L175", + "platformId": "U286Z2", + "id": "0025d98e-768c-42b5-b484-3d4fb2fec107" + }, + { + "routeId": "L183", + "platformId": "U286Z2", + "id": "8d696253-ad38-44ed-bac0-7d93503e59d5" + }, + { + "routeId": "L203", + "platformId": "U286Z2", + "id": "3f847a0b-bd69-4e67-8af1-56d0aa0e2ed4" + }, + { + "routeId": "L226", + "platformId": "U286Z2", + "id": "6afb1fe1-7f66-4961-b887-8ab4b2926805" + }, + { + "routeId": "L227", + "platformId": "U286Z2", + "id": "52bec6c2-32ee-4c9b-bc9f-668e19ce7c65" + }, + { + "routeId": "L240", + "platformId": "U286Z2", + "id": "fb9f2956-010b-40b2-af7b-ebd75c68bf8a" + }, + { + "routeId": "L125", + "platformId": "U286Z3", + "id": "d26e3f87-3cbe-4dec-811d-dd4ad39574a9" + }, + { + "routeId": "L126", + "platformId": "U286Z3", + "id": "bc137a07-c75b-4026-86c3-cbef44e027f4" + }, + { + "routeId": "L170", + "platformId": "U286Z3", + "id": "13d5a6df-c787-4dd3-b12d-36823bd97ed8" + }, + { + "routeId": "L154", + "platformId": "U286Z3", + "id": "db2554ac-5ec0-44d7-b561-8f672832aa4e" + }, + { + "routeId": "L227", + "platformId": "U286Z3", + "id": "733381f1-9cd7-4fae-83b4-a00cda5a8e9d" + }, + { + "routeId": "L226", + "platformId": "U286Z3", + "id": "05cb95fe-1d5e-49bd-82a7-bb49a796d4c1" + }, + { + "routeId": "L240", + "platformId": "U286Z3", + "id": "57bc86fc-a3ad-46a0-9b47-64407228d686" + }, + { + "routeId": "L387", + "platformId": "U286Z4", + "id": "d25282d5-d3ab-4b81-8d67-d0a2ee4357e7" + }, + { + "routeId": "L381", + "platformId": "U286Z4", + "id": "f42fc05d-9fd1-45c9-b77b-3b93a917d33c" + }, + { + "routeId": "L382", + "platformId": "U286Z4", + "id": "ccb7d0c1-27bf-4bcf-97c9-42bc635e2363" + }, + { + "routeId": "L383", + "platformId": "U286Z4", + "id": "5674d4f0-b8d4-48b1-a514-62c6834ebd1b" + }, + { + "routeId": "L959", + "platformId": "U286Z4", + "id": "d9fb6342-8c5d-4b25-ade9-1655d5702330" + }, + { + "routeId": "L125", + "platformId": "U286Z5", + "id": "e64394c9-c731-47f3-bdea-c35dfacf1de0" + }, + { + "routeId": "L126", + "platformId": "U286Z5", + "id": "a0aeb252-4a53-4aff-9a9d-68b55e30c325" + }, + { + "routeId": "L170", + "platformId": "U286Z5", + "id": "f36f9243-18aa-447a-b67f-2cf4b86de51d" + }, + { + "routeId": "L136", + "platformId": "U286Z5", + "id": "736af612-2326-44f6-9178-c64b6af7e485" + }, + { + "routeId": "L154", + "platformId": "U286Z5", + "id": "ac4d0fd0-b4cf-424b-bb9e-6f4458574053" + }, + { + "routeId": "L175", + "platformId": "U286Z5", + "id": "e79325cf-ecd5-48b4-a57f-fdc03202ab7e" + }, + { + "routeId": "L183", + "platformId": "U286Z5", + "id": "4f2a8239-1bbc-49d2-8e48-5917ed56166d" + }, + { + "routeId": "L213", + "platformId": "U286Z5", + "id": "b9df2f80-1372-489f-a8d8-34b0682008e1" + }, + { + "routeId": "L905", + "platformId": "U286Z5", + "id": "e5d6aa23-cef9-48b3-ad57-ee16a07f5873" + }, + { + "routeId": "L911", + "platformId": "U286Z5", + "id": "782aa5e5-4710-4a18-89cc-aaa66e5f1a92" + }, + { + "routeId": "L227", + "platformId": "U286Z5", + "id": "3425bd3d-7de0-423d-b732-901729868cd5" + }, + { + "routeId": "L226", + "platformId": "U286Z5", + "id": "3ff10d97-6a72-4249-8087-4fdf3192f6a4" + }, + { + "routeId": "L240", + "platformId": "U286Z5", + "id": "0d047a8f-e968-43fe-afd4-77c7bd90bd23" + }, + { + "routeId": "L959", + "platformId": "U286Z5", + "id": "86a4e813-3dbe-4c43-9629-8ed361e2b63f" + }, + { + "routeId": "L381", + "platformId": "U286Z72", + "id": "c1c14ad3-7dfc-4899-8549-b1fb858ff62a" + }, + { + "routeId": "L387", + "platformId": "U286Z72", + "id": "65f2ccf9-5164-454d-b292-4b888069a332" + }, + { + "routeId": "L382", + "platformId": "U286Z72", + "id": "bb7e5f36-80c2-4745-848f-336cf187e6b8" + }, + { + "routeId": "L383", + "platformId": "U286Z72", + "id": "e24697bd-7a1e-4154-a35a-f1a2ec02a4da" + }, + { + "routeId": "L959", + "platformId": "U286Z82", + "id": "1dc14ed9-1d2a-4e63-91bb-4a6c31e48144" + }, + { + "routeId": "L1219", + "platformId": "U2870Z301", + "id": "37b7d84c-eb2e-489d-b3e2-d70f5350bd4b" + }, + { + "routeId": "L1218", + "platformId": "U2870Z301", + "id": "dd5fed18-b566-4a37-9806-55858cf03f85" + }, + { + "routeId": "L1209", + "platformId": "U2870Z301", + "id": "7ac63ef2-ade1-4535-8de0-743bdd74d4dc" + }, + { + "routeId": "L1301", + "platformId": "U2870Z301", + "id": "7ee4df98-9091-4c44-b608-414ed04dd2c0" + }, + { + "routeId": "L1219", + "platformId": "U2873Z301", + "id": "1f893ff1-f836-459b-b516-15a0caa1404a" + }, + { + "routeId": "L1218", + "platformId": "U2873Z301", + "id": "be7d8c3e-5dbc-4491-b074-8af4f0fce0ee" + }, + { + "routeId": "L1209", + "platformId": "U2873Z301", + "id": "dcb0ef8e-ac04-4f7a-9aa9-52553d50dbf4" + }, + { + "routeId": "L1301", + "platformId": "U2873Z301", + "id": "26a1dca2-f0c8-4456-9799-c9adc33b9699" + }, + { + "routeId": "L1223", + "platformId": "U2874Z301", + "id": "bb12f357-ad38-4124-91e6-abd7e753af8e" + }, + { + "routeId": "L1302", + "platformId": "U2874Z301", + "id": "96fa7f4b-64f2-4ab4-b6c1-b675d1ac65a0" + }, + { + "routeId": "L1210", + "platformId": "U2875Z301", + "id": "f0a12263-4058-40a8-9f52-0d68712574d0" + }, + { + "routeId": "L1222", + "platformId": "U2875Z301", + "id": "14f91c22-8fdb-44cb-b058-4592741d1c81" + }, + { + "routeId": "L1223", + "platformId": "U2875Z301", + "id": "bab33647-de17-4707-898a-debc97463cbe" + }, + { + "routeId": "L1302", + "platformId": "U2875Z301", + "id": "fc6dd53e-c14e-4e18-acd8-f13c2ecd19b3" + }, + { + "routeId": "L616", + "platformId": "U2876Z1", + "id": "2bdbcce5-5e8c-43d0-9d92-47fb237c9bc6" + }, + { + "routeId": "L616", + "platformId": "U2876Z2", + "id": "42045e76-abcc-4f2e-961e-cf1e8df06965" + }, + { + "routeId": "L1210", + "platformId": "U2877Z301", + "id": "c38f4780-a150-4692-94b9-3a9c93726263" + }, + { + "routeId": "L1222", + "platformId": "U2877Z301", + "id": "70692bc1-4746-4314-b5c9-a514004b8e69" + }, + { + "routeId": "L1223", + "platformId": "U2877Z301", + "id": "10d032d5-ef20-4076-862d-2b96aec6b24f" + }, + { + "routeId": "L1302", + "platformId": "U2877Z301", + "id": "3f459262-2556-482d-bf9e-fd51e5c682b0" + }, + { + "routeId": "L1210", + "platformId": "U2878Z301", + "id": "3a1637c6-5986-490f-a604-f710075c405c" + }, + { + "routeId": "L1222", + "platformId": "U2878Z301", + "id": "db58ca17-c83e-44bd-9727-54ff1c43231e" + }, + { + "routeId": "L1223", + "platformId": "U2878Z301", + "id": "7ecfa53c-2c59-424b-82dd-48bcbd891440" + }, + { + "routeId": "L1041", + "platformId": "U2878Z301", + "id": "6b994e91-0421-464c-9963-f11e0c6e6f26" + }, + { + "routeId": "L1302", + "platformId": "U2878Z301", + "id": "8f74534b-7014-4fc2-93f9-14caf77b6eb9" + }, + { + "routeId": "L1222", + "platformId": "U2879Z301", + "id": "99d0b10f-0b76-4720-ae5b-ea341c7bda32" + }, + { + "routeId": "L1223", + "platformId": "U2879Z301", + "id": "885bd8a3-968a-40ba-a36f-d989a090dc71" + }, + { + "routeId": "L1041", + "platformId": "U2879Z301", + "id": "32c72363-5a8d-4b54-8339-256c92a1d801" + }, + { + "routeId": "L1302", + "platformId": "U2879Z301", + "id": "d72fb4d8-5ad5-4bff-b27a-7faf43f8a3e8" + }, + { + "routeId": "L202", + "platformId": "U287Z3", + "id": "88f04a3e-9901-442e-ba67-5e7114240b77" + }, + { + "routeId": "L202", + "platformId": "U287Z4", + "id": "203362c0-d505-4d39-9a60-ee2d1d15bdfa" + }, + { + "routeId": "L348", + "platformId": "U287Z4", + "id": "348fb834-fb2e-469c-92ad-29d015725e73" + }, + { + "routeId": "L369", + "platformId": "U287Z4", + "id": "ccb536b4-cb33-4107-8b95-c2bc690ddb55" + }, + { + "routeId": "L103", + "platformId": "U287Z5", + "id": "759f5f11-8b1b-4708-ad9d-23fb829307fd" + }, + { + "routeId": "L914", + "platformId": "U287Z5", + "id": "f6565e7b-3cde-4253-9c77-f140a2a5526c" + }, + { + "routeId": "L348", + "platformId": "U287Z5", + "id": "f2dd2e26-c7c5-45c0-9c59-5ff57c024010" + }, + { + "routeId": "L369", + "platformId": "U287Z5", + "id": "ffd5e411-f21a-4a8c-a4b5-52247364b95f" + }, + { + "routeId": "L103", + "platformId": "U287Z6", + "id": "4a500b29-7e3b-4a9a-aa6d-de8da0b5f223" + }, + { + "routeId": "L914", + "platformId": "U287Z6", + "id": "643405ba-9c3d-41f6-9f80-8e492b470ed4" + }, + { + "routeId": "L1222", + "platformId": "U2880Z301", + "id": "f1299a23-35ea-46f4-986e-10c352f8d71a" + }, + { + "routeId": "L1223", + "platformId": "U2880Z301", + "id": "1ed972ac-fb3e-4db0-a212-ef08f6a356c8" + }, + { + "routeId": "L1041", + "platformId": "U2880Z301", + "id": "1a6c5dd6-cf9d-4bb3-b54b-eec4008c1539" + }, + { + "routeId": "L1302", + "platformId": "U2880Z301", + "id": "9e72cedd-6d0a-4d85-9357-e2ef5b1525ff" + }, + { + "routeId": "L626", + "platformId": "U2881Z1", + "id": "0b8a78fe-3c55-4edf-88db-187b9be92461" + }, + { + "routeId": "L616", + "platformId": "U2881Z1", + "id": "24f65613-a17b-45f7-903e-a25c1d8cba5b" + }, + { + "routeId": "L620", + "platformId": "U2881Z1", + "id": "cad26ffd-2884-4ed0-b453-2136c0dfb640" + }, + { + "routeId": "L626", + "platformId": "U2881Z2", + "id": "f45e69c9-f28c-40e2-b23d-6f9506c96164" + }, + { + "routeId": "L616", + "platformId": "U2881Z2", + "id": "e1dd907d-403c-4ce0-b38f-9430203f7ef1" + }, + { + "routeId": "L620", + "platformId": "U2881Z2", + "id": "8c0992e7-ce22-4cc1-900d-e40a535ad7cc" + }, + { + "routeId": "L1345", + "platformId": "U2881Z301", + "id": "8ec81a2a-2a85-4767-b2a7-817c9d69182b" + }, + { + "routeId": "L1305", + "platformId": "U2881Z301", + "id": "e15deabc-5dad-41e6-8b23-d01611da3cb0" + }, + { + "routeId": "L1345", + "platformId": "U2882Z301", + "id": "925caaf4-724e-4df3-b445-a48caeadbd71" + }, + { + "routeId": "L1305", + "platformId": "U2882Z301", + "id": "f0c29645-a21c-4010-8b51-5564e04664d5" + }, + { + "routeId": "L342", + "platformId": "U2884Z1", + "id": "66f91ba7-2794-4a61-ab53-0228e1145f62" + }, + { + "routeId": "L342", + "platformId": "U2884Z2", + "id": "955bdc37-43a8-4c6c-8d06-b837685b90f0" + }, + { + "routeId": "L1345", + "platformId": "U2884Z301", + "id": "9bd17885-5a1d-4bab-ba99-c8cba213dafd" + }, + { + "routeId": "L629", + "platformId": "U2885Z1", + "id": "38eb55c0-185c-49a7-8094-1060451590cf" + }, + { + "routeId": "L622", + "platformId": "U2885Z1", + "id": "09998c2f-f478-40cc-a30e-127bdc1f5c1c" + }, + { + "routeId": "L1345", + "platformId": "U2885Z301", + "id": "655e9844-b099-43af-a80a-2ea1cd0d95b1" + }, + { + "routeId": "L1345", + "platformId": "U2886Z301", + "id": "4a77dc56-b991-47e2-8a45-d1d74879146a" + }, + { + "routeId": "L1345", + "platformId": "U2887Z301", + "id": "bd2690cf-138c-4fca-b6e2-9230d9d0d89e" + }, + { + "routeId": "L316", + "platformId": "U2888Z1", + "id": "1a9bb710-a809-49c2-a557-d739ff2a634f" + }, + { + "routeId": "L457", + "platformId": "U2888Z1", + "id": "620e4125-0e6f-4708-9585-774d41b39e6e" + }, + { + "routeId": "L1345", + "platformId": "U2888Z301", + "id": "343e665c-d0ac-4018-8614-66baf296dd63" + }, + { + "routeId": "L300", + "platformId": "U2889Z1", + "id": "75ed8f17-7ad8-4a1c-88cc-089915f2a051" + }, + { + "routeId": "L324", + "platformId": "U2889Z1", + "id": "447d8fe3-cb18-4279-a09a-7d097a74f59b" + }, + { + "routeId": "L399", + "platformId": "U2889Z1", + "id": "0f7c4423-4ea2-42e4-b6f2-865967f614f1" + }, + { + "routeId": "L618", + "platformId": "U2889Z1", + "id": "e59e07a6-8914-45e9-96bf-a2721cd15f46" + }, + { + "routeId": "L600", + "platformId": "U2889Z1", + "id": "f26a2927-5fe5-4afa-a606-dfd9104424ae" + }, + { + "routeId": "L619", + "platformId": "U2889Z1", + "id": "155b29ad-d70f-4900-8933-8d8c7f459f42" + }, + { + "routeId": "L555", + "platformId": "U2889Z1", + "id": "ebb2082a-a732-49a3-841a-ebc5420208cc" + }, + { + "routeId": "L629", + "platformId": "U2889Z1", + "id": "e47fa22f-3ac1-4300-9761-a4d4f0912f04" + }, + { + "routeId": "L618", + "platformId": "U2889Z2", + "id": "a1f41f3a-d92a-4696-ae27-c05ac74179f3" + }, + { + "routeId": "L600", + "platformId": "U2889Z2", + "id": "96deb3b6-82fe-40b8-9a65-bc7b78f01cb2" + }, + { + "routeId": "L619", + "platformId": "U2889Z2", + "id": "f94825c2-0da6-4a49-ab8c-2ff0eeb2e42c" + }, + { + "routeId": "L555", + "platformId": "U2889Z2", + "id": "99f39692-7915-4a7e-bb17-b2c0a3ecc683" + }, + { + "routeId": "L300", + "platformId": "U2889Z3", + "id": "4cb30356-3baa-4745-938c-54a4a39de6c5" + }, + { + "routeId": "L324", + "platformId": "U2889Z3", + "id": "dd23c0c7-be05-4d48-9645-e18fe3945a8f" + }, + { + "routeId": "L399", + "platformId": "U2889Z3", + "id": "5c6c652c-9913-4700-8680-025ad3442e91" + }, + { + "routeId": "L629", + "platformId": "U2889Z3", + "id": "1fbbf07b-b0ee-4222-ae8a-d8ac718d54e3" + }, + { + "routeId": "L1245", + "platformId": "U2889Z301", + "id": "b7a5e0a3-2480-4d67-a0a7-76635c116f82" + }, + { + "routeId": "L1345", + "platformId": "U2889Z301", + "id": "bff8eee6-86bb-4ab9-a256-24d991b3dd88" + }, + { + "routeId": "L1305", + "platformId": "U2889Z301", + "id": "1d7029d0-e941-458e-821a-e4be34b5cb60" + }, + { + "routeId": "L1376", + "platformId": "U2890Z301", + "id": "f9ce1341-2c22-4b54-9f4e-307030161ba0" + }, + { + "routeId": "L2276", + "platformId": "U2890Z451", + "id": "265e6d8e-2c1c-42ab-a213-724eaa453f4a" + }, + { + "routeId": "L364", + "platformId": "U2891Z1", + "id": "7c52a029-c8d6-4ae1-a6df-07f14987ed23" + }, + { + "routeId": "L435", + "platformId": "U2891Z1", + "id": "fdf092ce-0762-4cfa-8cbe-0b17ebf6f09f" + }, + { + "routeId": "L364", + "platformId": "U2891Z2", + "id": "4b6fcdda-0c17-487f-a248-3842ef9be2b4" + }, + { + "routeId": "L435", + "platformId": "U2891Z2", + "id": "cf488345-46cb-4bcd-b5fb-d164c805a102" + }, + { + "routeId": "L1311", + "platformId": "U2892Z301", + "id": "19cde1ce-d99d-4e3d-8733-62e33ea731a7" + }, + { + "routeId": "L424", + "platformId": "U2893Z1", + "id": "fcce24f3-0b60-4789-9f5b-a9b0feaa0c2b" + }, + { + "routeId": "L424", + "platformId": "U2893Z2", + "id": "59495d90-16c4-4e74-b4e1-942544ba6935" + }, + { + "routeId": "L1311", + "platformId": "U2896Z301", + "id": "142dc2b7-581d-4995-bc03-70615423aa06" + }, + { + "routeId": "L1311", + "platformId": "U2897Z301", + "id": "0581b441-d9f6-4631-989e-6d2f62cf6847" + }, + { + "routeId": "L618", + "platformId": "U2898Z1", + "id": "0258780d-01fd-4bd3-83d3-04120af28892" + }, + { + "routeId": "L590", + "platformId": "U2898Z1", + "id": "12e41bdb-87fd-4596-9ae0-c3a416bbab5b" + }, + { + "routeId": "L1224", + "platformId": "U2898Z301", + "id": "aaa4acab-c5e8-4078-a857-79d841cd9515" + }, + { + "routeId": "L1350", + "platformId": "U2898Z301", + "id": "4ae21954-e079-4673-9a36-310c57676114" + }, + { + "routeId": "L9", + "platformId": "U289Z1", + "id": "f6bc191a-db27-4c56-9bd2-6c4e35ee7313" + }, + { + "routeId": "L10", + "platformId": "U289Z1", + "id": "9122254e-910b-42b9-a9f4-d09d09a8c811" + }, + { + "routeId": "L15", + "platformId": "U289Z1", + "id": "ac1f72d3-a7be-45f7-bcf1-004af26b9258" + }, + { + "routeId": "L16", + "platformId": "U289Z1", + "id": "20ff711e-321b-4324-acf7-35543832dae3" + }, + { + "routeId": "L98", + "platformId": "U289Z1", + "id": "dab5acfe-0e0c-43dc-96c7-c832fea3c7a0" + }, + { + "routeId": "L99", + "platformId": "U289Z1", + "id": "5ec53af5-6adb-4c76-b206-1bae7e48378b" + }, + { + "routeId": "L9", + "platformId": "U289Z2", + "id": "8ff5258e-4e51-4cec-a4c5-65c6c1bbfb16" + }, + { + "routeId": "L10", + "platformId": "U289Z2", + "id": "9df46a46-0e52-43ea-86c9-d8bbe0fcda00" + }, + { + "routeId": "L16", + "platformId": "U289Z2", + "id": "65b59e5a-6886-46ef-af30-5cee52a1d7f9" + }, + { + "routeId": "L98", + "platformId": "U289Z2", + "id": "2f0036db-ebfe-4960-bd80-774379c609e5" + }, + { + "routeId": "L99", + "platformId": "U289Z2", + "id": "d9e2b83e-0cf8-445a-97e7-023cbb5deee5" + }, + { + "routeId": "L15", + "platformId": "U289Z3", + "id": "6266b4ae-b5f8-4309-9406-2fdb1736d7d3" + }, + { + "routeId": "L15", + "platformId": "U289Z4", + "id": "6041df6a-5d7b-4585-b0fe-d307ce496de6" + }, + { + "routeId": "L16", + "platformId": "U289Z5", + "id": "e05dcc7d-5182-4c1f-8cd6-dfd044671af2" + }, + { + "routeId": "L16", + "platformId": "U289Z6", + "id": "bc90cba1-4d20-4181-aaec-078495934879" + }, + { + "routeId": "L167", + "platformId": "U289Z7", + "id": "6e89b7e4-9341-46f5-aa0f-f6d2436cfb95" + }, + { + "routeId": "L167", + "platformId": "U289Z8", + "id": "5c185dd7-038a-4b0d-bba2-0495f86ac120" + }, + { + "routeId": "L250", + "platformId": "U28Z1", + "id": "e937f42c-6f34-41b0-9d5b-21365af08bf5" + }, + { + "routeId": "L909", + "platformId": "U28Z1", + "id": "d634541d-6f52-43d9-aa43-c728762d5628" + }, + { + "routeId": "L163", + "platformId": "U28Z1", + "id": "6dd222ae-d550-4fdd-9f52-eb327e9dbb81" + }, + { + "routeId": "L209", + "platformId": "U28Z1", + "id": "6e9a42b5-cb48-4701-b463-81b95e80e5e8" + }, + { + "routeId": "L221", + "platformId": "U28Z1", + "id": "0b441382-6e7e-4491-bf68-a529636f585e" + }, + { + "routeId": "L250", + "platformId": "U28Z2", + "id": "c039a691-fa9d-4b67-80e3-af388d7b38d2" + }, + { + "routeId": "L909", + "platformId": "U28Z2", + "id": "398458a6-a3e6-4de2-8e8a-4819167955bb" + }, + { + "routeId": "L163", + "platformId": "U28Z2", + "id": "f9e73869-649f-44ad-918e-ddd798eed775" + }, + { + "routeId": "L209", + "platformId": "U28Z2", + "id": "b08b7ca1-0c43-4809-88ec-a607db7265d8" + }, + { + "routeId": "L221", + "platformId": "U28Z2", + "id": "76c4c4d3-9d40-4047-939c-5eb81c5b4656" + }, + { + "routeId": "L109", + "platformId": "U28Z3", + "id": "764b3d42-585c-402e-ac2a-9a406b725206" + }, + { + "routeId": "L109", + "platformId": "U28Z4", + "id": "7ab6a5f9-06f0-4877-be4a-a65036a4c48e" + }, + { + "routeId": "L154", + "platformId": "U2901Z2", + "id": "123e5993-9017-4f78-9539-72d4d52e7714" + }, + { + "routeId": "L1344", + "platformId": "U2903Z301", + "id": "c357acc2-cfe3-4c4f-adff-189c94fc61b0" + }, + { + "routeId": "L1380", + "platformId": "U2904Z301", + "id": "2db7b9f1-0e21-45a2-b28a-c520a150b13f" + }, + { + "routeId": "L1318", + "platformId": "U2904Z301", + "id": "01e211a5-a971-4e7d-ae8c-f9615976730f" + }, + { + "routeId": "L1376", + "platformId": "U2905Z301", + "id": "ff3925bd-b9c0-4167-baaa-5704d9c33e3d" + }, + { + "routeId": "L2276", + "platformId": "U2905Z402", + "id": "f504adeb-69a5-4e2a-ae0c-16bd99af5bf5" + }, + { + "routeId": "L2260", + "platformId": "U2906Z401", + "id": "acd386b2-3c9c-43a1-bc9d-b4bb3b065d85" + }, + { + "routeId": "L2260", + "platformId": "U2906Z402", + "id": "22dd86e5-6c20-4ba7-a8e4-007455d4ac7c" + }, + { + "routeId": "L2276", + "platformId": "U2906Z451", + "id": "ed56ac23-9432-403a-9dd6-c3119d3ce8fc" + }, + { + "routeId": "L1380", + "platformId": "U2907Z301", + "id": "0607fb55-f65b-46f4-9cf8-9ab688f944a7" + }, + { + "routeId": "L1224", + "platformId": "U2908Z301", + "id": "722e329b-5d90-41f6-8c04-f295a45d7d18" + }, + { + "routeId": "L1350", + "platformId": "U2908Z301", + "id": "3162f42e-6a22-489c-977a-2ab40e834110" + }, + { + "routeId": "L1014", + "platformId": "U2908Z301", + "id": "530744a5-fff8-4cd6-bbc4-2c38d9350f0b" + }, + { + "routeId": "L1223", + "platformId": "U2909Z301", + "id": "e9441c8d-a101-402a-b590-8222b886a788" + }, + { + "routeId": "L1332", + "platformId": "U2909Z301", + "id": "0eead598-5a21-4d89-9084-3721a11ae999" + }, + { + "routeId": "L112", + "platformId": "U290Z1", + "id": "089b0ec6-dc30-4a81-b9c9-4cd8b4a53336" + }, + { + "routeId": "L234", + "platformId": "U290Z1", + "id": "252ca20b-f196-4c24-a58c-b4adb9f557e1" + }, + { + "routeId": "L112", + "platformId": "U290Z2", + "id": "885e2a46-365c-4f5a-afbc-947612abe668" + }, + { + "routeId": "L234", + "platformId": "U290Z2", + "id": "5d1e4142-fdd7-4f08-a805-a669bc32cf98" + }, + { + "routeId": "L467", + "platformId": "U2910Z1", + "id": "cd364c72-d39a-44f0-a740-b9bf564dca3e" + }, + { + "routeId": "L1223", + "platformId": "U2910Z301", + "id": "30c4505d-4856-4e1f-a01e-4959a95f118a" + }, + { + "routeId": "L1332", + "platformId": "U2910Z301", + "id": "24a4cf95-9539-4e2c-84d9-fd40e865f7e8" + }, + { + "routeId": "L1303", + "platformId": "U2910Z301", + "id": "f543370f-6ea9-49b0-bc9d-f3d3bc3b46e9" + }, + { + "routeId": "L1223", + "platformId": "U2911Z301", + "id": "cc0f2fd3-98ae-43ba-9e65-0abf751fdb7b" + }, + { + "routeId": "L1332", + "platformId": "U2911Z301", + "id": "a368518e-b7f0-44a0-8b4b-28dfa23fd6f6" + }, + { + "routeId": "L1333", + "platformId": "U2911Z301", + "id": "fe2ef7d4-4734-41c5-916e-cc7dd1e8de35" + }, + { + "routeId": "L1303", + "platformId": "U2911Z301", + "id": "8944e7db-aa69-47e3-be04-014c307af8d8" + }, + { + "routeId": "L2240", + "platformId": "U2915Z401", + "id": "670a87c5-f3b3-446f-815a-7fcd77100841" + }, + { + "routeId": "L2240", + "platformId": "U2915Z402", + "id": "f1cce601-2c52-4733-a70c-4825d0b29336" + }, + { + "routeId": "L639", + "platformId": "U2916Z1", + "id": "f8db6fae-5926-43ed-a410-e85eb1e4d5aa" + }, + { + "routeId": "L639", + "platformId": "U2916Z2", + "id": "5cfbc1c1-8963-4cf5-94c5-a48d530cfc25" + }, + { + "routeId": "L2276", + "platformId": "U2916Z401", + "id": "f8f489db-8c41-4485-8c3b-d07279a96936" + }, + { + "routeId": "L2276", + "platformId": "U2916Z402", + "id": "d985ad26-86ee-48b3-a2ba-84b0fba33ee8" + }, + { + "routeId": "L625", + "platformId": "U2917Z1", + "id": "9c5b683c-aad3-4e26-b43c-e20dd2113c48" + }, + { + "routeId": "L625", + "platformId": "U2917Z2", + "id": "165a61a9-717e-47b6-abdb-9ae8cad9636c" + }, + { + "routeId": "L1224", + "platformId": "U2917Z301", + "id": "d11bd08c-4d45-4947-9330-4e662e6a73ea" + }, + { + "routeId": "L1350", + "platformId": "U2917Z301", + "id": "4750f590-cb57-4f49-a459-615a5119fe5d" + }, + { + "routeId": "L620", + "platformId": "U2918Z1", + "id": "c84505bf-f18e-4f92-adac-2fcb8c33e5a5" + }, + { + "routeId": "L620", + "platformId": "U2918Z2", + "id": "573ca238-768f-44a7-ac9d-3161e3856280" + }, + { + "routeId": "L2240", + "platformId": "U2918Z401", + "id": "3ac89556-5fa1-4745-94f8-d6f80512cd85" + }, + { + "routeId": "L2240", + "platformId": "U2918Z402", + "id": "6484a45e-392e-4f9b-83a1-61b1b41f0f40" + }, + { + "routeId": "L1344", + "platformId": "U2919Z301", + "id": "1e5f3e6f-a9fb-4c36-9a9e-d7cd72a93dde" + }, + { + "routeId": "L103", + "platformId": "U291Z1", + "id": "adfef5bb-267d-44cc-8e3c-665d7512aeda" + }, + { + "routeId": "L914", + "platformId": "U291Z1", + "id": "0fd00b74-aa50-4a4e-bb84-2aea43efd53a" + }, + { + "routeId": "L103", + "platformId": "U291Z2", + "id": "d2c0d379-da56-4815-902f-f36c7968bec5" + }, + { + "routeId": "L283", + "platformId": "U291Z2", + "id": "7904cd81-5f0e-471d-b15d-a0eab5c49ca1" + }, + { + "routeId": "L914", + "platformId": "U291Z2", + "id": "26191178-2461-473e-bfaf-a5a9e5600360" + }, + { + "routeId": "L632", + "platformId": "U2920Z1", + "id": "70b4daf1-0bee-4397-9c2c-0400751b0869" + }, + { + "routeId": "L632", + "platformId": "U2920Z2", + "id": "1af2563c-20f2-4fcc-a6ba-98284c715c6e" + }, + { + "routeId": "L2276", + "platformId": "U2920Z401", + "id": "e49be3a5-7662-4bef-8326-864914f78a71" + }, + { + "routeId": "L2276", + "platformId": "U2920Z402", + "id": "b6224b93-4ced-4710-b379-3890961e65e0" + }, + { + "routeId": "L354", + "platformId": "U2921Z1", + "id": "6ce2107f-867c-4456-a524-5289710ff5f7" + }, + { + "routeId": "L398", + "platformId": "U2921Z1", + "id": "ff5b8666-d621-4918-bbf7-381926b07596" + }, + { + "routeId": "L354", + "platformId": "U2921Z2", + "id": "a26881b9-f85b-4778-8c5a-a85721f77227" + }, + { + "routeId": "L398", + "platformId": "U2921Z2", + "id": "e5170c32-b2af-416b-a8f3-0e38cf5f3925" + }, + { + "routeId": "L422", + "platformId": "U2923Z1", + "id": "7d1b34bd-36e9-4965-9665-f7643b99fb10" + }, + { + "routeId": "L422", + "platformId": "U2923Z2", + "id": "27436a7b-c4b3-4d69-837f-ade8dc5ec0c9" + }, + { + "routeId": "L1311", + "platformId": "U2923Z301", + "id": "99c2f8d7-de69-473e-8759-16a8cc0c2c21" + }, + { + "routeId": "L1311", + "platformId": "U2924Z301", + "id": "142faa07-41be-489a-836e-f0b8ba16bef6" + }, + { + "routeId": "L1311", + "platformId": "U2925Z301", + "id": "8311e41e-a16a-4b0f-84b7-87490d3cabac" + }, + { + "routeId": "L760", + "platformId": "U2926Z1", + "id": "bb4a4c43-9c17-4985-b7e4-e1eba0a6b0ba" + }, + { + "routeId": "L560", + "platformId": "U2926Z1", + "id": "36294a42-be3b-4c02-ba94-9a45e107a6ab" + }, + { + "routeId": "L572", + "platformId": "U2926Z10", + "id": "22065bc2-c9af-45c4-9a5c-022337d965e9" + }, + { + "routeId": "L304", + "platformId": "U2926Z10", + "id": "a480767a-e3e6-4e8a-bc24-4bc21ff5da84" + }, + { + "routeId": "L404", + "platformId": "U2926Z12", + "id": "a9240851-fb8c-4844-9d52-aba628cc3fe0" + }, + { + "routeId": "L580", + "platformId": "U2926Z15", + "id": "72a53f54-fba9-4e92-9a2f-ac70e3e555f6" + }, + { + "routeId": "L625", + "platformId": "U2926Z16", + "id": "d2cc004b-cb84-44c3-93dc-7594bdcfd6cd" + }, + { + "routeId": "L562", + "platformId": "U2926Z17", + "id": "93b86143-0f80-4655-9f58-cbc3c071b361" + }, + { + "routeId": "L304", + "platformId": "U2926Z18", + "id": "04c9b21c-17d8-4713-9336-5f81f220c00c" + }, + { + "routeId": "L577", + "platformId": "U2926Z18", + "id": "f2749559-2761-48a4-ad01-2d48e6801b36" + }, + { + "routeId": "L760", + "platformId": "U2926Z18", + "id": "178c9f7f-0a9a-4998-bc3a-b2f7a8898425" + }, + { + "routeId": "L560", + "platformId": "U2926Z19", + "id": "59b02b05-61a7-4839-b8f1-66310248b9f6" + }, + { + "routeId": "L404", + "platformId": "U2926Z19", + "id": "e07dec75-a126-4271-a1ed-e518e5df1969" + }, + { + "routeId": "L304", + "platformId": "U2926Z30", + "id": "74d43330-47e6-4060-a0a5-7c34806e37b6" + }, + { + "routeId": "L572", + "platformId": "U2926Z30", + "id": "87886d9c-c656-4846-b59d-1f344bee58a4" + }, + { + "routeId": "L562", + "platformId": "U2926Z30", + "id": "720a1448-cdf3-4a9a-9a2e-500b9c14f787" + }, + { + "routeId": "L760", + "platformId": "U2926Z30", + "id": "67594db0-1a55-4ab7-b520-60667a37273b" + }, + { + "routeId": "L576", + "platformId": "U2926Z30", + "id": "a26d5a1d-4632-447d-b7af-2011b30f0948" + }, + { + "routeId": "L577", + "platformId": "U2926Z30", + "id": "9b4f4ff4-cbf2-4cb3-aea6-89e5e22e8ac8" + }, + { + "routeId": "L560", + "platformId": "U2926Z30", + "id": "25708501-c129-4300-b7a7-67e50b8f0a66" + }, + { + "routeId": "L404", + "platformId": "U2926Z30", + "id": "c014690e-1893-4808-80e2-1900fc518d1c" + }, + { + "routeId": "L625", + "platformId": "U2926Z30", + "id": "c932bf6a-7049-4a64-ba2c-d6742c8a4e19" + }, + { + "routeId": "L580", + "platformId": "U2926Z30", + "id": "bc5a3a04-a939-4ddc-83a1-5fa407fb4a06" + }, + { + "routeId": "L1224", + "platformId": "U2926Z301", + "id": "1a21be7c-09da-45c2-9109-f255e2accebf" + }, + { + "routeId": "L1350", + "platformId": "U2926Z301", + "id": "d0be2033-289a-4b47-9828-682b86be9600" + }, + { + "routeId": "L1012", + "platformId": "U2926Z301", + "id": "725f3ead-058e-41ba-888d-03e7b25f48df" + }, + { + "routeId": "L1375", + "platformId": "U2926Z301", + "id": "0ff4732d-b0b7-4013-a694-4518999442e4" + }, + { + "routeId": "L1357", + "platformId": "U2926Z301", + "id": "ea487dce-6804-470f-9d4b-c83655305cf7" + }, + { + "routeId": "L1358", + "platformId": "U2926Z301", + "id": "bff6c6e0-11d8-4e8e-8f19-8e93559a07d4" + }, + { + "routeId": "L1014", + "platformId": "U2926Z301", + "id": "7d96ee13-9178-49e8-a8ff-44fb51d45b61" + }, + { + "routeId": "L576", + "platformId": "U2926Z9", + "id": "54331ff7-2e7f-42fd-a2bc-f223c20ca13f" + }, + { + "routeId": "L304", + "platformId": "U2927Z1", + "id": "12fb7d49-692d-4ae2-ae47-a44a0b6b6d0e" + }, + { + "routeId": "L304", + "platformId": "U2927Z2", + "id": "fb393ebd-b741-4b39-b7bc-2c9e243a3333" + }, + { + "routeId": "L1224", + "platformId": "U2927Z301", + "id": "f96edace-1cec-483e-843f-b7ce4d307bf2" + }, + { + "routeId": "L1350", + "platformId": "U2927Z301", + "id": "ba669707-1018-4722-a2ed-688e8eb07242" + }, + { + "routeId": "L1014", + "platformId": "U2927Z301", + "id": "3dcbeec1-efd4-456f-9efa-38e6bb7099d1" + }, + { + "routeId": "L1224", + "platformId": "U2928Z301", + "id": "1596c5e7-3cae-4834-9919-c6dc26b38034" + }, + { + "routeId": "L1350", + "platformId": "U2928Z301", + "id": "085075c1-f847-402a-8d71-e49d82a55158" + }, + { + "routeId": "L1224", + "platformId": "U2929Z301", + "id": "5780a771-7ceb-43f8-9282-c5dd4de36255" + }, + { + "routeId": "L1350", + "platformId": "U2929Z301", + "id": "74e8714c-4ebb-4d33-9eb7-f68aa0859c21" + }, + { + "routeId": "L101", + "platformId": "U292Z1", + "id": "3ef30eac-f948-4468-8980-a5471604d536" + }, + { + "routeId": "L101", + "platformId": "U292Z2", + "id": "33903dae-24f7-42e1-9daa-4b2d1f33d079" + }, + { + "routeId": "L1380", + "platformId": "U2930Z301", + "id": "0d54df78-a9a8-4fd0-8085-4001c51b1d36" + }, + { + "routeId": "L1318", + "platformId": "U2930Z301", + "id": "2bac36a5-ea43-4cbc-8091-aef1ee903cae" + }, + { + "routeId": "L1380", + "platformId": "U2931Z301", + "id": "d6bece55-530d-4032-8f95-48d3c954597d" + }, + { + "routeId": "L637", + "platformId": "U2932Z1", + "id": "0392be1f-759d-48d4-adae-a4bdaef5908a" + }, + { + "routeId": "L637", + "platformId": "U2932Z2", + "id": "3375f24b-ad84-4b7f-a22e-5ad96daa22fa" + }, + { + "routeId": "L1224", + "platformId": "U2933Z301", + "id": "ef3818e9-2b79-456f-afeb-ef19fd69e0c7" + }, + { + "routeId": "L1350", + "platformId": "U2933Z301", + "id": "3efa0bdb-dc1d-4678-8435-812d2559c360" + }, + { + "routeId": "L424", + "platformId": "U2934Z1", + "id": "479b84ee-8b27-470d-977f-cc679030359d" + }, + { + "routeId": "L421", + "platformId": "U2934Z1", + "id": "1b14f80b-2ced-4411-badc-f95b77d731d4" + }, + { + "routeId": "L1344", + "platformId": "U2935Z301", + "id": "f1020c65-ca64-4534-8965-306412db8cb5" + }, + { + "routeId": "L617", + "platformId": "U2936Z1", + "id": "39a287d7-0f6a-4bb8-a535-ea8f71c73956" + }, + { + "routeId": "L595", + "platformId": "U2936Z1", + "id": "9828cb68-2f26-4702-8b18-c42f91904c59" + }, + { + "routeId": "L617", + "platformId": "U2936Z2", + "id": "6d8e0adc-a143-4f61-8e1b-66045aa2c827" + }, + { + "routeId": "L595", + "platformId": "U2936Z2", + "id": "de8c09c1-9003-4c1e-9fef-0b08ba27d4f8" + }, + { + "routeId": "L1344", + "platformId": "U2936Z301", + "id": "3995dacc-f7f4-4e64-94eb-7425cdea0e80" + }, + { + "routeId": "L632", + "platformId": "U2937Z1", + "id": "b02ac1e6-a961-4c70-851b-7071cf72c749" + }, + { + "routeId": "L632", + "platformId": "U2937Z2", + "id": "8ca3588a-d947-4510-bdec-016b170b399b" + }, + { + "routeId": "L2276", + "platformId": "U2937Z401", + "id": "84aa242f-4a28-4100-b8e3-4b8628e07722" + }, + { + "routeId": "L2276", + "platformId": "U2937Z402", + "id": "d7c9106d-0bcc-4a58-a762-59aa8ea3b8ea" + }, + { + "routeId": "L1311", + "platformId": "U2938Z301", + "id": "8a2950a6-0ea9-434b-80d6-943103b97524" + }, + { + "routeId": "L632", + "platformId": "U2939Z1", + "id": "51a00cb6-0817-4dbe-b1ff-3e9c2a184634" + }, + { + "routeId": "L632", + "platformId": "U2939Z2", + "id": "c024ffdf-6551-47bd-8fad-0fc65a2ff15e" + }, + { + "routeId": "L2276", + "platformId": "U2939Z401", + "id": "a172a796-d53f-45d7-8e63-429819b09a3b" + }, + { + "routeId": "L2276", + "platformId": "U2939Z402", + "id": "9d4c2d8d-2cc8-445e-8339-97d46784e6a0" + }, + { + "routeId": "L158", + "platformId": "U293Z1", + "id": "bfa1dca3-831f-4879-967e-bdc69a980e06" + }, + { + "routeId": "L110", + "platformId": "U293Z1", + "id": "2cab93f4-ffd2-4ee9-bc91-2ef824ef2b1d" + }, + { + "routeId": "L166", + "platformId": "U293Z1", + "id": "b54d40ce-5d06-4979-a8d9-4dab79c1833d" + }, + { + "routeId": "L351", + "platformId": "U293Z1", + "id": "76d0a6f8-5d49-454f-be7e-432daf875417" + }, + { + "routeId": "L110", + "platformId": "U293Z2", + "id": "99a52f17-9558-480f-a74b-a5e04b5e7345" + }, + { + "routeId": "L1311", + "platformId": "U2940Z301", + "id": "0d49ab42-d8ab-4768-8653-0aff14f3bb9b" + }, + { + "routeId": "L620", + "platformId": "U2942Z1", + "id": "9d5c0f70-5a96-41d7-ba76-b1f7e15cbead" + }, + { + "routeId": "L620", + "platformId": "U2942Z2", + "id": "79fb2b58-827f-4eac-b54b-b5bed8275fdf" + }, + { + "routeId": "L2240", + "platformId": "U2942Z401", + "id": "d3b3e322-1a6a-4d29-83de-c9f67ec5dec6" + }, + { + "routeId": "L2240", + "platformId": "U2942Z402", + "id": "673d6af5-8bab-4291-8f84-8a3df1bb5e73" + }, + { + "routeId": "L1380", + "platformId": "U2943Z301", + "id": "373a5f0c-d1c0-4608-9c25-c3cf62bc963e" + }, + { + "routeId": "L626", + "platformId": "U2944Z1", + "id": "cd59f81b-d9c3-403b-950c-1249c9017ce1" + }, + { + "routeId": "L626", + "platformId": "U2944Z2", + "id": "aa91d9c4-5539-4262-b8fc-0f2c58294294" + }, + { + "routeId": "L1311", + "platformId": "U2945Z301", + "id": "117b1b7f-8e27-41aa-918d-99552d720ac8" + }, + { + "routeId": "L639", + "platformId": "U2946Z1", + "id": "06b9c013-ddeb-4a90-a125-780a1f49d07f" + }, + { + "routeId": "L639", + "platformId": "U2946Z2", + "id": "bc49d8ba-a6cf-440d-b9ba-f181292d9c9c" + }, + { + "routeId": "L2276", + "platformId": "U2946Z401", + "id": "0b4a2165-570e-4aa9-9a8c-e44e2308826c" + }, + { + "routeId": "L2276", + "platformId": "U2946Z402", + "id": "885fb397-d0d0-4069-80ab-46562935705c" + }, + { + "routeId": "L1380", + "platformId": "U2947Z301", + "id": "404454f9-8f15-43e1-8f7b-1f895b631a20" + }, + { + "routeId": "L598", + "platformId": "U2948Z1", + "id": "d0bfb350-bb9d-4051-86ea-9ab6a0b9241b" + }, + { + "routeId": "L598", + "platformId": "U2948Z2", + "id": "bbfec5cf-0b69-4837-96f4-6b862e6508e3" + }, + { + "routeId": "L705", + "platformId": "U2948Z4", + "id": "38d3411a-30c4-4cf4-b331-70c0b8805374" + }, + { + "routeId": "L598", + "platformId": "U2949Z1", + "id": "eceaf862-2df9-41b7-8240-66b3373e5b26" + }, + { + "routeId": "L598", + "platformId": "U2949Z2", + "id": "d8d902fb-675a-42a7-a2b0-b2f8cf97f8b1" + }, + { + "routeId": "L229", + "platformId": "U294Z1", + "id": "c432fe54-c68d-4d38-ba26-b036a2e36cc7" + }, + { + "routeId": "L903", + "platformId": "U294Z1", + "id": "59ab8661-e5d4-4e9d-985a-5a77043c36d0" + }, + { + "routeId": "L229", + "platformId": "U294Z2", + "id": "0e8ed024-4e9d-4cec-bf3a-7343b91e8709" + }, + { + "routeId": "L903", + "platformId": "U294Z2", + "id": "6982fe85-7ecb-43db-a909-da923fe531c5" + }, + { + "routeId": "L194", + "platformId": "U2952Z1", + "id": "f242e424-a7b5-4cbe-b2ad-b62544334ae8" + }, + { + "routeId": "L194", + "platformId": "U2953Z1", + "id": "02facec3-c7d0-4662-9253-9112f83f5add" + }, + { + "routeId": "L194", + "platformId": "U2956Z1", + "id": "9d7ab09e-2716-45e0-88d2-a68eaaf3fdaf" + }, + { + "routeId": "L194", + "platformId": "U2956Z2", + "id": "714ba957-6aba-48eb-ba31-ea1f17e21c96" + }, + { + "routeId": "L194", + "platformId": "U2957Z1", + "id": "d7bcab01-3379-441c-ac83-98fe7a562fcf" + }, + { + "routeId": "L194", + "platformId": "U2958Z1", + "id": "226cf2fe-1d28-4f93-aa94-65162b06c41c" + }, + { + "routeId": "L194", + "platformId": "U2959Z1", + "id": "c40b855f-c1ff-4766-ae46-337b02267b85" + }, + { + "routeId": "L194", + "platformId": "U2962Z1", + "id": "25993b02-97a9-4efb-9482-be9a5f9dc522" + }, + { + "routeId": "L194", + "platformId": "U2963Z1", + "id": "bb05a592-0b8e-48d8-b068-050288a1e5b5" + }, + { + "routeId": "L124", + "platformId": "U2964Z1", + "id": "728951b4-e7de-47c0-acbf-650c4190e1f8" + }, + { + "routeId": "L139", + "platformId": "U2964Z1", + "id": "aa880772-de8f-450e-8943-de81da119a11" + }, + { + "routeId": "L150", + "platformId": "U2964Z1", + "id": "3cce5f9d-9f51-488e-9b38-8680e9339552" + }, + { + "routeId": "L443", + "platformId": "U2965Z1", + "id": "7a0e125a-5eb5-4a38-a875-b2211a76afb7" + }, + { + "routeId": "L443", + "platformId": "U2965Z2", + "id": "385b910e-d298-41a8-ac96-4176c1eccd19" + }, + { + "routeId": "L443", + "platformId": "U2966Z1", + "id": "0b542f50-1801-423c-86fc-ae07cf06a4ec" + }, + { + "routeId": "L443", + "platformId": "U2966Z2", + "id": "80d26a47-fe27-4d11-adad-e87f132373a7" + }, + { + "routeId": "L443", + "platformId": "U2967Z1", + "id": "91219618-bb70-4ba8-bac5-957b1133e5b4" + }, + { + "routeId": "L443", + "platformId": "U2967Z2", + "id": "d7c85ee2-799f-4d3b-b30b-dcacea971497" + }, + { + "routeId": "L443", + "platformId": "U2968Z1", + "id": "24858ddb-19ac-4622-b84f-7c0c0dd6c24e" + }, + { + "routeId": "L443", + "platformId": "U2968Z2", + "id": "bd6fd767-d576-4206-a251-6eb39d905187" + }, + { + "routeId": "L443", + "platformId": "U2969Z1", + "id": "12e69311-4dce-4f6a-8dce-939f2963f3aa" + }, + { + "routeId": "L443", + "platformId": "U2969Z2", + "id": "0bc4f556-bad0-4e1b-b1cb-cfd646178cbc" + }, + { + "routeId": "L118", + "platformId": "U296Z1", + "id": "8619aadb-19d7-4689-94bd-a08da64c73b7" + }, + { + "routeId": "L193", + "platformId": "U296Z1", + "id": "9b803b65-2134-4765-980c-a7951c8582c0" + }, + { + "routeId": "L904", + "platformId": "U296Z1", + "id": "46416e8a-c728-4977-a4ca-3bdd875c28fc" + }, + { + "routeId": "L118", + "platformId": "U296Z2", + "id": "694d774a-bf1c-4465-9b8f-475f2e781bde" + }, + { + "routeId": "L193", + "platformId": "U296Z2", + "id": "dbd7a555-2d04-4db1-a958-32aa1a9d7f4f" + }, + { + "routeId": "L904", + "platformId": "U296Z2", + "id": "a177bae8-df37-4e09-8f33-00c9a5641d35" + }, + { + "routeId": "L443", + "platformId": "U2970Z2", + "id": "2d2b44a7-b29e-4e9f-951d-82cc40be7523" + }, + { + "routeId": "L499", + "platformId": "U2973Z10", + "id": "3400b07e-2940-43b2-81c4-0f136437bdfb" + }, + { + "routeId": "L434", + "platformId": "U2973Z10", + "id": "ff726dd7-e4ba-47b2-84ce-213ac73dce38" + }, + { + "routeId": "L673", + "platformId": "U2973Z10", + "id": "0d4f2aa3-1ddf-4d09-99f1-187e6cc1cd17" + }, + { + "routeId": "L443", + "platformId": "U2973Z10", + "id": "aaaf82e5-c885-4384-a0f2-d6e60d9ef14d" + }, + { + "routeId": "L443", + "platformId": "U2973Z3", + "id": "171c480a-4752-48bf-94b5-eb216021dfd1" + }, + { + "routeId": "L1210", + "platformId": "U2973Z301", + "id": "475ca864-7d9a-4144-a161-5b468f39f93a" + }, + { + "routeId": "L1222", + "platformId": "U2973Z301", + "id": "3cf4bac1-db19-48fb-a342-142e7d9b9212" + }, + { + "routeId": "L1223", + "platformId": "U2973Z301", + "id": "f59fe5a6-0e29-453d-bf26-aa4285adab39" + }, + { + "routeId": "L1331", + "platformId": "U2973Z301", + "id": "9e8402d7-524e-4c37-9994-089c53e050a6" + }, + { + "routeId": "L1302", + "platformId": "U2973Z301", + "id": "3bbac0c3-118d-452a-ad1d-c255866fd13a" + }, + { + "routeId": "L1321", + "platformId": "U2973Z301", + "id": "c0e591bf-a986-4b53-a004-833fb275fd9e" + }, + { + "routeId": "L1312", + "platformId": "U2973Z301", + "id": "77f6a9e4-d38d-4d68-b457-fe5dd559ccd9" + }, + { + "routeId": "L434", + "platformId": "U2973Z4", + "id": "4068d750-d545-42de-b6ba-a3e6eedee5fd" + }, + { + "routeId": "L499", + "platformId": "U2973Z5", + "id": "552ba6d3-3c43-49de-847d-c15ee9e484b8" + }, + { + "routeId": "L673", + "platformId": "U2973Z6", + "id": "b524d38d-6cc2-4634-9800-7b1c317fc6ef" + }, + { + "routeId": "L1221", + "platformId": "U2975Z301", + "id": "35c02b90-07e8-493a-ae7c-70c421d85508" + }, + { + "routeId": "L1303", + "platformId": "U2975Z301", + "id": "1c378153-6d91-43c8-8e66-7e369e4245a0" + }, + { + "routeId": "L1221", + "platformId": "U2976Z301", + "id": "322e598f-f322-4e9d-a3c5-42e984b88b64" + }, + { + "routeId": "L1303", + "platformId": "U2976Z301", + "id": "83407571-3908-4220-a636-1d11b42c2d44" + }, + { + "routeId": "L1221", + "platformId": "U2977Z301", + "id": "d4add59b-7156-4b2f-bc21-bb2c4b1c43ff" + }, + { + "routeId": "L1303", + "platformId": "U2977Z301", + "id": "74a06d3c-de3d-49ff-96ee-21efd8685d05" + }, + { + "routeId": "L1221", + "platformId": "U2978Z301", + "id": "43a9430f-d3ae-4445-8420-cae40b87b9c3" + }, + { + "routeId": "L1303", + "platformId": "U2978Z301", + "id": "4756ca76-514e-481d-93a8-b863e786ecc0" + }, + { + "routeId": "L1221", + "platformId": "U2979Z301", + "id": "15c5a6fe-3c06-440f-81d9-e7c9ad4335dc" + }, + { + "routeId": "L1303", + "platformId": "U2979Z301", + "id": "22b0e58c-e0ec-4fdb-a496-2c1ffdb1e84a" + }, + { + "routeId": "L193", + "platformId": "U297Z1", + "id": "f9eb5626-5ff5-4460-91d4-edca1a86335c" + }, + { + "routeId": "L904", + "platformId": "U297Z1", + "id": "999ca39b-d469-40ff-a525-9f6c160c688d" + }, + { + "routeId": "L193", + "platformId": "U297Z2", + "id": "e9c857d1-f697-4cc4-8109-edfb3c847011" + }, + { + "routeId": "L904", + "platformId": "U297Z2", + "id": "2c26d925-c8e9-4130-8334-6a368fc798fe" + }, + { + "routeId": "L629", + "platformId": "U2980Z1", + "id": "a29c2a7b-6f3e-4c84-a7f1-51824143e642" + }, + { + "routeId": "L629", + "platformId": "U2981Z1", + "id": "712a036f-f559-49b4-9af3-3eb9b62b2e11" + }, + { + "routeId": "L629", + "platformId": "U2981Z2", + "id": "02d4afdf-6a51-4072-91bb-39488b1c23c6" + }, + { + "routeId": "L175", + "platformId": "U2982Z1", + "id": "29d42f57-e3b4-4d44-98d3-69e644fec0cd" + }, + { + "routeId": "L175", + "platformId": "U2982Z2", + "id": "5917ab34-8356-4587-8334-3693781b480a" + }, + { + "routeId": "L1221", + "platformId": "U2984Z301", + "id": "0ff984e5-e383-4404-93e2-ae28d7fbffe8" + }, + { + "routeId": "L1303", + "platformId": "U2984Z301", + "id": "db793410-0a04-4ad1-a858-1df59b6e826c" + }, + { + "routeId": "L1221", + "platformId": "U2985Z301", + "id": "1d68e32d-3a92-4c6a-9c7e-9ad388fd758b" + }, + { + "routeId": "L1303", + "platformId": "U2985Z301", + "id": "1a5573f2-8b94-4d03-9251-6299ddffd47b" + }, + { + "routeId": "L720", + "platformId": "U2986Z11", + "id": "064d1fe0-c1fe-403f-85d8-b13ac8778fd1" + }, + { + "routeId": "L1221", + "platformId": "U2986Z301", + "id": "56c54205-7bab-4051-83df-1c3cbf1c53c1" + }, + { + "routeId": "L1222", + "platformId": "U2986Z301", + "id": "fb2a76fb-9e94-49c6-91ce-4ed665bb489e" + }, + { + "routeId": "L1331", + "platformId": "U2986Z301", + "id": "6dd3654c-b545-4bfa-bed7-c65202b0fb97" + }, + { + "routeId": "L1330", + "platformId": "U2986Z301", + "id": "d4e5ad94-56e6-407d-a304-eedfcc0b30d7" + }, + { + "routeId": "L1034", + "platformId": "U2986Z301", + "id": "a541b284-189b-4d84-8f55-535e256294f8" + }, + { + "routeId": "L1336", + "platformId": "U2986Z301", + "id": "c2600684-e11b-49c7-8534-b38a4a52a37f" + }, + { + "routeId": "L1333", + "platformId": "U2986Z301", + "id": "c96cfc07-0976-4902-94a3-78e52fb3ec22" + }, + { + "routeId": "L1303", + "platformId": "U2986Z301", + "id": "13968c99-3787-4e33-b628-05f3ab2f3a9a" + }, + { + "routeId": "L427", + "platformId": "U2987Z1", + "id": "bca86253-30a8-41be-b743-a2c089121030" + }, + { + "routeId": "L730", + "platformId": "U2987Z11", + "id": "fec11b43-a9d5-4bc8-98fd-f25c203427b1" + }, + { + "routeId": "L720", + "platformId": "U2987Z11", + "id": "dd6d8a41-0da4-4aa9-bd76-22eddfd4d172" + }, + { + "routeId": "L700", + "platformId": "U2987Z12", + "id": "f0ccfe8c-da63-430c-bc07-4a7f9ada25ef" + }, + { + "routeId": "L737", + "platformId": "U2987Z15", + "id": "f816d139-d886-44e1-ab9b-8b673582e51b" + }, + { + "routeId": "L731", + "platformId": "U2987Z16", + "id": "fe239da7-e2f4-4e5e-94fd-fceeadcc30fe" + }, + { + "routeId": "L713", + "platformId": "U2987Z19", + "id": "63e16541-ffa6-4f5e-be34-d1c85e1c559d" + }, + { + "routeId": "L412", + "platformId": "U2987Z19", + "id": "f64ea3fd-3dc2-4d1c-95b3-a6af92daa238" + }, + { + "routeId": "L725", + "platformId": "U2987Z19", + "id": "9464a558-cd2e-42f4-a67c-602a1c324535" + }, + { + "routeId": "L345", + "platformId": "U2987Z2", + "id": "c40ea9b6-9da0-4d13-baf7-ebee73a89a1f" + }, + { + "routeId": "L3360", + "platformId": "U2987Z2", + "id": "3f44f651-235f-428e-b74f-8d67a3a4e4ff" + }, + { + "routeId": "L412", + "platformId": "U2987Z20", + "id": "0a04e237-16ec-4dd8-8fdb-1e4c61996311" + }, + { + "routeId": "L713", + "platformId": "U2987Z20", + "id": "0b8b840c-5f77-40d4-bbcd-84ddd6b44de4" + }, + { + "routeId": "L714", + "platformId": "U2987Z21", + "id": "9b600c5d-c351-4e01-95ae-d4ccf29a04f7" + }, + { + "routeId": "L723", + "platformId": "U2987Z22", + "id": "490936cd-9173-4d0e-9f8d-8aecbc2437a9" + }, + { + "routeId": "L724", + "platformId": "U2987Z23", + "id": "b17b2fd1-6550-4326-ac50-b39b3e1dc590" + }, + { + "routeId": "L432", + "platformId": "U2987Z24", + "id": "d0f9758a-b129-4497-b852-384f53f3aafa" + }, + { + "routeId": "L499", + "platformId": "U2987Z26", + "id": "dc87d830-28cb-4e49-a2c3-b9aec24c2177" + }, + { + "routeId": "L775", + "platformId": "U2987Z28", + "id": "c851a4c6-f531-428f-84b8-0ead39b90648" + }, + { + "routeId": "L463", + "platformId": "U2987Z29", + "id": "87fe48f3-1188-4f7f-a68b-1a28ea199c11" + }, + { + "routeId": "L315", + "platformId": "U2987Z3", + "id": "a21c1c69-a575-423f-bdd1-c804311389f0" + }, + { + "routeId": "L315", + "platformId": "U2987Z30", + "id": "347015d9-06c1-45d9-9cb4-614bc9059639" + }, + { + "routeId": "L731", + "platformId": "U2987Z30", + "id": "1e89058f-0dfe-4433-acd1-5e7396d82704" + }, + { + "routeId": "L3360", + "platformId": "U2987Z30", + "id": "7068ece5-f74b-484e-b0f6-2e6a68e363d4" + }, + { + "routeId": "L463", + "platformId": "U2987Z30", + "id": "6f42eaa9-df36-45cf-994c-26bda998f61a" + }, + { + "routeId": "L499", + "platformId": "U2987Z30", + "id": "a16a2d61-54ba-482e-b94c-84e6738a862c" + }, + { + "routeId": "L432", + "platformId": "U2987Z30", + "id": "e22ed1cc-6b27-472b-b336-31aadfea8773" + }, + { + "routeId": "L427", + "platformId": "U2987Z30", + "id": "5f1e8a39-b311-486d-94fd-2c75827fa845" + }, + { + "routeId": "L713", + "platformId": "U2987Z30", + "id": "189d525c-0b3f-4489-a33b-06e3cd44b776" + }, + { + "routeId": "L725", + "platformId": "U2987Z30", + "id": "1a88dbb3-02b5-46f6-a5ee-388ba2f0ae03" + }, + { + "routeId": "L412", + "platformId": "U2987Z30", + "id": "9b8c0501-522d-4d1e-9467-8f4143ac25d1" + }, + { + "routeId": "L467", + "platformId": "U2987Z30", + "id": "e7bd9cf1-eda5-4ec0-aad3-132e8c32357b" + }, + { + "routeId": "L700", + "platformId": "U2987Z30", + "id": "8cf701ab-faaf-48db-9ecf-bebc89d64773" + }, + { + "routeId": "L720", + "platformId": "U2987Z30", + "id": "42c022f2-0d68-4755-9b16-c4b8063f93d5" + }, + { + "routeId": "L723", + "platformId": "U2987Z30", + "id": "c1acd0a3-7be8-49c6-8a27-d1e9179364df" + }, + { + "routeId": "L724", + "platformId": "U2987Z30", + "id": "12b35a12-c4b5-4497-af40-2c334cf7d5d1" + }, + { + "routeId": "L737", + "platformId": "U2987Z30", + "id": "fa2a272e-ef40-4a8f-9f81-6ba3a215c6f9" + }, + { + "routeId": "L775", + "platformId": "U2987Z30", + "id": "86138c89-a9c3-4144-8a26-20efcf1b1f69" + }, + { + "routeId": "L1330", + "platformId": "U2987Z301", + "id": "39fa5f2e-e7a0-4062-a3de-67958dee3ca0" + }, + { + "routeId": "L1034", + "platformId": "U2987Z301", + "id": "b9bdd369-e3cd-458f-a833-e0d287f3034d" + }, + { + "routeId": "L1331", + "platformId": "U2987Z301", + "id": "113965a2-f8a9-4fa9-bd96-d19ba587f189" + }, + { + "routeId": "L1336", + "platformId": "U2987Z301", + "id": "2e1d51f0-7a63-41da-a1e4-a6cb455ade09" + }, + { + "routeId": "L1333", + "platformId": "U2987Z301", + "id": "3294423f-007b-418e-9fa7-e63b64634b57" + }, + { + "routeId": "L1303", + "platformId": "U2987Z301", + "id": "84891e36-6bbf-4767-86f5-f228451608a5" + }, + { + "routeId": "L714", + "platformId": "U2987Z60", + "id": "734cdb8a-09fc-4589-b6d7-f27e1ddbbc6a" + }, + { + "routeId": "L345", + "platformId": "U2987Z7", + "id": "a648b849-2337-4682-8398-7bf5e0e9fa3d" + }, + { + "routeId": "L315", + "platformId": "U2987Z7", + "id": "62cb7a34-88af-4f9c-9eba-da41b9077dc0" + }, + { + "routeId": "L315", + "platformId": "U2987Z8", + "id": "ad7a03e4-f074-4bdd-836c-0f5099826ae7" + }, + { + "routeId": "L467", + "platformId": "U2987Z9", + "id": "4447caa6-4a00-45d2-aabf-875385c4eb75" + }, + { + "routeId": "L1220", + "platformId": "U2988Z301", + "id": "b1f0e2b5-4ae6-4037-a118-aa61d19e3460" + }, + { + "routeId": "L1304", + "platformId": "U2988Z301", + "id": "97389565-854b-441f-8738-711949f6f14c" + }, + { + "routeId": "L1220", + "platformId": "U2989Z301", + "id": "a0fb3ed4-733d-4d38-991f-0d15d834aa0f" + }, + { + "routeId": "L1304", + "platformId": "U2989Z301", + "id": "ede9263b-d9a1-4503-8733-1fa6a5b303c7" + }, + { + "routeId": "L1220", + "platformId": "U2990Z301", + "id": "b2696416-a59e-4462-839b-bdd38cdc6ade" + }, + { + "routeId": "L1304", + "platformId": "U2990Z301", + "id": "7eb4f3da-8641-41ad-9de6-6cd1980ff645" + }, + { + "routeId": "L1220", + "platformId": "U2991Z301", + "id": "0d1f83e7-4ad5-415b-abae-d85423d7026e" + }, + { + "routeId": "L1304", + "platformId": "U2991Z301", + "id": "65b15857-0193-4f3b-ad89-e59ce393dadf" + }, + { + "routeId": "L1004", + "platformId": "U2991Z301", + "id": "c9c5e821-479b-45f2-adea-9448eac6ed78" + }, + { + "routeId": "L1054", + "platformId": "U2991Z301", + "id": "dd230678-66ed-4606-9952-2d3e8a296897" + }, + { + "routeId": "L1805", + "platformId": "U2993Z11", + "id": "7fd1788f-5bc4-417a-badb-58f51f3fb07f" + }, + { + "routeId": "L7", + "platformId": "U299Z1", + "id": "c5ca312f-c63c-47c1-b6ca-a2640494687b" + }, + { + "routeId": "L16", + "platformId": "U299Z1", + "id": "77dece63-c8df-4386-bd12-4b18e7c06a00" + }, + { + "routeId": "L26", + "platformId": "U299Z1", + "id": "ddac1644-57d5-4d52-8b59-dee056af48d1" + }, + { + "routeId": "L91", + "platformId": "U299Z1", + "id": "3d703677-940f-4ae5-b4b0-fc52e472a13e" + }, + { + "routeId": "L7", + "platformId": "U299Z2", + "id": "2677b7f7-b705-4256-8898-8e9ff48940d3" + }, + { + "routeId": "L16", + "platformId": "U299Z2", + "id": "6411fc38-e48e-4ae2-ad92-464cebcded96" + }, + { + "routeId": "L26", + "platformId": "U299Z2", + "id": "de952a98-1309-4f99-b469-6cf4e90c2b3b" + }, + { + "routeId": "L91", + "platformId": "U299Z2", + "id": "85614eaf-9156-4c34-ab7b-08f2e5eb769c" + }, + { + "routeId": "L135", + "platformId": "U29Z2", + "id": "37282e45-203a-4f7b-8465-7423fbe2dbae" + }, + { + "routeId": "L136", + "platformId": "U29Z2", + "id": "2b4a9e5d-eaa4-4ce4-9eb4-d82113a847ba" + }, + { + "routeId": "L150", + "platformId": "U29Z2", + "id": "fe925130-b580-4506-b721-b6b601d2d658" + }, + { + "routeId": "L213", + "platformId": "U29Z2", + "id": "7b4683d9-7c36-4435-bebd-c380e2fd454e" + }, + { + "routeId": "L913", + "platformId": "U29Z2", + "id": "50b17fe8-25f2-479a-93d2-40283c892ef2" + }, + { + "routeId": "L124", + "platformId": "U29Z3", + "id": "7ffecc20-b186-4902-b7db-db266cfb68a3" + }, + { + "routeId": "L135", + "platformId": "U29Z3", + "id": "1714e88f-6a9b-4f15-9248-759a7c610cc1" + }, + { + "routeId": "L139", + "platformId": "U29Z3", + "id": "53470087-0392-4970-b6ac-e98c96c627b3" + }, + { + "routeId": "L124", + "platformId": "U29Z6", + "id": "d2521166-7bc3-44ef-8282-581d86aeb7cf" + }, + { + "routeId": "L139", + "platformId": "U29Z6", + "id": "fe2990e9-566e-4c1f-9342-646eda3d6dcb" + }, + { + "routeId": "L136", + "platformId": "U29Z7", + "id": "ea033089-179f-46d3-8d46-bded24c1c0f7" + }, + { + "routeId": "L150", + "platformId": "U29Z7", + "id": "3f708d3a-9464-435b-b52b-efc6a4da5410" + }, + { + "routeId": "L213", + "platformId": "U29Z7", + "id": "7b476c24-c562-4966-b881-b7e2ee92d76a" + }, + { + "routeId": "L913", + "platformId": "U29Z7", + "id": "7b77f7a4-925e-47cb-8918-a2283f9dd96d" + }, + { + "routeId": "L375", + "platformId": "U3001Z1", + "id": "b5a0857b-d7fc-475e-a071-7626b0e04519" + }, + { + "routeId": "L670", + "platformId": "U3001Z1", + "id": "67b50a5c-a18b-4438-a00d-9e4652f33d6d" + }, + { + "routeId": "L667", + "platformId": "U3001Z1", + "id": "f0404cc7-2509-41f4-a677-dcbb9fcf7593" + }, + { + "routeId": "L375", + "platformId": "U3001Z2", + "id": "eb926c7a-0e21-4af0-b063-8afa62b79f31" + }, + { + "routeId": "L670", + "platformId": "U3001Z2", + "id": "6ac9a18a-3946-4455-bacf-8dd32e4eba2c" + }, + { + "routeId": "L667", + "platformId": "U3001Z2", + "id": "6adc741c-b3ea-4b92-a55e-0d07f08f95ff" + }, + { + "routeId": "L166", + "platformId": "U3005Z1", + "id": "4503511c-deb1-4e5c-9a79-8e8a6c0578fa" + }, + { + "routeId": "L166", + "platformId": "U3006Z1", + "id": "29ceb56a-a555-49f4-8609-d0c160bd36a0" + }, + { + "routeId": "L166", + "platformId": "U3007Z1", + "id": "17ae011c-7a08-4077-8cfb-58af5dd3ebdb" + }, + { + "routeId": "L250", + "platformId": "U3008Z1", + "id": "1901dabf-2681-40e5-ac30-e7810db52c58" + }, + { + "routeId": "L909", + "platformId": "U3008Z1", + "id": "73ea817f-4b4b-4eb4-a253-114de1f993dd" + }, + { + "routeId": "L163", + "platformId": "U3008Z1", + "id": "690bc359-998b-45bd-b52a-a90dc5d6a6ab" + }, + { + "routeId": "L221", + "platformId": "U3008Z1", + "id": "89ca7eeb-6497-403e-8adf-75ed0f984233" + }, + { + "routeId": "L250", + "platformId": "U3008Z2", + "id": "1de1dd6b-309a-4254-93df-9862953b18e8" + }, + { + "routeId": "L909", + "platformId": "U3008Z2", + "id": "7c6ae3dc-49e1-440c-918f-e5043e11f48f" + }, + { + "routeId": "L163", + "platformId": "U3008Z2", + "id": "5e063991-5f76-434f-8805-74ac728c8126" + }, + { + "routeId": "L221", + "platformId": "U3008Z2", + "id": "37bda9df-b553-420c-8c0d-4e92136e3b43" + }, + { + "routeId": "L151", + "platformId": "U300Z1", + "id": "92d68393-58d1-4e74-825b-f9cb2cb0b0ed" + }, + { + "routeId": "L151", + "platformId": "U300Z2", + "id": "cc1e3583-3418-41ff-aead-4c385978a7f7" + }, + { + "routeId": "L361", + "platformId": "U3010Z1", + "id": "6b4662f7-3b82-4999-8078-4aa68f999801" + }, + { + "routeId": "L361", + "platformId": "U3010Z2", + "id": "ca380865-a49a-4aa2-a323-cc38e7c59bf9" + }, + { + "routeId": "L224", + "platformId": "U3011Z1", + "id": "397277d5-8cc4-4b06-8d05-392859152f6a" + }, + { + "routeId": "L224", + "platformId": "U3011Z2", + "id": "fa71374e-dcee-48e0-bf1d-bc3d3874aed4" + }, + { + "routeId": "L224", + "platformId": "U3012Z1", + "id": "44ff54f4-5c96-4b6c-b310-88698dc946ea" + }, + { + "routeId": "L224", + "platformId": "U3012Z2", + "id": "6a31e521-3565-4486-8a91-b4034ef60b76" + }, + { + "routeId": "L224", + "platformId": "U3013Z1", + "id": "ce395087-b71b-4ad9-971a-4d80661eedfc" + }, + { + "routeId": "L224", + "platformId": "U3013Z2", + "id": "5c943808-96bf-4221-81f4-c40f1b653d8f" + }, + { + "routeId": "L175", + "platformId": "U3014Z1", + "id": "4140adcb-bf2c-4d8a-90c6-4ac02b68a5e4" + }, + { + "routeId": "L175", + "platformId": "U3014Z2", + "id": "e6f9f0fb-37cb-477f-8ced-a896ccd11542" + }, + { + "routeId": "L208", + "platformId": "U3015Z1", + "id": "d1ae8a4e-6978-4edd-851a-8ad7ec81b74d" + }, + { + "routeId": "L204", + "platformId": "U3015Z1", + "id": "8c78c81f-c20e-4461-878a-7b32278a49a5" + }, + { + "routeId": "L224", + "platformId": "U3015Z1", + "id": "96855f6c-a738-40aa-858d-904971cc5acc" + }, + { + "routeId": "L224", + "platformId": "U3015Z2", + "id": "56288b72-fd33-41d7-b14e-a2de34976f3d" + }, + { + "routeId": "L208", + "platformId": "U3015Z3", + "id": "4d1f2c49-6cc0-41ce-aeef-d71cb6ea25a6" + }, + { + "routeId": "L204", + "platformId": "U3015Z3", + "id": "a6c92066-2f76-440e-a4be-9b7b6d121f47" + }, + { + "routeId": "L224", + "platformId": "U3015Z3", + "id": "6a9b0a0a-0b4f-4a79-a640-fab44d2f057e" + }, + { + "routeId": "L131", + "platformId": "U3017Z1", + "id": "cffb1854-ee4e-4fd7-abd1-b98c576801a3" + }, + { + "routeId": "L907", + "platformId": "U3017Z1", + "id": "6b379ca1-14ee-42aa-9759-e34c16155704" + }, + { + "routeId": "L131", + "platformId": "U3017Z2", + "id": "5f2687b6-fa4b-441b-a395-f8352a27ec3d" + }, + { + "routeId": "L907", + "platformId": "U3017Z2", + "id": "6e996c1c-4cc0-4602-91e3-fd7f065b909a" + }, + { + "routeId": "L133", + "platformId": "U3018Z1", + "id": "1f944ce1-8c83-4d6c-93d4-81f4a80d4d7a" + }, + { + "routeId": "L135", + "platformId": "U3018Z1", + "id": "63e1cee2-8690-452b-a886-a9c5c51b8218" + }, + { + "routeId": "L175", + "platformId": "U3018Z1", + "id": "ecb823c2-1547-4489-8b53-207f9480813b" + }, + { + "routeId": "L207", + "platformId": "U3018Z1", + "id": "fa56e9a8-f142-4359-86a2-186e39197506" + }, + { + "routeId": "L908", + "platformId": "U3018Z1", + "id": "52d4ccb0-e93a-46ef-b7c0-67e092722496" + }, + { + "routeId": "L909", + "platformId": "U3018Z1", + "id": "d1616e7c-db5a-49b2-8c60-070ccb2b6f0b" + }, + { + "routeId": "L133", + "platformId": "U3018Z2", + "id": "dad6646d-1f2b-4d62-84dc-0a4273127cc9" + }, + { + "routeId": "L175", + "platformId": "U3018Z2", + "id": "138e9a16-5c50-4d7e-a697-1b8ef9cb5fac" + }, + { + "routeId": "L207", + "platformId": "U3018Z2", + "id": "0818032c-e9a6-4b39-b29b-2b915e6f7669" + }, + { + "routeId": "L908", + "platformId": "U3018Z2", + "id": "a964e845-0274-4765-b1fb-4bf3957b181f" + }, + { + "routeId": "L909", + "platformId": "U3018Z2", + "id": "63bb65ff-904e-43cf-98f9-90edd8fc1fda" + }, + { + "routeId": "L13", + "platformId": "U301Z1", + "id": "a6e314b0-d233-41d2-8fb9-663d210d55f8" + }, + { + "routeId": "L22", + "platformId": "U301Z1", + "id": "5e2ed189-574b-4e24-bb87-c50312844e4f" + }, + { + "routeId": "L97", + "platformId": "U301Z1", + "id": "0d33b6a3-bb4e-4b02-a612-c98129aa880c" + }, + { + "routeId": "L99", + "platformId": "U301Z1", + "id": "183eb01b-81a7-4fdc-9dbd-39e0d3c64c51" + }, + { + "routeId": "L135", + "platformId": "U301Z1", + "id": "72e3210d-f384-4d20-80d4-14fa2efbdc66" + }, + { + "routeId": "L13", + "platformId": "U301Z2", + "id": "68d24c2c-b919-4765-8522-0016ba1adb86" + }, + { + "routeId": "L22", + "platformId": "U301Z2", + "id": "9d86d256-091c-449c-94c8-0377f735f7a7" + }, + { + "routeId": "L97", + "platformId": "U301Z2", + "id": "20a4ca40-efc1-406e-a601-3fdf32b10b6e" + }, + { + "routeId": "L99", + "platformId": "U301Z2", + "id": "cd51a7d7-cfc8-402b-b6d1-ad59da518332" + }, + { + "routeId": "L135", + "platformId": "U301Z2", + "id": "08894a87-1c73-4305-8879-0d05699e0c9a" + }, + { + "routeId": "L164", + "platformId": "U3021Z1", + "id": "b427b094-0ed0-4e49-b840-c2b2a260ae60" + }, + { + "routeId": "L164", + "platformId": "U3021Z2", + "id": "e6a2c9e8-d900-4548-b86a-ae53c77e0a1b" + }, + { + "routeId": "L204", + "platformId": "U3024Z1", + "id": "e9ace060-8456-4f78-a044-d09070dd88e0" + }, + { + "routeId": "L7", + "platformId": "U302Z1", + "id": "896d659c-4932-4a25-8ca9-15c7ea667ca5" + }, + { + "routeId": "L7", + "platformId": "U302Z2", + "id": "c1050c09-62ae-42a2-a3e5-19389346d47f" + }, + { + "routeId": "L120", + "platformId": "U302Z3", + "id": "686454d1-8d7c-476a-a1a8-606aa19e3344" + }, + { + "routeId": "L231", + "platformId": "U302Z3", + "id": "ff7dc51a-f54b-44da-bee5-e92ce07f9b0d" + }, + { + "routeId": "L120", + "platformId": "U302Z4", + "id": "125ef639-4378-4b0f-be7a-759affef8ffc" + }, + { + "routeId": "L231", + "platformId": "U302Z4", + "id": "67b0c9ea-9ace-43c4-97a7-754aac43d9e4" + }, + { + "routeId": "L904", + "platformId": "U302Z4", + "id": "b4fd7daf-eb0b-4c18-bb5a-6047fbc09699" + }, + { + "routeId": "L894", + "platformId": "U3034Z1", + "id": "62a7a4d5-7b32-48e2-a714-1353488ea778" + }, + { + "routeId": "L156", + "platformId": "U3035Z1", + "id": "fb5878fe-4dfd-4169-8aca-29bf3509d044" + }, + { + "routeId": "L499", + "platformId": "U3037Z1", + "id": "a7ce4255-e1f9-49fa-a83f-7d2858866666" + }, + { + "routeId": "L499", + "platformId": "U3037Z2", + "id": "d5321bfc-4fbd-4009-bdf0-341dd22f3720" + }, + { + "routeId": "L499", + "platformId": "U3039Z1", + "id": "fb462b88-c509-4eb4-af3e-6c65506139c4" + }, + { + "routeId": "L676", + "platformId": "U3039Z1", + "id": "9f4e866c-db32-4f59-9799-9c2ceba16042" + }, + { + "routeId": "L2", + "platformId": "U303Z1", + "id": "19cfaf1b-898b-49d7-bdca-190630feae25" + }, + { + "routeId": "L3", + "platformId": "U303Z1", + "id": "ecf2f276-d8e2-4e2f-b991-f25becc0d743" + }, + { + "routeId": "L17", + "platformId": "U303Z1", + "id": "7bc176a9-5265-4569-b62a-d2ccb85f7671" + }, + { + "routeId": "L27", + "platformId": "U303Z1", + "id": "1d591b1d-ea1e-4cd1-a2f9-156350ffa40c" + }, + { + "routeId": "L92", + "platformId": "U303Z1", + "id": "b71b91b5-5f99-4f3b-871c-a6e9ce598ce5" + }, + { + "routeId": "L2", + "platformId": "U303Z2", + "id": "6912876a-df34-4068-a2ed-7302708c753f" + }, + { + "routeId": "L3", + "platformId": "U303Z2", + "id": "1cfe8346-179c-49bf-940b-65a22fcee0a2" + }, + { + "routeId": "L17", + "platformId": "U303Z2", + "id": "8317600f-9428-4402-8482-cc04c0365269" + }, + { + "routeId": "L27", + "platformId": "U303Z2", + "id": "65508a52-1d4b-4dc0-b908-497023a38e0a" + }, + { + "routeId": "L92", + "platformId": "U303Z2", + "id": "68e748f7-fcf9-48f5-8d39-9b2d87beafac" + }, + { + "routeId": "L676", + "platformId": "U3040Z1", + "id": "c058bedb-4e2e-498b-b2bb-dd2a319ffe91" + }, + { + "routeId": "L676", + "platformId": "U3040Z2", + "id": "b690b57f-b329-48ee-be88-fd58d94735b4" + }, + { + "routeId": "L108", + "platformId": "U3041Z1", + "id": "3e592c80-2bf6-4e96-bc33-b60ab341d7f4" + }, + { + "routeId": "L108", + "platformId": "U3041Z2", + "id": "e3c04b89-1693-446e-ab74-e59c7f45be67" + }, + { + "routeId": "L108", + "platformId": "U3042Z1", + "id": "5db557f0-ff5d-41aa-a459-ad2513ac5030" + }, + { + "routeId": "L108", + "platformId": "U3042Z2", + "id": "cf10260b-00df-4958-a4b2-6f603e704503" + }, + { + "routeId": "L108", + "platformId": "U3043Z1", + "id": "64ca221c-79bf-48d2-9767-f94c2ef8bea4" + }, + { + "routeId": "L108", + "platformId": "U3043Z2", + "id": "6adfbf7e-f20b-4641-8a3a-07d9f9a530c2" + }, + { + "routeId": "L108", + "platformId": "U3044Z1", + "id": "01e5e93d-69d5-431a-a22d-f4c08f1607d1" + }, + { + "routeId": "L108", + "platformId": "U3044Z2", + "id": "266d83d4-a08b-4ea5-8617-3fa4430f77c8" + }, + { + "routeId": "L108", + "platformId": "U3045Z1", + "id": "87e7657c-7d27-4bfd-8ed2-c32c41d649d7" + }, + { + "routeId": "L108", + "platformId": "U3045Z2", + "id": "db27ac94-145c-40ac-a4f3-92bfda491b9a" + }, + { + "routeId": "L164", + "platformId": "U3045Z2", + "id": "cf4959cb-80f2-426f-89f7-e2eb5c2d2d73" + }, + { + "routeId": "L108", + "platformId": "U3045Z3", + "id": "ca208e1d-5b40-44fc-b30c-6daa80604601" + }, + { + "routeId": "L164", + "platformId": "U3045Z3", + "id": "d5c7c250-dbe3-48ec-bfb3-2de3e1f9ab3e" + }, + { + "routeId": "L499", + "platformId": "U3046Z1", + "id": "de67396d-4d82-495a-bd4e-9f7490d05dfd" + }, + { + "routeId": "L499", + "platformId": "U3046Z2", + "id": "ab547d37-115f-4f7a-9903-787a117acc2a" + }, + { + "routeId": "L499", + "platformId": "U3047Z1", + "id": "7bd34c72-9a7c-4f07-91be-0a454e118071" + }, + { + "routeId": "L499", + "platformId": "U3047Z2", + "id": "2aff9402-84b0-4a48-b469-2a3c40392124" + }, + { + "routeId": "L432", + "platformId": "U3049Z1", + "id": "644a7798-079a-437e-b6db-a30ce18e1d0d" + }, + { + "routeId": "L432", + "platformId": "U3049Z2", + "id": "a7131e93-684c-41af-96ae-65e7749f57fb" + }, + { + "routeId": "L403", + "platformId": "U3049Z3", + "id": "3268009f-a480-4fc7-a9dc-0890b0b6d4bf" + }, + { + "routeId": "L775", + "platformId": "U3049Z3", + "id": "f9841491-dcdd-4ba1-8acf-1d3108de881e" + }, + { + "routeId": "L432", + "platformId": "U3049Z4", + "id": "6582b09c-a4f0-43e7-8e90-adc6edbf5a99" + }, + { + "routeId": "L403", + "platformId": "U3049Z4", + "id": "57e40ab0-d091-422a-aba6-9ecf41a0d496" + }, + { + "routeId": "L775", + "platformId": "U3049Z4", + "id": "3a8905ee-58be-4acb-a982-62f528eaf30b" + }, + { + "routeId": "L142", + "platformId": "U304Z1", + "id": "7b5c3443-3c21-4546-a9e7-4be98e23614f" + }, + { + "routeId": "L184", + "platformId": "U304Z1", + "id": "9870aa74-e27b-4e41-8315-f19bae6b904e" + }, + { + "routeId": "L142", + "platformId": "U304Z2", + "id": "2b7bb529-2146-43b5-8c4e-f28f519d2772" + }, + { + "routeId": "L184", + "platformId": "U304Z2", + "id": "73f8f569-6f12-47d8-98a9-3e072e5e4055" + }, + { + "routeId": "L352", + "platformId": "U3051Z1", + "id": "0d5c4ea9-7cdf-46d2-9fc0-9d31a08ee1c8" + }, + { + "routeId": "L301", + "platformId": "U3051Z1", + "id": "cbc4213d-476e-4a01-a1dd-b3bdea475729" + }, + { + "routeId": "L352", + "platformId": "U3051Z2", + "id": "4e3f8efe-179e-4c98-94f2-bc133688b439" + }, + { + "routeId": "L301", + "platformId": "U3051Z2", + "id": "bf658c2e-f43b-421f-aad5-996805257f43" + }, + { + "routeId": "L125", + "platformId": "U3052Z1", + "id": "9e290533-de10-4b73-a8a5-5d775a87931f" + }, + { + "routeId": "L911", + "platformId": "U3052Z1", + "id": "023f5c5e-2685-4ccb-a42c-7f1ee7417841" + }, + { + "routeId": "L204", + "platformId": "U3052Z1", + "id": "5d9567a5-baa6-485f-900f-a62ad8ac555d" + }, + { + "routeId": "L240", + "platformId": "U3052Z1", + "id": "9c899547-3119-4093-bfd6-902d2a006071" + }, + { + "routeId": "L125", + "platformId": "U3052Z2", + "id": "a5c8c285-81f7-4df8-8df6-c1de1ac4f2df" + }, + { + "routeId": "L911", + "platformId": "U3052Z2", + "id": "6c7d26c7-51ec-4bef-bed3-73370c5c9278" + }, + { + "routeId": "L204", + "platformId": "U3052Z2", + "id": "8a66614e-d270-47fa-8f3f-06c6b195589a" + }, + { + "routeId": "L240", + "platformId": "U3052Z2", + "id": "ce5a8779-b96c-4b67-aa42-b8c5d619535d" + }, + { + "routeId": "L126", + "platformId": "U3053Z1", + "id": "0aec2140-a5ea-4f99-aa9c-702cb0676f79" + }, + { + "routeId": "L906", + "platformId": "U3053Z1", + "id": "2328e115-a55c-43a1-8dd4-00cb82bf2767" + }, + { + "routeId": "L228", + "platformId": "U3053Z1", + "id": "51cb25f1-4fcc-4f84-b0df-5d106c669968" + }, + { + "routeId": "L325", + "platformId": "U3053Z1", + "id": "b99213f7-3ea2-46b3-9d4a-c384331998fd" + }, + { + "routeId": "L126", + "platformId": "U3053Z2", + "id": "7d023ff4-ea6f-4da7-a9d2-0860b3468b3d" + }, + { + "routeId": "L906", + "platformId": "U3053Z2", + "id": "30c6ea86-d3f7-4184-9fef-759c80dd227a" + }, + { + "routeId": "L228", + "platformId": "U3053Z2", + "id": "69c29e49-4565-4832-9a73-325df77a9aca" + }, + { + "routeId": "L325", + "platformId": "U3053Z2", + "id": "8a73e608-a115-4310-a76e-7c9fe2f3947b" + }, + { + "routeId": "L432", + "platformId": "U3056Z1", + "id": "70370005-5f5e-4e79-b957-d73f09dabcb6" + }, + { + "routeId": "L403", + "platformId": "U3056Z1", + "id": "da40d096-f724-423e-b547-0a836142aa88" + }, + { + "routeId": "L775", + "platformId": "U3056Z1", + "id": "cf368672-d949-4cb5-bf81-d6c5d4666711" + }, + { + "routeId": "L775", + "platformId": "U3057Z1", + "id": "703466af-18f8-400c-933b-82981198b00c" + }, + { + "routeId": "L775", + "platformId": "U3057Z2", + "id": "b5c76cf1-2358-410d-825a-4377f7a958a6" + }, + { + "routeId": "L1222", + "platformId": "U3057Z301", + "id": "d490362e-62c1-4b2f-9e7b-fe09346119a8" + }, + { + "routeId": "L1331", + "platformId": "U3057Z301", + "id": "8c5fd202-b339-42ca-a502-3523e42b8780" + }, + { + "routeId": "L432", + "platformId": "U3058Z1", + "id": "dd24addf-4d4d-4cab-8bd4-0a5b33eeed07" + }, + { + "routeId": "L403", + "platformId": "U3058Z1", + "id": "0ee8b57c-0992-41e6-9599-105a1c5af540" + }, + { + "routeId": "L775", + "platformId": "U3058Z1", + "id": "d426d69a-292d-4d4b-a356-8ef28378f0c3" + }, + { + "routeId": "L201", + "platformId": "U305Z1", + "id": "6ad3d7ce-7898-4e43-8a05-839d7e146fea" + }, + { + "routeId": "L905", + "platformId": "U305Z1", + "id": "eb68aad9-9835-4a07-bc93-27e161c04fab" + }, + { + "routeId": "L911", + "platformId": "U305Z1", + "id": "019ab1eb-8276-4479-9f69-58029c85f5c4" + }, + { + "routeId": "L201", + "platformId": "U305Z2", + "id": "44bd03ad-a552-4af6-abae-27964fe9689c" + }, + { + "routeId": "L905", + "platformId": "U305Z2", + "id": "c5ff1c97-7dda-4815-a773-cc7db0d657ae" + }, + { + "routeId": "L911", + "platformId": "U305Z2", + "id": "ad33e26a-043d-4900-a1a3-f514f3cb7609" + }, + { + "routeId": "L676", + "platformId": "U3061Z1", + "id": "6bde9f80-48ee-480a-868d-8257b7e59280" + }, + { + "routeId": "L676", + "platformId": "U3061Z2", + "id": "4f60191d-f286-4655-81dc-4e876675c24d" + }, + { + "routeId": "L676", + "platformId": "U3062Z1", + "id": "aea866e2-25a8-42d1-874c-a6b5e2386657" + }, + { + "routeId": "L676", + "platformId": "U3062Z2", + "id": "16184e90-1acf-433c-93a5-85f12c51ff59" + }, + { + "routeId": "L345", + "platformId": "U3063Z1", + "id": "86c44762-fac6-4f78-960c-aec1060c00eb" + }, + { + "routeId": "L713", + "platformId": "U3063Z1", + "id": "c7e4946c-a2c7-47b3-9ec8-0f827bcdeb29" + }, + { + "routeId": "L725", + "platformId": "U3063Z1", + "id": "0413362f-b540-478d-a58b-b3203999813c" + }, + { + "routeId": "L700", + "platformId": "U3063Z1", + "id": "9f60836a-bd62-4d83-be90-9db59add292c" + }, + { + "routeId": "L720", + "platformId": "U3063Z1", + "id": "d25ff91b-596c-41b2-b5b9-eb5d2c2124a5" + }, + { + "routeId": "L723", + "platformId": "U3063Z1", + "id": "a3b9d8d7-563b-472d-86d4-ba8d58761e26" + }, + { + "routeId": "L724", + "platformId": "U3063Z1", + "id": "28868984-972b-43e4-9974-f5ec0e4511ef" + }, + { + "routeId": "L315", + "platformId": "U3063Z2", + "id": "5eda2f24-0444-48aa-8fe0-2b1380262acc" + }, + { + "routeId": "L713", + "platformId": "U3063Z2", + "id": "c9801a17-b67e-413e-9447-e66cc288e1af" + }, + { + "routeId": "L725", + "platformId": "U3063Z2", + "id": "3ba628f7-a575-4b3b-be4d-4d2b010397e4" + }, + { + "routeId": "L700", + "platformId": "U3063Z2", + "id": "730db27b-545f-4df0-ae59-2f0538f38566" + }, + { + "routeId": "L720", + "platformId": "U3063Z2", + "id": "e3ef87e7-6716-41bc-930e-9330b7f2d520" + }, + { + "routeId": "L723", + "platformId": "U3063Z2", + "id": "b0179f65-0724-45b5-ac47-66f1f21e2fd2" + }, + { + "routeId": "L724", + "platformId": "U3063Z2", + "id": "a764c4d3-310e-49d4-8eea-97ebab5fd630" + }, + { + "routeId": "L315", + "platformId": "U3064Z4", + "id": "6338ec44-0343-47f5-b20f-350720e38a6c" + }, + { + "routeId": "L427", + "platformId": "U3064Z4", + "id": "fc647ad2-3a9d-427b-8385-8bc48f0e63c8" + }, + { + "routeId": "L3360", + "platformId": "U3064Z5", + "id": "dd3f1786-06d3-419a-b336-83ae0382b1ff" + }, + { + "routeId": "L720", + "platformId": "U3064Z5", + "id": "419b9bd0-4d5c-4870-af7d-850eeb7a2fc9" + }, + { + "routeId": "L775", + "platformId": "U3066Z1", + "id": "238b2720-4362-4c57-9951-5b5ce5c83207" + }, + { + "routeId": "L775", + "platformId": "U3066Z2", + "id": "f478b531-dc56-4ad5-8e1a-0db720a94a8f" + }, + { + "routeId": "L775", + "platformId": "U3067Z1", + "id": "833033ea-563c-4603-865b-3d2f9699f12d" + }, + { + "routeId": "L775", + "platformId": "U3067Z2", + "id": "23068228-92f7-41bc-b367-e06e1df764fb" + }, + { + "routeId": "L775", + "platformId": "U3068Z1", + "id": "5bdb19b3-0c4a-4ead-a1e1-132b8a233757" + }, + { + "routeId": "L775", + "platformId": "U3068Z2", + "id": "6f793362-e353-41c9-b361-361971bcd8d7" + }, + { + "routeId": "L775", + "platformId": "U3069Z2", + "id": "4698637f-7ce6-4ac4-af63-01d339759e6d" + }, + { + "routeId": "L167", + "platformId": "U306Z1", + "id": "65679bd3-8cdd-4ba2-8dca-413bb7900044" + }, + { + "routeId": "L168", + "platformId": "U306Z1", + "id": "e0bbb8f5-9d93-4987-b220-fb7f3eefc2e2" + }, + { + "routeId": "L174", + "platformId": "U306Z1", + "id": "ef5a8859-c279-4701-85f8-e81188c65a49" + }, + { + "routeId": "L180", + "platformId": "U306Z1", + "id": "b2cce110-f5b9-4af1-a21b-a407b0d31af4" + }, + { + "routeId": "L184", + "platformId": "U306Z1", + "id": "30099ec3-1aec-48ef-8728-544715c2656f" + }, + { + "routeId": "L902", + "platformId": "U306Z1", + "id": "7eabb0e3-da6a-4101-a888-6b4ba1d014b3" + }, + { + "routeId": "L304", + "platformId": "U306Z1", + "id": "48f4fc36-59f9-43b9-b057-37fb38691c70" + }, + { + "routeId": "L365", + "platformId": "U306Z1", + "id": "ffb940f9-05f7-4aef-b35d-de2cd5ad75ea" + }, + { + "routeId": "L380", + "platformId": "U306Z1", + "id": "9db55450-0fb0-4a49-8c3b-3e9e810f606b" + }, + { + "routeId": "L991", + "platformId": "U306Z101", + "id": "6f9d2c91-7ddd-49cb-92ff-504c3f7868ae" + }, + { + "routeId": "L991", + "platformId": "U306Z102", + "id": "e950ddce-b67c-4f70-9f06-226c79460e4b" + }, + { + "routeId": "L167", + "platformId": "U306Z2", + "id": "ec90910c-bcb7-445b-9197-4177d9aa0089" + }, + { + "routeId": "L168", + "platformId": "U306Z2", + "id": "e42180e9-294b-4035-98fc-d69bbee1b2ce" + }, + { + "routeId": "L174", + "platformId": "U306Z2", + "id": "63666c49-6d24-4a02-aa18-dc0315c3113b" + }, + { + "routeId": "L180", + "platformId": "U306Z2", + "id": "a9f42017-3dee-4ba4-b96a-8ee1224bd926" + }, + { + "routeId": "L184", + "platformId": "U306Z2", + "id": "5f2db51c-dbaa-48b5-822c-2779b3e6a970" + }, + { + "routeId": "L902", + "platformId": "U306Z2", + "id": "bc64d3da-8e15-4b18-a612-063e85b92036" + }, + { + "routeId": "L365", + "platformId": "U306Z2", + "id": "995ea00f-5812-45a3-8b16-cbeea709c7d7" + }, + { + "routeId": "L304", + "platformId": "U306Z3", + "id": "c5f9a286-2bfa-41ab-b5ce-f28c8aa112b0" + }, + { + "routeId": "L380", + "platformId": "U306Z3", + "id": "0575820b-774a-4ad8-9ca8-f701fcc8b343" + }, + { + "routeId": "L432", + "platformId": "U3070Z1", + "id": "f2d0afeb-d9eb-4397-a7bd-ff5c7b669a6b" + }, + { + "routeId": "L403", + "platformId": "U3070Z1", + "id": "ddc70f57-6d50-4e8a-b7b1-8a1aaee4a210" + }, + { + "routeId": "L775", + "platformId": "U3070Z1", + "id": "96d353ce-89b2-4755-8eff-9c0326811897" + }, + { + "routeId": "L432", + "platformId": "U3070Z2", + "id": "2a177638-a11c-43ed-8257-54d71543489e" + }, + { + "routeId": "L403", + "platformId": "U3070Z2", + "id": "76656105-c4b6-47f9-bb15-54fe78ebb06e" + }, + { + "routeId": "L775", + "platformId": "U3070Z2", + "id": "8bacd99a-6d61-4eec-b84f-3d182264ad86" + }, + { + "routeId": "L432", + "platformId": "U3071Z1", + "id": "a0fe697b-0543-4b36-9e4c-7db9390e8b53" + }, + { + "routeId": "L432", + "platformId": "U3071Z2", + "id": "249241e7-b859-49a1-b07b-ee41039250e3" + }, + { + "routeId": "L443", + "platformId": "U3074Z1", + "id": "016dafbd-01e0-4466-8ce4-d4ccc22f5917" + }, + { + "routeId": "L443", + "platformId": "U3074Z2", + "id": "b00d7372-3f8d-471b-b7dd-7edb609597b1" + }, + { + "routeId": "L443", + "platformId": "U3076Z1", + "id": "5830001a-63d4-4f45-9758-e8167c04c5b8" + }, + { + "routeId": "L673", + "platformId": "U3077Z1", + "id": "777fbd7e-1a8b-46ae-889a-3b05356cc7bc" + }, + { + "routeId": "L499", + "platformId": "U3078Z1", + "id": "596f9c67-1b9c-4867-afdd-65523479814d" + }, + { + "routeId": "L434", + "platformId": "U3078Z1", + "id": "cb41b47b-266d-4a56-97d3-752a3c941ad8" + }, + { + "routeId": "L499", + "platformId": "U3078Z2", + "id": "ff58731c-f4dd-49e0-8ac1-309309ad4ecd" + }, + { + "routeId": "L434", + "platformId": "U3078Z2", + "id": "b1f54f50-0bc7-4f9a-b126-c1ffef8f0242" + }, + { + "routeId": "L197", + "platformId": "U307Z1", + "id": "8d424ae0-2fe9-4bf1-956a-e8ff30d887be" + }, + { + "routeId": "L203", + "platformId": "U307Z1", + "id": "15214e03-058d-4060-9e0a-da8beb162175" + }, + { + "routeId": "L197", + "platformId": "U307Z2", + "id": "d9f45120-b957-4b7d-b9f1-ef9cc6bd74ae" + }, + { + "routeId": "L203", + "platformId": "U307Z2", + "id": "0c37d7bd-cba9-4280-b480-8591a107677f" + }, + { + "routeId": "L443", + "platformId": "U3080Z2", + "id": "a478e9c5-01c2-480e-8d42-ca52d44f0c67" + }, + { + "routeId": "L673", + "platformId": "U3081Z1", + "id": "3fdd0447-1a94-4c4f-b655-9ae7331a19d6" + }, + { + "routeId": "L673", + "platformId": "U3084Z1", + "id": "22df1e80-b8ec-4ff2-a1ca-020f5cd8419f" + }, + { + "routeId": "L673", + "platformId": "U3084Z2", + "id": "26972321-287f-489f-b44a-292aa5aadb2e" + }, + { + "routeId": "L499", + "platformId": "U3087Z1", + "id": "d41806ed-27c2-4642-8301-743918498f5b" + }, + { + "routeId": "L434", + "platformId": "U3087Z1", + "id": "c9c99e2d-fb8e-4d98-8a81-05095eec4d95" + }, + { + "routeId": "L499", + "platformId": "U3087Z2", + "id": "e937cbd3-8dff-4100-9e85-d9085bbe94cf" + }, + { + "routeId": "L434", + "platformId": "U3087Z2", + "id": "4d1ab136-4541-44a4-96f9-6044530fce67" + }, + { + "routeId": "L12", + "platformId": "U308Z1", + "id": "6ebbcdf7-a80d-431a-8403-1ce4fa244839" + }, + { + "routeId": "L31", + "platformId": "U308Z1", + "id": "163a7e0a-cf31-47c3-8d13-8c0f8f93d1b0" + }, + { + "routeId": "L94", + "platformId": "U308Z1", + "id": "e688713c-fcfb-4379-b270-c3742a71404d" + }, + { + "routeId": "L12", + "platformId": "U308Z2", + "id": "2777954e-03fa-476c-b2f1-8cd059f58000" + }, + { + "routeId": "L31", + "platformId": "U308Z2", + "id": "2d89e813-2a28-4074-b082-4b1312ac52d7" + }, + { + "routeId": "L94", + "platformId": "U308Z2", + "id": "d63b8874-e3b1-4ab1-acab-bda1fdcab7c3" + }, + { + "routeId": "L622", + "platformId": "U3091Z1", + "id": "1833e8a0-72de-47d9-abcf-8bf8af2413b3" + }, + { + "routeId": "L622", + "platformId": "U3091Z2", + "id": "c83fe063-7487-4075-8725-da29464fac71" + }, + { + "routeId": "L622", + "platformId": "U3092Z1", + "id": "5d1ca454-db37-4363-ae83-c6feab0ed276" + }, + { + "routeId": "L622", + "platformId": "U3092Z2", + "id": "eb6e69bc-9cd7-42b2-b64d-027984c13c05" + }, + { + "routeId": "L300", + "platformId": "U3094Z1", + "id": "f912a33c-ef90-4951-84df-b2ee9e07b60a" + }, + { + "routeId": "L306", + "platformId": "U3094Z1", + "id": "e534d4ff-c38a-4310-a3cb-95a8a33d3d27" + }, + { + "routeId": "L322", + "platformId": "U3094Z1", + "id": "7d48e1bc-99da-45db-8f93-cbeb647535e7" + }, + { + "routeId": "L324", + "platformId": "U3094Z1", + "id": "85f8e390-73d8-482b-ada0-0d42e00870dd" + }, + { + "routeId": "L629", + "platformId": "U3094Z1", + "id": "ad86c77a-155c-46fc-954f-35fcc948a2e2" + }, + { + "routeId": "L399", + "platformId": "U3094Z1", + "id": "3c76f547-aa2f-4a6f-8de2-69db6edcd3b3" + }, + { + "routeId": "L626", + "platformId": "U3094Z1", + "id": "89afcd12-2fcb-47df-bb4d-7fdb3c2d3983" + }, + { + "routeId": "L616", + "platformId": "U3094Z1", + "id": "55186712-fec3-473d-9b4c-a700603382f2" + }, + { + "routeId": "L620", + "platformId": "U3094Z1", + "id": "4961ec78-e318-459a-bf7a-c978c5b9d63c" + }, + { + "routeId": "L630", + "platformId": "U3094Z1", + "id": "d3aeae50-1810-43cc-93cc-ec1cdf8d0592" + }, + { + "routeId": "L629", + "platformId": "U3094Z2", + "id": "ff2c7472-b292-443e-bf51-6b2c039aea1b" + }, + { + "routeId": "L300", + "platformId": "U3094Z2", + "id": "9fab020a-d4d0-46e4-9add-ca3772cd604f" + }, + { + "routeId": "L306", + "platformId": "U3094Z2", + "id": "2e93272c-67e6-4121-ad30-efcc78b863a5" + }, + { + "routeId": "L322", + "platformId": "U3094Z2", + "id": "4249b047-722b-4f2e-a356-7ed067681cc2" + }, + { + "routeId": "L324", + "platformId": "U3094Z2", + "id": "a4a11b3a-4fba-4f51-8b75-ef03146ddd04" + }, + { + "routeId": "L399", + "platformId": "U3094Z2", + "id": "a6c1da39-8474-45e3-8a27-fd2b220f87e9" + }, + { + "routeId": "L626", + "platformId": "U3094Z2", + "id": "92190f6a-417a-451d-b942-bddc69094700" + }, + { + "routeId": "L616", + "platformId": "U3094Z2", + "id": "266ab77f-4a32-4083-9487-cd82d6951b49" + }, + { + "routeId": "L620", + "platformId": "U3094Z2", + "id": "0aff2eb4-7037-4ac8-bfd0-69fa8514b90b" + }, + { + "routeId": "L630", + "platformId": "U3094Z2", + "id": "67890050-16db-463a-8a16-2d4a1f0c9a5f" + }, + { + "routeId": "L300", + "platformId": "U3095Z1", + "id": "f7705840-7497-45dc-acf8-26bd5897960b" + }, + { + "routeId": "L324", + "platformId": "U3095Z1", + "id": "fab7ff81-4a00-4c58-bdf0-55657a3ddc6e" + }, + { + "routeId": "L399", + "platformId": "U3095Z1", + "id": "8abbee90-593b-45f6-95e2-bd48b4506c2d" + }, + { + "routeId": "L618", + "platformId": "U3095Z1", + "id": "a621da86-49c2-4b3b-9c83-a9fb549f81da" + }, + { + "routeId": "L600", + "platformId": "U3095Z1", + "id": "1e93dd8d-58f5-4027-bf0f-d8089e262181" + }, + { + "routeId": "L619", + "platformId": "U3095Z1", + "id": "7d2cee22-078a-49d5-b8c6-2c7a75fb6450" + }, + { + "routeId": "L555", + "platformId": "U3095Z1", + "id": "b42c5435-cc9e-49fe-9fda-6f2716c181b8" + }, + { + "routeId": "L629", + "platformId": "U3095Z1", + "id": "9d1b8d02-6038-4af7-a1f9-0a0430b3dd4e" + }, + { + "routeId": "L300", + "platformId": "U3095Z2", + "id": "86b2fd54-319a-4985-b586-db71a0f45aba" + }, + { + "routeId": "L324", + "platformId": "U3095Z2", + "id": "e27bf026-8c1b-480b-8589-ab86da7fe663" + }, + { + "routeId": "L399", + "platformId": "U3095Z2", + "id": "cff8ac8d-8a55-409f-8094-153d8a25b408" + }, + { + "routeId": "L618", + "platformId": "U3095Z2", + "id": "570304a3-9458-4c2a-a5f6-7064a515a9ff" + }, + { + "routeId": "L600", + "platformId": "U3095Z2", + "id": "8c38a3b7-1e39-4ea8-a00d-f4915d7dae1e" + }, + { + "routeId": "L619", + "platformId": "U3095Z2", + "id": "809de0d7-b5e2-4d0f-803f-1bc3b2922632" + }, + { + "routeId": "L555", + "platformId": "U3095Z2", + "id": "7662da68-7bb1-429d-bd21-5405321cee60" + }, + { + "routeId": "L629", + "platformId": "U3095Z2", + "id": "0471ba40-dc85-40cc-a317-7cced1d968b3" + }, + { + "routeId": "L1245", + "platformId": "U3097Z301", + "id": "b757b380-3b34-449f-97af-8151b189c189" + }, + { + "routeId": "L1345", + "platformId": "U3097Z301", + "id": "860bf32d-f1ae-413f-83d3-8bf03e8b74cd" + }, + { + "routeId": "L1305", + "platformId": "U3097Z301", + "id": "c463ac09-3281-4f83-9757-b615aaa3290a" + }, + { + "routeId": "L154", + "platformId": "U309Z1", + "id": "a4372992-abf1-4f88-bb7a-d9bb2c7fab8e" + }, + { + "routeId": "L193", + "platformId": "U309Z1", + "id": "65639eca-92a5-42f3-a895-a5a7863b22b9" + }, + { + "routeId": "L901", + "platformId": "U309Z1", + "id": "865dbbeb-03da-42c5-b07e-88b93a668f8e" + }, + { + "routeId": "L203", + "platformId": "U309Z1", + "id": "b42e8502-4ee8-4edf-836c-2506a5e93798" + }, + { + "routeId": "L154", + "platformId": "U309Z2", + "id": "cccba425-8f55-4cce-bf42-d936eed6fa63" + }, + { + "routeId": "L193", + "platformId": "U309Z2", + "id": "303e4772-47dc-45f8-ad32-6c6e4a85fda6" + }, + { + "routeId": "L901", + "platformId": "U309Z2", + "id": "c2ab4d5a-7d1c-49e1-8576-0126c26967c1" + }, + { + "routeId": "L203", + "platformId": "U309Z2", + "id": "093ce008-bbab-4379-8406-213ed684a02f" + }, + { + "routeId": "L223", + "platformId": "U30Z1", + "id": "7ac199d5-ba3d-4afe-89f2-d44cc6d1ba8e" + }, + { + "routeId": "L204", + "platformId": "U30Z2", + "id": "c310ed66-1fb3-4da8-a92f-531a254cf5eb" + }, + { + "routeId": "L223", + "platformId": "U30Z2", + "id": "fcd3fad2-ae5a-4d26-be1c-6108ed3dd234" + }, + { + "routeId": "L224", + "platformId": "U30Z2", + "id": "983d9e99-bf13-467a-90ce-37a2d1b13ef8" + }, + { + "routeId": "L412", + "platformId": "U31000Z1", + "id": "3b28207f-8c50-4f81-a9c7-c0ae5e6621e9" + }, + { + "routeId": "L713", + "platformId": "U31000Z1", + "id": "4856ab34-81fa-4fc0-ba4a-926d251a756a" + }, + { + "routeId": "L412", + "platformId": "U31000Z2", + "id": "58f68394-6c5c-4520-9ec9-264578c40fad" + }, + { + "routeId": "L713", + "platformId": "U31000Z2", + "id": "8dc6e2bf-f087-41b4-ad39-14b985a9ba45" + }, + { + "routeId": "L412", + "platformId": "U31001Z1", + "id": "47d525d2-dcf2-460a-b761-ddccd11f4109" + }, + { + "routeId": "L412", + "platformId": "U31001Z2", + "id": "57b59540-eeee-4340-87c0-e1f395733a25" + }, + { + "routeId": "L412", + "platformId": "U31002Z1", + "id": "156448a7-2009-4653-b757-67bf18820e07" + }, + { + "routeId": "L412", + "platformId": "U31002Z2", + "id": "776452a0-bbca-4c7c-8397-052734dcc555" + }, + { + "routeId": "L412", + "platformId": "U31003Z1", + "id": "4e0af285-053b-44f8-a8ae-01243a4d228e" + }, + { + "routeId": "L412", + "platformId": "U31003Z2", + "id": "c72cfa47-b4d8-4547-98b1-533ea336aeba" + }, + { + "routeId": "L412", + "platformId": "U31004Z1", + "id": "efcde7d5-f748-4c21-a766-851342bb1aca" + }, + { + "routeId": "L412", + "platformId": "U31004Z2", + "id": "b42a6ff8-61f3-4db3-a319-49867bcbcc9a" + }, + { + "routeId": "L412", + "platformId": "U31005Z1", + "id": "a0cc8559-34c5-4268-b02b-b04cbe0fa9e2" + }, + { + "routeId": "L412", + "platformId": "U31005Z2", + "id": "fca3c934-1e94-463d-bab6-d0ef33946a60" + }, + { + "routeId": "L412", + "platformId": "U31006Z1", + "id": "fb4034f4-4577-485f-9d7a-6e1755deec59" + }, + { + "routeId": "L412", + "platformId": "U31006Z2", + "id": "1fb0880d-aa04-4412-aa77-72d3f95826bc" + }, + { + "routeId": "L412", + "platformId": "U31007Z1", + "id": "76944743-1b96-431e-a43a-00910da156fe" + }, + { + "routeId": "L412", + "platformId": "U31007Z2", + "id": "199610c6-485e-417b-9875-cd38434209e6" + }, + { + "routeId": "L412", + "platformId": "U31008Z1", + "id": "daccf0a3-4533-4746-8bc1-b057c6ce3799" + }, + { + "routeId": "L412", + "platformId": "U31008Z2", + "id": "9b997c94-89ed-4f22-b1af-8958cb948526" + }, + { + "routeId": "L412", + "platformId": "U31009Z1", + "id": "e6a6a2c1-433e-4745-be49-6972214712e4" + }, + { + "routeId": "L412", + "platformId": "U31009Z2", + "id": "055bd66a-6ec6-4ae6-a05b-ce63056830a9" + }, + { + "routeId": "L412", + "platformId": "U31010Z1", + "id": "9aa11b57-7594-4f87-b658-fce346cd6d2f" + }, + { + "routeId": "L412", + "platformId": "U31010Z2", + "id": "cc6b3c97-567a-4533-ac0b-a164e2aa175f" + }, + { + "routeId": "L412", + "platformId": "U31011Z1", + "id": "5de7845d-7be2-4b35-97ab-2082fbbbc8db" + }, + { + "routeId": "L412", + "platformId": "U31011Z2", + "id": "e2d22af5-0487-4f19-9028-fe43d5bdd41e" + }, + { + "routeId": "L412", + "platformId": "U31012Z1", + "id": "e2436189-da8b-4e81-8e2e-f4e3ca9a0def" + }, + { + "routeId": "L412", + "platformId": "U31012Z2", + "id": "67d0a20c-081f-40f9-bf46-ac58891d83b7" + }, + { + "routeId": "L412", + "platformId": "U31013Z12", + "id": "d5cfb35e-5605-4ecc-8062-6d038e7915ab" + }, + { + "routeId": "L412", + "platformId": "U31013Z7", + "id": "ccdfc8de-d67c-4ce9-9fab-3904cdc2f9c6" + }, + { + "routeId": "L730", + "platformId": "U31019Z5", + "id": "455f40f9-256d-45e5-bbe0-41a3556fb53d" + }, + { + "routeId": "L730", + "platformId": "U31019Z7", + "id": "a85664e1-0e6e-4db5-af9c-23a923a84bcc" + }, + { + "routeId": "L730", + "platformId": "U31020Z1", + "id": "495569bb-33ae-49ce-a5b0-d9a3c2f42b68" + }, + { + "routeId": "L410", + "platformId": "U31041Z2", + "id": "413688cb-468e-4117-ade3-9efaf8a5c7ab" + }, + { + "routeId": "L1222", + "platformId": "U31044Z301", + "id": "6221daea-0bb8-446a-879a-ce6b52ce7d16" + }, + { + "routeId": "L1034", + "platformId": "U31044Z301", + "id": "11bfcf36-7802-49cb-b860-f2abcea392a0" + }, + { + "routeId": "L400", + "platformId": "U31046Z3", + "id": "a54ae928-0ae5-4e02-a8cf-f2d8f9b68f5f" + }, + { + "routeId": "L410", + "platformId": "U31046Z3", + "id": "d9f924a3-7923-46be-a82d-393b583b8699" + }, + { + "routeId": "L400", + "platformId": "U31047Z1", + "id": "c59b4ef1-4190-4a1d-9119-67ae57795cb9" + }, + { + "routeId": "L410", + "platformId": "U31047Z1", + "id": "c625d33b-18a9-40d4-be39-24d3d4ef6040" + }, + { + "routeId": "L400", + "platformId": "U31047Z2", + "id": "82ced862-ebb7-46df-9b0f-7d6ce08b629a" + }, + { + "routeId": "L410", + "platformId": "U31047Z2", + "id": "a34263ff-1330-4d04-900c-c358e743dcbb" + }, + { + "routeId": "L400", + "platformId": "U31048Z1", + "id": "b264ea00-ae99-4723-aa00-e7e41edc6acb" + }, + { + "routeId": "L410", + "platformId": "U31048Z1", + "id": "663475dd-da0d-4f2a-b9ec-889952ae81c8" + }, + { + "routeId": "L400", + "platformId": "U31048Z2", + "id": "83b047e7-cdde-4131-97dd-3885985aa778" + }, + { + "routeId": "L410", + "platformId": "U31048Z2", + "id": "1413e294-14f5-47ed-97df-356b0e6e1513" + }, + { + "routeId": "L427", + "platformId": "U31050Z3", + "id": "857363f2-a3f2-43ef-ada8-142b19596df4" + }, + { + "routeId": "L410", + "platformId": "U31050Z5", + "id": "834b2797-4c14-44e3-8a4f-76e9104fa7bb" + }, + { + "routeId": "L410", + "platformId": "U31050Z6", + "id": "f85b1b4f-aa24-4ee2-8b1b-ac15056518a3" + }, + { + "routeId": "L545", + "platformId": "U31051Z1", + "id": "386612a9-b564-4e95-bc4c-bcebfbf4ebfc" + }, + { + "routeId": "L545", + "platformId": "U31051Z2", + "id": "355f7355-522a-4656-86fc-de6321bbbcb8" + }, + { + "routeId": "L545", + "platformId": "U31052Z1", + "id": "7a4eefb2-4f55-4476-816f-f64c46c8146b" + }, + { + "routeId": "L546", + "platformId": "U31052Z1", + "id": "cebcf7b8-f97b-46ed-bf51-666425064d83" + }, + { + "routeId": "L545", + "platformId": "U31052Z2", + "id": "c656c543-b4b0-48a3-a8dc-c90db416c631" + }, + { + "routeId": "L546", + "platformId": "U31052Z2", + "id": "2ae14ca3-f02c-402e-9fc8-8df4db5606eb" + }, + { + "routeId": "L400", + "platformId": "U31056Z1", + "id": "e1e2ac64-8f48-48b3-8628-2a389a12020b" + }, + { + "routeId": "L410", + "platformId": "U31056Z1", + "id": "6fd5e6e0-a30d-4b77-a729-5abc428a0bd3" + }, + { + "routeId": "L400", + "platformId": "U31056Z2", + "id": "0b2d826f-0906-4541-b5ab-0d744639e774" + }, + { + "routeId": "L410", + "platformId": "U31056Z2", + "id": "2fca5825-8d1b-4eb3-8810-8de20cfa8d73" + }, + { + "routeId": "L345", + "platformId": "U31057Z1", + "id": "205ee84b-9bcb-4872-8b61-7b9cbf19b4ab" + }, + { + "routeId": "L3360", + "platformId": "U31057Z1", + "id": "321fc92f-1085-4c8d-8691-e78446d0ed6e" + }, + { + "routeId": "L720", + "platformId": "U31057Z1", + "id": "1d9902f0-81bc-4324-a073-7a194a4fe014" + }, + { + "routeId": "L345", + "platformId": "U31057Z2", + "id": "9a7150dd-2fbb-4b01-b315-28b2bf5f023a" + }, + { + "routeId": "L345", + "platformId": "U31058Z1", + "id": "3916571a-1a34-474e-a4c1-681d2d3f0444" + }, + { + "routeId": "L345", + "platformId": "U31058Z2", + "id": "831498ca-7b0a-4794-9d66-2d2979302e27" + }, + { + "routeId": "L3360", + "platformId": "U31058Z2", + "id": "0d71df74-da8e-4496-b59a-787084fc01bf" + }, + { + "routeId": "L345", + "platformId": "U31059Z1", + "id": "06e7adda-a247-428b-a0e1-ec59056755e3" + }, + { + "routeId": "L345", + "platformId": "U31060Z1", + "id": "5c70d61b-8618-48cb-81be-d0ba824fa3de" + }, + { + "routeId": "L345", + "platformId": "U31061Z2", + "id": "cb378bca-f2e5-45c9-b63c-dc78bf71dff6" + }, + { + "routeId": "L3360", + "platformId": "U31061Z2", + "id": "3e4be6f8-a164-491c-b565-e8d08531cc0a" + }, + { + "routeId": "L345", + "platformId": "U31062Z1", + "id": "677ef3d3-78f9-4879-a7b2-09a9da976646" + }, + { + "routeId": "L3360", + "platformId": "U31062Z1", + "id": "ff7f10e8-1252-4f2e-8a48-11b6d519854a" + }, + { + "routeId": "L345", + "platformId": "U31063Z1", + "id": "b3bcc5cb-ee01-4ff6-96c4-dab58367a73e" + }, + { + "routeId": "L3360", + "platformId": "U31063Z1", + "id": "6da32350-2032-4146-b7c9-3864c7187959" + }, + { + "routeId": "L345", + "platformId": "U31063Z2", + "id": "78f042b1-d224-4e02-9a3e-effc6eb547dd" + }, + { + "routeId": "L3360", + "platformId": "U31063Z2", + "id": "602ac91f-8574-4edc-b560-1561f3b1beb3" + }, + { + "routeId": "L3360", + "platformId": "U31064Z1", + "id": "6ad3699c-e5ed-424b-89b1-2500c2b56117" + }, + { + "routeId": "L3360", + "platformId": "U31064Z2", + "id": "3d347834-359e-4a3c-8d66-df1e65047cdb" + }, + { + "routeId": "L345", + "platformId": "U31065Z1", + "id": "b3ea781a-a3e2-4652-9922-ca57adc624bb" + }, + { + "routeId": "L3360", + "platformId": "U31065Z1", + "id": "f4dac11a-40f6-4f2c-a08e-b46bf8ef1a27" + }, + { + "routeId": "L345", + "platformId": "U31065Z2", + "id": "5897ba74-5445-4d0c-8765-1f0d553ed924" + }, + { + "routeId": "L3360", + "platformId": "U31065Z2", + "id": "d3dc81b8-15ab-4323-bab8-0c22773e5b0f" + }, + { + "routeId": "L345", + "platformId": "U31066Z1", + "id": "89a6c691-13b1-4559-b29e-d2ab80422eb3" + }, + { + "routeId": "L345", + "platformId": "U31067Z1", + "id": "07184846-f0b8-4569-a6c1-a43be8532243" + }, + { + "routeId": "L3360", + "platformId": "U31067Z1", + "id": "5c23edaf-9cc7-47bb-a261-786b1e78b20e" + }, + { + "routeId": "L3360", + "platformId": "U31067Z2", + "id": "2efd8ab1-46b7-4e2f-876e-027ba45af911" + }, + { + "routeId": "L3360", + "platformId": "U31068Z1", + "id": "6e1282a9-e1f5-4f61-922d-35021b028415" + }, + { + "routeId": "L345", + "platformId": "U31069Z12", + "id": "660dbd72-12b1-40e5-a656-a026c4d3bd41" + }, + { + "routeId": "L3360", + "platformId": "U31069Z12", + "id": "0d0f1840-853a-4b42-8cd9-dadf95dc0460" + }, + { + "routeId": "L3360", + "platformId": "U31069Z14", + "id": "c95bf86e-ee25-4578-bdde-aa89ef7a2b06" + }, + { + "routeId": "L345", + "platformId": "U31070Z20", + "id": "47d5153a-ca27-4dea-9647-889ef9d9cea0" + }, + { + "routeId": "L3360", + "platformId": "U31070Z20", + "id": "03fd3032-8e83-45f5-a443-b11a14ace429" + }, + { + "routeId": "L720", + "platformId": "U31081Z1", + "id": "bee5e6b4-96ec-43b5-8003-f2e99d9202e0" + }, + { + "routeId": "L720", + "platformId": "U31081Z2", + "id": "37581cb0-7f54-4d67-afa2-02a9feec55a6" + }, + { + "routeId": "L720", + "platformId": "U31082Z1", + "id": "134acab7-a5f3-453f-ac70-ae74d7987ff8" + }, + { + "routeId": "L720", + "platformId": "U31082Z2", + "id": "a5b1400f-5d65-49b9-ac52-8515725fc537" + }, + { + "routeId": "L720", + "platformId": "U31084Z1", + "id": "2e631ab7-7880-4f5d-adc8-fc961807779b" + }, + { + "routeId": "L720", + "platformId": "U31084Z2", + "id": "d68ef24b-c5e3-44be-ae5b-fdcfe39ce874" + }, + { + "routeId": "L720", + "platformId": "U31085Z1", + "id": "3a6fd2cb-d765-473a-8318-dcc0315fa84c" + }, + { + "routeId": "L720", + "platformId": "U31085Z2", + "id": "6e8f6523-965a-45d9-bded-c48a864d5e5c" + }, + { + "routeId": "L730", + "platformId": "U31088Z1", + "id": "b9945b31-522f-495c-88d5-895d678d267d" + }, + { + "routeId": "L730", + "platformId": "U31091Z1", + "id": "63721186-4376-401e-986c-91815b0efcd3" + }, + { + "routeId": "L730", + "platformId": "U31091Z2", + "id": "03ce520d-c0a0-4528-a605-b6048fcd44b2" + }, + { + "routeId": "L3360", + "platformId": "U31096Z2", + "id": "2f3d6eef-db83-47fc-9cbf-4e19fefac5f4" + }, + { + "routeId": "L229", + "platformId": "U310Z1", + "id": "5994f8b5-0e18-4edc-b126-dd3b8fa54d65" + }, + { + "routeId": "L908", + "platformId": "U310Z1", + "id": "f98ffdd8-1018-45ea-8e2f-1eba0311ea7b" + }, + { + "routeId": "L204", + "platformId": "U310Z1", + "id": "219ccf4f-877b-4046-9bb1-229a729cbd79" + }, + { + "routeId": "L903", + "platformId": "U310Z1", + "id": "98cc1c5e-fc87-4d0c-8344-a0d5452f0492" + }, + { + "routeId": "L366", + "platformId": "U310Z1", + "id": "0197d101-316f-4933-ae83-1d4d49a172f7" + }, + { + "routeId": "L364", + "platformId": "U310Z1", + "id": "c28a0dc1-9c90-43e4-8d24-5a05a2814577" + }, + { + "routeId": "L229", + "platformId": "U310Z2", + "id": "91a0e690-ec65-4fba-af81-ef7668f0e24e" + }, + { + "routeId": "L908", + "platformId": "U310Z2", + "id": "7a3f9ae4-0c7b-4bd6-9efe-e038b4ac8b4e" + }, + { + "routeId": "L204", + "platformId": "U310Z2", + "id": "bde7036a-2a7f-44c0-b951-ad75f8914601" + }, + { + "routeId": "L903", + "platformId": "U310Z2", + "id": "fa9e6f7d-7b39-4931-a54a-e9a9f652c348" + }, + { + "routeId": "L366", + "platformId": "U310Z2", + "id": "65d22ded-c1d5-42fa-9a1d-42f2d352376d" + }, + { + "routeId": "L364", + "platformId": "U310Z2", + "id": "71a1d0b4-e5c4-4c74-bc39-20edf14cb345" + }, + { + "routeId": "L722", + "platformId": "U31100Z1", + "id": "d67edade-44a2-463f-be04-383a340df4f1" + }, + { + "routeId": "L722", + "platformId": "U31100Z2", + "id": "ae4b3d05-f889-487a-bd75-7f3813121181" + }, + { + "routeId": "L722", + "platformId": "U31101Z1", + "id": "66b0da50-2051-48a2-8f4c-115ec4f8179b" + }, + { + "routeId": "L722", + "platformId": "U31101Z2", + "id": "cec3127d-63d9-4d2d-88b5-aab496e3c8b2" + }, + { + "routeId": "L722", + "platformId": "U31102Z1", + "id": "3eeab35d-73f0-4591-9c60-4d60a26e4955" + }, + { + "routeId": "L722", + "platformId": "U31102Z2", + "id": "3b50a92d-5614-41be-9ddb-bcc7c045aad3" + }, + { + "routeId": "L427", + "platformId": "U31110Z1", + "id": "b502eeb1-4af8-446c-b5c2-bb9d3d86c7c4" + }, + { + "routeId": "L427", + "platformId": "U31112Z1", + "id": "037ed570-3018-482f-8ad3-464e9b30d88a" + }, + { + "routeId": "L427", + "platformId": "U31112Z2", + "id": "40434cee-c6a6-4670-88be-86066abcfc5f" + }, + { + "routeId": "L533", + "platformId": "U31124Z1", + "id": "91563f87-e44a-4eec-af7f-8263ea7272c4" + }, + { + "routeId": "L533", + "platformId": "U31124Z2", + "id": "2506ce07-37f5-4e32-8c0e-92c679a3b3bc" + }, + { + "routeId": "L533", + "platformId": "U31126Z1", + "id": "3203d10a-6bd9-4381-9364-32c73a684767" + }, + { + "routeId": "L533", + "platformId": "U31126Z2", + "id": "d5be673d-5dca-4026-9aac-e28f5c508a90" + }, + { + "routeId": "L533", + "platformId": "U31127Z1", + "id": "e39e28fc-d14a-42ea-b442-597343ffc172" + }, + { + "routeId": "L533", + "platformId": "U31127Z2", + "id": "299dcf95-0bd0-4609-bdce-fa47cb967620" + }, + { + "routeId": "L533", + "platformId": "U31128Z1", + "id": "76909329-19d6-4b9d-88b4-bebaf66c3684" + }, + { + "routeId": "L533", + "platformId": "U31128Z2", + "id": "c55fa509-5f4f-45fc-954d-ca0baa12aed9" + }, + { + "routeId": "L533", + "platformId": "U31129Z1", + "id": "35466ab4-15cb-4eb1-98f3-3d51c7f178b5" + }, + { + "routeId": "L533", + "platformId": "U31129Z2", + "id": "4c1d18c8-6c42-47cc-8fd7-ac3107baae01" + }, + { + "routeId": "L723", + "platformId": "U31131Z1", + "id": "769a6f73-18a0-4082-bd35-822af17cac79" + }, + { + "routeId": "L723", + "platformId": "U31131Z2", + "id": "f06be9aa-467c-40a0-b82a-5955b4626954" + }, + { + "routeId": "L724", + "platformId": "U31131Z5", + "id": "be0e054d-c4e3-4f41-aa8a-894f9c02e925" + }, + { + "routeId": "L724", + "platformId": "U31131Z6", + "id": "d158aec8-0eb3-4387-8bc7-59024d6f0710" + }, + { + "routeId": "L723", + "platformId": "U31132Z1", + "id": "0c904af4-23bf-499e-81e0-10540f732ab2" + }, + { + "routeId": "L723", + "platformId": "U31132Z2", + "id": "1ce8c1af-2800-4020-b99e-8389c22e226f" + }, + { + "routeId": "L723", + "platformId": "U31134Z1", + "id": "bcbcad67-2c80-4ed3-a212-b1e36cd74cc2" + }, + { + "routeId": "L723", + "platformId": "U31134Z2", + "id": "a3644d61-eea1-4334-a1fa-30a3a1adce4e" + }, + { + "routeId": "L723", + "platformId": "U31135Z1", + "id": "cb5f94ae-c46e-43f4-aa3a-31a92292fe08" + }, + { + "routeId": "L723", + "platformId": "U31135Z2", + "id": "69b6b2b2-5ed1-4ae5-9605-fb854978637d" + }, + { + "routeId": "L723", + "platformId": "U31136Z1", + "id": "8c14aedc-30c0-4d2d-a4d8-fe7b86463b61" + }, + { + "routeId": "L724", + "platformId": "U31136Z1", + "id": "414b53de-25f7-451e-9b74-92189c609aa3" + }, + { + "routeId": "L723", + "platformId": "U31136Z2", + "id": "a0d6d3c7-0491-4420-b7c2-5cfa556a716a" + }, + { + "routeId": "L724", + "platformId": "U31136Z2", + "id": "49dcf334-943b-4a3b-b5e1-fd3b05b58b96" + }, + { + "routeId": "L723", + "platformId": "U31137Z1", + "id": "e261ae9a-5f4d-48e5-9317-117e70c86eeb" + }, + { + "routeId": "L724", + "platformId": "U31137Z1", + "id": "5081480c-a35f-4a04-ae9f-d572d406b9d8" + }, + { + "routeId": "L724", + "platformId": "U31139Z1", + "id": "1038b69d-c657-49ce-b148-cebb5e4c83f6" + }, + { + "routeId": "L724", + "platformId": "U31139Z2", + "id": "5131b5fa-32d6-4426-9b5c-41b9761308c4" + }, + { + "routeId": "L724", + "platformId": "U31140Z1", + "id": "22952081-384e-4921-b417-ecd5d32a1013" + }, + { + "routeId": "L724", + "platformId": "U31140Z2", + "id": "51cdaa1a-ef92-40cb-ba18-408180bc66d8" + }, + { + "routeId": "L724", + "platformId": "U31141Z1", + "id": "b0575ec1-706b-44b2-b3d7-2acd0878ff87" + }, + { + "routeId": "L724", + "platformId": "U31141Z2", + "id": "fa411d65-30bd-4ff4-b817-6413b5ffe6bd" + }, + { + "routeId": "L725", + "platformId": "U31142Z2", + "id": "0c6b8aa9-c498-42b7-9d2c-bffdafe30627" + }, + { + "routeId": "L725", + "platformId": "U31143Z2", + "id": "ff37b7ec-2ccc-4e4e-b703-14e86289496d" + }, + { + "routeId": "L725", + "platformId": "U31150Z1", + "id": "9209fcc3-f739-4961-838c-dcdcafb19b80" + }, + { + "routeId": "L725", + "platformId": "U31151Z1", + "id": "cabc6ff6-13ec-4971-8031-a5458759ccdd" + }, + { + "routeId": "L725", + "platformId": "U31152Z1", + "id": "29c53ce7-5b11-4cc7-bffd-f36485373177" + }, + { + "routeId": "L723", + "platformId": "U31161Z1", + "id": "090f675f-961c-4298-9fff-d8a0f6ba420a" + }, + { + "routeId": "L724", + "platformId": "U31161Z1", + "id": "a765c12b-8320-402d-810b-ab2983c85329" + }, + { + "routeId": "L723", + "platformId": "U31161Z2", + "id": "e2c24ee6-c56b-473f-9b08-496c16784859" + }, + { + "routeId": "L724", + "platformId": "U31161Z2", + "id": "b430510b-6361-4e36-91ae-44ff3eeb4a34" + }, + { + "routeId": "L723", + "platformId": "U31162Z1", + "id": "8f7a3eea-0396-4a8f-8ad7-a4e26ba91610" + }, + { + "routeId": "L723", + "platformId": "U31162Z2", + "id": "0fdbaf1a-b848-45da-92f6-76a1507880d0" + }, + { + "routeId": "L723", + "platformId": "U31163Z1", + "id": "d5f88cb5-81a1-4972-b3e6-78dcd4dc071c" + }, + { + "routeId": "L723", + "platformId": "U31163Z2", + "id": "3561700e-da67-4bc7-805f-ccf29892f907" + }, + { + "routeId": "L723", + "platformId": "U31164Z1", + "id": "6f25544e-1ed9-46ae-97bd-9c5d4f9d862f" + }, + { + "routeId": "L723", + "platformId": "U31164Z2", + "id": "13d0000d-ae6d-4586-8c24-50ae383d06ad" + }, + { + "routeId": "L722", + "platformId": "U31166Z1", + "id": "a7a097bd-561b-41f8-a7f4-786886ba64d4" + }, + { + "routeId": "L722", + "platformId": "U31166Z2", + "id": "31954b3e-105f-4e5d-8d66-b7ee5c7d7520" + }, + { + "routeId": "L722", + "platformId": "U31167Z1", + "id": "1926e0f2-280e-4cb1-9e66-b0253e8afaf4" + }, + { + "routeId": "L722", + "platformId": "U31168Z1", + "id": "99e9bb11-e816-4498-a785-c9f542758046" + }, + { + "routeId": "L722", + "platformId": "U31168Z2", + "id": "883e6306-b0cf-4736-a74d-19fd66d6c00a" + }, + { + "routeId": "L722", + "platformId": "U31169Z1", + "id": "5fce0cfa-e005-4476-bc71-5ced695e342f" + }, + { + "routeId": "L722", + "platformId": "U31169Z2", + "id": "2a75117d-619b-4b6b-8ee1-9aee181b3928" + }, + { + "routeId": "L722", + "platformId": "U31170Z1", + "id": "714d326e-0bcc-47d9-b07b-eb1af8fc5e2c" + }, + { + "routeId": "L722", + "platformId": "U31170Z2", + "id": "1ba4af9b-4874-499e-a4e9-df85d2f306ca" + }, + { + "routeId": "L722", + "platformId": "U31171Z1", + "id": "00842269-7afc-4e4f-a20d-b70931ad5d9e" + }, + { + "routeId": "L722", + "platformId": "U31171Z2", + "id": "8184b86a-015b-4c88-b1a5-db655b365867" + }, + { + "routeId": "L722", + "platformId": "U31172Z1", + "id": "cdf25030-99ae-4f3a-a30d-4beba918dba5" + }, + { + "routeId": "L722", + "platformId": "U31172Z2", + "id": "0b5382fa-4c33-4a2b-8343-87adac5ba937" + }, + { + "routeId": "L722", + "platformId": "U31173Z1", + "id": "56266d22-106a-430a-aa07-4a462a5a1240" + }, + { + "routeId": "L722", + "platformId": "U31173Z2", + "id": "c5c529be-27a4-431e-bf54-4773f54ad3f2" + }, + { + "routeId": "L722", + "platformId": "U31174Z1", + "id": "e12dbcb4-c79b-434d-b163-0946bed43fd1" + }, + { + "routeId": "L722", + "platformId": "U31174Z2", + "id": "8294cbac-d4b9-4f86-92a4-b44f92feae4b" + }, + { + "routeId": "L722", + "platformId": "U31175Z1", + "id": "64d6bb4d-996b-439a-b2bd-08628ce5bf8e" + }, + { + "routeId": "L720", + "platformId": "U31180Z1", + "id": "da769474-5ad4-4f74-bbec-1acb02c15807" + }, + { + "routeId": "L720", + "platformId": "U31180Z2", + "id": "35cea674-84e3-47aa-a6c4-3069d67feaee" + }, + { + "routeId": "L700", + "platformId": "U31181Z1", + "id": "eea95a5a-88ef-4000-879b-6f304b5c61b8" + }, + { + "routeId": "L720", + "platformId": "U31181Z1", + "id": "3dca211e-9778-4abc-bd43-5d0ef6de50ae" + }, + { + "routeId": "L700", + "platformId": "U31181Z2", + "id": "53562c2e-5904-4312-803e-d99a1ff9da34" + }, + { + "routeId": "L720", + "platformId": "U31181Z2", + "id": "f25d3e6b-3cf3-4362-a9a3-0bc62ce4dfbb" + }, + { + "routeId": "L720", + "platformId": "U31183Z1", + "id": "523e12b8-f1b4-4229-99a6-0d939840ee3f" + }, + { + "routeId": "L720", + "platformId": "U31183Z2", + "id": "9c48d293-efdd-4870-bfeb-7a5a4f2a9161" + }, + { + "routeId": "L700", + "platformId": "U31184Z1", + "id": "ddd15abb-46ee-40a5-ad2f-1f3c0d6e5eba" + }, + { + "routeId": "L720", + "platformId": "U31184Z1", + "id": "92742f47-e3a6-445a-9473-40fce06ea0bb" + }, + { + "routeId": "L720", + "platformId": "U31184Z2", + "id": "97f419c7-43e9-4dc3-8305-dde11edfe829" + }, + { + "routeId": "L700", + "platformId": "U31184Z2", + "id": "a03ff18a-6a6b-4e00-9736-4f31f58576ce" + }, + { + "routeId": "L720", + "platformId": "U31185Z1", + "id": "446a0f2f-3f8b-4670-91db-3dd2ff81ec44" + }, + { + "routeId": "L720", + "platformId": "U31185Z2", + "id": "3dcfc33f-3a12-4f72-8872-adda919a544b" + }, + { + "routeId": "L720", + "platformId": "U31186Z1", + "id": "6be9abbf-df29-4bec-846f-04a7a4f8dc09" + }, + { + "routeId": "L700", + "platformId": "U31186Z2", + "id": "15f09f3e-324d-4689-8b44-c6a0b272ae37" + }, + { + "routeId": "L700", + "platformId": "U31186Z3", + "id": "25ebe479-48e7-4e2a-8c9f-ac10f9e3994a" + }, + { + "routeId": "L720", + "platformId": "U31186Z3", + "id": "57fd43d6-3b5a-4506-a00e-1d66ddc77b8f" + }, + { + "routeId": "L720", + "platformId": "U31187Z1", + "id": "f516d2e0-75ae-43f1-8c0d-24fa0b15c84d" + }, + { + "routeId": "L720", + "platformId": "U31187Z2", + "id": "d2af4006-a3f6-4e08-83e7-d71623b4a33c" + }, + { + "routeId": "L720", + "platformId": "U31188Z1", + "id": "eb184558-b3e0-47a5-a784-b1c4ca25b483" + }, + { + "routeId": "L720", + "platformId": "U31188Z2", + "id": "019870f8-ab1d-4e85-baf4-4d5a030cdf2c" + }, + { + "routeId": "L720", + "platformId": "U31189Z1", + "id": "2e02e731-20f7-4d37-b58e-f862ed4229e3" + }, + { + "routeId": "L720", + "platformId": "U31189Z2", + "id": "937a6d9a-e922-4e1f-8d7e-035c36a970ad" + }, + { + "routeId": "L720", + "platformId": "U31190Z2", + "id": "1c99e61b-f926-40f9-8ccd-930d3f0b77f2" + }, + { + "routeId": "L730", + "platformId": "U31190Z5", + "id": "060811fb-5257-4470-b96a-b441dc778f45" + }, + { + "routeId": "L720", + "platformId": "U31192Z1", + "id": "5d09999e-feb3-477c-ad2a-a15052760f22" + }, + { + "routeId": "L720", + "platformId": "U31192Z2", + "id": "39da92c4-be88-4fec-af4c-2d49da790246" + }, + { + "routeId": "L720", + "platformId": "U31193Z1", + "id": "8d6e940a-c342-4181-b379-7bd438e9c9e2" + }, + { + "routeId": "L720", + "platformId": "U31193Z2", + "id": "abb5c908-9b7b-4367-a585-d9d20a23aa34" + }, + { + "routeId": "L720", + "platformId": "U31194Z1", + "id": "203aa0ed-6bf4-4a1c-9db5-f7d03df81704" + }, + { + "routeId": "L720", + "platformId": "U31194Z2", + "id": "95ab5599-ba38-4a85-8aa3-dff5e37fb834" + }, + { + "routeId": "L720", + "platformId": "U31195Z1", + "id": "6979de8e-b97d-43b4-ac7f-cadf58f568e2" + }, + { + "routeId": "L720", + "platformId": "U31195Z2", + "id": "1f013570-c328-4f1a-9a47-0b9f9e481bc5" + }, + { + "routeId": "L720", + "platformId": "U31196Z1", + "id": "0b20986c-be08-4e95-b185-ffb65148c4c8" + }, + { + "routeId": "L720", + "platformId": "U31196Z2", + "id": "dbb3c4d4-7755-473e-a0e7-15c45c6969a0" + }, + { + "routeId": "L720", + "platformId": "U31197Z1", + "id": "49f5d722-4459-4818-80ed-e8ef93726006" + }, + { + "routeId": "L720", + "platformId": "U31197Z2", + "id": "0be49033-41bc-45c7-b55a-858684d0b1df" + }, + { + "routeId": "L720", + "platformId": "U31198Z1", + "id": "edaf3a5e-6675-404e-91c3-178f4a662e72" + }, + { + "routeId": "L720", + "platformId": "U31198Z2", + "id": "9df6b502-4c07-4ef2-947e-7a80290ef62b" + }, + { + "routeId": "L720", + "platformId": "U31199Z1", + "id": "cb350192-14a2-47f8-bd08-1296c1658876" + }, + { + "routeId": "L720", + "platformId": "U31199Z2", + "id": "778f30d6-1f8d-4ef8-ac28-14ad34604cc5" + }, + { + "routeId": "L111", + "platformId": "U311Z1", + "id": "baffc8ae-f4a8-4de2-a677-3e53371cf85c" + }, + { + "routeId": "L329", + "platformId": "U311Z1", + "id": "373e03c3-9249-4cfe-8bcf-c28f0b515147" + }, + { + "routeId": "L111", + "platformId": "U311Z2", + "id": "a0628b32-d3f4-4ee3-bef6-8d7fa8af7c94" + }, + { + "routeId": "L329", + "platformId": "U311Z2", + "id": "a4e1f6e1-13f4-4098-805a-0d603dd682c8" + }, + { + "routeId": "L720", + "platformId": "U31200Z1", + "id": "0326fc43-50f3-4292-ae54-740da979dbd6" + }, + { + "routeId": "L720", + "platformId": "U31200Z2", + "id": "aaf14003-9f5e-4aa2-a5ab-4ff03a090069" + }, + { + "routeId": "L720", + "platformId": "U31201Z1", + "id": "7b3b6d52-120e-4ff5-b0fa-241e398fb555" + }, + { + "routeId": "L720", + "platformId": "U31201Z2", + "id": "c9db5eaa-590f-4a4f-8f2d-ec3ced8ac2af" + }, + { + "routeId": "L720", + "platformId": "U31202Z1", + "id": "7b0c07bb-7111-41cb-9411-f853fee1c9a8" + }, + { + "routeId": "L720", + "platformId": "U31202Z2", + "id": "2addcc2b-8728-419f-b65d-fd4f1fc32f9a" + }, + { + "routeId": "L720", + "platformId": "U31205Z2", + "id": "acabed66-d363-4aaf-9d0b-ffc0a3fe6d5b" + }, + { + "routeId": "L720", + "platformId": "U31205Z3", + "id": "c86a3582-c3ab-4b36-8c0c-456a4d02e21e" + }, + { + "routeId": "L720", + "platformId": "U31207Z1", + "id": "c202de61-2d04-405c-9280-30d299b4cb20" + }, + { + "routeId": "L720", + "platformId": "U31207Z2", + "id": "cae01c05-8a41-4fc1-8add-12a813df6ab8" + }, + { + "routeId": "L720", + "platformId": "U31210Z1", + "id": "5eb1cc9e-558a-4d58-b58b-ee885489e782" + }, + { + "routeId": "L720", + "platformId": "U31210Z2", + "id": "09f63bae-f475-46b9-8719-4c3d40fda68d" + }, + { + "routeId": "L700", + "platformId": "U31212Z1", + "id": "5fa4a3cf-3632-4345-a052-886c436cef3e" + }, + { + "routeId": "L700", + "platformId": "U31212Z2", + "id": "f2ca56c6-e02e-4070-b504-bfa0b5ab4fea" + }, + { + "routeId": "L700", + "platformId": "U31213Z1", + "id": "b38457ac-fd9b-4f9e-b42e-657fe0ddd5be" + }, + { + "routeId": "L700", + "platformId": "U31213Z2", + "id": "63e0985f-fdd5-467c-ac41-f5524c435ba1" + }, + { + "routeId": "L700", + "platformId": "U31214Z1", + "id": "725bb401-c962-422b-902c-d75ed7a6b78b" + }, + { + "routeId": "L700", + "platformId": "U31214Z2", + "id": "f2861557-ed02-46ed-a655-7e54bf97079c" + }, + { + "routeId": "L700", + "platformId": "U31215Z1", + "id": "545428f5-8f35-4d47-8492-5177c1b3e5d3" + }, + { + "routeId": "L700", + "platformId": "U31215Z2", + "id": "b9468d7f-130a-4adc-96b8-ef882db6921e" + }, + { + "routeId": "L700", + "platformId": "U31216Z2", + "id": "87960f28-5cbc-4dab-83ae-5b26e40efcf8" + }, + { + "routeId": "L730", + "platformId": "U31219Z1", + "id": "4a7a886b-e127-4439-972d-40da461964c2" + }, + { + "routeId": "L730", + "platformId": "U31219Z2", + "id": "ae358d69-b32e-4931-aa78-790cf9541689" + }, + { + "routeId": "L730", + "platformId": "U31221Z1", + "id": "03a70f89-cffc-419a-8dad-d5e0c41e74d3" + }, + { + "routeId": "L730", + "platformId": "U31221Z2", + "id": "6484ec08-31af-4742-b336-dce9b942b0cd" + }, + { + "routeId": "L730", + "platformId": "U31223Z1", + "id": "cba62ec1-cdc1-4757-900e-2d70b6a3b7f0" + }, + { + "routeId": "L730", + "platformId": "U31223Z2", + "id": "04bd3ced-6a39-4e0d-91ff-ad27b069d5a2" + }, + { + "routeId": "L730", + "platformId": "U31224Z1", + "id": "8a1b2fd3-8886-4fdb-8896-8eda2beb5cc6" + }, + { + "routeId": "L730", + "platformId": "U31224Z2", + "id": "a0b10f07-51c6-474c-8bc7-95953a08bf1b" + }, + { + "routeId": "L730", + "platformId": "U31225Z1", + "id": "cd767fcf-67de-42b6-bfde-b7187ebb3acf" + }, + { + "routeId": "L730", + "platformId": "U31225Z2", + "id": "25eaefe6-063d-4c20-9530-348a6ee6907f" + }, + { + "routeId": "L730", + "platformId": "U31227Z1", + "id": "9f76b328-b552-4353-ad2b-a21957f71730" + }, + { + "routeId": "L730", + "platformId": "U31227Z2", + "id": "11fcbe50-cd2f-4d5e-ba78-e73d71c91d00" + }, + { + "routeId": "L730", + "platformId": "U31228Z1", + "id": "e0afb16a-f863-461b-8363-38b6fa45a1a5" + }, + { + "routeId": "L730", + "platformId": "U31228Z2", + "id": "7b417981-1225-42fd-ad0f-7aa047f170c5" + }, + { + "routeId": "L730", + "platformId": "U31245Z1", + "id": "221001c5-f25e-4d1f-81f9-0974b8cc267f" + }, + { + "routeId": "L730", + "platformId": "U31245Z2", + "id": "0298da51-0b26-4c6b-a9cd-f87a56e09092" + }, + { + "routeId": "L730", + "platformId": "U31246Z1", + "id": "0533b934-f6f8-4b86-b5c7-58c4ec707dd3" + }, + { + "routeId": "L730", + "platformId": "U31246Z2", + "id": "fa04484a-8f56-4f25-8548-65d6052255cc" + }, + { + "routeId": "L730", + "platformId": "U31247Z1", + "id": "aa82e5fe-cf5c-4ebd-843c-014a48831b52" + }, + { + "routeId": "L730", + "platformId": "U31247Z2", + "id": "2716fcd9-68fd-417e-b542-db61ff8314a7" + }, + { + "routeId": "L700", + "platformId": "U31248Z2", + "id": "0d798e81-dba4-4cdc-bc9e-e4cfae53a188" + }, + { + "routeId": "L700", + "platformId": "U31248Z3", + "id": "ba82589b-5875-48ff-bbc3-94c18a2056c4" + }, + { + "routeId": "L700", + "platformId": "U31249Z3", + "id": "83922b89-bcbc-4f07-a324-dc56e987a3f6" + }, + { + "routeId": "L459", + "platformId": "U31250Z1", + "id": "725fd5b3-9b3d-4ea0-8079-8eb05698e793" + }, + { + "routeId": "L459", + "platformId": "U31250Z2", + "id": "db21b729-cf69-4e96-a10d-733ed8a59235" + }, + { + "routeId": "L459", + "platformId": "U31251Z1", + "id": "7cf8124b-eabc-4b8f-b5e5-303cf4bcb6b0" + }, + { + "routeId": "L459", + "platformId": "U31251Z2", + "id": "fd3ac22b-a412-4500-86ec-d575ee2b4423" + }, + { + "routeId": "L459", + "platformId": "U31252Z1", + "id": "4f0ee473-4b29-4e70-87bb-d469bd2b1088" + }, + { + "routeId": "L459", + "platformId": "U31252Z2", + "id": "38324d5c-ae34-426f-8abd-5ad860aace7d" + }, + { + "routeId": "L459", + "platformId": "U31253Z1", + "id": "46fc7fac-0bb0-44c6-8e61-22ae314b28af" + }, + { + "routeId": "L459", + "platformId": "U31253Z2", + "id": "2f2578d4-96eb-42fd-8748-44b09924d30a" + }, + { + "routeId": "L453", + "platformId": "U31254Z1", + "id": "1f67efd2-37e6-479d-8bcd-e62fdc0b9a04" + }, + { + "routeId": "L455", + "platformId": "U31254Z1", + "id": "30187618-8521-48f1-b237-00fef512fd97" + }, + { + "routeId": "L453", + "platformId": "U31254Z3", + "id": "63f6ad30-0460-4cf4-baa2-ab8ae9c19ab0" + }, + { + "routeId": "L459", + "platformId": "U31254Z4", + "id": "1b422ce1-bedd-424d-ad0b-96addb53f435" + }, + { + "routeId": "L459", + "platformId": "U31254Z5", + "id": "648d5c35-1088-48af-8f13-ab917b81c670" + }, + { + "routeId": "L455", + "platformId": "U31254Z5", + "id": "5bea592a-1a35-4773-bc7b-c32872c06ffa" + }, + { + "routeId": "L453", + "platformId": "U31260Z1", + "id": "e58939fd-e395-4036-a62a-cba1c0545d02" + }, + { + "routeId": "L455", + "platformId": "U31260Z1", + "id": "2c05f933-62c5-4a54-ba23-708cc8a876ca" + }, + { + "routeId": "L453", + "platformId": "U31260Z2", + "id": "c1d14ada-e46d-4a7b-8b45-3ec30b9a4aa2" + }, + { + "routeId": "L455", + "platformId": "U31260Z2", + "id": "0b780db2-d8d4-4ba6-8654-bc10a38bc3d1" + }, + { + "routeId": "L453", + "platformId": "U31261Z1", + "id": "7f0ba76b-23a4-4720-95b4-96c93d1e40f3" + }, + { + "routeId": "L455", + "platformId": "U31261Z1", + "id": "ea4a1497-78b6-4316-85ec-f1dba392d899" + }, + { + "routeId": "L453", + "platformId": "U31261Z2", + "id": "e8fc26b8-92d3-41c0-a207-ce578df86721" + }, + { + "routeId": "L455", + "platformId": "U31261Z2", + "id": "45b28f09-1057-402d-b8d9-947f24a2b446" + }, + { + "routeId": "L453", + "platformId": "U31266Z1", + "id": "292d704a-83c0-42bd-98f7-00968c0d4df5" + }, + { + "routeId": "L455", + "platformId": "U31266Z1", + "id": "a8e98935-11cf-42f3-bea5-0ea5c382ab93" + }, + { + "routeId": "L453", + "platformId": "U31266Z2", + "id": "83ba0111-db84-4626-a458-853324a0997e" + }, + { + "routeId": "L455", + "platformId": "U31266Z2", + "id": "82461641-f233-4ec8-ad7e-2ebcf2544d54" + }, + { + "routeId": "L453", + "platformId": "U31267Z1", + "id": "c3cc7144-c288-4816-9d97-4836fe389158" + }, + { + "routeId": "L455", + "platformId": "U31267Z1", + "id": "9ac709ad-0b3c-47c4-86d4-68f5cbf3758b" + }, + { + "routeId": "L453", + "platformId": "U31267Z2", + "id": "374278b2-1e0d-4095-914c-3b7f26bc52cb" + }, + { + "routeId": "L455", + "platformId": "U31267Z2", + "id": "1b830729-0ee0-4e13-8f1d-c72dc3a60c76" + }, + { + "routeId": "L453", + "platformId": "U31268Z1", + "id": "39e9be56-1d96-4593-9088-77380b9f7925" + }, + { + "routeId": "L455", + "platformId": "U31268Z1", + "id": "e94710a3-110f-4ad1-b6d6-c80cb2d4028a" + }, + { + "routeId": "L453", + "platformId": "U31268Z2", + "id": "9596fa27-8e26-478b-9b0e-65f75b67f1b3" + }, + { + "routeId": "L455", + "platformId": "U31268Z2", + "id": "9266174d-a3ab-4e36-9f04-c5470937d50c" + }, + { + "routeId": "L720", + "platformId": "U31270Z1", + "id": "64cd32c8-271f-4035-a6ec-e6ec9eb74ebe" + }, + { + "routeId": "L720", + "platformId": "U31270Z2", + "id": "f9eafb5f-885a-4d35-a7e8-4b11923fb782" + }, + { + "routeId": "L401", + "platformId": "U31273Z1", + "id": "6d49b1a4-b574-46b5-9dce-18185b2aeb09" + }, + { + "routeId": "L401", + "platformId": "U31273Z2", + "id": "64d7938c-c4bc-40b9-a3cd-127811f85550" + }, + { + "routeId": "L454", + "platformId": "U31277Z1", + "id": "1da0d632-a2ca-40f6-b6b6-3198b4b428aa" + }, + { + "routeId": "L454", + "platformId": "U31279Z1", + "id": "8a3259b7-6043-4634-b969-662845a087cc" + }, + { + "routeId": "L454", + "platformId": "U31281Z1", + "id": "48441b77-7f5c-450b-8fa8-ee5a63370221" + }, + { + "routeId": "L730", + "platformId": "U31283Z1", + "id": "59f15d91-5739-464b-8cfa-6bd3a8652769" + }, + { + "routeId": "L730", + "platformId": "U31284Z1", + "id": "ff241175-edd8-41ec-9725-6b54c1373567" + }, + { + "routeId": "L730", + "platformId": "U31284Z2", + "id": "f7457911-e162-44cf-9222-b37644f4fdc0" + }, + { + "routeId": "L730", + "platformId": "U31285Z1", + "id": "41516059-cf2b-486b-b95c-488f0acd3d34" + }, + { + "routeId": "L730", + "platformId": "U31285Z2", + "id": "a63b26c0-9a02-4439-888f-596d43ad8392" + }, + { + "routeId": "L730", + "platformId": "U31286Z1", + "id": "9da82b44-04d3-46da-b19c-417b9fb95ef5" + }, + { + "routeId": "L730", + "platformId": "U31286Z2", + "id": "0d22c7b5-4655-40c9-91cf-f85e0aef015f" + }, + { + "routeId": "L730", + "platformId": "U31287Z1", + "id": "287add89-9cd0-42c5-9546-b09546c44bef" + }, + { + "routeId": "L730", + "platformId": "U31287Z2", + "id": "6c07bbc1-0c1f-46c3-a576-eee8dd367718" + }, + { + "routeId": "L730", + "platformId": "U31288Z1", + "id": "33ab6b7b-7f51-4cbd-9b9d-e0347f4f1b9c" + }, + { + "routeId": "L730", + "platformId": "U31288Z2", + "id": "4950599a-69ab-469a-b28c-e2c3c4cd9c2c" + }, + { + "routeId": "L730", + "platformId": "U31289Z1", + "id": "cc91dc73-a447-41b0-bff4-636fa4902f8e" + }, + { + "routeId": "L730", + "platformId": "U31289Z2", + "id": "03a63574-13bf-416d-92a5-fa836435d91a" + }, + { + "routeId": "L730", + "platformId": "U31290Z1", + "id": "764d1506-1692-4278-bef1-baab3001f8bd" + }, + { + "routeId": "L730", + "platformId": "U31290Z2", + "id": "d31e5465-29e3-4eb5-a069-9934d7025241" + }, + { + "routeId": "L700", + "platformId": "U31291Z1", + "id": "b9a125c3-ed24-479a-bd44-4b0ac6b570dd" + }, + { + "routeId": "L700", + "platformId": "U31291Z2", + "id": "b72ebd4b-8595-49cd-b9e6-a142dd255c61" + }, + { + "routeId": "L700", + "platformId": "U31292Z1", + "id": "bcb4abe3-f17e-49d0-87ee-ad97d15388cd" + }, + { + "routeId": "L700", + "platformId": "U31292Z2", + "id": "3e1ee6da-2642-40bf-9171-464f43033364" + }, + { + "routeId": "L700", + "platformId": "U31293Z2", + "id": "7568cd12-e814-48ad-b7b9-3dc45f7afa19" + }, + { + "routeId": "L700", + "platformId": "U31294Z1", + "id": "26b3e5d1-60de-4762-a479-cad94a85f816" + }, + { + "routeId": "L700", + "platformId": "U31294Z2", + "id": "1e3ed02d-6ab3-4524-8405-4f54dd8b4009" + }, + { + "routeId": "L700", + "platformId": "U31295Z1", + "id": "c842106e-b642-4f4c-98df-a4c59a06cd2e" + }, + { + "routeId": "L700", + "platformId": "U31295Z2", + "id": "03a50ed7-b182-4485-8f8f-c5ab9c39f627" + }, + { + "routeId": "L700", + "platformId": "U31296Z1", + "id": "585cf08f-6e3c-43f0-a686-e0e40b0c612e" + }, + { + "routeId": "L700", + "platformId": "U31296Z2", + "id": "bfd4d09d-2286-4a70-8951-4c48e088982f" + }, + { + "routeId": "L700", + "platformId": "U31297Z1", + "id": "5bc17bcb-f5cc-473e-ab5f-a9ed8282afbc" + }, + { + "routeId": "L700", + "platformId": "U31297Z2", + "id": "63515caa-7c47-4b96-b908-9a2ec95f2597" + }, + { + "routeId": "L700", + "platformId": "U31298Z1", + "id": "039952a7-10ca-4a0e-a05b-c9bb0e13fb44" + }, + { + "routeId": "L700", + "platformId": "U31298Z2", + "id": "8353362e-b39d-40b9-9931-4915e4049ee1" + }, + { + "routeId": "L700", + "platformId": "U31299Z1", + "id": "553134bf-9550-49e7-9033-52b00c71a955" + }, + { + "routeId": "L700", + "platformId": "U31299Z2", + "id": "a83fe7fa-8ec3-4a6b-90b9-8312d7171b14" + }, + { + "routeId": "L103", + "platformId": "U312Z1", + "id": "38ac53c8-ffa6-4ff3-8e2c-5bd92207ed4d" + }, + { + "routeId": "L914", + "platformId": "U312Z1", + "id": "ae3fc8a3-de1f-43fc-ae81-da7a902b3185" + }, + { + "routeId": "L348", + "platformId": "U312Z1", + "id": "3a314269-e7b1-484e-a270-27e45fcf5f4d" + }, + { + "routeId": "L369", + "platformId": "U312Z1", + "id": "4f951dc0-91f3-4780-8756-511669c54f0e" + }, + { + "routeId": "L103", + "platformId": "U312Z2", + "id": "8f327300-637f-40f2-8c03-c8a6276e5f23" + }, + { + "routeId": "L283", + "platformId": "U312Z2", + "id": "215101c9-fb20-4272-9f6a-5abfa8750fe1" + }, + { + "routeId": "L914", + "platformId": "U312Z2", + "id": "5d092575-7a4d-4db7-b1c1-7e3b79831ef2" + }, + { + "routeId": "L348", + "platformId": "U312Z2", + "id": "392801a2-21db-4539-8584-99bdbae21653" + }, + { + "routeId": "L369", + "platformId": "U312Z2", + "id": "eaaeffea-5ac5-4def-a18a-28d1163119cd" + }, + { + "routeId": "L410", + "platformId": "U31309Z1", + "id": "b70f8e1d-b2c1-4408-91bc-7b1e55603508" + }, + { + "routeId": "L410", + "platformId": "U31309Z2", + "id": "3ad53747-28a9-41d0-baa5-ff45c5e9ae69" + }, + { + "routeId": "L410", + "platformId": "U31310Z1", + "id": "f0446027-e0c2-4299-b6bb-4ff235e6bea7" + }, + { + "routeId": "L410", + "platformId": "U31310Z2", + "id": "7e7f8411-8e30-4aeb-9a84-71104a6511af" + }, + { + "routeId": "L410", + "platformId": "U31311Z1", + "id": "2c2f833c-3f0e-47d3-bcd3-641f5758bfa4" + }, + { + "routeId": "L410", + "platformId": "U31311Z2", + "id": "4a12c31b-9430-45a7-a100-3a0949ff631a" + }, + { + "routeId": "L410", + "platformId": "U31312Z1", + "id": "d9f1d9e0-76df-4f50-92d2-afde978bff83" + }, + { + "routeId": "L410", + "platformId": "U31312Z2", + "id": "f0af9517-3511-408a-aa94-1fba00be4eca" + }, + { + "routeId": "L410", + "platformId": "U31313Z1", + "id": "679610bb-949d-49fa-b4c8-04baf8338d16" + }, + { + "routeId": "L410", + "platformId": "U31313Z2", + "id": "3d5c6bc1-6b54-4dcf-a6eb-5f6f72d20b3a" + }, + { + "routeId": "L404", + "platformId": "U31321Z1", + "id": "b3733494-a751-46b5-9636-2121f2b3ff13" + }, + { + "routeId": "L404", + "platformId": "U31327Z1", + "id": "0f60a544-a099-412b-b6e2-450804d2a20f" + }, + { + "routeId": "L404", + "platformId": "U31327Z2", + "id": "4401c4f8-110e-4490-85bb-7a588d8f736b" + }, + { + "routeId": "L404", + "platformId": "U31328Z1", + "id": "94a8df16-5e14-41f6-aa0a-08d8b0bd0ab8" + }, + { + "routeId": "L404", + "platformId": "U31328Z2", + "id": "fe888767-239e-4eb8-8d8d-2aeaf9099929" + }, + { + "routeId": "L572", + "platformId": "U31329Z1", + "id": "6dda953d-4b6a-4cff-9f0d-a3301a0d8b62" + }, + { + "routeId": "L572", + "platformId": "U31329Z2", + "id": "2622ef2b-5040-491a-a176-d56c9851a6b3" + }, + { + "routeId": "L572", + "platformId": "U31330Z1", + "id": "a4bc904e-68b5-4078-9432-4cef6b086a83" + }, + { + "routeId": "L459", + "platformId": "U31337Z1", + "id": "a07cb82b-2e0f-4321-af3a-6d5f94c64f78" + }, + { + "routeId": "L410", + "platformId": "U31343Z1", + "id": "b3767656-f7cd-45d9-9c48-1747abd8adee" + }, + { + "routeId": "L410", + "platformId": "U31344Z1", + "id": "c60f524c-1874-460a-a13a-683bf412c6e2" + }, + { + "routeId": "L410", + "platformId": "U31344Z2", + "id": "b4aedd5f-a216-4aae-bca1-329d10b9ebbe" + }, + { + "routeId": "L410", + "platformId": "U31345Z1", + "id": "b96c252b-7ac0-4588-b2f5-53272e601660" + }, + { + "routeId": "L410", + "platformId": "U31345Z2", + "id": "ad1160e3-9a2d-4351-a080-73305393812b" + }, + { + "routeId": "L410", + "platformId": "U31346Z1", + "id": "f61bc321-5767-4b90-b9fa-8af29c628062" + }, + { + "routeId": "L410", + "platformId": "U31346Z2", + "id": "566cb921-5763-47ee-9fed-5557c56ee64b" + }, + { + "routeId": "L410", + "platformId": "U31347Z1", + "id": "e618a012-a88d-4322-bd8c-542d16f694ca" + }, + { + "routeId": "L410", + "platformId": "U31347Z2", + "id": "cfef7614-f0b2-413f-990b-81d1a9dec6ca" + }, + { + "routeId": "L400", + "platformId": "U31348Z1", + "id": "3906f4f4-582e-4015-b789-f49e664932b9" + }, + { + "routeId": "L400", + "platformId": "U31348Z2", + "id": "c5947040-985e-497a-b35a-5e5fdd66d522" + }, + { + "routeId": "L400", + "platformId": "U31349Z1", + "id": "f19d1d10-93ac-43d8-aa2f-f1541d4b160d" + }, + { + "routeId": "L400", + "platformId": "U31349Z2", + "id": "b4b38125-c57e-438d-bc1a-74779dc33fb4" + }, + { + "routeId": "L400", + "platformId": "U31350Z1", + "id": "1d33afad-78ac-4799-a6b3-46f7a0262055" + }, + { + "routeId": "L400", + "platformId": "U31350Z2", + "id": "0538e66a-846e-4c55-ad28-819b9aa48764" + }, + { + "routeId": "L400", + "platformId": "U31351Z1", + "id": "af65d14c-272c-42b3-b640-806d945ac1b6" + }, + { + "routeId": "L400", + "platformId": "U31351Z2", + "id": "277e0e09-331b-40a0-af27-e1d0997efeb7" + }, + { + "routeId": "L400", + "platformId": "U31352Z1", + "id": "f1f338a4-a344-4df9-a57a-ec133eac2a90" + }, + { + "routeId": "L400", + "platformId": "U31352Z2", + "id": "f7b3b4b9-0495-4603-bcd3-fc8c12a9da53" + }, + { + "routeId": "L400", + "platformId": "U31353Z1", + "id": "1899b1a1-037c-46d3-af81-bf89757c69c2" + }, + { + "routeId": "L400", + "platformId": "U31353Z2", + "id": "631b2550-4184-4863-a589-a18b780143a9" + }, + { + "routeId": "L1222", + "platformId": "U31354Z301", + "id": "6f6e79f4-1f62-4df7-94da-7ae5bd5891e7" + }, + { + "routeId": "L1034", + "platformId": "U31354Z301", + "id": "c63bb619-6362-4f37-8de8-a5117a5d5471" + }, + { + "routeId": "L1011", + "platformId": "U31354Z301", + "id": "44671023-6868-4e68-a832-2b2671331b95" + }, + { + "routeId": "L400", + "platformId": "U31354Z5", + "id": "b6488e1b-34fd-4a02-b82c-e86d4ee43295" + }, + { + "routeId": "L400", + "platformId": "U31355Z1", + "id": "91229794-62fb-40c1-aa95-7acaa2dc3a91" + }, + { + "routeId": "L400", + "platformId": "U31355Z2", + "id": "972c3f7b-5a70-478d-a6ad-5c4966862c20" + }, + { + "routeId": "L400", + "platformId": "U31356Z1", + "id": "97b63aac-5e07-46a2-abfe-35c7d3c835f6" + }, + { + "routeId": "L400", + "platformId": "U31356Z2", + "id": "a73ab6d9-3db5-4a31-b977-723fd9055a3b" + }, + { + "routeId": "L400", + "platformId": "U31357Z1", + "id": "4ce90dd3-7990-43a0-b466-ef9cee6f6006" + }, + { + "routeId": "L400", + "platformId": "U31357Z2", + "id": "4cc32a00-bd3a-4311-aabe-12c80b289ed3" + }, + { + "routeId": "L400", + "platformId": "U31358Z1", + "id": "890a88a4-7877-40e8-bdf6-d3d1249a1202" + }, + { + "routeId": "L400", + "platformId": "U31358Z2", + "id": "58a3dbd7-08a2-4a01-84d6-4fcbe1990d8c" + }, + { + "routeId": "L400", + "platformId": "U31359Z1", + "id": "2c205b98-3b0a-43a7-8dfa-ff21811a4eb3" + }, + { + "routeId": "L400", + "platformId": "U31359Z2", + "id": "ea8d1065-ecfc-47db-9a8d-fc6fcfdc7927" + }, + { + "routeId": "L400", + "platformId": "U31360Z1", + "id": "e264a9fd-f865-4085-8ca3-be730b128be1" + }, + { + "routeId": "L400", + "platformId": "U31360Z2", + "id": "d29a2c4b-3d49-4d3c-b537-59902fa42d13" + }, + { + "routeId": "L400", + "platformId": "U31361Z1", + "id": "3ad4c89e-49f4-4c0f-bd4c-06bc4b1d372d" + }, + { + "routeId": "L400", + "platformId": "U31362Z1", + "id": "27c983de-7f63-4277-843c-9e51841b63a5" + }, + { + "routeId": "L400", + "platformId": "U31363Z1", + "id": "acc1f819-6056-414d-bb2a-cc24014e7dec" + }, + { + "routeId": "L400", + "platformId": "U31365Z1", + "id": "525ee469-5630-4bfa-84b0-46960d014d21" + }, + { + "routeId": "L400", + "platformId": "U31366Z1", + "id": "0349702b-ce3d-4dea-a7d1-fecb6125207d" + }, + { + "routeId": "L400", + "platformId": "U31366Z2", + "id": "4cb20f6c-264f-4bcb-9f75-a7db4e2fb2bc" + }, + { + "routeId": "L400", + "platformId": "U31367Z2", + "id": "abecb0e3-c3c3-411d-a3a3-97dc5e41f8ba" + }, + { + "routeId": "L410", + "platformId": "U31368Z1", + "id": "4c582bf2-0ee8-4dd5-8f3c-5dfd55ce09f9" + }, + { + "routeId": "L410", + "platformId": "U31368Z2", + "id": "a345f2df-d518-4b3b-878e-81d6e46fa812" + }, + { + "routeId": "L410", + "platformId": "U31369Z1", + "id": "d542f613-d824-4c36-a078-6ce79f4bcf98" + }, + { + "routeId": "L410", + "platformId": "U31369Z2", + "id": "5ad5d681-c35b-433e-8f89-0671c44f4888" + }, + { + "routeId": "L410", + "platformId": "U31370Z1", + "id": "3b8c5485-e8df-40d3-8a93-e6ad87aa810d" + }, + { + "routeId": "L410", + "platformId": "U31370Z2", + "id": "4efbfcd5-023f-4e59-ab83-9b800f42579b" + }, + { + "routeId": "L410", + "platformId": "U31371Z1", + "id": "299a635f-bf12-423f-97c2-14b461a976ce" + }, + { + "routeId": "L427", + "platformId": "U31371Z11", + "id": "736eda07-0960-4752-9cfc-53a6b86adaf0" + }, + { + "routeId": "L410", + "platformId": "U31372Z1", + "id": "34b03ad9-06da-4e86-909f-312eda36d47d" + }, + { + "routeId": "L427", + "platformId": "U31372Z11", + "id": "b0b26e84-ea8e-47fd-913c-4e5b22833719" + }, + { + "routeId": "L427", + "platformId": "U31374Z11", + "id": "3d896307-16fc-48b6-b658-5e7103c249e6" + }, + { + "routeId": "L427", + "platformId": "U31374Z12", + "id": "7dbc2594-1ce2-48a1-853f-30a7ec1140fc" + }, + { + "routeId": "L410", + "platformId": "U31374Z2", + "id": "6f92e89c-a8fc-4d74-8728-572c2f5f9a7e" + }, + { + "routeId": "L410", + "platformId": "U31375Z2", + "id": "3a3fedd6-9d24-480e-a7fa-1b34c0b19697" + }, + { + "routeId": "L410", + "platformId": "U31376Z2", + "id": "687bd3d1-a7ad-43f2-a93f-fa206ee3e82d" + }, + { + "routeId": "L410", + "platformId": "U31377Z21", + "id": "9ae08ed8-af3a-416c-a5d6-1aacaebf3b75" + }, + { + "routeId": "L400", + "platformId": "U31382Z1", + "id": "8b41e36a-2ba4-481f-b140-6e183c9b8b8e" + }, + { + "routeId": "L400", + "platformId": "U31382Z2", + "id": "94d24621-5fe6-4cf3-938e-3a8d9ca42a53" + }, + { + "routeId": "L400", + "platformId": "U31383Z1", + "id": "d8962f08-f5e2-45ca-9a4f-14c26fa5eb88" + }, + { + "routeId": "L400", + "platformId": "U31383Z2", + "id": "2cdbdd02-8442-4dab-bc14-794e98493313" + }, + { + "routeId": "L400", + "platformId": "U31384Z1", + "id": "ff97d7a8-8cc6-4d94-aedf-d0aa1ceb618e" + }, + { + "routeId": "L400", + "platformId": "U31384Z2", + "id": "705b98e5-189a-48b1-aa9c-08a21a7a16cd" + }, + { + "routeId": "L400", + "platformId": "U31385Z1", + "id": "51e572af-9008-45f1-abb8-42ae76501a29" + }, + { + "routeId": "L400", + "platformId": "U31385Z2", + "id": "80b71eba-fa85-4927-8dbf-231e14eac40b" + }, + { + "routeId": "L400", + "platformId": "U31386Z1", + "id": "6f540a6c-ceba-423f-889d-53f7dcdd33af" + }, + { + "routeId": "L400", + "platformId": "U31386Z2", + "id": "420f7e81-d856-437f-b080-c07bda0279e8" + }, + { + "routeId": "L400", + "platformId": "U31387Z1", + "id": "11bd33a2-946e-4819-976d-1a4240a4a1b2" + }, + { + "routeId": "L400", + "platformId": "U31387Z2", + "id": "91e14c38-794a-4e80-9f15-2043d43ce21a" + }, + { + "routeId": "L400", + "platformId": "U31388Z2", + "id": "5e59a77b-1393-4c92-ba7a-f99b0fd1a09f" + }, + { + "routeId": "L400", + "platformId": "U31388Z3", + "id": "ee862718-6550-47f6-af8e-9cc30d332c71" + }, + { + "routeId": "L400", + "platformId": "U31389Z1", + "id": "347c10f3-5b94-48df-af33-3d796f7535fa" + }, + { + "routeId": "L400", + "platformId": "U31389Z2", + "id": "da6fb348-dd4a-4e91-9ce9-3cb2ba51d868" + }, + { + "routeId": "L400", + "platformId": "U31390Z1", + "id": "04fcdc2e-deb2-4da7-a8cc-40cafce29921" + }, + { + "routeId": "L400", + "platformId": "U31390Z2", + "id": "a01b73b8-9bb0-4594-b18e-df1e7caaf752" + }, + { + "routeId": "L400", + "platformId": "U31391Z1", + "id": "1503c29f-0b6e-44b9-a745-7d1e98169243" + }, + { + "routeId": "L400", + "platformId": "U31391Z2", + "id": "d08b6520-a50e-47b1-b250-fe9d0830cef1" + }, + { + "routeId": "L400", + "platformId": "U31392Z1", + "id": "9f7d12c7-5959-4ea9-964c-52609e2e03bd" + }, + { + "routeId": "L181", + "platformId": "U313Z1", + "id": "e18caffc-e3fc-4bed-a53b-cb59042238cd" + }, + { + "routeId": "L110", + "platformId": "U313Z1", + "id": "9409985f-8b89-4a2b-88d1-b2c68ceff58c" + }, + { + "routeId": "L171", + "platformId": "U313Z1", + "id": "db8f0419-07d4-4b18-a3e4-28117979486c" + }, + { + "routeId": "L181", + "platformId": "U313Z2", + "id": "709f816f-3fc0-4cd6-a843-70c2ef2eab14" + }, + { + "routeId": "L110", + "platformId": "U313Z2", + "id": "a4e43f53-dc10-43fb-9eb2-659ac8083cc0" + }, + { + "routeId": "L171", + "platformId": "U313Z2", + "id": "31f35364-f781-475e-9e4c-f8deef438da0" + }, + { + "routeId": "L650", + "platformId": "U31409Z1", + "id": "1919c7db-d83b-4026-87de-ae5c6a40bfb1" + }, + { + "routeId": "L650", + "platformId": "U31410Z1", + "id": "7789327d-b640-4933-8086-4383c8cc2f9f" + }, + { + "routeId": "L650", + "platformId": "U31410Z2", + "id": "35e01f3f-2b60-4586-82f8-5484a946bd32" + }, + { + "routeId": "L650", + "platformId": "U31411Z1", + "id": "e5719340-0d03-40a3-a05e-44b141529c66" + }, + { + "routeId": "L650", + "platformId": "U31411Z2", + "id": "07581bc0-cc96-4760-b607-ba922aab71e0" + }, + { + "routeId": "L650", + "platformId": "U31412Z1", + "id": "ec701dac-08de-4da2-af88-3f8bb74f7cbd" + }, + { + "routeId": "L650", + "platformId": "U31412Z2", + "id": "0e08f44f-3402-44f8-a9fe-0d02e2af278e" + }, + { + "routeId": "L650", + "platformId": "U31414Z1", + "id": "84951789-7b82-4d72-8fa7-10c9dd14b7e5" + }, + { + "routeId": "L650", + "platformId": "U31414Z2", + "id": "3fc15b95-f79c-4c28-9799-688bdf59d1bb" + }, + { + "routeId": "L413", + "platformId": "U31415Z1", + "id": "6e44460b-b9f4-45f6-a044-c4af5c6797c4" + }, + { + "routeId": "L650", + "platformId": "U31415Z5", + "id": "87da28ed-33a3-44f5-b08f-4fc8206ba185" + }, + { + "routeId": "L650", + "platformId": "U31416Z1", + "id": "d5eefe6b-5b6a-4a3d-b6e0-a3fa7a3ea977" + }, + { + "routeId": "L650", + "platformId": "U31417Z1", + "id": "a1e9dece-daad-455e-8a7d-85d02547cfc8" + }, + { + "routeId": "L650", + "platformId": "U31417Z2", + "id": "24a5aeab-36b3-4d42-b930-0e880bc9bb33" + }, + { + "routeId": "L413", + "platformId": "U31417Z3", + "id": "9155e70d-d2e8-4c3a-8b01-b72b8eee61c2" + }, + { + "routeId": "L413", + "platformId": "U31417Z4", + "id": "c39f44cb-97f9-4362-ae98-48caf47361c6" + }, + { + "routeId": "L650", + "platformId": "U31418Z1", + "id": "d57ff8f1-1a21-432d-a127-0f9454bb5bdb" + }, + { + "routeId": "L650", + "platformId": "U31418Z2", + "id": "ad8f28f3-70a1-4c01-9d9b-434bf160bd8d" + }, + { + "routeId": "L650", + "platformId": "U31419Z1", + "id": "69b98252-5c10-47db-949b-dd03866c26ce" + }, + { + "routeId": "L650", + "platformId": "U31419Z2", + "id": "21f5f9a8-b3e1-4387-b6b4-94a774de96fb" + }, + { + "routeId": "L650", + "platformId": "U31420Z1", + "id": "99f84f4b-4d44-4a5f-8482-802ca320869c" + }, + { + "routeId": "L650", + "platformId": "U31421Z1", + "id": "00f9f770-b78c-4d4b-8035-202044dfa3bc" + }, + { + "routeId": "L650", + "platformId": "U31421Z2", + "id": "df2372c0-ed50-4857-940b-8f2680c28883" + }, + { + "routeId": "L650", + "platformId": "U31422Z1", + "id": "86e487d4-44b6-46be-9d4b-038814522261" + }, + { + "routeId": "L650", + "platformId": "U31422Z2", + "id": "e1e9c88b-c865-4d71-9191-328271b405cd" + }, + { + "routeId": "L650", + "platformId": "U31423Z1", + "id": "51fc3bfe-e3bb-4dac-92dc-037fbfdfa01b" + }, + { + "routeId": "L650", + "platformId": "U31423Z2", + "id": "2d825b36-4e82-4a2b-ac9d-9a006b41437c" + }, + { + "routeId": "L650", + "platformId": "U31424Z1", + "id": "f7399315-2ae2-4cc4-92ba-a48af0f6f92d" + }, + { + "routeId": "L413", + "platformId": "U31425Z1", + "id": "67d0e5fd-a8e1-4a2e-acfd-2075f43f4ffd" + }, + { + "routeId": "L650", + "platformId": "U31425Z1", + "id": "cb26e3eb-a6d9-4146-8798-b84b09e40fe8" + }, + { + "routeId": "L413", + "platformId": "U31425Z2", + "id": "ec692825-d10f-4431-b5fd-6d88065c2f51" + }, + { + "routeId": "L650", + "platformId": "U31425Z2", + "id": "8530c8bf-31b5-471d-a7af-17e4a0a546c2" + }, + { + "routeId": "L413", + "platformId": "U31426Z1", + "id": "c1e2ac38-f52f-431a-b3a8-71fa5a9c3704" + }, + { + "routeId": "L650", + "platformId": "U31426Z1", + "id": "46c4a5f3-0376-451e-b3cd-bab545360e70" + }, + { + "routeId": "L413", + "platformId": "U31426Z2", + "id": "4ae37691-acbe-4d3c-bbfd-804a882447dc" + }, + { + "routeId": "L650", + "platformId": "U31426Z2", + "id": "ab4bc141-dc55-4642-8462-4042495adff5" + }, + { + "routeId": "L650", + "platformId": "U31427Z1", + "id": "1ad05b52-435f-4823-8571-66e7dc73a4fa" + }, + { + "routeId": "L650", + "platformId": "U31427Z2", + "id": "2d019eb5-8b24-4d51-8140-e10793ab630a" + }, + { + "routeId": "L650", + "platformId": "U31428Z1", + "id": "7bc52161-a495-44ed-b8b7-cf7e07e1d090" + }, + { + "routeId": "L650", + "platformId": "U31428Z2", + "id": "c9e5928f-027f-4a1a-a230-4b79e39a0cef" + }, + { + "routeId": "L650", + "platformId": "U31429Z1", + "id": "690d9cb8-7068-43c7-94ce-096a5297ce77" + }, + { + "routeId": "L650", + "platformId": "U31429Z2", + "id": "eed912b3-fee3-4de0-8918-42a7bef44013" + }, + { + "routeId": "L499", + "platformId": "U3142Z1", + "id": "dae54784-aacb-4e82-9739-0fc1ca408359" + }, + { + "routeId": "L434", + "platformId": "U3142Z1", + "id": "e3cf5a07-e2fa-4c9d-a9d0-c9181a8b3a76" + }, + { + "routeId": "L499", + "platformId": "U3142Z2", + "id": "a78cafab-9ab4-48db-b28f-0da546d4d44b" + }, + { + "routeId": "L434", + "platformId": "U3142Z2", + "id": "74fdae92-99e1-4bee-a2b8-925563ce5f37" + }, + { + "routeId": "L650", + "platformId": "U31430Z1", + "id": "3d7cc1c2-3c10-416d-befa-984a2bf63227" + }, + { + "routeId": "L650", + "platformId": "U31430Z2", + "id": "78de0b38-917b-4374-9d2e-5c35b32051b9" + }, + { + "routeId": "L650", + "platformId": "U31431Z1", + "id": "df2d2986-654e-4b25-8a52-4165053724a7" + }, + { + "routeId": "L650", + "platformId": "U31431Z2", + "id": "493802b7-153f-4365-b11c-3eba5d3a4d8b" + }, + { + "routeId": "L650", + "platformId": "U31432Z1", + "id": "b6d4353b-f108-458d-820c-01d65752a339" + }, + { + "routeId": "L650", + "platformId": "U31432Z2", + "id": "944fe4a4-dfee-4ae4-b351-341094553510" + }, + { + "routeId": "L413", + "platformId": "U31433Z1", + "id": "a7a3e8c8-686a-4b05-82df-3d94d1b26451" + }, + { + "routeId": "L413", + "platformId": "U31433Z2", + "id": "60cdd58e-f232-4ec9-aaa8-c7adf3265e08" + }, + { + "routeId": "L413", + "platformId": "U31434Z1", + "id": "c3646821-9b13-4ad7-9272-99c59edba465" + }, + { + "routeId": "L413", + "platformId": "U31434Z2", + "id": "506c197a-475f-4dcb-82fa-579d76900d95" + }, + { + "routeId": "L413", + "platformId": "U31435Z1", + "id": "7447d430-e349-44be-99b7-6ffa20b47e7b" + }, + { + "routeId": "L413", + "platformId": "U31435Z2", + "id": "a1bdbdd9-5f29-4761-adb8-65385e8cd5f9" + }, + { + "routeId": "L413", + "platformId": "U31437Z1", + "id": "b9f207fd-34be-420e-93e2-3185a5c5924c" + }, + { + "routeId": "L413", + "platformId": "U31437Z2", + "id": "22e1680a-28d8-42ca-947f-8459e447fc1a" + }, + { + "routeId": "L413", + "platformId": "U31438Z1", + "id": "776042fe-9fa1-4ccc-99b2-ec9965e36efb" + }, + { + "routeId": "L413", + "platformId": "U31438Z2", + "id": "ecce70ee-071c-46ef-893e-e0e03eaecf66" + }, + { + "routeId": "L413", + "platformId": "U31439Z1", + "id": "3bf5a4c6-a8ef-4b34-8ded-268e345bb769" + }, + { + "routeId": "L413", + "platformId": "U31439Z2", + "id": "85eebd15-95c6-491b-8e36-01b275185105" + }, + { + "routeId": "L580", + "platformId": "U3143Z1", + "id": "e060dc3b-00b1-4aeb-a4ff-558c10134a3c" + }, + { + "routeId": "L580", + "platformId": "U3143Z2", + "id": "915c66c7-3fc8-4725-a8e4-ca0dfeafc037" + }, + { + "routeId": "L305", + "platformId": "U3143Z3", + "id": "ec18692a-d0bc-4ab8-a5cd-20f102a871fc" + }, + { + "routeId": "L305", + "platformId": "U3143Z4", + "id": "7005c870-b189-4a56-a9a2-0bf25bbd9864" + }, + { + "routeId": "L415", + "platformId": "U3143Z5", + "id": "2c784a18-2ec1-4a51-bdc3-2a0c5338b91b" + }, + { + "routeId": "L415", + "platformId": "U3143Z6", + "id": "3bab66ec-2cb6-45da-a22a-0f3afada4ee8" + }, + { + "routeId": "L413", + "platformId": "U31440Z1", + "id": "f09f3a60-476e-45eb-b06f-631586e73ee5" + }, + { + "routeId": "L413", + "platformId": "U31440Z2", + "id": "15c92bc0-bf71-4dc2-b4e1-71d77f703eb3" + }, + { + "routeId": "L401", + "platformId": "U31441Z1", + "id": "915a336b-63d2-486c-ab23-64e6cf856f47" + }, + { + "routeId": "L401", + "platformId": "U31441Z2", + "id": "197382fd-4473-454e-9b96-0922e15db5e9" + }, + { + "routeId": "L401", + "platformId": "U31442Z1", + "id": "10eb16fc-af98-45ed-9295-9c373725378d" + }, + { + "routeId": "L401", + "platformId": "U31442Z2", + "id": "1244a647-b72e-45b7-aee4-355ba85d868d" + }, + { + "routeId": "L401", + "platformId": "U31443Z1", + "id": "7f21d1f6-6f39-44d2-86f7-4051b7a75617" + }, + { + "routeId": "L401", + "platformId": "U31443Z2", + "id": "3575572b-00b2-4153-9d73-d7fcc655b5fc" + }, + { + "routeId": "L401", + "platformId": "U31444Z1", + "id": "f723ace1-672e-4571-9ad7-27c4634ff7da" + }, + { + "routeId": "L401", + "platformId": "U31444Z2", + "id": "3fef8dfa-c10d-48b7-a30f-bbcfa4e0385b" + }, + { + "routeId": "L401", + "platformId": "U31445Z1", + "id": "19545899-f36c-47c8-a591-48cffd2b388b" + }, + { + "routeId": "L401", + "platformId": "U31446Z1", + "id": "336247c7-c329-4b53-95a9-b585235fce56" + }, + { + "routeId": "L401", + "platformId": "U31446Z2", + "id": "aa748e6f-bda7-4a78-bb2a-fef8bcdec16b" + }, + { + "routeId": "L401", + "platformId": "U31447Z1", + "id": "74652a97-c944-4467-bb45-cd962ac2888a" + }, + { + "routeId": "L401", + "platformId": "U31447Z2", + "id": "0fec588e-95d8-45a5-9ecf-f623de706c18" + }, + { + "routeId": "L401", + "platformId": "U31448Z1", + "id": "93203381-34fa-47b0-95f9-ddc78e268f26" + }, + { + "routeId": "L401", + "platformId": "U31449Z1", + "id": "f4476500-598e-4ae9-b4c3-2208e66ea62c" + }, + { + "routeId": "L401", + "platformId": "U31449Z6", + "id": "684644e2-61ba-41e5-a73a-c1eab5293d00" + }, + { + "routeId": "L401", + "platformId": "U31450Z1", + "id": "2f0aff88-74a0-42ca-b453-6ceb90d85151" + }, + { + "routeId": "L401", + "platformId": "U31454Z1", + "id": "cc9fb43b-5da1-43b3-b475-2a4285fc3e69" + }, + { + "routeId": "L401", + "platformId": "U31455Z1", + "id": "5d7826a1-71ab-4278-94f4-2e33dc3c838d" + }, + { + "routeId": "L401", + "platformId": "U31455Z2", + "id": "670060b8-ca6f-40a7-925e-069df8216b51" + }, + { + "routeId": "L401", + "platformId": "U31456Z1", + "id": "d5004639-661b-4799-a9b9-69eb4d50d437" + }, + { + "routeId": "L401", + "platformId": "U31456Z9", + "id": "2cf18033-a848-43df-9169-226454c46111" + }, + { + "routeId": "L443", + "platformId": "U3146Z1", + "id": "93a8a846-23eb-4ea3-a4e1-fc847f608dfc" + }, + { + "routeId": "L443", + "platformId": "U3146Z2", + "id": "db5a3d02-cc9c-433b-9799-92c1f2548bb7" + }, + { + "routeId": "L560", + "platformId": "U31470Z1", + "id": "d3131e8e-6d27-4fe4-987d-988c9d1efe22" + }, + { + "routeId": "L560", + "platformId": "U31471Z1", + "id": "e473ca4e-014e-42b8-80a3-89270f46c6b4" + }, + { + "routeId": "L760", + "platformId": "U31472Z1", + "id": "7c90e5ee-eab0-49cf-8542-d7e90843f143" + }, + { + "routeId": "L760", + "platformId": "U31472Z2", + "id": "3dcfdb6f-ad6c-4d6c-8958-750deccde179" + }, + { + "routeId": "L760", + "platformId": "U31473Z1", + "id": "19045221-d465-4d4b-8347-87f497a350a6" + }, + { + "routeId": "L760", + "platformId": "U31473Z2", + "id": "5efd1fd0-e1dd-4ee4-b894-edf12b629ff1" + }, + { + "routeId": "L760", + "platformId": "U31474Z1", + "id": "b8638c17-94e2-404f-9f5d-84a9b6b0ccb6" + }, + { + "routeId": "L760", + "platformId": "U31474Z2", + "id": "d906c228-e30e-4969-92cd-77f64028b8df" + }, + { + "routeId": "L760", + "platformId": "U31475Z1", + "id": "23b936d5-e834-42b3-905c-17ee2708a123" + }, + { + "routeId": "L760", + "platformId": "U31476Z3", + "id": "ab19dc38-a0ea-4ce6-b739-72d2a219afe5" + }, + { + "routeId": "L1219", + "platformId": "U31478Z301", + "id": "3bb22c53-d8f7-4b2f-8168-009f59b23aed" + }, + { + "routeId": "L1218", + "platformId": "U31478Z301", + "id": "8cb0bc95-e0d6-4b4b-b67e-5f95fdcd08aa" + }, + { + "routeId": "L1310", + "platformId": "U31478Z301", + "id": "d7510a2c-7e39-44f2-9e3d-f87443202bd5" + }, + { + "routeId": "L722", + "platformId": "U31490Z1", + "id": "653ac139-fcf8-404e-bcee-283f6d773d8b" + }, + { + "routeId": "L427", + "platformId": "U31491Z1", + "id": "41a1ce43-ffa5-4958-a0df-e7b45b69fa37" + }, + { + "routeId": "L427", + "platformId": "U31491Z2", + "id": "ed7c34d9-60db-4568-9bd4-9a832d73c0d4" + }, + { + "routeId": "L427", + "platformId": "U31492Z1", + "id": "bead9f9d-0942-4b9c-9778-98333eebc681" + }, + { + "routeId": "L427", + "platformId": "U31492Z2", + "id": "d11f22af-7ea3-4535-9de5-c8993c11adda" + }, + { + "routeId": "L427", + "platformId": "U31493Z1", + "id": "6fa0044f-fb02-4450-b0bc-a7ea73e2c848" + }, + { + "routeId": "L427", + "platformId": "U31493Z2", + "id": "f4f75c9f-d5fd-4d5f-9b0f-b5bb1291e597" + }, + { + "routeId": "L2846", + "platformId": "U31494Z2", + "id": "dadeb3b8-7767-4e58-879e-14b3a198e5dc" + }, + { + "routeId": "L2846", + "platformId": "U31494Z3", + "id": "b4b8964b-4b95-4297-8cd0-df188774711f" + }, + { + "routeId": "L546", + "platformId": "U31495Z1", + "id": "f524c6a6-19d3-4877-a5e8-f548f19a9508" + }, + { + "routeId": "L546", + "platformId": "U31495Z2", + "id": "079f77d4-825b-4b5a-80de-86692eb6de60" + }, + { + "routeId": "L546", + "platformId": "U31496Z1", + "id": "038409f7-a73f-47b5-bddf-3502d5e56b58" + }, + { + "routeId": "L546", + "platformId": "U31496Z2", + "id": "4ab644c2-bf8b-4b7c-a629-ec852070a839" + }, + { + "routeId": "L545", + "platformId": "U31497Z1", + "id": "b71472a1-ab81-476c-975e-6c81b0aa9712" + }, + { + "routeId": "L546", + "platformId": "U31497Z1", + "id": "aa39cc87-4584-46f2-8cfa-b0546d067329" + }, + { + "routeId": "L545", + "platformId": "U31497Z2", + "id": "ad37fb35-22ff-471f-9ebb-1183240c9b29" + }, + { + "routeId": "L546", + "platformId": "U31497Z2", + "id": "e0bce19b-068e-4dc6-8a96-a5763d6f7d87" + }, + { + "routeId": "L545", + "platformId": "U31498Z1", + "id": "33ed9371-4651-48f3-95b4-911e25457928" + }, + { + "routeId": "L546", + "platformId": "U31498Z1", + "id": "3f49705e-24d3-433f-a0ea-f928adb34122" + }, + { + "routeId": "L545", + "platformId": "U31498Z2", + "id": "167f1c01-8bbf-4f84-853b-f6e3bb7b01ae" + }, + { + "routeId": "L546", + "platformId": "U31498Z2", + "id": "5875fd39-e8d9-43a4-896a-d8e18f11cf59" + }, + { + "routeId": "L545", + "platformId": "U31499Z1", + "id": "08f045d0-c0f1-4696-b52b-5fac5aee8ae5" + }, + { + "routeId": "L546", + "platformId": "U31499Z1", + "id": "ccf42d86-b93d-4508-a729-fbbd4e543d3e" + }, + { + "routeId": "L545", + "platformId": "U31499Z2", + "id": "b6675a7f-d79e-431b-b98f-741e87331fe4" + }, + { + "routeId": "L546", + "platformId": "U31499Z2", + "id": "f2defcac-427e-4102-a117-9f8f63790e18" + }, + { + "routeId": "L10", + "platformId": "U314Z1", + "id": "421c413f-91a2-4332-9862-d39a144b266c" + }, + { + "routeId": "L93", + "platformId": "U314Z1", + "id": "c2218dba-4f9f-4e64-8957-2bfb525ae5d1" + }, + { + "routeId": "L10", + "platformId": "U314Z2", + "id": "11e34fd8-64eb-433f-8acd-cbdb2a570c83" + }, + { + "routeId": "L93", + "platformId": "U314Z2", + "id": "6da498b3-6a00-415b-92de-52c5ab94e5d1" + }, + { + "routeId": "L545", + "platformId": "U31500Z1", + "id": "d6e7d47d-e881-4352-87b1-2ba6c5b221c6" + }, + { + "routeId": "L545", + "platformId": "U31500Z2", + "id": "3853229f-dfff-4063-997f-79bcd1626b11" + }, + { + "routeId": "L546", + "platformId": "U31500Z2", + "id": "a22a38bc-5430-4f22-91ab-cc9bee854491" + }, + { + "routeId": "L546", + "platformId": "U31500Z3", + "id": "5d805327-cf50-4554-ae07-d1c257adc554" + }, + { + "routeId": "L546", + "platformId": "U31501Z1", + "id": "8c62125f-5c43-4c97-a418-e047032836a0" + }, + { + "routeId": "L546", + "platformId": "U31501Z2", + "id": "f12cc752-f2fe-46f5-a4a3-0bf40053873b" + }, + { + "routeId": "L760", + "platformId": "U31503Z1", + "id": "959d8294-0627-4e01-b7ce-9344ac85a09c" + }, + { + "routeId": "L760", + "platformId": "U31503Z2", + "id": "d183af9f-bc64-4cd8-b3e0-bcceafd276ed" + }, + { + "routeId": "L406", + "platformId": "U31505Z1", + "id": "35169ed4-e8f1-4313-87f6-66b408720dcb" + }, + { + "routeId": "L406", + "platformId": "U31505Z2", + "id": "18d4d8e3-cfe8-47d8-aaf8-b7d850351abb" + }, + { + "routeId": "L454", + "platformId": "U31506Z1", + "id": "6a7c0561-ec32-4ddf-90c7-da4481be8314" + }, + { + "routeId": "L454", + "platformId": "U31506Z2", + "id": "94c9f3df-f5bb-43bb-a468-5e5f9680f6fd" + }, + { + "routeId": "L454", + "platformId": "U31507Z1", + "id": "92552e2f-061c-4126-a48a-48d454c3febc" + }, + { + "routeId": "L454", + "platformId": "U31507Z2", + "id": "0ee99c06-4760-4b5a-a0d1-bcbca133fca1" + }, + { + "routeId": "L454", + "platformId": "U31508Z1", + "id": "6c8f925d-b705-4019-8fa3-dcbde10caa3b" + }, + { + "routeId": "L454", + "platformId": "U31508Z2", + "id": "814956a1-061c-40c3-85af-f4d79d33df6b" + }, + { + "routeId": "L482", + "platformId": "U31514Z1", + "id": "fae7d9ae-60fc-4e27-a6c9-ec2ecec7827d" + }, + { + "routeId": "L482", + "platformId": "U31514Z2", + "id": "12cc4b0c-bb49-4bcf-85f4-0ea2eff44505" + }, + { + "routeId": "L482", + "platformId": "U31536Z1", + "id": "1b763724-6415-4446-8af2-442efc47536f" + }, + { + "routeId": "L482", + "platformId": "U31536Z5", + "id": "48d3173a-67b1-49de-a397-7944fefe6b93" + }, + { + "routeId": "L482", + "platformId": "U31540Z1", + "id": "7034a229-fbca-4902-8572-f56179fe7a40" + }, + { + "routeId": "L482", + "platformId": "U31540Z2", + "id": "b94c10d1-15de-42b0-ac91-f4a37b8c493e" + }, + { + "routeId": "L523", + "platformId": "U31543Z1", + "id": "18c3d369-d48d-4499-a9d0-5ad8c90ce460" + }, + { + "routeId": "L523", + "platformId": "U31543Z2", + "id": "811519ec-cbaa-4579-bfb8-2a230c6df121" + }, + { + "routeId": "L2847", + "platformId": "U31554Z1", + "id": "c01c0425-280d-470b-860f-0cd8a7e46526" + }, + { + "routeId": "L2847", + "platformId": "U31554Z2", + "id": "f5c7b0d8-4b95-49c8-9ee5-77e70cf2ddd7" + }, + { + "routeId": "L406", + "platformId": "U31559Z1", + "id": "a95aa365-cbe5-4d6a-a6f4-f143c8813be3" + }, + { + "routeId": "L406", + "platformId": "U31559Z2", + "id": "c1828a2a-8025-473e-80ec-89b262a4b496" + }, + { + "routeId": "L406", + "platformId": "U31560Z1", + "id": "d49f8b68-9356-4e3d-bc5b-15238952304e" + }, + { + "routeId": "L406", + "platformId": "U31560Z2", + "id": "70603091-220a-4078-af73-b5d184a1212f" + }, + { + "routeId": "L2846", + "platformId": "U31589Z1", + "id": "3f554039-1768-479a-b794-2eae7c26a746" + }, + { + "routeId": "L2846", + "platformId": "U31589Z2", + "id": "ad8ce729-df90-47a7-9257-11a74a63b8c7" + }, + { + "routeId": "L2846", + "platformId": "U31590Z1", + "id": "8cdd7016-3ac8-4df3-905d-08e7ef8d031b" + }, + { + "routeId": "L2846", + "platformId": "U31590Z2", + "id": "1e46ddd3-1343-404f-941c-40faed78e722" + }, + { + "routeId": "L2846", + "platformId": "U31591Z1", + "id": "e7e1f6f2-be94-45b2-8817-5e08c3a07716" + }, + { + "routeId": "L2846", + "platformId": "U31591Z2", + "id": "2e7f2bbf-0a9f-44da-8c46-e43ee65ca6ab" + }, + { + "routeId": "L2846", + "platformId": "U31592Z1", + "id": "eb09f261-dfd6-4202-9a0f-ddcbb37222c6" + }, + { + "routeId": "L2846", + "platformId": "U31592Z2", + "id": "6cbb6cca-8fc6-47f6-b1d4-801677842dd0" + }, + { + "routeId": "L2846", + "platformId": "U31593Z1", + "id": "36b32bc9-bd54-4c74-94de-fc61eee3d7b2" + }, + { + "routeId": "L2846", + "platformId": "U31593Z2", + "id": "2deb1322-566c-4f99-8883-61dcc3cf892e" + }, + { + "routeId": "L241", + "platformId": "U315Z1", + "id": "bae41fc0-3246-4f48-af15-f9f0082a9c4a" + }, + { + "routeId": "L129", + "platformId": "U315Z1", + "id": "8268197f-dc6c-4282-8d47-aceb491b0b1c" + }, + { + "routeId": "L247", + "platformId": "U315Z1", + "id": "532cc9b9-5d77-4e1b-a4f7-f82d9d88f276" + }, + { + "routeId": "L246", + "platformId": "U315Z1", + "id": "89c07ac9-cedd-4d36-8239-da9eed364d38" + }, + { + "routeId": "L907", + "platformId": "U315Z1", + "id": "88affa35-d9ee-40df-81ac-d0bf6a0553f1" + }, + { + "routeId": "L320", + "platformId": "U315Z1", + "id": "0ade24a7-5994-42f7-bb69-914d33078c16" + }, + { + "routeId": "L317", + "platformId": "U315Z1", + "id": "9f1f46b5-08ee-48ba-b632-e29fe4deefd3" + }, + { + "routeId": "L318", + "platformId": "U315Z1", + "id": "e6bbe7d5-fd61-42c2-90ba-75f8c22431c7" + }, + { + "routeId": "L961", + "platformId": "U315Z1", + "id": "de0a203b-d4b5-4812-ad3c-c800ff570663" + }, + { + "routeId": "L241", + "platformId": "U315Z2", + "id": "f1816350-3b08-4db9-b0dc-35556d6261d0" + }, + { + "routeId": "L129", + "platformId": "U315Z2", + "id": "05e60bed-2879-4f83-81f8-9c577eb0ce48" + }, + { + "routeId": "L247", + "platformId": "U315Z2", + "id": "019bad17-26d6-4c47-9f96-b5651062bc5a" + }, + { + "routeId": "L246", + "platformId": "U315Z2", + "id": "c3bc1779-86d9-4942-aa7e-06c9d251c91a" + }, + { + "routeId": "L907", + "platformId": "U315Z2", + "id": "3e16778a-f0c5-42e9-afb6-664c5fe29456" + }, + { + "routeId": "L318", + "platformId": "U315Z2", + "id": "4fc5e470-5bec-4e49-ac25-f9222cbd647f" + }, + { + "routeId": "L450", + "platformId": "U31606Z1", + "id": "bc7c81a1-bcc2-4dce-bd59-7d13dcafffd0" + }, + { + "routeId": "L450", + "platformId": "U31606Z2", + "id": "65a8f895-fe82-4ed4-9ca2-433aec802978" + }, + { + "routeId": "L450", + "platformId": "U31607Z1", + "id": "6d34148c-f4ef-4d00-837a-7575c66c69b6" + }, + { + "routeId": "L450", + "platformId": "U31607Z2", + "id": "2e9ced6d-185b-420a-ad39-717ce966fbaf" + }, + { + "routeId": "L420", + "platformId": "U31609Z1", + "id": "f5a00a38-f01d-43fa-b17a-06a3f8014aa3" + }, + { + "routeId": "L420", + "platformId": "U31609Z2", + "id": "93b18def-459a-44fb-93a1-102577853207" + }, + { + "routeId": "L406", + "platformId": "U31624Z1", + "id": "1f0eabf4-073e-4686-9c17-712f9b3eb83c" + }, + { + "routeId": "L406", + "platformId": "U31624Z2", + "id": "3403c2ce-a147-4ecc-88cf-247a9ab69874" + }, + { + "routeId": "L454", + "platformId": "U31639Z1", + "id": "12d656c6-5e9c-4d20-abb6-d728237a0b1e" + }, + { + "routeId": "L454", + "platformId": "U31639Z2", + "id": "db245969-10af-416c-9915-ff0d57de9c40" + }, + { + "routeId": "L454", + "platformId": "U31640Z1", + "id": "28631fb0-cf16-47fe-877d-06cb2629a9f6" + }, + { + "routeId": "L454", + "platformId": "U31640Z2", + "id": "34c9b461-fe0a-4ae6-ba47-adf71733f040" + }, + { + "routeId": "L454", + "platformId": "U31641Z1", + "id": "187d8fd1-49b3-450c-a37e-342f6ce9cbdf" + }, + { + "routeId": "L454", + "platformId": "U31641Z2", + "id": "d3fee023-1fcb-4924-9769-6dabf26ff45c" + }, + { + "routeId": "L454", + "platformId": "U31642Z1", + "id": "fb6a2e05-b20e-42c9-88b1-d38ccee6aa5f" + }, + { + "routeId": "L454", + "platformId": "U31642Z2", + "id": "14829cb5-313a-42e4-93af-4302cd518c13" + }, + { + "routeId": "L454", + "platformId": "U31643Z1", + "id": "aab92d2d-b843-4a76-b513-5bf96c64a85d" + }, + { + "routeId": "L454", + "platformId": "U31643Z2", + "id": "53aaf03c-8381-4da2-9333-90648db91b39" + }, + { + "routeId": "L454", + "platformId": "U31644Z1", + "id": "b0779281-27c4-43de-be5d-a97bf664c8d5" + }, + { + "routeId": "L454", + "platformId": "U31644Z2", + "id": "1ba20844-8f07-4805-8763-33ede7038025" + }, + { + "routeId": "L454", + "platformId": "U31645Z1", + "id": "f05e92b8-d13c-46d5-98ac-41cd0449b8ac" + }, + { + "routeId": "L454", + "platformId": "U31645Z2", + "id": "aed72f80-703f-4b95-83e8-9f36c91f5ece" + }, + { + "routeId": "L420", + "platformId": "U31651Z1", + "id": "93bae2c6-ce59-4a1a-abf5-73e68ca6de6b" + }, + { + "routeId": "L420", + "platformId": "U31651Z2", + "id": "1c0dc1b5-8160-403f-a044-e46e2ca86e48" + }, + { + "routeId": "L1219", + "platformId": "U31658Z301", + "id": "703c6fa6-edec-4253-a603-a3ab6b0b2fa1" + }, + { + "routeId": "L1218", + "platformId": "U31658Z301", + "id": "8af4c3e8-134d-4335-aa89-c5a1e9d802a4" + }, + { + "routeId": "L1310", + "platformId": "U31658Z301", + "id": "0ea7a50c-893e-4575-bd94-939c004048f6" + }, + { + "routeId": "L463", + "platformId": "U3165Z1", + "id": "a977d59f-e017-44d9-8d0b-e8a0cc48464c" + }, + { + "routeId": "L676", + "platformId": "U3165Z2", + "id": "903921d8-3ede-4db7-b7ca-b8fa8a4f4d4d" + }, + { + "routeId": "L463", + "platformId": "U3165Z2", + "id": "a5a3b63d-5639-45b9-8347-202d6fd35b49" + }, + { + "routeId": "L406", + "platformId": "U31660Z1", + "id": "32132259-88a8-4ed5-b77a-4f2cc41cac54" + }, + { + "routeId": "L406", + "platformId": "U31660Z2", + "id": "e9772dff-6cfa-4d0a-a80c-c32f23450d52" + }, + { + "routeId": "L420", + "platformId": "U31665Z1", + "id": "d9d8c873-a4b8-46a1-a502-5a1473aed2a1" + }, + { + "routeId": "L420", + "platformId": "U31666Z1", + "id": "6e2ff88a-f03b-4c3f-8d84-2b51c9977e19" + }, + { + "routeId": "L420", + "platformId": "U31666Z2", + "id": "40d70a74-1eef-4325-9fc0-46f5eb1e9587" + }, + { + "routeId": "L420", + "platformId": "U31667Z1", + "id": "e7bb254e-c832-4243-b2eb-2c6b88034915" + }, + { + "routeId": "L775", + "platformId": "U3166Z1", + "id": "6402399b-1aae-46ad-b9b8-f2be0d642d7c" + }, + { + "routeId": "L775", + "platformId": "U3166Z2", + "id": "56df1039-1d4f-42d2-b6fd-cb809bb81dc2" + }, + { + "routeId": "L420", + "platformId": "U31670Z1", + "id": "d6e83729-8af2-4cd6-8412-3256fdd2690d" + }, + { + "routeId": "L420", + "platformId": "U31670Z2", + "id": "c777d067-fc44-415f-bd98-35a2c875b1f0" + }, + { + "routeId": "L420", + "platformId": "U31672Z1", + "id": "895d717b-cb03-4af8-9faf-ba07c3032a7c" + }, + { + "routeId": "L420", + "platformId": "U31672Z2", + "id": "21fa073d-6880-4efd-ad60-41ed632f42ea" + }, + { + "routeId": "L420", + "platformId": "U31675Z1", + "id": "4ee8589f-e45f-4c98-806f-3039ceab65f2" + }, + { + "routeId": "L420", + "platformId": "U31675Z2", + "id": "e0755db2-4239-4d20-8df6-aa5c5affb372" + }, + { + "routeId": "L420", + "platformId": "U31676Z1", + "id": "1bb9c6f7-c097-452c-9f89-65e2eea0b94e" + }, + { + "routeId": "L420", + "platformId": "U31676Z2", + "id": "0aaab74e-829f-45db-834b-72ef4f1d3211" + }, + { + "routeId": "L432", + "platformId": "U3167Z1", + "id": "fe69c8a5-7328-4d9f-91b5-d27ae577bb68" + }, + { + "routeId": "L432", + "platformId": "U3167Z2", + "id": "50bff5e1-9430-4056-99e1-213179bb2d21" + }, + { + "routeId": "L2846", + "platformId": "U31680Z1", + "id": "8b18c3c2-9ce1-4525-825c-0f29bd444141" + }, + { + "routeId": "L2846", + "platformId": "U31680Z2", + "id": "5b90855a-5442-4df2-b853-5bb0b9890a68" + }, + { + "routeId": "L2846", + "platformId": "U31681Z1", + "id": "19951f35-6137-42eb-9378-1e66be814c9f" + }, + { + "routeId": "L2846", + "platformId": "U31681Z2", + "id": "0b9f22bc-3d61-41ed-834f-1bc556d33ce7" + }, + { + "routeId": "L2846", + "platformId": "U31682Z1", + "id": "afeedeae-8f71-4a52-8b30-077e36fc392f" + }, + { + "routeId": "L2846", + "platformId": "U31682Z2", + "id": "37639a26-a1d5-412a-a743-ee108ee354d6" + }, + { + "routeId": "L406", + "platformId": "U31688Z1", + "id": "b51dc7f7-c703-40af-b8cb-4778fa675788" + }, + { + "routeId": "L406", + "platformId": "U31688Z2", + "id": "6ec5066e-ce21-4e6d-8b82-3d63a344763a" + }, + { + "routeId": "L406", + "platformId": "U31689Z1", + "id": "9c9031ed-ddac-47be-8431-659be27f2efd" + }, + { + "routeId": "L406", + "platformId": "U31689Z2", + "id": "f251398d-d628-42f5-8f2e-ef8d3c1da115" + }, + { + "routeId": "L432", + "platformId": "U3168Z1", + "id": "54a44313-25b9-48e4-b168-08bc648608f2" + }, + { + "routeId": "L775", + "platformId": "U3168Z1", + "id": "bb88f67a-d6f7-4fdf-87e0-0f3fb1ef71a2" + }, + { + "routeId": "L432", + "platformId": "U3168Z2", + "id": "e467a163-d2a3-4401-8eab-fe89fb174553" + }, + { + "routeId": "L775", + "platformId": "U3168Z2", + "id": "c492effb-0af1-497a-bd3c-c4845ae3cc2c" + }, + { + "routeId": "L406", + "platformId": "U31692Z1", + "id": "706084ea-c98a-416f-b081-82a3d67b523f" + }, + { + "routeId": "L406", + "platformId": "U31692Z2", + "id": "eb684ed5-2fb1-4af8-ac09-ee9b3f6a549a" + }, + { + "routeId": "L406", + "platformId": "U31694Z1", + "id": "968d82ad-2997-4472-b180-919d72a9074d" + }, + { + "routeId": "L406", + "platformId": "U31694Z2", + "id": "9136891e-984c-4ca8-befc-a6cd93f19ce3" + }, + { + "routeId": "L775", + "platformId": "U3169Z1", + "id": "a9a11d5d-2f55-4f32-a3eb-0fb2e295a16c" + }, + { + "routeId": "L775", + "platformId": "U3169Z2", + "id": "171e0b80-5185-49e0-961a-ba419c46d9a1" + }, + { + "routeId": "L247", + "platformId": "U316Z1", + "id": "72ba2c69-fa97-47b5-aaa2-e53bd5864686" + }, + { + "routeId": "L246", + "platformId": "U316Z1", + "id": "f7f72a1b-eb1a-485f-a42a-7a0304f9cc5a" + }, + { + "routeId": "L2854", + "platformId": "U31710Z1", + "id": "e8d81e8d-db29-4564-89e3-1ed89fa48383" + }, + { + "routeId": "L2854", + "platformId": "U31710Z2", + "id": "240c0a3b-1819-4f34-8991-a357500c2533" + }, + { + "routeId": "L2854", + "platformId": "U31713Z1", + "id": "2b0d34f3-ecac-4a54-b2b0-e74fbc242b5f" + }, + { + "routeId": "L2854", + "platformId": "U31713Z2", + "id": "e71af575-b48f-428c-a910-c1e31b641acd" + }, + { + "routeId": "L2854", + "platformId": "U31716Z1", + "id": "08e03189-bcb6-4123-af26-b92881116892" + }, + { + "routeId": "L2854", + "platformId": "U31716Z2", + "id": "92529a7a-4c64-4f18-9c99-f0d1365db6ef" + }, + { + "routeId": "L725", + "platformId": "U31718Z1", + "id": "d0c642c2-bf1f-4e75-bc04-54c292c95842" + }, + { + "routeId": "L434", + "platformId": "U3171Z1", + "id": "421f9539-a147-4730-b165-63d8198d0f2f" + }, + { + "routeId": "L434", + "platformId": "U3171Z2", + "id": "a31c3596-f7d7-47f0-8b3f-91b2d5698a06" + }, + { + "routeId": "L406", + "platformId": "U31720Z1", + "id": "c78da932-65f6-46a0-9de0-8914295de931" + }, + { + "routeId": "L406", + "platformId": "U31720Z2", + "id": "ec89c354-91a7-4d77-a3bd-2b7145cf25b7" + }, + { + "routeId": "L450", + "platformId": "U31724Z11", + "id": "e0270be7-02aa-412e-9cbb-b3e160eaada2" + }, + { + "routeId": "L420", + "platformId": "U31724Z11", + "id": "4f4b8470-5a9c-4763-9593-cf6e14fbf1a2" + }, + { + "routeId": "L420", + "platformId": "U31724Z2", + "id": "d126fb84-9168-483e-95d0-35341e3b6ddf" + }, + { + "routeId": "L450", + "platformId": "U31724Z2", + "id": "15b2f2fe-9f22-451d-8af0-9a94d76c8c51" + }, + { + "routeId": "L450", + "platformId": "U31726Z1", + "id": "10acb6d7-acd8-4d1a-9163-703cb5096119" + }, + { + "routeId": "L420", + "platformId": "U31726Z1", + "id": "9c67ceb8-7cc3-45ce-84e8-510629e5f28e" + }, + { + "routeId": "L450", + "platformId": "U31733Z1", + "id": "10e9204e-6b65-45b1-b973-168fe328e536" + }, + { + "routeId": "L450", + "platformId": "U31733Z2", + "id": "ec43a5b8-9e79-434c-a4fb-8662044cb3ae" + }, + { + "routeId": "L523", + "platformId": "U31742Z1", + "id": "53172a76-2c68-4fcb-8e61-c8eb3f10c365" + }, + { + "routeId": "L523", + "platformId": "U31742Z2", + "id": "10e23b79-e0c7-4f76-9b2b-99770a5640d1" + }, + { + "routeId": "L482", + "platformId": "U31743Z1", + "id": "c2308e36-2820-42cb-82b2-1da4840cdc7e" + }, + { + "routeId": "L482", + "platformId": "U31743Z2", + "id": "31325720-acad-4173-9074-b405b67d8ec8" + }, + { + "routeId": "L482", + "platformId": "U31747Z1", + "id": "2148eb24-b4d9-4945-8e3b-c42f72ac6046" + }, + { + "routeId": "L482", + "platformId": "U31747Z2", + "id": "44e2e9df-02f8-4667-a3e9-cbe44799b7b5" + }, + { + "routeId": "L482", + "platformId": "U31748Z1", + "id": "1fcf1495-610d-4a82-b443-5a530ae8a334" + }, + { + "routeId": "L482", + "platformId": "U31748Z2", + "id": "4d9a61a0-91a5-4486-8a50-e2525ab1ff76" + }, + { + "routeId": "L482", + "platformId": "U31749Z1", + "id": "153dc44c-7da6-4f38-bb7a-fffa432ef02f" + }, + { + "routeId": "L482", + "platformId": "U31749Z2", + "id": "08bff3eb-0014-48d9-8380-afa8a9885d0a" + }, + { + "routeId": "L432", + "platformId": "U3174Z1", + "id": "f70951ea-b432-4084-944c-7c91b1447f6b" + }, + { + "routeId": "L432", + "platformId": "U3174Z2", + "id": "06937f9b-8f79-4d18-9c39-96079e307885" + }, + { + "routeId": "L454", + "platformId": "U31750Z1", + "id": "906d73ba-11f2-4576-86eb-4265d662fe18" + }, + { + "routeId": "L454", + "platformId": "U31750Z2", + "id": "41cd9565-6ba9-446a-91f0-08da0472aa1c" + }, + { + "routeId": "L454", + "platformId": "U31751Z1", + "id": "ade63897-dce4-4a54-8596-96642a0d63a6" + }, + { + "routeId": "L454", + "platformId": "U31751Z2", + "id": "c9bb8d7f-4836-4e42-a9f6-9e60e47672a9" + }, + { + "routeId": "L454", + "platformId": "U31752Z1", + "id": "f737d9eb-c06f-4d6b-954e-d5f467c8b9b4" + }, + { + "routeId": "L454", + "platformId": "U31752Z2", + "id": "a7e79761-d0c9-4ec5-8870-cf70ef664648" + }, + { + "routeId": "L454", + "platformId": "U31754Z1", + "id": "932fb1bf-a630-4865-8a5e-ff031c6a1321" + }, + { + "routeId": "L454", + "platformId": "U31754Z2", + "id": "6283f8d4-3391-4fbc-bf6d-06e6c9909b2d" + }, + { + "routeId": "L454", + "platformId": "U31755Z1", + "id": "d653c9ec-47fc-4e7f-99f8-1c4315a889de" + }, + { + "routeId": "L454", + "platformId": "U31755Z2", + "id": "d3dc551e-3833-4a6a-a735-203467dea70d" + }, + { + "routeId": "L432", + "platformId": "U3175Z1", + "id": "3892ec15-843e-464f-a0a8-a496599b33fb" + }, + { + "routeId": "L432", + "platformId": "U3175Z2", + "id": "4fc11be0-3195-4ac0-a916-4814f3397441" + }, + { + "routeId": "L713", + "platformId": "U31773Z1", + "id": "83bb6bcb-72c5-4dd8-97c0-c313af238369" + }, + { + "routeId": "L713", + "platformId": "U31773Z2", + "id": "b12b23ce-ca09-460a-b61d-d6ac7a8ba121" + }, + { + "routeId": "L2854", + "platformId": "U31774Z1", + "id": "2431beb9-a135-46e8-b981-72ed4d627e9a" + }, + { + "routeId": "L2854", + "platformId": "U31774Z2", + "id": "8a67187c-666a-48db-a35d-f81523af7941" + }, + { + "routeId": "L2854", + "platformId": "U31776Z1", + "id": "2a9978ee-8e7c-4bd2-80b3-88d7bfe54927" + }, + { + "routeId": "L499", + "platformId": "U3177Z1", + "id": "c3686d1f-45b3-4669-af6b-7e1964542bc7" + }, + { + "routeId": "L499", + "platformId": "U3177Z2", + "id": "6d63bf91-9967-431a-81b4-0fdde7b042fe" + }, + { + "routeId": "L2854", + "platformId": "U31780Z1", + "id": "de70a799-6bfe-431a-9651-0309984bf8d5" + }, + { + "routeId": "L2854", + "platformId": "U31780Z2", + "id": "6e027c2d-b15e-4d0d-8f47-cef0b1dba5f0" + }, + { + "routeId": "L406", + "platformId": "U31783Z1", + "id": "6169b596-e32a-4ddf-9fac-7a2a6148ddbe" + }, + { + "routeId": "L406", + "platformId": "U31783Z2", + "id": "9ab1a027-b268-4b32-bebe-8eeaa49fbe26" + }, + { + "routeId": "L406", + "platformId": "U31784Z1", + "id": "96029142-6264-4391-8e5e-d10098e88763" + }, + { + "routeId": "L406", + "platformId": "U31784Z2", + "id": "6f05cffd-3fcf-418e-a33c-ae5429817c2c" + }, + { + "routeId": "L406", + "platformId": "U31787Z1", + "id": "57d797ee-7deb-4537-8d9e-e28261a9fa69" + }, + { + "routeId": "L406", + "platformId": "U31787Z2", + "id": "d98fa9b7-67c7-4052-ad01-be1ff1dac395" + }, + { + "routeId": "L406", + "platformId": "U31789Z1", + "id": "a731eb02-471c-49a8-ba4f-0a13451c139a" + }, + { + "routeId": "L406", + "platformId": "U31789Z2", + "id": "3cbe7360-2936-4a3d-bf24-a8b0da711a1d" + }, + { + "routeId": "L432", + "platformId": "U3178Z1", + "id": "bc5c666f-3f45-474b-b196-4c0c061ee90d" + }, + { + "routeId": "L432", + "platformId": "U3178Z2", + "id": "22c2df85-7e6c-4152-8202-472b67b1a104" + }, + { + "routeId": "L1222", + "platformId": "U3178Z301", + "id": "2af218a4-7cbf-4d5a-a484-c93526db24c5" + }, + { + "routeId": "L1331", + "platformId": "U3178Z301", + "id": "fc917376-6066-44f1-9965-6cfcde119512" + }, + { + "routeId": "L406", + "platformId": "U31790Z1", + "id": "f8a7085c-0a84-4706-91cd-634b956f6fa3" + }, + { + "routeId": "L406", + "platformId": "U31790Z2", + "id": "6ffe998e-fda3-452e-83ec-3bb22c202c80" + }, + { + "routeId": "L523", + "platformId": "U31799Z3", + "id": "215a4ae8-530d-4733-8f50-3efd9d1b77e0" + }, + { + "routeId": "L523", + "platformId": "U31799Z7", + "id": "051fccc6-2810-4762-8b41-d05eb94f0fa3" + }, + { + "routeId": "L432", + "platformId": "U3179Z1", + "id": "8ca01651-5ff4-43df-9c5a-1ab80d7fa476" + }, + { + "routeId": "L432", + "platformId": "U3179Z2", + "id": "40eb1d9b-0523-423c-9eaf-ed724901e46c" + }, + { + "routeId": "L241", + "platformId": "U317Z1", + "id": "b0030e53-3c89-4b27-b430-5dc8cf413fd5" + }, + { + "routeId": "L129", + "platformId": "U317Z1", + "id": "1f6df365-efb9-4085-9723-3f6e1f65263e" + }, + { + "routeId": "L907", + "platformId": "U317Z1", + "id": "736c5516-1081-4241-9216-477adc4349fe" + }, + { + "routeId": "L320", + "platformId": "U317Z1", + "id": "2690d813-6e3a-42f2-9c66-139207002846" + }, + { + "routeId": "L317", + "platformId": "U317Z1", + "id": "86884272-90c6-45f0-a981-69c789cccafb" + }, + { + "routeId": "L318", + "platformId": "U317Z1", + "id": "dcac2697-3dca-43e2-8c62-0e648ebcd75f" + }, + { + "routeId": "L961", + "platformId": "U317Z1", + "id": "3d05eab9-f8f0-4595-b0f2-e8f9a305e2ba" + }, + { + "routeId": "L1806", + "platformId": "U317Z11", + "id": "e479b9f3-0226-46a3-b809-77299c0d2b00" + }, + { + "routeId": "L241", + "platformId": "U317Z2", + "id": "f22cf88c-6401-46bf-aa2d-fd6caed93818" + }, + { + "routeId": "L129", + "platformId": "U317Z2", + "id": "40a196a2-6216-42ac-aedf-001be87630af" + }, + { + "routeId": "L907", + "platformId": "U317Z2", + "id": "45d00cd6-abbe-421f-82c4-09f3e4037c9c" + }, + { + "routeId": "L317", + "platformId": "U317Z2", + "id": "5224c763-e1c5-45e6-bfde-71d6c5433567" + }, + { + "routeId": "L320", + "platformId": "U317Z2", + "id": "a912d26b-318e-4add-aafd-1f382069319c" + }, + { + "routeId": "L318", + "platformId": "U317Z2", + "id": "c215bf8e-5848-47e7-9ba3-7917f9cda710" + }, + { + "routeId": "L961", + "platformId": "U317Z2", + "id": "f3ba2b10-c902-4ac9-9a83-35513008e8db" + }, + { + "routeId": "L523", + "platformId": "U31800Z1", + "id": "8061be85-c47c-4a70-97e7-3f365dc91b93" + }, + { + "routeId": "L523", + "platformId": "U31800Z2", + "id": "fb8e99cb-d327-4e36-a9dc-561c0a3a22c1" + }, + { + "routeId": "L1219", + "platformId": "U31813Z301", + "id": "582447cf-d8e5-4328-ba61-2becaec3fc5f" + }, + { + "routeId": "L1218", + "platformId": "U31813Z301", + "id": "c0a288f0-2837-4214-8d1d-810c8092aa9c" + }, + { + "routeId": "L1310", + "platformId": "U31813Z301", + "id": "6cb81e94-7e86-41e4-a8e8-7858b71b5776" + }, + { + "routeId": "L1219", + "platformId": "U31815Z301", + "id": "b4e5969f-32cd-46f3-b5a1-018a347c9ce7" + }, + { + "routeId": "L1218", + "platformId": "U31815Z301", + "id": "0c4dd1be-9bc9-426b-a7fe-4d93d00b1376" + }, + { + "routeId": "L1310", + "platformId": "U31815Z301", + "id": "47550e32-9b29-4735-b285-f24b519a788f" + }, + { + "routeId": "L454", + "platformId": "U31818Z1", + "id": "7ba0b4c8-f7db-45f3-9d8c-44353b625332" + }, + { + "routeId": "L454", + "platformId": "U31818Z2", + "id": "a86f5b74-bfc9-47bf-b050-5a835edacbfe" + }, + { + "routeId": "L454", + "platformId": "U31819Z1", + "id": "39ddfa7a-1e0d-4137-9ec0-d5199e7ec483" + }, + { + "routeId": "L454", + "platformId": "U31819Z2", + "id": "48ed5714-d269-443a-ad7a-788fd84d0c92" + }, + { + "routeId": "L622", + "platformId": "U3182Z1", + "id": "d06acbdb-765b-4bdb-951a-956c7cbe3e96" + }, + { + "routeId": "L622", + "platformId": "U3182Z2", + "id": "ae3702f1-04ff-4243-be41-efccefbbb028" + }, + { + "routeId": "L622", + "platformId": "U3183Z1", + "id": "66cd6049-5370-42d0-9347-f039b17833a7" + }, + { + "routeId": "L622", + "platformId": "U3184Z1", + "id": "7f60b4b8-b923-4dd6-8a6f-a9aaf6321400" + }, + { + "routeId": "L622", + "platformId": "U3184Z2", + "id": "7abc3dc9-ced6-4607-8633-2a6a067a4bee" + }, + { + "routeId": "L523", + "platformId": "U31851Z1", + "id": "f52f400f-079b-40e3-a0ea-f96e021f6ed2" + }, + { + "routeId": "L523", + "platformId": "U31852Z1", + "id": "1bc6bbeb-c809-450d-ad54-2e961f292313" + }, + { + "routeId": "L523", + "platformId": "U31852Z2", + "id": "b30a7a48-968a-45f4-881e-00b0fc51b4e9" + }, + { + "routeId": "L523", + "platformId": "U31853Z1", + "id": "aa95e94f-4635-461a-9789-b15053899161" + }, + { + "routeId": "L523", + "platformId": "U31853Z2", + "id": "8b414838-b734-4d8f-8a39-54e085d30a8c" + }, + { + "routeId": "L1321", + "platformId": "U31856Z301", + "id": "f28edba0-0a8a-4976-9b7b-ba72e294df20" + }, + { + "routeId": "L454", + "platformId": "U31868Z1", + "id": "529cb10e-a4b5-483c-9b0d-0b867a3b9ea3" + }, + { + "routeId": "L454", + "platformId": "U31868Z2", + "id": "1e269bc3-32a0-4b79-b778-f3553079aead" + }, + { + "routeId": "L454", + "platformId": "U31869Z1", + "id": "e95b7d0c-5686-4e35-acb9-cb36650bef84" + }, + { + "routeId": "L454", + "platformId": "U31869Z2", + "id": "78c456c2-4c15-4421-9504-5b6c5e706b9d" + }, + { + "routeId": "L626", + "platformId": "U3186Z1", + "id": "57c261ab-7874-4c96-832e-c13be193185d" + }, + { + "routeId": "L620", + "platformId": "U3186Z1", + "id": "8cc307b1-da3c-4200-b3f8-83b309dd2f3d" + }, + { + "routeId": "L626", + "platformId": "U3186Z2", + "id": "735ae123-a432-4a20-bbf3-6bf9afbe5acc" + }, + { + "routeId": "L620", + "platformId": "U3186Z2", + "id": "9e1c126d-e20d-4379-97b4-afeb519945c5" + }, + { + "routeId": "L454", + "platformId": "U31870Z1", + "id": "d159de7d-863c-43b0-a9d8-68f0c9559e26" + }, + { + "routeId": "L454", + "platformId": "U31870Z2", + "id": "6acbd990-bd23-4511-8598-02c791a3dbbf" + }, + { + "routeId": "L2854", + "platformId": "U31882Z1", + "id": "82e7e68a-e78a-4b5b-8679-4a43ed7a6a71" + }, + { + "routeId": "L2854", + "platformId": "U31882Z2", + "id": "71f1cffb-0674-4133-a4aa-67ef0f5cccab" + }, + { + "routeId": "L482", + "platformId": "U31883Z1", + "id": "6aff566f-e2f7-46e1-a00e-d3182072c9c9" + }, + { + "routeId": "L482", + "platformId": "U31883Z2", + "id": "1469df1d-c9e9-4fdb-b72f-3e4de5a3e5e1" + }, + { + "routeId": "L482", + "platformId": "U31884Z1", + "id": "35dda619-ddcb-4245-a8f1-3ca4a6ac8ce2" + }, + { + "routeId": "L482", + "platformId": "U31884Z2", + "id": "3323e128-7825-4d23-9fef-ff93ef81e784" + }, + { + "routeId": "L2854", + "platformId": "U31887Z1", + "id": "0baef0b8-aae9-43be-badd-e7166c6d9ae2" + }, + { + "routeId": "L2854", + "platformId": "U31887Z2", + "id": "ccc53d66-fc68-482f-b336-b0ecc3b382be" + }, + { + "routeId": "L2854", + "platformId": "U31888Z1", + "id": "8a154925-9afa-47b2-9eab-8b2bdb85e8a9" + }, + { + "routeId": "L2854", + "platformId": "U31888Z2", + "id": "9138cb37-b223-4228-bea1-65fc3ca3c60b" + }, + { + "routeId": "L2854", + "platformId": "U31898Z1", + "id": "fdea92bf-2fe6-4ccc-9056-94715d42f315" + }, + { + "routeId": "L2854", + "platformId": "U31898Z2", + "id": "c6297833-6b0e-4011-a5b5-82f3917fae50" + }, + { + "routeId": "L2854", + "platformId": "U31899Z1", + "id": "060d5794-a783-429b-b7b4-6029766847f7" + }, + { + "routeId": "L2854", + "platformId": "U31899Z2", + "id": "d0c3d190-21c5-4fb6-b845-ba072d8df1bd" + }, + { + "routeId": "L109", + "platformId": "U318Z1", + "id": "ea9b4a31-5cf4-4bbb-9bb1-3500f528ee9e" + }, + { + "routeId": "L909", + "platformId": "U318Z1", + "id": "3b12bda1-b321-46b6-bf7e-acf35835a963" + }, + { + "routeId": "L110", + "platformId": "U318Z1", + "id": "2d6c6394-6a3d-4b12-a630-bd1a289708a8" + }, + { + "routeId": "L208", + "platformId": "U318Z1", + "id": "a414ce44-0a51-4a0c-b2b5-27a1c7a4e785" + }, + { + "routeId": "L224", + "platformId": "U318Z1", + "id": "1275924b-e69a-4c39-ac48-1b9b39b63d93" + }, + { + "routeId": "L109", + "platformId": "U318Z2", + "id": "1df2b8c3-088e-4112-8b02-5cb00f7ec461" + }, + { + "routeId": "L909", + "platformId": "U318Z2", + "id": "f0994a34-5e85-4f8b-8cfc-2d1963a351d0" + }, + { + "routeId": "L110", + "platformId": "U318Z2", + "id": "74112576-f79c-40a2-a976-aaf5d8c31065" + }, + { + "routeId": "L208", + "platformId": "U318Z2", + "id": "817484af-2429-4254-8d80-494fff51ca01" + }, + { + "routeId": "L224", + "platformId": "U318Z2", + "id": "ff020133-78f0-48b7-bc69-85f4cd21c143" + }, + { + "routeId": "L450", + "platformId": "U31902Z1", + "id": "83d386d1-4491-455f-89f8-fb5d3868f348" + }, + { + "routeId": "L450", + "platformId": "U31902Z2", + "id": "b5d2e460-8b8e-409b-a9ae-c4c1734088a1" + }, + { + "routeId": "L450", + "platformId": "U31903Z1", + "id": "c376919f-5551-40c7-8b92-f8fb3e0dc742" + }, + { + "routeId": "L450", + "platformId": "U31903Z2", + "id": "5d832514-6b67-43ea-ac7a-9cffa419f607" + }, + { + "routeId": "L450", + "platformId": "U31914Z1", + "id": "4ec9b30f-c765-443b-96ae-7f93d8f6b8ba" + }, + { + "routeId": "L406", + "platformId": "U31917Z1", + "id": "e67417bb-049a-4f18-a997-64398a1bc2d8" + }, + { + "routeId": "L406", + "platformId": "U31917Z2", + "id": "f99db9d3-1874-4fd8-a09d-a6538f836829" + }, + { + "routeId": "L2854", + "platformId": "U31918Z1", + "id": "8f62b91c-4725-494a-bb99-e1dac9a004a4" + }, + { + "routeId": "L2854", + "platformId": "U31918Z2", + "id": "8965ab75-03b4-4804-be0f-0ec2b31ec4ab" + }, + { + "routeId": "L523", + "platformId": "U31924Z1", + "id": "83a9d744-8f20-4e4c-b867-ebefddeef53a" + }, + { + "routeId": "L523", + "platformId": "U31924Z4", + "id": "b8307d6f-a3ac-4fea-88b4-e442e7f22958" + }, + { + "routeId": "L630", + "platformId": "U3192Z1", + "id": "34015750-b84b-4e06-98e8-8b48ffc66cf6" + }, + { + "routeId": "L630", + "platformId": "U3192Z2", + "id": "44000d84-d250-45ce-a4fd-5df23edab165" + }, + { + "routeId": "L546", + "platformId": "U31950Z1", + "id": "17eb877e-c861-40e7-9625-8c9e5d9ad500" + }, + { + "routeId": "L546", + "platformId": "U31950Z2", + "id": "304e09cd-0401-49d6-9433-49441ca3ee3f" + }, + { + "routeId": "L546", + "platformId": "U31951Z1", + "id": "d14f54d6-d033-48b1-a6ff-5388bfe398bb" + }, + { + "routeId": "L546", + "platformId": "U31951Z2", + "id": "27cae4f0-e152-4d3f-bd91-143a984a3bcf" + }, + { + "routeId": "L546", + "platformId": "U31952Z1", + "id": "6b14a365-11d3-4322-b0d8-5a49b73c109b" + }, + { + "routeId": "L546", + "platformId": "U31952Z2", + "id": "26a59091-5fce-42fc-b07a-8c50a6bda2e1" + }, + { + "routeId": "L546", + "platformId": "U31953Z1", + "id": "b1aa7b3e-5ff4-446f-9092-4f00d1475e85" + }, + { + "routeId": "L546", + "platformId": "U31953Z2", + "id": "eb7c98a3-13d0-4e54-a0cf-3c347f2c6408" + }, + { + "routeId": "L546", + "platformId": "U31954Z1", + "id": "f62d4273-bfe2-470b-b8fc-5bbccdadfc0c" + }, + { + "routeId": "L546", + "platformId": "U31954Z2", + "id": "dfec2de2-d3b2-4991-b3cd-fca7f4211327" + }, + { + "routeId": "L546", + "platformId": "U31955Z1", + "id": "77f6de3e-cc3a-4294-b8e3-74ddeac369ca" + }, + { + "routeId": "L546", + "platformId": "U31955Z2", + "id": "a1d05e14-6d99-4993-91d8-75f92fa051d3" + }, + { + "routeId": "L546", + "platformId": "U31956Z1", + "id": "786b3b11-4a5e-4c44-95f8-d954e2398296" + }, + { + "routeId": "L546", + "platformId": "U31956Z2", + "id": "de441900-d423-402e-839e-0096b5b90521" + }, + { + "routeId": "L546", + "platformId": "U31957Z1", + "id": "1b7131c2-2d61-4ca5-a192-35bb65e30c18" + }, + { + "routeId": "L546", + "platformId": "U31957Z2", + "id": "d7b0b0c6-4754-4f41-82bd-ba978e66610d" + }, + { + "routeId": "L546", + "platformId": "U31958Z1", + "id": "0d0362dd-edb5-474a-ab0a-9f3d72c04c56" + }, + { + "routeId": "L546", + "platformId": "U31958Z2", + "id": "b26dc400-439c-49fc-8f94-b83586ca3b80" + }, + { + "routeId": "L546", + "platformId": "U31959Z1", + "id": "e53f7ef4-1052-43c1-a37d-cf3b718ef6f3" + }, + { + "routeId": "L546", + "platformId": "U31960Z1", + "id": "3e1ea4e9-4803-49de-8f15-21ab1403399c" + }, + { + "routeId": "L546", + "platformId": "U31961Z14", + "id": "c1736ce4-0657-4add-bd29-cdf4fed2d6d3" + }, + { + "routeId": "L1216", + "platformId": "U31961Z301", + "id": "ad846c9f-f0e3-438f-b542-aa5b65cec26a" + }, + { + "routeId": "L1321", + "platformId": "U31970Z301", + "id": "a87a9ea6-2224-47c1-b7d3-9d9325cd5ba6" + }, + { + "routeId": "L720", + "platformId": "U31971Z1", + "id": "7c7840ac-9593-4504-9c25-656459b3bb54" + }, + { + "routeId": "L720", + "platformId": "U31971Z2", + "id": "f4cc5940-458a-4b12-a5d6-021ebcca0168" + }, + { + "routeId": "L720", + "platformId": "U31972Z1", + "id": "78106bac-5de2-442a-9505-13ebfdee8687" + }, + { + "routeId": "L720", + "platformId": "U31972Z2", + "id": "0f6a75b3-9d23-4287-a603-d114f328d7e2" + }, + { + "routeId": "L720", + "platformId": "U31973Z1", + "id": "0c377c0a-09fc-4b99-a187-d62198920a6d" + }, + { + "routeId": "L720", + "platformId": "U31973Z2", + "id": "37b0ee99-6c78-461c-bba5-f347976c2700" + }, + { + "routeId": "L730", + "platformId": "U31986Z1", + "id": "51ef16eb-ec18-411f-a83f-2fae52769629" + }, + { + "routeId": "L730", + "platformId": "U31986Z2", + "id": "27b6496d-123d-4a18-ab15-0f41df8b4516" + }, + { + "routeId": "L760", + "platformId": "U31987Z1", + "id": "59544dbd-ed31-4fde-b862-4eaf43b135e1" + }, + { + "routeId": "L415", + "platformId": "U31988Z1", + "id": "a151edfe-dd6a-4676-acb7-8d8a51fed191" + }, + { + "routeId": "L415", + "platformId": "U31988Z2", + "id": "6d523306-425b-4e06-80a0-0497c45b6857" + }, + { + "routeId": "L415", + "platformId": "U31989Z1", + "id": "6a3f6094-8c75-401b-bb9c-e5dacb393992" + }, + { + "routeId": "L415", + "platformId": "U31989Z2", + "id": "9956c8e2-d1f4-406c-a957-460417d29005" + }, + { + "routeId": "L1014", + "platformId": "U31989Z301", + "id": "ac47981a-1509-4179-abaf-71fcbea37bdf" + }, + { + "routeId": "L415", + "platformId": "U31990Z1", + "id": "387594f1-40f7-442c-a60b-77c5349daa00" + }, + { + "routeId": "L415", + "platformId": "U31990Z2", + "id": "093e7a96-ff2b-41e8-92b2-343298f34a23" + }, + { + "routeId": "L1014", + "platformId": "U31990Z301", + "id": "48b8c630-0502-45e9-8701-e51587a47074" + }, + { + "routeId": "L415", + "platformId": "U31992Z1", + "id": "73755c05-f92d-4289-948f-ec1c370d3a5a" + }, + { + "routeId": "L415", + "platformId": "U31992Z2", + "id": "43a0a185-4bde-4a8d-9bed-f50ccc24e1c2" + }, + { + "routeId": "L415", + "platformId": "U31993Z1", + "id": "96756d66-6eb0-4078-83fb-4f5968fa7b33" + }, + { + "routeId": "L415", + "platformId": "U31993Z2", + "id": "a67149f4-2be2-4f8b-acb6-b28ddb17b83c" + }, + { + "routeId": "L415", + "platformId": "U31994Z2", + "id": "a1afee36-cbd5-4fd0-b2ca-3f8c1d2f7fc3" + }, + { + "routeId": "L415", + "platformId": "U31994Z3", + "id": "f1e195be-96b7-4ed8-8a4e-aee06206d795" + }, + { + "routeId": "L1216", + "platformId": "U31997Z301", + "id": "81172fa9-868b-4c7f-8fca-aa04d2b196a4" + }, + { + "routeId": "L1216", + "platformId": "U31998Z301", + "id": "937f919b-8323-4db5-a4df-fc221c8a5d8f" + }, + { + "routeId": "L1216", + "platformId": "U31999Z301", + "id": "e5132dd3-f0fe-4db5-867a-666685c760d8" + }, + { + "routeId": "L7", + "platformId": "U319Z1", + "id": "f2705c37-25f6-441f-913c-65c29a6ffa73" + }, + { + "routeId": "L153", + "platformId": "U319Z11", + "id": "7613c5ca-7b66-43f9-9cef-8c0275ec0ac4" + }, + { + "routeId": "L153", + "platformId": "U319Z12", + "id": "74da573b-4274-4bf8-8678-7c5ed82d7d76" + }, + { + "routeId": "L7", + "platformId": "U319Z2", + "id": "c142b614-6c1d-4bb8-89ca-ad0afbb33f35" + }, + { + "routeId": "L904", + "platformId": "U319Z3", + "id": "f6c14a48-407a-4fc0-bfdf-7349d2303b31" + }, + { + "routeId": "L904", + "platformId": "U319Z4", + "id": "6e824c58-f044-4ffc-94c5-040a8158bd4a" + }, + { + "routeId": "L22", + "platformId": "U31Z1", + "id": "93271e47-358e-4c76-bbde-06ddadba4497" + }, + { + "routeId": "L22", + "platformId": "U31Z2", + "id": "4acbbd9b-fc7e-4498-9b63-fef9eea55843" + }, + { + "routeId": "L25", + "platformId": "U31Z3", + "id": "f3660964-9f35-463e-b9cd-607bda167b86" + }, + { + "routeId": "L97", + "platformId": "U31Z3", + "id": "819f6e10-d6e7-4c27-871d-ab71d061a9ed" + }, + { + "routeId": "L25", + "platformId": "U31Z4", + "id": "ddb2b96c-5b80-4fd2-b2f5-443e456a46f6" + }, + { + "routeId": "L97", + "platformId": "U31Z4", + "id": "a81e368b-f980-4ad0-9edb-fa45af99ccd9" + }, + { + "routeId": "L214", + "platformId": "U31Z5", + "id": "3ecbd4be-b510-49e9-9e61-249ad0a6e8c4" + }, + { + "routeId": "L214", + "platformId": "U31Z6", + "id": "abd0e5eb-5ab7-4443-bc89-c72b583fa594" + }, + { + "routeId": "L164", + "platformId": "U31Z7", + "id": "f534c5fe-29b8-4bd0-9e3c-792c62b75dac" + }, + { + "routeId": "L365", + "platformId": "U31Z7", + "id": "0a5907fe-7e81-4f72-b44c-0cdc722a2cde" + }, + { + "routeId": "L164", + "platformId": "U31Z8", + "id": "7d185ad2-3d48-4204-840e-30b93eb417c0" + }, + { + "routeId": "L214", + "platformId": "U31Z8", + "id": "44442abd-fb42-4596-bafd-aaeaa368e5ed" + }, + { + "routeId": "L365", + "platformId": "U31Z8", + "id": "0bfe3b4e-b454-4c15-b93d-c6cec98288a0" + }, + { + "routeId": "L1216", + "platformId": "U32000Z301", + "id": "2d708518-f5dd-4aa1-b95c-d4cb5211ec7d" + }, + { + "routeId": "L1216", + "platformId": "U32001Z301", + "id": "7fbcf7c9-ed29-4878-ac2f-3a7622a0a8de" + }, + { + "routeId": "L1216", + "platformId": "U32002Z301", + "id": "03acbbcd-8ab8-417b-a76a-04051f7af861" + }, + { + "routeId": "L1216", + "platformId": "U32003Z301", + "id": "f58fd8ed-7fec-4f74-9eab-dc9893658666" + }, + { + "routeId": "L104", + "platformId": "U3201Z1", + "id": "57daac16-9d69-42f8-a812-7c21e4a27908" + }, + { + "routeId": "L172", + "platformId": "U3201Z1", + "id": "ea93e4fa-84ba-43c1-825b-bab47580ca4b" + }, + { + "routeId": "L104", + "platformId": "U3201Z2", + "id": "be7b1378-1f89-4496-a796-530c53283d7b" + }, + { + "routeId": "L172", + "platformId": "U3201Z2", + "id": "b7f5a566-66f9-4caf-bf37-2bbc6710dd93" + }, + { + "routeId": "L453", + "platformId": "U32024Z1", + "id": "a2f574b3-0fe5-40d4-adaa-ec7e121c3ecd" + }, + { + "routeId": "L455", + "platformId": "U32024Z1", + "id": "f80ded53-887f-426b-9ba9-4a0d7cfe6b06" + }, + { + "routeId": "L453", + "platformId": "U32024Z2", + "id": "97a6a22b-7e1c-4dd7-bd49-871f1a9cd0e9" + }, + { + "routeId": "L455", + "platformId": "U32024Z2", + "id": "f8fd6476-d15e-4f0d-8116-4cf981a155fd" + }, + { + "routeId": "L453", + "platformId": "U32025Z1", + "id": "fca64df0-fb41-44e3-9c34-44ac6b799b4e" + }, + { + "routeId": "L453", + "platformId": "U32025Z2", + "id": "5cbf53ca-e255-4423-a92e-fe5a86802b32" + }, + { + "routeId": "L453", + "platformId": "U32026Z1", + "id": "71e5b09d-27f7-4d86-8be2-a44f73e00712" + }, + { + "routeId": "L453", + "platformId": "U32026Z2", + "id": "67cf9300-367e-4cf2-b8b7-59443697bb58" + }, + { + "routeId": "L455", + "platformId": "U32027Z1", + "id": "4718d5d4-6c90-473f-8b70-76fb3bec61fc" + }, + { + "routeId": "L455", + "platformId": "U32027Z2", + "id": "1c8e8b13-e356-404d-9d38-6fcaa8d67afb" + }, + { + "routeId": "L455", + "platformId": "U32028Z1", + "id": "2775456b-5f26-4618-b55a-eb457436025c" + }, + { + "routeId": "L455", + "platformId": "U32028Z2", + "id": "1405ac35-9ecc-4fa2-bc90-c14fcd676812" + }, + { + "routeId": "L455", + "platformId": "U32029Z1", + "id": "9e430fe5-73d6-41d5-928b-d0cf6468c84a" + }, + { + "routeId": "L455", + "platformId": "U32029Z2", + "id": "04fab63d-3709-4cff-b5ac-06d9018d1856" + }, + { + "routeId": "L104", + "platformId": "U3202Z1", + "id": "b9d9a7b2-4eab-4754-aaab-671d478174b2" + }, + { + "routeId": "L172", + "platformId": "U3202Z1", + "id": "56d5e7c8-5203-47b0-bf95-6f34bba33720" + }, + { + "routeId": "L104", + "platformId": "U3202Z2", + "id": "d8e4606c-3d22-4b9b-a0c3-177b9cd89d3a" + }, + { + "routeId": "L172", + "platformId": "U3202Z2", + "id": "97bdf407-4e9c-4eb1-92ca-4647f0dd8c8a" + }, + { + "routeId": "L455", + "platformId": "U32030Z1", + "id": "6f089e5c-94a6-4474-95ff-d3dd5401126e" + }, + { + "routeId": "L455", + "platformId": "U32030Z2", + "id": "a3180a2f-8d87-49b6-b13b-9a2caa0a33c3" + }, + { + "routeId": "L455", + "platformId": "U32031Z1", + "id": "50749a80-d708-4e82-bfd9-2c5113f84166" + }, + { + "routeId": "L455", + "platformId": "U32031Z2", + "id": "4f15c150-7a54-4c44-82be-090d63718c98" + }, + { + "routeId": "L454", + "platformId": "U32032Z1", + "id": "2ac05909-885b-43e4-acae-9539f4c38c71" + }, + { + "routeId": "L454", + "platformId": "U32032Z2", + "id": "2f58f536-83b4-41af-a0bb-fd70205bb1ce" + }, + { + "routeId": "L454", + "platformId": "U32033Z1", + "id": "1b9275df-7460-4b95-a793-3b3207deed5d" + }, + { + "routeId": "L455", + "platformId": "U32034Z1", + "id": "5dfb3e0a-4289-4539-851e-b4d8ab86d069" + }, + { + "routeId": "L455", + "platformId": "U32034Z2", + "id": "38c00ecc-75ba-4479-85cd-b0465d539bb7" + }, + { + "routeId": "L455", + "platformId": "U32035Z1", + "id": "c8bd6f65-359d-4bce-af2d-48b31513795b" + }, + { + "routeId": "L455", + "platformId": "U32035Z2", + "id": "4e8e7022-d901-4a80-bbf0-b5cc2b1e6294" + }, + { + "routeId": "L455", + "platformId": "U32036Z1", + "id": "7a939d63-d780-4a12-ba6b-a48268ce82ac" + }, + { + "routeId": "L455", + "platformId": "U32036Z2", + "id": "542dd8df-3cd9-4d06-9c49-e1e6e0ee94db" + }, + { + "routeId": "L455", + "platformId": "U32037Z1", + "id": "6ff1f4dd-bb9b-47e5-9abd-ff2dff21f70b" + }, + { + "routeId": "L455", + "platformId": "U32037Z2", + "id": "690a323a-d4f3-4ada-a3b8-aa866131178a" + }, + { + "routeId": "L455", + "platformId": "U32038Z1", + "id": "dd1cbd39-e928-4d9e-9eeb-acd68d183f37" + }, + { + "routeId": "L455", + "platformId": "U32038Z2", + "id": "6958d089-f3b1-47d2-99d8-5b21c378aa95" + }, + { + "routeId": "L453", + "platformId": "U32039Z1", + "id": "b511e239-c53e-4c0f-92e0-3aa9e28ca257" + }, + { + "routeId": "L453", + "platformId": "U32039Z2", + "id": "af1d6bbe-fc73-417c-9fb3-1e4db38d58bd" + }, + { + "routeId": "L104", + "platformId": "U3203Z1", + "id": "1afe5544-2f3d-44f3-b51a-d4f88a0e2256" + }, + { + "routeId": "L172", + "platformId": "U3203Z1", + "id": "0486fdf2-576c-4d9a-96ce-1fbfc6cab5c7" + }, + { + "routeId": "L104", + "platformId": "U3203Z2", + "id": "dec2a881-1174-4a50-9481-32c3f004fbe7" + }, + { + "routeId": "L172", + "platformId": "U3203Z2", + "id": "4d0a2d44-db1f-4aa9-9a9f-d6b8263d6162" + }, + { + "routeId": "L453", + "platformId": "U32040Z1", + "id": "070a780e-2d02-4927-ad75-cda045024300" + }, + { + "routeId": "L453", + "platformId": "U32040Z2", + "id": "a6876baf-fc11-4729-9586-aef9b17d2e74" + }, + { + "routeId": "L453", + "platformId": "U32041Z1", + "id": "c1a122fa-26bf-46d2-90f7-41a098bf52e8" + }, + { + "routeId": "L453", + "platformId": "U32041Z2", + "id": "f00cf8b1-1d3a-4cd9-b470-913188aa1a51" + }, + { + "routeId": "L453", + "platformId": "U32042Z1", + "id": "98eee496-94a1-4c85-9102-232440afb7d4" + }, + { + "routeId": "L453", + "platformId": "U32042Z2", + "id": "1ee5b327-5e5b-40ae-816a-a906d2cbe313" + }, + { + "routeId": "L453", + "platformId": "U32043Z1", + "id": "acc1d9af-e53b-46fc-a2ab-24e562053063" + }, + { + "routeId": "L453", + "platformId": "U32043Z2", + "id": "7e746674-7120-4681-96c7-7a30f2745417" + }, + { + "routeId": "L453", + "platformId": "U32044Z1", + "id": "30e928ca-0863-47ba-8d78-7f58501bc23b" + }, + { + "routeId": "L453", + "platformId": "U32044Z2", + "id": "8e1b0538-9c64-40c8-9043-ef06d5e291ff" + }, + { + "routeId": "L453", + "platformId": "U32045Z1", + "id": "ac7825b3-5532-43f2-9994-14894f9b0e37" + }, + { + "routeId": "L455", + "platformId": "U32045Z1", + "id": "ac52138c-e111-4b0a-942d-828fd6339bae" + }, + { + "routeId": "L453", + "platformId": "U32045Z2", + "id": "07e62419-b17f-432d-a0e7-1c5b67098afa" + }, + { + "routeId": "L455", + "platformId": "U32045Z2", + "id": "c86f9bcd-1496-4ac4-a460-ca7292295da1" + }, + { + "routeId": "L455", + "platformId": "U32047Z1", + "id": "2264e930-e652-4299-8c7b-2c7a5fb5271c" + }, + { + "routeId": "L455", + "platformId": "U32047Z2", + "id": "354e10c0-d43d-4f6a-929d-ac669969bf01" + }, + { + "routeId": "L455", + "platformId": "U32048Z1", + "id": "e23bc6ea-334d-4167-9a1f-160083288dd5" + }, + { + "routeId": "L455", + "platformId": "U32048Z2", + "id": "4d1d728e-0d26-4987-98bd-8f35ca9e2c85" + }, + { + "routeId": "L453", + "platformId": "U32049Z1", + "id": "83e8d327-535f-4e1e-bc88-a889498b74a2" + }, + { + "routeId": "L453", + "platformId": "U32049Z2", + "id": "133baba5-8c2b-447a-8daf-9d72c0ae08b6" + }, + { + "routeId": "L453", + "platformId": "U32050Z1", + "id": "ddd255ab-35eb-4a03-bc8e-9359da192cb5" + }, + { + "routeId": "L453", + "platformId": "U32050Z2", + "id": "1503489d-01ff-46a0-a4fa-b59024ed99b2" + }, + { + "routeId": "L453", + "platformId": "U32051Z1", + "id": "cd396c1d-b903-40e6-90c3-04eedb7b5e5b" + }, + { + "routeId": "L453", + "platformId": "U32051Z2", + "id": "f80fb2e6-d9a5-45ad-a035-2b37e8691f54" + }, + { + "routeId": "L453", + "platformId": "U32052Z1", + "id": "076472ff-ddf4-4e4b-ae29-8ce6b0c15d53" + }, + { + "routeId": "L453", + "platformId": "U32052Z2", + "id": "3c25333a-cd9c-495e-8237-e037d6d9eb5d" + }, + { + "routeId": "L453", + "platformId": "U32053Z1", + "id": "4435ea7f-a16c-482d-a734-ce26ced01ffe" + }, + { + "routeId": "L453", + "platformId": "U32053Z2", + "id": "abf22121-8dc1-41ba-a2bd-aa4ba8d615fa" + }, + { + "routeId": "L453", + "platformId": "U32054Z1", + "id": "119aee3d-4391-4fc3-b5e0-067573729932" + }, + { + "routeId": "L453", + "platformId": "U32054Z2", + "id": "03a82d8a-206a-4bc1-9d17-65e4735fff61" + }, + { + "routeId": "L455", + "platformId": "U32055Z1", + "id": "27336886-67a4-4aa7-ac5f-1fe9bd4c1ed4" + }, + { + "routeId": "L455", + "platformId": "U32055Z2", + "id": "40c91730-00ac-49a9-99ca-7885dc8ae9c4" + }, + { + "routeId": "L455", + "platformId": "U32056Z1", + "id": "2d8195d6-a3e3-451c-99d4-d1d876ba88bc" + }, + { + "routeId": "L455", + "platformId": "U32056Z2", + "id": "a1a6193f-8446-4773-a9a7-b66487571a05" + }, + { + "routeId": "L760", + "platformId": "U32060Z1", + "id": "2b5c3b8c-1bf4-4a93-bbca-3d19843cbec1" + }, + { + "routeId": "L760", + "platformId": "U32060Z2", + "id": "15dc609d-a609-41e6-8131-a7c6bdbbf139" + }, + { + "routeId": "L760", + "platformId": "U32061Z1", + "id": "d0b42414-dee6-4594-bb1c-2039cfdd7270" + }, + { + "routeId": "L760", + "platformId": "U32061Z2", + "id": "88315f0c-f992-41ed-a320-83b4fff0e679" + }, + { + "routeId": "L760", + "platformId": "U32062Z1", + "id": "31cde68c-27c1-4a30-a9ca-d7f2d6ef96e6" + }, + { + "routeId": "L760", + "platformId": "U32062Z2", + "id": "c68996cb-9501-423d-bd9d-a544fcd88dae" + }, + { + "routeId": "L760", + "platformId": "U32063Z1", + "id": "0fc85d14-ae4a-4ad8-976e-4b5cd29765be" + }, + { + "routeId": "L760", + "platformId": "U32063Z2", + "id": "13b8bd6f-988b-4f28-827c-cb868c27aa01" + }, + { + "routeId": "L760", + "platformId": "U32064Z1", + "id": "f4f6790c-1aa0-4b30-aa8f-11af26e1cd5d" + }, + { + "routeId": "L760", + "platformId": "U32064Z2", + "id": "1a14dea3-4263-43fc-abfb-03fc9bb1a8ed" + }, + { + "routeId": "L760", + "platformId": "U32065Z1", + "id": "3af1f751-1cbe-48fe-8714-b92169a3f131" + }, + { + "routeId": "L760", + "platformId": "U32065Z2", + "id": "aa3ca9a4-8bfb-4049-803e-7ccff3c3cb78" + }, + { + "routeId": "L600", + "platformId": "U32066Z1", + "id": "231d5452-367a-4911-952d-e65236faefb9" + }, + { + "routeId": "L600", + "platformId": "U32066Z2", + "id": "566a2a11-33f3-4c70-84e8-57d7d4681a4b" + }, + { + "routeId": "L600", + "platformId": "U32067Z1", + "id": "5dad9f01-141e-445e-aa2e-5c06035732e1" + }, + { + "routeId": "L600", + "platformId": "U32067Z2", + "id": "62f413a1-bd1b-4d10-8f61-d8fecb83affb" + }, + { + "routeId": "L600", + "platformId": "U32068Z1", + "id": "431e4ee2-436e-49fd-a1e0-c0585bc2216c" + }, + { + "routeId": "L600", + "platformId": "U32068Z2", + "id": "f943cf67-245e-4f8e-ad96-51c93a72f4f6" + }, + { + "routeId": "L600", + "platformId": "U32069Z1", + "id": "ea4ba095-7b8b-4a49-8d06-57d6bb752ceb" + }, + { + "routeId": "L600", + "platformId": "U32069Z2", + "id": "9f6bd47e-b9e6-478f-b5a7-b24c2210c860" + }, + { + "routeId": "L347", + "platformId": "U3206Z1", + "id": "3e10acd9-6608-4257-8ae5-ac7d08455f44" + }, + { + "routeId": "L347", + "platformId": "U3206Z2", + "id": "52993eb6-42b2-4716-a30b-7c4363e649ac" + }, + { + "routeId": "L600", + "platformId": "U32070Z1", + "id": "c4e9bfb4-2925-463b-b0a3-305e903b20a2" + }, + { + "routeId": "L600", + "platformId": "U32070Z2", + "id": "19eefc09-8489-4b4e-9016-5b22ef583a5c" + }, + { + "routeId": "L600", + "platformId": "U32071Z1", + "id": "ecd74983-891b-4bef-9ba3-6a6bb187d940" + }, + { + "routeId": "L711", + "platformId": "U32071Z1", + "id": "effe92ba-c356-4ab7-86ed-60131b50e49e" + }, + { + "routeId": "L600", + "platformId": "U32071Z2", + "id": "a6e901e0-764f-457c-9a48-7167913fe69d" + }, + { + "routeId": "L711", + "platformId": "U32071Z2", + "id": "ff57e587-9ddb-4103-a844-8c14bd1d4733" + }, + { + "routeId": "L600", + "platformId": "U32072Z1", + "id": "d86d9559-c2fb-4e4d-b92a-a9acfe05476e" + }, + { + "routeId": "L711", + "platformId": "U32072Z1", + "id": "886f124b-eb43-4c80-be58-98baab0f7bca" + }, + { + "routeId": "L600", + "platformId": "U32072Z2", + "id": "bec8871b-f025-4598-b0e7-bce9ed1b11bc" + }, + { + "routeId": "L711", + "platformId": "U32072Z2", + "id": "17749cf5-d976-4097-9668-117b7ea8fae3" + }, + { + "routeId": "L404", + "platformId": "U32073Z2", + "id": "4eab295b-778d-403e-8014-58d9569d0e7b" + }, + { + "routeId": "L404", + "platformId": "U32074Z1", + "id": "ace58a44-bf16-475e-baa7-94bf161a676d" + }, + { + "routeId": "L404", + "platformId": "U32074Z2", + "id": "52dfc4bd-d3b4-42be-8fdc-956ffe8681ea" + }, + { + "routeId": "L404", + "platformId": "U32075Z1", + "id": "6e80f934-20b1-4f1c-83f0-72a9c85f8042" + }, + { + "routeId": "L404", + "platformId": "U32075Z2", + "id": "6d48ac90-eaa4-40e2-aec0-4a1436266f70" + }, + { + "routeId": "L404", + "platformId": "U32076Z1", + "id": "d6568b58-cd70-4b8c-b422-1141b4428a4b" + }, + { + "routeId": "L404", + "platformId": "U32076Z2", + "id": "e25f17c1-d415-47e6-9d12-1fbe0f7abed9" + }, + { + "routeId": "L404", + "platformId": "U32077Z1", + "id": "e1b06141-db6a-4643-8c3e-0fe6a96690a3" + }, + { + "routeId": "L404", + "platformId": "U32077Z2", + "id": "e1f73225-38c1-49b6-946a-af08db99afea" + }, + { + "routeId": "L404", + "platformId": "U32079Z1", + "id": "a5811920-ada7-4007-9de4-08a46381fad5" + }, + { + "routeId": "L404", + "platformId": "U32079Z2", + "id": "29df4373-5bf4-4e03-a5de-96cc341b826b" + }, + { + "routeId": "L404", + "platformId": "U32080Z1", + "id": "93e1aec4-d5e2-416f-92ee-96029f89e520" + }, + { + "routeId": "L404", + "platformId": "U32082Z1", + "id": "2ec7d535-2981-4e05-9ece-8a519f6887a0" + }, + { + "routeId": "L404", + "platformId": "U32082Z2", + "id": "a689a128-2da3-4d3e-9f41-3f5c532a0529" + }, + { + "routeId": "L404", + "platformId": "U32083Z1", + "id": "8f3ffc3b-cbcd-4c0a-83a4-d4f6661b457d" + }, + { + "routeId": "L404", + "platformId": "U32083Z2", + "id": "000748e1-33fb-4712-a0a6-10c61196190a" + }, + { + "routeId": "L404", + "platformId": "U32084Z1", + "id": "f1db89a4-575f-4b1b-b4d2-fa41746c9ee3" + }, + { + "routeId": "L404", + "platformId": "U32084Z2", + "id": "3b0dd1c3-37d3-4542-b32b-ccab1fca6bf2" + }, + { + "routeId": "L404", + "platformId": "U32086Z1", + "id": "df41ff92-3f30-43ec-a89e-fadd41f3cc0c" + }, + { + "routeId": "L404", + "platformId": "U32086Z2", + "id": "2a60b38b-ba9b-44e7-b910-4ec95dc762aa" + }, + { + "routeId": "L404", + "platformId": "U32087Z2", + "id": "ef61653b-f641-4b15-8167-d3368082f69e" + }, + { + "routeId": "L404", + "platformId": "U32087Z3", + "id": "b4c9209b-1e88-41c0-a53c-23954ea7bdb3" + }, + { + "routeId": "L404", + "platformId": "U32088Z1", + "id": "2277dfd7-997d-4f1f-bee0-841e698dde56" + }, + { + "routeId": "L404", + "platformId": "U32088Z2", + "id": "5d927c2d-faad-49d6-afe3-ee734cf6b277" + }, + { + "routeId": "L399", + "platformId": "U3208Z1", + "id": "93ebf39e-3be2-4c76-9f79-9923e50350c0" + }, + { + "routeId": "L399", + "platformId": "U3208Z2", + "id": "605792ea-c1d0-4bd5-952f-e0286ea4a5f8" + }, + { + "routeId": "L420", + "platformId": "U32091Z1", + "id": "58ad002f-d7aa-4ebc-841b-d52a2b616594" + }, + { + "routeId": "L420", + "platformId": "U32091Z2", + "id": "99a787fa-dc91-4583-a612-765ecf0db9e6" + }, + { + "routeId": "L420", + "platformId": "U32092Z1", + "id": "fe3804ee-37bd-4f10-9ab4-8e4d6787e7a0" + }, + { + "routeId": "L420", + "platformId": "U32093Z1", + "id": "a2863e02-d74c-46d7-abc6-659ad3a865d8" + }, + { + "routeId": "L420", + "platformId": "U32094Z1", + "id": "4fa9939c-2e96-467a-9d11-77f4e309c733" + }, + { + "routeId": "L420", + "platformId": "U32095Z1", + "id": "e6b36c36-3414-494a-b1d8-5d498d2b2dee" + }, + { + "routeId": "L420", + "platformId": "U32096Z1", + "id": "e51a3d50-d215-4fb6-b81f-12ac22e3ffbe" + }, + { + "routeId": "L420", + "platformId": "U32097Z1", + "id": "cf7870fa-196d-4572-940f-b0ba1915ccaa" + }, + { + "routeId": "L420", + "platformId": "U32098Z1", + "id": "84d3d50d-81be-4a38-9e13-604df1de6900" + }, + { + "routeId": "L420", + "platformId": "U32099Z1", + "id": "d492223d-0fdf-4612-83a4-f7b8fe2f446b" + }, + { + "routeId": "L420", + "platformId": "U32099Z2", + "id": "1958add6-efac-4f04-a73b-5296a7c97d68" + }, + { + "routeId": "L120", + "platformId": "U3209Z1", + "id": "e7d68e47-4b52-4c56-9f50-6f843a58fcc0" + }, + { + "routeId": "L130", + "platformId": "U3209Z1", + "id": "0354bc6b-bf36-4792-b7bb-2f1858c32eea" + }, + { + "routeId": "L951", + "platformId": "U3209Z1", + "id": "d786883b-0da5-4004-98cc-acf3af939421" + }, + { + "routeId": "L101", + "platformId": "U320Z1", + "id": "4df8917d-d7ae-4444-a26e-087420140200" + }, + { + "routeId": "L101", + "platformId": "U320Z2", + "id": "4c8d2916-ba8d-4ff8-80c1-e0adad6c534e" + }, + { + "routeId": "L420", + "platformId": "U32100Z1", + "id": "6c5dfb49-7db5-45fa-b76e-ad7ca7a3771b" + }, + { + "routeId": "L420", + "platformId": "U32100Z2", + "id": "98adbda3-cc11-448d-a284-a6cb53360bbe" + }, + { + "routeId": "L420", + "platformId": "U32101Z1", + "id": "6d12e523-61a9-41cb-bf16-1193fe6acf24" + }, + { + "routeId": "L420", + "platformId": "U32101Z2", + "id": "63fe2da6-0477-4859-b25d-beaa4eeac449" + }, + { + "routeId": "L420", + "platformId": "U32102Z1", + "id": "5bf46fef-bbf7-40a8-8753-f89c68240db0" + }, + { + "routeId": "L420", + "platformId": "U32103Z1", + "id": "bbf537f1-1f8d-4b7d-a3d5-20fe2f89d1ea" + }, + { + "routeId": "L420", + "platformId": "U32103Z2", + "id": "d2c3d876-4fae-408e-ba01-7b8b307104eb" + }, + { + "routeId": "L650", + "platformId": "U32106Z1", + "id": "618723c2-0364-45c8-9abe-2a87f7da34be" + }, + { + "routeId": "L650", + "platformId": "U32106Z2", + "id": "602add3b-f5cb-4739-9b39-cbd5df48f96e" + }, + { + "routeId": "L305", + "platformId": "U32107Z1", + "id": "1395a94f-6523-41b8-b941-ac3e9779c041" + }, + { + "routeId": "L305", + "platformId": "U32107Z2", + "id": "50d88e0d-27ed-4650-8fea-a5a2d0bf10ca" + }, + { + "routeId": "L305", + "platformId": "U32108Z1", + "id": "b17f971a-076c-4150-813f-7ff3ecd9c117" + }, + { + "routeId": "L305", + "platformId": "U32108Z2", + "id": "5c8167ad-b539-42c6-bc35-687661846928" + }, + { + "routeId": "L1357", + "platformId": "U32108Z301", + "id": "d6629d72-9ec0-434e-a209-a6bc990bd5b3" + }, + { + "routeId": "L305", + "platformId": "U32109Z1", + "id": "71359303-6f34-45d9-9c2b-b1ad584cae0e" + }, + { + "routeId": "L234", + "platformId": "U3210Z1", + "id": "8ac7d6ca-7777-4e5c-bdf7-4c71427ddba2" + }, + { + "routeId": "L235", + "platformId": "U3210Z1", + "id": "0959908c-cf41-49b9-b2f9-8291c5eb5e78" + }, + { + "routeId": "L236", + "platformId": "U3210Z1", + "id": "934a0868-400e-49b2-8266-4a07d0c2685b" + }, + { + "routeId": "L234", + "platformId": "U3210Z2", + "id": "b0a1f51a-2f64-439a-b29b-aed3ab100048" + }, + { + "routeId": "L235", + "platformId": "U3210Z2", + "id": "8813f52f-93ed-4ab5-9c8f-059f37ea7cf4" + }, + { + "routeId": "L236", + "platformId": "U3210Z2", + "id": "b2b5f5c4-89e1-4216-a787-77e04ee3134a" + }, + { + "routeId": "L305", + "platformId": "U32110Z1", + "id": "c0a449a4-e975-4244-9eff-79d6649e917d" + }, + { + "routeId": "L305", + "platformId": "U32110Z2", + "id": "a1bff1fd-3588-4ba0-9dcc-d4da8ac8c312" + }, + { + "routeId": "L427", + "platformId": "U32111Z11", + "id": "52b8e067-86c6-483b-8c26-794e22c4482e" + }, + { + "routeId": "L904", + "platformId": "U3211Z1", + "id": "688b0156-aa30-4a4a-967a-15dfc7e8b886" + }, + { + "routeId": "L904", + "platformId": "U3211Z3", + "id": "70ae137d-ab3d-4a72-a0aa-acee8b63501a" + }, + { + "routeId": "L720", + "platformId": "U32124Z1", + "id": "00cdefe3-140f-45d3-ba97-0b9baf3b935e" + }, + { + "routeId": "L720", + "platformId": "U32124Z2", + "id": "0edb197a-e211-4df6-afb6-5bfe224d7a8b" + }, + { + "routeId": "L720", + "platformId": "U32125Z1", + "id": "85e650b7-f889-4b70-bb28-bf030428254a" + }, + { + "routeId": "L720", + "platformId": "U32126Z1", + "id": "f702fb11-9d6f-430a-abe3-9bc355bf3928" + }, + { + "routeId": "L720", + "platformId": "U32126Z2", + "id": "60948c82-68ec-432b-85cc-bfd95efe63bf" + }, + { + "routeId": "L720", + "platformId": "U32127Z1", + "id": "d0a517c8-cebc-4bea-b0e2-8807ceb24529" + }, + { + "routeId": "L720", + "platformId": "U32127Z2", + "id": "26d0e1c2-88a5-4758-a10a-6aa924c7d8c6" + }, + { + "routeId": "L720", + "platformId": "U32128Z1", + "id": "5c9fc932-cb03-4bb1-9692-92c2f14bafac" + }, + { + "routeId": "L720", + "platformId": "U32128Z2", + "id": "f5642d02-57fc-4b5e-9f0f-35dfeddd0f12" + }, + { + "routeId": "L158", + "platformId": "U3212Z1", + "id": "b813c455-8bfb-498b-99ed-09d47eb0b0a7" + }, + { + "routeId": "L202", + "platformId": "U3212Z1", + "id": "97931b69-796b-48f2-830a-5476705726d3" + }, + { + "routeId": "L915", + "platformId": "U3212Z1", + "id": "bc7cd5b6-b1ee-45c6-a5d3-90acb6bb2b6d" + }, + { + "routeId": "L166", + "platformId": "U3212Z1", + "id": "5010148e-4ea4-4c7b-b788-8b2db7062cb8" + }, + { + "routeId": "L58", + "platformId": "U3212Z1", + "id": "78d8ab7b-9b35-4f73-bc58-2c1f8320e99d" + }, + { + "routeId": "L158", + "platformId": "U3212Z2", + "id": "8456e7d5-04df-4600-b73d-3f626abf6542" + }, + { + "routeId": "L202", + "platformId": "U3212Z2", + "id": "325b9e60-1157-4e8a-8997-1d973034cec3" + }, + { + "routeId": "L915", + "platformId": "U3212Z2", + "id": "3fcf89fe-cf03-4c75-b850-57fea8f3c93a" + }, + { + "routeId": "L166", + "platformId": "U3212Z2", + "id": "ac8abe36-75bb-4321-8b2d-d6b2daca9976" + }, + { + "routeId": "L58", + "platformId": "U3212Z2", + "id": "47425d06-f4f8-485a-9c7b-9975740b578a" + }, + { + "routeId": "L1221", + "platformId": "U3212Z301", + "id": "ce133fdc-a928-4ee4-9ff3-087489bcabdd" + }, + { + "routeId": "L1303", + "platformId": "U3212Z301", + "id": "34fb5696-76ca-4250-ac37-96c1457821c7" + }, + { + "routeId": "L1357", + "platformId": "U32131Z301", + "id": "44ecd594-cd80-4270-9046-6e29cf79f348" + }, + { + "routeId": "L904", + "platformId": "U3213Z1", + "id": "0e664e52-2013-4d8e-bf2a-5e5bdeb7eb83" + }, + { + "routeId": "L907", + "platformId": "U3213Z1", + "id": "681fdfec-a0b2-4882-8b44-b77ff4215272" + }, + { + "routeId": "L908", + "platformId": "U3213Z1", + "id": "28fd64a2-1a79-4cd0-8376-69dabc205f67" + }, + { + "routeId": "L910", + "platformId": "U3213Z1", + "id": "cf11262e-8491-449d-a6d9-ee89c95a9832" + }, + { + "routeId": "L400", + "platformId": "U32149Z1", + "id": "6a7bf794-8947-429d-8536-e728d889cc62" + }, + { + "routeId": "L400", + "platformId": "U32150Z1", + "id": "c29979fa-768b-423f-b116-ba8c25d230d2" + }, + { + "routeId": "L400", + "platformId": "U32150Z2", + "id": "e8c20a94-559a-430b-953d-b47a490af33f" + }, + { + "routeId": "L400", + "platformId": "U32151Z2", + "id": "6267d7c5-6ace-41d9-ba31-b66051281410" + }, + { + "routeId": "L400", + "platformId": "U32152Z2", + "id": "4b09eda1-db0b-4979-aa57-9ec830015600" + }, + { + "routeId": "L700", + "platformId": "U32155Z1", + "id": "6e010dd2-4881-4a00-942c-cd6a94024286" + }, + { + "routeId": "L700", + "platformId": "U32155Z2", + "id": "4c924ce3-3698-44ce-b527-43dfbdfb9c06" + }, + { + "routeId": "L305", + "platformId": "U32157Z1", + "id": "c3aaeb09-d68e-4f5f-b9e0-99e36bc5b741" + }, + { + "routeId": "L1357", + "platformId": "U32157Z301", + "id": "32b31ab2-87a7-479f-a263-fe23831987ef" + }, + { + "routeId": "L305", + "platformId": "U32158Z1", + "id": "2ffd35b5-9f84-4482-8ffb-8f057fa5c5da" + }, + { + "routeId": "L305", + "platformId": "U32160Z1", + "id": "e4e2ff0e-9d4f-41ff-ab14-47bd9aa60357" + }, + { + "routeId": "L305", + "platformId": "U32160Z2", + "id": "5c291637-122f-4f30-a382-eb1d0b023da9" + }, + { + "routeId": "L305", + "platformId": "U32161Z1", + "id": "cba28080-9bd1-4906-acc0-9bde610935c5" + }, + { + "routeId": "L305", + "platformId": "U32161Z2", + "id": "c71ae9b9-e3e5-453f-a4f3-c165498f25d8" + }, + { + "routeId": "L305", + "platformId": "U32162Z1", + "id": "3efe0a4f-d066-4206-92f0-9b6ec844bdd7" + }, + { + "routeId": "L305", + "platformId": "U32162Z2", + "id": "5093407b-3eeb-4181-92fb-5f90016d4322" + }, + { + "routeId": "L305", + "platformId": "U32163Z1", + "id": "7236825f-7393-4377-b7a4-b600dafa287d" + }, + { + "routeId": "L305", + "platformId": "U32163Z2", + "id": "a54ade45-d59e-4d7e-be1e-fe454cb96009" + }, + { + "routeId": "L305", + "platformId": "U32164Z1", + "id": "91f1e38c-09a7-4f1b-bafd-7fa3c5b64130" + }, + { + "routeId": "L305", + "platformId": "U32164Z2", + "id": "9775b3b2-082d-41bb-a04b-b26b8feabb4b" + }, + { + "routeId": "L305", + "platformId": "U32165Z1", + "id": "305dc0ef-cf2b-41a5-9592-b0bee9a6716b" + }, + { + "routeId": "L305", + "platformId": "U32165Z2", + "id": "591fdddd-469b-4560-a9ef-ef711a27f41c" + }, + { + "routeId": "L305", + "platformId": "U32166Z1", + "id": "34f0d63d-581b-45b6-9c4f-1002639bfcd5" + }, + { + "routeId": "L305", + "platformId": "U32167Z1", + "id": "d04402f2-e1ad-4980-b33e-d41cfcc5c4f8" + }, + { + "routeId": "L305", + "platformId": "U32167Z2", + "id": "7c9a1399-37b9-4a59-b4b9-1bd615fb71ed" + }, + { + "routeId": "L305", + "platformId": "U32168Z1", + "id": "91fb57cf-faca-4e7b-add4-019849138b24" + }, + { + "routeId": "L305", + "platformId": "U32168Z2", + "id": "e1c4434e-0c68-4e64-b5b2-0a92c2dcc7a1" + }, + { + "routeId": "L108", + "platformId": "U3216Z1", + "id": "9c12f0ba-b215-4f67-bbfe-f7e6a7257c37" + }, + { + "routeId": "L108", + "platformId": "U3216Z2", + "id": "400cbf79-f9a3-4593-ab60-30bd222f808c" + }, + { + "routeId": "L108", + "platformId": "U3217Z1", + "id": "0bba228e-2257-44c4-9249-45111558f5db" + }, + { + "routeId": "L108", + "platformId": "U3217Z2", + "id": "152c3265-8c75-4ce6-882f-9dfd9bc5af42" + }, + { + "routeId": "L711", + "platformId": "U32181Z1", + "id": "c1fa3e9c-6870-4239-8ce0-722294bec2ac" + }, + { + "routeId": "L711", + "platformId": "U32181Z2", + "id": "d2871b69-a420-43d5-a3bf-eb0004393b40" + }, + { + "routeId": "L711", + "platformId": "U32182Z1", + "id": "4065ed6b-d4fa-4894-8c45-dc7db42fe8dd" + }, + { + "routeId": "L711", + "platformId": "U32182Z2", + "id": "04e8eaf6-4452-4ce2-90d9-27cc35cfe0c7" + }, + { + "routeId": "L711", + "platformId": "U32183Z1", + "id": "a6c4d4c6-8234-4de6-94c1-0e7867ad0ab7" + }, + { + "routeId": "L711", + "platformId": "U32183Z2", + "id": "a95ae800-6c5e-4f2f-9408-5847d02e477c" + }, + { + "routeId": "L711", + "platformId": "U32184Z1", + "id": "937bb556-c819-46f4-ab3c-439d26a387fd" + }, + { + "routeId": "L711", + "platformId": "U32184Z2", + "id": "1533bb98-1105-4dc3-a70e-43d6abfe4f33" + }, + { + "routeId": "L711", + "platformId": "U32187Z1", + "id": "c3ee418f-f0b2-44b9-b240-4d87c1d0d9fb" + }, + { + "routeId": "L711", + "platformId": "U32187Z2", + "id": "0cb54277-6cc1-4ff7-89c0-d20dd078b89b" + }, + { + "routeId": "L108", + "platformId": "U3218Z1", + "id": "b5b1922f-6c4b-4858-9c87-9219cb33c85c" + }, + { + "routeId": "L108", + "platformId": "U3218Z2", + "id": "8523747b-7a73-44ba-99a4-f5aa4f2d9098" + }, + { + "routeId": "L404", + "platformId": "U32193Z1", + "id": "2d310aee-1fc8-45bb-afa6-11d8620964c6" + }, + { + "routeId": "L404", + "platformId": "U32193Z2", + "id": "142ab09e-ef1e-433a-9113-8dbaa78b8fbc" + }, + { + "routeId": "L404", + "platformId": "U32194Z1", + "id": "0e892a34-9111-40c0-97b3-1c1bcb05c19e" + }, + { + "routeId": "L404", + "platformId": "U32194Z2", + "id": "bc23e983-15ae-41ef-b063-a919c451bcf1" + }, + { + "routeId": "L404", + "platformId": "U32195Z1", + "id": "396dfd2b-5dd6-4b3f-90a1-13ec6f8cb080" + }, + { + "routeId": "L404", + "platformId": "U32195Z2", + "id": "50e94ba6-f61c-40ed-9e43-b332667abc96" + }, + { + "routeId": "L404", + "platformId": "U32196Z1", + "id": "bf79485a-589d-4826-b006-156dfc9c5764" + }, + { + "routeId": "L404", + "platformId": "U32196Z2", + "id": "af38dd35-97f7-416c-a73f-c3ff684d2bdd" + }, + { + "routeId": "L404", + "platformId": "U32197Z1", + "id": "5eb6a0cb-7511-4606-93eb-c3c44ebd59d9" + }, + { + "routeId": "L404", + "platformId": "U32197Z2", + "id": "da1d95ff-953f-44c7-bb84-5c80f873ad3b" + }, + { + "routeId": "L404", + "platformId": "U32198Z1", + "id": "fd14094b-d9ec-4f4d-8996-57731549d8d4" + }, + { + "routeId": "L20", + "platformId": "U321Z1", + "id": "6de9dcf3-ed49-4505-9237-67bebb19017f" + }, + { + "routeId": "L26", + "platformId": "U321Z1", + "id": "73ce9f94-80bb-438e-8268-a0164f48fd2b" + }, + { + "routeId": "L91", + "platformId": "U321Z1", + "id": "e443ce08-5c05-45a3-a5d0-50ae10e007e0" + }, + { + "routeId": "L991", + "platformId": "U321Z101", + "id": "348cabdc-81ba-47b0-b4fe-0c2aabd8aa10" + }, + { + "routeId": "L991", + "platformId": "U321Z102", + "id": "00f69977-9f26-4765-be5a-620d25f75edb" + }, + { + "routeId": "L143", + "platformId": "U321Z12", + "id": "7bdf2f8c-a53b-44ab-a9ef-0ca8d9309d90" + }, + { + "routeId": "L149", + "platformId": "U321Z12", + "id": "db5a9952-82f7-4b4b-babc-c7ee40804fe6" + }, + { + "routeId": "L180", + "platformId": "U321Z12", + "id": "caeb4791-a4a3-4fa4-8e96-8bc25a1ea07d" + }, + { + "routeId": "L143", + "platformId": "U321Z13", + "id": "6eb98fc9-c3f2-43cc-8d2b-8b03879bf72a" + }, + { + "routeId": "L149", + "platformId": "U321Z13", + "id": "4eb81acc-8bbf-485d-bd95-5336ea157a51" + }, + { + "routeId": "L180", + "platformId": "U321Z13", + "id": "e00a48ce-56e9-445c-9a9c-5e6ea09d14f7" + }, + { + "routeId": "L340", + "platformId": "U321Z18", + "id": "0d8489b1-973d-466e-a6e1-1e05443600b4" + }, + { + "routeId": "L20", + "platformId": "U321Z2", + "id": "a77cdb3d-e7e1-4dcd-9849-030d0b1f1441" + }, + { + "routeId": "L26", + "platformId": "U321Z2", + "id": "0e1083e3-b4a2-436a-b309-99ccea727948" + }, + { + "routeId": "L91", + "platformId": "U321Z2", + "id": "b3be00fe-3fa8-474b-a9ce-146988b32cfd" + }, + { + "routeId": "L143", + "platformId": "U321Z22", + "id": "cce20a1e-892f-4b90-95d4-0c8469365cb6" + }, + { + "routeId": "L149", + "platformId": "U321Z22", + "id": "90641973-3482-42ff-9a8a-c13c8f8774b9" + }, + { + "routeId": "L180", + "platformId": "U321Z22", + "id": "3851121b-61aa-4439-bb3d-c7a456d129bc" + }, + { + "routeId": "L902", + "platformId": "U321Z22", + "id": "71a2be18-0f81-414c-a853-ebda2cb45732" + }, + { + "routeId": "L909", + "platformId": "U321Z22", + "id": "d5991f17-69d1-49f2-86f4-ee7846103fea" + }, + { + "routeId": "L8", + "platformId": "U321Z3", + "id": "449a5466-fe37-4722-867a-faf26c0462ee" + }, + { + "routeId": "L18", + "platformId": "U321Z3", + "id": "550c1a78-7e34-4083-9220-31a85dfda734" + }, + { + "routeId": "L20", + "platformId": "U321Z3", + "id": "df1185b2-9ade-42ad-98b7-71dbac3ea177" + }, + { + "routeId": "L26", + "platformId": "U321Z3", + "id": "71b13aff-e33f-4e34-bed6-8c10ba3f9518" + }, + { + "routeId": "L91", + "platformId": "U321Z3", + "id": "a6cb11cf-d8d4-4951-9c10-691b4b162e21" + }, + { + "routeId": "L143", + "platformId": "U321Z3", + "id": "80029fc7-104c-4557-8195-145b47dc444e" + }, + { + "routeId": "L149", + "platformId": "U321Z3", + "id": "211e72fd-d86c-42d7-9ca7-dedd14f39b21" + }, + { + "routeId": "L180", + "platformId": "U321Z3", + "id": "2ac6184c-c1a0-4b3f-be40-bf4d70393a9c" + }, + { + "routeId": "L902", + "platformId": "U321Z3", + "id": "a7725d19-50c0-41b5-b9db-39129c14a7d3" + }, + { + "routeId": "L909", + "platformId": "U321Z3", + "id": "83f65174-c835-4758-99f4-cff43e287450" + }, + { + "routeId": "L8", + "platformId": "U321Z4", + "id": "4b5e981c-0a09-4907-a538-aa68c7d160d8" + }, + { + "routeId": "L18", + "platformId": "U321Z4", + "id": "3102f2b7-0d45-4383-9d78-830538a9336d" + }, + { + "routeId": "L20", + "platformId": "U321Z4", + "id": "10cc53bb-09bb-498f-8198-9e2c5b2f6636" + }, + { + "routeId": "L26", + "platformId": "U321Z4", + "id": "52736a6f-5d82-41f1-875f-86d348325f07" + }, + { + "routeId": "L91", + "platformId": "U321Z4", + "id": "198da94d-4482-4cca-8cff-3ac7220e7cd2" + }, + { + "routeId": "L107", + "platformId": "U321Z5", + "id": "cc4dddf8-b4f1-44e6-b65b-a45168101bf1" + }, + { + "routeId": "L108", + "platformId": "U321Z5", + "id": "f9112da2-bd9e-49d5-acbf-65767821bd94" + }, + { + "routeId": "L160", + "platformId": "U321Z5", + "id": "a5532bd4-a7f7-4b37-883e-eb81bf6bc5a1" + }, + { + "routeId": "L116", + "platformId": "U321Z5", + "id": "e9338773-6465-48fe-8393-9be0035e0a1c" + }, + { + "routeId": "L147", + "platformId": "U321Z5", + "id": "aee9fae0-29d7-4eec-9b44-8a1c3646c563" + }, + { + "routeId": "L355", + "platformId": "U321Z5", + "id": "a984b926-7029-4122-9575-813010896b7b" + }, + { + "routeId": "L107", + "platformId": "U321Z6", + "id": "a905a2d4-5b89-412e-9964-68a110bb2b8c" + }, + { + "routeId": "L147", + "platformId": "U321Z6", + "id": "e54c0cfb-6366-49d4-b58c-a4dd60df62af" + }, + { + "routeId": "L108", + "platformId": "U321Z7", + "id": "2683196c-6d60-4d01-b2a9-3a1e35e71ba3" + }, + { + "routeId": "L160", + "platformId": "U321Z7", + "id": "acc530de-ae64-47dd-b695-213986d8a636" + }, + { + "routeId": "L116", + "platformId": "U321Z7", + "id": "3a73e018-d30e-4919-9f0e-de8d5424e6b5" + }, + { + "routeId": "L355", + "platformId": "U321Z7", + "id": "73f02b4e-b0e0-4ac4-a08a-5ce3b7f66932" + }, + { + "routeId": "L350", + "platformId": "U321Z74", + "id": "0ff0b948-7a78-4dda-93ef-3e440caba018" + }, + { + "routeId": "L954", + "platformId": "U321Z81", + "id": "8407fd20-7cbb-4a19-bc85-84f0cad50546" + }, + { + "routeId": "L954", + "platformId": "U321Z82", + "id": "2be7e268-9a76-4105-bf2a-a7af8a78d385" + }, + { + "routeId": "L340", + "platformId": "U321Z9", + "id": "0f58a360-129f-47d2-a18b-e6db5d8d666c" + }, + { + "routeId": "L350", + "platformId": "U321Z9", + "id": "7e10dd86-c832-44ed-b046-abbaa29c3713" + }, + { + "routeId": "L248", + "platformId": "U3220Z1", + "id": "f3faa83e-939f-4029-9453-f474539fb768" + }, + { + "routeId": "L248", + "platformId": "U3221Z1", + "id": "9e9397f9-4ae4-4924-a008-96bfed7bef18" + }, + { + "routeId": "L454", + "platformId": "U32226Z1", + "id": "fef6e0fd-6778-45d5-ad81-8ef3c7513736" + }, + { + "routeId": "L454", + "platformId": "U32226Z2", + "id": "b7d14a3f-61d5-4fd9-af04-9106be844805" + }, + { + "routeId": "L720", + "platformId": "U32227Z2", + "id": "12cbc875-8024-4192-88bf-2d53985c5894" + }, + { + "routeId": "L248", + "platformId": "U3222Z1", + "id": "7310add6-02da-4f49-91f2-f337358025f4" + }, + { + "routeId": "L415", + "platformId": "U32230Z1", + "id": "a9b274a5-74fc-415c-bbda-0d0cdb5fc91e" + }, + { + "routeId": "L415", + "platformId": "U32230Z2", + "id": "a56934f1-710a-4da2-b286-14b833df5da0" + }, + { + "routeId": "L415", + "platformId": "U32231Z1", + "id": "0494ad8d-4f4f-461d-8774-1f4c0fdf8de2" + }, + { + "routeId": "L415", + "platformId": "U32231Z2", + "id": "d7d68955-95bf-4251-a09d-0474cd02ec8e" + }, + { + "routeId": "L415", + "platformId": "U32232Z1", + "id": "c24ef5f6-4392-471a-86d3-2c706e8e0203" + }, + { + "routeId": "L415", + "platformId": "U32232Z2", + "id": "05c0e83b-5939-4cb0-9e65-96a015c280a6" + }, + { + "routeId": "L415", + "platformId": "U32234Z1", + "id": "379438a0-7830-47ac-858a-aa2263362a28" + }, + { + "routeId": "L415", + "platformId": "U32234Z2", + "id": "02596d25-1714-4f70-b79b-0a56dad5d34e" + }, + { + "routeId": "L1226", + "platformId": "U32235Z301", + "id": "f0b426b2-dc6f-4c33-8da9-e848eb06fc1c" + }, + { + "routeId": "L1366", + "platformId": "U32235Z301", + "id": "65937d74-b36a-4edc-aa45-679f2f85e8df" + }, + { + "routeId": "L1226", + "platformId": "U32236Z301", + "id": "645738a0-e637-4e20-841c-2bf3a172aca1" + }, + { + "routeId": "L1366", + "platformId": "U32236Z301", + "id": "e922f2ce-518f-4577-9183-adbf7b71b31b" + }, + { + "routeId": "L1226", + "platformId": "U32237Z301", + "id": "d4c42df1-a749-43ab-8bfb-0534b45fbfb5" + }, + { + "routeId": "L1366", + "platformId": "U32237Z301", + "id": "73e91e9f-6bd0-4fd6-9397-e5c3cd291b1b" + }, + { + "routeId": "L1226", + "platformId": "U32238Z301", + "id": "7233e0d5-a1c3-47a6-8fa2-94cdd7bf25a6" + }, + { + "routeId": "L1366", + "platformId": "U32238Z301", + "id": "6eca84fc-680d-4f99-9c3d-c5235a4647ef" + }, + { + "routeId": "L1226", + "platformId": "U32239Z301", + "id": "b8b39918-de03-425d-a526-3bae2bd4caf3" + }, + { + "routeId": "L1366", + "platformId": "U32239Z301", + "id": "610c5e3e-08c8-4abf-b11c-6c72ee11caca" + }, + { + "routeId": "L248", + "platformId": "U3223Z1", + "id": "a425afd3-903b-49fc-9c31-aaa5d5a2c2ad" + }, + { + "routeId": "L1226", + "platformId": "U32240Z301", + "id": "f8fc3426-933b-4418-8e94-0c9f301e4cec" + }, + { + "routeId": "L1366", + "platformId": "U32240Z301", + "id": "9ff3bdce-dccf-40ed-80ba-e804d80eeb73" + }, + { + "routeId": "L1226", + "platformId": "U32241Z301", + "id": "f7e6e7dd-9a18-40c2-bd58-d487218dd9a0" + }, + { + "routeId": "L1366", + "platformId": "U32241Z301", + "id": "72ccd277-e4c8-4c82-b867-7fd3edd25002" + }, + { + "routeId": "L1226", + "platformId": "U32242Z301", + "id": "12145f7d-24f4-4138-a97d-bab4b9e85196" + }, + { + "routeId": "L1366", + "platformId": "U32242Z301", + "id": "e36d8e72-5a18-4408-8152-fe5a51039284" + }, + { + "routeId": "L1226", + "platformId": "U32243Z301", + "id": "6a2b7449-656f-44bb-976d-c7555724e4cb" + }, + { + "routeId": "L1366", + "platformId": "U32243Z301", + "id": "a30deb02-200e-41d4-8441-e0fcfad7842d" + }, + { + "routeId": "L1226", + "platformId": "U32244Z301", + "id": "7d29b9b4-cf48-4644-a994-89a24f19ce40" + }, + { + "routeId": "L1226", + "platformId": "U32245Z301", + "id": "33321acb-4e21-45a5-9a9c-bdac6c178c2c" + }, + { + "routeId": "L1226", + "platformId": "U32246Z301", + "id": "6ec677ac-36fb-40bb-ae7b-55eafc145514" + }, + { + "routeId": "L248", + "platformId": "U3224Z1", + "id": "7a1f2ac3-efa8-4593-9ddc-1816872b4c12" + }, + { + "routeId": "L305", + "platformId": "U32255Z1", + "id": "83bd2e61-e21a-4e47-b394-bed0d3fb3180" + }, + { + "routeId": "L305", + "platformId": "U32255Z2", + "id": "aea8ccca-f572-4d12-bf54-07108417e43a" + }, + { + "routeId": "L1357", + "platformId": "U32255Z301", + "id": "dd7cc478-01d6-4fd0-8fbe-1fc927313489" + }, + { + "routeId": "L1357", + "platformId": "U32256Z301", + "id": "bcfb69b3-856e-42c1-a4f6-07b952b6d86b" + }, + { + "routeId": "L305", + "platformId": "U32259Z1", + "id": "39eb5629-a707-483d-afa8-84ce46d4ef14" + }, + { + "routeId": "L305", + "platformId": "U32259Z2", + "id": "5c19b835-ea06-4e5b-a426-0b00291db0d8" + }, + { + "routeId": "L248", + "platformId": "U3225Z1", + "id": "3775e663-18ee-4100-9905-29d64675aa93" + }, + { + "routeId": "L305", + "platformId": "U32260Z1", + "id": "25919380-06d4-4e78-ac8a-2ed2777b6eba" + }, + { + "routeId": "L305", + "platformId": "U32260Z2", + "id": "8fbf6cac-e70b-46ab-90fb-bbda30f5a4ea" + }, + { + "routeId": "L305", + "platformId": "U32261Z1", + "id": "349b8c83-263a-4e12-8236-971e2e749fbf" + }, + { + "routeId": "L305", + "platformId": "U32261Z2", + "id": "dd252354-f09a-4609-a31c-d7c374cdb605" + }, + { + "routeId": "L305", + "platformId": "U32262Z1", + "id": "172991b6-32db-4e92-9cbe-c3bebd05fff2" + }, + { + "routeId": "L305", + "platformId": "U32262Z2", + "id": "3250b69b-d217-42d0-b334-437f35329649" + }, + { + "routeId": "L305", + "platformId": "U32263Z1", + "id": "9a6005dd-e21f-4ad0-bac4-6b52a84df399" + }, + { + "routeId": "L305", + "platformId": "U32263Z2", + "id": "efe96b60-ddeb-4a9c-8ddd-8134d6921c32" + }, + { + "routeId": "L305", + "platformId": "U32264Z1", + "id": "763054f0-2b13-4fa9-81dc-83efaf8ac4ba" + }, + { + "routeId": "L305", + "platformId": "U32264Z2", + "id": "773a6d16-1c4f-4a60-a056-da8cf37d539d" + }, + { + "routeId": "L305", + "platformId": "U32265Z1", + "id": "ccc1d132-391c-4eeb-8164-3f1e0aa9fa04" + }, + { + "routeId": "L305", + "platformId": "U32265Z2", + "id": "28a684f2-8493-44fc-a40a-9307687cd138" + }, + { + "routeId": "L305", + "platformId": "U32266Z1", + "id": "15d84bf9-fb4d-4e03-8f51-67a63cb17663" + }, + { + "routeId": "L305", + "platformId": "U32266Z2", + "id": "7f45f2e6-906d-4269-9ac4-14711bc54d59" + }, + { + "routeId": "L305", + "platformId": "U32267Z1", + "id": "7ace57cb-58f6-44cc-ab03-b078aecc8842" + }, + { + "routeId": "L305", + "platformId": "U32267Z2", + "id": "5c51a86e-b2e7-4632-8ed2-a9463e716a6c" + }, + { + "routeId": "L305", + "platformId": "U32268Z1", + "id": "c5e2f344-bc19-4517-80aa-90c26da04567" + }, + { + "routeId": "L305", + "platformId": "U32268Z2", + "id": "a3d91b5a-ac93-415e-a37e-39719a8a5de3" + }, + { + "routeId": "L305", + "platformId": "U32269Z1", + "id": "e3b05763-d3a0-4141-8890-79f1c167b803" + }, + { + "routeId": "L305", + "platformId": "U32271Z1", + "id": "74f4ea04-61de-4fa6-87eb-ba10f9114a11" + }, + { + "routeId": "L305", + "platformId": "U32271Z2", + "id": "10606e35-f5b3-4c45-a4c9-5f56f711eca2" + }, + { + "routeId": "L413", + "platformId": "U32274Z1", + "id": "a2d94bdf-d7ab-4b19-aebf-5b61d920ad27" + }, + { + "routeId": "L413", + "platformId": "U32274Z2", + "id": "b02778f5-9fa4-45e4-9c6a-ddc4cc9247b1" + }, + { + "routeId": "L153", + "platformId": "U3227Z1", + "id": "ed794158-8650-49a8-875a-d44894ec0238" + }, + { + "routeId": "L153", + "platformId": "U3228Z1", + "id": "02f1c639-40ab-4d8e-aeef-0f960beb11e5" + }, + { + "routeId": "L153", + "platformId": "U3228Z2", + "id": "7b25892d-72bf-4a83-98dd-e07801603f91" + }, + { + "routeId": "L153", + "platformId": "U3229Z1", + "id": "a7199031-af68-47a6-9430-293ab2d70a77" + }, + { + "routeId": "L153", + "platformId": "U3229Z2", + "id": "59c9a1ae-15cd-4f68-8b5e-4e62a3fdcb0e" + }, + { + "routeId": "L138", + "platformId": "U322Z1", + "id": "6a410977-f4f5-4b95-b430-395261611c1d" + }, + { + "routeId": "L138", + "platformId": "U322Z2", + "id": "a974b5f4-87f4-4de5-8634-55468f8bb1b9" + }, + { + "routeId": "L170", + "platformId": "U322Z3", + "id": "7312effc-0722-4ee7-a11a-7ecdc9fa4bb0" + }, + { + "routeId": "L135", + "platformId": "U322Z3", + "id": "9a697336-9562-419e-afa7-c19f3eba213b" + }, + { + "routeId": "L136", + "platformId": "U322Z3", + "id": "e1889f00-c463-43e2-a49d-a2c959b2c50a" + }, + { + "routeId": "L213", + "platformId": "U322Z3", + "id": "93876c24-cece-44f6-b9d7-3f00a756f5f1" + }, + { + "routeId": "L905", + "platformId": "U322Z3", + "id": "541a3b10-5d3c-4fd9-aa17-52bee3b20303" + }, + { + "routeId": "L913", + "platformId": "U322Z3", + "id": "9569f875-7853-4db1-8c9e-1e204fcc17f4" + }, + { + "routeId": "L415", + "platformId": "U32302Z1", + "id": "ef707240-c1a8-4879-a770-1acd4223fa65" + }, + { + "routeId": "L415", + "platformId": "U32302Z2", + "id": "8cf98b35-0d3b-4e8c-96e9-18b88d3c3b92" + }, + { + "routeId": "L415", + "platformId": "U32303Z1", + "id": "73f499d1-8f4c-4551-9389-29c1e1c1d30a" + }, + { + "routeId": "L415", + "platformId": "U32303Z2", + "id": "88139355-7922-4994-86a8-0bbb37c767fa" + }, + { + "routeId": "L415", + "platformId": "U32304Z1", + "id": "b5fa0dc0-db9a-46bf-8940-deb5b3244c64" + }, + { + "routeId": "L415", + "platformId": "U32304Z2", + "id": "3adfdbf6-d387-467f-ab55-3d1fa69efb18" + }, + { + "routeId": "L415", + "platformId": "U32305Z1", + "id": "6bad8d56-032d-4eff-857e-211a16cfc999" + }, + { + "routeId": "L415", + "platformId": "U32306Z1", + "id": "b0fabb3f-4f24-42ec-954d-fcfccbca3c4c" + }, + { + "routeId": "L415", + "platformId": "U32306Z2", + "id": "b0325a34-f9b9-41ea-bc28-4213bdd3450b" + }, + { + "routeId": "L415", + "platformId": "U32307Z1", + "id": "1e7ab1bc-3b1c-4eed-9f0c-277ab56a46f7" + }, + { + "routeId": "L415", + "platformId": "U32307Z2", + "id": "77c37fb9-e694-45bf-a98c-b5b060b009f5" + }, + { + "routeId": "L415", + "platformId": "U32308Z1", + "id": "deba49f7-f391-4b95-b343-f78a38c406f8" + }, + { + "routeId": "L415", + "platformId": "U32308Z2", + "id": "99c83df9-6def-4008-a553-0c22e324d707" + }, + { + "routeId": "L415", + "platformId": "U32309Z1", + "id": "fc9fda85-1394-46b8-b92f-b1f8ef95e873" + }, + { + "routeId": "L415", + "platformId": "U32309Z2", + "id": "14ed52f2-0fed-4223-92d9-09066a49e241" + }, + { + "routeId": "L153", + "platformId": "U3230Z1", + "id": "0af6a641-2abc-4ef9-9c52-e13f7ec0af76" + }, + { + "routeId": "L153", + "platformId": "U3230Z2", + "id": "be502bbc-185b-4345-ac94-6a61d8eb4600" + }, + { + "routeId": "L415", + "platformId": "U32310Z1", + "id": "ccf74a32-0938-453b-a3f7-f9ba8ffed89c" + }, + { + "routeId": "L415", + "platformId": "U32310Z2", + "id": "8a95b4ad-4270-4135-ad6e-5bfe4aac76a4" + }, + { + "routeId": "L415", + "platformId": "U32311Z1", + "id": "7ee49a08-abfa-4be3-b44d-e8473afdd0b8" + }, + { + "routeId": "L415", + "platformId": "U32311Z2", + "id": "e9108a5c-4d0a-416f-ae3d-a7dfc1216da2" + }, + { + "routeId": "L415", + "platformId": "U32312Z1", + "id": "6f0429ab-8530-4ff9-99bc-0d1fcbd542ef" + }, + { + "routeId": "L415", + "platformId": "U32312Z2", + "id": "e1a7efb7-5e9e-446a-bcb9-1bcbff12147e" + }, + { + "routeId": "L415", + "platformId": "U32313Z1", + "id": "74fb1902-2567-4382-aee5-8c3db6e60a9d" + }, + { + "routeId": "L415", + "platformId": "U32313Z2", + "id": "864d22d2-cc9b-4f7c-904b-d622d9eef0ef" + }, + { + "routeId": "L415", + "platformId": "U32314Z1", + "id": "e6b10984-96df-4221-9868-338e81e755d0" + }, + { + "routeId": "L415", + "platformId": "U32314Z2", + "id": "a5375eb4-ce96-4444-8150-e4cb5d5590e5" + }, + { + "routeId": "L415", + "platformId": "U32315Z1", + "id": "fd66de6d-5016-4296-aeb5-9a23fde9ddb7" + }, + { + "routeId": "L415", + "platformId": "U32315Z2", + "id": "3b508b4c-7c90-402d-96f9-3d40f143bd5d" + }, + { + "routeId": "L415", + "platformId": "U32316Z1", + "id": "ef1d8653-7872-4831-aceb-15c9a093cb45" + }, + { + "routeId": "L415", + "platformId": "U32316Z2", + "id": "cd4d396d-7e7c-42c0-97f6-83fffedfd82d" + }, + { + "routeId": "L415", + "platformId": "U32317Z1", + "id": "9e8ceec8-4416-4bd5-b08a-887752c7f3c9" + }, + { + "routeId": "L415", + "platformId": "U32317Z2", + "id": "d31d9eed-e81d-4ca6-9d9e-573db4f0c472" + }, + { + "routeId": "L415", + "platformId": "U32318Z1", + "id": "92544253-eb3e-4b19-a34b-18f8433a7427" + }, + { + "routeId": "L415", + "platformId": "U32318Z2", + "id": "0e9debe0-dfc1-4cfb-97f8-d326d46bebfb" + }, + { + "routeId": "L153", + "platformId": "U3231Z1", + "id": "e27971bb-031e-4b35-8b9c-56a0b64ff217" + }, + { + "routeId": "L153", + "platformId": "U3231Z2", + "id": "16153a0e-ce62-4114-9723-e98bcdc433a1" + }, + { + "routeId": "L720", + "platformId": "U32323Z2", + "id": "ef887ba9-b216-4348-b5f1-00992f73a98b" + }, + { + "routeId": "L153", + "platformId": "U3232Z1", + "id": "7c1f457f-2623-4b1d-ab35-9f997ccbb8d4" + }, + { + "routeId": "L153", + "platformId": "U3232Z2", + "id": "c2a2a231-777d-4374-a6d2-d6d83bc3697d" + }, + { + "routeId": "L153", + "platformId": "U3233Z1", + "id": "c4f31e79-5713-43e2-ae4e-880178b031fe" + }, + { + "routeId": "L153", + "platformId": "U3233Z2", + "id": "2f25718a-f429-474e-a1b4-724ecad626ea" + }, + { + "routeId": "L153", + "platformId": "U3234Z1", + "id": "49d04811-09ec-4e32-bed1-5d86366b214b" + }, + { + "routeId": "L1357", + "platformId": "U32358Z301", + "id": "327142bc-f41b-4531-ab31-cc029f92a8d5" + }, + { + "routeId": "L1357", + "platformId": "U32359Z301", + "id": "94c5e685-35e1-472f-b309-f2765bc6a8a9" + }, + { + "routeId": "L146", + "platformId": "U3235Z2", + "id": "de667792-a9de-4c02-a121-779be2857c4e" + }, + { + "routeId": "L1357", + "platformId": "U32360Z301", + "id": "89c6e20a-8a9e-44ee-a547-b90050f61d20" + }, + { + "routeId": "L1357", + "platformId": "U32362Z301", + "id": "97bdb7bd-ebbe-4a00-acfa-8f69b0a50656" + }, + { + "routeId": "L117", + "platformId": "U3236Z1", + "id": "85527d5b-4670-4a4b-81a8-d33c390603d1" + }, + { + "routeId": "L917", + "platformId": "U3236Z1", + "id": "e0daf94d-3a77-4356-a9af-bcd2c36cb8e4" + }, + { + "routeId": "L117", + "platformId": "U3236Z2", + "id": "8eba895e-67d6-45f4-abbf-dd1673b3b539" + }, + { + "routeId": "L917", + "platformId": "U3236Z2", + "id": "3832a488-dff6-46e2-b01f-e0fdc4e9eed2" + }, + { + "routeId": "L415", + "platformId": "U32379Z1", + "id": "fe3e7f28-5b4d-4099-b468-10084f69ec50" + }, + { + "routeId": "L415", + "platformId": "U32379Z2", + "id": "8bfac4bc-66b2-4539-94fb-3294447df1a3" + }, + { + "routeId": "L224", + "platformId": "U3237Z1", + "id": "5cf6709a-9ba3-490a-82e7-0a8f6555b30c" + }, + { + "routeId": "L415", + "platformId": "U32380Z1", + "id": "07cb9c88-0b92-4f6e-839e-a088dbd4c113" + }, + { + "routeId": "L415", + "platformId": "U32380Z2", + "id": "f35d497f-5b15-4f34-bc05-d3cd9aac5283" + }, + { + "routeId": "L415", + "platformId": "U32381Z1", + "id": "4dc1c7e2-7054-49a2-95f9-4bc3e8e1a709" + }, + { + "routeId": "L415", + "platformId": "U32381Z2", + "id": "353d6b6b-255f-45c3-b34e-35f827564c7f" + }, + { + "routeId": "L153", + "platformId": "U3238Z1", + "id": "df22e223-4b57-4430-b202-d0896c8c221c" + }, + { + "routeId": "L169", + "platformId": "U3239Z1", + "id": "3dd7efb0-2a6d-4c37-840a-360dc6d11e7c" + }, + { + "routeId": "L202", + "platformId": "U3239Z1", + "id": "f0b9ed91-b2a0-42f3-a409-e02c1c4e9988" + }, + { + "routeId": "L169", + "platformId": "U3239Z2", + "id": "f80df68c-c1fa-4720-9c81-9cdebcc4d737" + }, + { + "routeId": "L202", + "platformId": "U3239Z2", + "id": "ec3a68e0-639a-4a1e-ba14-0c03921daa80" + }, + { + "routeId": "L159", + "platformId": "U323Z1", + "id": "84c341bf-a09f-4bb4-b33f-26c255353f19" + }, + { + "routeId": "L201", + "platformId": "U323Z1", + "id": "1c0b53a3-0e25-4dca-b0ff-0609e58e248f" + }, + { + "routeId": "L916", + "platformId": "U323Z1", + "id": "8b6eda37-ef18-4fd9-b9a1-d113aca2db07" + }, + { + "routeId": "L159", + "platformId": "U323Z3", + "id": "bcbc66c6-a228-417a-a716-3013c1ae5ac9" + }, + { + "routeId": "L201", + "platformId": "U323Z3", + "id": "60ecdab6-2a16-4b7f-814e-2ad3232dd544" + }, + { + "routeId": "L916", + "platformId": "U323Z3", + "id": "a9be8505-258a-4871-a94e-b3a8dc0c2a62" + }, + { + "routeId": "L173", + "platformId": "U3240Z3", + "id": "401794bb-c479-4f42-8dcf-5fa2b0afdbf5" + }, + { + "routeId": "L103", + "platformId": "U3242Z1", + "id": "4c92d89b-3ae5-4de2-97de-2cf2f62b77ed" + }, + { + "routeId": "L914", + "platformId": "U3242Z1", + "id": "064a700d-8327-4c33-a1de-460911b8190e" + }, + { + "routeId": "L348", + "platformId": "U3242Z1", + "id": "9e3b1b20-7e7e-4e5c-a623-39a374b52797" + }, + { + "routeId": "L369", + "platformId": "U3242Z1", + "id": "355fbf7a-bf56-4cd5-8fa4-85d2d0da74dd" + }, + { + "routeId": "L103", + "platformId": "U3242Z2", + "id": "0cd60e99-39a6-4bf7-a0ef-ca00b1fcbab0" + }, + { + "routeId": "L914", + "platformId": "U3242Z2", + "id": "6efedc12-0c56-45e6-b5b1-e2f5fabf6f72" + }, + { + "routeId": "L348", + "platformId": "U3242Z2", + "id": "33675339-cf85-4f98-85ae-0f4d8048e627" + }, + { + "routeId": "L369", + "platformId": "U3242Z2", + "id": "a5e465c0-cf25-4581-9df2-419ee4738e6b" + }, + { + "routeId": "L161", + "platformId": "U3243Z1", + "id": "06b6db67-2fc6-43da-95ac-91334ad1a732" + }, + { + "routeId": "L907", + "platformId": "U3243Z1", + "id": "be288cee-5bae-4fe8-8fab-1ac7673d8099" + }, + { + "routeId": "L312", + "platformId": "U3243Z1", + "id": "a6ccb269-993a-4acc-a567-77c1b162017f" + }, + { + "routeId": "L161", + "platformId": "U3243Z2", + "id": "5fe1b662-6d7a-4c8a-888b-02f49e2ed50e" + }, + { + "routeId": "L907", + "platformId": "U3243Z2", + "id": "482686de-50aa-47b1-bdf4-f806ecbc2663" + }, + { + "routeId": "L312", + "platformId": "U3243Z2", + "id": "0f6804bb-822d-4947-9aa6-b16c8fb2de65" + }, + { + "routeId": "L164", + "platformId": "U3245Z1", + "id": "3c67b2d0-66cf-40ad-8eb5-2b69a884d471" + }, + { + "routeId": "L164", + "platformId": "U3245Z2", + "id": "5338adf7-33b2-4a6b-97a5-bad9b491b73c" + }, + { + "routeId": "L312", + "platformId": "U3246Z1", + "id": "27f9a564-149c-4703-b101-a293eba3beeb" + }, + { + "routeId": "L322", + "platformId": "U3246Z1", + "id": "3aeb198b-c010-4254-adc2-9ec28649318b" + }, + { + "routeId": "L429", + "platformId": "U3246Z1", + "id": "0492fe48-f5c0-4008-a519-9adb47c3953f" + }, + { + "routeId": "L312", + "platformId": "U3246Z2", + "id": "49c66293-2927-4e4d-a491-741c69b40976" + }, + { + "routeId": "L322", + "platformId": "U3246Z2", + "id": "7ec89a95-0738-4387-8d07-548ab79e8399" + }, + { + "routeId": "L429", + "platformId": "U3246Z2", + "id": "efff6f89-75d7-4324-9d3e-6c0b1ebfcd61" + }, + { + "routeId": "L194", + "platformId": "U3249Z1", + "id": "b5cf6943-5ef5-4e05-9cca-13a83939f667" + }, + { + "routeId": "L1", + "platformId": "U324Z1", + "id": "718fe244-bdbc-4881-8314-9384a0087bd3" + }, + { + "routeId": "L8", + "platformId": "U324Z1", + "id": "ffd2041c-adbd-4f4a-b900-5b06b97441cc" + }, + { + "routeId": "L12", + "platformId": "U324Z1", + "id": "5079618d-9a29-4469-8df7-87a0f1b7f75a" + }, + { + "routeId": "L14", + "platformId": "U324Z1", + "id": "42b88d94-3e88-4b57-b9d6-ceb60b0e0fa5" + }, + { + "routeId": "L25", + "platformId": "U324Z1", + "id": "ea366398-9d88-48f8-92db-e9b9703636fd" + }, + { + "routeId": "L26", + "platformId": "U324Z1", + "id": "89e3f929-e520-4f03-81ce-945be4c71134" + }, + { + "routeId": "L91", + "platformId": "U324Z1", + "id": "b860b0d9-fa31-4f15-a376-b416b1afac47" + }, + { + "routeId": "L96", + "platformId": "U324Z1", + "id": "df4ac6af-3be3-41a3-9a22-afb8ca5a94f4" + }, + { + "routeId": "L1", + "platformId": "U324Z2", + "id": "1a62e2b4-f2a9-46cc-be32-b6316e3c5adf" + }, + { + "routeId": "L8", + "platformId": "U324Z2", + "id": "562edb7f-dc66-4ff9-91dc-b3e45a5272c6" + }, + { + "routeId": "L12", + "platformId": "U324Z2", + "id": "89c314cf-dec2-4e7b-b798-361854b69ef6" + }, + { + "routeId": "L14", + "platformId": "U324Z2", + "id": "75ea5cbd-300e-4a53-b81d-bbe8f6074f9f" + }, + { + "routeId": "L25", + "platformId": "U324Z2", + "id": "050de353-19b1-4e2b-bca8-56477b42388d" + }, + { + "routeId": "L26", + "platformId": "U324Z2", + "id": "7aa41d3e-3922-4298-a93b-902aff17785f" + }, + { + "routeId": "L91", + "platformId": "U324Z2", + "id": "457d1b41-fd99-4887-8e29-c2fe1df0207f" + }, + { + "routeId": "L96", + "platformId": "U324Z2", + "id": "53b6b970-d029-4077-b6a7-8285be365df5" + }, + { + "routeId": "L1014", + "platformId": "U32501Z301", + "id": "8f8ee3a7-db09-4222-829c-983af193d14f" + }, + { + "routeId": "L303", + "platformId": "U3250Z1", + "id": "b116ac0e-73f8-43e9-bea3-13f3ce9f346c" + }, + { + "routeId": "L303", + "platformId": "U3250Z2", + "id": "7a4f6ad8-da1d-458c-9c0a-8c9ff9fb426b" + }, + { + "routeId": "L315", + "platformId": "U3251Z1", + "id": "d1448799-866a-40a4-86cc-c3bd5bd0a4e9" + }, + { + "routeId": "L315", + "platformId": "U3251Z2", + "id": "9a0666a4-4631-4456-8328-53b0fe139327" + }, + { + "routeId": "L315", + "platformId": "U3252Z1", + "id": "b914e4c0-8259-4cbf-be1a-2e9077e8cc7d" + }, + { + "routeId": "L315", + "platformId": "U3252Z2", + "id": "ca55bc30-e6ed-436a-9b4a-5b7771da7e1e" + }, + { + "routeId": "L345", + "platformId": "U3253Z1", + "id": "88271173-82f9-4747-a16c-5921929c926e" + }, + { + "routeId": "L733", + "platformId": "U3253Z1", + "id": "18903ce5-a4cd-4cab-aaf6-792bfc139152" + }, + { + "routeId": "L427", + "platformId": "U3253Z1", + "id": "186c083f-7cc2-4c0d-a53a-d08d208e718e" + }, + { + "routeId": "L722", + "platformId": "U3253Z1", + "id": "9eb5dbce-0730-4db5-bc06-1d559b21e143" + }, + { + "routeId": "L315", + "platformId": "U3253Z2", + "id": "56bf392c-5122-4417-be7d-6ab01064c733" + }, + { + "routeId": "L345", + "platformId": "U3253Z2", + "id": "9384d69d-2df8-48c5-bf8a-c564367cc4b5" + }, + { + "routeId": "L733", + "platformId": "U3253Z2", + "id": "f1a61d89-1a0d-4f37-a006-77fed1ebd3d2" + }, + { + "routeId": "L427", + "platformId": "U3253Z2", + "id": "54de959e-13d2-4fd8-b9d6-a6303e5b976e" + }, + { + "routeId": "L722", + "platformId": "U3253Z2", + "id": "5b6a9536-6351-4325-b9ad-497c642f110a" + }, + { + "routeId": "L415", + "platformId": "U32541Z1", + "id": "0034756b-c7ff-486f-9d38-631b7a3f5c28" + }, + { + "routeId": "L415", + "platformId": "U32541Z2", + "id": "793ed1d5-50a3-48f6-a3aa-94f70e617789" + }, + { + "routeId": "L315", + "platformId": "U3254Z1", + "id": "fe51a3a6-d2f8-4eec-87e0-9782c6fe87b1" + }, + { + "routeId": "L315", + "platformId": "U3256Z1", + "id": "ea2057c2-1cbc-47bb-aa58-96c32d8bee3d" + }, + { + "routeId": "L499", + "platformId": "U3256Z1", + "id": "08fd03c0-086d-4dae-8c95-e3ce60bf9531" + }, + { + "routeId": "L713", + "platformId": "U3256Z1", + "id": "7542523b-e4a9-44b6-8156-ad9b45c7771e" + }, + { + "routeId": "L725", + "platformId": "U3256Z1", + "id": "6339179e-7933-4cc7-805a-0d117bf685a1" + }, + { + "routeId": "L723", + "platformId": "U3256Z1", + "id": "c4fd0f5e-0922-4c6e-a720-70ecaa09f05d" + }, + { + "routeId": "L724", + "platformId": "U3256Z1", + "id": "b22f9171-aeaf-4ffa-bf8e-28be642f24a7" + }, + { + "routeId": "L775", + "platformId": "U3256Z1", + "id": "50a449ee-aa56-4a7f-9246-9539c8f3db15" + }, + { + "routeId": "L315", + "platformId": "U3256Z2", + "id": "7f102073-04ce-42b6-ae3b-d07a1adca644" + }, + { + "routeId": "L731", + "platformId": "U3256Z2", + "id": "cdc33232-cb06-41d9-b9dc-c835aca89b4b" + }, + { + "routeId": "L463", + "platformId": "U3256Z2", + "id": "97763b9b-0c8c-4306-86fe-58dec2ef6af1" + }, + { + "routeId": "L499", + "platformId": "U3256Z2", + "id": "84801981-435f-4ab3-97b3-f1012d9538be" + }, + { + "routeId": "L432", + "platformId": "U3256Z2", + "id": "97b9be49-428d-4c1c-9941-d2dec7639c06" + }, + { + "routeId": "L713", + "platformId": "U3256Z2", + "id": "99c88e03-eb30-49e5-a781-691ab438157d" + }, + { + "routeId": "L725", + "platformId": "U3256Z2", + "id": "144c8969-d917-4832-af07-d34cbb6abcea" + }, + { + "routeId": "L467", + "platformId": "U3256Z2", + "id": "4669ea11-c4c6-42c6-bae5-4feb95e478d8" + }, + { + "routeId": "L723", + "platformId": "U3256Z2", + "id": "1b3d0760-0794-42ab-ad13-29a7efe6cee8" + }, + { + "routeId": "L724", + "platformId": "U3256Z2", + "id": "a0e0a54c-458c-47a2-9c14-5c7b2a736e0b" + }, + { + "routeId": "L775", + "platformId": "U3256Z2", + "id": "13891e30-a140-48dc-aec2-ec247c56495c" + }, + { + "routeId": "L375", + "platformId": "U3257Z2", + "id": "989fca88-467f-4518-a64e-490c9bc3489a" + }, + { + "routeId": "L315", + "platformId": "U3258Z1", + "id": "2d2c785f-944b-4457-ba9f-5132785ce009" + }, + { + "routeId": "L315", + "platformId": "U3258Z2", + "id": "767e3a77-4b92-4b5a-b7b4-b449923474a8" + }, + { + "routeId": "L158", + "platformId": "U325Z1", + "id": "c7302eb1-3f7d-4e67-b981-cf4f1ba8c2b5" + }, + { + "routeId": "L195", + "platformId": "U325Z1", + "id": "bcae0df7-4eb8-499c-b91b-666bc0e1e2f2" + }, + { + "routeId": "L916", + "platformId": "U325Z1", + "id": "49d007c0-139b-441f-8298-13f6b5578f0e" + }, + { + "routeId": "L158", + "platformId": "U325Z2", + "id": "e88bae69-f320-41ea-8047-e06a7f5c8de5" + }, + { + "routeId": "L195", + "platformId": "U325Z2", + "id": "74b32315-450b-4f8e-a1a4-7f509926b740" + }, + { + "routeId": "L916", + "platformId": "U325Z2", + "id": "efc3c09c-c0e7-47e3-b19f-00b5be5e8b71" + }, + { + "routeId": "L315", + "platformId": "U3261Z1", + "id": "d513a997-09d1-411a-9854-3768922f6dd1" + }, + { + "routeId": "L667", + "platformId": "U3261Z1", + "id": "75430241-97ff-462d-8355-6916384eb5ff" + }, + { + "routeId": "L315", + "platformId": "U3261Z2", + "id": "582741ff-7259-4fbd-8da1-d9eb1e89cc7a" + }, + { + "routeId": "L667", + "platformId": "U3261Z2", + "id": "615b1b6a-5443-4469-96bb-cb9da348993f" + }, + { + "routeId": "L431", + "platformId": "U3262Z1", + "id": "4c59911f-4462-4c4e-8e6a-1331e8673f4b" + }, + { + "routeId": "L431", + "platformId": "U3262Z2", + "id": "50c6ced2-5c49-4dd0-8afd-d2904c8faf1b" + }, + { + "routeId": "L315", + "platformId": "U3262Z5", + "id": "5b7fcb4b-6e54-4539-b9c9-83c092f0fa88" + }, + { + "routeId": "L667", + "platformId": "U3262Z5", + "id": "96c7b013-b69c-4896-8cb7-4fee1a3a15a2" + }, + { + "routeId": "L315", + "platformId": "U3262Z6", + "id": "9a1e9e09-6093-423d-b09f-d50ea36ad5ad" + }, + { + "routeId": "L667", + "platformId": "U3262Z6", + "id": "e12705e8-6515-4965-85e0-7243479d1429" + }, + { + "routeId": "L315", + "platformId": "U3263Z1", + "id": "af7e27e1-1317-4e90-9c76-791ca6e756e2" + }, + { + "routeId": "L667", + "platformId": "U3263Z1", + "id": "c3fa6c09-e4f4-4024-be86-c98bdf4d6d77" + }, + { + "routeId": "L315", + "platformId": "U3263Z2", + "id": "9aad62de-ee8e-45d1-8827-3e261532ff7c" + }, + { + "routeId": "L667", + "platformId": "U3263Z2", + "id": "2c92cae5-3455-4d9e-9732-ddad93610b8d" + }, + { + "routeId": "L315", + "platformId": "U3264Z1", + "id": "259d08d5-ea8b-4e97-8a98-ba1a3b83b47e" + }, + { + "routeId": "L315", + "platformId": "U3264Z2", + "id": "75f93b11-f406-4abb-98bc-e849a7e90e4a" + }, + { + "routeId": "L315", + "platformId": "U3265Z1", + "id": "ad35456a-55e3-4418-9caf-6a24ce0adde3" + }, + { + "routeId": "L315", + "platformId": "U3265Z2", + "id": "f867bd32-5bed-4b58-871b-6ccf02e7f149" + }, + { + "routeId": "L1223", + "platformId": "U3266Z301", + "id": "2e5430ea-2352-4acd-bd2f-ba0a2f02c4f0" + }, + { + "routeId": "L1332", + "platformId": "U3266Z301", + "id": "17494690-c9f2-4152-b282-fd88b0561bf2" + }, + { + "routeId": "L466", + "platformId": "U3267Z1", + "id": "a73453d3-0c10-4eee-8580-7b439da6dfec" + }, + { + "routeId": "L466", + "platformId": "U3267Z2", + "id": "b42dde5a-dd5b-464b-8300-727e8859e43e" + }, + { + "routeId": "L641", + "platformId": "U3268Z1", + "id": "73c0cf63-bc30-405d-812f-8328aa3836cb" + }, + { + "routeId": "L641", + "platformId": "U3268Z2", + "id": "755ca013-9178-4b60-9f83-ea6dcd005ee0" + }, + { + "routeId": "L1216", + "platformId": "U3268Z301", + "id": "baf17895-de59-452d-a958-fabe88627edd" + }, + { + "routeId": "L1370", + "platformId": "U3268Z301", + "id": "08980e4d-9dc5-4479-8862-1deea59c6557" + }, + { + "routeId": "L1216", + "platformId": "U3269Z301", + "id": "3a1141f7-ecbc-4dc2-8147-f3c07907e041" + }, + { + "routeId": "L1370", + "platformId": "U3269Z301", + "id": "103bd627-cab3-479e-b89a-222ce9a4c298" + }, + { + "routeId": "L158", + "platformId": "U326Z1", + "id": "0557b8b1-786f-49ad-9b3a-75f35c9bb8ed" + }, + { + "routeId": "L195", + "platformId": "U326Z1", + "id": "6b33efac-c8f0-4b46-81a9-d97dc386f62d" + }, + { + "routeId": "L201", + "platformId": "U326Z1", + "id": "097e190e-ed1b-4bf9-885b-d47948ec74f8" + }, + { + "routeId": "L158", + "platformId": "U326Z2", + "id": "5ea5322c-154f-4915-9e2a-41c07516bbec" + }, + { + "routeId": "L195", + "platformId": "U326Z2", + "id": "72340006-feec-4df4-8386-a5419de56205" + }, + { + "routeId": "L201", + "platformId": "U326Z2", + "id": "c67ccf6f-e0ac-47a3-8cf8-9dba18a6c301" + }, + { + "routeId": "L531", + "platformId": "U3270Z1", + "id": "2e8a0d38-6ed6-4f7e-b72a-7cbae2ce994b" + }, + { + "routeId": "L639", + "platformId": "U3270Z1", + "id": "f794c261-4027-46f3-b39d-92efbe47d8b0" + }, + { + "routeId": "L545", + "platformId": "U3270Z2", + "id": "968720b2-0ad8-43df-bd3c-141441f8bdac" + }, + { + "routeId": "L548", + "platformId": "U3270Z2", + "id": "a1ee2a15-0699-40e8-8814-4afd07d3568d" + }, + { + "routeId": "L546", + "platformId": "U3270Z2", + "id": "6d3f7bc0-20ca-404a-9cb9-8a08a54686cb" + }, + { + "routeId": "L531", + "platformId": "U3270Z3", + "id": "d7accb9f-3de1-496f-bf6e-396da278e9d5" + }, + { + "routeId": "L548", + "platformId": "U3270Z3", + "id": "57124147-c357-496b-9d10-707e28c07552" + }, + { + "routeId": "L545", + "platformId": "U3270Z3", + "id": "fd3c73c2-1aca-4821-840e-eac2d63c9a6e" + }, + { + "routeId": "L546", + "platformId": "U3270Z3", + "id": "8945fc13-d88b-4b90-9fc3-68a7fa1d77d7" + }, + { + "routeId": "L639", + "platformId": "U3270Z3", + "id": "410bb8f1-09db-4073-8ac9-794d1a82a888" + }, + { + "routeId": "L1216", + "platformId": "U3270Z301", + "id": "d96bbea3-28a2-4eb3-81ec-2f3a32bf5c56" + }, + { + "routeId": "L1370", + "platformId": "U3270Z301", + "id": "8adcfc2a-2d5a-4f20-adff-5d3f310de553" + }, + { + "routeId": "L631", + "platformId": "U3271Z1", + "id": "c2d2a7c8-3131-43ba-a365-c54fca12055c" + }, + { + "routeId": "L631", + "platformId": "U3271Z2", + "id": "4372dee5-afa6-4e4b-b61d-bfcd3c9c1c5e" + }, + { + "routeId": "L1375", + "platformId": "U3271Z301", + "id": "0b1cfb66-b1fd-4a19-a2c3-9004ae0b5624" + }, + { + "routeId": "L631", + "platformId": "U3272Z1", + "id": "4bef2f1c-0142-45a6-b4b6-054561f37464" + }, + { + "routeId": "L631", + "platformId": "U3272Z2", + "id": "ef6f90c4-1e93-4a80-b71f-b5ad881e589f" + }, + { + "routeId": "L1375", + "platformId": "U3272Z301", + "id": "52b229e8-3066-4ac1-b28f-9e144f4fece4" + }, + { + "routeId": "L1375", + "platformId": "U3273Z301", + "id": "906b4fc6-20d2-4a07-8b42-5c6def6fc3f3" + }, + { + "routeId": "L1375", + "platformId": "U3274Z301", + "id": "c7d6d4da-7cf6-454e-9ae5-840ad86cc4d6" + }, + { + "routeId": "L1375", + "platformId": "U3275Z301", + "id": "0b37ee80-5dd8-4777-ae2a-e8fe4fab3c78" + }, + { + "routeId": "L1375", + "platformId": "U3276Z301", + "id": "bafd4a95-e2a8-45c2-9527-26e22e648acb" + }, + { + "routeId": "L1375", + "platformId": "U3277Z301", + "id": "6e9c16db-3982-4726-82b3-6b0b620b12ab" + }, + { + "routeId": "L555", + "platformId": "U3278Z1", + "id": "911d2cab-285f-43dd-bb9d-c6600085132d" + }, + { + "routeId": "L555", + "platformId": "U3278Z3", + "id": "5881bc54-a503-46a9-95cc-17cdb474ffa2" + }, + { + "routeId": "L1375", + "platformId": "U3278Z301", + "id": "86b2592d-ef42-4bde-8fc7-9c085dc1f24c" + }, + { + "routeId": "L1375", + "platformId": "U3279Z301", + "id": "ad97dcac-91b1-4c0d-88fa-75ef1003fe38" + }, + { + "routeId": "L201", + "platformId": "U327Z1", + "id": "89014776-b5e2-473a-8366-e5dac1720f6c" + }, + { + "routeId": "L916", + "platformId": "U327Z1", + "id": "9a2ce8ac-4401-43f8-897f-f68425b81b45" + }, + { + "routeId": "L201", + "platformId": "U327Z2", + "id": "cdfe90df-8c75-4cad-af83-b5fdb895c5fb" + }, + { + "routeId": "L916", + "platformId": "U327Z2", + "id": "7d5c82a3-0504-46dd-ae54-28975dab2be4" + }, + { + "routeId": "L1375", + "platformId": "U3280Z301", + "id": "0a00984c-df46-4eb3-85b0-7ca324084458" + }, + { + "routeId": "L1375", + "platformId": "U3281Z301", + "id": "9ace78f4-ae3c-404d-bb4d-31c41961af55" + }, + { + "routeId": "L1375", + "platformId": "U3282Z301", + "id": "a2355de1-310b-47ba-b027-f563e36fbfd3" + }, + { + "routeId": "L531", + "platformId": "U3284Z1", + "id": "0173e7df-896e-49e4-b20e-1eeaa26e9d99" + }, + { + "routeId": "L531", + "platformId": "U3284Z2", + "id": "c2ba357f-0c5e-4e4a-b5d1-c2dd019f5335" + }, + { + "routeId": "L2260", + "platformId": "U3284Z401", + "id": "75d3164d-854f-43dc-a797-9af363086e22" + }, + { + "routeId": "L2260", + "platformId": "U3284Z402", + "id": "56de2d5a-aabc-4e06-976d-ebc1e07e66d4" + }, + { + "routeId": "L531", + "platformId": "U3285Z1", + "id": "ce719ad8-61ed-48b7-8479-998d197928a8" + }, + { + "routeId": "L531", + "platformId": "U3285Z2", + "id": "252ce69f-453c-4f9a-bfe2-5f9491e7f8b6" + }, + { + "routeId": "L2260", + "platformId": "U3285Z401", + "id": "e89ed68e-4f4a-4bf7-b824-27448b82ec0b" + }, + { + "routeId": "L2260", + "platformId": "U3285Z402", + "id": "6eeeef9f-ca69-4167-87d9-e1b75737608e" + }, + { + "routeId": "L392", + "platformId": "U3287Z1", + "id": "dd84cc1b-59bf-4ff0-a11a-5b53d04aa0ca" + }, + { + "routeId": "L480", + "platformId": "U3287Z10", + "id": "d9d05875-9e0b-439f-bf12-51649350b1ca" + }, + { + "routeId": "L521", + "platformId": "U3287Z11", + "id": "c5c7cc17-4bca-4e7d-b464-3384d7a3251d" + }, + { + "routeId": "L392", + "platformId": "U3287Z11", + "id": "20f2803b-b77d-4e3d-95b0-4a014ab05505" + }, + { + "routeId": "L480", + "platformId": "U3287Z11", + "id": "86663eee-2ec6-4350-92c6-0ca909aa9b4f" + }, + { + "routeId": "L500", + "platformId": "U3287Z11", + "id": "79cc5221-14e5-430a-91d6-0f6f20572074" + }, + { + "routeId": "L504", + "platformId": "U3287Z11", + "id": "6e88dafd-5070-4e1b-820f-a9eacc6b8167" + }, + { + "routeId": "L512", + "platformId": "U3287Z11", + "id": "6f7fbca0-bc2a-4cd0-8263-2ba6c141607f" + }, + { + "routeId": "L482", + "platformId": "U3287Z11", + "id": "01695b91-21ba-459f-820c-32b748f23dd5" + }, + { + "routeId": "L517", + "platformId": "U3287Z11", + "id": "c196df83-c1c0-4c43-ba0c-037b7915f048" + }, + { + "routeId": "L754", + "platformId": "U3287Z11", + "id": "701abd07-d699-4a76-b824-9914e205a0bd" + }, + { + "routeId": "L395", + "platformId": "U3287Z12", + "id": "10873929-fbdc-44ec-9d95-f81d403cdb02" + }, + { + "routeId": "L521", + "platformId": "U3287Z12", + "id": "b6976ce9-e139-40ae-a4df-9dc0178cabff" + }, + { + "routeId": "L482", + "platformId": "U3287Z12", + "id": "62c1ab57-89ff-4ca1-8393-7273958af9d2" + }, + { + "routeId": "L392", + "platformId": "U3287Z12", + "id": "96a986e9-1965-4667-959b-94537ae97859" + }, + { + "routeId": "L480", + "platformId": "U3287Z12", + "id": "de8fc47d-ffc5-4906-923f-95310332bbef" + }, + { + "routeId": "L500", + "platformId": "U3287Z12", + "id": "f9bae9f0-e59b-4d6b-803d-381916ebf2eb" + }, + { + "routeId": "L506", + "platformId": "U3287Z12", + "id": "6e52abec-d169-4128-873c-6fac233de167" + }, + { + "routeId": "L502", + "platformId": "U3287Z12", + "id": "a391856e-5b24-45fb-8cf9-3404e6f55704" + }, + { + "routeId": "L508", + "platformId": "U3287Z12", + "id": "45507176-6ac2-46be-ba76-cd17b571a2f6" + }, + { + "routeId": "L503", + "platformId": "U3287Z12", + "id": "f14e32d8-af9f-415f-b574-d9c8425c0292" + }, + { + "routeId": "L504", + "platformId": "U3287Z12", + "id": "6cbd89d5-6112-45ec-b962-f4d0b21eef92" + }, + { + "routeId": "L512", + "platformId": "U3287Z12", + "id": "55d6493f-64f4-45b0-8c72-fe0c42e71765" + }, + { + "routeId": "L517", + "platformId": "U3287Z12", + "id": "9981dde0-02fb-4acf-9a8e-c6540986472f" + }, + { + "routeId": "L531", + "platformId": "U3287Z12", + "id": "09b5bd7e-aac0-4e90-9de3-43c1d4433f14" + }, + { + "routeId": "L754", + "platformId": "U3287Z12", + "id": "ed42616f-b74f-4562-a3dc-3a5bdc81e167" + }, + { + "routeId": "L395", + "platformId": "U3287Z13", + "id": "b07a6797-17d9-4b7d-9aa6-a2f8974e6fef" + }, + { + "routeId": "L506", + "platformId": "U3287Z13", + "id": "f74f9012-d43a-4a4f-a16e-fe5d81f79c1d" + }, + { + "routeId": "L502", + "platformId": "U3287Z13", + "id": "6c32888f-e163-489d-8ee9-e9880043b637" + }, + { + "routeId": "L754", + "platformId": "U3287Z2", + "id": "9b884866-303f-4dcb-8b32-81d929bbe877" + }, + { + "routeId": "L482", + "platformId": "U3287Z3", + "id": "33dfb74e-d382-4243-8492-1c7e93cd9fc4" + }, + { + "routeId": "L2260", + "platformId": "U3287Z414", + "id": "0e83c350-e0e2-433a-bd48-e4f027cc04c2" + }, + { + "routeId": "L521", + "platformId": "U3287Z5", + "id": "70ed0641-8b37-4da5-ab88-316a966b39c3" + }, + { + "routeId": "L512", + "platformId": "U3287Z6", + "id": "1d33071b-338e-4560-a802-a591963bd56d" + }, + { + "routeId": "L504", + "platformId": "U3287Z6", + "id": "15600740-81f9-4413-a474-318bd61b12e2" + }, + { + "routeId": "L531", + "platformId": "U3287Z7", + "id": "72c347a4-4934-488d-8595-057e9ce7664d" + }, + { + "routeId": "L500", + "platformId": "U3287Z8", + "id": "9cbceb09-3d9b-4de9-9eb6-2d8cf300f13a" + }, + { + "routeId": "L517", + "platformId": "U3287Z9", + "id": "873a9d95-6a42-44e2-ac88-c6fba4d71e29" + }, + { + "routeId": "L189", + "platformId": "U328Z1", + "id": "f7f21c22-95b2-45f9-bbdd-e3ecae6fbd81" + }, + { + "routeId": "L197", + "platformId": "U328Z1", + "id": "c2cba906-9c15-487c-ade4-b571df80fe76" + }, + { + "routeId": "L117", + "platformId": "U328Z1", + "id": "d8359ebb-6580-4076-a170-e5bb0667ba2b" + }, + { + "routeId": "L189", + "platformId": "U328Z2", + "id": "2f0048e1-dc75-46ad-ab75-967c0b95290b" + }, + { + "routeId": "L197", + "platformId": "U328Z2", + "id": "b4280d03-e083-4b62-b14d-9fc0317e370f" + }, + { + "routeId": "L117", + "platformId": "U328Z2", + "id": "890fc57d-8cbe-40fd-8532-0044cf6e5bfc" + }, + { + "routeId": "L482", + "platformId": "U3290Z1", + "id": "41e50df9-9780-4420-aa5c-f09c04883c6a" + }, + { + "routeId": "L482", + "platformId": "U3290Z2", + "id": "8c922dca-da58-4584-adc5-63575c138e89" + }, + { + "routeId": "L1226", + "platformId": "U3291Z301", + "id": "57f6f6ed-2b03-4d6d-83aa-6125f883def6" + }, + { + "routeId": "L1360", + "platformId": "U3291Z301", + "id": "0b86dfa1-9805-46ef-bf23-64e45f801ce6" + }, + { + "routeId": "L1366", + "platformId": "U3291Z301", + "id": "c66b0f3e-d0e5-4f56-8629-be06a894662b" + }, + { + "routeId": "L2260", + "platformId": "U3291Z451", + "id": "54611a8d-323d-4f0d-8eb4-b4fca37c972c" + }, + { + "routeId": "L327", + "platformId": "U3292Z1", + "id": "7065d7a0-afaa-4e0e-b0e9-6e9a76dacbd7" + }, + { + "routeId": "L327", + "platformId": "U3292Z2", + "id": "fc5cec8c-63cd-4417-bbaa-a4326e00b3f1" + }, + { + "routeId": "L364", + "platformId": "U3295Z1", + "id": "07085319-af03-49ac-9391-a9c1bd188027" + }, + { + "routeId": "L686", + "platformId": "U3295Z1", + "id": "9c9b273c-bd80-4fa3-965e-44c00eff7d77" + }, + { + "routeId": "L168", + "platformId": "U3296Z1", + "id": "e085ce49-5747-4adc-9291-58f70cdfb433" + }, + { + "routeId": "L168", + "platformId": "U3296Z2", + "id": "f3506dee-0258-488d-a0f5-e8a28e8dbe79" + }, + { + "routeId": "L555", + "platformId": "U3297Z1", + "id": "1ffb55e2-7bbc-4e15-8094-5c6eb2602527" + }, + { + "routeId": "L555", + "platformId": "U3297Z2", + "id": "c1fc2b77-61e3-4861-9e62-a3b54d62674f" + }, + { + "routeId": "L168", + "platformId": "U3298Z1", + "id": "300be811-4447-478e-8192-7d468ee287f9" + }, + { + "routeId": "L168", + "platformId": "U3298Z2", + "id": "59f12c46-5757-44b1-9783-76c82fa3e1c2" + }, + { + "routeId": "L168", + "platformId": "U3299Z1", + "id": "bb9509ac-a3db-4e5b-a6f8-2b35726f566f" + }, + { + "routeId": "L168", + "platformId": "U3299Z2", + "id": "c85761cd-d928-44ec-82dd-0492f7651d1c" + }, + { + "routeId": "L121", + "platformId": "U329Z1", + "id": "23119a81-d40d-438d-8636-cb983f79780c" + }, + { + "routeId": "L139", + "platformId": "U329Z1", + "id": "1ea89a6b-5740-46da-a36a-0a6555426dd2" + }, + { + "routeId": "L150", + "platformId": "U329Z1", + "id": "1b759b43-35a9-4b82-9977-7b564bbd97b9" + }, + { + "routeId": "L197", + "platformId": "U329Z1", + "id": "95d6efc0-97f7-4edc-83e3-fa4d1394930b" + }, + { + "routeId": "L910", + "platformId": "U329Z1", + "id": "f2fa651a-704b-4dce-8b39-eba42e72b340" + }, + { + "routeId": "L121", + "platformId": "U329Z2", + "id": "3194754a-4391-48e0-958a-0cef157dbd08" + }, + { + "routeId": "L139", + "platformId": "U329Z2", + "id": "42b234d0-d885-4166-a335-69389d878a11" + }, + { + "routeId": "L150", + "platformId": "U329Z2", + "id": "b9cd588a-7119-4442-b0e5-cde41fa0affe" + }, + { + "routeId": "L197", + "platformId": "U329Z2", + "id": "774a088a-56ac-41f8-9391-d5d07c48cd73" + }, + { + "routeId": "L910", + "platformId": "U329Z2", + "id": "dace4217-e3e0-4a95-96d8-84d2348d9d62" + }, + { + "routeId": "L3", + "platformId": "U32Z1", + "id": "2f8f1a64-7966-46f6-8385-9b68fff8539d" + }, + { + "routeId": "L8", + "platformId": "U32Z1", + "id": "4c0d8e07-f14f-4861-96ad-cf7400090f60" + }, + { + "routeId": "L14", + "platformId": "U32Z1", + "id": "98e94c22-822d-4428-8316-e05d11ff6fe1" + }, + { + "routeId": "L92", + "platformId": "U32Z1", + "id": "627c298d-d2e7-42e1-89a6-450903a816db" + }, + { + "routeId": "L94", + "platformId": "U32Z1", + "id": "7849b2d7-64ad-400f-83cb-aee733f49e8a" + }, + { + "routeId": "L207", + "platformId": "U32Z1", + "id": "e940c3b8-b9f1-4a8b-b1d8-a4591eb0b336" + }, + { + "routeId": "L908", + "platformId": "U32Z1", + "id": "35501890-4e2f-4e27-abfb-3ba72b2ab651" + }, + { + "routeId": "L909", + "platformId": "U32Z1", + "id": "a881858b-ca63-4f4c-9e1e-39a7abdb1fb8" + }, + { + "routeId": "L194", + "platformId": "U32Z1", + "id": "308035f8-52fb-4fc0-961a-9619092656dd" + }, + { + "routeId": "L3", + "platformId": "U32Z2", + "id": "3e276348-18f3-4c4a-bf33-b23c4abc44e3" + }, + { + "routeId": "L8", + "platformId": "U32Z2", + "id": "50bce6f9-6ef1-4a5e-aeb5-181346fc8af5" + }, + { + "routeId": "L14", + "platformId": "U32Z2", + "id": "fb240995-d64b-4bc9-b789-3452cb7bbebf" + }, + { + "routeId": "L92", + "platformId": "U32Z2", + "id": "dff9c5f5-9f30-4336-9367-2962001ae3fb" + }, + { + "routeId": "L94", + "platformId": "U32Z2", + "id": "5cab3abd-57f6-4ce6-878c-25f85e5b69e5" + }, + { + "routeId": "L207", + "platformId": "U32Z2", + "id": "c2202e52-ff8b-41b6-81bf-384d7e3f9b08" + }, + { + "routeId": "L908", + "platformId": "U32Z2", + "id": "b77acbc7-dbd5-4cd2-b10e-e30b3cb1efcd" + }, + { + "routeId": "L909", + "platformId": "U32Z2", + "id": "48369942-e1f6-4f28-8e78-3a710a74be62" + }, + { + "routeId": "L194", + "platformId": "U32Z2", + "id": "da1faf9c-206e-4536-b5c9-7225d535cc13" + }, + { + "routeId": "L688", + "platformId": "U3301Z1", + "id": "a3acbe14-1f58-4a06-99c4-8735670c09db" + }, + { + "routeId": "L688", + "platformId": "U3301Z2", + "id": "01593784-e11e-4b26-a678-a1ac8a62c27b" + }, + { + "routeId": "L332", + "platformId": "U3303Z1", + "id": "7f353e26-366b-4c8d-927e-64defb2acd1e" + }, + { + "routeId": "L755", + "platformId": "U3303Z1", + "id": "3fdc0e3e-bb00-482d-8ef1-425b83c2ae65" + }, + { + "routeId": "L759", + "platformId": "U3303Z1", + "id": "75483371-3820-40fd-bca8-ddef80a970fc" + }, + { + "routeId": "L754", + "platformId": "U3303Z1", + "id": "37e34ec7-7d3b-436c-ad03-ba6d265999db" + }, + { + "routeId": "L756", + "platformId": "U3303Z1", + "id": "ffe57ad6-4d99-4443-96dd-3a2c0fe3ec9a" + }, + { + "routeId": "L332", + "platformId": "U3303Z2", + "id": "bcb7d97c-9dd6-4e62-8839-1110f5bce6b9" + }, + { + "routeId": "L759", + "platformId": "U3303Z2", + "id": "ba4cacbe-cd4b-47f7-b9bb-bbe0e6718b31" + }, + { + "routeId": "L756", + "platformId": "U3303Z2", + "id": "7e296d73-bd8e-4764-974d-53ae24623bf6" + }, + { + "routeId": "L755", + "platformId": "U3303Z2", + "id": "7abbbeb9-7180-43e0-99fc-9e713e342f4b" + }, + { + "routeId": "L754", + "platformId": "U3303Z2", + "id": "a89020a7-14da-4fdc-9432-270016497bfd" + }, + { + "routeId": "L332", + "platformId": "U3304Z1", + "id": "9835360a-ca2f-4854-a763-512b8e5128b2" + }, + { + "routeId": "L332", + "platformId": "U3304Z2", + "id": "52cc3b9d-d375-4a6b-b019-73ea8a633cf0" + }, + { + "routeId": "L332", + "platformId": "U3305Z2", + "id": "5ff42a10-4739-4aa6-b7a2-e8991183a435" + }, + { + "routeId": "L753", + "platformId": "U3305Z2", + "id": "fa1bd89f-bc96-438a-a9aa-b9bd1fc5c686" + }, + { + "routeId": "L348", + "platformId": "U3308Z1", + "id": "f5afec88-f0fb-4af5-8a6c-f3e561aa3311" + }, + { + "routeId": "L348", + "platformId": "U3308Z2", + "id": "b1781bc1-0ab5-46f5-bd41-bd81c365d558" + }, + { + "routeId": "L145", + "platformId": "U330Z1", + "id": "d92221d1-0721-42cd-97e9-19522ab2ef9e" + }, + { + "routeId": "L152", + "platformId": "U330Z1", + "id": "21bcf5c4-3429-4285-93a5-c8cd379cb06f" + }, + { + "routeId": "L202", + "platformId": "U330Z1", + "id": "839346a5-a3ae-4b96-9970-0abb15b48c96" + }, + { + "routeId": "L905", + "platformId": "U330Z1", + "id": "124bf6c4-76d4-4891-9d52-f3dabee4aad6" + }, + { + "routeId": "L145", + "platformId": "U330Z2", + "id": "91e68ead-0136-47f2-a6b3-7020bb3aba53" + }, + { + "routeId": "L152", + "platformId": "U330Z2", + "id": "85e852a1-12cb-4816-a40e-a1a37de2377e" + }, + { + "routeId": "L202", + "platformId": "U330Z2", + "id": "2bbd93d9-ddf0-42f9-8830-9a546fbb6d8c" + }, + { + "routeId": "L905", + "platformId": "U330Z2", + "id": "0d73e2d8-cb1b-4e84-8e7c-77441fc7fca7" + }, + { + "routeId": "L348", + "platformId": "U3310Z1", + "id": "326baba4-159e-497c-9ff1-b8e40d6a6e71" + }, + { + "routeId": "L471", + "platformId": "U3310Z1", + "id": "18f3bac1-f92e-4d1f-9127-a01a565af0fd" + }, + { + "routeId": "L348", + "platformId": "U3310Z2", + "id": "f91fbb9d-1081-46b3-bd08-3bbca1fcb5d0" + }, + { + "routeId": "L471", + "platformId": "U3310Z2", + "id": "1e6b43ad-fefb-4db8-b7d5-8c06f98a7c86" + }, + { + "routeId": "L348", + "platformId": "U3311Z1", + "id": "2da8405a-bbd9-4582-b073-b4e9a3f35e4d" + }, + { + "routeId": "L348", + "platformId": "U3311Z2", + "id": "f6e02bdf-d0fd-45e1-8591-a108e0efa45f" + }, + { + "routeId": "L369", + "platformId": "U3314Z1", + "id": "e9a373a7-3cdf-420c-89ae-51a5017e0438" + }, + { + "routeId": "L369", + "platformId": "U3314Z2", + "id": "e85105b5-3e88-49ad-b3c0-96d4f1b19eb4" + }, + { + "routeId": "L369", + "platformId": "U3315Z1", + "id": "8d4aa3f4-3136-4145-a149-f96bcf36c2d3" + }, + { + "routeId": "L369", + "platformId": "U3315Z2", + "id": "77e7cece-b594-4f6b-8d0b-effaa92ed915" + }, + { + "routeId": "L369", + "platformId": "U3316Z1", + "id": "97509c67-8c82-4ae1-ae95-c3ef4c1b86b0" + }, + { + "routeId": "L369", + "platformId": "U3316Z2", + "id": "99846224-18ba-4595-9c8f-122828d33288" + }, + { + "routeId": "L400", + "platformId": "U3316Z3", + "id": "f66348c9-ab68-4b4d-a73c-09262f8516f1" + }, + { + "routeId": "L410", + "platformId": "U3316Z3", + "id": "cfbb0e00-1089-4653-99f6-c3cd41ca51f1" + }, + { + "routeId": "L400", + "platformId": "U3316Z4", + "id": "79737482-7f49-4699-b722-696899ba0cd7" + }, + { + "routeId": "L410", + "platformId": "U3316Z4", + "id": "5862eeca-3449-4678-8b90-43c41da045d6" + }, + { + "routeId": "L369", + "platformId": "U3317Z1", + "id": "118d3707-1abf-453f-8ccd-faaff8982abc" + }, + { + "routeId": "L369", + "platformId": "U3317Z2", + "id": "ae404d71-7073-4240-b409-3ec39000ee7d" + }, + { + "routeId": "L1223", + "platformId": "U3317Z301", + "id": "ec8f4055-55ec-420f-bc97-cf38ccbef8e0" + }, + { + "routeId": "L1332", + "platformId": "U3317Z301", + "id": "857a2c3e-d1f0-4875-88c9-81d310057793" + }, + { + "routeId": "L6", + "platformId": "U331Z1", + "id": "e6123e95-c97b-4e3d-b306-9b6a96ddc964" + }, + { + "routeId": "L27", + "platformId": "U331Z1", + "id": "52f75b28-54ed-4702-948a-86b9ba18c75c" + }, + { + "routeId": "L6", + "platformId": "U331Z2", + "id": "f0215281-824a-4d64-b5ce-bd6f5848d0c8" + }, + { + "routeId": "L27", + "platformId": "U331Z2", + "id": "41e3d858-309d-4103-97bd-e902b610ee64" + }, + { + "routeId": "L825", + "platformId": "U331Z51", + "id": "6d0478e0-d05c-4ef0-8ee3-87dca3858e0b" + }, + { + "routeId": "L894", + "platformId": "U331Z51", + "id": "e1cd12af-6e31-447c-8c58-ff31f8ec03ef" + }, + { + "routeId": "L825", + "platformId": "U331Z52", + "id": "8f699b5b-9dbf-41cf-88ba-7bedd688f24e" + }, + { + "routeId": "L894", + "platformId": "U331Z52", + "id": "843ddd23-3c59-4755-af1b-869b229460f1" + }, + { + "routeId": "L369", + "platformId": "U3320Z1", + "id": "1b8ad180-69cb-4e33-96a2-26a4522a9658" + }, + { + "routeId": "L369", + "platformId": "U3320Z2", + "id": "e84d4c23-418c-4e44-99c2-2f43e0ef42a2" + }, + { + "routeId": "L369", + "platformId": "U3321Z1", + "id": "7744e07e-4505-40a3-a50e-8615122f1b8f" + }, + { + "routeId": "L369", + "platformId": "U3321Z2", + "id": "2af813db-24a6-49e5-92a5-78696ddf0e9b" + }, + { + "routeId": "L369", + "platformId": "U3322Z1", + "id": "305e3b9b-bf09-47f2-a252-5ab4e001fd7a" + }, + { + "routeId": "L369", + "platformId": "U3322Z2", + "id": "81f16630-8282-462c-8f97-c01bdb0901db" + }, + { + "routeId": "L369", + "platformId": "U3323Z1", + "id": "c625cf3d-0b8c-4adb-a40c-a8a29aa035eb" + }, + { + "routeId": "L369", + "platformId": "U3323Z2", + "id": "d59dae78-c6a0-49fc-ad7a-e99896ec4f36" + }, + { + "routeId": "L369", + "platformId": "U3324Z3", + "id": "409392ad-581a-452a-8e95-b771d96b45a5" + }, + { + "routeId": "L369", + "platformId": "U3324Z4", + "id": "9b77ab7f-79bc-442d-877b-367ae200b607" + }, + { + "routeId": "L1333", + "platformId": "U3325Z301", + "id": "d3192e84-58fe-4c5e-a255-3800b2d2a87c" + }, + { + "routeId": "L467", + "platformId": "U3326Z3", + "id": "3aab7f61-3dfa-4fd5-86be-9b509add1bfe" + }, + { + "routeId": "L467", + "platformId": "U3326Z4", + "id": "7dab8103-924d-46f7-8149-75ddd8a8e259" + }, + { + "routeId": "L467", + "platformId": "U3327Z1", + "id": "a72bffdb-21c7-43ae-a315-902f6ea36170" + }, + { + "routeId": "L467", + "platformId": "U3328Z1", + "id": "7055167c-5a0f-4356-9267-92f66d5e7f0f" + }, + { + "routeId": "L467", + "platformId": "U3328Z2", + "id": "5136efc2-3d9d-4aee-a814-3bd495efe233" + }, + { + "routeId": "L152", + "platformId": "U332Z1", + "id": "e5eac8f6-7117-4c24-9a01-eae151611093" + }, + { + "routeId": "L177", + "platformId": "U332Z1", + "id": "847d34f5-6800-416e-8b32-e2060192fa16" + }, + { + "routeId": "L183", + "platformId": "U332Z1", + "id": "1b1ad241-1c54-431b-9e32-d2032b00ccd2" + }, + { + "routeId": "L911", + "platformId": "U332Z1", + "id": "533c9f59-7d0f-41cb-82d0-4588472e2e55" + }, + { + "routeId": "L913", + "platformId": "U332Z1", + "id": "d2fe748e-323a-496f-acd5-3283c13678b6" + }, + { + "routeId": "L166", + "platformId": "U332Z1", + "id": "27fe5515-ac02-4589-9188-44d06dc4d38b" + }, + { + "routeId": "L400", + "platformId": "U332Z1", + "id": "8617ed85-9241-49b1-864a-35c841ae1814" + }, + { + "routeId": "L410", + "platformId": "U332Z1", + "id": "585862b7-73b6-4bf8-871f-5876d71d0f09" + }, + { + "routeId": "L993", + "platformId": "U332Z101", + "id": "7706ae42-2d6c-4ae3-8cec-130cc4e02428" + }, + { + "routeId": "L993", + "platformId": "U332Z102", + "id": "d929e6db-01b7-4947-985d-f66f4df8b60a" + }, + { + "routeId": "L152", + "platformId": "U332Z2", + "id": "a30b8d3b-9097-4a38-a750-8d5ed7cc6bee" + }, + { + "routeId": "L177", + "platformId": "U332Z2", + "id": "90e544f9-579c-4870-9eb2-10c7abea7bac" + }, + { + "routeId": "L183", + "platformId": "U332Z2", + "id": "53d35594-67d6-41da-8c74-a439504b4198" + }, + { + "routeId": "L911", + "platformId": "U332Z2", + "id": "25613194-2d06-42a2-97b5-13835b72f6fb" + }, + { + "routeId": "L913", + "platformId": "U332Z2", + "id": "df327e3b-6cf4-4ffe-bd54-5d4092d89d4a" + }, + { + "routeId": "L166", + "platformId": "U332Z2", + "id": "8a2a0314-8436-4c04-bc8d-cd7f4a2fe967" + }, + { + "routeId": "L400", + "platformId": "U332Z2", + "id": "7d11ef34-c912-49f9-bc96-bdf9778f1297" + }, + { + "routeId": "L410", + "platformId": "U332Z2", + "id": "4c79ed8b-58c6-41c8-8726-d38ed7b41848" + }, + { + "routeId": "L151", + "platformId": "U332Z3", + "id": "0c779362-9f9d-40ca-8cab-fd00596281bd" + }, + { + "routeId": "L201", + "platformId": "U332Z3", + "id": "bf7ee134-ff73-4a45-9f84-701e021c0fd9" + }, + { + "routeId": "L166", + "platformId": "U332Z3", + "id": "3ee7eff8-ea0f-4961-a5b8-18b6680d851c" + }, + { + "routeId": "L151", + "platformId": "U332Z4", + "id": "9e9fa10c-d229-44ba-8a21-db48e6a74421" + }, + { + "routeId": "L201", + "platformId": "U332Z4", + "id": "079cf240-54bb-4a4f-b53c-64182a76b095" + }, + { + "routeId": "L474", + "platformId": "U3330Z1", + "id": "aa762a12-a12d-479b-9929-890013a820d1" + }, + { + "routeId": "L474", + "platformId": "U3330Z2", + "id": "7a4a7265-b43a-4f5c-9e88-eff3b6211535" + }, + { + "routeId": "L369", + "platformId": "U3335Z1", + "id": "cd65b920-c419-4330-a315-9009c2606695" + }, + { + "routeId": "L474", + "platformId": "U3335Z1", + "id": "3a9b31da-cd60-43bf-b4eb-d867db815249" + }, + { + "routeId": "L369", + "platformId": "U3335Z2", + "id": "caea965f-ce6f-43a5-a695-40da537050ea" + }, + { + "routeId": "L474", + "platformId": "U3335Z2", + "id": "8d0e9ca1-0409-40bd-af64-6ce227a63f3c" + }, + { + "routeId": "L369", + "platformId": "U3336Z1", + "id": "1638b164-b2c3-4a3e-abb4-397f9553038a" + }, + { + "routeId": "L474", + "platformId": "U3336Z1", + "id": "cb2b464c-b1c4-485b-8157-3d3808e1f40e" + }, + { + "routeId": "L369", + "platformId": "U3336Z2", + "id": "7a338734-afa8-4595-98ea-05452c8a447c" + }, + { + "routeId": "L474", + "platformId": "U3337Z1", + "id": "0cfd45a4-ec3a-42c2-9442-39276cbfa7d3" + }, + { + "routeId": "L474", + "platformId": "U3338Z1", + "id": "ea60522d-57fa-4a0f-97a7-9c96d3f9d444" + }, + { + "routeId": "L474", + "platformId": "U3338Z2", + "id": "e5495f21-f63c-437d-bf22-48025d28d8a2" + }, + { + "routeId": "L17", + "platformId": "U333Z1", + "id": "d402a011-c0ba-43ac-8419-a072257df55b" + }, + { + "routeId": "L95", + "platformId": "U333Z1", + "id": "ba541cc6-1a8a-4ead-8e9d-12183fed69ab" + }, + { + "routeId": "L17", + "platformId": "U333Z2", + "id": "ce7f20de-cbbc-461b-9bc1-7e795fae22e6" + }, + { + "routeId": "L95", + "platformId": "U333Z2", + "id": "209937fe-d655-4937-a3be-8b30b326c242" + }, + { + "routeId": "L474", + "platformId": "U3341Z1", + "id": "567dd94a-3cb1-4620-b7d9-0caa14474c3c" + }, + { + "routeId": "L695", + "platformId": "U3341Z1", + "id": "36b09162-5ef6-4424-9fe5-cb1e21761224" + }, + { + "routeId": "L696", + "platformId": "U3341Z1", + "id": "5402f300-00cb-4753-8677-8b0cbfe6b13f" + }, + { + "routeId": "L474", + "platformId": "U3341Z2", + "id": "94a59266-6a17-454f-bcf1-cb6a3d825b78" + }, + { + "routeId": "L695", + "platformId": "U3341Z2", + "id": "5c9c4e0e-ec1b-4c9a-b838-73b02a67ce8b" + }, + { + "routeId": "L696", + "platformId": "U3341Z2", + "id": "3a31b99b-3a2d-4c71-912c-b333f8680da7" + }, + { + "routeId": "L474", + "platformId": "U3342Z1", + "id": "085155bb-5cef-45e6-aa13-e5b7d4777e98" + }, + { + "routeId": "L695", + "platformId": "U3342Z1", + "id": "5e35d639-b42f-43cd-abe3-5c157c42527c" + }, + { + "routeId": "L696", + "platformId": "U3342Z1", + "id": "4d80acf1-cb9a-40f1-b3c2-a9051a82971d" + }, + { + "routeId": "L474", + "platformId": "U3342Z2", + "id": "b9c0864c-09f0-4c2b-a404-6c2da2a7e89c" + }, + { + "routeId": "L695", + "platformId": "U3342Z2", + "id": "0cce67c4-450a-4035-97f8-fb397be16118" + }, + { + "routeId": "L696", + "platformId": "U3342Z2", + "id": "dcc7a5d7-cbd2-46fd-b09b-903e99db7d7c" + }, + { + "routeId": "L474", + "platformId": "U3343Z1", + "id": "6fc28eed-d1aa-4efc-a7fc-6ea5988f3ef5" + }, + { + "routeId": "L474", + "platformId": "U3343Z2", + "id": "3feb37e7-5c8f-4407-a7eb-93470c94b709" + }, + { + "routeId": "L474", + "platformId": "U3344Z1", + "id": "1d2abf71-a382-42b4-957e-d1e780968e43" + }, + { + "routeId": "L474", + "platformId": "U3344Z2", + "id": "d07525aa-37a3-481f-a100-e1e1b86d9aa5" + }, + { + "routeId": "L474", + "platformId": "U3345Z1", + "id": "16b9c665-26cc-4fe7-bbd0-2602d142d44c" + }, + { + "routeId": "L474", + "platformId": "U3345Z2", + "id": "3d5e62bd-5773-424e-a7ef-942b9729af6e" + }, + { + "routeId": "L474", + "platformId": "U3346Z1", + "id": "71817a73-c086-4d2b-95b5-87dd6afda17d" + }, + { + "routeId": "L474", + "platformId": "U3346Z2", + "id": "141e24f2-d6ba-4ca6-bfe9-37f01e81c10e" + }, + { + "routeId": "L474", + "platformId": "U3347Z1", + "id": "6433e757-900b-48ee-a982-36617e8f28f6" + }, + { + "routeId": "L474", + "platformId": "U3347Z2", + "id": "199af21a-678a-4bff-bc83-4a5f06bf2323" + }, + { + "routeId": "L474", + "platformId": "U3348Z1", + "id": "ddabda36-70fc-4786-a6d7-f5be84f563bc" + }, + { + "routeId": "L474", + "platformId": "U3348Z2", + "id": "ab040866-f5cd-4715-a1a1-bfbaac41b913" + }, + { + "routeId": "L474", + "platformId": "U3349Z1", + "id": "c59c62e5-b2cf-46e5-923f-1d26acf53021" + }, + { + "routeId": "L695", + "platformId": "U3349Z1", + "id": "86e3910d-a0c6-418e-ac1b-de79e3b6b624" + }, + { + "routeId": "L696", + "platformId": "U3349Z1", + "id": "46ba232d-f551-4c8e-b7dd-8a1495482e50" + }, + { + "routeId": "L474", + "platformId": "U3349Z2", + "id": "be5624a6-8e91-4116-acd5-8e7d2cca87aa" + }, + { + "routeId": "L695", + "platformId": "U3349Z2", + "id": "bf94762f-c627-45a3-82df-615eb2fd284a" + }, + { + "routeId": "L696", + "platformId": "U3349Z2", + "id": "d8d78463-89da-411f-bf02-bcfb4fb24ef7" + }, + { + "routeId": "L108", + "platformId": "U334Z1", + "id": "28c258d6-607e-4778-a661-06c2bf6a30d7" + }, + { + "routeId": "L168", + "platformId": "U334Z1", + "id": "af3adfae-e392-4106-912a-c98be3947459" + }, + { + "routeId": "L191", + "platformId": "U334Z1", + "id": "c96d6903-e2ca-40e3-80a0-23739cf4be74" + }, + { + "routeId": "L108", + "platformId": "U334Z2", + "id": "e829c6f2-81c5-4797-bed2-e1fe6ad4816f" + }, + { + "routeId": "L168", + "platformId": "U334Z2", + "id": "22911986-8577-451e-b631-437e346e4727" + }, + { + "routeId": "L191", + "platformId": "U334Z2", + "id": "0917511f-ea26-45f5-8244-f3636bbe94b1" + }, + { + "routeId": "L474", + "platformId": "U3350Z1", + "id": "61093c23-149b-4d99-a9b2-af0113957be1" + }, + { + "routeId": "L695", + "platformId": "U3350Z1", + "id": "6d93c95f-eebd-4649-9c1e-5d1f5d376fbc" + }, + { + "routeId": "L696", + "platformId": "U3350Z1", + "id": "8d76b44c-a3ce-4eba-95de-f2276fceb8da" + }, + { + "routeId": "L466", + "platformId": "U3351Z1", + "id": "a3c088f2-5ffb-4c24-b18a-defc5dd97b29" + }, + { + "routeId": "L475", + "platformId": "U3351Z1", + "id": "9baa3421-bd56-44c3-b8a5-d61d9c8d4d21" + }, + { + "routeId": "L466", + "platformId": "U3351Z2", + "id": "4ec4ecb7-cf3a-45f2-8c59-2d53faa1aaf2" + }, + { + "routeId": "L475", + "platformId": "U3351Z2", + "id": "b040985b-d736-41de-bc9c-c61bd4d3e75f" + }, + { + "routeId": "L385", + "platformId": "U3355Z1", + "id": "796a71d0-16fe-4048-b1a1-a8fd22d0ff1f" + }, + { + "routeId": "L385", + "platformId": "U3355Z2", + "id": "4ec8a13f-3516-4f0f-8b5c-11373b160ffa" + }, + { + "routeId": "L478", + "platformId": "U3356Z1", + "id": "a601945c-bc97-48d2-8cdb-a79494549a75" + }, + { + "routeId": "L477", + "platformId": "U3356Z1", + "id": "da89c876-0e9d-4593-b1b9-f1aebea887e1" + }, + { + "routeId": "L478", + "platformId": "U3356Z2", + "id": "1085c087-fef2-4e24-875d-57cea1f43168" + }, + { + "routeId": "L477", + "platformId": "U3356Z2", + "id": "7401c368-6ca8-4e61-a78c-61c3f97e50dc" + }, + { + "routeId": "L517", + "platformId": "U3357Z1", + "id": "de1138fb-c315-474d-88f3-8af0fbc61610" + }, + { + "routeId": "L517", + "platformId": "U3357Z2", + "id": "6cd64eb7-7994-4239-be84-2d28114916f3" + }, + { + "routeId": "L555", + "platformId": "U3358Z1", + "id": "9a126202-6c95-4c9d-9d4d-192bd2b9164c" + }, + { + "routeId": "L555", + "platformId": "U3358Z2", + "id": "1ce39fc4-f8df-49a1-9ab9-8667b245839a" + }, + { + "routeId": "L113", + "platformId": "U335Z1", + "id": "8ea15b7b-38fe-47d7-9a22-d68bac8cf318" + }, + { + "routeId": "L154", + "platformId": "U335Z1", + "id": "b8fbd9a1-d49e-4594-8764-a7a7983f4342" + }, + { + "routeId": "L913", + "platformId": "U335Z1", + "id": "eca4a830-8e3e-4cee-b4f1-bd411cba6c33" + }, + { + "routeId": "L333", + "platformId": "U335Z1", + "id": "b2f21ad6-6e2b-4991-8067-a0ae6a5974be" + }, + { + "routeId": "L960", + "platformId": "U335Z1", + "id": "4491c25c-ecf8-4638-b944-cd69167783c2" + }, + { + "routeId": "L113", + "platformId": "U335Z2", + "id": "9cd35fa4-f0db-4b39-8d67-cac9034b3c88" + }, + { + "routeId": "L154", + "platformId": "U335Z2", + "id": "ff477341-fea8-465d-8c99-a0f5e972f3ef" + }, + { + "routeId": "L913", + "platformId": "U335Z2", + "id": "8b78049f-83dd-4b78-8de3-1d10c495c19f" + }, + { + "routeId": "L333", + "platformId": "U335Z2", + "id": "107d2822-b434-4154-bfaf-e755f7407ca1" + }, + { + "routeId": "L960", + "platformId": "U335Z2", + "id": "4af51e7b-56e8-46d5-85e9-328cf150c696" + }, + { + "routeId": "L415", + "platformId": "U3362Z1", + "id": "98278053-14e2-4b84-a8c4-033a9d896e2c" + }, + { + "routeId": "L415", + "platformId": "U3362Z2", + "id": "bfa635f8-db59-48c3-a8e5-004632fea8c1" + }, + { + "routeId": "L711", + "platformId": "U3366Z1", + "id": "56606fc2-3169-4426-b275-087a1dfe4c89" + }, + { + "routeId": "L711", + "platformId": "U3368Z1", + "id": "b14310b5-2622-431f-a75d-868ef3dd204c" + }, + { + "routeId": "L711", + "platformId": "U3368Z2", + "id": "912978e7-607e-4159-9758-2b4a29aadc3e" + }, + { + "routeId": "L711", + "platformId": "U3369Z1", + "id": "52ad6bb8-83dc-4b9f-9a65-d3975ea38e15" + }, + { + "routeId": "L711", + "platformId": "U3369Z2", + "id": "a667b9b8-3c05-4737-886e-34cb7a25665c" + }, + { + "routeId": "L229", + "platformId": "U336Z1", + "id": "023084b2-3b51-4d16-9ccb-9483f7da68c3" + }, + { + "routeId": "L906", + "platformId": "U336Z1", + "id": "445bf51d-e2c5-49dd-b8e4-32612e525bf8" + }, + { + "routeId": "L209", + "platformId": "U336Z1", + "id": "5357abeb-40e3-4aa5-987e-d862afccec09" + }, + { + "routeId": "L226", + "platformId": "U336Z1", + "id": "f0337c21-b8c1-43a6-be8f-b1f8cae2b767" + }, + { + "routeId": "L227", + "platformId": "U336Z1", + "id": "d999c008-aeeb-49b0-9c87-195a9c2934eb" + }, + { + "routeId": "L903", + "platformId": "U336Z1", + "id": "1c1ff55e-f4dc-4ff9-8ba2-b4c4a65107c5" + }, + { + "routeId": "L366", + "platformId": "U336Z1", + "id": "606f68d3-23a0-46f8-8828-e6f777cc3965" + }, + { + "routeId": "L364", + "platformId": "U336Z1", + "id": "8a2a4889-2606-453b-bc56-56406c3dc331" + }, + { + "routeId": "L387", + "platformId": "U336Z1", + "id": "e52da05d-65c3-4028-920d-b4c69bf0f706" + }, + { + "routeId": "L381", + "platformId": "U336Z1", + "id": "5cd76dc5-4cf6-4b75-aae6-6d68f8542aa5" + }, + { + "routeId": "L382", + "platformId": "U336Z1", + "id": "26ec8d44-3c2d-4bd4-ab93-5756bff4cf53" + }, + { + "routeId": "L383", + "platformId": "U336Z1", + "id": "0fa34d58-8d0e-405e-afbf-75316826580c" + }, + { + "routeId": "L959", + "platformId": "U336Z1", + "id": "5dee61cf-1381-4401-9eb9-dac7e95006f8" + }, + { + "routeId": "L126", + "platformId": "U336Z2", + "id": "398acf94-579e-41d5-b2e5-d928fb989ca3" + }, + { + "routeId": "L229", + "platformId": "U336Z2", + "id": "37f9b2bb-392c-4599-86f3-0f3356d41128" + }, + { + "routeId": "L209", + "platformId": "U336Z2", + "id": "814e9e64-5a7c-4892-8b33-9f524cbb5fb0" + }, + { + "routeId": "L226", + "platformId": "U336Z2", + "id": "7e81cf79-6e38-4405-8412-f020a6bb1252" + }, + { + "routeId": "L227", + "platformId": "U336Z2", + "id": "c45946e1-74b0-431b-ab28-077a717d2aec" + }, + { + "routeId": "L903", + "platformId": "U336Z2", + "id": "b6cdec62-1c8d-4c09-adc0-461f93b3d354" + }, + { + "routeId": "L228", + "platformId": "U336Z2", + "id": "e390776a-c6ba-4aec-abc4-124f88e4e4ef" + }, + { + "routeId": "L366", + "platformId": "U336Z2", + "id": "6a10550b-ab18-41a9-96ca-4752cd7463c6" + }, + { + "routeId": "L364", + "platformId": "U336Z2", + "id": "74503df4-4ebd-4bb4-a33e-7c6d8d1b88ec" + }, + { + "routeId": "L325", + "platformId": "U336Z2", + "id": "b7100e88-d8ca-4963-853c-62bd89c9f1fe" + }, + { + "routeId": "L381", + "platformId": "U336Z2", + "id": "d6f8d65d-8696-4a47-ad84-3693f1ce529a" + }, + { + "routeId": "L387", + "platformId": "U336Z2", + "id": "f11f4737-6b5e-4949-b1cd-04408424f354" + }, + { + "routeId": "L382", + "platformId": "U336Z2", + "id": "4a0b0072-f668-4cf3-9dab-9cc0f0cd5a7f" + }, + { + "routeId": "L383", + "platformId": "U336Z2", + "id": "ed0aad4e-305d-4bbf-b486-5dbedb595146" + }, + { + "routeId": "L959", + "platformId": "U336Z2", + "id": "b48bf34c-214e-4171-9515-dcb9cb352bad" + }, + { + "routeId": "L126", + "platformId": "U336Z3", + "id": "17a65a30-8eec-4b3d-a467-a01e6e70d829" + }, + { + "routeId": "L229", + "platformId": "U336Z3", + "id": "28abd549-09fd-4a29-a066-cacca46032d5" + }, + { + "routeId": "L209", + "platformId": "U336Z3", + "id": "90585201-3747-4898-a01b-3f25e1d78cb3" + }, + { + "routeId": "L226", + "platformId": "U336Z3", + "id": "84b0290e-a884-4264-8454-ba259dffefa1" + }, + { + "routeId": "L227", + "platformId": "U336Z3", + "id": "7c4a5ca7-912b-4a60-99e8-fe9585b2b715" + }, + { + "routeId": "L228", + "platformId": "U336Z3", + "id": "477638f0-4999-4f28-84d8-804794845af7" + }, + { + "routeId": "L366", + "platformId": "U336Z3", + "id": "3463a4da-9643-494a-b539-54894d74bc01" + }, + { + "routeId": "L364", + "platformId": "U336Z3", + "id": "25ad2c89-396c-47de-b4f1-12082c0d047e" + }, + { + "routeId": "L325", + "platformId": "U336Z3", + "id": "de28956a-0a12-4b5b-a322-9f28f0ff7d70" + }, + { + "routeId": "L906", + "platformId": "U336Z4", + "id": "22402ed1-2885-41e9-9957-aa86c0c8d265" + }, + { + "routeId": "L618", + "platformId": "U3370Z1", + "id": "b355ca9e-97e8-4b2c-81eb-944ebe5a8cce" + }, + { + "routeId": "L600", + "platformId": "U3370Z1", + "id": "38d00e8a-9204-4d34-a882-6738d01dfda8" + }, + { + "routeId": "L619", + "platformId": "U3370Z1", + "id": "c5036778-dc43-4358-b0eb-dc747cb384f7" + }, + { + "routeId": "L555", + "platformId": "U3370Z1", + "id": "744675ae-dd0a-4e0e-9474-a6656ad7b829" + }, + { + "routeId": "L600", + "platformId": "U3370Z2", + "id": "281e331b-acd3-467f-b44a-9fec09948046" + }, + { + "routeId": "L619", + "platformId": "U3370Z2", + "id": "68e18e0d-b9ab-4a5d-93fb-c2b11db6f5c9" + }, + { + "routeId": "L555", + "platformId": "U3370Z2", + "id": "91246d0e-93d9-4430-b9ad-cacc5cd0723f" + }, + { + "routeId": "L618", + "platformId": "U3370Z3", + "id": "6fc42602-02f5-4849-9faf-cfdaa02ba3cd" + }, + { + "routeId": "L415", + "platformId": "U3371Z1", + "id": "f334b8d8-4b2d-4031-95c7-2186f2370a14" + }, + { + "routeId": "L415", + "platformId": "U3372Z1", + "id": "7b14481c-7d43-4428-9eb9-65dbf4ea1465" + }, + { + "routeId": "L315", + "platformId": "U3379Z2", + "id": "ad7ed403-eec6-4977-b59c-43da01d46ffe" + }, + { + "routeId": "L403", + "platformId": "U3379Z2", + "id": "682fad93-d3fb-4bf3-b601-a96c9be281a8" + }, + { + "routeId": "L667", + "platformId": "U3379Z2", + "id": "d1f00750-309a-4132-9f13-150f330275f3" + }, + { + "routeId": "L434", + "platformId": "U3379Z3", + "id": "f6592079-88fe-4c6b-86d0-58260e3cc6c8" + }, + { + "routeId": "L442", + "platformId": "U3379Z3", + "id": "625b2ce6-192c-4c75-a7fa-098dfa2f6ff6" + }, + { + "routeId": "L403", + "platformId": "U3379Z4", + "id": "b6ba074a-4101-4875-a5c5-48a06723db24" + }, + { + "routeId": "L431", + "platformId": "U3379Z4", + "id": "e3c379f5-56f4-481d-9ac6-599aa7f0f4e1" + }, + { + "routeId": "L431", + "platformId": "U3379Z5", + "id": "4225f18a-4d0e-4a0a-a689-76e1797bb5d1" + }, + { + "routeId": "L434", + "platformId": "U3379Z6", + "id": "16cd4034-a357-44d5-9519-1edfbafa0717" + }, + { + "routeId": "L442", + "platformId": "U3379Z6", + "id": "fbebba9e-2fa0-41d1-a7d9-44399b0b3f2f" + }, + { + "routeId": "L315", + "platformId": "U3379Z7", + "id": "6b22a7ef-230f-47a3-b9ff-d5bd8e3e587a" + }, + { + "routeId": "L667", + "platformId": "U3379Z7", + "id": "65c05e5b-0880-4c85-8477-8bd56a068c4d" + }, + { + "routeId": "L5", + "platformId": "U337Z1", + "id": "1478418e-bc48-4a47-b38c-235dd6c08be5" + }, + { + "routeId": "L12", + "platformId": "U337Z1", + "id": "bc050532-a57e-4b08-82c2-05a9611cfbc2" + }, + { + "routeId": "L20", + "platformId": "U337Z1", + "id": "e12b98c6-afaa-4dea-bd1a-778b818675ea" + }, + { + "routeId": "L94", + "platformId": "U337Z1", + "id": "692eee01-c463-46aa-bb68-64d73545a141" + }, + { + "routeId": "L1803", + "platformId": "U337Z11", + "id": "f086d68b-dcd5-4876-8289-9fcb0b756e3f" + }, + { + "routeId": "L5", + "platformId": "U337Z2", + "id": "97de52e6-4130-42c6-81d9-c9b7dfa480a7" + }, + { + "routeId": "L12", + "platformId": "U337Z2", + "id": "2eed86a4-4a4a-4031-a11a-1ca160fabd90" + }, + { + "routeId": "L20", + "platformId": "U337Z2", + "id": "8616c15f-c7ee-4ae4-9b68-00ae9f616091" + }, + { + "routeId": "L94", + "platformId": "U337Z2", + "id": "e133a592-5bd7-4889-9e9e-ca78bb91b9c2" + }, + { + "routeId": "L105", + "platformId": "U337Z3", + "id": "bd3bc858-721a-4bb0-85cf-0b4990aff2fa" + }, + { + "routeId": "L118", + "platformId": "U337Z3", + "id": "c2cfe43a-6874-4621-ae18-1dfa58ad0f8b" + }, + { + "routeId": "L125", + "platformId": "U337Z3", + "id": "b480ecee-bbb2-4967-ba96-d5c354e381e1" + }, + { + "routeId": "L196", + "platformId": "U337Z3", + "id": "fdfa4157-ae1d-4ee2-a040-b1ddcb6d7e4b" + }, + { + "routeId": "L172", + "platformId": "U337Z3", + "id": "7ba07403-a1dd-46a1-8407-714cfcd5373d" + }, + { + "routeId": "L190", + "platformId": "U337Z3", + "id": "674f0dd3-fb91-4a67-a940-2a096153971b" + }, + { + "routeId": "L197", + "platformId": "U337Z3", + "id": "d5f5e5eb-68c5-457a-8fad-f7fa7f3345a8" + }, + { + "routeId": "L241", + "platformId": "U337Z3", + "id": "6c1ab04f-9584-4cbb-a7df-15b215063113" + }, + { + "routeId": "L129", + "platformId": "U337Z3", + "id": "f62bcf4e-ec3e-4faa-abad-47573be91c5f" + }, + { + "routeId": "L244", + "platformId": "U337Z3", + "id": "71dd0edd-8cca-4da3-960d-e1851a561ae6" + }, + { + "routeId": "L901", + "platformId": "U337Z3", + "id": "a3b0787b-1469-4028-91e6-6145326813cf" + }, + { + "routeId": "L907", + "platformId": "U337Z3", + "id": "0d293a59-92b7-4dc1-b4cf-ba5d44168b55" + }, + { + "routeId": "L320", + "platformId": "U337Z3", + "id": "69540b74-31a5-40f1-b870-40ad9cdafe3a" + }, + { + "routeId": "L317", + "platformId": "U337Z3", + "id": "b1c6ac74-1a20-474c-b025-d7a0ee358054" + }, + { + "routeId": "L318", + "platformId": "U337Z3", + "id": "7a5fcf4b-83e2-4362-8e51-d00c6bdfe482" + }, + { + "routeId": "L961", + "platformId": "U337Z3", + "id": "9a667f50-07d8-404a-a4f5-3e81b0944247" + }, + { + "routeId": "L314", + "platformId": "U337Z3", + "id": "fcd0d735-5a26-4b27-8c35-7ed4dfea5f77" + }, + { + "routeId": "L360", + "platformId": "U337Z3", + "id": "e128eca4-2496-4722-9c79-cddeffbbb7ec" + }, + { + "routeId": "L361", + "platformId": "U337Z3", + "id": "58cde010-1947-430b-88c3-5d5660c8e624" + }, + { + "routeId": "L390", + "platformId": "U337Z3", + "id": "82d6ae08-7463-419e-b5ac-4dae376ce391" + }, + { + "routeId": "L395", + "platformId": "U337Z3", + "id": "22614f7c-d4b0-4fdf-84af-9160d94854ac" + }, + { + "routeId": "L420", + "platformId": "U337Z3", + "id": "cc939524-7c1a-4b66-a1b7-202c3e4b83a6" + }, + { + "routeId": "L392", + "platformId": "U337Z3", + "id": "98940b93-81d9-44a1-9bf2-ae71a9932d0d" + }, + { + "routeId": "L105", + "platformId": "U337Z4", + "id": "6f02a114-6f18-4414-ae39-285401fae1a4" + }, + { + "routeId": "L118", + "platformId": "U337Z4", + "id": "992d0bea-adb9-4cbf-b53f-5bfd1f998df7" + }, + { + "routeId": "L125", + "platformId": "U337Z4", + "id": "1aa01e68-6921-4ec9-8043-6497096fead3" + }, + { + "routeId": "L172", + "platformId": "U337Z4", + "id": "a794fc70-0d75-4c3f-9675-ddbffa66b33e" + }, + { + "routeId": "L190", + "platformId": "U337Z4", + "id": "aa8ee31b-2ffa-48df-910a-0379eb956f64" + }, + { + "routeId": "L196", + "platformId": "U337Z4", + "id": "fab912a8-10d6-4e7a-b6fc-839077c53901" + }, + { + "routeId": "L197", + "platformId": "U337Z4", + "id": "6d11be90-097d-4f03-b1f7-e343254cf96f" + }, + { + "routeId": "L241", + "platformId": "U337Z4", + "id": "e1f71d44-a9f3-4422-ac4f-b731efdbd3b3" + }, + { + "routeId": "L129", + "platformId": "U337Z4", + "id": "a1138c52-0e5d-4754-8e24-f420f76b7725" + }, + { + "routeId": "L244", + "platformId": "U337Z4", + "id": "b483e437-65eb-4489-9cc7-235e6ec4df5f" + }, + { + "routeId": "L901", + "platformId": "U337Z4", + "id": "18be994d-2749-4090-af04-cb31c1039947" + }, + { + "routeId": "L907", + "platformId": "U337Z4", + "id": "aa6e7e96-a3a5-4f80-9ecc-750343ad8e83" + }, + { + "routeId": "L317", + "platformId": "U337Z4", + "id": "9222fcb3-8fe0-400f-be7f-bc74cd5de57e" + }, + { + "routeId": "L320", + "platformId": "U337Z4", + "id": "0401fe4d-a12a-416f-8c6e-9bc34e075c46" + }, + { + "routeId": "L318", + "platformId": "U337Z4", + "id": "80bc143b-e9b1-4dfd-a5ae-8ef7e118c5e2" + }, + { + "routeId": "L961", + "platformId": "U337Z4", + "id": "af573643-b5b2-4c83-99dd-b51d0e96807f" + }, + { + "routeId": "L314", + "platformId": "U337Z4", + "id": "0a3529ee-b743-418b-80e8-9c661675effb" + }, + { + "routeId": "L360", + "platformId": "U337Z4", + "id": "fcb1d03b-2d8f-41d8-9c81-362abc35aed1" + }, + { + "routeId": "L361", + "platformId": "U337Z4", + "id": "9e0735ec-300d-4f1f-a386-261e05d36483" + }, + { + "routeId": "L390", + "platformId": "U337Z4", + "id": "48d8c69f-9e73-473f-8fba-9af7cba92d1f" + }, + { + "routeId": "L395", + "platformId": "U337Z4", + "id": "b1f490be-9b1f-4fe1-b0ed-c730a47ffdef" + }, + { + "routeId": "L392", + "platformId": "U337Z4", + "id": "beca88f6-5db5-4321-b75e-2388c2e6099a" + }, + { + "routeId": "L420", + "platformId": "U337Z4", + "id": "b0b18165-7ad4-4b17-97d6-4c1c56955bda" + }, + { + "routeId": "L315", + "platformId": "U3380Z1", + "id": "0e10653e-e060-456e-904c-bd3cb26028bd" + }, + { + "routeId": "L315", + "platformId": "U3380Z2", + "id": "3851d01d-9b82-4010-a102-01015c91234b" + }, + { + "routeId": "L315", + "platformId": "U3381Z1", + "id": "fbb5680a-64ed-4eb0-9640-31440552fbaf" + }, + { + "routeId": "L315", + "platformId": "U3381Z2", + "id": "ada784b5-7508-49b2-9a49-655bcb2de1d7" + }, + { + "routeId": "L315", + "platformId": "U3383Z1", + "id": "d7037b36-5ad6-45b9-b850-8add644ec529" + }, + { + "routeId": "L315", + "platformId": "U3383Z2", + "id": "1980ee47-e878-489e-8088-45c273c7c94d" + }, + { + "routeId": "L315", + "platformId": "U3384Z1", + "id": "3492ceb4-361b-4538-94c3-7d5865b7e712" + }, + { + "routeId": "L315", + "platformId": "U3384Z2", + "id": "ccf5580f-b20f-4075-b626-335bde86dad0" + }, + { + "routeId": "L463", + "platformId": "U3385Z51", + "id": "8f0ee7cb-632f-4325-bfda-3df98fdccd00" + }, + { + "routeId": "L432", + "platformId": "U3385Z51", + "id": "23f34262-d156-499d-854d-bb553d590539" + }, + { + "routeId": "L463", + "platformId": "U3385Z52", + "id": "add055be-24f8-4202-88e3-b50cf8f91384" + }, + { + "routeId": "L432", + "platformId": "U3385Z52", + "id": "b95f7481-7dd5-41ad-ad59-1adf26bc3526" + }, + { + "routeId": "L463", + "platformId": "U3386Z1", + "id": "2e34f9d3-85dd-4dab-a72c-a4b62e9a8fa2" + }, + { + "routeId": "L432", + "platformId": "U3386Z1", + "id": "5fad4a11-f071-418a-8340-d39f22abba83" + }, + { + "routeId": "L463", + "platformId": "U3386Z2", + "id": "d1cff666-c3de-4756-98fd-e4306b968e26" + }, + { + "routeId": "L432", + "platformId": "U3386Z2", + "id": "bcae2ba1-6556-42ee-9c5b-f95c0460f94d" + }, + { + "routeId": "L463", + "platformId": "U3387Z1", + "id": "4c32d077-9b47-40aa-83c4-67ebc49dc364" + }, + { + "routeId": "L432", + "platformId": "U3387Z1", + "id": "8ecfc27c-1d24-4103-9ca6-6567b12d2733" + }, + { + "routeId": "L463", + "platformId": "U3387Z2", + "id": "e3212605-9959-4243-91ea-eab5442c44a3" + }, + { + "routeId": "L432", + "platformId": "U3387Z2", + "id": "eb3257fc-d729-42d7-8321-19c2fa8f8df1" + }, + { + "routeId": "L731", + "platformId": "U3388Z1", + "id": "9163a9f2-0aaf-4172-8248-25532fffa4d5" + }, + { + "routeId": "L463", + "platformId": "U3388Z1", + "id": "54773777-d0f4-4d31-8dee-6fe1ad3e303f" + }, + { + "routeId": "L432", + "platformId": "U3388Z1", + "id": "af6dab80-40d5-4b67-9ac1-5a3b9883100e" + }, + { + "routeId": "L467", + "platformId": "U3388Z1", + "id": "1a15032f-8f08-4a54-91c8-e1bd208d1285" + }, + { + "routeId": "L315", + "platformId": "U3389Z1", + "id": "08707c22-6ff8-49bb-b510-08ed6a3c5e07" + }, + { + "routeId": "L731", + "platformId": "U3389Z1", + "id": "e773d3b7-b551-4155-8476-a2436c176de8" + }, + { + "routeId": "L345", + "platformId": "U3389Z1", + "id": "386c6bae-078b-4bb0-89f9-27c2fcfe1e7e" + }, + { + "routeId": "L463", + "platformId": "U3389Z1", + "id": "b89e869a-d8b3-434d-b3f1-75ae84864693" + }, + { + "routeId": "L499", + "platformId": "U3389Z1", + "id": "beddcba6-69f1-4cb3-ac14-87c37d9290d1" + }, + { + "routeId": "L432", + "platformId": "U3389Z1", + "id": "6af93ef2-9fb2-4395-8264-213944a8fd8a" + }, + { + "routeId": "L713", + "platformId": "U3389Z1", + "id": "dfba3dbc-1fbc-4df4-a863-e142ec083dfc" + }, + { + "routeId": "L725", + "platformId": "U3389Z1", + "id": "64481b84-6856-4561-84f0-b95e6ff8440e" + }, + { + "routeId": "L467", + "platformId": "U3389Z1", + "id": "84e37693-cae7-4283-987f-0ab72e875fb0" + }, + { + "routeId": "L700", + "platformId": "U3389Z1", + "id": "3ddc8956-5590-4066-8d1a-63dda4d5986a" + }, + { + "routeId": "L720", + "platformId": "U3389Z1", + "id": "1d533d82-5996-4b6d-be01-1dd7ec593783" + }, + { + "routeId": "L723", + "platformId": "U3389Z1", + "id": "028ec20b-55a4-496a-bff2-f798f979a743" + }, + { + "routeId": "L724", + "platformId": "U3389Z1", + "id": "d2ab06f6-4e9c-4391-bd3f-9beb63c0581a" + }, + { + "routeId": "L775", + "platformId": "U3389Z1", + "id": "de82f2db-34ba-42e0-b741-9c41b4fd24e7" + }, + { + "routeId": "L315", + "platformId": "U3389Z2", + "id": "0e7e4b3a-7f5d-4432-9772-65eb909a07c7" + }, + { + "routeId": "L499", + "platformId": "U3389Z2", + "id": "9d01e6cf-c125-43d4-8dfe-d426b4052132" + }, + { + "routeId": "L713", + "platformId": "U3389Z2", + "id": "f5835b4a-7ad8-49fa-a5d7-281e76311e6d" + }, + { + "routeId": "L725", + "platformId": "U3389Z2", + "id": "a0010f0b-3bdd-473c-b64b-78049e58f472" + }, + { + "routeId": "L700", + "platformId": "U3389Z2", + "id": "aff90ed0-39b1-4b44-9fab-e320d4701557" + }, + { + "routeId": "L720", + "platformId": "U3389Z2", + "id": "1a3210bd-b53d-4255-8ec0-ab01aa4b4f4f" + }, + { + "routeId": "L723", + "platformId": "U3389Z2", + "id": "92b5b39b-cb34-4eb0-a886-1070c27e7385" + }, + { + "routeId": "L724", + "platformId": "U3389Z2", + "id": "9ada2c77-f508-4926-956b-ef3271f51af1" + }, + { + "routeId": "L775", + "platformId": "U3389Z2", + "id": "09fbcc18-6aeb-4257-aa1a-166839c6b216" + }, + { + "routeId": "L125", + "platformId": "U338Z1", + "id": "ee0663cc-0322-401f-a741-75128b696f34" + }, + { + "routeId": "L175", + "platformId": "U338Z1", + "id": "2572378e-5337-4173-ab05-40ba84275a67" + }, + { + "routeId": "L183", + "platformId": "U338Z1", + "id": "9b66362b-1600-479a-aace-d563951f63cc" + }, + { + "routeId": "L911", + "platformId": "U338Z1", + "id": "63858d7f-98d3-4dcd-b5c9-0808eb6105ea" + }, + { + "routeId": "L227", + "platformId": "U338Z1", + "id": "0db3f0f1-5d6c-4f80-8b72-30f0649bea75" + }, + { + "routeId": "L226", + "platformId": "U338Z1", + "id": "b042be4d-fa6a-47e3-9ad4-ff75e51dc96f" + }, + { + "routeId": "L959", + "platformId": "U338Z1", + "id": "79283d68-af70-4f13-8d34-1f4545bafe16" + }, + { + "routeId": "L125", + "platformId": "U338Z2", + "id": "bc42d452-4185-4db7-b91d-cc50618c6740" + }, + { + "routeId": "L175", + "platformId": "U338Z2", + "id": "c0928f7f-3978-4387-82bd-faa7297e8b68" + }, + { + "routeId": "L183", + "platformId": "U338Z2", + "id": "522279e3-46ca-4933-8ac4-674dbd7b56cd" + }, + { + "routeId": "L911", + "platformId": "U338Z2", + "id": "21feefe2-5aa9-4477-bc7f-159262f68620" + }, + { + "routeId": "L226", + "platformId": "U338Z2", + "id": "7e21c450-9276-41c5-8afb-d4fde558e48f" + }, + { + "routeId": "L227", + "platformId": "U338Z2", + "id": "fa69d379-a9e1-459a-815b-c3e7a08f07cb" + }, + { + "routeId": "L959", + "platformId": "U338Z2", + "id": "2c554671-3c9f-421e-b68c-030e65a4f29a" + }, + { + "routeId": "L625", + "platformId": "U3390Z1", + "id": "a68d6017-7e6e-4cfc-8220-c84907d5cb9b" + }, + { + "routeId": "L580", + "platformId": "U3390Z1", + "id": "d2070656-ec0a-40ed-b2b4-370a7fe8e622" + }, + { + "routeId": "L625", + "platformId": "U3390Z2", + "id": "bfff8d97-a13d-4c46-bb70-064926650ba5" + }, + { + "routeId": "L580", + "platformId": "U3390Z2", + "id": "d227bdcd-3ff3-422d-bdea-1bbe54a1d38a" + }, + { + "routeId": "L731", + "platformId": "U3391Z1", + "id": "cdd83eef-3e88-401d-a701-3156e70799f8" + }, + { + "routeId": "L463", + "platformId": "U3391Z1", + "id": "af5e872e-c3d1-4db7-a7c3-e52f6c74c8d9" + }, + { + "routeId": "L432", + "platformId": "U3391Z1", + "id": "15b39b8f-eb22-4a2e-81b1-18878c3ba239" + }, + { + "routeId": "L467", + "platformId": "U3391Z1", + "id": "67ec3692-2516-455c-aa63-aad7eabfa1b1" + }, + { + "routeId": "L737", + "platformId": "U3391Z1", + "id": "27011a28-1b60-4cdb-8e34-0568c6468b66" + }, + { + "routeId": "L737", + "platformId": "U3391Z2", + "id": "7683586c-4f5d-48e8-80e0-19af28d676cc" + }, + { + "routeId": "L315", + "platformId": "U3392Z1", + "id": "13129fe8-5314-47e7-a6d0-73e98b3b2259" + }, + { + "routeId": "L345", + "platformId": "U3392Z1", + "id": "8f1369d8-2685-456c-b7df-9086b49314aa" + }, + { + "routeId": "L3360", + "platformId": "U3392Z1", + "id": "8065eca9-c782-4b4a-8309-1ffcd84dacbd" + }, + { + "routeId": "L700", + "platformId": "U3392Z1", + "id": "e5cba7a6-4631-48a8-9c79-3f5985f36622" + }, + { + "routeId": "L714", + "platformId": "U3392Z1", + "id": "4735c978-6d62-4390-a6cb-710767cf790e" + }, + { + "routeId": "L730", + "platformId": "U3392Z1", + "id": "c17d9bea-6699-4658-bfe8-c58076f2cf28" + }, + { + "routeId": "L720", + "platformId": "U3392Z1", + "id": "84dbad1f-2297-4212-a6f6-781981914d07" + }, + { + "routeId": "L315", + "platformId": "U3392Z2", + "id": "bbb65f94-3315-4326-aad3-3b64265adffa" + }, + { + "routeId": "L345", + "platformId": "U3392Z2", + "id": "ab5b2101-4716-4a6f-8b2e-d27e8589e941" + }, + { + "routeId": "L3360", + "platformId": "U3392Z2", + "id": "304f4b6a-3206-456b-9e7d-4089fb3e8781" + }, + { + "routeId": "L700", + "platformId": "U3392Z2", + "id": "63dce784-c0ab-4aec-b7b8-9511ddc46aa0" + }, + { + "routeId": "L714", + "platformId": "U3392Z2", + "id": "192c93f8-b482-4498-af19-8caef6fce604" + }, + { + "routeId": "L730", + "platformId": "U3392Z2", + "id": "765fc0ce-9fce-4c80-967e-a7698bb5f079" + }, + { + "routeId": "L720", + "platformId": "U3392Z2", + "id": "7ac6df55-e37c-4d7b-bb67-447382252307" + }, + { + "routeId": "L315", + "platformId": "U3393Z1", + "id": "339335b6-ef20-4608-ae5e-19edb8c93e85" + }, + { + "routeId": "L714", + "platformId": "U3393Z1", + "id": "3300cd51-2f81-47c8-9973-1d0cb5047a2c" + }, + { + "routeId": "L315", + "platformId": "U3393Z2", + "id": "d2aa6232-1cb1-451d-8ed4-64cc63465ec7" + }, + { + "routeId": "L714", + "platformId": "U3393Z2", + "id": "5adbbe22-3e3e-45ac-90e6-803ff86e83d0" + }, + { + "routeId": "L315", + "platformId": "U3394Z1", + "id": "3a08b39e-d525-4b0e-96c0-5cfb859f4c6f" + }, + { + "routeId": "L714", + "platformId": "U3394Z1", + "id": "7efd7d3f-e1ce-4140-9eab-bcc12e5d07d8" + }, + { + "routeId": "L315", + "platformId": "U3394Z2", + "id": "75c72bde-aa5f-467e-ba37-f4ab527b86ee" + }, + { + "routeId": "L714", + "platformId": "U3394Z2", + "id": "17e5b823-2cd1-439f-8655-be9cf2abc913" + }, + { + "routeId": "L315", + "platformId": "U3395Z1", + "id": "492c4b63-0f2f-48f3-9621-e38246857c4d" + }, + { + "routeId": "L345", + "platformId": "U3395Z1", + "id": "0fa3eb58-9cce-4712-a50d-bce93e137e97" + }, + { + "routeId": "L315", + "platformId": "U3395Z2", + "id": "82dc70b0-020e-4229-922f-7d277143049e" + }, + { + "routeId": "L345", + "platformId": "U3395Z2", + "id": "83dcb413-f845-4319-ac55-118849f34d54" + }, + { + "routeId": "L315", + "platformId": "U3396Z1", + "id": "c147e711-97af-47b8-97ab-6d007d5c93cb" + }, + { + "routeId": "L315", + "platformId": "U3396Z2", + "id": "22b0c5b6-96cf-45ee-81e4-bdfb13d6d799" + }, + { + "routeId": "L315", + "platformId": "U3397Z1", + "id": "d0e41784-1fe0-4df4-9d6d-fe7f8a90a654" + }, + { + "routeId": "L315", + "platformId": "U3397Z2", + "id": "bb1b74c4-cb59-4343-879b-4a59f3814ffc" + }, + { + "routeId": "L731", + "platformId": "U3398Z1", + "id": "17563290-a41a-4669-b9c2-9b0ad5da1e90" + }, + { + "routeId": "L731", + "platformId": "U3398Z2", + "id": "549b6a66-226c-488d-9a8e-18b496b9ad56" + }, + { + "routeId": "L315", + "platformId": "U3399Z1", + "id": "a8122d44-6c78-43fb-ba12-4dc25f5fc9ff" + }, + { + "routeId": "L315", + "platformId": "U3399Z2", + "id": "8fbe328e-7292-4967-8a6b-a255206a4664" + }, + { + "routeId": "L5", + "platformId": "U339Z1", + "id": "aee77a17-4791-4293-9970-1e9277149f9b" + }, + { + "routeId": "L9", + "platformId": "U339Z1", + "id": "155eb7ef-a2d3-4e43-af09-2335be2eb11c" + }, + { + "routeId": "L15", + "platformId": "U339Z1", + "id": "05155598-412a-4573-bad1-4ef7949b05e9" + }, + { + "routeId": "L26", + "platformId": "U339Z1", + "id": "2fb591af-0747-4a0c-b803-d880490c0299" + }, + { + "routeId": "L95", + "platformId": "U339Z1", + "id": "7943733c-19b6-414c-8240-3b86ed6f777f" + }, + { + "routeId": "L98", + "platformId": "U339Z1", + "id": "8bcf6b88-612e-47a7-8bd8-9ed128549ff9" + }, + { + "routeId": "L5", + "platformId": "U339Z2", + "id": "0305a657-4e6a-4159-9b10-07137aa95bd3" + }, + { + "routeId": "L9", + "platformId": "U339Z2", + "id": "6bd8bf00-2645-4c48-90c7-1d64fa89a6bf" + }, + { + "routeId": "L15", + "platformId": "U339Z2", + "id": "5567017d-4d14-428e-9c32-e901e1dc1353" + }, + { + "routeId": "L26", + "platformId": "U339Z2", + "id": "34a380d4-c325-4707-a636-1c33ce65097f" + }, + { + "routeId": "L95", + "platformId": "U339Z2", + "id": "ba323e91-7df0-4819-afc0-b83dc071e15f" + }, + { + "routeId": "L98", + "platformId": "U339Z2", + "id": "ab1e0bc7-6f41-4b85-af3c-b704a0124e2a" + }, + { + "routeId": "L225", + "platformId": "U33Z1", + "id": "e750479b-60b0-4594-8ae8-337dafc06bdf" + }, + { + "routeId": "L225", + "platformId": "U33Z2", + "id": "8977e328-dee8-4f3c-a0c7-ff07499bf607" + }, + { + "routeId": "L304", + "platformId": "U33Z3", + "id": "e938d832-9c78-464f-b09c-6d9e7c603acf" + }, + { + "routeId": "L380", + "platformId": "U33Z3", + "id": "bc8ef4a4-7d12-4e47-8199-8fdbd2b421ce" + }, + { + "routeId": "L304", + "platformId": "U33Z4", + "id": "326582f9-573c-4f32-ba89-98acea6c7764" + }, + { + "routeId": "L380", + "platformId": "U33Z4", + "id": "29daa6db-4cf9-4850-87f8-c63852cc78b1" + }, + { + "routeId": "L315", + "platformId": "U3400Z1", + "id": "ac307a4c-bd19-47b5-8d03-074b0c2c7f03" + }, + { + "routeId": "L315", + "platformId": "U3400Z2", + "id": "7c096baf-0936-4870-8d57-bef7af789725" + }, + { + "routeId": "L906", + "platformId": "U340Z1", + "id": "c2f1559f-f0ac-433c-adf1-52e47c01ca24" + }, + { + "routeId": "L226", + "platformId": "U340Z1", + "id": "8b508189-b0e3-46a7-aa39-0c094766d13e" + }, + { + "routeId": "L906", + "platformId": "U340Z2", + "id": "a5a2c858-da61-4c5b-aa16-8a2afe2496fa" + }, + { + "routeId": "L226", + "platformId": "U340Z2", + "id": "68512afa-33f3-46cd-a50a-7a5844ac9a27" + }, + { + "routeId": "L241", + "platformId": "U341Z1", + "id": "dd3d1310-bc97-4ca4-b011-3a46d798a469" + }, + { + "routeId": "L917", + "platformId": "U341Z1", + "id": "276f43e3-e826-405f-98b9-23a24595f157" + }, + { + "routeId": "L241", + "platformId": "U341Z2", + "id": "664f309b-ed7f-49e8-bc05-9dfdf16b8cc0" + }, + { + "routeId": "L917", + "platformId": "U341Z2", + "id": "651c9335-c413-4195-ab41-1be6314d4737" + }, + { + "routeId": "L201", + "platformId": "U342Z1", + "id": "cdd313d0-fc10-4e0f-898f-454d3ae7d689" + }, + { + "routeId": "L953", + "platformId": "U342Z1", + "id": "18c7a9f1-68d0-4046-8eb9-c99edb334ca2" + }, + { + "routeId": "L201", + "platformId": "U342Z2", + "id": "58390675-8d0a-40ce-bad6-253062cfbf30" + }, + { + "routeId": "L953", + "platformId": "U342Z2", + "id": "ccc7e935-8768-4a7b-ba34-92fd0db4b719" + }, + { + "routeId": "L904", + "platformId": "U343Z1", + "id": "2857391c-2855-4737-a828-3dd74d682694" + }, + { + "routeId": "L117", + "platformId": "U343Z1", + "id": "4a534ca7-eaa6-4f29-9093-3a63092af5dc" + }, + { + "routeId": "L203", + "platformId": "U343Z1", + "id": "31ae4c15-7a14-4585-9bd5-08442ded30b4" + }, + { + "routeId": "L904", + "platformId": "U343Z2", + "id": "acf2f919-ab24-4d7e-84c0-22365d3f0177" + }, + { + "routeId": "L117", + "platformId": "U343Z2", + "id": "322e0a52-7f86-48c8-bbfc-e0b8f9e575cd" + }, + { + "routeId": "L203", + "platformId": "U343Z2", + "id": "8971fbe8-be3b-4fa4-8ae9-d768a1f4cc9d" + }, + { + "routeId": "L125", + "platformId": "U344Z1", + "id": "eb31669c-f70f-4e24-87a9-cf5519040be2" + }, + { + "routeId": "L136", + "platformId": "U344Z1", + "id": "79e73fa9-f6ab-4081-85d8-b6bd94987b49" + }, + { + "routeId": "L213", + "platformId": "U344Z1", + "id": "31a0f6ea-0544-4694-a93a-fd9988757ead" + }, + { + "routeId": "L901", + "platformId": "U344Z1", + "id": "a3dde125-c58a-438f-8f54-403f4734d4e0" + }, + { + "routeId": "L906", + "platformId": "U344Z1", + "id": "21946435-4c96-4ca4-a094-5e07b9e262b4" + }, + { + "routeId": "L125", + "platformId": "U344Z2", + "id": "6d69e498-6ef3-4c96-95aa-8d77ed49471a" + }, + { + "routeId": "L136", + "platformId": "U344Z2", + "id": "690e6588-d86f-4a2e-8001-9fab884f222b" + }, + { + "routeId": "L213", + "platformId": "U344Z2", + "id": "c3b58ada-8527-48ba-9100-26607dcd181b" + }, + { + "routeId": "L901", + "platformId": "U344Z2", + "id": "36898d8d-b646-4f04-8076-accba8f80a79" + }, + { + "routeId": "L906", + "platformId": "U344Z2", + "id": "b1742423-5e2a-4df7-84a1-9ac01531f68c" + }, + { + "routeId": "L177", + "platformId": "U344Z3", + "id": "d9d1b585-4e15-45f2-b52f-4a1489b519f4" + }, + { + "routeId": "L181", + "platformId": "U344Z3", + "id": "dfbf7a2c-982b-420a-ba9a-e1daee0ab291" + }, + { + "routeId": "L177", + "platformId": "U344Z4", + "id": "c160759e-72b8-4583-b8a6-687d40642e38" + }, + { + "routeId": "L181", + "platformId": "U344Z4", + "id": "134116df-8b32-470e-bb86-7856eab04370" + }, + { + "routeId": "L177", + "platformId": "U345Z1", + "id": "7b0ba85b-56b0-403f-bcfc-a01b9b82c4d2" + }, + { + "routeId": "L200", + "platformId": "U345Z1", + "id": "b52d6e4d-c2a2-4fa4-8865-a63b6ddd6855" + }, + { + "routeId": "L202", + "platformId": "U345Z1", + "id": "92e77c87-ff74-4cac-8571-475cbc2df138" + }, + { + "routeId": "L235", + "platformId": "U345Z1", + "id": "d1850dc7-9cb6-4c3a-913b-6b884b4dcaf6" + }, + { + "routeId": "L905", + "platformId": "U345Z1", + "id": "5d574d3c-be10-41ff-b331-0f52c4aeec40" + }, + { + "routeId": "L177", + "platformId": "U345Z2", + "id": "993f7779-71ac-4c3e-a452-89ac0005d89f" + }, + { + "routeId": "L200", + "platformId": "U345Z2", + "id": "8c9ee4b0-a242-4182-9d9a-d09c9725e3e4" + }, + { + "routeId": "L202", + "platformId": "U345Z2", + "id": "d4d765dd-3149-4752-af3f-ec79e8803186" + }, + { + "routeId": "L235", + "platformId": "U345Z2", + "id": "0e9275fe-484f-41c2-ad83-45e357aa6eb5" + }, + { + "routeId": "L905", + "platformId": "U345Z2", + "id": "5383bf67-177c-4cf5-ac88-814634ed1b9e" + }, + { + "routeId": "L159", + "platformId": "U346Z1", + "id": "fd8a18b1-7017-414e-a49d-ec582e3f1bd7" + }, + { + "routeId": "L378", + "platformId": "U346Z1", + "id": "d1c4ae07-252c-4b4b-bf69-eb9f8d29d399" + }, + { + "routeId": "L375", + "platformId": "U346Z1", + "id": "cfc8cbb5-beac-4b70-b125-c5a16dd52dc4" + }, + { + "routeId": "L953", + "platformId": "U346Z1", + "id": "e7de2b42-690b-4284-b5b1-f03e0802f0d4" + }, + { + "routeId": "L159", + "platformId": "U346Z2", + "id": "216be8cf-d8fc-472e-8207-f210a5f6bad2" + }, + { + "routeId": "L378", + "platformId": "U346Z2", + "id": "8055f95f-ba4a-45a3-9c45-0d672945a411" + }, + { + "routeId": "L375", + "platformId": "U346Z2", + "id": "ceedce67-4a1b-4795-b65c-4e30fbf3fd34" + }, + { + "routeId": "L953", + "platformId": "U346Z2", + "id": "c6a74807-d3f3-4ab8-9987-6aafb2ee39c8" + }, + { + "routeId": "L120", + "platformId": "U347Z1", + "id": "87387fac-b566-4151-8df1-4b936fd920e2" + }, + { + "routeId": "L951", + "platformId": "U347Z1", + "id": "80b6c8e4-19c3-452c-bcf8-480d615a69d8" + }, + { + "routeId": "L120", + "platformId": "U347Z2", + "id": "5751911b-78a2-498c-bc3d-8c9b77ca8661" + }, + { + "routeId": "L951", + "platformId": "U347Z2", + "id": "a9ead34e-1db5-4310-ba9c-1e2123de57a5" + }, + { + "routeId": "L7", + "platformId": "U348Z1", + "id": "47c3374f-3731-4d9f-9f23-123cd6dbec7c" + }, + { + "routeId": "L8", + "platformId": "U348Z1", + "id": "605a147c-2f15-4619-a2c8-cb5a318d0835" + }, + { + "routeId": "L92", + "platformId": "U348Z1", + "id": "006c4036-e42b-43d8-86db-076c60e086e1" + }, + { + "routeId": "L7", + "platformId": "U348Z2", + "id": "aab76434-0e7a-474f-baba-e20fb5dcc3f0" + }, + { + "routeId": "L8", + "platformId": "U348Z2", + "id": "710f4031-10f7-4082-8a3e-92d5d5880e5a" + }, + { + "routeId": "L92", + "platformId": "U348Z2", + "id": "2b5ce5c6-135e-41f8-92dc-193a4b93031a" + }, + { + "routeId": "L109", + "platformId": "U349Z1", + "id": "95b5e067-8cc9-4449-bd2d-93289cc2da46" + }, + { + "routeId": "L909", + "platformId": "U349Z1", + "id": "915e5efa-4996-4670-bfef-9f246b8b3e15" + }, + { + "routeId": "L110", + "platformId": "U349Z1", + "id": "b34df466-e740-4b38-bffa-58be0dc46472" + }, + { + "routeId": "L208", + "platformId": "U349Z1", + "id": "370f4336-a57a-4e61-a1e2-130164f6d216" + }, + { + "routeId": "L109", + "platformId": "U349Z2", + "id": "74b50617-56dc-4162-8ad5-23187e1002dd" + }, + { + "routeId": "L909", + "platformId": "U349Z2", + "id": "126e9474-b6c3-4f9e-8ffc-9431120a4073" + }, + { + "routeId": "L110", + "platformId": "U349Z2", + "id": "7a2f7112-10b0-4d7e-8be6-0e66f8e07037" + }, + { + "routeId": "L208", + "platformId": "U349Z2", + "id": "4353e4c9-dfe7-485b-b9d9-48a3e17c3f04" + }, + { + "routeId": "L224", + "platformId": "U349Z2", + "id": "b86d7508-a384-43c2-ae54-b3f620e4b322" + }, + { + "routeId": "L5", + "platformId": "U34Z1", + "id": "34e70b5a-8596-46aa-9893-504056937022" + }, + { + "routeId": "L7", + "platformId": "U34Z1", + "id": "89b97822-e429-476e-9a1e-6d886cae7596" + }, + { + "routeId": "L9", + "platformId": "U34Z1", + "id": "4a619306-6bd5-4230-bb67-db92a5b5ed52" + }, + { + "routeId": "L10", + "platformId": "U34Z1", + "id": "97b7cb7a-2e8a-4ffa-ba7d-8cdc923633b2" + }, + { + "routeId": "L11", + "platformId": "U34Z1", + "id": "b9f03824-ed0e-4e35-8000-e25bd1a11c3a" + }, + { + "routeId": "L95", + "platformId": "U34Z1", + "id": "d69f2061-db28-4f6f-9172-04067f36392e" + }, + { + "routeId": "L98", + "platformId": "U34Z1", + "id": "e2805e62-79bd-4a9a-8651-9cca55e4fae7" + }, + { + "routeId": "L133", + "platformId": "U34Z1", + "id": "5d364958-33c0-4f1f-99f8-3dcb6b32a0ed" + }, + { + "routeId": "L908", + "platformId": "U34Z1", + "id": "b9ca0703-4115-4d2a-a4ca-96dc23fbef6d" + }, + { + "routeId": "L909", + "platformId": "U34Z1", + "id": "d1d39e65-ea15-4f80-bf3a-d2552ca1fe22" + }, + { + "routeId": "L5", + "platformId": "U34Z2", + "id": "1dc4c288-7d6b-4626-824f-6d8eb415670f" + }, + { + "routeId": "L7", + "platformId": "U34Z2", + "id": "27263338-f47e-4ccf-b4c8-e4aaf474e539" + }, + { + "routeId": "L9", + "platformId": "U34Z2", + "id": "8a7b724d-26cb-4c0e-890f-0cb7a6c79202" + }, + { + "routeId": "L10", + "platformId": "U34Z2", + "id": "444e1bc7-2971-4bba-b608-430d047be9f4" + }, + { + "routeId": "L11", + "platformId": "U34Z2", + "id": "b502411f-d5fb-4187-afbd-ef98b1a7beb2" + }, + { + "routeId": "L95", + "platformId": "U34Z2", + "id": "5795a50b-f6ee-4d33-9d81-5e31495d4e84" + }, + { + "routeId": "L98", + "platformId": "U34Z2", + "id": "727b8aca-fae7-4a4e-9489-54f1cec18469" + }, + { + "routeId": "L133", + "platformId": "U34Z2", + "id": "7bfdf148-701c-4294-aebb-7ffc2665f516" + }, + { + "routeId": "L908", + "platformId": "U34Z2", + "id": "5a161f4b-6162-41d0-afc6-90eab7d03991" + }, + { + "routeId": "L909", + "platformId": "U34Z2", + "id": "bdedf954-661e-43f5-8c9e-c8984db57783" + }, + { + "routeId": "L8", + "platformId": "U350Z1", + "id": "750e539c-f5c3-467f-ac74-8826e3482d6d" + }, + { + "routeId": "L18", + "platformId": "U350Z1", + "id": "b4075568-bc0e-4567-a442-1c4d50076a36" + }, + { + "routeId": "L8", + "platformId": "U350Z2", + "id": "dba0fe5f-cbbc-46b3-9562-ccb1ad508369" + }, + { + "routeId": "L18", + "platformId": "U350Z2", + "id": "6654f0f3-aab6-4e1a-9fd4-33ea925454f1" + }, + { + "routeId": "L902", + "platformId": "U350Z3", + "id": "8a5132e6-ccac-4a8d-9b8a-d638f5050242" + }, + { + "routeId": "L909", + "platformId": "U350Z3", + "id": "b94b8cc1-68b6-471c-9d8c-acfa08f04c41" + }, + { + "routeId": "L954", + "platformId": "U350Z3", + "id": "843005e7-9483-4df9-aa99-bf24bc1ee9c0" + }, + { + "routeId": "L902", + "platformId": "U350Z4", + "id": "6d0611fb-71cd-4445-8d66-72fb8d0ef4e9" + }, + { + "routeId": "L909", + "platformId": "U350Z4", + "id": "d6af687c-f691-41d2-8cb5-209f31df8904" + }, + { + "routeId": "L954", + "platformId": "U350Z4", + "id": "cadf4732-f440-467d-bf2c-4b2fcde97854" + }, + { + "routeId": "L151", + "platformId": "U351Z1", + "id": "98c61eb0-1d79-4ba7-b2f3-1db8f67b5a60" + }, + { + "routeId": "L201", + "platformId": "U351Z1", + "id": "c646a070-4738-48bc-b393-eb0aa192e420" + }, + { + "routeId": "L166", + "platformId": "U351Z1", + "id": "161e5c36-3ff5-4093-acc2-e986e5360680" + }, + { + "routeId": "L151", + "platformId": "U351Z2", + "id": "8774fea0-08f9-43df-b439-560deaa1136e" + }, + { + "routeId": "L201", + "platformId": "U351Z2", + "id": "61908f82-7139-4ec0-8011-e2e610f3ec3f" + }, + { + "routeId": "L166", + "platformId": "U351Z2", + "id": "0f6ebd87-27e8-4c03-814b-6c21c775549e" + }, + { + "routeId": "L160", + "platformId": "U352Z1", + "id": "ec1e2fb1-9563-4106-ad59-0f19b885a597" + }, + { + "routeId": "L902", + "platformId": "U352Z1", + "id": "5ae13c26-53ba-481d-86b6-a8b93c541a3a" + }, + { + "routeId": "L355", + "platformId": "U352Z1", + "id": "49fe2b9e-402d-40c2-8ea3-7f63e64c08c7" + }, + { + "routeId": "L160", + "platformId": "U352Z2", + "id": "da296ffd-ff36-4fbd-817d-1eb719fc9423" + }, + { + "routeId": "L902", + "platformId": "U352Z2", + "id": "d8af1dd4-8e8b-4471-b811-04753ae0e1fb" + }, + { + "routeId": "L160", + "platformId": "U352Z3", + "id": "39ab245a-bd62-4385-a436-5262f29f731e" + }, + { + "routeId": "L902", + "platformId": "U352Z3", + "id": "fcc76ea2-5311-4e4b-99df-dbb1c0ab84e4" + }, + { + "routeId": "L355", + "platformId": "U352Z3", + "id": "0895c01d-7303-4219-8e45-4c4e167ec1f1" + }, + { + "routeId": "L136", + "platformId": "U353Z1", + "id": "090c72fe-51be-4a30-b947-df0034291288" + }, + { + "routeId": "L213", + "platformId": "U353Z1", + "id": "538f8c87-9c8e-41ec-acd1-88c7b8997fd4" + }, + { + "routeId": "L911", + "platformId": "U353Z1", + "id": "c901a93d-b8f1-4c99-9dcc-111b3d186f56" + }, + { + "routeId": "L136", + "platformId": "U353Z2", + "id": "6af275ef-ffea-4911-8c54-8c9e6e87edfc" + }, + { + "routeId": "L213", + "platformId": "U353Z2", + "id": "07143f18-6e3a-444d-8c6c-deab289db1c8" + }, + { + "routeId": "L911", + "platformId": "U353Z2", + "id": "3ba67c60-6964-4d5b-9993-adef2c1f9ecb" + }, + { + "routeId": "L13", + "platformId": "U354Z1", + "id": "fb764c0a-cdfc-4303-bf62-2285bf7fa83b" + }, + { + "routeId": "L22", + "platformId": "U354Z1", + "id": "dbf80229-ce86-47fe-a18a-ec7b90dcc92d" + }, + { + "routeId": "L97", + "platformId": "U354Z1", + "id": "20c8273c-8ab2-4899-a05c-11422819ae7a" + }, + { + "routeId": "L99", + "platformId": "U354Z1", + "id": "a81f3eec-a7aa-4486-a7bd-3f893f58aaba" + }, + { + "routeId": "L135", + "platformId": "U354Z1", + "id": "9785f5b8-fd44-4da6-aef3-f52408dc68e3" + }, + { + "routeId": "L13", + "platformId": "U354Z2", + "id": "c23ddc66-761a-415b-94b3-49eb6c8b0beb" + }, + { + "routeId": "L22", + "platformId": "U354Z2", + "id": "568a8fc3-0ed7-4c44-95dd-f3643a695ec4" + }, + { + "routeId": "L97", + "platformId": "U354Z2", + "id": "8ab3ed72-3356-4bd5-9404-61535b051b0b" + }, + { + "routeId": "L99", + "platformId": "U354Z2", + "id": "7a848e58-8df9-4588-b400-955740c9caf8" + }, + { + "routeId": "L135", + "platformId": "U354Z2", + "id": "7d786d53-4160-400a-a42e-d6ed70594228" + }, + { + "routeId": "L172", + "platformId": "U355Z1", + "id": "46897aaf-f45f-4cc9-9e0e-d617fa1528a1" + }, + { + "routeId": "L241", + "platformId": "U355Z1", + "id": "e7cee99e-fe36-4102-b99c-d4ffaecfe83d" + }, + { + "routeId": "L129", + "platformId": "U355Z1", + "id": "198c638f-2ef5-47b8-9a90-92307fec7101" + }, + { + "routeId": "L244", + "platformId": "U355Z1", + "id": "40d4c1c9-4edb-4f2b-b7e0-8776208fc2b4" + }, + { + "routeId": "L907", + "platformId": "U355Z1", + "id": "29b5b895-4b4e-45a2-9dbb-d6658fd9c3c9" + }, + { + "routeId": "L318", + "platformId": "U355Z1", + "id": "6eaf7747-1005-4468-82e4-091df691f7b8" + }, + { + "routeId": "L172", + "platformId": "U355Z2", + "id": "4f6e71b4-8854-41ba-9b13-8cbc7e5799e7" + }, + { + "routeId": "L241", + "platformId": "U355Z2", + "id": "387a9cd7-e5aa-4fa8-89a2-567a8778856e" + }, + { + "routeId": "L129", + "platformId": "U355Z2", + "id": "8a8eb478-71ff-44d8-bebf-6ac900453182" + }, + { + "routeId": "L244", + "platformId": "U355Z2", + "id": "db813e34-33d6-4e53-b9c9-c2b6c41cf614" + }, + { + "routeId": "L907", + "platformId": "U355Z2", + "id": "e53c6741-7528-4525-be40-89dd29edf106" + }, + { + "routeId": "L318", + "platformId": "U355Z2", + "id": "f40589a5-1d41-4500-9949-daa44960388f" + }, + { + "routeId": "L142", + "platformId": "U356Z1", + "id": "d6c4523a-2c4a-474e-b61d-4afb07ff2954" + }, + { + "routeId": "L184", + "platformId": "U356Z1", + "id": "58bd9a68-e65c-4b91-87ad-35e7dc88c551" + }, + { + "routeId": "L904", + "platformId": "U356Z1", + "id": "a813ba0d-065e-476c-80b9-97dd12f72ef2" + }, + { + "routeId": "L142", + "platformId": "U356Z2", + "id": "d8268440-fbff-41f6-ad1d-b2456b43c4b0" + }, + { + "routeId": "L184", + "platformId": "U356Z2", + "id": "ef2a88f6-4286-4be6-9708-bb4077b03036" + }, + { + "routeId": "L904", + "platformId": "U356Z2", + "id": "e4f0fd21-fa0e-459c-8285-c75f25ca1d34" + }, + { + "routeId": "L133", + "platformId": "U357Z1", + "id": "dd105053-2ecf-4483-9d5b-4d8b00cd8444" + }, + { + "routeId": "L908", + "platformId": "U357Z1", + "id": "21d4ad2f-5e9b-4ec5-8cd8-ac1574c16ccb" + }, + { + "routeId": "L909", + "platformId": "U357Z1", + "id": "f1aa0a37-8343-4776-82a7-16d60ee37ce8" + }, + { + "routeId": "L146", + "platformId": "U357Z1", + "id": "8d8d397a-88ce-4cbd-ac25-2811d6dfa613" + }, + { + "routeId": "L155", + "platformId": "U357Z1", + "id": "520d3bf4-02e6-4837-abf5-50b51630fe87" + }, + { + "routeId": "L133", + "platformId": "U357Z2", + "id": "884d0733-ab84-403a-9a55-4c1954de5cd2" + }, + { + "routeId": "L908", + "platformId": "U357Z2", + "id": "97a1b1a6-54a9-4f64-a32b-1f03e6443758" + }, + { + "routeId": "L909", + "platformId": "U357Z2", + "id": "68b0ff09-e570-480b-a19f-442efff9eb85" + }, + { + "routeId": "L146", + "platformId": "U357Z2", + "id": "17842e10-a17d-4817-b125-bbe7d1de488c" + }, + { + "routeId": "L155", + "platformId": "U357Z2", + "id": "0778ce3e-edf7-471c-bc45-fe0f2f72481c" + }, + { + "routeId": "L16", + "platformId": "U358Z1", + "id": "a1110578-aae5-4326-a6de-144406c15f43" + }, + { + "routeId": "L95", + "platformId": "U358Z1", + "id": "2fba29d5-70b2-4312-9b86-cd8367ac4efd" + }, + { + "routeId": "L16", + "platformId": "U358Z2", + "id": "4ca02c26-432e-463b-aa5c-28df6eadfac3" + }, + { + "routeId": "L95", + "platformId": "U358Z2", + "id": "3fc1607d-c32e-44e0-ae8e-4f3e6db77b66" + }, + { + "routeId": "L229", + "platformId": "U358Z3", + "id": "c3423ba6-2f1c-4a52-bf37-9a39ec7dd06b" + }, + { + "routeId": "L173", + "platformId": "U358Z3", + "id": "fb7f40fe-4ff6-457f-89b0-8e050300211d" + }, + { + "routeId": "L163", + "platformId": "U358Z3", + "id": "a6210db0-b8b5-4475-9bc2-5820ca5d2510" + }, + { + "routeId": "L208", + "platformId": "U358Z3", + "id": "cb6e165f-9b3b-4636-ba04-cc8a4383a41f" + }, + { + "routeId": "L903", + "platformId": "U358Z3", + "id": "c4c93403-2663-4b22-876e-30d6b6067bf7" + }, + { + "routeId": "L228", + "platformId": "U358Z3", + "id": "43008f3a-4643-4e24-9a68-3180e4f0061f" + }, + { + "routeId": "L366", + "platformId": "U358Z3", + "id": "2d2fa4ec-2762-4a9b-a4f6-921f66e6d38e" + }, + { + "routeId": "L364", + "platformId": "U358Z3", + "id": "6190737f-eabd-4705-8619-47ad23781ceb" + }, + { + "routeId": "L229", + "platformId": "U358Z4", + "id": "565469ab-d6f6-4322-a362-7e985ccc0e06" + }, + { + "routeId": "L173", + "platformId": "U358Z4", + "id": "9473e8bf-b0c1-4b9b-a6df-031c99ef9e31" + }, + { + "routeId": "L163", + "platformId": "U358Z4", + "id": "e0a12aad-803b-4019-bab3-5b11a7875a8f" + }, + { + "routeId": "L208", + "platformId": "U358Z4", + "id": "90cb22fe-17ab-46d7-a519-4264725d23ad" + }, + { + "routeId": "L903", + "platformId": "U358Z4", + "id": "a0fa6122-4dca-4fe3-ac4b-e74b623943b6" + }, + { + "routeId": "L228", + "platformId": "U358Z4", + "id": "23e65cd1-15c1-4852-877e-9ecb7b4b294a" + }, + { + "routeId": "L366", + "platformId": "U358Z4", + "id": "0965426c-9bf3-496a-8616-e2dfd31cdcbf" + }, + { + "routeId": "L364", + "platformId": "U358Z4", + "id": "5f4892fa-cc7b-4778-84e0-c6a50f0f8f3f" + }, + { + "routeId": "L155", + "platformId": "U359Z1", + "id": "ce8a504e-c044-447e-b586-63f0c08c226d" + }, + { + "routeId": "L177", + "platformId": "U359Z2", + "id": "5af90609-8178-4719-8241-9ad55ada6920" + }, + { + "routeId": "L195", + "platformId": "U359Z2", + "id": "94edc02e-8c33-4c39-91ef-3a6288529cd2" + }, + { + "routeId": "L155", + "platformId": "U359Z2", + "id": "750b68dc-7c6d-42a1-8b38-53a13dc7040e" + }, + { + "routeId": "L903", + "platformId": "U359Z2", + "id": "eb57e3b3-4223-4b65-b3bb-738fe08a8f23" + }, + { + "routeId": "L177", + "platformId": "U359Z3", + "id": "b30360ab-ad5d-4534-aca6-830c2f33f5f4" + }, + { + "routeId": "L195", + "platformId": "U359Z3", + "id": "bc90773d-a8b4-4769-b16e-37f68f6db7e6" + }, + { + "routeId": "L903", + "platformId": "U359Z3", + "id": "5466f095-0c13-4142-aac3-ce70779d89b9" + }, + { + "routeId": "L214", + "platformId": "U35Z1", + "id": "df760ee5-a43e-40f2-af93-fe6b9ba92c04" + }, + { + "routeId": "L306", + "platformId": "U35Z1", + "id": "fe31692b-91e3-4f3e-9bd8-23ea1cfd2b69" + }, + { + "routeId": "L957", + "platformId": "U35Z1", + "id": "e8e87285-5020-4c37-a3e0-55b45e65ec2f" + }, + { + "routeId": "L214", + "platformId": "U35Z2", + "id": "c6b3d266-2cc2-4fa7-a6f6-63897516523f" + }, + { + "routeId": "L306", + "platformId": "U35Z2", + "id": "d511f82e-272c-4ad5-8634-a20bd2b3a617" + }, + { + "routeId": "L957", + "platformId": "U35Z2", + "id": "994a6275-d8de-4d81-809b-146f9c543f4f" + }, + { + "routeId": "L2", + "platformId": "U360Z1", + "id": "60f92e19-156c-4d9b-890a-1f612d3f6b6a" + }, + { + "routeId": "L12", + "platformId": "U360Z1", + "id": "021f6f59-aa71-42b1-b696-8c17bdcb9060" + }, + { + "routeId": "L15", + "platformId": "U360Z1", + "id": "c6590312-1435-465c-83ef-26f09c3aa3a1" + }, + { + "routeId": "L18", + "platformId": "U360Z1", + "id": "860403d1-d2ab-4926-b0a3-6ccf065a32c6" + }, + { + "routeId": "L20", + "platformId": "U360Z1", + "id": "ae8f4a64-7908-4943-9abb-b8a11fa1a9c1" + }, + { + "routeId": "L22", + "platformId": "U360Z1", + "id": "b938897c-021a-4cce-94c1-cff085f6b665" + }, + { + "routeId": "L23", + "platformId": "U360Z1", + "id": "32419b23-907d-4391-885b-5cd71eef4e0d" + }, + { + "routeId": "L97", + "platformId": "U360Z1", + "id": "18b250d4-0f38-4896-9777-40021199022e" + }, + { + "routeId": "L194", + "platformId": "U360Z10", + "id": "e28321b4-6833-48c1-8ac3-03e56bcb36a2" + }, + { + "routeId": "L991", + "platformId": "U360Z101", + "id": "4f58f807-4bfb-4210-acbd-55302b06a748" + }, + { + "routeId": "L991", + "platformId": "U360Z102", + "id": "0507ba9c-ce22-42c0-b3f5-60f492b2674a" + }, + { + "routeId": "L2", + "platformId": "U360Z2", + "id": "df8963be-efd1-4015-a6b4-95f859e25d2d" + }, + { + "routeId": "L12", + "platformId": "U360Z2", + "id": "aac0248a-f073-49d5-83a6-c144b7397829" + }, + { + "routeId": "L15", + "platformId": "U360Z2", + "id": "f9e32dce-e4d7-4ae2-bb85-5ff40506c6bc" + }, + { + "routeId": "L18", + "platformId": "U360Z2", + "id": "428e0684-a095-4629-a99e-dac896721485" + }, + { + "routeId": "L20", + "platformId": "U360Z2", + "id": "e6598ce0-1f51-4a00-b720-bf16ea636d4e" + }, + { + "routeId": "L22", + "platformId": "U360Z2", + "id": "de06b775-5417-4df0-bb64-954e0c25aa85" + }, + { + "routeId": "L23", + "platformId": "U360Z2", + "id": "f319dd24-3db0-4ea5-8bff-36251634cea9" + }, + { + "routeId": "L97", + "platformId": "U360Z2", + "id": "3b5b5917-6cd2-4545-bc8a-a674cbd155e4" + }, + { + "routeId": "L194", + "platformId": "U360Z9", + "id": "59a4f651-580b-46fd-aa26-0edf7907abbb" + }, + { + "routeId": "L12", + "platformId": "U361Z1", + "id": "18888347-19e9-4987-a979-a9a5c17c75e8" + }, + { + "routeId": "L15", + "platformId": "U361Z1", + "id": "2456fe08-3cd6-47ab-b763-9916faf988f8" + }, + { + "routeId": "L20", + "platformId": "U361Z1", + "id": "2742bfa3-dc3a-4771-94fb-13d0b5e44fa5" + }, + { + "routeId": "L22", + "platformId": "U361Z1", + "id": "6e1cf5e9-0392-490d-831e-418ef10bb5c3" + }, + { + "routeId": "L23", + "platformId": "U361Z1", + "id": "2b45fee0-bb41-479f-8a6b-2d8318bbe993" + }, + { + "routeId": "L97", + "platformId": "U361Z1", + "id": "ddcd9144-5d32-491e-b735-51dba0967ffb" + }, + { + "routeId": "L12", + "platformId": "U361Z2", + "id": "73bc29ac-41e7-4df5-b844-6de25360e61e" + }, + { + "routeId": "L15", + "platformId": "U361Z2", + "id": "16021c5f-0138-4dac-912d-033278bb53ed" + }, + { + "routeId": "L20", + "platformId": "U361Z2", + "id": "4e6664d1-4142-49e1-8fea-bd344521e4eb" + }, + { + "routeId": "L22", + "platformId": "U361Z2", + "id": "f3fd889b-a446-4cf0-b0a9-6cd0d05ef8ed" + }, + { + "routeId": "L23", + "platformId": "U361Z2", + "id": "b9fbe224-0691-4cdd-ad1b-18923a68fab8" + }, + { + "routeId": "L97", + "platformId": "U361Z2", + "id": "1cbe5b0d-152d-4d0f-9f91-adefb86c9ae2" + }, + { + "routeId": "L194", + "platformId": "U361Z4", + "id": "732d24a3-cdc3-4326-b520-2ec9703963dd" + }, + { + "routeId": "L194", + "platformId": "U361Z6", + "id": "b781c0ed-b5f9-4f6a-9212-72e0e099fbfd" + }, + { + "routeId": "L22", + "platformId": "U362Z1", + "id": "1a65e218-1f3f-4dd4-8a19-4e0f76ae275b" + }, + { + "routeId": "L23", + "platformId": "U362Z1", + "id": "4576b5eb-070a-406f-8d12-c1d426cace5d" + }, + { + "routeId": "L25", + "platformId": "U362Z1", + "id": "cb88130a-091d-44b3-a89b-b18a9849a5fc" + }, + { + "routeId": "L97", + "platformId": "U362Z1", + "id": "4157bdea-7235-43a2-9756-1482f88ce97a" + }, + { + "routeId": "L164", + "platformId": "U362Z1", + "id": "b7192208-93db-46d1-bb50-77fdf4cf1e33" + }, + { + "routeId": "L143", + "platformId": "U362Z10", + "id": "0d989bc9-fb47-4ebb-b7d6-b930b5389e8c" + }, + { + "routeId": "L149", + "platformId": "U362Z10", + "id": "c88fc99f-31d9-46d5-ba49-e052c0a71f98" + }, + { + "routeId": "L149", + "platformId": "U362Z12", + "id": "9b435087-0614-429c-8979-be707186c61a" + }, + { + "routeId": "L164", + "platformId": "U362Z12", + "id": "dce950cb-710c-4d1e-a435-9c692e7eed7f" + }, + { + "routeId": "L22", + "platformId": "U362Z2", + "id": "e14c94bf-4045-4b89-a1a8-bd1d982c0a7e" + }, + { + "routeId": "L23", + "platformId": "U362Z2", + "id": "4aadcd88-a75c-4aa0-a67e-80e2ab9e64c5" + }, + { + "routeId": "L25", + "platformId": "U362Z2", + "id": "639d1c00-5f35-40c9-850a-b9b85d8e1e07" + }, + { + "routeId": "L97", + "platformId": "U362Z2", + "id": "aeb4545f-0219-4862-9be4-4e15c4735170" + }, + { + "routeId": "L23", + "platformId": "U362Z3", + "id": "47049b97-ea91-466d-9192-cb46e495435a" + }, + { + "routeId": "L23", + "platformId": "U362Z4", + "id": "921d6520-d61a-4116-9b55-523fc1160a67" + }, + { + "routeId": "L143", + "platformId": "U362Z9", + "id": "ef9b1d90-f951-4be0-a067-631ff23acd78" + }, + { + "routeId": "L137", + "platformId": "U363Z1", + "id": "c960e18a-4224-48d4-827b-4171eb2ed3ea" + }, + { + "routeId": "L908", + "platformId": "U363Z1", + "id": "3da24958-8a3d-4b2e-9658-06ae002a85ed" + }, + { + "routeId": "L153", + "platformId": "U363Z1", + "id": "010361c8-6ebd-4fbe-bcd7-60fad2ede398" + }, + { + "routeId": "L137", + "platformId": "U363Z2", + "id": "2206fed2-b98d-4759-925b-b76e4fcd5883" + }, + { + "routeId": "L908", + "platformId": "U363Z2", + "id": "a8b9f6f7-2938-499c-842c-681c4d8de3ac" + }, + { + "routeId": "L153", + "platformId": "U363Z2", + "id": "3d3d073a-50a2-4841-8de8-324b82ad2ab8" + }, + { + "routeId": "L22", + "platformId": "U364Z1", + "id": "de7bb002-131e-4878-8033-380773fc92ed" + }, + { + "routeId": "L25", + "platformId": "U364Z1", + "id": "e4dc0725-a836-45f7-9bbd-f318dd9a2088" + }, + { + "routeId": "L97", + "platformId": "U364Z1", + "id": "d92ab15f-a8c3-4da6-be8a-e339f10bc16f" + }, + { + "routeId": "L22", + "platformId": "U364Z2", + "id": "59c1bac1-222e-424d-bab2-8b46e7a2d59a" + }, + { + "routeId": "L25", + "platformId": "U364Z2", + "id": "9f372b12-fcc7-4dd2-b0bb-bacb6fa0e1d4" + }, + { + "routeId": "L97", + "platformId": "U364Z2", + "id": "7bb93f0c-8502-454a-8180-4012225e8f62" + }, + { + "routeId": "L164", + "platformId": "U364Z3", + "id": "7b3e111f-6144-47a0-8cfd-9e56894199f8" + }, + { + "routeId": "L365", + "platformId": "U364Z3", + "id": "9252daeb-9565-48c7-b520-a8d2eb3a3a6a" + }, + { + "routeId": "L164", + "platformId": "U364Z4", + "id": "48fc94e4-91a5-4889-a4ce-42b7370ec356" + }, + { + "routeId": "L365", + "platformId": "U364Z4", + "id": "bccd7f8f-5dbb-4247-aacb-f3b75944c177" + }, + { + "routeId": "L6", + "platformId": "U365Z1", + "id": "9030f823-bc7f-463c-91b1-c67ed983338f" + }, + { + "routeId": "L27", + "platformId": "U365Z1", + "id": "da7f7630-152a-4f9c-90c6-9314347063f3" + }, + { + "routeId": "L894", + "platformId": "U365Z1", + "id": "b0d3d7f1-7be9-4fe2-be0a-b75bcf6eb99f" + }, + { + "routeId": "L6", + "platformId": "U365Z2", + "id": "66baf2eb-1779-4c31-87e4-00a2938de545" + }, + { + "routeId": "L27", + "platformId": "U365Z2", + "id": "925ebc55-a0d3-49fe-8f0a-ad18e7b67339" + }, + { + "routeId": "L894", + "platformId": "U365Z2", + "id": "2199d4f7-eecd-4748-b369-067c45495e74" + }, + { + "routeId": "L22", + "platformId": "U366Z1", + "id": "70280390-0181-4303-b9d4-fc8c5faa8927" + }, + { + "routeId": "L25", + "platformId": "U366Z1", + "id": "858a70d6-5a81-4e10-a242-d5ec66275fd8" + }, + { + "routeId": "L97", + "platformId": "U366Z1", + "id": "d548d5aa-48cc-4cf8-9ec8-9cafd8a39cee" + }, + { + "routeId": "L22", + "platformId": "U366Z2", + "id": "e8abdbe5-ea64-4c58-ba39-ac56e6273c81" + }, + { + "routeId": "L25", + "platformId": "U366Z2", + "id": "cfc0354d-51ed-41c7-a5ec-9eee9363aabb" + }, + { + "routeId": "L97", + "platformId": "U366Z2", + "id": "bfb1a3aa-2f71-4d87-96dc-1a3554bb7749" + }, + { + "routeId": "L229", + "platformId": "U367Z1", + "id": "336904ca-2adb-4344-a145-dba094258126" + }, + { + "routeId": "L903", + "platformId": "U367Z1", + "id": "aad05806-01e9-4565-a24d-0b51a136b27d" + }, + { + "routeId": "L366", + "platformId": "U367Z1", + "id": "7e27bcd7-1b9d-4624-8f28-c7fb1ff931e1" + }, + { + "routeId": "L364", + "platformId": "U367Z1", + "id": "3f45f1bc-ae3e-4cd4-abbc-32c52013b4e1" + }, + { + "routeId": "L229", + "platformId": "U367Z2", + "id": "07ae6982-b9b7-4399-8e7f-9aa73b692b69" + }, + { + "routeId": "L903", + "platformId": "U367Z2", + "id": "4406e757-3168-4cc1-81a0-ae9ebd8792fc" + }, + { + "routeId": "L366", + "platformId": "U367Z2", + "id": "041cfb4f-0b11-4fc5-b66c-3db954b6b707" + }, + { + "routeId": "L364", + "platformId": "U367Z2", + "id": "73059a65-fece-41d7-904d-9d11c19d3b56" + }, + { + "routeId": "L136", + "platformId": "U368Z1", + "id": "58d64438-c251-4137-86ed-53c944fb706d" + }, + { + "routeId": "L158", + "platformId": "U368Z1", + "id": "89985567-c83e-4260-b46e-98afb18a05e5" + }, + { + "routeId": "L202", + "platformId": "U368Z1", + "id": "beceb301-4754-434e-9f65-89003015e8de" + }, + { + "routeId": "L911", + "platformId": "U368Z1", + "id": "da652178-317e-4788-a513-89a293b64562" + }, + { + "routeId": "L110", + "platformId": "U368Z1", + "id": "92b68968-1b70-4a51-a923-329bcb5b352b" + }, + { + "routeId": "L166", + "platformId": "U368Z1", + "id": "933a99bc-62ca-41ff-b0ae-a37da2bf1bf3" + }, + { + "routeId": "L351", + "platformId": "U368Z1", + "id": "77a2ac5a-d4d1-43c2-8579-a0bd3351bc4e" + }, + { + "routeId": "L377", + "platformId": "U368Z1", + "id": "cceceea8-d752-4787-bec5-5baf8dd9a697" + }, + { + "routeId": "L58", + "platformId": "U368Z1", + "id": "bf4b0fde-08e6-4a92-8521-93a0a11d48e3" + }, + { + "routeId": "L136", + "platformId": "U368Z2", + "id": "ce565718-381f-4d48-9ce6-40fe0537e995" + }, + { + "routeId": "L158", + "platformId": "U368Z2", + "id": "4f6d0f11-d1f7-4d38-8946-b6d756de74b5" + }, + { + "routeId": "L202", + "platformId": "U368Z2", + "id": "dab4c011-c7d5-47e5-8bb2-8c492199abf5" + }, + { + "routeId": "L911", + "platformId": "U368Z2", + "id": "270f6169-06a7-49e4-adb5-a4701825366a" + }, + { + "routeId": "L110", + "platformId": "U368Z2", + "id": "72214335-2aa3-49cb-bc07-47708a0d5c75" + }, + { + "routeId": "L166", + "platformId": "U368Z2", + "id": "e402543a-24f4-4c68-ab59-3f2aebe9d6bd" + }, + { + "routeId": "L351", + "platformId": "U368Z2", + "id": "bd4cf25b-eb06-4b0c-94dc-4a480fc968e6" + }, + { + "routeId": "L377", + "platformId": "U368Z2", + "id": "92043d01-75d8-496d-997b-d25d2e3d2d94" + }, + { + "routeId": "L58", + "platformId": "U368Z2", + "id": "13ffa1b5-8ee4-450c-9fae-a3e858518cc4" + }, + { + "routeId": "L110", + "platformId": "U368Z3", + "id": "9b850555-d5f6-4ff7-9a10-942e5341fbcb" + }, + { + "routeId": "L113", + "platformId": "U369Z1", + "id": "3d53e638-e901-46b9-bdef-68ba3197d108" + }, + { + "routeId": "L197", + "platformId": "U369Z1", + "id": "d1cb34ce-6ca5-4a88-8a84-555be1aa5e42" + }, + { + "routeId": "L913", + "platformId": "U369Z1", + "id": "53e34da3-fa2b-4cad-9353-a2025b7c6d2b" + }, + { + "routeId": "L333", + "platformId": "U369Z1", + "id": "78fe0e7b-6bbb-4879-944b-53acc54e05bd" + }, + { + "routeId": "L960", + "platformId": "U369Z1", + "id": "17dbe86c-aebb-42d6-aef8-eebece41395a" + }, + { + "routeId": "L113", + "platformId": "U369Z2", + "id": "e93fbfda-9ac6-452e-905f-e129c3b0028b" + }, + { + "routeId": "L197", + "platformId": "U369Z2", + "id": "fdc900f2-4ee3-4240-b18e-c2ed750d78d0" + }, + { + "routeId": "L904", + "platformId": "U369Z2", + "id": "4ece21d9-2647-4954-9053-2d1089147586" + }, + { + "routeId": "L913", + "platformId": "U369Z2", + "id": "fc423b53-bb1a-4c7b-a08f-1ce87cb0fb8c" + }, + { + "routeId": "L333", + "platformId": "U369Z2", + "id": "46500672-5ce1-4856-9671-351ec817971e" + }, + { + "routeId": "L960", + "platformId": "U369Z2", + "id": "8d93d518-6084-4d8a-9619-acf8be44d615" + }, + { + "routeId": "L197", + "platformId": "U369Z3", + "id": "300922d7-5a86-4105-ba16-5539f6e5bf26" + }, + { + "routeId": "L904", + "platformId": "U369Z3", + "id": "d5cea2b8-38e1-4aac-b6d5-4fb4e41971d0" + }, + { + "routeId": "L250", + "platformId": "U36Z1", + "id": "34fabf85-6ce1-441c-a405-274495ef7124" + }, + { + "routeId": "L909", + "platformId": "U36Z1", + "id": "bb7614bd-6482-4b5b-b821-0c67fe613cca" + }, + { + "routeId": "L163", + "platformId": "U36Z1", + "id": "ec4d5f1b-abf2-41d9-bed9-10d1c26b4e52" + }, + { + "routeId": "L221", + "platformId": "U36Z1", + "id": "367cfbbb-98dc-443b-96bf-9624bc5810b8" + }, + { + "routeId": "L250", + "platformId": "U36Z2", + "id": "630856b4-b824-47fb-9b85-4960735f72ce" + }, + { + "routeId": "L909", + "platformId": "U36Z2", + "id": "d5d5c5c4-7be5-47b7-b70d-894d3feb2b3d" + }, + { + "routeId": "L163", + "platformId": "U36Z2", + "id": "26c7ea7d-3851-4388-a050-d9dc4b9c6817" + }, + { + "routeId": "L221", + "platformId": "U36Z2", + "id": "9b03ddb8-52a4-4426-8af7-2b85f8f8128f" + }, + { + "routeId": "L116", + "platformId": "U370Z1", + "id": "5dfa03a0-3822-48eb-a628-841d980a734f" + }, + { + "routeId": "L116", + "platformId": "U370Z2", + "id": "2690b433-0731-46fc-9a54-2a152f474ebd" + }, + { + "routeId": "L102", + "platformId": "U371Z1", + "id": "ae3cd0bf-bbd3-473e-9470-6bd53d1843af" + }, + { + "routeId": "L177", + "platformId": "U371Z1", + "id": "c925bb82-230d-476e-ad2e-a1bcbddaf51b" + }, + { + "routeId": "L202", + "platformId": "U371Z1", + "id": "b4c8667e-7502-4bdf-ab9f-423930ed21bf" + }, + { + "routeId": "L235", + "platformId": "U371Z1", + "id": "182a4785-9418-4f11-a522-6a1739e51a33" + }, + { + "routeId": "L236", + "platformId": "U371Z1", + "id": "9d1fa219-4870-4177-b3e9-d2c469df16b4" + }, + { + "routeId": "L905", + "platformId": "U371Z1", + "id": "80b98458-f46c-461e-a351-8dbe574106f1" + }, + { + "routeId": "L102", + "platformId": "U371Z2", + "id": "c0905f8c-7dae-4bea-b5d6-49d539f5bc38" + }, + { + "routeId": "L177", + "platformId": "U371Z2", + "id": "79d59e1a-d9e3-4d6b-b3f2-5ae641ea6851" + }, + { + "routeId": "L202", + "platformId": "U371Z2", + "id": "b6dffc1e-09dc-44c7-a82b-bfb82fe463ff" + }, + { + "routeId": "L235", + "platformId": "U371Z2", + "id": "923b67a4-1408-4908-a002-ff4f6eabd1a1" + }, + { + "routeId": "L236", + "platformId": "U371Z2", + "id": "72aaf53d-b7d4-4e03-a093-015d8a472ffb" + }, + { + "routeId": "L905", + "platformId": "U371Z2", + "id": "2c303ec6-c548-4690-b5e5-fbf8f91245f5" + }, + { + "routeId": "L123", + "platformId": "U372Z1", + "id": "bb2fca12-d79b-450e-a8a1-6fe7607b3ed3" + }, + { + "routeId": "L123", + "platformId": "U372Z2", + "id": "af66e8f4-7a02-4c55-b416-c7ca29352d45" + }, + { + "routeId": "L7", + "platformId": "U373Z1", + "id": "3e97118e-6448-46a3-b673-00f78752550f" + }, + { + "routeId": "L10", + "platformId": "U373Z1", + "id": "5cf49f60-f1d9-475d-8a96-cc599f4b5f49" + }, + { + "routeId": "L11", + "platformId": "U373Z1", + "id": "de0887e8-c481-4b4d-b61e-000950d87716" + }, + { + "routeId": "L26", + "platformId": "U373Z1", + "id": "d512da33-1ea8-44c9-ae45-73f345d396b2" + }, + { + "routeId": "L98", + "platformId": "U373Z1", + "id": "02193466-0eeb-4233-bdfa-ef43a6e8df45" + }, + { + "routeId": "L162", + "platformId": "U374Z1", + "id": "8ee45968-09e4-4c62-b484-061da4f6645c" + }, + { + "routeId": "L913", + "platformId": "U374Z1", + "id": "359f6015-8d20-4afd-b3a7-0173e25a6073" + }, + { + "routeId": "L162", + "platformId": "U374Z2", + "id": "7b969559-e283-492e-9672-6de29fe96ccc" + }, + { + "routeId": "L913", + "platformId": "U374Z2", + "id": "d5f5e664-1aa0-4cbd-b0b1-065aa68d926c" + }, + { + "routeId": "L138", + "platformId": "U375Z1", + "id": "42f63311-6f23-470e-960e-509793d8b990" + }, + { + "routeId": "L138", + "platformId": "U375Z2", + "id": "9b4a7178-0cf4-41de-9e44-ce88e87a3a4a" + }, + { + "routeId": "L11", + "platformId": "U376Z1", + "id": "0ed40529-a67d-408f-8203-b4007eb0092a" + }, + { + "routeId": "L14", + "platformId": "U376Z1", + "id": "e3e3ba56-ac02-4909-b424-aae8e0389c2f" + }, + { + "routeId": "L96", + "platformId": "U376Z1", + "id": "c0a39773-67c1-4bc9-8c73-f4fd2f37c94f" + }, + { + "routeId": "L188", + "platformId": "U376Z1", + "id": "a856a5d3-7c4a-47fa-b83a-3deb1cb6fce9" + }, + { + "routeId": "L11", + "platformId": "U376Z2", + "id": "6539312c-8d63-4976-a744-2c38434628c3" + }, + { + "routeId": "L14", + "platformId": "U376Z2", + "id": "1d1df9e4-3ec5-4d14-9e4e-6796444eb937" + }, + { + "routeId": "L96", + "platformId": "U376Z2", + "id": "70d861a4-0f3e-4ad5-9868-45bbb5eedd80" + }, + { + "routeId": "L188", + "platformId": "U376Z2", + "id": "89f2f72d-f6aa-482d-b965-deb154e84aa4" + }, + { + "routeId": "L124", + "platformId": "U376Z3", + "id": "4a7031fc-f5d5-42ff-a2f5-f84a34ffc92d" + }, + { + "routeId": "L139", + "platformId": "U376Z3", + "id": "a83af13d-c9a0-4752-833e-6a8244aff7e5" + }, + { + "routeId": "L150", + "platformId": "U376Z3", + "id": "453585d0-e1bb-443c-8f47-327872754759" + }, + { + "routeId": "L124", + "platformId": "U376Z4", + "id": "9fc62652-22f7-4403-8ae9-deef8d41f7f0" + }, + { + "routeId": "L139", + "platformId": "U376Z4", + "id": "a66669d0-7295-464e-84be-8cea718558da" + }, + { + "routeId": "L150", + "platformId": "U376Z4", + "id": "d7c321d0-36e0-4711-843c-c11c6ab71b5f" + }, + { + "routeId": "L106", + "platformId": "U377Z1", + "id": "fd6ee3fe-777f-4211-8822-58f9179e83e7" + }, + { + "routeId": "L138", + "platformId": "U377Z1", + "id": "fa369366-5337-4e52-999b-e52fdfbd4e05" + }, + { + "routeId": "L193", + "platformId": "U377Z1", + "id": "52679b00-21b7-4143-b1a2-208bf3eedf34" + }, + { + "routeId": "L196", + "platformId": "U377Z1", + "id": "6b4e1435-3b1a-47ae-ad58-e566f795da90" + }, + { + "routeId": "L904", + "platformId": "U377Z1", + "id": "29c15e43-fee9-4928-b986-186761ef2dd7" + }, + { + "routeId": "L910", + "platformId": "U377Z1", + "id": "715cfc25-2fe5-4c9a-b38b-614c6e6bc6d3" + }, + { + "routeId": "L913", + "platformId": "U377Z1", + "id": "d9e35bea-f9b1-4435-8d43-c29ebe9e59e9" + }, + { + "routeId": "L106", + "platformId": "U377Z2", + "id": "7399d1db-4186-47a0-929d-b52f095bbe96" + }, + { + "routeId": "L138", + "platformId": "U377Z2", + "id": "2b059ad4-8cfd-4f68-b750-e435d0021201" + }, + { + "routeId": "L196", + "platformId": "U377Z2", + "id": "1dd1869e-7fe9-4dc7-a133-1fc689e6df7e" + }, + { + "routeId": "L193", + "platformId": "U377Z2", + "id": "39057559-8466-4b03-b023-a60af5d63c60" + }, + { + "routeId": "L904", + "platformId": "U377Z2", + "id": "5386e70c-9138-4b6e-8622-12cead686469" + }, + { + "routeId": "L910", + "platformId": "U377Z2", + "id": "55a68cf0-adf4-44d4-9c62-462a77ea7235" + }, + { + "routeId": "L913", + "platformId": "U377Z2", + "id": "35f341ad-e8d3-4e9e-8de8-a585295604bb" + }, + { + "routeId": "L138", + "platformId": "U378Z1", + "id": "ae571157-a97c-49c9-8983-dc02e1db7701" + }, + { + "routeId": "L203", + "platformId": "U378Z1", + "id": "ee7ffc47-ba06-4247-b52c-58c2d9b34d7d" + }, + { + "routeId": "L138", + "platformId": "U378Z2", + "id": "33c9f7ac-84f0-43af-8f97-69fd120de829" + }, + { + "routeId": "L193", + "platformId": "U378Z2", + "id": "61e2c68a-4cee-4e11-ab1a-5b79dc365de7" + }, + { + "routeId": "L203", + "platformId": "U378Z2", + "id": "08765a12-df94-4f88-98fd-7c4cb96abd45" + }, + { + "routeId": "L125", + "platformId": "U379Z1", + "id": "67818347-84ee-40c0-a33a-98386e840588" + }, + { + "routeId": "L154", + "platformId": "U379Z1", + "id": "aba72370-3b98-466c-89f9-503aca14cbfc" + }, + { + "routeId": "L125", + "platformId": "U379Z2", + "id": "7efe8f50-c8d0-4386-bb9d-86da0cb496af" + }, + { + "routeId": "L154", + "platformId": "U379Z2", + "id": "7846784d-1190-49b4-82c8-eab19b4e1464" + }, + { + "routeId": "L101", + "platformId": "U37Z1", + "id": "84394060-761c-4975-9843-583da112a894" + }, + { + "routeId": "L135", + "platformId": "U37Z1", + "id": "fc8d0a7b-e632-4491-8ff9-eb2fab4ef62e" + }, + { + "routeId": "L136", + "platformId": "U37Z1", + "id": "da4fbb71-1304-486e-9ac4-6a649f2177d0" + }, + { + "routeId": "L150", + "platformId": "U37Z1", + "id": "be16f3a3-3f4a-408e-9de0-244755843aac" + }, + { + "routeId": "L213", + "platformId": "U37Z1", + "id": "8ca1a423-f3e5-40c9-a30f-78f19860d166" + }, + { + "routeId": "L913", + "platformId": "U37Z1", + "id": "3349ff7d-dc17-4153-9483-d028dfe51bc5" + }, + { + "routeId": "L101", + "platformId": "U37Z2", + "id": "0f6af94b-6760-4cbf-9f74-81fd79761152" + }, + { + "routeId": "L135", + "platformId": "U37Z2", + "id": "2f9f9287-4297-499a-8d46-a2468e6b26cd" + }, + { + "routeId": "L136", + "platformId": "U37Z2", + "id": "ad5b4e85-5e7d-436f-b7e6-2fd62aa5466c" + }, + { + "routeId": "L150", + "platformId": "U37Z2", + "id": "2d11dd71-abe1-442b-986d-2e690f203315" + }, + { + "routeId": "L213", + "platformId": "U37Z2", + "id": "ce259762-1a07-47d0-bd21-e89d16576196" + }, + { + "routeId": "L913", + "platformId": "U37Z2", + "id": "61c9211b-2cec-49ed-9fc1-b8a259c7776e" + }, + { + "routeId": "L246", + "platformId": "U380Z1", + "id": "cc32bc6b-c884-43f4-9fe8-e6df1a24f189" + }, + { + "routeId": "L246", + "platformId": "U380Z2", + "id": "84b0c5e9-a826-4100-a504-09c5b2ed5b9b" + }, + { + "routeId": "L901", + "platformId": "U381Z1", + "id": "c9d060ff-7ad3-4f89-a6dc-9fdc994a213a" + }, + { + "routeId": "L905", + "platformId": "U381Z1", + "id": "27b4b103-eb7c-4d78-8390-e22939acb339" + }, + { + "routeId": "L906", + "platformId": "U381Z1", + "id": "d2a16287-8dca-4659-8eb9-86f6f5fa7c18" + }, + { + "routeId": "L203", + "platformId": "U381Z1", + "id": "4dd2a38d-b1d9-45a8-8fb6-c29c2e246971" + }, + { + "routeId": "L901", + "platformId": "U381Z2", + "id": "c0eb8f0b-acad-4953-99f0-85661d5dc34b" + }, + { + "routeId": "L905", + "platformId": "U381Z2", + "id": "0bacc03e-fa11-4294-9e48-629a40327395" + }, + { + "routeId": "L906", + "platformId": "U381Z2", + "id": "7d4431f5-25e5-48b1-9d05-292d5e574812" + }, + { + "routeId": "L203", + "platformId": "U381Z2", + "id": "e9b3cf54-13fe-4885-b4d8-0658d7e03485" + }, + { + "routeId": "L126", + "platformId": "U382Z1", + "id": "b4ee6275-ae60-4ebc-b4e6-264cbaf0443b" + }, + { + "routeId": "L906", + "platformId": "U382Z1", + "id": "428e5ff2-b0a6-4430-b223-0286e64ad150" + }, + { + "routeId": "L126", + "platformId": "U382Z2", + "id": "63f316af-1da5-4fdd-a15e-0d41fe2930ed" + }, + { + "routeId": "L906", + "platformId": "U382Z2", + "id": "60028a59-55aa-4720-af54-412f960da74f" + }, + { + "routeId": "L225", + "platformId": "U383Z1", + "id": "47802846-6d57-4a12-8975-45619f3affb5" + }, + { + "routeId": "L214", + "platformId": "U383Z1", + "id": "aa4e9c10-e8d5-4d3f-8cd8-c5d6856eb2f5" + }, + { + "routeId": "L225", + "platformId": "U383Z2", + "id": "18d65f8f-37f7-469a-9bfb-5378f2d757df" + }, + { + "routeId": "L214", + "platformId": "U383Z2", + "id": "c163314c-1c9d-4c55-8560-1ff09953d5bf" + }, + { + "routeId": "L915", + "platformId": "U384Z1", + "id": "23c5864d-948d-4ea2-9948-9ffeebf6bc3a" + }, + { + "routeId": "L58", + "platformId": "U384Z1", + "id": "a5b89fb5-e3b7-492c-adad-7ec89ee6c131" + }, + { + "routeId": "L915", + "platformId": "U384Z2", + "id": "c40e3e37-fe69-484e-865f-53e4f3a606d9" + }, + { + "routeId": "L377", + "platformId": "U384Z2", + "id": "643dbb4f-bc02-4ad6-a2a3-9d05e03c867a" + }, + { + "routeId": "L58", + "platformId": "U384Z2", + "id": "08b18167-dfda-4c1a-a1dc-d5baa73d815b" + }, + { + "routeId": "L188", + "platformId": "U385Z1", + "id": "02b075bd-4342-4755-8887-ad925067ce80" + }, + { + "routeId": "L193", + "platformId": "U385Z1", + "id": "609acd94-6b96-401b-9de9-6f198dcb85b1" + }, + { + "routeId": "L905", + "platformId": "U385Z1", + "id": "5a368793-1d26-4bb9-b46e-54ee09535caf" + }, + { + "routeId": "L910", + "platformId": "U385Z1", + "id": "5b297d7e-4adf-4061-8314-93eb258e52e5" + }, + { + "routeId": "L993", + "platformId": "U385Z101", + "id": "43a0b8d1-957e-477b-9acd-c6d782fb3d7f" + }, + { + "routeId": "L993", + "platformId": "U385Z102", + "id": "e61d1851-eeb8-4777-b9b8-24754fe860b5" + }, + { + "routeId": "L188", + "platformId": "U385Z2", + "id": "78f4f14d-292c-4dae-a194-a0f6c452f9b1" + }, + { + "routeId": "L193", + "platformId": "U385Z2", + "id": "be8544e4-3ec2-4d41-aa6f-d886d3c6fe72" + }, + { + "routeId": "L905", + "platformId": "U385Z4", + "id": "6fec1d97-b318-445d-9385-fba3ec1c88bc" + }, + { + "routeId": "L910", + "platformId": "U385Z4", + "id": "04de2b5d-ad78-4363-849b-e3e68bd2ac29" + }, + { + "routeId": "L134", + "platformId": "U385Z6", + "id": "5d8f8321-9fc1-4be9-8868-4a68d30aa0fb" + }, + { + "routeId": "L134", + "platformId": "U385Z7", + "id": "134673ce-5668-4571-8398-a46c94fd5781" + }, + { + "routeId": "L125", + "platformId": "U386Z1", + "id": "6637d1e2-68a6-43d6-bfe4-5d578282148f" + }, + { + "routeId": "L126", + "platformId": "U386Z1", + "id": "a049e249-46f4-4f60-9e57-150eb922cc90" + }, + { + "routeId": "L170", + "platformId": "U386Z1", + "id": "4dd503f4-6753-423a-9d77-6822dbec3059" + }, + { + "routeId": "L154", + "platformId": "U386Z1", + "id": "1b0d3940-5557-43d8-8350-e022410a2599" + }, + { + "routeId": "L905", + "platformId": "U386Z1", + "id": "79af8f2d-55be-444b-bdfc-9d729a2b80dd" + }, + { + "routeId": "L203", + "platformId": "U386Z1", + "id": "14eb527b-91ad-4eef-9820-e4fe79dd0bb9" + }, + { + "routeId": "L203", + "platformId": "U386Z12", + "id": "acf074dd-2f7f-48fb-b3ad-1be47d41d946" + }, + { + "routeId": "L125", + "platformId": "U386Z2", + "id": "eb156084-2d46-490c-9c37-447d954d07d9" + }, + { + "routeId": "L126", + "platformId": "U386Z2", + "id": "0cd80341-1dc7-471c-a77d-6c8fb6ba4f3d" + }, + { + "routeId": "L170", + "platformId": "U386Z2", + "id": "66defbbd-0f14-4855-9c10-00e86259e0d6" + }, + { + "routeId": "L154", + "platformId": "U386Z2", + "id": "6617190d-d6a4-43a1-aed9-7b2dbef3cf55" + }, + { + "routeId": "L905", + "platformId": "U386Z2", + "id": "f75237d0-c9fa-4af5-9e8e-4c63db44a549" + }, + { + "routeId": "L2", + "platformId": "U387Z1", + "id": "12756433-54fd-43f5-814f-86e1e93405ed" + }, + { + "routeId": "L3", + "platformId": "U387Z1", + "id": "e8ba70cc-d402-4c6a-aedd-ab6955b7e381" + }, + { + "routeId": "L17", + "platformId": "U387Z1", + "id": "ab0ca3b2-5668-445f-bd2a-75579c050d52" + }, + { + "routeId": "L27", + "platformId": "U387Z1", + "id": "b12dd858-0833-4a91-9fe0-6c578c047176" + }, + { + "routeId": "L92", + "platformId": "U387Z1", + "id": "329f8d37-47ad-4be7-bbcd-7525715fdeb8" + }, + { + "routeId": "L2", + "platformId": "U387Z2", + "id": "7ed4b137-67f9-4ac4-9d66-560f4d206434" + }, + { + "routeId": "L3", + "platformId": "U387Z2", + "id": "4e838fb7-9754-4738-ac5d-781c3904f2f5" + }, + { + "routeId": "L17", + "platformId": "U387Z2", + "id": "07d7272a-a1df-4603-be17-598b26b16429" + }, + { + "routeId": "L27", + "platformId": "U387Z2", + "id": "78f537e4-1710-4969-a668-fd64028f7ded" + }, + { + "routeId": "L92", + "platformId": "U387Z2", + "id": "b1dbe8b5-faa5-4fb3-a710-9c7ce2d833aa" + }, + { + "routeId": "L190", + "platformId": "U387Z3", + "id": "1437ee55-8b59-4154-b8dd-63dec27091b3" + }, + { + "routeId": "L190", + "platformId": "U387Z4", + "id": "3f5884f0-f3ff-4629-b624-d4cb1b871dad" + }, + { + "routeId": "L17", + "platformId": "U388Z1", + "id": "2bac6b82-1d65-4028-be0f-88b96a62cf60" + }, + { + "routeId": "L27", + "platformId": "U388Z1", + "id": "0956882f-52cd-4f9e-8476-2a572bbc15f2" + }, + { + "routeId": "L92", + "platformId": "U388Z1", + "id": "fb55c85f-cdff-4f14-ace5-dfb0f434b987" + }, + { + "routeId": "L1806", + "platformId": "U388Z11", + "id": "16572a02-fce6-4121-9df0-d870a508b337" + }, + { + "routeId": "L17", + "platformId": "U388Z2", + "id": "6c4a1aad-b4db-4bbc-8a82-18223e6470a5" + }, + { + "routeId": "L27", + "platformId": "U388Z2", + "id": "401d178c-37f9-41a4-8e16-ee85f63372ad" + }, + { + "routeId": "L92", + "platformId": "U388Z2", + "id": "41f9cf1e-8753-4bed-92ad-8a7b07ba9c02" + }, + { + "routeId": "L139", + "platformId": "U388Z3", + "id": "994abb3b-bd0b-4ce1-ad5f-7d7355e4b4d1" + }, + { + "routeId": "L246", + "platformId": "U388Z3", + "id": "e1c33081-9ae7-4a60-baf4-8d9ef8c65578" + }, + { + "routeId": "L917", + "platformId": "U388Z3", + "id": "cfb1a994-686f-4edf-bd77-cb5f93fe0ffd" + }, + { + "routeId": "L341", + "platformId": "U388Z3", + "id": "f9618692-f850-4164-9a64-702d62a00530" + }, + { + "routeId": "L1308", + "platformId": "U388Z301", + "id": "8ee29cf0-9f0e-4c09-a641-db7c00ce5233" + }, + { + "routeId": "L1388", + "platformId": "U388Z301", + "id": "33546c7e-6f7d-4aa6-acf3-88116e8d666b" + }, + { + "routeId": "L139", + "platformId": "U388Z4", + "id": "b55c0740-aa51-4625-8a36-4831fbf5fd8c" + }, + { + "routeId": "L246", + "platformId": "U388Z4", + "id": "7cd6a387-84c6-45c0-8bc6-a012a0718219" + }, + { + "routeId": "L917", + "platformId": "U388Z4", + "id": "7eedb770-e0c0-4a6a-b5b5-1b96020fc210" + }, + { + "routeId": "L341", + "platformId": "U388Z4", + "id": "eee46a05-5564-4c76-8047-9ff343d9aab3" + }, + { + "routeId": "L229", + "platformId": "U389Z1", + "id": "8e7ec70d-518f-4348-a2ec-b188d07e1040" + }, + { + "routeId": "L173", + "platformId": "U389Z1", + "id": "69410b23-8027-4cc8-ac1d-b5c2611eae86" + }, + { + "routeId": "L163", + "platformId": "U389Z1", + "id": "b8fbff9e-e515-49e9-8adc-50a71b52f4a4" + }, + { + "routeId": "L208", + "platformId": "U389Z1", + "id": "2b4b780b-92b9-4184-b65c-1248927f143b" + }, + { + "routeId": "L903", + "platformId": "U389Z1", + "id": "1dbd287a-2c87-45c6-8adf-9bedf0ddd869" + }, + { + "routeId": "L228", + "platformId": "U389Z1", + "id": "c23c0a82-e013-4395-8456-b1a996c34512" + }, + { + "routeId": "L366", + "platformId": "U389Z1", + "id": "52b08e55-a9d7-47dc-8960-68e1e8c54f50" + }, + { + "routeId": "L364", + "platformId": "U389Z1", + "id": "9c90d267-48e1-43c1-ba45-f57f03430451" + }, + { + "routeId": "L229", + "platformId": "U389Z2", + "id": "f3edb234-d4f4-490b-b5f8-cd38e64ce952" + }, + { + "routeId": "L173", + "platformId": "U389Z2", + "id": "8bc8abc6-637d-4b6b-b2ec-07abd67e74f9" + }, + { + "routeId": "L163", + "platformId": "U389Z2", + "id": "871d5a3e-ddc8-44b1-b4b7-0cb1576282a1" + }, + { + "routeId": "L208", + "platformId": "U389Z2", + "id": "d26bc257-208c-487e-ae3f-0dbb98e22fbb" + }, + { + "routeId": "L903", + "platformId": "U389Z2", + "id": "633150e4-698d-4444-a88e-8c4f97d5d6ad" + }, + { + "routeId": "L228", + "platformId": "U389Z2", + "id": "134025a9-46e4-4d8c-9a5e-bf0f6169def2" + }, + { + "routeId": "L366", + "platformId": "U389Z2", + "id": "9a2b863d-1b62-4e56-bf85-29ebba4e4175" + }, + { + "routeId": "L364", + "platformId": "U389Z2", + "id": "16b12cdd-be23-4ccd-a4e9-fbe8cfa5f2e5" + }, + { + "routeId": "L236", + "platformId": "U38Z2", + "id": "2e495a2f-ca79-47ba-adc3-84d2fc376b24" + }, + { + "routeId": "L236", + "platformId": "U38Z3", + "id": "276bd0c2-8cdf-4aa9-b46c-86d34fc17697" + }, + { + "routeId": "L13", + "platformId": "U391Z1", + "id": "21a044b9-4444-41ac-a176-ac15268a1c1a" + }, + { + "routeId": "L22", + "platformId": "U391Z1", + "id": "6f1ddff0-058a-4beb-a1ac-7d8ec8225195" + }, + { + "routeId": "L97", + "platformId": "U391Z1", + "id": "0a690df5-c1d4-4b8e-920b-c8bc25396295" + }, + { + "routeId": "L99", + "platformId": "U391Z1", + "id": "9296ea8c-18d8-42c9-873e-891d2baafe4e" + }, + { + "routeId": "L13", + "platformId": "U391Z2", + "id": "8e8cf4aa-a5fb-4100-9862-5424dbc94857" + }, + { + "routeId": "L22", + "platformId": "U391Z2", + "id": "3bca846c-67ad-4f13-b939-3f20bf914d94" + }, + { + "routeId": "L97", + "platformId": "U391Z2", + "id": "94c47955-d9e2-4f14-89c2-df571d9e5b5d" + }, + { + "routeId": "L99", + "platformId": "U391Z2", + "id": "698c9dc5-7052-4e1f-8a2f-df5150093023" + }, + { + "routeId": "L139", + "platformId": "U392Z1", + "id": "c5232417-3338-4849-a2fd-c4501d31655d" + }, + { + "routeId": "L246", + "platformId": "U392Z1", + "id": "197ef054-b86f-4047-b968-e67a652394b8" + }, + { + "routeId": "L917", + "platformId": "U392Z1", + "id": "c75fa127-ec8f-445e-845a-091c6e167877" + }, + { + "routeId": "L314", + "platformId": "U392Z1", + "id": "7cfb39e7-0d34-4310-b1d7-5be6817bee48" + }, + { + "routeId": "L360", + "platformId": "U392Z1", + "id": "36a717d1-d1ff-4ba0-843f-d1f908559c5a" + }, + { + "routeId": "L361", + "platformId": "U392Z1", + "id": "7e47d6ee-8505-42bf-bc67-750390a0a0db" + }, + { + "routeId": "L390", + "platformId": "U392Z1", + "id": "3cab651c-4872-4add-b19a-8dd9a63d6eab" + }, + { + "routeId": "L139", + "platformId": "U392Z2", + "id": "963ed478-bd23-4edb-b1fd-c87669b6e317" + }, + { + "routeId": "L246", + "platformId": "U392Z2", + "id": "70d823d9-85f5-4444-b7f8-7fa8e4a24740" + }, + { + "routeId": "L917", + "platformId": "U392Z2", + "id": "f08b4b81-b4cc-4472-a0e8-f985960b6226" + }, + { + "routeId": "L314", + "platformId": "U392Z2", + "id": "a9a3885a-f63f-4b7e-9219-f86895543d35" + }, + { + "routeId": "L360", + "platformId": "U392Z2", + "id": "a42efa30-0e27-40c1-a525-f58ebb945da0" + }, + { + "routeId": "L361", + "platformId": "U392Z2", + "id": "8df437d0-5f22-4403-8bc6-8446fdee108e" + }, + { + "routeId": "L390", + "platformId": "U392Z2", + "id": "48ee8228-2416-4302-b7ef-33974e4b6e69" + }, + { + "routeId": "L9", + "platformId": "U394Z1", + "id": "830b2df8-57f4-4fc6-ba7f-0b5eaf772868" + }, + { + "routeId": "L10", + "platformId": "U394Z1", + "id": "f5ec9b04-1671-4232-8c17-9c0c6cac1900" + }, + { + "routeId": "L98", + "platformId": "U394Z1", + "id": "d07f0990-5eb6-4581-a829-2776d1c8bd06" + }, + { + "routeId": "L99", + "platformId": "U394Z1", + "id": "1baf6f7c-bf3d-4ff8-951b-a2e32f42d7ff" + }, + { + "routeId": "L9", + "platformId": "U394Z2", + "id": "35c54356-8591-4a46-a35a-78390414afb0" + }, + { + "routeId": "L10", + "platformId": "U394Z2", + "id": "d07a262b-64b6-4947-8928-4235bd1f2785" + }, + { + "routeId": "L98", + "platformId": "U394Z2", + "id": "87d37f85-2535-45a8-b0d1-422c8373b346" + }, + { + "routeId": "L99", + "platformId": "U394Z2", + "id": "06d31eb7-c887-4d3e-b91e-70f0b226e10e" + }, + { + "routeId": "L168", + "platformId": "U394Z3", + "id": "95fc5163-65ca-497f-a42c-58e672066d6c" + }, + { + "routeId": "L174", + "platformId": "U394Z3", + "id": "3530825b-74f4-43a7-bbdf-badb3ae3e10a" + }, + { + "routeId": "L180", + "platformId": "U394Z3", + "id": "73766f3b-8d5d-4d1f-81f2-f7a481e1c43c" + }, + { + "routeId": "L184", + "platformId": "U394Z3", + "id": "e84286ad-e58b-47d1-a0f1-822cfa72e540" + }, + { + "routeId": "L902", + "platformId": "U394Z3", + "id": "c46991b5-f46c-41f9-8990-baf20d84038d" + }, + { + "routeId": "L304", + "platformId": "U394Z3", + "id": "2fcc3921-a4c2-4c43-a291-e8b7cd0da3c2" + }, + { + "routeId": "L365", + "platformId": "U394Z3", + "id": "aaa37bc6-9a9d-49b5-a6c2-d86316551ca6" + }, + { + "routeId": "L380", + "platformId": "U394Z3", + "id": "5657b7dc-0bf2-43a1-a1bb-9e3910c90acb" + }, + { + "routeId": "L168", + "platformId": "U394Z4", + "id": "b4009c16-837c-45d8-99cc-2ae17ec92042" + }, + { + "routeId": "L174", + "platformId": "U394Z4", + "id": "568f6e71-fd8b-4141-ac3d-402635b175ab" + }, + { + "routeId": "L180", + "platformId": "U394Z4", + "id": "72c7eee8-931d-4ca5-8747-d1535b30ec9c" + }, + { + "routeId": "L184", + "platformId": "U394Z4", + "id": "c9d540f2-0f97-426e-bcf1-5abe25bae714" + }, + { + "routeId": "L902", + "platformId": "U394Z4", + "id": "35ed48b7-dd74-4bbe-8e6d-d2256cdaa52b" + }, + { + "routeId": "L304", + "platformId": "U394Z4", + "id": "3fdc275b-7d78-43d0-b335-7c982d9bb49b" + }, + { + "routeId": "L365", + "platformId": "U394Z4", + "id": "6d07ab71-ab84-4e41-b887-0ada21fc7b0e" + }, + { + "routeId": "L380", + "platformId": "U394Z4", + "id": "73024711-1c58-40b4-afe3-7a098b743fd1" + }, + { + "routeId": "L9", + "platformId": "U395Z1", + "id": "a65371f8-26c9-42fa-9d5f-cdd0b5dce77b" + }, + { + "routeId": "L10", + "platformId": "U395Z1", + "id": "fd5c9609-d63d-4a63-861d-4e8a8381ef87" + }, + { + "routeId": "L98", + "platformId": "U395Z1", + "id": "f6c42f2f-d5d2-4ace-9203-5e676a4a5c63" + }, + { + "routeId": "L99", + "platformId": "U395Z1", + "id": "c53e22ae-ac49-4f20-992b-4cecf0da5e15" + }, + { + "routeId": "L9", + "platformId": "U395Z2", + "id": "0172a593-3bbc-405d-8adb-3e144af070f3" + }, + { + "routeId": "L10", + "platformId": "U395Z2", + "id": "f7688a36-fff7-4137-8a1e-b76a22520726" + }, + { + "routeId": "L98", + "platformId": "U395Z2", + "id": "97e10b0f-f9f3-4faa-ba63-2156a6e0c3d8" + }, + { + "routeId": "L99", + "platformId": "U395Z2", + "id": "e939f93a-a032-4142-be7d-8f0b560f11db" + }, + { + "routeId": "L180", + "platformId": "U395Z3", + "id": "07c65195-befc-47ce-a859-6179e6694e2e" + }, + { + "routeId": "L304", + "platformId": "U395Z3", + "id": "35c35c8e-e73d-436d-9ded-38f00c98e9a5" + }, + { + "routeId": "L380", + "platformId": "U395Z3", + "id": "0f675404-5009-46f7-9234-faab48d94497" + }, + { + "routeId": "L180", + "platformId": "U395Z4", + "id": "b0e55e19-4add-4f1c-931d-c69e0586ad79" + }, + { + "routeId": "L304", + "platformId": "U395Z4", + "id": "56f7dfeb-5026-45c8-b868-b2dfaa1cb8ce" + }, + { + "routeId": "L380", + "platformId": "U395Z4", + "id": "79992899-b90e-4bb8-8995-9abdfe20d1d4" + }, + { + "routeId": "L149", + "platformId": "U396Z1", + "id": "8c117f18-7c82-4dbd-b8db-ab9e1d225dd0" + }, + { + "routeId": "L149", + "platformId": "U396Z2", + "id": "238e09ab-40e4-44a3-b914-8bce00219722" + }, + { + "routeId": "L107", + "platformId": "U397Z1", + "id": "b32b5a68-bd7e-4f7c-ae33-ac7cea377fa4" + }, + { + "routeId": "L147", + "platformId": "U397Z1", + "id": "52dfc4ae-c4ac-4dee-8b79-401b1c62bbe6" + }, + { + "routeId": "L909", + "platformId": "U397Z1", + "id": "55658605-895d-4a4a-a2bc-9c727ea3ee3d" + }, + { + "routeId": "L107", + "platformId": "U397Z2", + "id": "63e13ef3-7806-4277-813d-ae82af159bc5" + }, + { + "routeId": "L147", + "platformId": "U397Z2", + "id": "c6198753-efcc-43ff-b41e-555437c75632" + }, + { + "routeId": "L909", + "platformId": "U397Z2", + "id": "454acc8d-8611-446f-b853-a5f394fa5dbd" + }, + { + "routeId": "L175", + "platformId": "U398Z1", + "id": "6c44243d-32ae-420d-bc5a-a06fb393c9b3" + }, + { + "routeId": "L175", + "platformId": "U398Z2", + "id": "01692e96-02d2-4072-b988-a5e259225638" + }, + { + "routeId": "L915", + "platformId": "U399Z1", + "id": "ee078b28-9694-4367-b19a-306617ad96b8" + }, + { + "routeId": "L377", + "platformId": "U399Z1", + "id": "c3d6d0e3-07ff-4302-9233-6d4ac9f76dc4" + }, + { + "routeId": "L58", + "platformId": "U399Z1", + "id": "f2dc413f-d15b-4929-9ec5-fd342ba207cf" + }, + { + "routeId": "L915", + "platformId": "U399Z2", + "id": "7d0c0693-6c9c-4742-aaf0-8db7610203fd" + }, + { + "routeId": "L377", + "platformId": "U399Z2", + "id": "5a6f49c4-11ab-4fd1-83f9-b2b6da653d08" + }, + { + "routeId": "L58", + "platformId": "U399Z2", + "id": "f4ea2b3c-3115-4d11-b50d-989914210b7f" + }, + { + "routeId": "L102", + "platformId": "U39Z1", + "id": "4c245984-c61d-4ed8-988a-1bf41c73aafc" + }, + { + "routeId": "L183", + "platformId": "U39Z1", + "id": "ece4dd26-4aa9-49be-9ea3-c133171c313f" + }, + { + "routeId": "L166", + "platformId": "U39Z1", + "id": "0a5cdabd-8f1b-4631-9950-9012f9e7364f" + }, + { + "routeId": "L102", + "platformId": "U39Z2", + "id": "cdc9d1f7-b28e-4121-b8d5-183a8da5926a" + }, + { + "routeId": "L183", + "platformId": "U39Z2", + "id": "88cd22fc-6390-49b2-bf0e-6a3b170c79ab" + }, + { + "routeId": "L166", + "platformId": "U39Z2", + "id": "8d3a8aad-4d12-4357-bc32-e653019edaa9" + }, + { + "routeId": "L160", + "platformId": "U3Z1", + "id": "0cdf59ab-37df-4363-8ecb-b0115e19b0aa" + }, + { + "routeId": "L116", + "platformId": "U3Z1", + "id": "75eb8706-8585-4bf6-ab60-eb8600fbb223" + }, + { + "routeId": "L902", + "platformId": "U3Z1", + "id": "924256b5-7aba-496b-9014-6b0184a90862" + }, + { + "routeId": "L355", + "platformId": "U3Z1", + "id": "7767c0d9-e3b7-415f-929f-0b0d03598d44" + }, + { + "routeId": "L160", + "platformId": "U3Z2", + "id": "e6709b50-edbf-480c-9796-9011c4fad32f" + }, + { + "routeId": "L116", + "platformId": "U3Z2", + "id": "527440d8-af4e-438f-ad73-f63eba8638a9" + }, + { + "routeId": "L902", + "platformId": "U3Z2", + "id": "bd5d58a2-68df-4685-8c81-1e918546fcf9" + }, + { + "routeId": "L355", + "platformId": "U3Z2", + "id": "fd51498f-05a1-4433-806f-afbc9309a679" + }, + { + "routeId": "L185", + "platformId": "U4000Z2", + "id": "48f395d2-adfc-4224-88d0-593a5c58f61c" + }, + { + "routeId": "L209", + "platformId": "U4000Z2", + "id": "5089e4ba-badc-4b5d-a582-759c90e71066" + }, + { + "routeId": "L378", + "platformId": "U4000Z2", + "id": "97bb8ae4-eb00-4964-997d-a56d79239e1e" + }, + { + "routeId": "L302", + "platformId": "U4000Z2", + "id": "554cd640-abed-40c5-9c05-89071a635b0e" + }, + { + "routeId": "L375", + "platformId": "U4000Z2", + "id": "51e34ed9-2d00-4040-a39b-de03cb01d70d" + }, + { + "routeId": "L376", + "platformId": "U4000Z2", + "id": "e4838d5c-98da-4a11-ae08-d8bb432f1e61" + }, + { + "routeId": "L600", + "platformId": "U4008Z1", + "id": "32acbdbf-9284-445d-870b-4f9c2ea153b5" + }, + { + "routeId": "L600", + "platformId": "U4008Z2", + "id": "6db2c596-497c-4029-b493-3757532de2a1" + }, + { + "routeId": "L600", + "platformId": "U4009Z1", + "id": "18fe4cb4-6704-49a1-9719-cecd1d741d77" + }, + { + "routeId": "L600", + "platformId": "U4009Z2", + "id": "65cd8992-6780-4bb0-918b-11796de12954" + }, + { + "routeId": "L11", + "platformId": "U400Z1", + "id": "7b08b864-6a86-4e50-b975-9ac9b51c6fcb" + }, + { + "routeId": "L13", + "platformId": "U400Z1", + "id": "420c6a65-6b70-4864-8e4c-f94f143333fe" + }, + { + "routeId": "L991", + "platformId": "U400Z101", + "id": "0e2c8ca0-76d4-4b10-b624-aa93d7f18989" + }, + { + "routeId": "L991", + "platformId": "U400Z102", + "id": "4e9e960b-4e83-4477-b497-25707b831d79" + }, + { + "routeId": "L993", + "platformId": "U400Z121", + "id": "2fac205b-0586-45ea-89dc-57b71668b012" + }, + { + "routeId": "L993", + "platformId": "U400Z122", + "id": "b8ba62d0-1fc5-45ff-8c04-117569db0379" + }, + { + "routeId": "L11", + "platformId": "U400Z2", + "id": "8953726d-8767-4cf5-82ec-1490c892a53e" + }, + { + "routeId": "L13", + "platformId": "U400Z2", + "id": "18385ead-4448-4314-91e7-055f68d59128" + }, + { + "routeId": "L905", + "platformId": "U400Z3", + "id": "5a52215b-cb5c-4b24-b7be-6565527ce817" + }, + { + "routeId": "L907", + "platformId": "U400Z3", + "id": "0e65a92d-c29a-4084-be2d-1c7ba156cde6" + }, + { + "routeId": "L908", + "platformId": "U400Z3", + "id": "67122b10-b374-4db0-a556-0a143a6d6548" + }, + { + "routeId": "L911", + "platformId": "U400Z3", + "id": "c13c8339-062c-4524-853d-6f9df24b7207" + }, + { + "routeId": "L905", + "platformId": "U400Z4", + "id": "ab8f74da-8535-46fe-bf0e-ceb1336e1ef3" + }, + { + "routeId": "L907", + "platformId": "U400Z4", + "id": "97789e2b-96c1-4fb6-9477-0d2fc6755f76" + }, + { + "routeId": "L908", + "platformId": "U400Z4", + "id": "d34503a5-a563-40bc-990e-05c3f91a15cf" + }, + { + "routeId": "L911", + "platformId": "U400Z4", + "id": "18f3f939-0faa-4ccb-94b3-18d572fc10d0" + }, + { + "routeId": "L600", + "platformId": "U4010Z1", + "id": "81841a2a-eaab-418d-b22d-1bf206340877" + }, + { + "routeId": "L600", + "platformId": "U4010Z2", + "id": "c304d6f9-d8ec-4aec-b3ce-b86e5a045016" + }, + { + "routeId": "L600", + "platformId": "U4011Z1", + "id": "ee4b56e2-0ee1-4943-a311-74503b16519b" + }, + { + "routeId": "L600", + "platformId": "U4011Z2", + "id": "188b1ead-8290-4863-96a4-05492c57356b" + }, + { + "routeId": "L600", + "platformId": "U4012Z1", + "id": "3b16d808-9344-44d5-a8f8-9003c3381da3" + }, + { + "routeId": "L600", + "platformId": "U4012Z2", + "id": "f667f2ff-a908-47b7-8967-c9d69aa3bc1d" + }, + { + "routeId": "L619", + "platformId": "U4013Z1", + "id": "80e168f6-e898-4685-9d92-c57320c7ba61" + }, + { + "routeId": "L619", + "platformId": "U4013Z2", + "id": "3d8bb163-39f5-43d4-9cd8-1b3175ae5940" + }, + { + "routeId": "L618", + "platformId": "U4014Z1", + "id": "ea0e147a-0bcb-46ad-b23b-1278c50d1a2f" + }, + { + "routeId": "L618", + "platformId": "U4014Z2", + "id": "0ac084eb-40d4-4d0a-bda1-118693dd5338" + }, + { + "routeId": "L618", + "platformId": "U4015Z1", + "id": "e5bdb1a0-d88c-4257-8ce7-8bfb1d73a683" + }, + { + "routeId": "L618", + "platformId": "U4015Z2", + "id": "bc310159-fb1c-414a-97ef-249a3caf3976" + }, + { + "routeId": "L5", + "platformId": "U401Z1", + "id": "a103d46d-84bd-42c7-bb78-66d922adaa4c" + }, + { + "routeId": "L12", + "platformId": "U401Z1", + "id": "adce0e77-6238-490e-87cd-3e8eeab36595" + }, + { + "routeId": "L20", + "platformId": "U401Z1", + "id": "2462fdcc-7dcf-4d1c-85d2-c0acb182979f" + }, + { + "routeId": "L904", + "platformId": "U401Z1", + "id": "a9906a0f-8e71-46e0-bce1-f5e8292ef5e9" + }, + { + "routeId": "L910", + "platformId": "U401Z1", + "id": "800321e0-82a9-400a-87b4-82f207690b4e" + }, + { + "routeId": "L5", + "platformId": "U401Z2", + "id": "730baeb1-2d32-4ced-964e-c60687d078f3" + }, + { + "routeId": "L12", + "platformId": "U401Z2", + "id": "42a0a8b0-5018-46ae-8f21-da962f38c372" + }, + { + "routeId": "L20", + "platformId": "U401Z2", + "id": "e8e66e31-12d7-4aff-a0ae-3a67ca82bfc1" + }, + { + "routeId": "L555", + "platformId": "U4021Z1", + "id": "175a2bf3-066c-40ae-9264-9c93cba96f84" + }, + { + "routeId": "L227", + "platformId": "U402Z1", + "id": "f9ecc148-25ce-4a5b-984f-62109036870e" + }, + { + "routeId": "L226", + "platformId": "U402Z1", + "id": "aeefff05-a4de-4283-ba4a-d8311aa3ff93" + }, + { + "routeId": "L382", + "platformId": "U402Z1", + "id": "d958e57c-41e0-40e7-bcdc-751c3cb802db" + }, + { + "routeId": "L383", + "platformId": "U402Z1", + "id": "970e6db0-fe8c-4a7f-9b8d-0e94aabfc33b" + }, + { + "routeId": "L959", + "platformId": "U402Z1", + "id": "cf411e9f-9ca0-484d-bda5-abffb2e5716e" + }, + { + "routeId": "L226", + "platformId": "U402Z2", + "id": "a54cdf7f-2df2-4ce6-9469-d5734bdaddc0" + }, + { + "routeId": "L227", + "platformId": "U402Z2", + "id": "27b5c7f0-a48a-4bf0-a8a6-65c434e23329" + }, + { + "routeId": "L382", + "platformId": "U402Z2", + "id": "57ee7990-1c4e-4548-9665-f2a2d14789e2" + }, + { + "routeId": "L383", + "platformId": "U402Z2", + "id": "4561be57-4114-4885-817d-7d9e838d20d9" + }, + { + "routeId": "L959", + "platformId": "U402Z2", + "id": "3aa23323-eb56-49de-a234-fbfbfbcc9a0b" + }, + { + "routeId": "L555", + "platformId": "U4030Z1", + "id": "97b1db27-23a9-4fbc-aef8-78152f25ccbe" + }, + { + "routeId": "L555", + "platformId": "U4030Z2", + "id": "abba61ae-fd66-4bb8-b149-1b2139c37f0c" + }, + { + "routeId": "L463", + "platformId": "U4032Z1", + "id": "54ecc050-1e9b-4b47-8ab5-77ab856841b6" + }, + { + "routeId": "L775", + "platformId": "U4032Z1", + "id": "a89e179f-ac74-44b5-89f6-e03079745f8e" + }, + { + "routeId": "L463", + "platformId": "U4032Z2", + "id": "26a5b3e1-04b3-4ead-9efc-dbc15d2e8ad1" + }, + { + "routeId": "L775", + "platformId": "U4032Z2", + "id": "160c3927-bf19-40a6-a637-81b801a10d1e" + }, + { + "routeId": "L463", + "platformId": "U4033Z1", + "id": "c4d88ef1-8c2a-4119-bc04-5ddc5e943991" + }, + { + "routeId": "L775", + "platformId": "U4033Z1", + "id": "ecfffac9-f7ac-418a-a67b-52477d07e503" + }, + { + "routeId": "L463", + "platformId": "U4033Z2", + "id": "dcd97035-96ba-4ccb-9572-1578b44bd4a0" + }, + { + "routeId": "L775", + "platformId": "U4033Z2", + "id": "0fe0358b-ee62-4c0c-a708-5e6b184689f1" + }, + { + "routeId": "L22", + "platformId": "U403Z1", + "id": "f168543f-2fed-44b2-adf2-50a8b919d2c1" + }, + { + "routeId": "L26", + "platformId": "U403Z1", + "id": "d64129e0-dc58-4093-b339-e27395502491" + }, + { + "routeId": "L97", + "platformId": "U403Z1", + "id": "1ab5daf6-4186-440e-8aea-6cc32e739e5d" + }, + { + "routeId": "L22", + "platformId": "U403Z2", + "id": "516c21e4-0358-4b64-a7c8-66f08065f42c" + }, + { + "routeId": "L26", + "platformId": "U403Z2", + "id": "78748668-8ede-40b4-abbe-afde13d36326" + }, + { + "routeId": "L97", + "platformId": "U403Z2", + "id": "e2a335b8-7803-4327-84f1-a4a25e7c6ae5" + }, + { + "routeId": "L154", + "platformId": "U403Z7", + "id": "11ce7d5d-ccde-4e54-abec-a92f8cc03663" + }, + { + "routeId": "L175", + "platformId": "U403Z7", + "id": "acdc6634-fb1a-4731-8de6-b85b6a2a37a9" + }, + { + "routeId": "L181", + "platformId": "U403Z7", + "id": "a55e365c-1feb-4f29-b258-357ca88af60d" + }, + { + "routeId": "L154", + "platformId": "U403Z8", + "id": "92ac9685-8fd4-4b78-bd33-c2f09df95814" + }, + { + "routeId": "L175", + "platformId": "U403Z8", + "id": "cf25a236-16f5-4da3-8d0b-04fa6ddbac29" + }, + { + "routeId": "L181", + "platformId": "U403Z8", + "id": "6846b190-f51b-42dc-9b0a-0421ece09e27" + }, + { + "routeId": "L731", + "platformId": "U4049Z1", + "id": "20dff520-b5e3-46e0-89d9-a14e46061a14" + }, + { + "routeId": "L731", + "platformId": "U4049Z2", + "id": "e0e4d10c-0865-4e6a-bb25-8af015b5e9e5" + }, + { + "routeId": "L16", + "platformId": "U404Z1", + "id": "15c247c7-aa70-48a1-b4e3-a860e4a64fba" + }, + { + "routeId": "L95", + "platformId": "U404Z1", + "id": "88aa2c3e-dcba-4187-8cb2-c8a06e5820ff" + }, + { + "routeId": "L16", + "platformId": "U404Z2", + "id": "facd0350-fe73-4962-a660-64f7f82ceddd" + }, + { + "routeId": "L95", + "platformId": "U404Z2", + "id": "7285c08b-07b3-40b6-848b-89ddec1556f7" + }, + { + "routeId": "L229", + "platformId": "U404Z3", + "id": "55d4e8b3-2f42-4785-b885-c5d09977bb76" + }, + { + "routeId": "L173", + "platformId": "U404Z3", + "id": "9e087b6c-f1c1-408b-8eaa-82156eb51050" + }, + { + "routeId": "L163", + "platformId": "U404Z3", + "id": "9aa79e08-b8ea-4ab0-b020-e45069b9ccf3" + }, + { + "routeId": "L208", + "platformId": "U404Z3", + "id": "6108305b-9355-4180-8d11-00a377d16bb7" + }, + { + "routeId": "L903", + "platformId": "U404Z3", + "id": "1a318c4b-cf88-4d11-a9b1-d4992adb62d9" + }, + { + "routeId": "L228", + "platformId": "U404Z3", + "id": "92a0a239-71f4-48cf-b4f3-5b6021848a16" + }, + { + "routeId": "L366", + "platformId": "U404Z3", + "id": "dd78b37f-2e26-4424-ba06-d7dc0b54ec68" + }, + { + "routeId": "L364", + "platformId": "U404Z3", + "id": "a54eb516-395a-4c60-a5d4-263cd1a19d6b" + }, + { + "routeId": "L229", + "platformId": "U404Z4", + "id": "1920effc-7cd0-451b-8d6d-5b77c55f004d" + }, + { + "routeId": "L173", + "platformId": "U404Z4", + "id": "dae00265-55a6-46d0-856b-b9de797ab754" + }, + { + "routeId": "L163", + "platformId": "U404Z4", + "id": "57cc5d84-d82c-4e43-81ae-c2e6f8380cc6" + }, + { + "routeId": "L208", + "platformId": "U404Z4", + "id": "891849aa-1bba-44a5-a3a1-b34b00594f06" + }, + { + "routeId": "L903", + "platformId": "U404Z4", + "id": "454cadf6-9157-49b1-835c-eb1c36db1eea" + }, + { + "routeId": "L228", + "platformId": "U404Z4", + "id": "8d3acf94-d715-4e50-adcf-f6fc8f23dbc9" + }, + { + "routeId": "L366", + "platformId": "U404Z4", + "id": "74a45a47-0b6c-4cb5-a950-b6c42f7f18d0" + }, + { + "routeId": "L364", + "platformId": "U404Z4", + "id": "3e5e3961-7641-40b5-a924-383f3228f5c9" + }, + { + "routeId": "L731", + "platformId": "U4058Z2", + "id": "b004923b-b09e-4968-80f7-2d0d7e465288" + }, + { + "routeId": "L136", + "platformId": "U405Z1", + "id": "e55467a1-df86-4e08-a7e8-c606ff1d8f5b" + }, + { + "routeId": "L158", + "platformId": "U405Z1", + "id": "16539954-8820-45ee-8ebf-44cdbcd7c36d" + }, + { + "routeId": "L195", + "platformId": "U405Z1", + "id": "13df3194-3a59-447c-9e25-7d4b4bfd7835" + }, + { + "routeId": "L201", + "platformId": "U405Z1", + "id": "cf495d65-3e4e-4719-ba3b-c169f259e830" + }, + { + "routeId": "L911", + "platformId": "U405Z1", + "id": "3caee7fe-0935-43e0-8ec4-05cb2cc58f8d" + }, + { + "routeId": "L916", + "platformId": "U405Z1", + "id": "aba19203-d54c-4db1-b082-1ff2875743d5" + }, + { + "routeId": "L110", + "platformId": "U405Z1", + "id": "2dda3d65-30ce-461b-89d8-47747b1b6858" + }, + { + "routeId": "L166", + "platformId": "U405Z1", + "id": "c93bdda9-7111-488b-b31d-cd1e32f6ceb6" + }, + { + "routeId": "L58", + "platformId": "U405Z1", + "id": "789609e1-838b-4fe0-8cda-0a5d02a7322e" + }, + { + "routeId": "L136", + "platformId": "U405Z2", + "id": "46a67fcd-cb09-4eff-b340-8a4651a72140" + }, + { + "routeId": "L158", + "platformId": "U405Z2", + "id": "449b8610-5e57-4c96-896d-537bb2c957f1" + }, + { + "routeId": "L195", + "platformId": "U405Z2", + "id": "d22843b2-0f25-43b4-9863-891f6f89b4df" + }, + { + "routeId": "L201", + "platformId": "U405Z2", + "id": "607766d2-063b-4f64-b626-552c439be2c5" + }, + { + "routeId": "L916", + "platformId": "U405Z2", + "id": "2d01e456-fb2a-4f7f-a76d-a50038a38fd1" + }, + { + "routeId": "L911", + "platformId": "U405Z2", + "id": "5e1968e2-4a34-4e7f-ab1b-451ac0a9341a" + }, + { + "routeId": "L110", + "platformId": "U405Z2", + "id": "e111f8b6-e371-4eab-af2b-7b9b97c5cc64" + }, + { + "routeId": "L166", + "platformId": "U405Z2", + "id": "2b478fd9-2a1e-4ba8-bdd9-870dfaab558e" + }, + { + "routeId": "L58", + "platformId": "U405Z2", + "id": "609e210d-5682-4f0e-9a47-af8cf29e8277" + }, + { + "routeId": "L731", + "platformId": "U4068Z1", + "id": "aedee957-b8b7-409e-8db3-e63f756232de" + }, + { + "routeId": "L463", + "platformId": "U4068Z1", + "id": "54e61aee-a8f9-4303-bb40-2bb57c3e3e25" + }, + { + "routeId": "L432", + "platformId": "U4068Z1", + "id": "8732a7ab-b8e6-47a7-8299-02f1aad2c045" + }, + { + "routeId": "L720", + "platformId": "U4068Z1", + "id": "639bff8c-9928-43ea-8edb-36a735d622e8" + }, + { + "routeId": "L720", + "platformId": "U4068Z2", + "id": "1321ffb3-0172-4189-80b1-864ed31c43cf" + }, + { + "routeId": "L134", + "platformId": "U406Z1", + "id": "67a7e9b0-1df7-4d66-b494-958b779ca84b" + }, + { + "routeId": "L904", + "platformId": "U406Z1", + "id": "7d35c0ce-3e79-4fd8-92d9-0c984dd3f2c8" + }, + { + "routeId": "L134", + "platformId": "U406Z2", + "id": "23c26001-51bc-4737-8403-d77c8afbfee0" + }, + { + "routeId": "L904", + "platformId": "U406Z2", + "id": "d4149935-15eb-431e-ab7a-9490725cea38" + }, + { + "routeId": "L770", + "platformId": "U4073Z1", + "id": "d4f4e455-142d-4d2a-bdc7-1dc9807e7be7" + }, + { + "routeId": "L796", + "platformId": "U4073Z1", + "id": "035d32da-b186-41d1-a52c-5c53abfd9130" + }, + { + "routeId": "L770", + "platformId": "U4073Z2", + "id": "6088f174-320e-4c6e-8f20-64965c63dfb3" + }, + { + "routeId": "L796", + "platformId": "U4073Z2", + "id": "f59bb533-c7cd-4d31-8c4e-87db0b22ea41" + }, + { + "routeId": "L798", + "platformId": "U4074Z1", + "id": "0399ff93-dc6f-428b-a20e-972cc036a5e2" + }, + { + "routeId": "L406", + "platformId": "U4074Z1", + "id": "0097dc33-223d-400f-a149-8fedb50a1ff7" + }, + { + "routeId": "L791", + "platformId": "U4074Z1", + "id": "9bc5c2f0-a93e-43f8-8093-fbc927c96532" + }, + { + "routeId": "L455", + "platformId": "U4074Z1", + "id": "c0850e0d-aea4-43ab-9bee-95c0b0c5c50d" + }, + { + "routeId": "L798", + "platformId": "U4074Z2", + "id": "01f14b98-c7f6-4cbb-b028-777e131a51f8" + }, + { + "routeId": "L406", + "platformId": "U4074Z2", + "id": "3f380eed-10a5-4fb0-b6a6-7b3fe9335395" + }, + { + "routeId": "L791", + "platformId": "U4074Z2", + "id": "485aabaa-9430-48f6-a379-e81d96825a00" + }, + { + "routeId": "L455", + "platformId": "U4074Z2", + "id": "b289fcb0-fda3-4415-89d2-4224359010aa" + }, + { + "routeId": "L221", + "platformId": "U407Z1", + "id": "285a226a-949a-4a23-b14d-14f310a03e9c" + }, + { + "routeId": "L204", + "platformId": "U407Z2", + "id": "dbd1fc8f-77e0-4bea-86b3-0f7d72e0e1da" + }, + { + "routeId": "L221", + "platformId": "U407Z2", + "id": "8b098267-fbab-4322-a693-c56702e2cf3f" + }, + { + "routeId": "L223", + "platformId": "U407Z2", + "id": "7540ae61-0804-42b6-b535-0aeeb0546e56" + }, + { + "routeId": "L224", + "platformId": "U407Z2", + "id": "f60b12ab-5f3e-4d7c-8d84-dfd30bee2a40" + }, + { + "routeId": "L770", + "platformId": "U4080Z1", + "id": "37cd85d6-515c-4c65-ab32-6cb290452a26" + }, + { + "routeId": "L770", + "platformId": "U4080Z2", + "id": "27012e82-7ca7-462e-aa67-e0eccfbfc41c" + }, + { + "routeId": "L550", + "platformId": "U4082Z1", + "id": "fcbc8bb1-a9a7-4d71-a3c3-628ce231b41e" + }, + { + "routeId": "L2841", + "platformId": "U4082Z1", + "id": "8fae771c-0cb6-4bba-b0ef-1aa64c53c0b7" + }, + { + "routeId": "L453", + "platformId": "U4082Z1", + "id": "3af851bf-85a2-48a0-8fea-32b34f90e92e" + }, + { + "routeId": "L455", + "platformId": "U4082Z1", + "id": "a6890bea-212e-4cbf-8e1d-34c4d82c150e" + }, + { + "routeId": "L2841", + "platformId": "U4082Z2", + "id": "5ca79ce4-70b0-4a15-95b2-c62df62f1d95" + }, + { + "routeId": "L453", + "platformId": "U4082Z2", + "id": "3257c9f2-5a2b-4e85-b07a-7fc3ecaf7851" + }, + { + "routeId": "L455", + "platformId": "U4082Z2", + "id": "296aa95a-fd79-410a-8dab-4dc1df87e352" + }, + { + "routeId": "L453", + "platformId": "U4083Z1", + "id": "5d23cbc4-44a6-4026-99e1-611df67b0cc2" + }, + { + "routeId": "L455", + "platformId": "U4083Z1", + "id": "5b3a9a7d-37a2-4824-8be6-3215820990ff" + }, + { + "routeId": "L453", + "platformId": "U4083Z2", + "id": "e31a0c8e-6be3-4369-a0db-a37b4f14296a" + }, + { + "routeId": "L455", + "platformId": "U4083Z2", + "id": "4333cea2-a9b3-4f37-9e2e-6a6e41065288" + }, + { + "routeId": "L550", + "platformId": "U4084Z1", + "id": "9329a9e9-30f5-4dc1-a186-6c425be69ef0" + }, + { + "routeId": "L453", + "platformId": "U4084Z1", + "id": "d87f8431-2796-4d1b-942a-06e27789717b" + }, + { + "routeId": "L455", + "platformId": "U4084Z1", + "id": "ac7eb40f-52f1-4ef4-bd3f-c47653b4a4d4" + }, + { + "routeId": "L550", + "platformId": "U4084Z2", + "id": "002f13a1-ca6a-44d1-a65c-a4a3e26820a8" + }, + { + "routeId": "L453", + "platformId": "U4084Z2", + "id": "1885b3ff-840f-4c72-8f64-66c274848740" + }, + { + "routeId": "L455", + "platformId": "U4084Z2", + "id": "3d390e8c-d1a0-402a-b6c0-a89b2842661e" + }, + { + "routeId": "L550", + "platformId": "U4085Z1", + "id": "f02c6005-402c-476c-84f6-dca7f003a578" + }, + { + "routeId": "L550", + "platformId": "U4085Z2", + "id": "82a3a83b-8fe3-4f15-84eb-be8d66d06b86" + }, + { + "routeId": "L550", + "platformId": "U4086Z1", + "id": "fd602d2f-0521-4105-b5c4-fc97035ba4f3" + }, + { + "routeId": "L550", + "platformId": "U4086Z2", + "id": "ef191c13-6f7e-4fc7-8352-7ad55a636e2d" + }, + { + "routeId": "L550", + "platformId": "U4087Z1", + "id": "150bf5ef-49cf-417c-bd59-8494ebed5952" + }, + { + "routeId": "L550", + "platformId": "U4087Z2", + "id": "32a73d6b-0279-405e-a8d3-02a7c8878971" + }, + { + "routeId": "L453", + "platformId": "U4087Z2", + "id": "2d28a566-2a5d-42c7-a254-4f789c29bad7" + }, + { + "routeId": "L455", + "platformId": "U4087Z2", + "id": "596368cd-7e10-4c3d-9006-34313ac23db4" + }, + { + "routeId": "L453", + "platformId": "U4087Z3", + "id": "39c8c4a8-03b4-45c2-a3c5-6a7040df68fe" + }, + { + "routeId": "L455", + "platformId": "U4087Z3", + "id": "e2654864-21ab-4a5d-b7b4-e10ce079feab" + }, + { + "routeId": "L453", + "platformId": "U4088Z1", + "id": "bed619c2-8d71-445b-b600-4283c974a559" + }, + { + "routeId": "L455", + "platformId": "U4088Z1", + "id": "bc10bd28-c4c5-452d-b9a9-049807471a31" + }, + { + "routeId": "L453", + "platformId": "U4088Z2", + "id": "5848b63b-30f3-4ed3-8d13-f1f6cc7b02c1" + }, + { + "routeId": "L455", + "platformId": "U4088Z2", + "id": "6b7d36a9-6be0-4724-9b55-26ec337f117d" + }, + { + "routeId": "L141", + "platformId": "U408Z1", + "id": "b9ecdd8d-e3f5-4460-96b1-c45df79baee8" + }, + { + "routeId": "L912", + "platformId": "U408Z1", + "id": "a2270045-26ed-4735-98c4-01ee3637f4d8" + }, + { + "routeId": "L171", + "platformId": "U408Z1", + "id": "ad3a2825-1f15-4f4b-b111-5c1685236196" + }, + { + "routeId": "L209", + "platformId": "U408Z1", + "id": "14b3b26c-9fef-4d8d-ae3f-717d96533b73" + }, + { + "routeId": "L141", + "platformId": "U408Z2", + "id": "f25f19f2-0fb1-4b5a-ba97-1c82c50c46cb" + }, + { + "routeId": "L912", + "platformId": "U408Z2", + "id": "8add049d-7d72-4da2-9738-fd15fb8bdead" + }, + { + "routeId": "L171", + "platformId": "U408Z2", + "id": "3adc6e0e-6b6a-448e-ae21-9b3dd1ee146b" + }, + { + "routeId": "L209", + "platformId": "U408Z2", + "id": "f5d32673-5291-42f6-8e57-8f83aa7becfc" + }, + { + "routeId": "L177", + "platformId": "U409Z1", + "id": "adb577c3-92a4-42cb-b8ae-e8657f1cfc78" + }, + { + "routeId": "L901", + "platformId": "U409Z1", + "id": "dd6a18cc-77c8-41b3-8eb1-f1428f472e9d" + }, + { + "routeId": "L906", + "platformId": "U409Z1", + "id": "55a67424-d5bc-46e8-a5b9-d36687319048" + }, + { + "routeId": "L177", + "platformId": "U409Z2", + "id": "1a790a6d-9874-45bf-b875-e3099caefcd7" + }, + { + "routeId": "L901", + "platformId": "U409Z2", + "id": "8ef67d92-b5e5-4eff-b605-d1a68db44d78" + }, + { + "routeId": "L906", + "platformId": "U409Z2", + "id": "3ae28cdd-f04a-494c-a096-31aa95bad8e5" + }, + { + "routeId": "L20", + "platformId": "U40Z1", + "id": "0ff4dabb-de11-441c-8959-cde25d53fb59" + }, + { + "routeId": "L26", + "platformId": "U40Z1", + "id": "e073eaf7-87fa-42ca-8c59-67f1c6dcc2ce" + }, + { + "routeId": "L91", + "platformId": "U40Z1", + "id": "86fa7c32-938c-485e-a0a2-6b3c09f27dac" + }, + { + "routeId": "L20", + "platformId": "U40Z2", + "id": "c9b4492e-b5aa-42df-91cf-b2ca12236ba2" + }, + { + "routeId": "L26", + "platformId": "U40Z2", + "id": "d6a53787-c425-4317-b6c8-77ac0f8ad853" + }, + { + "routeId": "L91", + "platformId": "U40Z2", + "id": "43c3b313-b8f3-49df-87ea-3d310b4af458" + }, + { + "routeId": "L1805", + "platformId": "U4100Z11", + "id": "856ffdb2-b824-4ca5-a035-3b602d81209c" + }, + { + "routeId": "L371", + "platformId": "U4101Z1", + "id": "b474cb06-0cec-40aa-af7f-5969c92d62b8" + }, + { + "routeId": "L374", + "platformId": "U4101Z1", + "id": "2e583af9-ad84-42d3-b710-f5afa3d64b69" + }, + { + "routeId": "L958", + "platformId": "U4101Z1", + "id": "f839f632-5df2-4ebf-b4a4-e8989353beef" + }, + { + "routeId": "L371", + "platformId": "U4101Z2", + "id": "fd0c3f78-28bf-4f22-8f1e-888680b1448d" + }, + { + "routeId": "L374", + "platformId": "U4101Z2", + "id": "8830f81d-9f2d-4954-a002-32237aef226c" + }, + { + "routeId": "L958", + "platformId": "U4101Z2", + "id": "5c949ea3-5629-4743-8c17-8555518ef5bc" + }, + { + "routeId": "L306", + "platformId": "U4103Z1", + "id": "87f16159-7139-45c0-adfd-774a6842a921" + }, + { + "routeId": "L429", + "platformId": "U4103Z1", + "id": "f1824de3-c9a9-4cbe-8e4a-a0cec4fdffe7" + }, + { + "routeId": "L306", + "platformId": "U4103Z2", + "id": "682b205d-ea2c-47b9-b8e8-dff30fb35b17" + }, + { + "routeId": "L429", + "platformId": "U4103Z2", + "id": "9dd4a2e6-f7ea-4254-8500-407ce6d5fe1e" + }, + { + "routeId": "L1354", + "platformId": "U4103Z301", + "id": "aa23f61f-f7fe-42a5-a937-7066e40dc2be" + }, + { + "routeId": "L2254", + "platformId": "U4103Z401", + "id": "1496018f-f853-4233-9d0c-a457f92550fd" + }, + { + "routeId": "L2254", + "platformId": "U4103Z402", + "id": "6b984c74-7d9f-4992-8972-7323c0e8f37e" + }, + { + "routeId": "L212", + "platformId": "U4107Z1", + "id": "e79c298b-77d9-4f5f-9279-3e068af250cc" + }, + { + "routeId": "L208", + "platformId": "U4108Z1", + "id": "785d85f8-7fb9-49c4-9770-857f65205c94" + }, + { + "routeId": "L208", + "platformId": "U4108Z2", + "id": "b592afca-16b7-40a0-9009-efcecba4bda4" + }, + { + "routeId": "L162", + "platformId": "U410Z1", + "id": "307fe216-8d35-45dd-9276-b8839656e4e8" + }, + { + "routeId": "L913", + "platformId": "U410Z1", + "id": "bd1d4a9c-174b-4bdb-b062-3cf19b696a27" + }, + { + "routeId": "L365", + "platformId": "U4110Z1", + "id": "5fc7902f-1074-4e6a-839e-48dc7174f21c" + }, + { + "routeId": "L629", + "platformId": "U4110Z1", + "id": "8012c777-d7de-4c28-abc1-06eb326291bb" + }, + { + "routeId": "L365", + "platformId": "U4110Z2", + "id": "db50ab3a-5911-4d1f-87ee-0748cb0dbdd9" + }, + { + "routeId": "L629", + "platformId": "U4110Z2", + "id": "4f19f06e-8300-4b0a-a6f1-8bfa5fd05817" + }, + { + "routeId": "L629", + "platformId": "U4111Z1", + "id": "e071991c-ecd6-4a92-ae05-1226de28a90d" + }, + { + "routeId": "L629", + "platformId": "U4111Z2", + "id": "57f574e4-267a-4226-98f6-cef15f02e522" + }, + { + "routeId": "L629", + "platformId": "U4112Z1", + "id": "06b54acb-3057-4c94-baaf-698c5d793315" + }, + { + "routeId": "L629", + "platformId": "U4112Z2", + "id": "11657b70-a6ea-430f-b0bc-7de516010165" + }, + { + "routeId": "L629", + "platformId": "U4113Z1", + "id": "06ed6792-a12a-4c90-b750-531db6204d30" + }, + { + "routeId": "L629", + "platformId": "U4113Z2", + "id": "6e22df82-3555-4caa-a81a-e223e83ac733" + }, + { + "routeId": "L629", + "platformId": "U4114Z1", + "id": "47f5e597-81d1-4f96-ab81-235d1a32f946" + }, + { + "routeId": "L629", + "platformId": "U4114Z2", + "id": "fa330bd2-4d81-4d1d-8b15-646eeadf67b5" + }, + { + "routeId": "L303", + "platformId": "U4115Z1", + "id": "7a60983a-78c1-4be8-aeba-c4995d8c4aa2" + }, + { + "routeId": "L303", + "platformId": "U4115Z2", + "id": "e270d1f4-6091-468a-94f1-99d4a0b9f386" + }, + { + "routeId": "L240", + "platformId": "U4117Z1", + "id": "ef09db8d-2c21-4ac7-9796-7319f217ee61" + }, + { + "routeId": "L240", + "platformId": "U4117Z2", + "id": "aae271a7-41bb-4b3e-839a-795732a75205" + }, + { + "routeId": "L306", + "platformId": "U4119Z1", + "id": "379d261e-ba0c-42c7-a1ca-22917d02a3b9" + }, + { + "routeId": "L306", + "platformId": "U4119Z2", + "id": "c97ed822-32dc-45ef-b043-375dc21ee926" + }, + { + "routeId": "L202", + "platformId": "U411Z1", + "id": "52aa4a66-f81b-4261-998f-61b834813599" + }, + { + "routeId": "L202", + "platformId": "U411Z2", + "id": "b1d48630-71eb-4c77-9302-76d04f4c8855" + }, + { + "routeId": "L335", + "platformId": "U4120Z1", + "id": "5d609347-cac1-493a-b11b-27872e00ddf7" + }, + { + "routeId": "L434", + "platformId": "U4123Z1", + "id": "9528ee7b-922a-4240-8b68-3545a24bb057" + }, + { + "routeId": "L430", + "platformId": "U4123Z1", + "id": "0553f39f-91a0-43b1-9d76-48b22884d5f1" + }, + { + "routeId": "L432", + "platformId": "U4123Z1", + "id": "944197be-87c6-4cfd-b2a9-79b1941721c1" + }, + { + "routeId": "L434", + "platformId": "U4123Z2", + "id": "c062300d-c3f9-4629-ab0d-95ef22c29eb0" + }, + { + "routeId": "L430", + "platformId": "U4123Z2", + "id": "07195e06-562f-44e2-91f8-56c76261dcc7" + }, + { + "routeId": "L432", + "platformId": "U4123Z2", + "id": "8192b74a-d185-46c6-a453-02014b806660" + }, + { + "routeId": "L533", + "platformId": "U4124Z1", + "id": "985633b9-3c12-4de0-a0d2-dab6f5d5ef4c" + }, + { + "routeId": "L533", + "platformId": "U4124Z2", + "id": "bf7105da-9bf6-4baa-8088-e60024d25540" + }, + { + "routeId": "L1219", + "platformId": "U4124Z301", + "id": "f841538e-0586-4e95-b2f9-45d26cf20364" + }, + { + "routeId": "L1218", + "platformId": "U4124Z301", + "id": "d2d414ee-3d13-472d-8cc7-6c1f96d4ee95" + }, + { + "routeId": "L1310", + "platformId": "U4124Z301", + "id": "f7267658-9c55-4d14-a898-3a869216bc96" + }, + { + "routeId": "L398", + "platformId": "U4125Z1", + "id": "6eedff97-9991-4c8d-8abd-5ec33b6a3206" + }, + { + "routeId": "L423", + "platformId": "U4126Z1", + "id": "7d034f5b-48cb-4573-bac6-3b69397d7357" + }, + { + "routeId": "L686", + "platformId": "U4126Z1", + "id": "7e5bf315-11d0-4481-b075-1f7748583325" + }, + { + "routeId": "L306", + "platformId": "U4127Z1", + "id": "67fa711b-e6eb-46c7-86fe-35488ee55e19" + }, + { + "routeId": "L306", + "platformId": "U4127Z2", + "id": "cb13c2d1-585e-48bf-98d0-cb6e4ba7a03d" + }, + { + "routeId": "L102", + "platformId": "U4128Z1", + "id": "d946291c-23fb-465f-b4b2-32b5063be24c" + }, + { + "routeId": "L166", + "platformId": "U4128Z1", + "id": "caf8f8be-7880-41d8-8391-f3ac347da6cc" + }, + { + "routeId": "L102", + "platformId": "U4128Z2", + "id": "902eed3c-0ab5-4719-9007-6cf8a23219ba" + }, + { + "routeId": "L166", + "platformId": "U4128Z2", + "id": "ad01e418-4cbc-4051-a4c8-fc373f9a4940" + }, + { + "routeId": "L102", + "platformId": "U4129Z1", + "id": "82974775-335a-4975-a3c0-848863043679" + }, + { + "routeId": "L166", + "platformId": "U4129Z1", + "id": "60e92ac9-4a11-46a0-82b4-732a5f484ea8" + }, + { + "routeId": "L102", + "platformId": "U4129Z2", + "id": "9ae89360-6912-437b-989d-5c7d3025646d" + }, + { + "routeId": "L166", + "platformId": "U4129Z2", + "id": "b9d64f8d-acfc-4e46-817a-709e3dc98775" + }, + { + "routeId": "L106", + "platformId": "U412Z1", + "id": "b6916a9e-70cb-4e15-a83a-9644f5b57ab0" + }, + { + "routeId": "L121", + "platformId": "U412Z1", + "id": "9522f4e9-353d-4657-a13f-5b326ea6cf5e" + }, + { + "routeId": "L106", + "platformId": "U412Z2", + "id": "ec4c51c4-5b43-472d-9c93-df515846650c" + }, + { + "routeId": "L121", + "platformId": "U412Z2", + "id": "b69191ef-1294-46d8-8457-de40d2169dc4" + }, + { + "routeId": "L166", + "platformId": "U4130Z1", + "id": "1a14bced-a2fd-4d91-bc0b-22520bb3b80c" + }, + { + "routeId": "L166", + "platformId": "U4130Z2", + "id": "034c02fa-ae28-4fdc-98e0-61e07aadc952" + }, + { + "routeId": "L209", + "platformId": "U4132Z1", + "id": "94a588cf-3376-4926-a145-1ace01a3227c" + }, + { + "routeId": "L376", + "platformId": "U4132Z1", + "id": "e8dc2571-a4ed-4075-97f3-7673853e4160" + }, + { + "routeId": "L209", + "platformId": "U4132Z2", + "id": "2bfd2139-7ba7-4eaf-8698-358af63d18c5" + }, + { + "routeId": "L203", + "platformId": "U4133Z1", + "id": "3149c7cb-ba87-4fbd-98a5-b191f6dd832d" + }, + { + "routeId": "L491", + "platformId": "U4134Z1", + "id": "fd9aa979-728c-49d0-8192-441215616e34" + }, + { + "routeId": "L491", + "platformId": "U4134Z2", + "id": "b4d11f19-f3ec-4543-9a23-60f8dfd21089" + }, + { + "routeId": "L212", + "platformId": "U4136Z1", + "id": "014ecb4e-19ec-4574-a093-45833f854431" + }, + { + "routeId": "L212", + "platformId": "U4136Z2", + "id": "35dcc543-e17d-4bd2-be63-8f9e628c410f" + }, + { + "routeId": "L212", + "platformId": "U4137Z1", + "id": "4ec68209-5182-49fe-a13f-5ba25103610f" + }, + { + "routeId": "L212", + "platformId": "U4137Z2", + "id": "1d802886-1f4b-42d5-8988-057d56e54c51" + }, + { + "routeId": "L434", + "platformId": "U4138Z1", + "id": "f1f2cd47-e2f4-492f-ac60-85be46fe4780" + }, + { + "routeId": "L434", + "platformId": "U4138Z2", + "id": "cffee438-1649-4750-b6f5-680f49b6a9e5" + }, + { + "routeId": "L432", + "platformId": "U4138Z51", + "id": "042e4ac4-3db9-4de7-a693-dc8228e98f6e" + }, + { + "routeId": "L432", + "platformId": "U4138Z52", + "id": "dfb2a989-5f66-44be-964a-a1f56da2c5bd" + }, + { + "routeId": "L1365", + "platformId": "U4139Z301", + "id": "d01ff00f-22b4-4af0-ac57-1f8a61be7c40" + }, + { + "routeId": "L124", + "platformId": "U413Z1", + "id": "d12c8a84-1ee9-4cb8-871c-a7448998717d" + }, + { + "routeId": "L135", + "platformId": "U413Z1", + "id": "d8bca383-aa70-4479-b5d0-b09652278598" + }, + { + "routeId": "L139", + "platformId": "U413Z1", + "id": "cc3e9b54-8450-4367-ad9e-718ac1f81d89" + }, + { + "routeId": "L124", + "platformId": "U413Z2", + "id": "62728e44-9712-404e-be3d-7812babe0374" + }, + { + "routeId": "L135", + "platformId": "U413Z2", + "id": "e32766e5-9cd2-4228-bcd0-745acf5e45de" + }, + { + "routeId": "L139", + "platformId": "U413Z2", + "id": "dffc644a-bc8b-4efb-8788-fcd01ff845be" + }, + { + "routeId": "L633", + "platformId": "U4140Z1", + "id": "d53d0f43-8d38-475c-b3d3-8328f3e74881" + }, + { + "routeId": "L347", + "platformId": "U4141Z1", + "id": "d25a6cb8-0301-4f67-b65b-aa3cf440cbdf" + }, + { + "routeId": "L347", + "platformId": "U4141Z2", + "id": "9ceca5cc-6267-42d1-b7e8-eae247f9ca6b" + }, + { + "routeId": "L1365", + "platformId": "U4141Z301", + "id": "ab51057e-0c95-4745-9e83-b0101be91665" + }, + { + "routeId": "L1226", + "platformId": "U4142Z301", + "id": "6012e20c-db5e-4a7c-8158-da33571b297b" + }, + { + "routeId": "L1306", + "platformId": "U4142Z301", + "id": "e369d370-f4f1-4ee2-9cdf-4e5e87060053" + }, + { + "routeId": "L1226", + "platformId": "U4143Z301", + "id": "58ded623-8f15-475e-9537-7368c65297de" + }, + { + "routeId": "L1306", + "platformId": "U4143Z301", + "id": "94dceb3b-6683-44de-800c-3d1fce117c33" + }, + { + "routeId": "L399", + "platformId": "U4145Z1", + "id": "81976297-b3a2-424b-b99a-995034b298e1" + }, + { + "routeId": "L399", + "platformId": "U4145Z2", + "id": "7ee88abe-f5d8-44ee-87e9-16c427740f26" + }, + { + "routeId": "L1380", + "platformId": "U4146Z301", + "id": "c5f46d41-f1af-40ee-8424-72357869f5be" + }, + { + "routeId": "L1343", + "platformId": "U4147Z301", + "id": "ab0ac1a3-694f-4937-993a-cd9210b2bdd9" + }, + { + "routeId": "L424", + "platformId": "U4148Z1", + "id": "67019178-e4d8-46d9-93f7-796edcf8ac88" + }, + { + "routeId": "L421", + "platformId": "U4148Z1", + "id": "56102c3c-9a87-4239-8309-89d415b4fdc3" + }, + { + "routeId": "L424", + "platformId": "U4148Z2", + "id": "bc511ade-6c47-4926-8ac5-d53d8d93b4c8" + }, + { + "routeId": "L421", + "platformId": "U4148Z2", + "id": "135479e5-b902-420f-bd97-38f52495c21e" + }, + { + "routeId": "L1311", + "platformId": "U4148Z301", + "id": "03dc40dd-ff41-43fb-bd13-3127f785842c" + }, + { + "routeId": "L116", + "platformId": "U414Z1", + "id": "85c16984-509f-4c1e-b6bb-7e93da917f08" + }, + { + "routeId": "L116", + "platformId": "U414Z2", + "id": "84035793-e6ff-44c4-ab29-82e826b23fb8" + }, + { + "routeId": "L1343", + "platformId": "U4150Z301", + "id": "9b74fb65-11ab-41d9-8ccd-c307c2b4752c" + }, + { + "routeId": "L1380", + "platformId": "U4151Z301", + "id": "cc226b27-6afe-4883-978d-f349797887f9" + }, + { + "routeId": "L616", + "platformId": "U4153Z1", + "id": "004d6df2-f8d4-4ff8-8066-36e563e84967" + }, + { + "routeId": "L616", + "platformId": "U4153Z2", + "id": "62713a06-5529-414c-8c86-597289b39530" + }, + { + "routeId": "L1343", + "platformId": "U4154Z301", + "id": "e718f783-f2c6-4d91-b591-78d8233e4d6b" + }, + { + "routeId": "L1380", + "platformId": "U4155Z301", + "id": "971b04f4-1bae-4db6-a611-a83c8bad11ae" + }, + { + "routeId": "L461", + "platformId": "U4158Z1", + "id": "671da1cf-2877-4dfc-b24c-b13a7c5009ed" + }, + { + "routeId": "L461", + "platformId": "U4158Z2", + "id": "840202a5-2ef2-45a1-bea9-30d195dae1c4" + }, + { + "routeId": "L419", + "platformId": "U4159Z1", + "id": "64a0c486-2740-4a47-a167-59d019d02873" + }, + { + "routeId": "L951", + "platformId": "U4159Z1", + "id": "e4ddfd57-007d-4320-8f68-7e1a6ea0f2b6" + }, + { + "routeId": "L419", + "platformId": "U4159Z2", + "id": "7b7767c6-ee81-448c-859f-4301054e04e7" + }, + { + "routeId": "L951", + "platformId": "U4159Z2", + "id": "945d9cf9-344b-4af0-b5fd-bd7f76aec403" + }, + { + "routeId": "L118", + "platformId": "U415Z1", + "id": "cd77fc92-20a0-4f9f-91da-1b1befa6090f" + }, + { + "routeId": "L170", + "platformId": "U415Z1", + "id": "54526d55-aaa3-4855-aba3-ab6be2c958c5" + }, + { + "routeId": "L138", + "platformId": "U415Z1", + "id": "29320abb-2d90-411a-b539-b24f0e43d2c7" + }, + { + "routeId": "L139", + "platformId": "U415Z1", + "id": "6398f244-aec2-4b6e-8967-0da70e13bebc" + }, + { + "routeId": "L150", + "platformId": "U415Z1", + "id": "1736c133-8ba9-46de-956b-98bbc64abb6d" + }, + { + "routeId": "L193", + "platformId": "U415Z1", + "id": "822a78b6-ea06-471b-98c1-d5b97d7b39b3" + }, + { + "routeId": "L905", + "platformId": "U415Z1", + "id": "89bcec73-903f-42db-93cd-6ee357157902" + }, + { + "routeId": "L910", + "platformId": "U415Z1", + "id": "0026789d-d07a-43b0-b8b7-1425a4454ddf" + }, + { + "routeId": "L956", + "platformId": "U415Z1", + "id": "be1b52a3-9c74-489a-9dda-153af289db01" + }, + { + "routeId": "L960", + "platformId": "U415Z1", + "id": "90892cbc-c253-45a9-89f6-879cff745a4f" + }, + { + "routeId": "L139", + "platformId": "U415Z2", + "id": "4f979281-fd6c-4bee-a861-4b103992451b" + }, + { + "routeId": "L150", + "platformId": "U415Z2", + "id": "ec491013-d53c-4869-be71-b4cb724e9bf7" + }, + { + "routeId": "L193", + "platformId": "U415Z2", + "id": "37e2a3b0-68be-4a33-97cd-73d8ecc0b8fc" + }, + { + "routeId": "L910", + "platformId": "U415Z2", + "id": "67354bcb-8f5d-42ed-9e1a-f8f14c0f060e" + }, + { + "routeId": "L1222", + "platformId": "U4160Z301", + "id": "dbb40464-55d1-4533-9c6d-2e60665d15b6" + }, + { + "routeId": "L1331", + "platformId": "U4160Z301", + "id": "c62dccf1-90bc-4530-aea0-99e78a4b1eb5" + }, + { + "routeId": "L1321", + "platformId": "U4160Z301", + "id": "02bdce89-a0f2-441a-9e74-5838cff11758" + }, + { + "routeId": "L1321", + "platformId": "U4161Z301", + "id": "362d69c9-8ff2-44e6-af98-7242fe7f64ed" + }, + { + "routeId": "L538", + "platformId": "U4163Z1", + "id": "427911d5-aa6a-4f27-aafb-21e8f4819136" + }, + { + "routeId": "L538", + "platformId": "U4163Z2", + "id": "102fe15c-8477-44f5-aa6d-abc0413e97f6" + }, + { + "routeId": "L1321", + "platformId": "U4163Z301", + "id": "c7eff223-b3a7-462d-9045-f31b79f239c7" + }, + { + "routeId": "L1321", + "platformId": "U4164Z301", + "id": "eb598e7b-1472-4e05-9e30-585c78f92d79" + }, + { + "routeId": "L1219", + "platformId": "U4165Z301", + "id": "94cdd74f-bf79-4798-9714-08ff633e3b6e" + }, + { + "routeId": "L1218", + "platformId": "U4165Z301", + "id": "84f42c27-d176-4067-b679-8c3c5f664712" + }, + { + "routeId": "L1310", + "platformId": "U4165Z301", + "id": "31817cd2-5b90-465b-a1ee-f1cdf97aa0c1" + }, + { + "routeId": "L1219", + "platformId": "U4166Z301", + "id": "d82a1c12-c4c0-47af-b959-110f714ffd48" + }, + { + "routeId": "L1218", + "platformId": "U4166Z301", + "id": "df32f6e1-5f25-40c4-947a-d28705dd29c0" + }, + { + "routeId": "L1310", + "platformId": "U4166Z301", + "id": "80e6b2f1-d034-4001-8cd1-efe818a3b544" + }, + { + "routeId": "L444", + "platformId": "U4167Z1", + "id": "7689de71-4680-46ed-a036-d6a5e39ee3b6" + }, + { + "routeId": "L444", + "platformId": "U4167Z2", + "id": "bfaf0ea5-0fb2-4bdc-83ad-02bc320e027b" + }, + { + "routeId": "L311", + "platformId": "U4168Z1", + "id": "f6c78af6-91db-44c0-b322-1ae0d34809c6" + }, + { + "routeId": "L191", + "platformId": "U416Z1", + "id": "5f6f04cf-635a-48b0-b71d-bebfa52d6dd9" + }, + { + "routeId": "L910", + "platformId": "U416Z1", + "id": "72565e65-6fcc-4b96-b4e7-40f17eb8eed0" + }, + { + "routeId": "L322", + "platformId": "U416Z1", + "id": "fef33b55-a8ae-4975-bbbf-a7a9f86deabc" + }, + { + "routeId": "L324", + "platformId": "U416Z1", + "id": "ba9d8e91-4a79-42a7-99a8-9f51550e65dd" + }, + { + "routeId": "L342", + "platformId": "U416Z1", + "id": "4d3c132d-9c94-4d9a-9bed-08c375d43ccf" + }, + { + "routeId": "L429", + "platformId": "U416Z1", + "id": "7bb4f00a-9d18-4898-bcea-2e46ee4302e6" + }, + { + "routeId": "L323", + "platformId": "U416Z1", + "id": "5e9b6f9b-8f4c-42fb-a0ea-8e8314990a60" + }, + { + "routeId": "L191", + "platformId": "U416Z2", + "id": "a7cc9d48-aa92-48b9-b95c-f389d0e81535" + }, + { + "routeId": "L910", + "platformId": "U416Z2", + "id": "ed181808-c4aa-48a7-b381-d5b6da10fc6b" + }, + { + "routeId": "L322", + "platformId": "U416Z2", + "id": "fd7a359a-edc4-4f4f-b92f-2e3f143f4968" + }, + { + "routeId": "L324", + "platformId": "U416Z2", + "id": "ae613b9c-858c-439f-a84d-95a6ed2bcaeb" + }, + { + "routeId": "L342", + "platformId": "U416Z2", + "id": "217b0e7a-c71a-425c-abd0-88125bd0ae39" + }, + { + "routeId": "L429", + "platformId": "U416Z2", + "id": "cf90cc31-a3d9-41a9-8bb3-884f0c1ab2eb" + }, + { + "routeId": "L323", + "platformId": "U416Z2", + "id": "b55ed1c2-a8a6-44fd-b240-23d55b9b3d3d" + }, + { + "routeId": "L220", + "platformId": "U4170Z1", + "id": "68708d40-7422-4982-92a8-566d1ec34108" + }, + { + "routeId": "L212", + "platformId": "U4171Z2", + "id": "dc856c4d-e4f3-4a60-862b-ee9391c87937" + }, + { + "routeId": "L159", + "platformId": "U4172Z1", + "id": "00fdd86d-0d83-4f9d-b4b1-16f571830eee" + }, + { + "routeId": "L159", + "platformId": "U4172Z2", + "id": "04f44eca-f226-4bd0-b17b-def78d04aa56" + }, + { + "routeId": "L203", + "platformId": "U4174Z1", + "id": "4adcf173-0b25-4a13-80cc-9883ddc947dd" + }, + { + "routeId": "L203", + "platformId": "U4174Z2", + "id": "19e53f6a-91f7-4be2-88c2-15a8a35d8534" + }, + { + "routeId": "L332", + "platformId": "U4176Z1", + "id": "f14866c6-5ca4-46bc-8db3-eaf86a94323f" + }, + { + "routeId": "L331", + "platformId": "U4176Z1", + "id": "9a75944c-8102-4359-8f7f-d50e5924b469" + }, + { + "routeId": "L956", + "platformId": "U4176Z1", + "id": "3279e284-a60c-48d8-a4c4-41d41e89a390" + }, + { + "routeId": "L337", + "platformId": "U4176Z1", + "id": "40208fcb-b8b5-4677-bb35-987b969a0e17" + }, + { + "routeId": "L335", + "platformId": "U4176Z1", + "id": "f1b489f6-846d-41bb-9b65-dfa7e10d0ef4" + }, + { + "routeId": "L339", + "platformId": "U4176Z1", + "id": "fd416fa3-8106-4064-a738-e48b95bd8a9c" + }, + { + "routeId": "L331", + "platformId": "U4176Z2", + "id": "39297af1-e16c-4b90-960c-d99ae2670560" + }, + { + "routeId": "L332", + "platformId": "U4176Z2", + "id": "c89a1ef0-bba7-401a-a52c-54fc1b5eaeb2" + }, + { + "routeId": "L956", + "platformId": "U4176Z2", + "id": "0c4b20e4-fe33-4c4c-9c15-d17831f5ea30" + }, + { + "routeId": "L337", + "platformId": "U4176Z2", + "id": "e6391110-468a-4a52-a5b8-2317a2a92c90" + }, + { + "routeId": "L335", + "platformId": "U4176Z2", + "id": "fa6278a3-cc31-47e3-8651-c757827fa643" + }, + { + "routeId": "L339", + "platformId": "U4176Z2", + "id": "c0317fc7-c747-4064-8a19-217b1dc5b522" + }, + { + "routeId": "L331", + "platformId": "U4178Z1", + "id": "53e44994-7758-4634-b716-8e1f2086c69c" + }, + { + "routeId": "L331", + "platformId": "U4178Z2", + "id": "c863f96b-d2f6-4282-a0e7-d27472dae22e" + }, + { + "routeId": "L443", + "platformId": "U4179Z1", + "id": "66cb3579-95be-4e50-b148-4c7a44a1cb0b" + }, + { + "routeId": "L662", + "platformId": "U4179Z1", + "id": "473203c4-102b-491e-b50a-12171d577705" + }, + { + "routeId": "L443", + "platformId": "U4179Z2", + "id": "486f4176-83ad-4aec-8467-d4bbed7162a5" + }, + { + "routeId": "L662", + "platformId": "U4179Z2", + "id": "5c47fe92-3ecc-4cf1-b73a-1a639c3af0ad" + }, + { + "routeId": "L170", + "platformId": "U417Z1", + "id": "6e6ed93a-6331-4a17-8c9e-30532134d03c" + }, + { + "routeId": "L135", + "platformId": "U417Z1", + "id": "ee107210-715e-447c-a551-50f29fb9983e" + }, + { + "routeId": "L136", + "platformId": "U417Z1", + "id": "e060d4c0-ca2a-4e14-ad39-f0119bef8fcc" + }, + { + "routeId": "L213", + "platformId": "U417Z1", + "id": "9ea73ce0-e6e3-40e9-aedd-d44cd8a39276" + }, + { + "routeId": "L905", + "platformId": "U417Z1", + "id": "c30b0284-45f7-4587-9c1d-d1b2ff7a1253" + }, + { + "routeId": "L913", + "platformId": "U417Z1", + "id": "e4e3c129-c20e-43ed-bc89-6375e9636169" + }, + { + "routeId": "L312", + "platformId": "U4181Z1", + "id": "35040885-4f84-4a46-9ecf-511d68e25041" + }, + { + "routeId": "L312", + "platformId": "U4181Z2", + "id": "9242dd04-4625-4ff2-8af1-765275b35298" + }, + { + "routeId": "L633", + "platformId": "U4182Z1", + "id": "f9116f2a-8194-4a37-913a-54a3ada0dbe6" + }, + { + "routeId": "L425", + "platformId": "U4182Z1", + "id": "0f6eeca9-3896-454d-9935-ff2aaef29ae4" + }, + { + "routeId": "L633", + "platformId": "U4182Z2", + "id": "dd272c96-f7fd-4cfa-afc6-5ce105b6804a" + }, + { + "routeId": "L425", + "platformId": "U4182Z2", + "id": "942fc0dd-1add-4584-86c6-75d9f9a5ceb8" + }, + { + "routeId": "L752", + "platformId": "U4183Z1", + "id": "caedc12b-fcfd-480c-af8e-74226b13cf14" + }, + { + "routeId": "L752", + "platformId": "U4183Z2", + "id": "8bb28833-5108-4990-81ae-7b12ba3ee8ec" + }, + { + "routeId": "L1222", + "platformId": "U4184Z301", + "id": "cbef1acf-4098-43aa-bc56-87bf698b4ffd" + }, + { + "routeId": "L1331", + "platformId": "U4184Z301", + "id": "b371f763-765e-47bd-bb56-dffa288cd3ee" + }, + { + "routeId": "L1365", + "platformId": "U4185Z301", + "id": "574c6416-3e84-4321-84cc-651bf191def4" + }, + { + "routeId": "L1223", + "platformId": "U4186Z301", + "id": "9b6af0a0-0fdf-4f77-9211-800101b8ec96" + }, + { + "routeId": "L1332", + "platformId": "U4186Z301", + "id": "332cdd5e-199f-4095-87a2-34c791cdd5ca" + }, + { + "routeId": "L747", + "platformId": "U4188Z1", + "id": "02fbd97c-74fb-4c9d-85af-283353c8b68d" + }, + { + "routeId": "L747", + "platformId": "U4188Z2", + "id": "b2071fa6-d26e-4764-93c2-62eb317ad57c" + }, + { + "routeId": "L350", + "platformId": "U4189Z1", + "id": "530304e5-9d3a-4eed-94ca-b2f50855a8a0" + }, + { + "routeId": "L133", + "platformId": "U418Z1", + "id": "4b063c03-b8fb-4384-87fd-0418af4780a5" + }, + { + "routeId": "L199", + "platformId": "U418Z1", + "id": "1bfd9c76-5ea2-464e-b8eb-bb615c943593" + }, + { + "routeId": "L188", + "platformId": "U418Z1", + "id": "64b94dad-24be-4142-9b0e-25e01879adc3" + }, + { + "routeId": "L908", + "platformId": "U418Z1", + "id": "1471a561-01c6-4759-94af-6f6ce5541c28" + }, + { + "routeId": "L909", + "platformId": "U418Z1", + "id": "ccce64a0-6beb-4f22-ab1f-6c902da6a425" + }, + { + "routeId": "L133", + "platformId": "U418Z2", + "id": "6300579a-8f63-4e47-96d4-e8932d8b57f7" + }, + { + "routeId": "L199", + "platformId": "U418Z2", + "id": "81243718-5df1-429e-b353-22c972bafa47" + }, + { + "routeId": "L188", + "platformId": "U418Z2", + "id": "500b6f17-b09b-4279-8be9-c1264575abdb" + }, + { + "routeId": "L908", + "platformId": "U418Z2", + "id": "aca3297f-85de-4867-8d8e-216d6f083091" + }, + { + "routeId": "L909", + "platformId": "U418Z2", + "id": "e09d1446-b09f-498a-8842-a01fc9f48790" + }, + { + "routeId": "L316", + "platformId": "U4190Z1", + "id": "9bd4e811-d335-4d6e-89c4-ba56fd6d0b4f" + }, + { + "routeId": "L457", + "platformId": "U4190Z1", + "id": "dd87d507-9bb6-40c3-801d-489360a5818d" + }, + { + "routeId": "L620", + "platformId": "U4190Z1", + "id": "9e55523e-1383-4311-9e32-5b06bea2c9c5" + }, + { + "routeId": "L316", + "platformId": "U4190Z2", + "id": "8734eaa6-814d-4336-906a-d82b969e23a5" + }, + { + "routeId": "L457", + "platformId": "U4190Z2", + "id": "d24efb0b-1dcb-4167-bde2-3464e4902bd4" + }, + { + "routeId": "L620", + "platformId": "U4190Z2", + "id": "7a309954-a3e4-4715-bedf-714c3f6fa84a" + }, + { + "routeId": "L180", + "platformId": "U4191Z1", + "id": "7c401f6d-e663-45d7-ada3-19f6f2d179b0" + }, + { + "routeId": "L180", + "platformId": "U4191Z2", + "id": "99a2bd66-68d9-428d-89af-749a0d1b54bc" + }, + { + "routeId": "L616", + "platformId": "U4193Z1", + "id": "dcf2f174-a6bf-4f81-8704-a9a9a97532be" + }, + { + "routeId": "L616", + "platformId": "U4193Z2", + "id": "dae34c10-1de9-4e54-9bf6-dd7c44cdf1fb" + }, + { + "routeId": "L386", + "platformId": "U4198Z1", + "id": "9fa94949-5eef-42a5-a5be-42460ba75ae5" + }, + { + "routeId": "L629", + "platformId": "U4198Z1", + "id": "61be2016-25e6-4538-a3a5-080cf8e650fa" + }, + { + "routeId": "L386", + "platformId": "U4198Z2", + "id": "58ee573d-6249-4f21-b06c-5b866d6c681b" + }, + { + "routeId": "L629", + "platformId": "U4198Z2", + "id": "a0fa62fe-d23c-4f56-aed2-2e41c1bbcc3c" + }, + { + "routeId": "L386", + "platformId": "U4199Z1", + "id": "a7f49b17-f36d-4227-a0ec-b80ec84253e0" + }, + { + "routeId": "L386", + "platformId": "U4199Z2", + "id": "5cdf5f6a-74fa-4078-87fe-581e3b2c6a97" + }, + { + "routeId": "L161", + "platformId": "U419Z1", + "id": "68a5b2f0-2bc7-4cc6-9a45-b857dab09023" + }, + { + "routeId": "L907", + "platformId": "U419Z1", + "id": "988edcbf-dced-4781-b833-5b172663a9f5" + }, + { + "routeId": "L312", + "platformId": "U419Z1", + "id": "9113a5c8-edc7-4d6f-abb3-96fc2ebc30f9" + }, + { + "routeId": "L161", + "platformId": "U419Z2", + "id": "c381086f-199c-4502-a1bd-c6bb6338daba" + }, + { + "routeId": "L907", + "platformId": "U419Z2", + "id": "02782c6f-13de-44ae-afd0-ad4b8362a498" + }, + { + "routeId": "L312", + "platformId": "U419Z2", + "id": "a4d90406-6eef-4f0b-ab6e-5db329b31e76" + }, + { + "routeId": "L318", + "platformId": "U4200Z1", + "id": "ffc30c04-527b-462c-a996-bed2769b5230" + }, + { + "routeId": "L318", + "platformId": "U4200Z2", + "id": "a8b43e2a-529c-42ab-9d25-216decf52c9b" + }, + { + "routeId": "L322", + "platformId": "U4203Z1", + "id": "049b50af-1b87-474c-957a-4371efcb90ee" + }, + { + "routeId": "L342", + "platformId": "U4203Z1", + "id": "35154fb6-b2d5-4335-af17-0c1337151fde" + }, + { + "routeId": "L323", + "platformId": "U4203Z1", + "id": "b2e3ccb5-61f3-4c8b-9b3b-22ef0f6d5fe8" + }, + { + "routeId": "L322", + "platformId": "U4203Z2", + "id": "ac69b8f6-e5a4-4bee-8033-cc849b1ea7a5" + }, + { + "routeId": "L342", + "platformId": "U4203Z2", + "id": "ab188604-f435-4ddf-a937-4b3dbe4de29b" + }, + { + "routeId": "L323", + "platformId": "U4203Z2", + "id": "104674fd-daeb-49f0-bebe-ed6e90095c91" + }, + { + "routeId": "L322", + "platformId": "U4204Z1", + "id": "3041a8bc-7b7a-4331-823c-0a9c5b325d7d" + }, + { + "routeId": "L322", + "platformId": "U4204Z2", + "id": "2d20f573-50ff-4942-800a-208855a9be34" + }, + { + "routeId": "L312", + "platformId": "U4205Z1", + "id": "6fab2f71-100a-49ae-a466-7d29148d7532" + }, + { + "routeId": "L312", + "platformId": "U4205Z2", + "id": "5e177a2b-119d-4191-b835-a4fe119a7d1d" + }, + { + "routeId": "L422", + "platformId": "U4207Z1", + "id": "464b3541-7f5d-4c21-bc9c-1c2d7f594ce4" + }, + { + "routeId": "L422", + "platformId": "U4207Z2", + "id": "ae97ef57-d8e7-4f66-8783-534cb71a9446" + }, + { + "routeId": "L386", + "platformId": "U4208Z1", + "id": "9b7af664-6d8c-4208-9d86-f43481ad841e" + }, + { + "routeId": "L386", + "platformId": "U4208Z2", + "id": "0dfb1112-cf2c-4ec1-a1eb-54e081767742" + }, + { + "routeId": "L386", + "platformId": "U4211Z1", + "id": "b3f09c56-a6c0-4d44-b4c0-29689c95b66f" + }, + { + "routeId": "L386", + "platformId": "U4211Z2", + "id": "85e02e35-9e7d-4eb0-b166-a734eb73fed3" + }, + { + "routeId": "L386", + "platformId": "U4212Z1", + "id": "23dbedee-52da-4386-9ab6-7b67263ff9ca" + }, + { + "routeId": "L555", + "platformId": "U4212Z1", + "id": "733fcfea-ad4c-4a61-bb26-46b150cd58c8" + }, + { + "routeId": "L555", + "platformId": "U4212Z3", + "id": "05f7ec47-72c3-4e52-a6d4-e33ed93ba354" + }, + { + "routeId": "L555", + "platformId": "U4212Z4", + "id": "4095c534-2811-4a38-872b-1704a66193e7" + }, + { + "routeId": "L620", + "platformId": "U4213Z1", + "id": "0aefe088-dbd4-4441-b808-b3c174838dc9" + }, + { + "routeId": "L620", + "platformId": "U4214Z1", + "id": "d4689cae-7ce2-4620-a99c-fcbbadfea4d5" + }, + { + "routeId": "L620", + "platformId": "U4214Z2", + "id": "1c0ba913-7590-4efd-b1d0-b1d814d2bffe" + }, + { + "routeId": "L2240", + "platformId": "U4214Z401", + "id": "a11e2444-6567-4cbd-b0fc-045310ebac93" + }, + { + "routeId": "L2240", + "platformId": "U4214Z402", + "id": "8ba919cc-b7a7-4737-b68d-fffcbed64e60" + }, + { + "routeId": "L620", + "platformId": "U4215Z1", + "id": "90ce3beb-a938-4535-8bcd-c0b42b8e3578" + }, + { + "routeId": "L620", + "platformId": "U4215Z2", + "id": "b213082f-243c-43de-b792-e44af648af6d" + }, + { + "routeId": "L620", + "platformId": "U4216Z1", + "id": "bbd9c152-2810-4754-91c9-f9f2fc8a0f18" + }, + { + "routeId": "L620", + "platformId": "U4216Z2", + "id": "37fb55af-8f30-4b87-b655-ae462b5e3375" + }, + { + "routeId": "L314", + "platformId": "U421Z1", + "id": "76610efb-7078-4f8e-bd61-dcddf9d41f06" + }, + { + "routeId": "L360", + "platformId": "U421Z1", + "id": "d56934ab-3920-47f1-90c8-4b725248d9c7" + }, + { + "routeId": "L361", + "platformId": "U421Z1", + "id": "f410345f-df7b-4ac8-af2a-a5e467e45ea0" + }, + { + "routeId": "L390", + "platformId": "U421Z1", + "id": "6e8eee5f-85d3-4fa5-944f-14b8d3b932d1" + }, + { + "routeId": "L314", + "platformId": "U421Z2", + "id": "f42741b8-8741-4bb0-bc56-124c93706ba6" + }, + { + "routeId": "L360", + "platformId": "U421Z2", + "id": "2c9bf777-fcc2-4301-a3c1-a9d6c9f17b48" + }, + { + "routeId": "L361", + "platformId": "U421Z2", + "id": "8cf4314a-bdb8-4a1a-aaac-92b5fa2aae2d" + }, + { + "routeId": "L390", + "platformId": "U421Z2", + "id": "1a2067c0-08e8-4725-836c-21095b72f380" + }, + { + "routeId": "L316", + "platformId": "U4220Z1", + "id": "303c7bf1-9f71-41c7-b951-02589b542fed" + }, + { + "routeId": "L457", + "platformId": "U4220Z1", + "id": "e6327539-c375-48eb-9255-6c3612416011" + }, + { + "routeId": "L316", + "platformId": "U4220Z2", + "id": "1383d9c8-9030-4c4a-a5c7-b3c15914f894" + }, + { + "routeId": "L457", + "platformId": "U4220Z2", + "id": "ba82cb6e-083f-4a3b-92a9-d452e34b3614" + }, + { + "routeId": "L316", + "platformId": "U4221Z1", + "id": "19394842-6ce4-4acd-8ff9-11fe33bd5189" + }, + { + "routeId": "L457", + "platformId": "U4221Z1", + "id": "cb4ab9c6-d77e-410b-a4c9-6c541cd3b05b" + }, + { + "routeId": "L316", + "platformId": "U4221Z2", + "id": "a6b64f3b-0b35-41be-9541-04c098977958" + }, + { + "routeId": "L457", + "platformId": "U4221Z2", + "id": "f39892a0-2003-44c1-855e-623d24836c70" + }, + { + "routeId": "L316", + "platformId": "U4222Z1", + "id": "a2dbb6f1-b95a-4916-8199-98c300250e5a" + }, + { + "routeId": "L457", + "platformId": "U4222Z1", + "id": "2ccb6b4e-7952-442f-a38f-6c3155d2296f" + }, + { + "routeId": "L620", + "platformId": "U4222Z1", + "id": "1af1e6db-805e-443c-8c55-d6b02a50dc95" + }, + { + "routeId": "L316", + "platformId": "U4222Z2", + "id": "99bc9503-3fd2-4f34-b2fa-0cdbb2cecfba" + }, + { + "routeId": "L457", + "platformId": "U4222Z2", + "id": "c522d6bb-89ed-4cd3-a4cf-f80d5ce0aa7e" + }, + { + "routeId": "L620", + "platformId": "U4222Z2", + "id": "d22d0612-5120-4097-960c-0b354bd733af" + }, + { + "routeId": "L316", + "platformId": "U4223Z1", + "id": "fdd746a0-9c43-4f69-8367-7c89c81c8501" + }, + { + "routeId": "L457", + "platformId": "U4223Z1", + "id": "7008c1dc-63db-423f-892d-e4bd71a79db2" + }, + { + "routeId": "L620", + "platformId": "U4223Z1", + "id": "63357374-1c76-4b99-af21-6bbb66b7c691" + }, + { + "routeId": "L316", + "platformId": "U4223Z2", + "id": "de3f9798-b1c4-4c12-9efa-fff270e1c2d1" + }, + { + "routeId": "L457", + "platformId": "U4223Z2", + "id": "93ab2879-084a-4cd7-8d81-f0453b8627df" + }, + { + "routeId": "L620", + "platformId": "U4223Z2", + "id": "f5111867-a9b7-44e0-bfb9-ec4833b969a2" + }, + { + "routeId": "L316", + "platformId": "U4224Z1", + "id": "5fae4148-83be-450e-89e4-0e651d97aa0b" + }, + { + "routeId": "L457", + "platformId": "U4224Z1", + "id": "cf588674-8436-44d6-b512-3d0fbf3ece25" + }, + { + "routeId": "L620", + "platformId": "U4224Z1", + "id": "8fc355a4-a6c9-40d6-85e4-8bebcbfccc8c" + }, + { + "routeId": "L646", + "platformId": "U4224Z1", + "id": "6303886f-394e-460c-915f-c23c53f2e4a7" + }, + { + "routeId": "L316", + "platformId": "U4224Z2", + "id": "cf924a27-c7e7-434f-8729-6b0dd44f7897" + }, + { + "routeId": "L617", + "platformId": "U4224Z2", + "id": "00f307a3-5896-4126-86c0-b6311dcfacbc" + }, + { + "routeId": "L457", + "platformId": "U4224Z2", + "id": "d9554ac6-9d2e-456c-9edb-009e521cf7e9" + }, + { + "routeId": "L620", + "platformId": "U4224Z2", + "id": "f559d79e-f588-4d1a-a2e7-8a68ddfef176" + }, + { + "routeId": "L646", + "platformId": "U4224Z2", + "id": "6618f018-fe49-4149-9bbb-9d4a99f58f82" + }, + { + "routeId": "L617", + "platformId": "U4224Z3", + "id": "82c8e98a-43dd-46f9-bd85-00bbdb9675f3" + }, + { + "routeId": "L316", + "platformId": "U4225Z1", + "id": "046afa32-5323-413d-abb4-546ab3527b69" + }, + { + "routeId": "L457", + "platformId": "U4225Z1", + "id": "f712d882-63f2-4113-b237-a503d745f863" + }, + { + "routeId": "L620", + "platformId": "U4225Z1", + "id": "74b1fcdf-c16e-4958-ac7e-3772fd0f1fba" + }, + { + "routeId": "L316", + "platformId": "U4225Z2", + "id": "66f81321-1f1d-41df-a529-07c811c649ec" + }, + { + "routeId": "L457", + "platformId": "U4225Z2", + "id": "ccc47276-f046-4e93-a208-3b8f08261354" + }, + { + "routeId": "L620", + "platformId": "U4225Z2", + "id": "7097f01b-f184-4695-ba8a-876084b5308d" + }, + { + "routeId": "L316", + "platformId": "U4226Z1", + "id": "c564c5d0-242e-44e9-97b5-9a64886807b1" + }, + { + "routeId": "L457", + "platformId": "U4226Z1", + "id": "85bf93c9-4b1f-4a8d-890c-5b9fa83e596c" + }, + { + "routeId": "L620", + "platformId": "U4226Z1", + "id": "307e3993-17ab-4cdc-aefa-3d83ce5dca73" + }, + { + "routeId": "L316", + "platformId": "U4226Z2", + "id": "f45f054b-8bda-4c53-8b1c-5b4526834a71" + }, + { + "routeId": "L457", + "platformId": "U4226Z2", + "id": "a0309cb7-52df-43b2-89f5-1b6e3453b6cc" + }, + { + "routeId": "L620", + "platformId": "U4226Z2", + "id": "53023ba4-2fcf-4380-8360-8eade4fa313d" + }, + { + "routeId": "L617", + "platformId": "U4228Z1", + "id": "385ef23c-c08f-431e-b586-daf8fdb1549a" + }, + { + "routeId": "L617", + "platformId": "U4228Z2", + "id": "f1d4683a-4d35-426d-8238-a968de1180b4" + }, + { + "routeId": "L457", + "platformId": "U4229Z1", + "id": "754034b3-c3ac-4099-84dc-5c72202b23e8" + }, + { + "routeId": "L124", + "platformId": "U422Z1", + "id": "4b0ec029-d494-42f5-83dc-614e737237ec" + }, + { + "routeId": "L139", + "platformId": "U422Z1", + "id": "7d8ebc10-fac9-4b88-b71c-d33d2c2d801a" + }, + { + "routeId": "L150", + "platformId": "U422Z1", + "id": "25aacef7-b417-43ac-bd12-27d864834106" + }, + { + "routeId": "L124", + "platformId": "U422Z2", + "id": "9c212abd-6114-4c18-8ed3-6a6ea67ddf0e" + }, + { + "routeId": "L139", + "platformId": "U422Z2", + "id": "2ac262a3-0bcf-4c10-9557-55b972debfd2" + }, + { + "routeId": "L150", + "platformId": "U422Z2", + "id": "525cfa5f-8226-4d7a-b7cb-e9d1cdfef8d5" + }, + { + "routeId": "L457", + "platformId": "U4230Z1", + "id": "a78d4c27-4cb2-472b-b373-5823660db173" + }, + { + "routeId": "L457", + "platformId": "U4236Z1", + "id": "79fe98ed-0e11-4307-a912-3624b11fcee7" + }, + { + "routeId": "L457", + "platformId": "U4236Z2", + "id": "e60e1ef6-6ce1-4773-911d-b64be77ed189" + }, + { + "routeId": "L457", + "platformId": "U4237Z1", + "id": "eb097690-cc27-4b3c-abcf-c00a767d6cd2" + }, + { + "routeId": "L457", + "platformId": "U4238Z1", + "id": "435cfdc2-bbad-40ef-80e2-51db4692b262" + }, + { + "routeId": "L457", + "platformId": "U4239Z1", + "id": "4006db0b-a317-417c-b720-a7d4f91fd5be" + }, + { + "routeId": "L457", + "platformId": "U4239Z2", + "id": "15886bf8-a606-492a-8e24-d70b26470744" + }, + { + "routeId": "L332", + "platformId": "U423Z1", + "id": "e0eec34f-fd66-486d-bce7-4b99f7dafadc" + }, + { + "routeId": "L956", + "platformId": "U423Z1", + "id": "c5ca639d-c6b6-4e62-8faf-15dd250f4688" + }, + { + "routeId": "L337", + "platformId": "U423Z1", + "id": "9de98426-0173-43f4-a9d2-744ad521eaae" + }, + { + "routeId": "L335", + "platformId": "U423Z1", + "id": "40ff37f5-f737-43d8-a841-258655467df8" + }, + { + "routeId": "L339", + "platformId": "U423Z1", + "id": "6092644c-0d03-4188-b90c-76d2ac215330" + }, + { + "routeId": "L332", + "platformId": "U423Z2", + "id": "31df5f67-b53f-4d01-a161-6cec4bf97177" + }, + { + "routeId": "L956", + "platformId": "U423Z2", + "id": "bb831186-4305-4560-8d4d-030a8ba950e2" + }, + { + "routeId": "L337", + "platformId": "U423Z2", + "id": "52af9913-451c-4a5f-9d09-7234a6775c92" + }, + { + "routeId": "L335", + "platformId": "U423Z2", + "id": "bb2a8eaa-195f-47b6-9e35-a9bb9f9b45c0" + }, + { + "routeId": "L339", + "platformId": "U423Z2", + "id": "d40e3f08-8b05-4944-990d-a9e197b034aa" + }, + { + "routeId": "L208", + "platformId": "U4240Z1", + "id": "663ecc3a-e728-4b0d-95aa-adcc0ff5a84a" + }, + { + "routeId": "L617", + "platformId": "U4241Z1", + "id": "c63d9054-4b3d-4d45-8ffb-c52d32a525cb" + }, + { + "routeId": "L617", + "platformId": "U4241Z2", + "id": "e63c839d-d0de-418d-aacf-c16f163396be" + }, + { + "routeId": "L617", + "platformId": "U4242Z1", + "id": "09e303e1-b62f-40a8-9f51-7e04a019d328" + }, + { + "routeId": "L617", + "platformId": "U4243Z1", + "id": "12409cdc-68c6-47a9-b4e2-d7e045260d83" + }, + { + "routeId": "L617", + "platformId": "U4243Z2", + "id": "e8a8ec75-3359-4d83-b39f-ea7bebc90d9b" + }, + { + "routeId": "L617", + "platformId": "U4244Z1", + "id": "f9cd442c-cab5-46d5-8f71-6ec2834b0ce4" + }, + { + "routeId": "L617", + "platformId": "U4244Z2", + "id": "f716cb1b-0dfb-4bfc-b47a-a6922e8bb16a" + }, + { + "routeId": "L617", + "platformId": "U4245Z1", + "id": "f1e0bdcc-e449-4ac5-8c6c-453baa80eda6" + }, + { + "routeId": "L617", + "platformId": "U4245Z2", + "id": "e710c25f-8d6d-4104-b197-2d7f4d35a31f" + }, + { + "routeId": "L617", + "platformId": "U4246Z1", + "id": "624b48c2-de5c-499d-aebb-a2ee50093573" + }, + { + "routeId": "L617", + "platformId": "U4246Z2", + "id": "9c0a4be3-b1aa-409b-8a43-18cd94b1468e" + }, + { + "routeId": "L466", + "platformId": "U4247Z1", + "id": "f108d002-36b5-408e-ab52-f25d40efe2e7" + }, + { + "routeId": "L646", + "platformId": "U4247Z1", + "id": "7570c005-eee1-47fd-af40-817d974db8d7" + }, + { + "routeId": "L466", + "platformId": "U4247Z2", + "id": "5993dbff-9ae7-4c51-b7e5-9458b981fbef" + }, + { + "routeId": "L646", + "platformId": "U4247Z2", + "id": "8ebbb7cc-4d99-453e-a7e4-f84676054533" + }, + { + "routeId": "L617", + "platformId": "U4248Z1", + "id": "19c8d13d-7e06-42c6-b403-fe1b568e6ae7" + }, + { + "routeId": "L457", + "platformId": "U4248Z1", + "id": "ea786bbd-ac8d-4b2f-98d3-4eca111ae255" + }, + { + "routeId": "L646", + "platformId": "U4248Z1", + "id": "efebbfef-99a5-4dc3-8b07-eddb2ecce329" + }, + { + "routeId": "L421", + "platformId": "U4249Z1", + "id": "ef32dab9-ec02-4dc7-9ff5-a3753417eacf" + }, + { + "routeId": "L421", + "platformId": "U4249Z2", + "id": "135e60e8-a0a4-458b-8791-0588891cae26" + }, + { + "routeId": "L125", + "platformId": "U424Z1", + "id": "c75cbbae-1e6e-48ba-ad32-05b118f59aa3" + }, + { + "routeId": "L136", + "platformId": "U424Z1", + "id": "5ee0ede6-00a6-4252-a89c-624a98edebec" + }, + { + "routeId": "L213", + "platformId": "U424Z1", + "id": "7432a670-9a34-481b-9ee4-f6293ed81dff" + }, + { + "routeId": "L905", + "platformId": "U424Z1", + "id": "4a31237e-a548-4b36-9329-23ca15599171" + }, + { + "routeId": "L203", + "platformId": "U424Z1", + "id": "533ba45f-dd53-4954-85df-17996abb9d50" + }, + { + "routeId": "L125", + "platformId": "U424Z2", + "id": "38e0b019-d1dc-4b95-a152-0fe4beef360f" + }, + { + "routeId": "L136", + "platformId": "U424Z2", + "id": "fedf4479-6bc6-4739-b245-64da43a57a6d" + }, + { + "routeId": "L213", + "platformId": "U424Z2", + "id": "d81cdaf2-a3ca-45d0-b191-7e0ca5f9dfb8" + }, + { + "routeId": "L905", + "platformId": "U424Z2", + "id": "9a8e6772-ce25-4f8b-9f4e-2a3b597fdaac" + }, + { + "routeId": "L203", + "platformId": "U424Z2", + "id": "9596b4b4-e2e3-4d39-8a6f-f142ad106a96" + }, + { + "routeId": "L363", + "platformId": "U4250Z1", + "id": "682d0114-376f-4a53-9828-cc852b3931d1" + }, + { + "routeId": "L363", + "platformId": "U4250Z2", + "id": "8fb9206e-362a-44a4-a2a6-124d22edd898" + }, + { + "routeId": "L355", + "platformId": "U4251Z1", + "id": "1092e131-934a-40ee-8d3d-529cd2bb24c1" + }, + { + "routeId": "L355", + "platformId": "U4251Z2", + "id": "eae0b45f-c419-4008-9888-5733195836a8" + }, + { + "routeId": "L494", + "platformId": "U4252Z1", + "id": "43b54e76-5c10-4b4f-9a93-bd3c1341fcfe" + }, + { + "routeId": "L494", + "platformId": "U4252Z2", + "id": "0822a546-8c5d-460e-bc87-de243dbafc29" + }, + { + "routeId": "L310", + "platformId": "U4253Z1", + "id": "dffec499-b528-4219-93e9-2dffbd7482dd" + }, + { + "routeId": "L310", + "platformId": "U4253Z2", + "id": "8628ab5c-3b14-4a98-ad0d-09028d57d3ea" + }, + { + "routeId": "L310", + "platformId": "U4254Z1", + "id": "615bd65c-2e3c-44bc-b632-3328c1e522ce" + }, + { + "routeId": "L310", + "platformId": "U4254Z2", + "id": "961296c1-9f70-4b48-9ebc-d4c15db6102d" + }, + { + "routeId": "L311", + "platformId": "U4256Z1", + "id": "a9ddc5fa-01c5-4bb3-8ac8-aabe0cca2b2d" + }, + { + "routeId": "L311", + "platformId": "U4256Z2", + "id": "910f91d9-c54d-4784-9ffb-bb4492fe1b3e" + }, + { + "routeId": "L474", + "platformId": "U4257Z1", + "id": "124e1817-5db2-4100-aac0-1ad9da1d7105" + }, + { + "routeId": "L130", + "platformId": "U4258Z1", + "id": "07014d8a-2218-489f-8905-d5837d6b8342" + }, + { + "routeId": "L246", + "platformId": "U4258Z1", + "id": "dd986c6c-6bbc-45a4-b1c9-e2a828172755" + }, + { + "routeId": "L130", + "platformId": "U4258Z2", + "id": "ef4cdf7d-30dd-4619-9ed5-4d5cd28cedaf" + }, + { + "routeId": "L246", + "platformId": "U4258Z2", + "id": "224b4c82-38c4-4b5b-b74a-d0efc2a098ef" + }, + { + "routeId": "L312", + "platformId": "U4259Z1", + "id": "3c175a84-bc9e-49fc-9701-a1c48a721034" + }, + { + "routeId": "L322", + "platformId": "U4259Z1", + "id": "bdc3e941-73b2-4cbf-abf3-6f8ae0fdfbba" + }, + { + "routeId": "L429", + "platformId": "U4259Z1", + "id": "ab79f634-ff03-4714-b1e8-b7523f00f033" + }, + { + "routeId": "L414", + "platformId": "U4259Z12", + "id": "00ac5e23-ffec-48bc-a968-cf0989a66078" + }, + { + "routeId": "L312", + "platformId": "U4259Z2", + "id": "3b3157f0-4ac8-4558-8116-53d907d750ad" + }, + { + "routeId": "L322", + "platformId": "U4259Z2", + "id": "6c3b2728-f3ec-4910-9fe6-d795aacbbbb1" + }, + { + "routeId": "L429", + "platformId": "U4259Z2", + "id": "174b3d48-6976-49a7-aae6-b8b60f9e77ba" + }, + { + "routeId": "L131", + "platformId": "U425Z1", + "id": "89e213f2-75e8-420d-97b7-d0780a3fd217" + }, + { + "routeId": "L907", + "platformId": "U425Z1", + "id": "3433e73d-0e49-48a2-b17f-b1d530b5e0b1" + }, + { + "routeId": "L131", + "platformId": "U425Z2", + "id": "f75554a1-c226-4272-a48d-cd34937cb3fa" + }, + { + "routeId": "L907", + "platformId": "U425Z2", + "id": "0ab62aee-2cab-4d47-a1a6-6c98a9c948a5" + }, + { + "routeId": "L146", + "platformId": "U4260Z1", + "id": "74b9c165-4f4a-4923-b60c-e4e860434da8" + }, + { + "routeId": "L146", + "platformId": "U4260Z2", + "id": "ed7cf21b-cdbe-414e-b549-483347be3e70" + }, + { + "routeId": "L146", + "platformId": "U4261Z1", + "id": "eb9f32de-a271-4144-a6e0-c8939d33d572" + }, + { + "routeId": "L146", + "platformId": "U4261Z2", + "id": "e058d341-81f0-496a-b96b-754724cbfea8" + }, + { + "routeId": "L146", + "platformId": "U4262Z1", + "id": "e2fe3e5b-ea0a-4ae6-be93-d0b91e5d0bdf" + }, + { + "routeId": "L123", + "platformId": "U426Z1", + "id": "71245141-e6b2-4733-92b0-3f1443f8bbae" + }, + { + "routeId": "L123", + "platformId": "U426Z2", + "id": "b63ec5e2-6c76-4351-a3b5-adbbe341cf50" + }, + { + "routeId": "L378", + "platformId": "U4271Z1", + "id": "a53001a7-baca-493d-906d-fa6a78ec7a1f" + }, + { + "routeId": "L380", + "platformId": "U4272Z1", + "id": "5b3d7dbd-94a5-4ed7-bc54-b9aad166014a" + }, + { + "routeId": "L384", + "platformId": "U4272Z1", + "id": "11fab718-023e-4e74-98db-74e8d6dbbfc4" + }, + { + "routeId": "L952", + "platformId": "U4272Z1", + "id": "2819e1a5-0534-4717-b414-b6954518487e" + }, + { + "routeId": "L425", + "platformId": "U4272Z1", + "id": "8a3ecfd4-83ad-4123-b293-e1072d055e70" + }, + { + "routeId": "L631", + "platformId": "U4272Z1", + "id": "4bc2aab1-4136-41fc-9b96-a7d166395e2a" + }, + { + "routeId": "L380", + "platformId": "U4273Z1", + "id": "8da96bbd-1cf1-417c-a0ef-8a24d26e525e" + }, + { + "routeId": "L952", + "platformId": "U4273Z1", + "id": "6e619c4b-d2c6-42d0-b538-df371fefdebb" + }, + { + "routeId": "L384", + "platformId": "U4273Z1", + "id": "b0c7c98e-99ef-43c0-8ae8-ec4cb8240dee" + }, + { + "routeId": "L394", + "platformId": "U4273Z1", + "id": "1876575d-555c-442b-b59c-b6e941b1636e" + }, + { + "routeId": "L425", + "platformId": "U4273Z1", + "id": "f0407244-ad87-4e78-9680-f746b1e12656" + }, + { + "routeId": "L631", + "platformId": "U4273Z1", + "id": "864d18e2-e9e9-43eb-82a2-3032d601b08f" + }, + { + "routeId": "L425", + "platformId": "U4273Z2", + "id": "0bdc229e-7544-4863-8d7f-86682bb42223" + }, + { + "routeId": "L631", + "platformId": "U4273Z2", + "id": "8f6b5e10-52bf-46b5-8775-954c654677e9" + }, + { + "routeId": "L1226", + "platformId": "U4273Z301", + "id": "7fdb5eac-c29f-4892-82c3-eeecdfc4365e" + }, + { + "routeId": "L1375", + "platformId": "U4273Z301", + "id": "e1c575a6-90f6-4f7c-8116-f93ac3d784c3" + }, + { + "routeId": "L1306", + "platformId": "U4273Z301", + "id": "75c53e2b-106c-489d-8ffc-eb1afcde7710" + }, + { + "routeId": "L630", + "platformId": "U4274Z1", + "id": "b7e6722c-bb89-47a5-a849-f6580ab8b635" + }, + { + "routeId": "L631", + "platformId": "U4274Z1", + "id": "8356b1d5-9438-448c-a834-b064c2e9e915" + }, + { + "routeId": "L630", + "platformId": "U4274Z2", + "id": "50aebfc1-179a-47e1-8463-00455384da99" + }, + { + "routeId": "L631", + "platformId": "U4274Z2", + "id": "73e52e16-2cfc-48d5-801b-50411d67b627" + }, + { + "routeId": "L531", + "platformId": "U4275Z1", + "id": "a5463e88-6ead-443d-b420-4bc9f31176db" + }, + { + "routeId": "L639", + "platformId": "U4275Z1", + "id": "d5dcf359-c6ad-4129-884b-cb7271665a39" + }, + { + "routeId": "L531", + "platformId": "U4275Z2", + "id": "f435769f-274d-47a2-848f-e92197b448bf" + }, + { + "routeId": "L639", + "platformId": "U4275Z2", + "id": "5a85bcde-4ea2-4b57-b4a4-fccf586b3d3f" + }, + { + "routeId": "L360", + "platformId": "U4279Z1", + "id": "e0961697-3f5e-4ca3-a984-c5b899a9cf7e" + }, + { + "routeId": "L361", + "platformId": "U4279Z1", + "id": "272eaad3-20d5-4514-89f3-bb81257208fb" + }, + { + "routeId": "L390", + "platformId": "U4279Z1", + "id": "a44a1730-1d71-455e-8bfd-8e32ad148e69" + }, + { + "routeId": "L135", + "platformId": "U427Z1", + "id": "fcc7a1e4-6bdf-4751-854c-07678bc36ac6" + }, + { + "routeId": "L135", + "platformId": "U427Z2", + "id": "d3471ba7-3afc-4b81-873b-0f9f8be7c1f0" + }, + { + "routeId": "L651", + "platformId": "U4281Z1", + "id": "6c8c3f4a-1e43-4c05-8684-edf0cd874ffd" + }, + { + "routeId": "L651", + "platformId": "U4281Z2", + "id": "907dff2e-4951-441a-89d9-28cc869f3c51" + }, + { + "routeId": "L632", + "platformId": "U4283Z1", + "id": "df43596f-7fbb-45a4-9931-c0fe86ee5c13" + }, + { + "routeId": "L632", + "platformId": "U4283Z2", + "id": "15915d55-1702-4ec2-ae87-e3fa220b54f0" + }, + { + "routeId": "L2276", + "platformId": "U4283Z401", + "id": "7d61f728-e341-4f60-b87d-5402b6d980fd" + }, + { + "routeId": "L2276", + "platformId": "U4283Z402", + "id": "45c608a5-dc7b-40a0-b117-25623c1a4f36" + }, + { + "routeId": "L632", + "platformId": "U4284Z1", + "id": "f1cdf5dc-4307-4fb5-bedb-ead1130d943a" + }, + { + "routeId": "L2276", + "platformId": "U4284Z401", + "id": "5a2a2887-5129-4f4a-85ae-ed74c1bba0ac" + }, + { + "routeId": "L2276", + "platformId": "U4284Z402", + "id": "a82a8948-e05e-4b68-9452-1628ca6fe3a2" + }, + { + "routeId": "L120", + "platformId": "U428Z1", + "id": "af922354-bddc-48ec-8c96-edb50b09fa4c" + }, + { + "routeId": "L120", + "platformId": "U428Z2", + "id": "16b4b35b-881f-439a-8546-8cc90e86c983" + }, + { + "routeId": "L443", + "platformId": "U4292Z1", + "id": "339e2f70-d319-4921-a46c-21272f792073" + }, + { + "routeId": "L662", + "platformId": "U4292Z1", + "id": "f2ce0ce8-5bd0-47af-b8e5-ec359858f89a" + }, + { + "routeId": "L443", + "platformId": "U4292Z2", + "id": "be19136e-39be-46ca-8e69-7fa066ed7b78" + }, + { + "routeId": "L662", + "platformId": "U4292Z2", + "id": "b73dd9f7-e2f9-475a-825d-21ae754c1a50" + }, + { + "routeId": "L1226", + "platformId": "U4293Z301", + "id": "29d10807-d040-4df1-b9e9-714f795961c9" + }, + { + "routeId": "L1366", + "platformId": "U4293Z301", + "id": "0c8fc74a-8d35-493a-844e-33a5c278a4a8" + }, + { + "routeId": "L1226", + "platformId": "U4294Z301", + "id": "5e718812-6f6c-42ad-8fdb-fdc3233db912" + }, + { + "routeId": "L1366", + "platformId": "U4294Z301", + "id": "02605452-515e-4152-826b-50b6c6cac7a8" + }, + { + "routeId": "L1226", + "platformId": "U4295Z301", + "id": "a14723da-73fd-4e2c-b8bd-fde453e9fb4a" + }, + { + "routeId": "L1366", + "platformId": "U4295Z301", + "id": "1badf19b-810f-4c22-82e0-1f18635ae3b9" + }, + { + "routeId": "L304", + "platformId": "U4298Z1", + "id": "e4ee7e14-c001-45d3-8ea6-fcf7abe696f3" + }, + { + "routeId": "L305", + "platformId": "U4298Z1", + "id": "273bad65-4109-4261-a364-501fb25ea890" + }, + { + "routeId": "L417", + "platformId": "U4298Z1", + "id": "2ed7afa8-dcac-44de-aee2-be16ac0c8192" + }, + { + "routeId": "L625", + "platformId": "U4298Z1", + "id": "927618aa-6e10-4aa3-bcec-b11227da6200" + }, + { + "routeId": "L600", + "platformId": "U4298Z1", + "id": "1b314981-266f-4e97-bcf2-56eddcf87e83" + }, + { + "routeId": "L619", + "platformId": "U4298Z1", + "id": "849302d7-4e6d-4a79-93ab-a68b309dd175" + }, + { + "routeId": "L415", + "platformId": "U4298Z1", + "id": "bc8d8528-1ac0-40ef-bd52-e88499578bcc" + }, + { + "routeId": "L590", + "platformId": "U4298Z1", + "id": "45e8d520-5764-42a0-a27e-79bd8116f175" + }, + { + "routeId": "L305", + "platformId": "U4298Z2", + "id": "a580f6a1-5ca1-44dc-8758-47c4aa410bc6" + }, + { + "routeId": "L304", + "platformId": "U4298Z2", + "id": "3c511684-885f-42b9-91e9-abe4c884d368" + }, + { + "routeId": "L625", + "platformId": "U4298Z2", + "id": "7163c534-b423-409c-ae0c-d0c0c55dd8f1" + }, + { + "routeId": "L600", + "platformId": "U4298Z2", + "id": "9a088338-1a1b-41c2-8530-7ed3c5eda163" + }, + { + "routeId": "L619", + "platformId": "U4298Z2", + "id": "50e601ab-8613-4d08-b18e-7047b49cf0d2" + }, + { + "routeId": "L417", + "platformId": "U4298Z2", + "id": "365cffa7-9028-4f12-ab71-f513e699b3f9" + }, + { + "routeId": "L415", + "platformId": "U4298Z2", + "id": "c2bbfd26-6ea1-4dff-a45a-5a36fbd6b548" + }, + { + "routeId": "L590", + "platformId": "U4298Z2", + "id": "22d5a6a9-a540-4201-ac51-5979f763aa21" + }, + { + "routeId": "L619", + "platformId": "U4299Z1", + "id": "6ec8d23f-adee-49fb-a54f-cf114ea4ed69" + }, + { + "routeId": "L417", + "platformId": "U4299Z1", + "id": "6fa24000-44f0-41c5-9ccd-a3461d909aca" + }, + { + "routeId": "L415", + "platformId": "U4299Z1", + "id": "48cda98a-25cf-42a9-856d-f0bc61cce927" + }, + { + "routeId": "L590", + "platformId": "U4299Z1", + "id": "079ecd2a-6a2d-4ffe-adfe-e29ba55bdaad" + }, + { + "routeId": "L417", + "platformId": "U4299Z2", + "id": "6715f0a3-135e-45c0-8312-1e26d8b85f2d" + }, + { + "routeId": "L619", + "platformId": "U4299Z2", + "id": "0b584295-99ac-4b76-b2d7-d2cb7adc0d4c" + }, + { + "routeId": "L415", + "platformId": "U4299Z2", + "id": "31c3cfce-8bb8-4e5b-a487-773ba94981a8" + }, + { + "routeId": "L590", + "platformId": "U4299Z2", + "id": "7caac260-d56a-4b3c-b0c4-45983fc60e78" + }, + { + "routeId": "L118", + "platformId": "U429Z1", + "id": "da01bdc4-e782-402f-9d79-5f042dfcf045" + }, + { + "routeId": "L118", + "platformId": "U429Z2", + "id": "c510c89c-1ca5-429e-bbcb-918a313d915c" + }, + { + "routeId": "L193", + "platformId": "U429Z3", + "id": "8ec6d2ae-ce77-48b5-818d-e79d9916fa5c" + }, + { + "routeId": "L904", + "platformId": "U429Z3", + "id": "db525393-9e1a-4848-aaae-46d00da58988" + }, + { + "routeId": "L193", + "platformId": "U429Z5", + "id": "f638af90-3aff-4f6f-9bde-3d1ce24a8093" + }, + { + "routeId": "L904", + "platformId": "U429Z5", + "id": "083f39d1-594c-4d56-a1ce-da0bcc67a28a" + }, + { + "routeId": "L14", + "platformId": "U42Z1", + "id": "9306bd96-3fa2-4fe7-a3ec-0fabbd337f1e" + }, + { + "routeId": "L18", + "platformId": "U42Z1", + "id": "6fbc70b8-3e5a-4e3d-abeb-fdf9c4db8fd0" + }, + { + "routeId": "L93", + "platformId": "U42Z1", + "id": "1cb4e91d-fe9d-44e6-a5fb-92d557d02620" + }, + { + "routeId": "L95", + "platformId": "U42Z1", + "id": "f5014c5e-9161-440e-8926-d38a194c207b" + }, + { + "routeId": "L14", + "platformId": "U42Z2", + "id": "6761d169-c69d-4e2a-916a-523588ca2362" + }, + { + "routeId": "L18", + "platformId": "U42Z2", + "id": "164f924d-a513-4f5d-bb61-bcfacc8e1838" + }, + { + "routeId": "L93", + "platformId": "U42Z2", + "id": "e0bd56d6-eb0a-44a9-b174-9fb9ac869ac4" + }, + { + "routeId": "L95", + "platformId": "U42Z2", + "id": "004e89f9-c98e-4e6c-88e7-f30b7526d27a" + }, + { + "routeId": "L304", + "platformId": "U4300Z1", + "id": "11f6681e-8fb5-4bbd-b4d7-0d5e8a9e3c6e" + }, + { + "routeId": "L577", + "platformId": "U4300Z1", + "id": "86ebcf57-eced-4d91-9319-199eface9601" + }, + { + "routeId": "L404", + "platformId": "U4300Z1", + "id": "314869d0-54b1-4561-851b-9f8c333c4e42" + }, + { + "routeId": "L577", + "platformId": "U4300Z2", + "id": "388ca25c-713b-41b1-ac1f-711e3bff5ac7" + }, + { + "routeId": "L300", + "platformId": "U4301Z1", + "id": "5eb739aa-b4b4-4583-bbea-7771bc91964a" + }, + { + "routeId": "L322", + "platformId": "U4301Z1", + "id": "0b70f956-ad9c-4dcd-8308-48360ec783aa" + }, + { + "routeId": "L324", + "platformId": "U4301Z1", + "id": "ce85ac3b-8f3c-4421-a588-83308f2906ad" + }, + { + "routeId": "L300", + "platformId": "U4301Z2", + "id": "89c4a0ec-166a-466c-ba4a-85c0ee893bf3" + }, + { + "routeId": "L324", + "platformId": "U4301Z2", + "id": "26d2de46-5958-4100-af17-eb4cefed9c55" + }, + { + "routeId": "L300", + "platformId": "U4302Z1", + "id": "47a0d3b1-1145-484c-85c7-18598b90de5f" + }, + { + "routeId": "L322", + "platformId": "U4302Z1", + "id": "2e90abd2-b529-42b6-a057-12e4bb6251db" + }, + { + "routeId": "L324", + "platformId": "U4302Z1", + "id": "64512279-a711-4e53-8d17-19abfad2dc90" + }, + { + "routeId": "L300", + "platformId": "U4302Z2", + "id": "172dd8eb-dbe5-4354-96d6-cfff16e0cffa" + }, + { + "routeId": "L322", + "platformId": "U4302Z2", + "id": "97bbacf4-30ee-4163-bb41-cc0dab002d0a" + }, + { + "routeId": "L324", + "platformId": "U4302Z2", + "id": "622e5d11-0db3-4dae-8aed-5601f208e534" + }, + { + "routeId": "L300", + "platformId": "U4303Z1", + "id": "9c30b2ae-7832-4ef3-b48a-b18d9aac5743" + }, + { + "routeId": "L322", + "platformId": "U4303Z1", + "id": "166b5982-9c25-4e96-af42-8071030d23d0" + }, + { + "routeId": "L324", + "platformId": "U4303Z1", + "id": "2cb31828-9196-4deb-a1bb-d268013044ff" + }, + { + "routeId": "L300", + "platformId": "U4303Z2", + "id": "742f43af-3020-402e-8abb-3222e4984c36" + }, + { + "routeId": "L322", + "platformId": "U4303Z2", + "id": "3f44ede1-c084-42ec-9568-d6ee961ea14f" + }, + { + "routeId": "L324", + "platformId": "U4303Z2", + "id": "1c44aaae-4f0c-476d-b691-218ae9508e10" + }, + { + "routeId": "L300", + "platformId": "U4304Z1", + "id": "368277b7-1b33-426a-acc4-b58e6d43bafc" + }, + { + "routeId": "L322", + "platformId": "U4304Z1", + "id": "f1aebe89-32e1-405b-9a50-3e5d76432fe7" + }, + { + "routeId": "L324", + "platformId": "U4304Z1", + "id": "e873758e-60a8-4deb-b9e1-8b35c84b2cfd" + }, + { + "routeId": "L300", + "platformId": "U4304Z2", + "id": "748e5d26-187f-4a0a-bdff-7950d4220a46" + }, + { + "routeId": "L322", + "platformId": "U4304Z2", + "id": "b4879f98-b0d0-4537-84c7-a409b3de3883" + }, + { + "routeId": "L324", + "platformId": "U4304Z2", + "id": "2600afd4-2bf6-4a1b-bf58-b9f6ee9bc525" + }, + { + "routeId": "L300", + "platformId": "U4306Z1", + "id": "985a2717-2536-471e-8f3f-1219103fa1a7" + }, + { + "routeId": "L306", + "platformId": "U4306Z1", + "id": "a478c643-a1a4-464a-b39c-5dc91eb9ea9a" + }, + { + "routeId": "L322", + "platformId": "U4306Z1", + "id": "1cf75fdf-bab8-4318-9697-ec5f827534e2" + }, + { + "routeId": "L629", + "platformId": "U4306Z1", + "id": "996a0c23-5c86-4599-8739-6d374a593ba7" + }, + { + "routeId": "L629", + "platformId": "U4306Z2", + "id": "9a07791a-4a27-49bb-adc7-0aabd978a6f2" + }, + { + "routeId": "L300", + "platformId": "U4306Z2", + "id": "3322a6d8-2d92-42af-81f0-20ac7c38eb3e" + }, + { + "routeId": "L306", + "platformId": "U4306Z2", + "id": "41a746f3-2cee-452b-beab-faadafc24eb5" + }, + { + "routeId": "L322", + "platformId": "U4306Z2", + "id": "747665e9-e1b3-4f0d-b49b-8b1a1562d8a4" + }, + { + "routeId": "L307", + "platformId": "U4306Z3", + "id": "7f72ae66-b232-4ea2-b00a-db75a08b59e7" + }, + { + "routeId": "L300", + "platformId": "U4308Z1", + "id": "68ee5902-6c32-4fa6-a525-f1e26c561fb2" + }, + { + "routeId": "L306", + "platformId": "U4308Z1", + "id": "9c962b5c-9810-4c5e-a015-4351d92f6519" + }, + { + "routeId": "L307", + "platformId": "U4308Z1", + "id": "f9223340-3b99-48c6-b11f-7c9bee6f6543" + }, + { + "routeId": "L322", + "platformId": "U4308Z1", + "id": "58679693-f1aa-4d9a-9f26-ffcd652c2adf" + }, + { + "routeId": "L629", + "platformId": "U4308Z1", + "id": "1239cef3-cd9f-4ac0-8bff-b35b92d94c72" + }, + { + "routeId": "L629", + "platformId": "U4308Z2", + "id": "bd579b51-5a87-43ac-868f-9faade59c78f" + }, + { + "routeId": "L300", + "platformId": "U4308Z2", + "id": "fa0b62b8-240f-432d-aa0c-6257ffbbc0b5" + }, + { + "routeId": "L306", + "platformId": "U4308Z2", + "id": "f8b7ced8-a7ee-4369-afe0-3811c48962f7" + }, + { + "routeId": "L307", + "platformId": "U4308Z2", + "id": "608267a3-893e-4850-861e-33479898f406" + }, + { + "routeId": "L322", + "platformId": "U4308Z2", + "id": "79e7b7df-4b60-42e5-8a2d-dd44ffd00798" + }, + { + "routeId": "L202", + "platformId": "U430Z1", + "id": "36caeb3b-c358-4c74-aa30-a4b1964ef73d" + }, + { + "routeId": "L103", + "platformId": "U430Z1", + "id": "bce618c7-9e29-4d97-aeb1-606b581626ed" + }, + { + "routeId": "L914", + "platformId": "U430Z1", + "id": "389e8407-0349-4e17-9383-b18bc8dc77fe" + }, + { + "routeId": "L202", + "platformId": "U430Z2", + "id": "dc23e272-d01d-42af-b247-77b92e9dcdac" + }, + { + "routeId": "L103", + "platformId": "U430Z2", + "id": "ce4ca2c5-cac6-428b-a5ca-9c95f8bc8c6e" + }, + { + "routeId": "L283", + "platformId": "U430Z2", + "id": "2f6553e8-869d-4b6f-9553-70c77f1c663a" + }, + { + "routeId": "L914", + "platformId": "U430Z2", + "id": "cfc427bf-c83d-4563-a99f-80267d51ebf3" + }, + { + "routeId": "L202", + "platformId": "U430Z3", + "id": "7060148d-7524-4ae9-aa7d-8d59ef0a3b9d" + }, + { + "routeId": "L103", + "platformId": "U430Z3", + "id": "89740fec-9d1a-4ed7-a08e-9977a2e7ec76" + }, + { + "routeId": "L914", + "platformId": "U430Z3", + "id": "2882189b-e21f-4306-a581-ee1fa9821db3" + }, + { + "routeId": "L300", + "platformId": "U4310Z1", + "id": "eb374f2e-5292-4d68-9b2a-baf3d51886fe" + }, + { + "routeId": "L306", + "platformId": "U4310Z1", + "id": "72e5f918-61b4-47f4-a708-3f79e7853537" + }, + { + "routeId": "L322", + "platformId": "U4310Z1", + "id": "2af27543-cae9-4de7-b4f5-86da290a6d90" + }, + { + "routeId": "L324", + "platformId": "U4310Z1", + "id": "760dde36-8322-436f-b68e-b271d08b7ca9" + }, + { + "routeId": "L629", + "platformId": "U4310Z1", + "id": "1f558553-8b96-4adb-9503-7c09759bcd12" + }, + { + "routeId": "L399", + "platformId": "U4310Z1", + "id": "5d8114dc-b93b-4a6f-a2a3-6fa74bd07f79" + }, + { + "routeId": "L616", + "platformId": "U4310Z1", + "id": "55d5d36e-d3d6-45ee-8ac6-ec208b1496ac" + }, + { + "routeId": "L630", + "platformId": "U4310Z1", + "id": "370a65ae-b5a9-4b69-9f65-57e89046607c" + }, + { + "routeId": "L629", + "platformId": "U4310Z2", + "id": "68e42708-547e-4eb4-ac31-1a641ee954c6" + }, + { + "routeId": "L300", + "platformId": "U4310Z2", + "id": "50d23fc8-788b-4c4c-9d9b-b5f530064659" + }, + { + "routeId": "L306", + "platformId": "U4310Z2", + "id": "e4124b55-0034-4aa5-80f5-67047a988f9c" + }, + { + "routeId": "L322", + "platformId": "U4310Z2", + "id": "77b17806-60cf-46cf-9749-7c4a34254347" + }, + { + "routeId": "L324", + "platformId": "U4310Z2", + "id": "0740fd45-c6be-46f2-95fd-89c1f9101cc1" + }, + { + "routeId": "L399", + "platformId": "U4310Z2", + "id": "600e6327-f9dc-4239-acda-399da1a7e97c" + }, + { + "routeId": "L616", + "platformId": "U4310Z2", + "id": "d8b4471e-ab7e-4c32-aa73-90e1992ab4d9" + }, + { + "routeId": "L630", + "platformId": "U4310Z2", + "id": "390c4e76-ea4e-4941-b62a-0248699e77b1" + }, + { + "routeId": "L307", + "platformId": "U4312Z1", + "id": "b48ced76-d098-45c8-a2a4-28854d0ea54e" + }, + { + "routeId": "L300", + "platformId": "U4313Z3", + "id": "a2329e9b-fac6-488e-853a-cefa8e321a88" + }, + { + "routeId": "L324", + "platformId": "U4313Z3", + "id": "cbea6fca-156e-49de-80b5-ab777e2d352f" + }, + { + "routeId": "L399", + "platformId": "U4313Z3", + "id": "7e06cc25-22e5-435c-8bdd-5b5ec6d60953" + }, + { + "routeId": "L618", + "platformId": "U4313Z3", + "id": "617a7e6c-f4fb-4ea5-9471-8427d8dfd6f3" + }, + { + "routeId": "L600", + "platformId": "U4313Z3", + "id": "954e3661-27d5-4647-890a-d7b3d137dbdf" + }, + { + "routeId": "L619", + "platformId": "U4313Z3", + "id": "a3b4a172-1f1f-4f0c-a25f-3b793106151c" + }, + { + "routeId": "L555", + "platformId": "U4313Z3", + "id": "af28b583-17fa-4625-8e00-a6c0469c9244" + }, + { + "routeId": "L629", + "platformId": "U4313Z3", + "id": "36119c77-fd2b-49bd-a996-1d57920d124e" + }, + { + "routeId": "L618", + "platformId": "U4313Z6", + "id": "ddf72d27-ee8b-4405-bf6a-54ab6bb63889" + }, + { + "routeId": "L600", + "platformId": "U4313Z6", + "id": "beee3bf1-8a80-49fa-b117-071b068a6803" + }, + { + "routeId": "L619", + "platformId": "U4313Z6", + "id": "80fc4602-74cd-417c-92d9-0a03f1cf615f" + }, + { + "routeId": "L555", + "platformId": "U4313Z6", + "id": "dbe740df-99f4-4196-a54f-e778fbd96b62" + }, + { + "routeId": "L629", + "platformId": "U4313Z6", + "id": "fa2d37bc-0938-4fd9-b254-9817ed5b1ea6" + }, + { + "routeId": "L300", + "platformId": "U4313Z7", + "id": "ecf8be7a-24cf-4c78-a6c2-74af975d0697" + }, + { + "routeId": "L324", + "platformId": "U4313Z7", + "id": "472682e1-651e-4d19-9f6a-f5fd5624c265" + }, + { + "routeId": "L399", + "platformId": "U4313Z7", + "id": "073f3d78-570d-4983-8c6e-377d41a0b730" + }, + { + "routeId": "L306", + "platformId": "U4313Z8", + "id": "16a3885a-09a7-4da6-a681-68a87adf18af" + }, + { + "routeId": "L322", + "platformId": "U4313Z8", + "id": "37cd9e89-e0da-4b3f-a5c4-e663331a72b1" + }, + { + "routeId": "L626", + "platformId": "U4313Z8", + "id": "349d4cb5-5d61-49b9-9167-dbf65ad8db8b" + }, + { + "routeId": "L616", + "platformId": "U4313Z8", + "id": "26462956-fd17-4815-a509-4eb97c576da6" + }, + { + "routeId": "L620", + "platformId": "U4313Z8", + "id": "26933dc6-68f1-4ebe-a261-dfcccc830f94" + }, + { + "routeId": "L630", + "platformId": "U4313Z8", + "id": "74eab14a-bf39-49b4-97f7-d401c5e2ad58" + }, + { + "routeId": "L306", + "platformId": "U4313Z9", + "id": "83a7bf0a-7594-4095-87ad-2db11753846f" + }, + { + "routeId": "L322", + "platformId": "U4313Z9", + "id": "3311cf01-2346-4497-a8c7-69f59afc400d" + }, + { + "routeId": "L626", + "platformId": "U4313Z9", + "id": "a53164c1-db16-4bcb-92ab-ad84fd64cea4" + }, + { + "routeId": "L616", + "platformId": "U4313Z9", + "id": "91e474f7-23a7-4491-9162-3b8c47f7b360" + }, + { + "routeId": "L620", + "platformId": "U4313Z9", + "id": "d1115465-6a6f-4092-a598-5eab4d9c7f96" + }, + { + "routeId": "L630", + "platformId": "U4313Z9", + "id": "b5271593-cace-46e7-a1c8-f2b98695c04c" + }, + { + "routeId": "L322", + "platformId": "U4314Z1", + "id": "0956c702-43b3-4255-b2a8-050102b772e7" + }, + { + "routeId": "L616", + "platformId": "U4314Z1", + "id": "336ca64a-cff9-40d5-8b10-61d634c40172" + }, + { + "routeId": "L630", + "platformId": "U4314Z1", + "id": "3b146ab7-5eea-4fb3-be4b-35c5ffad26a5" + }, + { + "routeId": "L600", + "platformId": "U4314Z10", + "id": "e2c3264f-48c8-47ff-b4b0-96c2fd1987f6" + }, + { + "routeId": "L619", + "platformId": "U4314Z10", + "id": "e9019425-4f5c-4834-b433-5ad26d09296c" + }, + { + "routeId": "L618", + "platformId": "U4314Z11", + "id": "dc12f260-7a18-4214-8228-18737ea24f1e" + }, + { + "routeId": "L306", + "platformId": "U4314Z18", + "id": "294da5d7-c411-46ee-8bcd-afa6f4ea8963" + }, + { + "routeId": "L618", + "platformId": "U4314Z18", + "id": "492b9072-e198-411f-a7fd-023b7a7ade72" + }, + { + "routeId": "L600", + "platformId": "U4314Z18", + "id": "a20b7a2d-9327-4de7-a662-70001ad7d18f" + }, + { + "routeId": "L626", + "platformId": "U4314Z18", + "id": "5b2d1aab-4012-448c-bfa9-2b7b90e9289a" + }, + { + "routeId": "L619", + "platformId": "U4314Z18", + "id": "39b36852-1aa5-4da2-998f-bf51928d2e7e" + }, + { + "routeId": "L555", + "platformId": "U4314Z18", + "id": "8b9fbe78-60b4-4e1d-818f-0b1167f19f07" + }, + { + "routeId": "L620", + "platformId": "U4314Z18", + "id": "8d5604db-5cca-482e-949b-a9e2f5f022e0" + }, + { + "routeId": "L622", + "platformId": "U4314Z18", + "id": "a8e57f72-0b1f-4333-98f8-5e7c5e16199f" + }, + { + "routeId": "L630", + "platformId": "U4314Z18", + "id": "68e8983f-71ce-4920-88f3-1ba9ea67dca4" + }, + { + "routeId": "L306", + "platformId": "U4314Z2", + "id": "9b69f4c4-fc76-4913-ac28-d3f0ab742329" + }, + { + "routeId": "L322", + "platformId": "U4314Z3", + "id": "4e827585-2397-4be8-bc3b-d1db2f1ba3a2" + }, + { + "routeId": "L616", + "platformId": "U4314Z3", + "id": "130bcf78-e9c6-43e3-a664-755c0960fb16" + }, + { + "routeId": "L622", + "platformId": "U4314Z3", + "id": "49959180-2b88-4a14-8d0b-d3d4518d69b4" + }, + { + "routeId": "L620", + "platformId": "U4314Z4", + "id": "23f395c1-78c2-42f2-9cd3-9a1ba42e27eb" + }, + { + "routeId": "L626", + "platformId": "U4314Z9", + "id": "3ba4fd6f-b7b0-4a9c-9a67-de00530227ac" + }, + { + "routeId": "L555", + "platformId": "U4314Z9", + "id": "fbc0c3fa-7021-4118-9c2a-e63d0f88dce5" + }, + { + "routeId": "L324", + "platformId": "U4315Z1", + "id": "db744c66-9d4d-4846-bd03-734a92972055" + }, + { + "routeId": "L399", + "platformId": "U4315Z1", + "id": "229ddd75-244a-4eb0-b62c-888f5151441c" + }, + { + "routeId": "L324", + "platformId": "U4315Z2", + "id": "cc64b6f3-274f-4b7c-9214-c56544ed2292" + }, + { + "routeId": "L399", + "platformId": "U4315Z2", + "id": "246f2192-d7d6-428f-8f72-ec00f8306f40" + }, + { + "routeId": "L324", + "platformId": "U4316Z1", + "id": "6e01f9af-e904-4bd7-848c-841d7cd2e614" + }, + { + "routeId": "L399", + "platformId": "U4316Z1", + "id": "da0cbbe6-cce9-4639-a23c-0d146e85dfd8" + }, + { + "routeId": "L324", + "platformId": "U4316Z2", + "id": "3089e641-fceb-43b5-91e2-4c46a5bc8e04" + }, + { + "routeId": "L399", + "platformId": "U4316Z5", + "id": "f92f126e-4eef-4009-9652-58848293690d" + }, + { + "routeId": "L324", + "platformId": "U4317Z1", + "id": "47454531-b3a4-4f92-bd33-c96d1ff928d3" + }, + { + "routeId": "L399", + "platformId": "U4317Z1", + "id": "38be5422-67af-42ca-844e-f18206672a3d" + }, + { + "routeId": "L324", + "platformId": "U4317Z2", + "id": "2c8ee8cc-5a4c-45e8-9a24-239c43e7a832" + }, + { + "routeId": "L399", + "platformId": "U4317Z2", + "id": "7613df3d-997b-4142-a9c0-285fc0f3fe18" + }, + { + "routeId": "L324", + "platformId": "U4318Z1", + "id": "70e43e21-2818-4e3c-9eda-880585b4e048" + }, + { + "routeId": "L399", + "platformId": "U4318Z1", + "id": "4442d008-aee8-4b69-b09a-4094bb606f42" + }, + { + "routeId": "L324", + "platformId": "U4318Z2", + "id": "e6adc7d6-f739-4405-aa88-bf3f4b3b6cfa" + }, + { + "routeId": "L399", + "platformId": "U4318Z2", + "id": "89a1da80-4f99-41c2-86d5-bdace82c1df6" + }, + { + "routeId": "L118", + "platformId": "U431Z1", + "id": "ac1e6134-3336-4aa2-aaa2-768ab9f598b0" + }, + { + "routeId": "L170", + "platformId": "U431Z1", + "id": "f9a11991-00a3-427e-9472-890ae7d16565" + }, + { + "routeId": "L905", + "platformId": "U431Z1", + "id": "b732c606-adb1-4e68-a3e8-522a5e78c96d" + }, + { + "routeId": "L324", + "platformId": "U4320Z1", + "id": "48deea91-9c51-4865-a8f6-cbcdba623986" + }, + { + "routeId": "L399", + "platformId": "U4320Z1", + "id": "e07c915d-8eb1-4ba4-be0a-2c8640aea7d9" + }, + { + "routeId": "L630", + "platformId": "U4320Z1", + "id": "dfcbf5ca-f0d3-4ea1-bdac-a5cf9882d03a" + }, + { + "routeId": "L324", + "platformId": "U4320Z2", + "id": "81b04994-fd14-4fb9-9ddb-185a68f6c33b" + }, + { + "routeId": "L399", + "platformId": "U4320Z2", + "id": "219f4a55-8a8b-48ba-a017-f21388b487d0" + }, + { + "routeId": "L630", + "platformId": "U4320Z2", + "id": "64218df4-14d7-45d4-9594-6e59279b5ea9" + }, + { + "routeId": "L630", + "platformId": "U4321Z1", + "id": "9bf08622-7afe-459b-a960-a35167940424" + }, + { + "routeId": "L630", + "platformId": "U4321Z2", + "id": "ba566528-8e28-4a76-9287-fce0653fe550" + }, + { + "routeId": "L300", + "platformId": "U4325Z1", + "id": "01192454-cdae-4622-baba-5c7b62a6814c" + }, + { + "routeId": "L324", + "platformId": "U4325Z1", + "id": "0292807a-5a24-449f-99fa-19a1658ff6f8" + }, + { + "routeId": "L399", + "platformId": "U4325Z1", + "id": "97918a2b-d6f6-4e71-b875-286f70f2ee6e" + }, + { + "routeId": "L618", + "platformId": "U4325Z1", + "id": "950cab68-7c02-4223-99cb-c3147f6635a2" + }, + { + "routeId": "L600", + "platformId": "U4325Z1", + "id": "934bc93f-4e3b-4263-b332-b5866c10e719" + }, + { + "routeId": "L619", + "platformId": "U4325Z1", + "id": "4419b1b2-d00e-4081-acc0-c0ea36db5e6b" + }, + { + "routeId": "L555", + "platformId": "U4325Z1", + "id": "d66dd07f-e345-4581-bdf6-429f5a08cf4a" + }, + { + "routeId": "L629", + "platformId": "U4325Z1", + "id": "26985a06-27bb-4205-841f-5a6999f3a70a" + }, + { + "routeId": "L300", + "platformId": "U4325Z2", + "id": "dd44b0d1-6792-4f8d-a8f1-b9d48286b3ef" + }, + { + "routeId": "L324", + "platformId": "U4325Z2", + "id": "e06df357-52c7-4d5c-bdc6-454cd0cf20b4" + }, + { + "routeId": "L399", + "platformId": "U4325Z2", + "id": "68bdc630-0ef0-4587-b1ee-a2c869205875" + }, + { + "routeId": "L618", + "platformId": "U4325Z2", + "id": "be20a5e9-ff06-4b49-b44b-259a0a54dd55" + }, + { + "routeId": "L600", + "platformId": "U4325Z2", + "id": "d8c282f6-5f59-465c-9710-13f63f2dcdf7" + }, + { + "routeId": "L619", + "platformId": "U4325Z2", + "id": "0403573e-10a7-4331-94b8-c50a545217d8" + }, + { + "routeId": "L555", + "platformId": "U4325Z2", + "id": "99a8b715-c56d-47e9-80b0-c9ed2a5b2b89" + }, + { + "routeId": "L629", + "platformId": "U4325Z2", + "id": "a7a23633-6aea-4eba-9402-266b9f3776ca" + }, + { + "routeId": "L300", + "platformId": "U4327Z1", + "id": "6bd1da7e-c3da-4a74-8d97-ffbf0daed571" + }, + { + "routeId": "L300", + "platformId": "U4327Z2", + "id": "5ffff92a-cecb-4e24-b187-eda815a4ccd3" + }, + { + "routeId": "L300", + "platformId": "U4328Z1", + "id": "1cddc41c-1082-4f36-aaec-fc5948f70392" + }, + { + "routeId": "L300", + "platformId": "U4328Z2", + "id": "eb4ac156-4fcc-4025-abcb-46b6918ffbe1" + }, + { + "routeId": "L626", + "platformId": "U4329Z1", + "id": "b77d3fe2-c157-46ba-8609-c88090d57343" + }, + { + "routeId": "L620", + "platformId": "U4329Z1", + "id": "8696bc23-6803-4509-b6e0-c6165e7320f5" + }, + { + "routeId": "L626", + "platformId": "U4329Z2", + "id": "65ed20ac-0510-423d-9287-5a39298beae5" + }, + { + "routeId": "L620", + "platformId": "U4329Z2", + "id": "f96e9667-7f4b-4c58-8d26-6378952d2600" + }, + { + "routeId": "L250", + "platformId": "U432Z1", + "id": "5df30691-6f32-487e-8915-eed8834fcb30" + }, + { + "routeId": "L909", + "platformId": "U432Z1", + "id": "4ae87abf-35a6-4975-a136-94b5351445d1" + }, + { + "routeId": "L163", + "platformId": "U432Z1", + "id": "65e75b97-514e-47db-b6b3-c1a6086436ef" + }, + { + "routeId": "L221", + "platformId": "U432Z1", + "id": "cac76c38-818e-4b73-8241-1cec940da5df" + }, + { + "routeId": "L250", + "platformId": "U432Z2", + "id": "a485d1f1-a2f1-492a-ab53-6669b514a738" + }, + { + "routeId": "L909", + "platformId": "U432Z2", + "id": "d8747cfa-6fe2-48e0-bdd8-8c5c3b922a49" + }, + { + "routeId": "L163", + "platformId": "U432Z2", + "id": "83e53701-1cf3-41a6-becf-2c4bd86244ff" + }, + { + "routeId": "L221", + "platformId": "U432Z2", + "id": "15592ce4-8e64-471e-8718-fc6f2a1b8de1" + }, + { + "routeId": "L1040", + "platformId": "U4330Z301", + "id": "87f7273a-a5af-43e7-8c7d-bacc25840c4f" + }, + { + "routeId": "L307", + "platformId": "U4332Z1", + "id": "6e321978-fa2a-4dc8-b422-8ffc4ab3a9c5" + }, + { + "routeId": "L307", + "platformId": "U4332Z2", + "id": "08d64292-f34c-49f7-ab8a-94985c107103" + }, + { + "routeId": "L435", + "platformId": "U4335Z1", + "id": "a022eb0b-e826-4eaf-b456-5e86b799a8ec" + }, + { + "routeId": "L435", + "platformId": "U4335Z2", + "id": "dc0b92b6-f70e-47a1-813f-f76c19847cef" + }, + { + "routeId": "L633", + "platformId": "U4336Z1", + "id": "8962b4b5-8a04-4d0e-8e48-73a7709bf5f7" + }, + { + "routeId": "L631", + "platformId": "U4336Z1", + "id": "37f5f8a4-5174-46ab-af4a-ded91c9dec8b" + }, + { + "routeId": "L952", + "platformId": "U4336Z2", + "id": "87867675-1893-4157-99f4-a514f5f25435" + }, + { + "routeId": "L633", + "platformId": "U4336Z2", + "id": "4b6cecd1-ff78-4997-b11d-dc181998a29e" + }, + { + "routeId": "L631", + "platformId": "U4336Z2", + "id": "b96494c0-6bdc-42be-861e-1e19f0fccd4f" + }, + { + "routeId": "L638", + "platformId": "U4337Z1", + "id": "eca07019-bf05-4bf9-86d6-0266051e44b6" + }, + { + "routeId": "L633", + "platformId": "U4337Z1", + "id": "77cc52b7-130b-4f1b-831d-f49651281b42" + }, + { + "routeId": "L631", + "platformId": "U4337Z1", + "id": "db01e10b-2c12-4a1b-b82a-bd8d5c97c4e7" + }, + { + "routeId": "L637", + "platformId": "U4337Z1", + "id": "131a774a-55a0-43a0-bbd5-0ea19955c01b" + }, + { + "routeId": "L638", + "platformId": "U4337Z2", + "id": "24eebe36-9e16-4ad8-be67-72e8d10986bb" + }, + { + "routeId": "L633", + "platformId": "U4337Z2", + "id": "c8defc15-d0d8-4f42-a18c-2cbe580433bb" + }, + { + "routeId": "L631", + "platformId": "U4337Z2", + "id": "4b13c2c8-a7cf-45d8-9be0-1a512e0ca146" + }, + { + "routeId": "L637", + "platformId": "U4337Z2", + "id": "599e55e1-aa1d-46f9-81e1-1ebd6502e442" + }, + { + "routeId": "L562", + "platformId": "U4338Z1", + "id": "253f5555-1159-424b-b5b6-aaa53e9c2771" + }, + { + "routeId": "L760", + "platformId": "U4338Z1", + "id": "e3e4839c-e6bf-4341-a875-1eb2fd3e3ea5" + }, + { + "routeId": "L560", + "platformId": "U4338Z1", + "id": "aa576041-6127-4d7a-b712-ec8e2271f29a" + }, + { + "routeId": "L625", + "platformId": "U4338Z1", + "id": "24de91a1-1e0b-4f49-8cde-34e10828b7f1" + }, + { + "routeId": "L580", + "platformId": "U4338Z1", + "id": "32458730-89ce-4a91-936d-855dfef3b12d" + }, + { + "routeId": "L562", + "platformId": "U4338Z2", + "id": "549bc466-7be7-4580-a7d1-50574e5f25f5" + }, + { + "routeId": "L760", + "platformId": "U4338Z2", + "id": "5120254c-e864-453b-9d7e-c89ca27471f1" + }, + { + "routeId": "L560", + "platformId": "U4338Z2", + "id": "03eb4060-49ae-4b62-b6f8-453ee7a004b6" + }, + { + "routeId": "L625", + "platformId": "U4338Z2", + "id": "9b750d4f-428c-45dc-b5a1-7769109bba2d" + }, + { + "routeId": "L580", + "platformId": "U4338Z2", + "id": "ed1f1198-5581-4ed3-ab26-c3af12da0ef8" + }, + { + "routeId": "L18", + "platformId": "U433Z1", + "id": "4e62b66e-1da5-4949-b16d-7dcb400c4d31" + }, + { + "routeId": "L19", + "platformId": "U433Z1", + "id": "1ce0e106-3b34-4e48-88f4-a917bbdfce94" + }, + { + "routeId": "L93", + "platformId": "U433Z1", + "id": "d9d73765-7173-4a8b-a9db-5397a0231b8d" + }, + { + "routeId": "L18", + "platformId": "U433Z2", + "id": "be1573df-73e1-4204-9c75-92bdd55c0d4c" + }, + { + "routeId": "L19", + "platformId": "U433Z2", + "id": "26edb1d5-95d6-4ca3-aa7a-173d96253ec2" + }, + { + "routeId": "L93", + "platformId": "U433Z2", + "id": "22c1f9b0-5e6b-4d86-a249-0736ce5e38c8" + }, + { + "routeId": "L911", + "platformId": "U433Z3", + "id": "271c87ba-2554-4ffb-9d74-6bb627f0be8a" + }, + { + "routeId": "L911", + "platformId": "U433Z4", + "id": "6a1ecb20-8917-41db-b524-5dafa98a4ae7" + }, + { + "routeId": "L562", + "platformId": "U4340Z1", + "id": "aaed302a-dff5-4a48-8a6b-2ad0db506fb2" + }, + { + "routeId": "L760", + "platformId": "U4340Z1", + "id": "b5d38658-bdb0-440e-8503-248a4d31ceca" + }, + { + "routeId": "L560", + "platformId": "U4340Z1", + "id": "ee88a45c-62d3-4e21-ac4c-5308ff80b9d3" + }, + { + "routeId": "L625", + "platformId": "U4340Z1", + "id": "4bc7846b-34a3-4648-8f57-92563d3ad559" + }, + { + "routeId": "L580", + "platformId": "U4340Z1", + "id": "0fcba925-917a-4d6d-a903-67662dd5c958" + }, + { + "routeId": "L562", + "platformId": "U4340Z2", + "id": "6dd05934-d57b-4647-a3ae-e0eedd2da948" + }, + { + "routeId": "L760", + "platformId": "U4340Z2", + "id": "a3151d14-c168-4847-9770-a9a1d7eb0438" + }, + { + "routeId": "L560", + "platformId": "U4340Z2", + "id": "2e865731-a456-486a-b3e8-3980d566ec10" + }, + { + "routeId": "L625", + "platformId": "U4340Z2", + "id": "c753e2c4-3a43-4366-a366-730161ed016e" + }, + { + "routeId": "L580", + "platformId": "U4340Z2", + "id": "90855bbe-e54b-4b93-9f23-9566935e75a6" + }, + { + "routeId": "L431", + "platformId": "U4348Z2", + "id": "acd60c73-ece7-4847-b04f-9d2a53a71319" + }, + { + "routeId": "L442", + "platformId": "U4348Z2", + "id": "af19d9f8-b786-4f8f-9db1-2705887b3a8f" + }, + { + "routeId": "L1333", + "platformId": "U4349Z301", + "id": "8d8599d8-92f2-4461-a0af-a4a5e8bd392d" + }, + { + "routeId": "L244", + "platformId": "U434Z1", + "id": "69cc4c44-7448-4058-b357-30ca122a74b5" + }, + { + "routeId": "L248", + "platformId": "U434Z1", + "id": "4f2d792d-27cd-4a7a-9ad4-120a1be21053" + }, + { + "routeId": "L1333", + "platformId": "U4350Z301", + "id": "93c6ea3c-e6f8-4f99-8548-81a2d66ef354" + }, + { + "routeId": "L1333", + "platformId": "U4351Z301", + "id": "0233bf95-c028-4bb7-902a-121d68f374ff" + }, + { + "routeId": "L696", + "platformId": "U4352Z1", + "id": "57e0b7e5-dccb-486a-b09b-78d7c6d3b01a" + }, + { + "routeId": "L696", + "platformId": "U4352Z2", + "id": "6fc4c33c-4339-4d14-a9d2-6d1ac7b21f47" + }, + { + "routeId": "L695", + "platformId": "U4352Z3", + "id": "deb1c222-1499-4ccf-bf84-93503fa65f09" + }, + { + "routeId": "L1333", + "platformId": "U4352Z301", + "id": "7a85b906-f6b7-442e-93bf-422575513903" + }, + { + "routeId": "L695", + "platformId": "U4352Z4", + "id": "9f0c0dd0-5044-47ff-867f-e3fb0a8c2aba" + }, + { + "routeId": "L1333", + "platformId": "U4353Z301", + "id": "bf8dd660-f9c5-4782-9eee-0a4793cf5585" + }, + { + "routeId": "L696", + "platformId": "U4354Z1", + "id": "ac28804e-c2f1-458b-a0e5-d5defe3818f2" + }, + { + "routeId": "L696", + "platformId": "U4354Z2", + "id": "469ce6c8-5b23-4448-b679-4b562b3c54c6" + }, + { + "routeId": "L1333", + "platformId": "U4354Z301", + "id": "c3ccd8c5-fba2-4c87-8c8b-a962c87bfbe8" + }, + { + "routeId": "L668", + "platformId": "U4355Z1", + "id": "59835d75-565c-401d-920b-bbb1c976e12e" + }, + { + "routeId": "L696", + "platformId": "U4355Z1", + "id": "9d09862a-1326-4360-9f9e-fc9571573298" + }, + { + "routeId": "L668", + "platformId": "U4355Z2", + "id": "67ee33c3-7a80-42b2-b3e6-64627a74e7ac" + }, + { + "routeId": "L696", + "platformId": "U4355Z2", + "id": "1488b9b3-8c17-4cfc-9f81-4a528a9bc442" + }, + { + "routeId": "L1333", + "platformId": "U4355Z301", + "id": "73c64196-6c74-443d-805d-ffcf23616e24" + }, + { + "routeId": "L695", + "platformId": "U4356Z1", + "id": "e6794958-5463-4cb5-aba9-d737d6368f93" + }, + { + "routeId": "L695", + "platformId": "U4356Z2", + "id": "fee6db3c-e819-401a-a9fe-4e2aaf6de483" + }, + { + "routeId": "L695", + "platformId": "U4356Z3", + "id": "f1812b0b-eab7-4e2f-bcce-423ec8e73225" + }, + { + "routeId": "L1333", + "platformId": "U4356Z301", + "id": "170367d2-9cc3-43c8-b2e1-c19f480a7f41" + }, + { + "routeId": "L229", + "platformId": "U435Z1", + "id": "db0d5055-3a16-4e60-8dd4-6c3bb66168b1" + }, + { + "routeId": "L903", + "platformId": "U435Z1", + "id": "30a5dea6-2257-433e-be99-d0f3030c6d6c" + }, + { + "routeId": "L366", + "platformId": "U435Z1", + "id": "ecbc4bf7-b78a-4031-93de-019106ed32cb" + }, + { + "routeId": "L364", + "platformId": "U435Z1", + "id": "d1782257-76dd-46a3-8efc-ac587ce5efc5" + }, + { + "routeId": "L229", + "platformId": "U435Z2", + "id": "004f456a-16d1-473f-a36c-eab6e2c4ceab" + }, + { + "routeId": "L903", + "platformId": "U435Z2", + "id": "367ee1d2-9ac4-4d06-9413-e8e2df071b98" + }, + { + "routeId": "L366", + "platformId": "U435Z2", + "id": "1e9923ef-4fa4-4929-ac2d-bbb3c0ad6b79" + }, + { + "routeId": "L364", + "platformId": "U435Z2", + "id": "4a1698d0-a72d-4278-9dcc-e7baddb3b400" + }, + { + "routeId": "L227", + "platformId": "U435Z3", + "id": "d40af628-27bd-4fcd-b2a0-b685e657e608" + }, + { + "routeId": "L226", + "platformId": "U435Z3", + "id": "1b51b498-a353-42ce-b195-40c0eb5be558" + }, + { + "routeId": "L382", + "platformId": "U435Z3", + "id": "3f83b1d2-7372-431a-8e09-c0c58ac42199" + }, + { + "routeId": "L383", + "platformId": "U435Z3", + "id": "4758dc9c-7906-495f-808a-e422ab13b85a" + }, + { + "routeId": "L959", + "platformId": "U435Z3", + "id": "a4c0c445-6afe-4fd6-ad49-6aae59f86784" + }, + { + "routeId": "L226", + "platformId": "U435Z4", + "id": "01758b8c-c1a7-431f-86e9-e6d634e94453" + }, + { + "routeId": "L227", + "platformId": "U435Z4", + "id": "d03d0743-77e7-447b-b0ef-bd833957bf58" + }, + { + "routeId": "L382", + "platformId": "U435Z4", + "id": "74f61e11-278e-4c15-8c98-6d3b5853dcf7" + }, + { + "routeId": "L383", + "platformId": "U435Z4", + "id": "07b89b8c-e0a6-40dd-a976-880737be5a20" + }, + { + "routeId": "L959", + "platformId": "U435Z4", + "id": "280e9bcc-c41a-4e2f-8071-ccc06635495e" + }, + { + "routeId": "L307", + "platformId": "U4362Z1", + "id": "15d4e1ce-0d83-4d2c-8c5f-456301e1ecba" + }, + { + "routeId": "L307", + "platformId": "U4362Z2", + "id": "60a145f8-5277-4584-b660-f31879575c70" + }, + { + "routeId": "L466", + "platformId": "U4363Z1", + "id": "7090cb43-b248-4281-b13c-18c7eba59add" + }, + { + "routeId": "L413", + "platformId": "U4363Z1", + "id": "b3e18581-bf08-4401-a24e-8a933d153045" + }, + { + "routeId": "L466", + "platformId": "U4363Z2", + "id": "3c3f935f-7879-4f66-8b3f-cd2d8a9fd0b0" + }, + { + "routeId": "L413", + "platformId": "U4363Z2", + "id": "e0d277e0-a3f0-490d-9c79-7b96fec9096c" + }, + { + "routeId": "L413", + "platformId": "U4364Z1", + "id": "bf2b6806-6c47-4ea9-ad64-79f9f1e24385" + }, + { + "routeId": "L646", + "platformId": "U4364Z1", + "id": "43e89cb3-8242-47c3-bab2-88c056a7a964" + }, + { + "routeId": "L617", + "platformId": "U4364Z2", + "id": "f040357d-bfa9-4898-aaca-1fb83830506d" + }, + { + "routeId": "L413", + "platformId": "U4364Z2", + "id": "f26912eb-3c78-45d0-8817-fdab76cd19a1" + }, + { + "routeId": "L646", + "platformId": "U4364Z2", + "id": "b5933c2b-c2d7-4833-9cf2-887dcf8b649e" + }, + { + "routeId": "L466", + "platformId": "U4364Z3", + "id": "67a79049-9685-4590-be45-949f54e4f42d" + }, + { + "routeId": "L413", + "platformId": "U4365Z1", + "id": "47f1a143-188d-4290-bd06-e5f835a1591c" + }, + { + "routeId": "L646", + "platformId": "U4365Z1", + "id": "a7b49075-3551-4515-8625-4ba3683fc80b" + }, + { + "routeId": "L413", + "platformId": "U4365Z2", + "id": "e12a426a-15ba-4e04-a099-203d11bfc79a" + }, + { + "routeId": "L646", + "platformId": "U4365Z2", + "id": "975fec1d-7ff0-4f5e-8e59-8e07ba2a640f" + }, + { + "routeId": "L646", + "platformId": "U4366Z1", + "id": "265e7bad-8689-4655-93ad-e37a809db533" + }, + { + "routeId": "L413", + "platformId": "U4366Z2", + "id": "0780962b-7b47-421f-bac3-6cd84d159708" + }, + { + "routeId": "L646", + "platformId": "U4366Z2", + "id": "418058b1-8d3d-4b8e-8035-1fb27a7cc6f6" + }, + { + "routeId": "L646", + "platformId": "U4367Z2", + "id": "1ed95db9-37ec-4414-b222-64b67e3162a0" + }, + { + "routeId": "L463", + "platformId": "U4368Z1", + "id": "d910b9d3-5c92-4f00-b7ee-578df2076daa" + }, + { + "routeId": "L463", + "platformId": "U4368Z2", + "id": "66f8f7f1-9806-4c75-bb8d-50f0cad366c1" + }, + { + "routeId": "L775", + "platformId": "U4368Z3", + "id": "b748b491-8f39-4b95-9eaa-cac9065786a7" + }, + { + "routeId": "L775", + "platformId": "U4368Z4", + "id": "577d2af7-ce50-4e7b-aa1d-4e4f8496cbcf" + }, + { + "routeId": "L170", + "platformId": "U436Z1", + "id": "1f9e77e5-6bb1-408f-ac82-e2dac17bfbf2" + }, + { + "routeId": "L170", + "platformId": "U436Z2", + "id": "df802dcb-8be0-452b-a6d0-d2eb6ac64297" + }, + { + "routeId": "L466", + "platformId": "U4371Z1", + "id": "67f27b16-05d9-4feb-a435-bf514c39b84f" + }, + { + "routeId": "L466", + "platformId": "U4371Z2", + "id": "bfde4cb4-2f65-4d69-884f-e6646ec0234c" + }, + { + "routeId": "L466", + "platformId": "U4372Z1", + "id": "c7d4fba4-efea-4017-b5b1-c88855c4dfbb" + }, + { + "routeId": "L466", + "platformId": "U4372Z2", + "id": "d4ccfb7b-d28b-4eff-b149-83f67162a77e" + }, + { + "routeId": "L466", + "platformId": "U4373Z1", + "id": "591a7908-5547-410b-a3ef-276d7f72b8d7" + }, + { + "routeId": "L466", + "platformId": "U4373Z2", + "id": "78abfbe0-3089-4a34-8ae3-a21b3f21ca2c" + }, + { + "routeId": "L466", + "platformId": "U4374Z1", + "id": "fcea6c2d-55e4-44e7-b54a-9f7a7d75304b" + }, + { + "routeId": "L466", + "platformId": "U4374Z2", + "id": "294c354b-7853-4a87-9e90-75a718cf62b2" + }, + { + "routeId": "L466", + "platformId": "U4376Z1", + "id": "db404976-ca73-4265-ad45-f9590a26dff9" + }, + { + "routeId": "L130", + "platformId": "U437Z1", + "id": "d653dc18-93fe-4a6f-86a5-a7b61fc73381" + }, + { + "routeId": "L130", + "platformId": "U437Z2", + "id": "81358958-3065-49c9-9e35-dfd1417ed112" + }, + { + "routeId": "L105", + "platformId": "U437Z3", + "id": "ed0f9ae4-f926-466d-9ce4-efc05fc2789a" + }, + { + "routeId": "L466", + "platformId": "U4383Z1", + "id": "35c83829-0179-4558-9872-326b94762768" + }, + { + "routeId": "L466", + "platformId": "U4383Z2", + "id": "9344955d-1ed7-4ed5-b9f7-1825a99e3189" + }, + { + "routeId": "L466", + "platformId": "U4384Z1", + "id": "ab2b4400-40f4-4a31-8451-f6f87c11d6e5" + }, + { + "routeId": "L466", + "platformId": "U4385Z1", + "id": "5b405f93-4789-49f6-a788-59a46adbbc61" + }, + { + "routeId": "L466", + "platformId": "U4385Z2", + "id": "a15250fb-f130-4287-83d6-223e546c8bf6" + }, + { + "routeId": "L434", + "platformId": "U4386Z1", + "id": "1bc54704-8f3a-408b-9629-20560a266360" + }, + { + "routeId": "L432", + "platformId": "U4386Z1", + "id": "6d067bfa-aba3-486f-acc2-b4c06ff40b3c" + }, + { + "routeId": "L434", + "platformId": "U4386Z2", + "id": "747179a7-fd55-4dcf-917c-e581d7ec71d4" + }, + { + "routeId": "L432", + "platformId": "U4386Z2", + "id": "a35bba83-8004-44b1-9dba-d238937628a6" + }, + { + "routeId": "L306", + "platformId": "U4389Z1", + "id": "daef5556-0231-439f-8a0d-cce5617b3d41" + }, + { + "routeId": "L306", + "platformId": "U4389Z2", + "id": "42718008-0e7f-4775-a74d-e85d35c3f6f9" + }, + { + "routeId": "L204", + "platformId": "U438Z1", + "id": "edeea27f-3446-47ec-aa8d-eebc2ab9b083" + }, + { + "routeId": "L221", + "platformId": "U438Z1", + "id": "e80fd207-d73e-4585-9ae9-bd13f1a461c6" + }, + { + "routeId": "L204", + "platformId": "U438Z2", + "id": "312e9ddf-c277-4e6d-aa58-edc03904a7ea" + }, + { + "routeId": "L221", + "platformId": "U438Z2", + "id": "dee60a73-6960-4903-a762-dbc449a239f1" + }, + { + "routeId": "L306", + "platformId": "U4390Z1", + "id": "1e386a0f-3aeb-441b-b0eb-3ab8fe4e1190" + }, + { + "routeId": "L306", + "platformId": "U4390Z2", + "id": "5114e89a-c65b-41c3-a0f7-107017c06540" + }, + { + "routeId": "L322", + "platformId": "U4391Z1", + "id": "0b0ae797-8305-4fd0-a120-7af60fe7c924" + }, + { + "routeId": "L322", + "platformId": "U4391Z2", + "id": "e590e022-60e8-441c-8501-e5108b94f909" + }, + { + "routeId": "L306", + "platformId": "U4391Z3", + "id": "4a469c95-c2e9-4bb4-ba80-6f1f44489f7d" + }, + { + "routeId": "L306", + "platformId": "U4391Z4", + "id": "1ad9bb11-913e-49f7-a49f-5e79767a6595" + }, + { + "routeId": "L322", + "platformId": "U4392Z1", + "id": "d05921ef-beb1-497b-aa29-3250c200d22a" + }, + { + "routeId": "L322", + "platformId": "U4392Z2", + "id": "37e9c63f-3735-4612-9658-9656d41351e0" + }, + { + "routeId": "L322", + "platformId": "U4393Z1", + "id": "b6948ca0-dac6-4cb0-9fe1-648808867661" + }, + { + "routeId": "L322", + "platformId": "U4393Z2", + "id": "35be494d-5c57-4b13-8234-e704c369fbbc" + }, + { + "routeId": "L322", + "platformId": "U4394Z1", + "id": "56702797-d450-4cc1-94b6-5be5ee372ecd" + }, + { + "routeId": "L322", + "platformId": "U4394Z2", + "id": "ab08f05b-c84b-4d84-b7b1-f78dd147328b" + }, + { + "routeId": "L342", + "platformId": "U4396Z1", + "id": "fb9c507d-110e-48e8-ac90-dc8eb8ba862d" + }, + { + "routeId": "L323", + "platformId": "U4396Z1", + "id": "65b28f9c-2845-4930-bd3d-265bf05d9cc5" + }, + { + "routeId": "L342", + "platformId": "U4396Z2", + "id": "58068cd0-a280-4eca-aad5-0b7140fe69f1" + }, + { + "routeId": "L323", + "platformId": "U4396Z2", + "id": "bb19d976-c3f7-485e-917e-6ee406bc6435" + }, + { + "routeId": "L342", + "platformId": "U4397Z1", + "id": "641a0cd4-a8e8-494e-9924-180716f83baf" + }, + { + "routeId": "L342", + "platformId": "U4397Z2", + "id": "03cab236-c5ed-4f4a-acf3-1434b144564b" + }, + { + "routeId": "L629", + "platformId": "U4398Z1", + "id": "65be11ec-4070-4cc4-b2b7-252bc6ae8663" + }, + { + "routeId": "L342", + "platformId": "U4398Z1", + "id": "37b4c9f9-87eb-41ac-a562-590923b3f9ac" + }, + { + "routeId": "L622", + "platformId": "U4398Z1", + "id": "1b7b5b29-3eca-41c2-af76-f039f0644e42" + }, + { + "routeId": "L629", + "platformId": "U4398Z2", + "id": "e929993e-920b-4433-9d21-76dbff765270" + }, + { + "routeId": "L342", + "platformId": "U4398Z2", + "id": "81f8a979-b842-40f4-9933-b5c5f92d1241" + }, + { + "routeId": "L622", + "platformId": "U4398Z2", + "id": "3f402f9b-c286-4ada-98fb-939250eff769" + }, + { + "routeId": "L629", + "platformId": "U4399Z1", + "id": "18a1a575-30ff-4f9c-b486-7673d0e102cc" + }, + { + "routeId": "L622", + "platformId": "U4399Z1", + "id": "00dac60c-88b0-4a7c-b624-99bd9eab43c6" + }, + { + "routeId": "L629", + "platformId": "U4399Z2", + "id": "ebab2c7b-0a1d-4c2c-80ca-7d72b1952da4" + }, + { + "routeId": "L622", + "platformId": "U4399Z2", + "id": "54a70abc-0760-4d13-bbaf-bb12bd132879" + }, + { + "routeId": "L6", + "platformId": "U439Z1", + "id": "ab0738d5-75f6-48bd-a6b3-a3dff1409622" + }, + { + "routeId": "L8", + "platformId": "U439Z1", + "id": "60a6c42a-5525-465a-b412-23c1ede51e0f" + }, + { + "routeId": "L17", + "platformId": "U439Z1", + "id": "ad43ef33-15f5-42d7-b72a-7bab1df0bb4f" + }, + { + "routeId": "L27", + "platformId": "U439Z1", + "id": "f78a15ba-50c0-4fcb-b2d6-26b769e0f7f2" + }, + { + "routeId": "L26", + "platformId": "U439Z1", + "id": "4ffd45e8-7af2-4918-9d82-6fc5120a7432" + }, + { + "routeId": "L91", + "platformId": "U439Z1", + "id": "9d61a8d4-a6aa-4533-b1c8-b887de3f101d" + }, + { + "routeId": "L93", + "platformId": "U439Z1", + "id": "7dfef2ba-5ec1-4f78-be18-c703f321dc73" + }, + { + "routeId": "L96", + "platformId": "U439Z1", + "id": "37f25823-d851-4e52-bd10-9b9de9b1c35a" + }, + { + "routeId": "L126", + "platformId": "U43Z1", + "id": "c7e6c3db-780d-4702-8cee-e712078c015f" + }, + { + "routeId": "L170", + "platformId": "U43Z1", + "id": "bf3e84f4-4ab1-4247-9b53-d16abfadc750" + }, + { + "routeId": "L905", + "platformId": "U43Z1", + "id": "38e629e8-2f14-41ed-9671-2e4cdfea101f" + }, + { + "routeId": "L203", + "platformId": "U43Z1", + "id": "0e2ac799-381f-4419-81c9-12e4b025a98a" + }, + { + "routeId": "L126", + "platformId": "U43Z2", + "id": "58803f63-aee2-48a6-a86c-ebeecb3f19b0" + }, + { + "routeId": "L170", + "platformId": "U43Z2", + "id": "57178dd4-f4ea-40d7-950d-8e1e43656c84" + }, + { + "routeId": "L905", + "platformId": "U43Z2", + "id": "304f3bfb-520c-41fe-838c-42e2bac171ad" + }, + { + "routeId": "L203", + "platformId": "U43Z2", + "id": "7255826d-9a3e-4768-9549-0c0ec0a651ad" + }, + { + "routeId": "L342", + "platformId": "U4400Z1", + "id": "6a890106-887c-4d19-96e8-6eeaa453d3ce" + }, + { + "routeId": "L323", + "platformId": "U4400Z1", + "id": "6fe7d96b-1d81-4bc7-8290-7ed43662051e" + }, + { + "routeId": "L323", + "platformId": "U4400Z2", + "id": "0d6659ab-3fbf-4f0c-be8d-8c26970148a1" + }, + { + "routeId": "L350", + "platformId": "U4401Z1", + "id": "ddbf673e-a0fb-46b7-86ff-aea8a4e28ca9" + }, + { + "routeId": "L323", + "platformId": "U4401Z1", + "id": "89cef289-766c-4eb9-9b2d-4c740e02b2da" + }, + { + "routeId": "L954", + "platformId": "U4401Z2", + "id": "480fe285-1727-46e5-9d14-59e88e52db58" + }, + { + "routeId": "L323", + "platformId": "U4401Z2", + "id": "4b9f250e-8eca-4758-bae2-bc928e63399e" + }, + { + "routeId": "L350", + "platformId": "U4402Z1", + "id": "b770f0d8-ccff-47dd-a0ab-c159648ee2a9" + }, + { + "routeId": "L323", + "platformId": "U4402Z1", + "id": "7782233d-ea60-48fc-a922-0b256a083c1d" + }, + { + "routeId": "L350", + "platformId": "U4402Z2", + "id": "f156cab2-c163-4ce5-9f77-25371c3796ed" + }, + { + "routeId": "L954", + "platformId": "U4402Z2", + "id": "0b60d517-6403-4d4e-9238-deaddb666aab" + }, + { + "routeId": "L323", + "platformId": "U4402Z2", + "id": "f01b7022-9972-4448-88e4-852905f356fe" + }, + { + "routeId": "L350", + "platformId": "U4403Z1", + "id": "7a859e34-41da-4b73-aa04-2a8915370557" + }, + { + "routeId": "L323", + "platformId": "U4403Z1", + "id": "4ac15760-70f1-4f0f-9bc1-a9825be80934" + }, + { + "routeId": "L323", + "platformId": "U4404Z1", + "id": "e403ec5b-7129-4f93-8cea-333f2b0e4643" + }, + { + "routeId": "L622", + "platformId": "U4404Z1", + "id": "5e276216-8c97-4dfc-a42d-7a25392359b4" + }, + { + "routeId": "L323", + "platformId": "U4404Z2", + "id": "b3358d23-92b3-405c-aad7-b506f5a21506" + }, + { + "routeId": "L622", + "platformId": "U4404Z2", + "id": "9a53a08c-ce7f-43b6-bd17-7011279e1a2f" + }, + { + "routeId": "L323", + "platformId": "U4405Z1", + "id": "ef32f842-c016-4ed7-a32a-3da748cf6c12" + }, + { + "routeId": "L323", + "platformId": "U4405Z2", + "id": "d11c2327-ffa1-4e32-aa23-130a8349ea69" + }, + { + "routeId": "L323", + "platformId": "U4406Z1", + "id": "7b03b7f1-176c-4c80-86be-17e7f44e2fec" + }, + { + "routeId": "L323", + "platformId": "U4406Z2", + "id": "fdb2535f-faf0-4b32-98e6-99efd341e266" + }, + { + "routeId": "L323", + "platformId": "U4407Z1", + "id": "28ffe4e1-18fe-4fc0-a6d9-a43a6cba5029" + }, + { + "routeId": "L323", + "platformId": "U4407Z2", + "id": "44da086c-62ec-4784-b0a3-f8e539163de9" + }, + { + "routeId": "L323", + "platformId": "U4408Z1", + "id": "0cff7388-6fdf-405b-bc78-53096d7f1f60" + }, + { + "routeId": "L323", + "platformId": "U4408Z2", + "id": "ab7e3331-5f22-454e-9c31-ee18c1f104af" + }, + { + "routeId": "L323", + "platformId": "U4409Z1", + "id": "2eb71753-4dba-41ed-a53e-fb559ce5fab4" + }, + { + "routeId": "L620", + "platformId": "U4409Z2", + "id": "c22552a9-2903-4409-8bb9-f2cf2900f125" + }, + { + "routeId": "L323", + "platformId": "U4409Z2", + "id": "1c0a1140-d968-427e-9c23-d529b15ae307" + }, + { + "routeId": "L620", + "platformId": "U4409Z3", + "id": "bc00ffa7-d01f-435b-9992-7cafbed2e3db" + }, + { + "routeId": "L323", + "platformId": "U4409Z3", + "id": "bbd071a3-f55b-4428-af39-9b895769006c" + }, + { + "routeId": "L2254", + "platformId": "U4409Z401", + "id": "dc19b4f3-01f8-4551-81c2-7eb09027067d" + }, + { + "routeId": "L2254", + "platformId": "U4409Z403", + "id": "a986e0a2-f886-402a-b4b7-fa6fc62d733c" + }, + { + "routeId": "L161", + "platformId": "U440Z1", + "id": "d60ea2a2-b824-4573-9a51-97b816bd0f48" + }, + { + "routeId": "L907", + "platformId": "U440Z1", + "id": "9a4ce2fc-4b10-403e-b151-d1333cd6a0ac" + }, + { + "routeId": "L312", + "platformId": "U440Z1", + "id": "e08e9059-5435-4dd0-a69d-b0af2bb3a29a" + }, + { + "routeId": "L161", + "platformId": "U440Z2", + "id": "8c4891fd-65dd-4db7-ad0a-bb4c4baf04bb" + }, + { + "routeId": "L907", + "platformId": "U440Z2", + "id": "5a9dedbd-9a61-4e74-ae07-3dbe22b8bd48" + }, + { + "routeId": "L312", + "platformId": "U440Z2", + "id": "dce64708-f560-4f46-a92d-0787b81166b0" + }, + { + "routeId": "L626", + "platformId": "U4411Z1", + "id": "dde48fc3-e051-42ce-af10-f0a40c5165f7" + }, + { + "routeId": "L616", + "platformId": "U4411Z1", + "id": "e150ebf2-7727-4531-9ab2-6215521fc3f9" + }, + { + "routeId": "L620", + "platformId": "U4411Z1", + "id": "7cd910ea-f2b1-49c6-bbf5-a0be4db3e1d5" + }, + { + "routeId": "L622", + "platformId": "U4411Z1", + "id": "076fae8e-5f1c-40b1-9e14-179a23996435" + }, + { + "routeId": "L626", + "platformId": "U4411Z2", + "id": "4d658b6c-70ac-47b7-bcc4-b16d7028d695" + }, + { + "routeId": "L616", + "platformId": "U4411Z2", + "id": "bea09855-4383-4ea2-a5c7-3c446e8f8733" + }, + { + "routeId": "L620", + "platformId": "U4411Z2", + "id": "0583bedf-edc2-428e-8df7-17400d7f8ed0" + }, + { + "routeId": "L622", + "platformId": "U4411Z2", + "id": "e1d9bfd9-a2c7-4f77-8186-4f0c9265d406" + }, + { + "routeId": "L626", + "platformId": "U4412Z1", + "id": "7bb7112e-5984-4b49-a597-bde145983a89" + }, + { + "routeId": "L616", + "platformId": "U4412Z1", + "id": "e170fc50-31e3-4c01-8369-5460b0c4bd9b" + }, + { + "routeId": "L620", + "platformId": "U4412Z1", + "id": "cb4ae2bd-c6e1-48c8-be2a-0f06cd2528e4" + }, + { + "routeId": "L626", + "platformId": "U4412Z2", + "id": "7ecd807d-4b1a-4a40-b7d1-3881ec9b9daa" + }, + { + "routeId": "L616", + "platformId": "U4412Z2", + "id": "95ea6cbf-b0df-4bf8-9051-1c5f40c06cd4" + }, + { + "routeId": "L620", + "platformId": "U4412Z2", + "id": "04924664-37dd-4529-aca3-382713bfcb17" + }, + { + "routeId": "L620", + "platformId": "U4413Z1", + "id": "35905a82-586a-416e-bf4c-1e266ba8e8df" + }, + { + "routeId": "L620", + "platformId": "U4413Z2", + "id": "34b2fd69-5f7b-4c64-a083-93d568608dc7" + }, + { + "routeId": "L620", + "platformId": "U4414Z1", + "id": "e7c87579-b90e-44c1-a585-a7fb949c18f5" + }, + { + "routeId": "L620", + "platformId": "U4414Z2", + "id": "999ffd5a-31e6-40d5-b21b-26b1d355c1c4" + }, + { + "routeId": "L620", + "platformId": "U4415Z1", + "id": "4b027e12-451b-4630-acbb-8477af2b64b5" + }, + { + "routeId": "L620", + "platformId": "U4415Z2", + "id": "762933e3-805c-43f3-b667-d46a0f8e58c5" + }, + { + "routeId": "L620", + "platformId": "U4416Z1", + "id": "a860ef86-0928-4d26-a56f-5a8a69ffb54c" + }, + { + "routeId": "L620", + "platformId": "U4416Z2", + "id": "c479b28e-2627-4228-bcc2-d9e0c3536813" + }, + { + "routeId": "L342", + "platformId": "U4417Z1", + "id": "d229c98b-e379-48ed-8cee-ea2f0979813c" + }, + { + "routeId": "L620", + "platformId": "U4417Z1", + "id": "7d062acf-18b7-420f-af63-cf292177b871" + }, + { + "routeId": "L342", + "platformId": "U4417Z2", + "id": "63d7d974-237c-49c3-9fda-64150243456b" + }, + { + "routeId": "L620", + "platformId": "U4417Z2", + "id": "c46a8e64-a341-4843-84c3-8ba501f41d26" + }, + { + "routeId": "L342", + "platformId": "U4418Z1", + "id": "5e9d5087-f0e3-419c-aca0-4c296d8712e4" + }, + { + "routeId": "L620", + "platformId": "U4418Z1", + "id": "b3c80388-1372-4d77-92a2-badbbdd36d36" + }, + { + "routeId": "L342", + "platformId": "U4418Z2", + "id": "075c4752-8b6a-4392-92ab-d58b265b8530" + }, + { + "routeId": "L620", + "platformId": "U4418Z2", + "id": "5cc7a60c-c55c-4bec-a2f7-e6fd94bf1502" + }, + { + "routeId": "L620", + "platformId": "U4419Z1", + "id": "af148f05-e830-4207-803c-9bee10e1f9af" + }, + { + "routeId": "L620", + "platformId": "U4419Z2", + "id": "05328c19-f9da-4669-a1ca-23a07b34d8b7" + }, + { + "routeId": "L117", + "platformId": "U441Z1", + "id": "4a894a15-60c4-46bf-a9ed-61f117d9c594" + }, + { + "routeId": "L203", + "platformId": "U441Z1", + "id": "0d5a04c6-7353-4a02-8535-41a643530ff2" + }, + { + "routeId": "L117", + "platformId": "U441Z2", + "id": "c3941510-72d3-47b3-9446-c569e0a88a7b" + }, + { + "routeId": "L203", + "platformId": "U441Z2", + "id": "39d59b16-f9c8-4094-bf49-26bf07b8134e" + }, + { + "routeId": "L620", + "platformId": "U4420Z1", + "id": "b1551d56-e55d-40aa-977e-de9ef8ad46fd" + }, + { + "routeId": "L620", + "platformId": "U4420Z2", + "id": "7707ea07-233e-46be-b6fc-ffd8961c4312" + }, + { + "routeId": "L620", + "platformId": "U4421Z1", + "id": "d1865ef7-b161-4332-9eda-c47f3fc9cfd4" + }, + { + "routeId": "L620", + "platformId": "U4421Z2", + "id": "2b269089-ffaf-47c8-9750-c6008a25ede8" + }, + { + "routeId": "L620", + "platformId": "U4422Z1", + "id": "58a79e43-228a-4a4e-80be-1ff2f1be0fc3" + }, + { + "routeId": "L620", + "platformId": "U4422Z2", + "id": "ebefc31b-0946-4f8a-ad6a-241d03c9dc54" + }, + { + "routeId": "L620", + "platformId": "U4423Z1", + "id": "25951a40-70fe-481b-9742-86c5fd801f32" + }, + { + "routeId": "L620", + "platformId": "U4423Z2", + "id": "763b808a-04d1-490c-b0ef-3d9aa7576afe" + }, + { + "routeId": "L620", + "platformId": "U4424Z1", + "id": "3e3739ad-cab5-4df2-89db-f14cafe204e7" + }, + { + "routeId": "L113", + "platformId": "U4428Z1", + "id": "d5f31ee5-5ef2-4166-b0e8-db9ef624b297" + }, + { + "routeId": "L913", + "platformId": "U4428Z1", + "id": "f4fcf5e7-fa41-4d03-885d-9b8e0c4360a8" + }, + { + "routeId": "L113", + "platformId": "U4428Z2", + "id": "850fd81a-270f-4226-bffd-e387a6f18f71" + }, + { + "routeId": "L913", + "platformId": "U4428Z2", + "id": "f38a80bb-19f4-40c1-a6da-b17355d9906b" + }, + { + "routeId": "L1022", + "platformId": "U4429Z301", + "id": "155e2809-31e0-484c-bdbb-6d1cc501ec5d" + }, + { + "routeId": "L183", + "platformId": "U442Z1", + "id": "9e1fa762-a120-44c2-9c01-a58635c55eb3" + }, + { + "routeId": "L195", + "platformId": "U442Z1", + "id": "54ca83c2-ac26-4f06-a505-88ca581c1e09" + }, + { + "routeId": "L913", + "platformId": "U442Z1", + "id": "c582531d-96ed-47a4-8d7c-8de60bf8f301" + }, + { + "routeId": "L183", + "platformId": "U442Z2", + "id": "22ad5648-460a-4663-aac5-4bd62130158d" + }, + { + "routeId": "L195", + "platformId": "U442Z2", + "id": "c9a92674-2af4-438f-a9a1-3e4bc17f39e0" + }, + { + "routeId": "L913", + "platformId": "U442Z2", + "id": "846457db-a73a-4868-b675-5738813517fd" + }, + { + "routeId": "L1022", + "platformId": "U4430Z301", + "id": "50273f54-04ed-40a3-b651-1fc372007c59" + }, + { + "routeId": "L646", + "platformId": "U4432Z1", + "id": "de98df95-18ab-423b-a944-c2095d791e95" + }, + { + "routeId": "L646", + "platformId": "U4432Z2", + "id": "6c148c22-c084-41b4-9b8d-bd38556f9f32" + }, + { + "routeId": "L1022", + "platformId": "U4432Z301", + "id": "7d915b69-6fd9-4e90-95b5-7fbf3143d02a" + }, + { + "routeId": "L1022", + "platformId": "U4433Z301", + "id": "570237d6-3858-4666-b64a-99690223b55b" + }, + { + "routeId": "L1021", + "platformId": "U4433Z301", + "id": "751035fa-eee3-48aa-a95c-b6fa6e0dc1a7" + }, + { + "routeId": "L1022", + "platformId": "U4434Z301", + "id": "d8a42c34-e89a-4bf5-b263-554e31284c44" + }, + { + "routeId": "L1021", + "platformId": "U4434Z301", + "id": "b9db15c3-66ad-45a7-84e6-dfb903968a6e" + }, + { + "routeId": "L209", + "platformId": "U4435Z1", + "id": "dfe9c58d-d9ae-408e-b0ce-083295602570" + }, + { + "routeId": "L376", + "platformId": "U4435Z1", + "id": "a1c81638-7ad6-430b-89fd-7189597748f9" + }, + { + "routeId": "L209", + "platformId": "U4435Z2", + "id": "8ae9ab8a-f483-4208-9794-4dccbe1da30c" + }, + { + "routeId": "L327", + "platformId": "U4437Z1", + "id": "dd096624-774a-484a-be49-111445ba9b0c" + }, + { + "routeId": "L331", + "platformId": "U4437Z1", + "id": "45b7b29c-f1bc-4f39-968f-ee97f408d743" + }, + { + "routeId": "L327", + "platformId": "U4437Z2", + "id": "c916f201-b92d-4521-99c9-0964b95e74e0" + }, + { + "routeId": "L331", + "platformId": "U4437Z2", + "id": "d22f54cf-6aac-4204-9182-c007d50cf342" + }, + { + "routeId": "L650", + "platformId": "U4438Z1", + "id": "758faa6a-2287-4640-b601-a822ca94211c" + }, + { + "routeId": "L650", + "platformId": "U4438Z2", + "id": "9be5ca90-7143-489c-a4ce-c85f995887a2" + }, + { + "routeId": "L386", + "platformId": "U4439Z1", + "id": "e0bad31f-bfe4-43c6-baa7-68c86c54d0c0" + }, + { + "routeId": "L386", + "platformId": "U4439Z2", + "id": "3a47d528-5f65-456f-b4bf-eec387d67535" + }, + { + "routeId": "L149", + "platformId": "U443Z1", + "id": "86a19427-3f55-4bdb-b8bd-f3d58d2aea4d" + }, + { + "routeId": "L191", + "platformId": "U443Z1", + "id": "10983f5e-ed2d-481b-adf4-f6bf11662f57" + }, + { + "routeId": "L149", + "platformId": "U443Z2", + "id": "51413174-9f3e-403d-ae70-145c60af3a18" + }, + { + "routeId": "L191", + "platformId": "U443Z2", + "id": "41989b28-dd23-4166-94d7-8fc91c0a14ea" + }, + { + "routeId": "L467", + "platformId": "U4441Z1", + "id": "6dbf1acb-15c1-4b5b-9f04-b088b21f2eab" + }, + { + "routeId": "L467", + "platformId": "U4441Z2", + "id": "df5b193a-91a6-4555-a514-ad79b81d70f1" + }, + { + "routeId": "L401", + "platformId": "U4442Z1", + "id": "0f030f6b-1f02-4529-90d6-053a573a49f5" + }, + { + "routeId": "L452", + "platformId": "U4442Z1", + "id": "862dc7b6-c1f2-4bc9-9b24-6b6c0a18823b" + }, + { + "routeId": "L553", + "platformId": "U4442Z1", + "id": "3b592344-c571-430b-ac33-604ab8d88c35" + }, + { + "routeId": "L755", + "platformId": "U4442Z1", + "id": "ac2365d6-0b5a-4cdc-941a-30946bcbe384" + }, + { + "routeId": "L438", + "platformId": "U4442Z1", + "id": "60072552-8af5-47f8-b060-1c1b20f58c15" + }, + { + "routeId": "L759", + "platformId": "U4442Z1", + "id": "8fe411f3-50ae-46e1-96d4-b1479fe3f92e" + }, + { + "routeId": "L754", + "platformId": "U4442Z1", + "id": "524b9aa0-f924-4197-b5ba-0a6a5603fd27" + }, + { + "routeId": "L401", + "platformId": "U4442Z2", + "id": "15d6a9e5-04ae-423c-94a7-59216af49fef" + }, + { + "routeId": "L452", + "platformId": "U4442Z2", + "id": "0bda40fc-143d-45a2-a545-cb0a2feb8b32" + }, + { + "routeId": "L553", + "platformId": "U4442Z2", + "id": "cbf90d0c-76d2-4ae3-900b-f40d990bc6a6" + }, + { + "routeId": "L759", + "platformId": "U4442Z2", + "id": "dff725e2-b51f-4aca-9ccf-1fd9bcb4400d" + }, + { + "routeId": "L755", + "platformId": "U4442Z2", + "id": "30341fb6-c016-436e-b48f-342003bac86b" + }, + { + "routeId": "L438", + "platformId": "U4442Z2", + "id": "06880919-fe34-4713-b64b-86afa6650cec" + }, + { + "routeId": "L754", + "platformId": "U4442Z2", + "id": "44616f8a-3b5b-4672-a65b-6b24d16446f8" + }, + { + "routeId": "L755", + "platformId": "U4443Z1", + "id": "d66695ff-62ce-48de-b10b-35dc9a6fbce0" + }, + { + "routeId": "L438", + "platformId": "U4443Z1", + "id": "6c89979c-395a-4639-818a-3e3d39a592a1" + }, + { + "routeId": "L755", + "platformId": "U4443Z2", + "id": "d82468f7-0028-40fc-8bd8-ae242f5f26c2" + }, + { + "routeId": "L438", + "platformId": "U4443Z2", + "id": "3e42eb20-d1fb-4991-8df1-8fa38bcb38ca" + }, + { + "routeId": "L755", + "platformId": "U4444Z1", + "id": "da0b0c03-7560-4453-995a-ddd4fed79b02" + }, + { + "routeId": "L438", + "platformId": "U4444Z1", + "id": "9d14d0e3-1179-46ff-a679-9f8a2c29ab00" + }, + { + "routeId": "L755", + "platformId": "U4444Z2", + "id": "419b772e-c228-4218-a2ed-bde3c784e1e6" + }, + { + "routeId": "L438", + "platformId": "U4444Z2", + "id": "01bcf4e1-359c-4124-8353-3811bba2497f" + }, + { + "routeId": "L755", + "platformId": "U4445Z1", + "id": "610349e3-86d2-4d9c-89df-bae75cb998c4" + }, + { + "routeId": "L755", + "platformId": "U4445Z2", + "id": "3436c5fd-4ba2-464a-89fa-87c1c4a066d7" + }, + { + "routeId": "L755", + "platformId": "U4446Z1", + "id": "f3de366b-7641-4b73-9904-f01f36db1f08" + }, + { + "routeId": "L755", + "platformId": "U4446Z2", + "id": "89ef2d02-a4b3-4b70-aeed-d84384d25d20" + }, + { + "routeId": "L755", + "platformId": "U4447Z1", + "id": "186fab66-46f8-4715-a52c-5fed25ca0585" + }, + { + "routeId": "L755", + "platformId": "U4447Z2", + "id": "d37cb174-abca-4f87-bcd5-c36c7df2057c" + }, + { + "routeId": "L755", + "platformId": "U4448Z1", + "id": "27b12ddd-cb5b-4343-8ea7-e10b74f7aa72" + }, + { + "routeId": "L755", + "platformId": "U4448Z2", + "id": "ca73073a-1700-4871-8dc4-78db1094b3c7" + }, + { + "routeId": "L755", + "platformId": "U4449Z1", + "id": "7a752b84-ed9e-44c7-a8e7-762f082e3dfb" + }, + { + "routeId": "L755", + "platformId": "U4449Z2", + "id": "85ecc82b-c0b6-46a8-8df9-fc0c48f5a3b6" + }, + { + "routeId": "L174", + "platformId": "U444Z1", + "id": "e50c9187-ede4-4e67-a636-0758db7448e6" + }, + { + "routeId": "L180", + "platformId": "U444Z1", + "id": "543c227c-4e77-4ff4-ab4e-ff09059a8afe" + }, + { + "routeId": "L184", + "platformId": "U444Z1", + "id": "f0134033-c285-4a86-9ba2-4c016e750a76" + }, + { + "routeId": "L902", + "platformId": "U444Z1", + "id": "1156d1bf-b8b7-4411-acdf-1593e46f2f65" + }, + { + "routeId": "L304", + "platformId": "U444Z1", + "id": "4f351cad-d00b-414b-9b24-bb30a9959c48" + }, + { + "routeId": "L365", + "platformId": "U444Z1", + "id": "fb971ea7-daba-4217-bc61-3327c5486a09" + }, + { + "routeId": "L380", + "platformId": "U444Z1", + "id": "d7e86089-d114-4a3f-aa0d-cb502b1d33a7" + }, + { + "routeId": "L174", + "platformId": "U444Z2", + "id": "a49d7870-1633-45d8-9791-f55a17e65b7f" + }, + { + "routeId": "L180", + "platformId": "U444Z2", + "id": "207f3095-d9b7-4f43-880d-5826d59c5393" + }, + { + "routeId": "L184", + "platformId": "U444Z2", + "id": "07983ecd-31b4-4818-ab67-f75fe9e08240" + }, + { + "routeId": "L902", + "platformId": "U444Z2", + "id": "c3548a00-8fb1-4e44-8902-6d625f24c7aa" + }, + { + "routeId": "L304", + "platformId": "U444Z2", + "id": "b33d408e-47ae-42f0-8c7a-c0807806823a" + }, + { + "routeId": "L365", + "platformId": "U444Z2", + "id": "c00eb744-d247-4139-a936-1776563da13e" + }, + { + "routeId": "L380", + "platformId": "U444Z2", + "id": "5e3695d4-800d-4343-bd4e-e9250b1f1d0c" + }, + { + "routeId": "L755", + "platformId": "U4450Z1", + "id": "898a4302-6bd3-445a-8336-8c378724a7eb" + }, + { + "routeId": "L755", + "platformId": "U4450Z2", + "id": "ea048f98-06b0-4b8a-ba1d-698ae84b49c3" + }, + { + "routeId": "L755", + "platformId": "U4451Z1", + "id": "95555d03-6a5e-48f6-bcad-6db799fcf0dc" + }, + { + "routeId": "L755", + "platformId": "U4451Z2", + "id": "813be7cb-83ef-4313-a4e9-97247fb9fad8" + }, + { + "routeId": "L755", + "platformId": "U4452Z1", + "id": "690fcdf2-27a1-4356-9e39-9fb46b214614" + }, + { + "routeId": "L755", + "platformId": "U4452Z2", + "id": "a8eca3c6-201b-4ad1-a8ae-216b28fae906" + }, + { + "routeId": "L755", + "platformId": "U4453Z1", + "id": "7c84fd02-6a5a-4d99-a01e-922b9c81f97d" + }, + { + "routeId": "L755", + "platformId": "U4453Z2", + "id": "0da02e40-963e-4dd7-baad-afbcfc6d0693" + }, + { + "routeId": "L755", + "platformId": "U4454Z1", + "id": "2349dd7e-71b6-4ade-8edd-5581e30983d5" + }, + { + "routeId": "L755", + "platformId": "U4454Z2", + "id": "4a76280a-1b4a-4789-ac41-19a45d0ff312" + }, + { + "routeId": "L755", + "platformId": "U4455Z1", + "id": "219728ba-f73d-4e97-9667-6b1435d07fec" + }, + { + "routeId": "L755", + "platformId": "U4455Z2", + "id": "4458c502-8a4b-47b1-a67f-2b6df99e8c70" + }, + { + "routeId": "L755", + "platformId": "U4456Z1", + "id": "8c58d0fe-c47c-4b33-8ad0-127e60a1fc8a" + }, + { + "routeId": "L755", + "platformId": "U4456Z2", + "id": "ce5cff5d-c644-4e06-9edc-45094c03d47e" + }, + { + "routeId": "L755", + "platformId": "U4457Z1", + "id": "09e95a16-0490-47ec-b7a1-e123d85aac4f" + }, + { + "routeId": "L755", + "platformId": "U4457Z2", + "id": "5c94e3c4-748c-4d9e-9249-785f77571b7d" + }, + { + "routeId": "L755", + "platformId": "U4458Z1", + "id": "065cf53d-4968-4dfe-80d1-230876992aeb" + }, + { + "routeId": "L755", + "platformId": "U4458Z2", + "id": "c3330b5a-8515-4734-9d0c-e518b4b25046" + }, + { + "routeId": "L755", + "platformId": "U4459Z2", + "id": "d1ee6655-9f1c-46ff-842b-d592cf543e0d" + }, + { + "routeId": "L906", + "platformId": "U445Z1", + "id": "f23f0f4d-8544-446e-b729-5f719418eea9" + }, + { + "routeId": "L227", + "platformId": "U445Z1", + "id": "c957d304-5f14-4a21-a9c2-2cdec842755f" + }, + { + "routeId": "L906", + "platformId": "U445Z2", + "id": "9efa3d06-719b-4457-a155-2d65215c16f5" + }, + { + "routeId": "L227", + "platformId": "U445Z2", + "id": "8894b4be-02c7-4cc4-bc82-c34c10bb28c6" + }, + { + "routeId": "L755", + "platformId": "U4460Z1", + "id": "1d8fbe0e-827a-4089-b0f8-3f6b56c6a091" + }, + { + "routeId": "L755", + "platformId": "U4460Z2", + "id": "34051b24-ba6a-4e63-9691-87457b291271" + }, + { + "routeId": "L332", + "platformId": "U4462Z1", + "id": "fd5e4b21-7bb0-475e-bded-1fb4aa49188d" + }, + { + "routeId": "L332", + "platformId": "U4462Z2", + "id": "cc3c0dce-df71-4039-ae7d-a9217e545768" + }, + { + "routeId": "L332", + "platformId": "U4463Z1", + "id": "88f7530b-dc43-4c82-b882-017e63bd98a0" + }, + { + "routeId": "L332", + "platformId": "U4463Z2", + "id": "64d04b14-e6d8-49b4-9d25-e4b28ab14a88" + }, + { + "routeId": "L332", + "platformId": "U4464Z1", + "id": "b258e1ce-3ebf-44f8-ad1a-b6e43e80ac8f" + }, + { + "routeId": "L332", + "platformId": "U4464Z2", + "id": "6c63046a-34c1-4970-a4b4-49437c49ce47" + }, + { + "routeId": "L332", + "platformId": "U4465Z1", + "id": "2b24935d-ab05-4b3c-a932-51165ed0e661" + }, + { + "routeId": "L332", + "platformId": "U4465Z2", + "id": "dab08ebf-3208-4fab-a7a7-6e855803fc38" + }, + { + "routeId": "L332", + "platformId": "U4466Z1", + "id": "a3ba2f16-d17b-4f37-94e4-434404dd95d0" + }, + { + "routeId": "L332", + "platformId": "U4466Z2", + "id": "46571d80-ca8b-4361-be7b-c0a4dc0bef30" + }, + { + "routeId": "L332", + "platformId": "U4467Z1", + "id": "3a503557-6932-47ce-af7a-294b1af49b87" + }, + { + "routeId": "L332", + "platformId": "U4467Z2", + "id": "bbfb19d2-9505-4586-820f-a51a7f4536cf" + }, + { + "routeId": "L355", + "platformId": "U4468Z1", + "id": "2ce69127-6b9e-43ff-b5c5-0809a76ddc4b" + }, + { + "routeId": "L355", + "platformId": "U4468Z2", + "id": "a99c1ebd-c03c-4562-b418-2c83b3c32255" + }, + { + "routeId": "L438", + "platformId": "U4469Z1", + "id": "e58d4fa0-aa7f-422a-8af2-ed80d692b065" + }, + { + "routeId": "L438", + "platformId": "U4469Z2", + "id": "6ca67cb7-8c15-43c9-a8a8-518378d6eaba" + }, + { + "routeId": "L139", + "platformId": "U446Z1", + "id": "4d0ee8dd-3c8e-46cc-ae44-ad76a77aa96e" + }, + { + "routeId": "L150", + "platformId": "U446Z1", + "id": "81e779d9-38df-4f74-839e-036e731a9905" + }, + { + "routeId": "L910", + "platformId": "U446Z1", + "id": "7b2cb4b3-585c-4555-884c-2d3d2352b47e" + }, + { + "routeId": "L117", + "platformId": "U446Z1", + "id": "559d678c-ee03-46c8-a0d5-502e9f1cee1b" + }, + { + "routeId": "L139", + "platformId": "U446Z2", + "id": "21025eb3-dc4f-449d-9480-58a2ad5ac689" + }, + { + "routeId": "L150", + "platformId": "U446Z2", + "id": "8f2a380e-5074-4272-bd6e-99949fe2e0a5" + }, + { + "routeId": "L910", + "platformId": "U446Z2", + "id": "f9c7ab72-2677-4dc6-8d24-1ad7bf6c8088" + }, + { + "routeId": "L117", + "platformId": "U446Z2", + "id": "247c685c-fe8c-493c-961b-420428d3d1df" + }, + { + "routeId": "L438", + "platformId": "U4470Z1", + "id": "697d3abc-8b07-45cf-83b2-609496f6cd3e" + }, + { + "routeId": "L438", + "platformId": "U4470Z2", + "id": "b34cd610-a357-465a-a80e-1edc8b8e0901" + }, + { + "routeId": "L438", + "platformId": "U4471Z1", + "id": "b079a071-60fb-4274-8f9b-942a14253142" + }, + { + "routeId": "L438", + "platformId": "U4471Z2", + "id": "ac6a373c-6fa4-48d4-a07b-96358c780038" + }, + { + "routeId": "L438", + "platformId": "U4472Z1", + "id": "f50eccd9-f104-41e6-a346-22fca5d74f16" + }, + { + "routeId": "L438", + "platformId": "U4472Z2", + "id": "bac499c4-3996-4506-b990-f985779fef50" + }, + { + "routeId": "L438", + "platformId": "U4473Z1", + "id": "59e30a7e-168f-451b-8d1e-6c14dbb408da" + }, + { + "routeId": "L438", + "platformId": "U4473Z2", + "id": "e67ce3c1-bc34-4a11-9c7c-3cdf8fe8a07a" + }, + { + "routeId": "L438", + "platformId": "U4474Z1", + "id": "83ce253f-d6cf-47ab-9378-945fb137c244" + }, + { + "routeId": "L438", + "platformId": "U4474Z2", + "id": "2249c5d5-8e51-4b2d-afd1-ad44098198c2" + }, + { + "routeId": "L438", + "platformId": "U4475Z1", + "id": "62e63501-9b7b-452c-81a2-0f839b708444" + }, + { + "routeId": "L438", + "platformId": "U4475Z2", + "id": "d103f4f8-cf0a-4b25-85a0-93d4b338b245" + }, + { + "routeId": "L438", + "platformId": "U4477Z1", + "id": "b459a0cb-ea13-47d2-85cd-eacfef36cbeb" + }, + { + "routeId": "L438", + "platformId": "U4477Z2", + "id": "b085661a-11cb-42c5-8ec0-3f9a5566822c" + }, + { + "routeId": "L332", + "platformId": "U4478Z2", + "id": "ac2325f1-7cc1-469e-8817-73ac5868289b" + }, + { + "routeId": "L438", + "platformId": "U4478Z2", + "id": "a3726fbf-102c-4814-9f98-7c18cba0105c" + }, + { + "routeId": "L753", + "platformId": "U4478Z2", + "id": "8b4897ee-25b0-4692-b151-11a7c7ac737f" + }, + { + "routeId": "L332", + "platformId": "U4479Z1", + "id": "1d27bc65-8884-495b-8f11-fe1317bc69e3" + }, + { + "routeId": "L438", + "platformId": "U4479Z1", + "id": "51d46ec4-0bc6-4f4e-94e9-08dffcd2fe27" + }, + { + "routeId": "L753", + "platformId": "U4479Z1", + "id": "5f90885d-dc60-43cd-a3e0-1cb7ad7f58db" + }, + { + "routeId": "L1", + "platformId": "U447Z1", + "id": "fb7d92cc-76fd-48d5-a007-58b0f9d719d7" + }, + { + "routeId": "L17", + "platformId": "U447Z1", + "id": "e9ecc550-d26c-4da8-a415-26341b6eaab7" + }, + { + "routeId": "L25", + "platformId": "U447Z1", + "id": "425bc0f2-c826-423d-aafc-a5bdce00294c" + }, + { + "routeId": "L93", + "platformId": "U447Z1", + "id": "5d27d3b0-f8da-48d5-b24b-babcba1fa221" + }, + { + "routeId": "L1", + "platformId": "U447Z2", + "id": "60ef8a89-1039-4626-8b99-af724fe1223d" + }, + { + "routeId": "L17", + "platformId": "U447Z2", + "id": "bdd3e73e-7659-4ca7-98c0-f2e6d0c40fe7" + }, + { + "routeId": "L25", + "platformId": "U447Z2", + "id": "63d4d137-a9a4-43ce-af10-2a90cb4d3a57" + }, + { + "routeId": "L93", + "platformId": "U447Z2", + "id": "02859e9f-9c72-419e-900b-593df0cc1d3a" + }, + { + "routeId": "L752", + "platformId": "U4483Z1", + "id": "da745a01-79be-481b-8bdc-7c1e89bc266f" + }, + { + "routeId": "L753", + "platformId": "U4483Z1", + "id": "7b945177-874b-466d-bfd4-6fc672f3408c" + }, + { + "routeId": "L752", + "platformId": "U4483Z2", + "id": "6edc8d8a-9aaa-4d0e-8893-a5434e48d2a0" + }, + { + "routeId": "L753", + "platformId": "U4483Z2", + "id": "49557e53-b69c-4bdd-bfd7-c278625174e0" + }, + { + "routeId": "L770", + "platformId": "U4483Z3", + "id": "ab14572f-a78f-47b8-b0bc-9dce34fc47ad" + }, + { + "routeId": "L796", + "platformId": "U4483Z3", + "id": "a6814460-a7a7-49a6-a2e4-2395b9c2d2b3" + }, + { + "routeId": "L770", + "platformId": "U4483Z4", + "id": "04140bba-be5d-43ad-a58e-c6422d3ee4db" + }, + { + "routeId": "L796", + "platformId": "U4483Z4", + "id": "b16cbd06-435d-411e-95f3-a02e9a26c419" + }, + { + "routeId": "L752", + "platformId": "U4484Z1", + "id": "bf096d27-fa1e-40cc-bdb0-3e73a40387ac" + }, + { + "routeId": "L753", + "platformId": "U4484Z1", + "id": "9792894a-2cd7-4915-b535-103e1f0ed583" + }, + { + "routeId": "L752", + "platformId": "U4484Z2", + "id": "1a73b850-21a0-459f-800b-14a1398d7bde" + }, + { + "routeId": "L753", + "platformId": "U4484Z2", + "id": "21303ab0-0525-4787-bd98-3180c4e797a2" + }, + { + "routeId": "L752", + "platformId": "U4485Z1", + "id": "1b284946-c974-4bc8-a996-6b4a03092578" + }, + { + "routeId": "L753", + "platformId": "U4485Z1", + "id": "0b9bf213-e333-452f-a1a7-f6814a2d98a2" + }, + { + "routeId": "L752", + "platformId": "U4485Z2", + "id": "4db49215-54b8-4f95-aa83-a23f3d6bb066" + }, + { + "routeId": "L753", + "platformId": "U4485Z2", + "id": "5ba4e5ef-5848-4067-a9b9-7573912aa8c9" + }, + { + "routeId": "L752", + "platformId": "U4486Z1", + "id": "732e7467-a94e-46ae-a84e-3bd177522ef0" + }, + { + "routeId": "L753", + "platformId": "U4486Z1", + "id": "4de8de8a-6d69-4699-b243-c64f7613fac0" + }, + { + "routeId": "L752", + "platformId": "U4486Z2", + "id": "8bb3729e-8f17-4b19-962d-842b9c8e06b6" + }, + { + "routeId": "L753", + "platformId": "U4486Z2", + "id": "bfb58ad4-4d14-4d38-9d6e-08b914e896d2" + }, + { + "routeId": "L752", + "platformId": "U4487Z1", + "id": "414dc139-b244-466b-b3d5-971926c5fdc6" + }, + { + "routeId": "L752", + "platformId": "U4487Z2", + "id": "60c9103d-b4e8-451c-9eed-7be25cbd7886" + }, + { + "routeId": "L752", + "platformId": "U4488Z1", + "id": "8da9df75-3fb3-43fb-8ef2-0ffb124a4098" + }, + { + "routeId": "L752", + "platformId": "U4488Z2", + "id": "efdc6332-9b32-4b0c-b689-0693f4d982e5" + }, + { + "routeId": "L752", + "platformId": "U4489Z1", + "id": "a74bb671-a94c-4214-a445-a882276c1b5f" + }, + { + "routeId": "L753", + "platformId": "U4489Z1", + "id": "540a5f3e-429e-4222-95fc-ea9e51242f5a" + }, + { + "routeId": "L752", + "platformId": "U4489Z2", + "id": "ebb8f398-d3d6-45fd-b48c-0c915bd45b3f" + }, + { + "routeId": "L753", + "platformId": "U4489Z2", + "id": "0530b4e2-c85c-47ab-baad-9b4cc0d01c0d" + }, + { + "routeId": "L250", + "platformId": "U448Z1", + "id": "aece0838-818d-413d-a860-1101aad4c226" + }, + { + "routeId": "L109", + "platformId": "U448Z1", + "id": "0aac609b-6ac5-4859-aa60-bab2ace27307" + }, + { + "routeId": "L909", + "platformId": "U448Z1", + "id": "c31bd3f6-35fd-452b-82ed-861b29d1ff44" + }, + { + "routeId": "L163", + "platformId": "U448Z1", + "id": "ba975092-eb07-4bcb-ae99-009c324ab6d5" + }, + { + "routeId": "L240", + "platformId": "U448Z1", + "id": "e374cfea-3448-42a8-8ba8-ef6df1155147" + }, + { + "routeId": "L250", + "platformId": "U448Z2", + "id": "752a7c52-3759-4e6f-a311-f9d855725f05" + }, + { + "routeId": "L109", + "platformId": "U448Z2", + "id": "413397cd-f2c5-49af-95e6-d3beae96e898" + }, + { + "routeId": "L909", + "platformId": "U448Z2", + "id": "4a72113b-a4a5-4892-87ef-21de4788efb6" + }, + { + "routeId": "L163", + "platformId": "U448Z2", + "id": "0dfbc508-7ec2-4efb-8ba3-9ab403af7f55" + }, + { + "routeId": "L240", + "platformId": "U448Z2", + "id": "8d7c8a2d-c8bf-4058-96a9-0508b32a8dc6" + }, + { + "routeId": "L1219", + "platformId": "U448Z301", + "id": "09af447d-d637-4684-a78f-d8931349ba75" + }, + { + "routeId": "L1218", + "platformId": "U448Z301", + "id": "17fe742a-f87b-41c2-953a-f9982d7a01d4" + }, + { + "routeId": "L1210", + "platformId": "U448Z301", + "id": "1c62ee8c-e77d-4d49-9c96-525823c46168" + }, + { + "routeId": "L1209", + "platformId": "U448Z301", + "id": "c3c85cb7-bcc2-4e1d-a61c-88c809e17086" + }, + { + "routeId": "L1301", + "platformId": "U448Z301", + "id": "3b66b51c-8738-4b42-912a-25178e3b7716" + }, + { + "routeId": "L752", + "platformId": "U4490Z1", + "id": "b883b962-8274-4d02-88fe-8ed1baad06e3" + }, + { + "routeId": "L752", + "platformId": "U4490Z2", + "id": "4446beef-7e56-462b-a076-9c9f423be177" + }, + { + "routeId": "L752", + "platformId": "U4491Z1", + "id": "f4e02cb6-9c8f-46dd-9b55-fd7641b0d90f" + }, + { + "routeId": "L752", + "platformId": "U4491Z2", + "id": "0f4395d0-868b-4461-9f63-de34bb06b3dd" + }, + { + "routeId": "L724", + "platformId": "U4492Z1", + "id": "cc51d0bd-572d-4162-a365-0bfa37f2b6c7" + }, + { + "routeId": "L724", + "platformId": "U4492Z2", + "id": "8012790d-42fa-4449-9b46-773c409d03db" + }, + { + "routeId": "L753", + "platformId": "U4495Z1", + "id": "1658ffe6-c2cf-43f1-8aee-86b8c83ea9a3" + }, + { + "routeId": "L753", + "platformId": "U4495Z2", + "id": "dd562516-b8a0-4df4-b9f0-86fc5f3e855c" + }, + { + "routeId": "L752", + "platformId": "U4496Z1", + "id": "bfd35bb7-1c36-4fba-9da3-d833fea709c8" + }, + { + "routeId": "L752", + "platformId": "U4496Z2", + "id": "8ae00d0f-a168-4d46-aea4-f87364808cff" + }, + { + "routeId": "L752", + "platformId": "U4497Z1", + "id": "936b9078-bbad-4744-bbcd-4c18113f2e28" + }, + { + "routeId": "L753", + "platformId": "U4497Z1", + "id": "0833bd02-14ee-41d4-bf63-8b88f2224f94" + }, + { + "routeId": "L752", + "platformId": "U4497Z2", + "id": "9f846efa-7f41-49f1-b479-580bf9e4838c" + }, + { + "routeId": "L753", + "platformId": "U4497Z2", + "id": "6692fd45-fb41-4002-902b-badff3ca40ba" + }, + { + "routeId": "L752", + "platformId": "U4498Z1", + "id": "18220655-301d-4dbb-a0ce-1fc9e1037e32" + }, + { + "routeId": "L752", + "platformId": "U4498Z2", + "id": "fbda38ec-4324-4cbe-91e3-7fab91ae9eae" + }, + { + "routeId": "L332", + "platformId": "U4499Z1", + "id": "3dbe03f8-faed-4f12-bc64-83b26457a423" + }, + { + "routeId": "L752", + "platformId": "U4499Z1", + "id": "0189366b-45fe-4ba9-8c03-e0a77f1fb33c" + }, + { + "routeId": "L332", + "platformId": "U4499Z2", + "id": "ba3edd54-0071-483a-b366-2623870d245c" + }, + { + "routeId": "L752", + "platformId": "U4499Z2", + "id": "767261be-e983-4ba1-92f5-3f07fba205b6" + }, + { + "routeId": "L17", + "platformId": "U449Z1", + "id": "e0f21fc7-39fa-42ad-9c28-ef347a923c68" + }, + { + "routeId": "L27", + "platformId": "U449Z1", + "id": "b40d7e2c-29b2-4c8a-9268-1c23cd067cb1" + }, + { + "routeId": "L92", + "platformId": "U449Z1", + "id": "f1004080-ab3e-409d-9300-6d0589b68fdf" + }, + { + "routeId": "L17", + "platformId": "U449Z2", + "id": "0fdecf7a-76b4-4ba0-a9be-aeb0164cd357" + }, + { + "routeId": "L27", + "platformId": "U449Z2", + "id": "fd025adc-c65c-449f-9bfe-8d969609b5e1" + }, + { + "routeId": "L92", + "platformId": "U449Z2", + "id": "28c02084-37e2-4c5f-956d-6473a6a943ce" + }, + { + "routeId": "L3", + "platformId": "U449Z3", + "id": "2eb9dc9f-0b5f-4773-b16f-029c35ee6c3e" + }, + { + "routeId": "L1308", + "platformId": "U449Z301", + "id": "8991b35e-4918-4454-8401-22dacfd1d195" + }, + { + "routeId": "L1388", + "platformId": "U449Z301", + "id": "a666af8f-33e7-4b5e-8923-87b89bd03577" + }, + { + "routeId": "L2", + "platformId": "U449Z4", + "id": "bebb188a-235a-4d24-b3a2-6dcdb52eadb5" + }, + { + "routeId": "L3", + "platformId": "U449Z4", + "id": "faef97fe-c01d-4096-9f00-bed593eaee34" + }, + { + "routeId": "L2", + "platformId": "U449Z5", + "id": "73efd3a0-7557-4b3e-a51e-fb063f6ac9d2" + }, + { + "routeId": "L106", + "platformId": "U449Z6", + "id": "85941f3b-dece-462e-81ba-052b6b7c6de7" + }, + { + "routeId": "L121", + "platformId": "U449Z6", + "id": "a2c26c49-9bf2-4a68-9a9a-b6ee61f93067" + }, + { + "routeId": "L106", + "platformId": "U449Z7", + "id": "c095e54a-537d-4cf2-9c90-f374020988aa" + }, + { + "routeId": "L121", + "platformId": "U449Z7", + "id": "1e778537-56be-486a-acab-3161734e6f3f" + }, + { + "routeId": "L190", + "platformId": "U449Z8", + "id": "af2af55f-c640-4712-afc5-e0d6106e7a0a" + }, + { + "routeId": "L106", + "platformId": "U449Z9", + "id": "010f14cb-9d1f-46b7-a16b-777a36ac3b1b" + }, + { + "routeId": "L121", + "platformId": "U449Z9", + "id": "d9168fdf-8b00-428c-b50f-d5d9d3e24254" + }, + { + "routeId": "L190", + "platformId": "U449Z9", + "id": "8418af9d-09db-4d20-b37d-937b68b6d671" + }, + { + "routeId": "L180", + "platformId": "U44Z1", + "id": "7abd0e1d-e486-4679-9b76-6b5cba10b097" + }, + { + "routeId": "L902", + "platformId": "U44Z1", + "id": "8c4c443c-d9a8-4304-aaf9-792570014d99" + }, + { + "routeId": "L180", + "platformId": "U44Z2", + "id": "1580d5dc-8bdb-48a3-b04f-2d3a9c532728" + }, + { + "routeId": "L902", + "platformId": "U44Z2", + "id": "06fe0970-b4c1-4572-bd66-1ad3e41a805e" + }, + { + "routeId": "L752", + "platformId": "U4501Z1", + "id": "fa2f6e64-792d-4725-bf49-fd8f1706a99c" + }, + { + "routeId": "L752", + "platformId": "U4501Z2", + "id": "9d6f0aa9-8ea4-4f7b-9b8d-e74ce6e95245" + }, + { + "routeId": "L332", + "platformId": "U4504Z1", + "id": "072d92d2-73d2-42fa-ae97-17defb56dc81" + }, + { + "routeId": "L332", + "platformId": "U4504Z2", + "id": "167c1d88-f8f1-462a-b564-9a5cf557d85d" + }, + { + "routeId": "L332", + "platformId": "U4505Z1", + "id": "45657be9-060d-42f7-9051-842e1b91e61f" + }, + { + "routeId": "L753", + "platformId": "U4505Z1", + "id": "2d62329b-5ba4-4e33-a8e6-9f402c17e35c" + }, + { + "routeId": "L332", + "platformId": "U4505Z2", + "id": "3c75f01a-541c-4a9c-a040-9d97bb7a1564" + }, + { + "routeId": "L753", + "platformId": "U4505Z2", + "id": "d5c95873-6f06-4e81-9a9b-832f05ec66d3" + }, + { + "routeId": "L753", + "platformId": "U4505Z3", + "id": "7a3b3b17-d2f0-407e-bc44-6fdd98a0d84e" + }, + { + "routeId": "L753", + "platformId": "U4505Z4", + "id": "80885705-02c5-4b73-b352-7f9e57d28bcd" + }, + { + "routeId": "L332", + "platformId": "U4506Z1", + "id": "7be4b9a6-a6ee-4432-ab7f-71beda1b3efa" + }, + { + "routeId": "L753", + "platformId": "U4506Z1", + "id": "4aaf5099-e605-48ec-9454-8c0a432c238f" + }, + { + "routeId": "L332", + "platformId": "U4506Z2", + "id": "54c8f05f-9553-4797-ac02-bd0e0421c844" + }, + { + "routeId": "L753", + "platformId": "U4506Z2", + "id": "91509c41-1abb-4cc3-bc78-08843137b4e0" + }, + { + "routeId": "L753", + "platformId": "U4508Z1", + "id": "5fc6a29e-dabc-437f-ae23-b0e90b665434" + }, + { + "routeId": "L753", + "platformId": "U4508Z2", + "id": "6d0cd671-e0d0-4eb4-a3c1-2a035bef976a" + }, + { + "routeId": "L753", + "platformId": "U4509Z1", + "id": "68d8e175-4474-47cd-92e2-91e80ea65edb" + }, + { + "routeId": "L753", + "platformId": "U4509Z2", + "id": "1ed9ab6f-5f67-43c7-a5e9-daa1be3ac823" + }, + { + "routeId": "L131", + "platformId": "U450Z1", + "id": "38592e6f-5d01-4d56-8ece-9f59dd15d4d3" + }, + { + "routeId": "L907", + "platformId": "U450Z1", + "id": "47ae0d2c-82d6-4467-856b-6de34964d50d" + }, + { + "routeId": "L753", + "platformId": "U4510Z1", + "id": "b6b9769c-eb65-4bcf-b035-c84c2a27cbdf" + }, + { + "routeId": "L753", + "platformId": "U4510Z2", + "id": "4cb0d5bb-dd44-425b-8868-6b5dcbaa0665" + }, + { + "routeId": "L753", + "platformId": "U4511Z1", + "id": "29eecf89-48fa-4a28-bbb0-bd832e01d83b" + }, + { + "routeId": "L753", + "platformId": "U4511Z2", + "id": "8604ba37-1fb7-42f5-9283-3479856d5d6a" + }, + { + "routeId": "L753", + "platformId": "U4514Z1", + "id": "e0d30a23-d7b5-4fba-9a63-6d46cc65ea6f" + }, + { + "routeId": "L753", + "platformId": "U4514Z2", + "id": "d3dc057a-c991-4ff7-aa61-40a00ba4e09c" + }, + { + "routeId": "L753", + "platformId": "U4515Z1", + "id": "2229ca15-d9ff-4ea3-83df-cbc5a77bb2a2" + }, + { + "routeId": "L753", + "platformId": "U4515Z2", + "id": "3e18e110-4958-4f17-b20c-abe0b0783a6b" + }, + { + "routeId": "L753", + "platformId": "U4516Z1", + "id": "1fa73741-5d88-48fc-bc90-1b440b22df29" + }, + { + "routeId": "L753", + "platformId": "U4516Z2", + "id": "879ac81f-cf9e-449f-b052-2b516ee115bf" + }, + { + "routeId": "L753", + "platformId": "U4517Z1", + "id": "cfeff88a-f917-41cd-8071-db06d3243be5" + }, + { + "routeId": "L753", + "platformId": "U4517Z2", + "id": "c8481380-fb52-474b-8fd3-e23a2927ba86" + }, + { + "routeId": "L332", + "platformId": "U4519Z1", + "id": "8b3d40b9-d885-4c47-a330-471a454b0e1f" + }, + { + "routeId": "L753", + "platformId": "U4519Z1", + "id": "94101790-7e45-4644-b4e4-ff2d69a1ab7e" + }, + { + "routeId": "L332", + "platformId": "U4519Z2", + "id": "efa3f766-0a4e-4a8d-a40f-d0118e058e25" + }, + { + "routeId": "L753", + "platformId": "U4519Z2", + "id": "3d1f1276-0586-490a-890a-957e117c971f" + }, + { + "routeId": "L136", + "platformId": "U451Z1", + "id": "b1e8e245-fa07-439e-8aaf-ca93a8cba51d" + }, + { + "routeId": "L158", + "platformId": "U451Z1", + "id": "0fe74d3b-f090-47a8-ae81-fe132baca14f" + }, + { + "routeId": "L202", + "platformId": "U451Z1", + "id": "d96a2f45-2f5a-4aa1-be65-884adb97240f" + }, + { + "routeId": "L911", + "platformId": "U451Z1", + "id": "f618c705-5a0f-45ec-804e-21f42070faa2" + }, + { + "routeId": "L166", + "platformId": "U451Z1", + "id": "4a20a788-2eb7-4277-9f35-2c7d922569c8" + }, + { + "routeId": "L351", + "platformId": "U451Z1", + "id": "a7ccf4e2-0fef-4aa3-b6f9-dcf62afd1c1d" + }, + { + "routeId": "L377", + "platformId": "U451Z1", + "id": "a2aeb8d0-a9bf-4ea8-8bd7-e94bff34af0f" + }, + { + "routeId": "L58", + "platformId": "U451Z1", + "id": "5c38408f-60eb-46ef-8322-3c61a43c472b" + }, + { + "routeId": "L136", + "platformId": "U451Z2", + "id": "e592562b-e49f-47a9-83ad-38234dbc5682" + }, + { + "routeId": "L158", + "platformId": "U451Z2", + "id": "27c41b3e-5c05-4dfd-b7e2-b8a7dfdfb675" + }, + { + "routeId": "L202", + "platformId": "U451Z2", + "id": "f9c3021b-a4c6-421f-b95a-7d7122d397c9" + }, + { + "routeId": "L911", + "platformId": "U451Z2", + "id": "970bb896-7448-4f3b-8687-e692efa2f9bb" + }, + { + "routeId": "L166", + "platformId": "U451Z2", + "id": "3966aadf-47b6-462b-85eb-dfbe23ecd9f5" + }, + { + "routeId": "L351", + "platformId": "U451Z2", + "id": "780c778c-ee3e-4e78-a842-e45403d48c58" + }, + { + "routeId": "L377", + "platformId": "U451Z2", + "id": "aa6c001f-4a6b-445b-81b8-cef8449cb8ee" + }, + { + "routeId": "L58", + "platformId": "U451Z2", + "id": "d98e1b7c-24d5-4590-bf77-4c21e8223bfd" + }, + { + "routeId": "L401", + "platformId": "U4521Z1", + "id": "3dc7fc48-3169-4f66-9cb4-0600799b1833" + }, + { + "routeId": "L452", + "platformId": "U4521Z1", + "id": "2ed0e528-5509-4e1c-a113-0036a7c07fc9" + }, + { + "routeId": "L553", + "platformId": "U4521Z1", + "id": "39038846-86f5-4076-a096-58945127182c" + }, + { + "routeId": "L759", + "platformId": "U4521Z1", + "id": "a5fa26ca-5277-4970-ae2f-a0ef7332f2ac" + }, + { + "routeId": "L754", + "platformId": "U4521Z1", + "id": "f44192cc-c7ba-4ef6-a9d6-4a98ca37dffa" + }, + { + "routeId": "L401", + "platformId": "U4521Z2", + "id": "7b495090-7edf-4ac4-83ba-baea1383f0c8" + }, + { + "routeId": "L452", + "platformId": "U4521Z2", + "id": "0f98a0d9-f06b-4b89-8ebb-1978bc307b91" + }, + { + "routeId": "L553", + "platformId": "U4521Z2", + "id": "f2635b91-66dd-4c25-a748-9ad4c0012dec" + }, + { + "routeId": "L759", + "platformId": "U4521Z2", + "id": "f5aa0e0e-e9ba-4350-b123-0fc1a5eab446" + }, + { + "routeId": "L754", + "platformId": "U4521Z2", + "id": "33c17846-13a4-4f2f-9e07-b5c0eeda74cf" + }, + { + "routeId": "L401", + "platformId": "U4522Z1", + "id": "74fbe8da-eb3c-493c-85a4-9c3fe29a7321" + }, + { + "routeId": "L452", + "platformId": "U4522Z1", + "id": "6d5c5068-5f0f-461a-8345-5652ec27faa1" + }, + { + "routeId": "L553", + "platformId": "U4522Z1", + "id": "636ec05f-bf21-484f-a290-20a490c6372d" + }, + { + "routeId": "L759", + "platformId": "U4522Z1", + "id": "9eec747a-1fde-484c-b3da-f3ba05ca76c2" + }, + { + "routeId": "L754", + "platformId": "U4522Z1", + "id": "9549695b-8821-4e97-84ed-e1ba74879eaf" + }, + { + "routeId": "L401", + "platformId": "U4522Z2", + "id": "ff008eed-77be-417d-807d-144164e64af1" + }, + { + "routeId": "L452", + "platformId": "U4522Z2", + "id": "87aa414c-a03e-4792-a8d4-17551b661aee" + }, + { + "routeId": "L553", + "platformId": "U4522Z2", + "id": "9266ade3-585a-43e2-8dc4-90633b1e8d68" + }, + { + "routeId": "L759", + "platformId": "U4522Z2", + "id": "743b5e3a-40c4-4075-8cd9-af6aa06a6c0e" + }, + { + "routeId": "L754", + "platformId": "U4522Z2", + "id": "ed71f4ee-abe0-4ba4-a612-706061fce080" + }, + { + "routeId": "L754", + "platformId": "U4523Z1", + "id": "068bd2a3-87b8-4ac9-aacd-4059bf60a8b0" + }, + { + "routeId": "L754", + "platformId": "U4523Z2", + "id": "4959c7ea-1f64-4e93-bd02-cda021d70906" + }, + { + "routeId": "L754", + "platformId": "U4524Z1", + "id": "9b077aad-66ec-49c3-abf5-c344021a5b20" + }, + { + "routeId": "L754", + "platformId": "U4524Z2", + "id": "b7869d4e-93f5-44e0-afd0-1ed00bcb4148" + }, + { + "routeId": "L401", + "platformId": "U4525Z1", + "id": "72018f73-2eb5-4caa-9896-bc30208fc1d6" + }, + { + "routeId": "L452", + "platformId": "U4525Z1", + "id": "e0a46d64-6e3c-458e-af97-39e31fac9806" + }, + { + "routeId": "L553", + "platformId": "U4525Z1", + "id": "d422c88c-6db6-49f9-aa8e-a3b0f94d7eb6" + }, + { + "routeId": "L759", + "platformId": "U4525Z1", + "id": "fb23f85a-ae88-4692-9286-a71c6bae3a4c" + }, + { + "routeId": "L401", + "platformId": "U4525Z2", + "id": "43c9b1a8-302f-434e-8a53-a7ec503328a3" + }, + { + "routeId": "L452", + "platformId": "U4525Z2", + "id": "f649fda8-8319-4c71-8f62-78b6fdbd0a87" + }, + { + "routeId": "L553", + "platformId": "U4525Z2", + "id": "764d21a4-a39c-4385-97bf-f7e30090bbce" + }, + { + "routeId": "L759", + "platformId": "U4525Z2", + "id": "7a00fd2f-c382-47ab-ad8b-10534d61df52" + }, + { + "routeId": "L754", + "platformId": "U4526Z1", + "id": "30bb308f-1e56-43dd-898e-47c36515e74b" + }, + { + "routeId": "L754", + "platformId": "U4526Z2", + "id": "441d3e34-1b6c-4cd5-90ac-f6d0bbdc8007" + }, + { + "routeId": "L754", + "platformId": "U4527Z1", + "id": "29d214ed-9ac7-4d95-9f79-8ddc8851d8ee" + }, + { + "routeId": "L754", + "platformId": "U4527Z2", + "id": "ef028b06-994e-4288-b930-58c335d8793f" + }, + { + "routeId": "L754", + "platformId": "U4528Z1", + "id": "0072541d-d876-43bc-a3c9-6fba0f96fa09" + }, + { + "routeId": "L754", + "platformId": "U4528Z2", + "id": "ec505f62-edfd-4542-aefd-228a0d196333" + }, + { + "routeId": "L141", + "platformId": "U452Z1", + "id": "a45ca061-da85-46d6-8601-b76563b85b49" + }, + { + "routeId": "L912", + "platformId": "U452Z1", + "id": "757cfba3-4b54-4f73-9ce0-518064f0a66e" + }, + { + "routeId": "L171", + "platformId": "U452Z1", + "id": "fc624e5e-485b-473a-9d7f-c47963e0de23" + }, + { + "routeId": "L204", + "platformId": "U452Z1", + "id": "0cb541a4-e905-43d7-b0e9-3379512b4d41" + }, + { + "routeId": "L344", + "platformId": "U452Z1", + "id": "6ba2a282-676f-42cb-92a4-abb37c528e7e" + }, + { + "routeId": "L303", + "platformId": "U452Z1", + "id": "afb9674e-d5f5-4916-9d0e-5b932f8724d2" + }, + { + "routeId": "L353", + "platformId": "U452Z1", + "id": "a8810324-02e3-4fd9-a8c2-813f3cc72aca" + }, + { + "routeId": "L354", + "platformId": "U452Z1", + "id": "866bb33d-527a-4b60-b968-dd9bee2f2688" + }, + { + "routeId": "L398", + "platformId": "U452Z1", + "id": "e980520c-2764-498a-95dc-83caae8b2ff7" + }, + { + "routeId": "L141", + "platformId": "U452Z2", + "id": "58069e61-4f6a-4208-b18c-becbe779dd04" + }, + { + "routeId": "L912", + "platformId": "U452Z2", + "id": "057ae1b2-22cb-4a78-a0b0-98905b245f71" + }, + { + "routeId": "L171", + "platformId": "U452Z2", + "id": "a34f4592-a079-4ca5-a585-618c8227b91c" + }, + { + "routeId": "L204", + "platformId": "U452Z2", + "id": "03091b94-81d9-4861-b02f-440a4aeae6ab" + }, + { + "routeId": "L344", + "platformId": "U452Z2", + "id": "f32a3df1-55bd-4bf8-959b-df9f9e2f1071" + }, + { + "routeId": "L353", + "platformId": "U452Z2", + "id": "e13e7614-b278-4852-a4c1-df8297fc4a2d" + }, + { + "routeId": "L303", + "platformId": "U452Z2", + "id": "87c0a882-abba-479e-9519-af1b1dcd830d" + }, + { + "routeId": "L354", + "platformId": "U452Z2", + "id": "521588bb-8643-4255-8115-35edc1996232" + }, + { + "routeId": "L398", + "platformId": "U452Z2", + "id": "0b9a7c85-09da-4316-a498-ea69b419a7b2" + }, + { + "routeId": "L1302", + "platformId": "U452Z301", + "id": "216a6bf6-59c9-461c-aa2b-8b772ebf55c6" + }, + { + "routeId": "L1322", + "platformId": "U452Z301", + "id": "f10b2dcd-041e-45af-87c9-c8936649a400" + }, + { + "routeId": "L754", + "platformId": "U4530Z1", + "id": "a2361057-c8d2-46c8-81a3-479d384b6443" + }, + { + "routeId": "L754", + "platformId": "U4530Z2", + "id": "59cd64a2-a4eb-47ac-890c-046df9074577" + }, + { + "routeId": "L754", + "platformId": "U4531Z1", + "id": "d5bea871-53bb-4a4e-862d-6a59cd7c2b35" + }, + { + "routeId": "L756", + "platformId": "U4531Z1", + "id": "f3c72f30-5ba8-4050-8a8c-e8ffedd65f65" + }, + { + "routeId": "L756", + "platformId": "U4531Z2", + "id": "12f2e93a-6057-4406-81f1-54abc167dccd" + }, + { + "routeId": "L754", + "platformId": "U4531Z2", + "id": "af465f13-2bff-4a97-aba3-ae1d52856725" + }, + { + "routeId": "L754", + "platformId": "U4532Z1", + "id": "e11abd37-460a-4825-999b-bb4ee309303a" + }, + { + "routeId": "L756", + "platformId": "U4532Z1", + "id": "87792f2f-b43b-418c-8217-5df84317b7e8" + }, + { + "routeId": "L756", + "platformId": "U4532Z2", + "id": "4583c888-c453-4a9b-a4ea-b3aa3bf0c4c0" + }, + { + "routeId": "L754", + "platformId": "U4532Z2", + "id": "56f286a5-a829-4fd9-9ca3-b67771a5afb6" + }, + { + "routeId": "L754", + "platformId": "U4533Z1", + "id": "e320d13c-8612-497d-b1fa-f7a4d6e823cd" + }, + { + "routeId": "L756", + "platformId": "U4533Z1", + "id": "a86435d2-166f-40ba-ad16-73f640dbb770" + }, + { + "routeId": "L756", + "platformId": "U4533Z2", + "id": "a0967025-99f3-4a2d-a806-fd80747e53b4" + }, + { + "routeId": "L754", + "platformId": "U4533Z2", + "id": "94205fb2-6c63-40af-b071-90c70586729b" + }, + { + "routeId": "L754", + "platformId": "U4534Z1", + "id": "fd091cc7-74b1-498c-97a8-48140d88132c" + }, + { + "routeId": "L756", + "platformId": "U4534Z1", + "id": "480950dd-1565-4677-af39-f60f9816d526" + }, + { + "routeId": "L756", + "platformId": "U4534Z2", + "id": "62ffbf6b-8530-4f5e-85ab-1a2762970702" + }, + { + "routeId": "L754", + "platformId": "U4534Z2", + "id": "2a147f07-603f-4723-a343-eaec7f290c40" + }, + { + "routeId": "L754", + "platformId": "U4535Z1", + "id": "d9c45c18-81d7-45cf-920e-6b0f8cb4240f" + }, + { + "routeId": "L756", + "platformId": "U4535Z1", + "id": "5d2ddd4d-2a43-4239-835e-56c2b18a8de8" + }, + { + "routeId": "L756", + "platformId": "U4535Z2", + "id": "7a7873fe-7108-4125-b407-a9c163454985" + }, + { + "routeId": "L754", + "platformId": "U4535Z2", + "id": "3cdd3c38-7116-49b3-95c5-ab15376f2966" + }, + { + "routeId": "L754", + "platformId": "U4536Z1", + "id": "d956502b-40d2-4c1e-8a95-b315c1a35e94" + }, + { + "routeId": "L756", + "platformId": "U4536Z1", + "id": "43bd9adb-9d8c-43a6-9fd3-45b3ca2f7b5a" + }, + { + "routeId": "L756", + "platformId": "U4536Z2", + "id": "af35f463-862e-41b2-b728-32b69cfe943a" + }, + { + "routeId": "L754", + "platformId": "U4536Z2", + "id": "36f10d60-abef-4221-a805-b1731c225eae" + }, + { + "routeId": "L756", + "platformId": "U4537Z1", + "id": "960d0474-10e0-4488-848e-c4dccf5992dc" + }, + { + "routeId": "L756", + "platformId": "U4537Z2", + "id": "c28d6187-641f-4b02-a683-0d5c09dc86dc" + }, + { + "routeId": "L756", + "platformId": "U4538Z1", + "id": "8aa019bf-e876-4556-b97b-7bcd85b09ba9" + }, + { + "routeId": "L756", + "platformId": "U4538Z2", + "id": "2661ce27-51bc-4103-b733-28c982e665f0" + }, + { + "routeId": "L756", + "platformId": "U4539Z1", + "id": "e615b3d1-9360-4a51-90f0-38c83eefd160" + }, + { + "routeId": "L756", + "platformId": "U4539Z2", + "id": "0399431f-97ab-4147-bf15-49bd06fc88b2" + }, + { + "routeId": "L26", + "platformId": "U453Z1", + "id": "ba20e691-43cb-4ca4-ac51-46eba8124aea" + }, + { + "routeId": "L125", + "platformId": "U453Z10", + "id": "ceef3501-742f-49ce-a11f-08b8a4480a94" + }, + { + "routeId": "L154", + "platformId": "U453Z10", + "id": "0b259143-7d06-455c-a4d2-6dbfd66ddefb" + }, + { + "routeId": "L183", + "platformId": "U453Z10", + "id": "86acad7b-c035-4f0a-bea7-a2e2f908f390" + }, + { + "routeId": "L911", + "platformId": "U453Z10", + "id": "22a57992-aa83-4ee5-915a-5e498e585162" + }, + { + "routeId": "L125", + "platformId": "U453Z12", + "id": "ee453d1a-2a06-4b39-9eb1-a97c8731c694" + }, + { + "routeId": "L154", + "platformId": "U453Z12", + "id": "ab7b6536-992c-49ba-9688-77e5f5c7db9d" + }, + { + "routeId": "L183", + "platformId": "U453Z12", + "id": "6a3ec7c3-9d25-46fc-b0cf-4b907be01eb4" + }, + { + "routeId": "L26", + "platformId": "U453Z2", + "id": "f10d4aa4-2a63-4ef9-b9ad-c65f8bbe8592" + }, + { + "routeId": "L22", + "platformId": "U453Z3", + "id": "6d2fe82a-5351-4038-b82b-7d9f4910d6ad" + }, + { + "routeId": "L97", + "platformId": "U453Z3", + "id": "37216c1d-d38c-4b6a-b626-d81baf38f88e" + }, + { + "routeId": "L1217", + "platformId": "U453Z301", + "id": "1bb02721-cd4f-4a86-8998-9979800776ee" + }, + { + "routeId": "L1249", + "platformId": "U453Z301", + "id": "3e0b0784-5e96-4537-a269-e23cdc5784e4" + }, + { + "routeId": "L1309", + "platformId": "U453Z301", + "id": "9cec8cde-2f42-49ad-8c4e-1f778c599ff7" + }, + { + "routeId": "L1349", + "platformId": "U453Z301", + "id": "030b1610-09a6-40fb-8364-03c2a999e3ee" + }, + { + "routeId": "L22", + "platformId": "U453Z4", + "id": "fb5e1e5a-036f-4c5d-a36f-a1bde7793568" + }, + { + "routeId": "L97", + "platformId": "U453Z4", + "id": "2357ff71-4261-458f-9e6c-e60649c45d7f" + }, + { + "routeId": "L154", + "platformId": "U453Z6", + "id": "c522d572-6ecb-45b3-ba5e-370bd4813073" + }, + { + "routeId": "L181", + "platformId": "U453Z6", + "id": "0dcabcc3-bec0-48d7-8459-185876ca94a0" + }, + { + "routeId": "L154", + "platformId": "U453Z7", + "id": "17e35e6e-3573-46f4-be2e-4b9d1bb12c4e" + }, + { + "routeId": "L181", + "platformId": "U453Z7", + "id": "1be93e76-8deb-4c0d-92ea-453e022051d8" + }, + { + "routeId": "L911", + "platformId": "U453Z9", + "id": "af333bec-8ddc-4113-b550-b4fd87dffa84" + }, + { + "routeId": "L756", + "platformId": "U4540Z1", + "id": "91062edc-34f8-46f0-bc36-d8ca7ba11d5f" + }, + { + "routeId": "L756", + "platformId": "U4540Z2", + "id": "1fe6d0ec-4dba-45a6-b537-9f8939bdb6d1" + }, + { + "routeId": "L756", + "platformId": "U4541Z1", + "id": "7d3d8f28-b943-46eb-8c4c-6cb78fce8848" + }, + { + "routeId": "L756", + "platformId": "U4541Z2", + "id": "d2715123-f7be-4e60-ba76-1a05ef662ce2" + }, + { + "routeId": "L759", + "platformId": "U4543Z1", + "id": "eddf5449-74c6-466c-b168-ab989b385edb" + }, + { + "routeId": "L759", + "platformId": "U4543Z2", + "id": "e480e049-293e-4a92-a408-c4d379816654" + }, + { + "routeId": "L759", + "platformId": "U4544Z1", + "id": "c64bab44-ebcf-44c7-91f8-55abc13905a5" + }, + { + "routeId": "L759", + "platformId": "U4544Z2", + "id": "7616119a-3d60-4fa3-94a4-18f8ff8b0797" + }, + { + "routeId": "L759", + "platformId": "U4545Z1", + "id": "262ab135-4a77-46e7-a976-c83b95762ef1" + }, + { + "routeId": "L759", + "platformId": "U4545Z2", + "id": "ca31fdf1-bd7f-4989-b1d3-51ff5dcadfd7" + }, + { + "routeId": "L759", + "platformId": "U4546Z1", + "id": "81bc8216-0c21-400a-97ae-72a4cbcef197" + }, + { + "routeId": "L759", + "platformId": "U4546Z2", + "id": "8b2c6d0b-aadd-40a0-8fe7-dcc93c052fb1" + }, + { + "routeId": "L759", + "platformId": "U4547Z1", + "id": "47e417e9-d4fa-445c-b7e7-eed7df0fc27b" + }, + { + "routeId": "L759", + "platformId": "U4547Z2", + "id": "be93d929-c8db-40c3-81a0-1653b17ffff4" + }, + { + "routeId": "L211", + "platformId": "U454Z1", + "id": "40bf48ab-c255-4488-b040-30082711c3d7" + }, + { + "routeId": "L211", + "platformId": "U454Z2", + "id": "87c64d73-ed57-4d63-8e46-3af99ee13fe2" + }, + { + "routeId": "L391", + "platformId": "U454Z2", + "id": "a542ef39-7450-47c7-8ed7-038ac7f99d54" + }, + { + "routeId": "L908", + "platformId": "U454Z3", + "id": "51f16481-a211-40b7-9187-a5f78061ede2" + }, + { + "routeId": "L212", + "platformId": "U454Z3", + "id": "bf16a204-c9be-4aa3-b310-494c44a907c1" + }, + { + "routeId": "L221", + "platformId": "U454Z3", + "id": "67bb3f07-97ee-45fb-baf9-0352b8fd3d49" + }, + { + "routeId": "L303", + "platformId": "U454Z3", + "id": "14ff494d-fb33-4419-a4c2-c64e8dc96a23" + }, + { + "routeId": "L1219", + "platformId": "U454Z301", + "id": "04c93094-ad2e-4eef-8f1e-e1837523a6c4" + }, + { + "routeId": "L1218", + "platformId": "U454Z301", + "id": "926afe8a-920b-40ff-83ca-0ecdbd31d9d3" + }, + { + "routeId": "L1210", + "platformId": "U454Z301", + "id": "0490a55f-e52c-4a83-a40e-9fe59bf222f1" + }, + { + "routeId": "L1209", + "platformId": "U454Z301", + "id": "e8300d2a-3b72-4555-ae28-651afe75727e" + }, + { + "routeId": "L1301", + "platformId": "U454Z301", + "id": "2ae51c60-cb5b-4528-81f8-00b4307655d3" + }, + { + "routeId": "L908", + "platformId": "U454Z4", + "id": "a369bac3-e877-4157-bdc8-deef3a83567c" + }, + { + "routeId": "L212", + "platformId": "U454Z4", + "id": "37a32030-113e-49e1-8711-30e9562cd3c3" + }, + { + "routeId": "L221", + "platformId": "U454Z4", + "id": "ed3e6c05-b664-413e-a7ee-396d9d3974c3" + }, + { + "routeId": "L391", + "platformId": "U454Z71", + "id": "6bdb00cf-d516-4fc8-84a4-25c7df3f28fb" + }, + { + "routeId": "L303", + "platformId": "U454Z72", + "id": "ba658534-a19d-4bc9-a33d-fcaf2b87cae4" + }, + { + "routeId": "L401", + "platformId": "U4554Z1", + "id": "c420ba1f-bf68-4f13-82f3-22838ef64fff" + }, + { + "routeId": "L452", + "platformId": "U4554Z1", + "id": "68a5d88a-1db4-4625-b5ec-7b8c826be739" + }, + { + "routeId": "L553", + "platformId": "U4554Z1", + "id": "a345ad03-aa5f-4fcc-a09f-7c006e257051" + }, + { + "routeId": "L759", + "platformId": "U4554Z1", + "id": "8fbd512a-6bda-4340-8770-0c5c0932e63e" + }, + { + "routeId": "L401", + "platformId": "U4554Z2", + "id": "70099b69-5887-4437-b979-b28f6e8cc143" + }, + { + "routeId": "L452", + "platformId": "U4554Z2", + "id": "ddb3b150-ca2a-4cac-bcea-ac5d42c75828" + }, + { + "routeId": "L553", + "platformId": "U4554Z2", + "id": "5b091911-3929-44ef-9d8f-843a24f868ea" + }, + { + "routeId": "L759", + "platformId": "U4554Z2", + "id": "7eeec692-5d18-4623-835c-cff521ee05fb" + }, + { + "routeId": "L754", + "platformId": "U4554Z2", + "id": "8bd32022-70d8-43eb-bb3d-af4109dd244e" + }, + { + "routeId": "L401", + "platformId": "U4555Z1", + "id": "c725fd5b-a7d5-4328-a1ad-e445a65ce8b0" + }, + { + "routeId": "L452", + "platformId": "U4555Z1", + "id": "bc811f3a-11bc-4448-8282-cdf3c6c41db4" + }, + { + "routeId": "L553", + "platformId": "U4555Z1", + "id": "f8cc39c2-761b-4919-9c8a-89aafd30c695" + }, + { + "routeId": "L759", + "platformId": "U4555Z1", + "id": "adfa53e2-878a-4383-939f-202932b67b82" + }, + { + "routeId": "L401", + "platformId": "U4555Z2", + "id": "5ffa4796-a5fe-4e6b-b54c-f2fdc3030e90" + }, + { + "routeId": "L452", + "platformId": "U4555Z2", + "id": "db2de45a-1619-4e72-b817-20e7a09ec23f" + }, + { + "routeId": "L553", + "platformId": "U4555Z2", + "id": "e6b3a399-ac6d-415b-884d-741e57f40dc2" + }, + { + "routeId": "L759", + "platformId": "U4555Z2", + "id": "b0fe4349-b5fb-412f-b219-5d5632df5025" + }, + { + "routeId": "L1217", + "platformId": "U4555Z301", + "id": "7f74f267-cf92-4c36-8525-92b5f68bfc81" + }, + { + "routeId": "L1398", + "platformId": "U4555Z301", + "id": "bebe578d-bdd2-49d3-80f6-4cffdb33abbb" + }, + { + "routeId": "L401", + "platformId": "U4556Z1", + "id": "3b27d46d-d7d9-49d0-861b-780d776b99da" + }, + { + "routeId": "L452", + "platformId": "U4556Z1", + "id": "6ce34516-1ce8-4cf3-8a52-b7fb934b168e" + }, + { + "routeId": "L553", + "platformId": "U4556Z1", + "id": "2a506da5-7c08-437f-b9c2-71f82095f5d6" + }, + { + "routeId": "L759", + "platformId": "U4556Z1", + "id": "ab603ecb-2343-439c-b407-1218052e7b3d" + }, + { + "routeId": "L401", + "platformId": "U4556Z2", + "id": "8a913e43-5cf7-44dd-861b-6788edbecbdd" + }, + { + "routeId": "L452", + "platformId": "U4556Z2", + "id": "49bc1c1d-f244-4c1b-a191-ad9b1d02f9bf" + }, + { + "routeId": "L553", + "platformId": "U4556Z2", + "id": "36665f8b-fc9a-402c-818c-6a41288e1b8e" + }, + { + "routeId": "L759", + "platformId": "U4556Z2", + "id": "455e0b21-0189-47e5-a4b2-1be81e6cb9d9" + }, + { + "routeId": "L401", + "platformId": "U4557Z1", + "id": "f6b3f4e0-94a6-4266-aa82-988377c469af" + }, + { + "routeId": "L452", + "platformId": "U4557Z1", + "id": "5fb7ef32-ee2f-42bb-987c-20d13cf8ec89" + }, + { + "routeId": "L553", + "platformId": "U4557Z1", + "id": "5f769df5-7626-4de4-9daf-afea69eb652d" + }, + { + "routeId": "L558", + "platformId": "U4557Z1", + "id": "abbe06df-f21b-43a1-8a7c-ac069a47887a" + }, + { + "routeId": "L759", + "platformId": "U4557Z1", + "id": "96f79b32-effc-42de-b9b8-6ecc1ad24246" + }, + { + "routeId": "L401", + "platformId": "U4557Z2", + "id": "a31f8dcc-4076-4c1d-bcbd-c543b3cc6015" + }, + { + "routeId": "L452", + "platformId": "U4557Z2", + "id": "d7c40993-5edc-406d-855b-e409c3c98df4" + }, + { + "routeId": "L553", + "platformId": "U4557Z2", + "id": "be89d2d9-6051-4ef4-aae6-7621b57e43a1" + }, + { + "routeId": "L558", + "platformId": "U4557Z2", + "id": "fadc15b6-ba56-4010-bab8-c8afa0241998" + }, + { + "routeId": "L759", + "platformId": "U4557Z2", + "id": "73e6100f-c61d-4e8e-a3f8-aaa9062c8b94" + }, + { + "routeId": "L452", + "platformId": "U4558Z1", + "id": "47620369-4dd2-4ab1-bb15-1e181808b7b7" + }, + { + "routeId": "L759", + "platformId": "U4558Z1", + "id": "15ef8d90-5c68-4585-973e-a61646ccdb6e" + }, + { + "routeId": "L452", + "platformId": "U4558Z2", + "id": "fe3ae41e-61e0-4b81-b5d3-4ac629054046" + }, + { + "routeId": "L759", + "platformId": "U4558Z2", + "id": "55419959-2b8c-456b-8c12-890dcc863e76" + }, + { + "routeId": "L759", + "platformId": "U4559Z1", + "id": "20d74702-e2b7-4eab-9275-fafbc6edef43" + }, + { + "routeId": "L759", + "platformId": "U4559Z2", + "id": "267058be-1491-4c1a-acda-661e80b96908" + }, + { + "routeId": "L906", + "platformId": "U455Z1", + "id": "94102ebe-ccf6-49a0-ae03-d8cacb192346" + }, + { + "routeId": "L227", + "platformId": "U455Z1", + "id": "11e463bb-68b9-4f83-b543-d36cca8ec62a" + }, + { + "routeId": "L906", + "platformId": "U455Z2", + "id": "0feae25b-0d71-45de-9403-246a91e41aa2" + }, + { + "routeId": "L227", + "platformId": "U455Z2", + "id": "a7d2471a-256f-4584-8a79-752728565747" + }, + { + "routeId": "L759", + "platformId": "U4561Z1", + "id": "17f4411a-f32e-48dd-b7ca-f4cdd6b46190" + }, + { + "routeId": "L759", + "platformId": "U4561Z2", + "id": "02287469-7d98-4894-9d34-f070a3e74655" + }, + { + "routeId": "L759", + "platformId": "U4562Z1", + "id": "70f4b5bf-fe31-4453-abab-a628ebf96545" + }, + { + "routeId": "L759", + "platformId": "U4562Z2", + "id": "34af99fa-96b9-4e22-9fd1-e022ca8c9f45" + }, + { + "routeId": "L759", + "platformId": "U4563Z1", + "id": "766536f4-19a7-416c-a640-cd1c746a7456" + }, + { + "routeId": "L759", + "platformId": "U4563Z2", + "id": "59e206df-86c9-4589-9b49-5fe95568d22f" + }, + { + "routeId": "L759", + "platformId": "U4564Z1", + "id": "17348bbc-0ba0-4ee2-bfd3-2eb179a193a7" + }, + { + "routeId": "L759", + "platformId": "U4564Z2", + "id": "4d390958-7c5d-47d2-a2b1-80d2edffcd09" + }, + { + "routeId": "L759", + "platformId": "U4565Z1", + "id": "1be6c020-a328-4e4c-8583-621cd1539d77" + }, + { + "routeId": "L759", + "platformId": "U4565Z2", + "id": "fa34524a-cceb-4bb9-9bf5-4b1bacfdb3d9" + }, + { + "routeId": "L247", + "platformId": "U456Z1", + "id": "a212d3d8-0217-4d13-b81d-7e97df6529d2" + }, + { + "routeId": "L244", + "platformId": "U456Z1", + "id": "42192f89-ea77-414a-b8cc-ab490964c1f1" + }, + { + "routeId": "L246", + "platformId": "U456Z1", + "id": "bd1e25f6-bf4a-4ac9-8e2d-2f7974ba9f05" + }, + { + "routeId": "L120", + "platformId": "U456Z2", + "id": "bc1d7009-3f03-4103-9581-e3f97ad8cd65" + }, + { + "routeId": "L245", + "platformId": "U456Z2", + "id": "c0fbd557-d1b6-4e36-8bc3-ff31283153bb" + }, + { + "routeId": "L246", + "platformId": "U456Z2", + "id": "248e566a-d0f0-4ff5-9fd2-ebc1ac22f9fd" + }, + { + "routeId": "L951", + "platformId": "U456Z2", + "id": "78d7c9fe-7ec9-4a78-acd2-deee4d71d0c9" + }, + { + "routeId": "L244", + "platformId": "U456Z3", + "id": "5754d513-0383-4f48-b208-9733ea05500d" + }, + { + "routeId": "L248", + "platformId": "U456Z3", + "id": "a5948906-7c4c-48cb-ac2e-21b371955afc" + }, + { + "routeId": "L313", + "platformId": "U456Z3", + "id": "b01782b5-5737-43e2-bb9c-78d61b371dc0" + }, + { + "routeId": "L951", + "platformId": "U456Z3", + "id": "7e796aa6-1d8a-454c-b2b8-f5fb983137f7" + }, + { + "routeId": "L1307", + "platformId": "U456Z301", + "id": "943293ca-898b-49f0-8388-abf7d5aa437c" + }, + { + "routeId": "L247", + "platformId": "U456Z4", + "id": "ca116970-ffc7-4f6d-a840-c0caad8674e9" + }, + { + "routeId": "L244", + "platformId": "U456Z4", + "id": "815a894c-0099-46ea-94d7-fdb33f3df078" + }, + { + "routeId": "L246", + "platformId": "U456Z4", + "id": "924374a0-62f6-49bb-905e-915d6ea07003" + }, + { + "routeId": "L120", + "platformId": "U456Z5", + "id": "d33a4469-5eff-4b56-aa89-0b5d99a1b476" + }, + { + "routeId": "L248", + "platformId": "U456Z5", + "id": "4720b9c8-3e1f-414a-978d-5a049c803a67" + }, + { + "routeId": "L245", + "platformId": "U456Z5", + "id": "4308aae2-33a8-44f6-bb66-65898a035e2e" + }, + { + "routeId": "L313", + "platformId": "U456Z6", + "id": "a3335acb-6297-450d-aaf2-73f3847d4d44" + }, + { + "routeId": "L155", + "platformId": "U4572Z1", + "id": "acfa9469-3c50-4962-9db6-a247c79b2ebe" + }, + { + "routeId": "L155", + "platformId": "U4572Z2", + "id": "c4ee814c-18a6-4309-aec7-7baf70304296" + }, + { + "routeId": "L775", + "platformId": "U4575Z1", + "id": "2d669530-d8d4-4346-9442-18ed2ccec4fd" + }, + { + "routeId": "L775", + "platformId": "U4575Z2", + "id": "1c8bf41f-0ce3-48cf-9d01-d842dd673143" + }, + { + "routeId": "L1222", + "platformId": "U4575Z301", + "id": "c5866abc-56eb-4766-9783-0a6dfb432e23" + }, + { + "routeId": "L1331", + "platformId": "U4575Z301", + "id": "20991603-df90-4cd1-8903-5b7e4b815247" + }, + { + "routeId": "L463", + "platformId": "U4576Z1", + "id": "33575982-eabc-43ca-b31b-6f32702c8c9e" + }, + { + "routeId": "L463", + "platformId": "U4576Z2", + "id": "b3281e34-f236-4349-a1e7-e252f14df6b9" + }, + { + "routeId": "L1222", + "platformId": "U4576Z301", + "id": "f869d424-e4a1-4c4d-a82a-c24b6be246d3" + }, + { + "routeId": "L1331", + "platformId": "U4576Z301", + "id": "0fbf5348-8eea-4f19-8c35-89b0a2466050" + }, + { + "routeId": "L1222", + "platformId": "U4577Z301", + "id": "e3ca57d5-a9ab-4209-a598-07088ca5349e" + }, + { + "routeId": "L1331", + "platformId": "U4577Z301", + "id": "4ed7aa54-2098-45c7-b62d-260d7b5e99b2" + }, + { + "routeId": "L201", + "platformId": "U457Z1", + "id": "3a18badd-7885-4651-a845-2808e95dde1f" + }, + { + "routeId": "L953", + "platformId": "U457Z1", + "id": "17f00668-9388-4a3a-a730-0b97197056b7" + }, + { + "routeId": "L1221", + "platformId": "U457Z301", + "id": "f806e822-ac84-4bc2-8392-ce3a3bfbac78" + }, + { + "routeId": "L1303", + "platformId": "U457Z301", + "id": "709e5204-faea-428c-857a-27b9c82f3de5" + }, + { + "routeId": "L5", + "platformId": "U458Z1", + "id": "79504817-68a4-406b-90ca-e9fdfafb61e1" + }, + { + "routeId": "L12", + "platformId": "U458Z1", + "id": "2651ca44-7f2d-42d4-b3e3-386000f9f995" + }, + { + "routeId": "L20", + "platformId": "U458Z1", + "id": "e4f66597-1521-4c9a-958b-d1263bad0aa7" + }, + { + "routeId": "L94", + "platformId": "U458Z1", + "id": "878f0f46-a8c1-4ae8-8296-1e288a68ebf8" + }, + { + "routeId": "L118", + "platformId": "U458Z10", + "id": "f40f2a1c-47d3-4d8d-9f6e-0e17a1fff2a0" + }, + { + "routeId": "L196", + "platformId": "U458Z10", + "id": "38173ddd-be59-4bb2-a0de-4e8b760abce5" + }, + { + "routeId": "L172", + "platformId": "U458Z10", + "id": "f9602b9f-3097-4faa-a373-671f783418f5" + }, + { + "routeId": "L197", + "platformId": "U458Z10", + "id": "b3e019ba-e011-4043-a118-bbe567bf25ef" + }, + { + "routeId": "L244", + "platformId": "U458Z10", + "id": "2102f44a-6b4b-44cb-a6d3-a6f09da13514" + }, + { + "routeId": "L992", + "platformId": "U458Z101", + "id": "124f3674-c213-4531-b049-0d854b70792f" + }, + { + "routeId": "L992", + "platformId": "U458Z102", + "id": "3f75576a-d226-4d79-bf6b-3cef95418e8b" + }, + { + "routeId": "L241", + "platformId": "U458Z11", + "id": "9d422bfa-b007-4cd7-879b-34005941fbc3" + }, + { + "routeId": "L129", + "platformId": "U458Z11", + "id": "2e258e0b-6789-4454-ad19-c1962c5bc219" + }, + { + "routeId": "L318", + "platformId": "U458Z11", + "id": "a4b260f3-7879-44c0-9abb-85913b9c99e1" + }, + { + "routeId": "L118", + "platformId": "U458Z13", + "id": "56103d6b-165f-4f60-b17c-7cf975308508" + }, + { + "routeId": "L125", + "platformId": "U458Z13", + "id": "011315a3-5889-4d43-a75c-d9f63fa9d626" + }, + { + "routeId": "L190", + "platformId": "U458Z13", + "id": "b7dd1454-d9e3-43a3-8603-e3bb971e7f30" + }, + { + "routeId": "L196", + "platformId": "U458Z13", + "id": "aa4061ff-f3b6-45d4-bec6-32b8a0211506" + }, + { + "routeId": "L197", + "platformId": "U458Z13", + "id": "21ebfe6c-92c0-4e17-b1bd-17c0ef8925ec" + }, + { + "routeId": "L241", + "platformId": "U458Z13", + "id": "49298ec1-6b5c-4956-81f7-685c786d8002" + }, + { + "routeId": "L129", + "platformId": "U458Z13", + "id": "a704eac1-579a-42d3-80dc-740a2157c7f6" + }, + { + "routeId": "L901", + "platformId": "U458Z13", + "id": "b74213c5-a075-4ac5-8f63-0695e15bf776" + }, + { + "routeId": "L907", + "platformId": "U458Z13", + "id": "0db06e51-caf3-4da1-b31c-192171ddb0d7" + }, + { + "routeId": "L317", + "platformId": "U458Z13", + "id": "a37f0f05-f0ea-4c01-9457-bb8f34bb135d" + }, + { + "routeId": "L320", + "platformId": "U458Z13", + "id": "48375b5c-75a3-41ec-8b99-45dfb29829ef" + }, + { + "routeId": "L318", + "platformId": "U458Z13", + "id": "202c7552-fc3a-41f7-afd9-81a51dad1713" + }, + { + "routeId": "L961", + "platformId": "U458Z13", + "id": "082a7f15-facf-46a1-817d-dfc62e6284f9" + }, + { + "routeId": "L314", + "platformId": "U458Z13", + "id": "b3e97ef6-d599-4888-81bf-579d62d402a6" + }, + { + "routeId": "L360", + "platformId": "U458Z13", + "id": "7c303474-252c-424f-bfb6-a0e1042cf45e" + }, + { + "routeId": "L361", + "platformId": "U458Z13", + "id": "3055a444-0b3c-4dd4-8d53-9976499e607c" + }, + { + "routeId": "L390", + "platformId": "U458Z13", + "id": "a1fa63ce-7444-4ed7-b915-082f291be153" + }, + { + "routeId": "L395", + "platformId": "U458Z13", + "id": "047614e3-4ad6-4fb1-a1e8-e0ccaa3f90fe" + }, + { + "routeId": "L392", + "platformId": "U458Z13", + "id": "273a5228-bb46-41c0-b210-60d6a09034e2" + }, + { + "routeId": "L420", + "platformId": "U458Z13", + "id": "b2d148a8-1b82-46ff-af06-e2aa8a46be4c" + }, + { + "routeId": "L395", + "platformId": "U458Z16", + "id": "aad9198c-e3c2-4edf-b48d-3b8b60d82f3a" + }, + { + "routeId": "L420", + "platformId": "U458Z16", + "id": "86d97eee-559c-4677-bee7-e3645395fe9e" + }, + { + "routeId": "L392", + "platformId": "U458Z16", + "id": "a8abc291-7a3d-4d1a-9198-ce6cf0bcfbb6" + }, + { + "routeId": "L901", + "platformId": "U458Z17", + "id": "6bf67fa5-60a0-41b6-bde2-1b513da63930" + }, + { + "routeId": "L907", + "platformId": "U458Z17", + "id": "a08a2449-a65e-48fb-a777-6bfffd76ee70" + }, + { + "routeId": "L314", + "platformId": "U458Z17", + "id": "fcecc431-5dd0-4c82-8cbc-6f61538f0c5c" + }, + { + "routeId": "L360", + "platformId": "U458Z17", + "id": "d65c95ca-f7c4-4e0e-a6c6-8aaac823ddc9" + }, + { + "routeId": "L361", + "platformId": "U458Z17", + "id": "34540ea5-584a-4805-9f15-87865c474372" + }, + { + "routeId": "L390", + "platformId": "U458Z17", + "id": "765e690e-4502-4dfe-8c7b-a9ad8cf2d1a9" + }, + { + "routeId": "L5", + "platformId": "U458Z2", + "id": "08915c50-0e07-4001-8e0e-33aa284968bd" + }, + { + "routeId": "L12", + "platformId": "U458Z2", + "id": "8d9a0926-c0a1-45bc-87a9-67df6ae7de97" + }, + { + "routeId": "L20", + "platformId": "U458Z2", + "id": "ef09efbb-d236-4061-9a9d-acdd24bce5c8" + }, + { + "routeId": "L94", + "platformId": "U458Z2", + "id": "0963bbc7-077b-4ef4-8a9d-ce99b47cc627" + }, + { + "routeId": "L1226", + "platformId": "U458Z301", + "id": "52a699a7-a1da-4b39-a0e0-38eea483ecbe" + }, + { + "routeId": "L1307", + "platformId": "U458Z301", + "id": "fccfdd5b-7108-4e7b-b1c3-6b97c1d15e2f" + }, + { + "routeId": "L1306", + "platformId": "U458Z301", + "id": "e27afd8c-73ec-48fd-9adb-bfafe11c6c64" + }, + { + "routeId": "L1365", + "platformId": "U458Z301", + "id": "1a64a509-2d1d-4b5d-b533-eebe8165a2f0" + }, + { + "routeId": "L320", + "platformId": "U458Z7", + "id": "cf1aa37c-115a-4f15-9731-04bedcc8eb2d" + }, + { + "routeId": "L317", + "platformId": "U458Z7", + "id": "326c195d-e89b-4f64-880e-e56510a40c6f" + }, + { + "routeId": "L318", + "platformId": "U458Z7", + "id": "81dbc135-f58f-4207-894b-4b9c71a9a504" + }, + { + "routeId": "L961", + "platformId": "U458Z7", + "id": "8567d67d-3cf9-4b8d-9cca-2161eadb9c84" + }, + { + "routeId": "L105", + "platformId": "U458Z8", + "id": "4480afa7-1141-4e48-90e7-b79adf981ce8" + }, + { + "routeId": "L118", + "platformId": "U458Z8", + "id": "c84f62e2-b0b3-47b7-aa6a-a10842084a63" + }, + { + "routeId": "L125", + "platformId": "U458Z8", + "id": "3d1fb3cd-4f3a-444b-8a22-86b822268ed2" + }, + { + "routeId": "L172", + "platformId": "U458Z8", + "id": "573458a0-16e6-489f-ab38-a241f6ece3c9" + }, + { + "routeId": "L190", + "platformId": "U458Z8", + "id": "51875319-204d-4f3a-8449-2f1c4b4d00b1" + }, + { + "routeId": "L196", + "platformId": "U458Z8", + "id": "969866cb-17e7-4723-ae07-1e33f02afa58" + }, + { + "routeId": "L197", + "platformId": "U458Z8", + "id": "91252dc0-a5b3-4484-a999-114a259172e0" + }, + { + "routeId": "L244", + "platformId": "U458Z8", + "id": "6a1101e1-1f7c-4ff1-9fe2-4e1e96a1b1f7" + }, + { + "routeId": "L105", + "platformId": "U458Z9", + "id": "422dbb9a-ed58-4d86-acbc-64079890e5e6" + }, + { + "routeId": "L125", + "platformId": "U458Z9", + "id": "724610a7-c566-4c62-8f86-11e9e21bf369" + }, + { + "routeId": "L190", + "platformId": "U458Z9", + "id": "b1fcbd6c-0dda-45ba-bfcb-22af63865403" + }, + { + "routeId": "L622", + "platformId": "U4592Z1", + "id": "58068ec0-5442-4e6a-af23-22eddef9f6cb" + }, + { + "routeId": "L622", + "platformId": "U4592Z2", + "id": "1d422d15-cbce-4641-b7d6-7940e4fa37d5" + }, + { + "routeId": "L622", + "platformId": "U4593Z1", + "id": "3596b3fe-0faf-49c4-913d-b2aea8091459" + }, + { + "routeId": "L622", + "platformId": "U4593Z2", + "id": "12a75958-aa7d-4ade-9a85-009b589dadb7" + }, + { + "routeId": "L1345", + "platformId": "U4593Z301", + "id": "0bfb166b-0ac6-47af-bc72-7e90899cf074" + }, + { + "routeId": "L630", + "platformId": "U4594Z1", + "id": "7510577e-d3d9-4389-aefa-d9d52fc0acc4" + }, + { + "routeId": "L307", + "platformId": "U4594Z2", + "id": "5626af85-3905-456b-9035-690c38828918" + }, + { + "routeId": "L307", + "platformId": "U4594Z3", + "id": "adc0e938-58bc-4153-af1e-10d67056a4de" + }, + { + "routeId": "L630", + "platformId": "U4594Z3", + "id": "3db17fa4-844a-4750-9504-7c1c387484b7" + }, + { + "routeId": "L307", + "platformId": "U4595Z1", + "id": "7fa1ee90-7d30-48d1-8e77-27e83efd4fe8" + }, + { + "routeId": "L630", + "platformId": "U4595Z1", + "id": "e38e0e48-0c78-4571-b99a-0edad5843dc1" + }, + { + "routeId": "L307", + "platformId": "U4595Z2", + "id": "7fdf480d-c26d-4683-94ea-08733e2132f2" + }, + { + "routeId": "L630", + "platformId": "U4595Z2", + "id": "26ba23c9-6279-42a7-b9db-a7255d6331d1" + }, + { + "routeId": "L630", + "platformId": "U4596Z1", + "id": "8684351f-1457-4779-9ba1-7a3fda7b0848" + }, + { + "routeId": "L630", + "platformId": "U4596Z2", + "id": "76d02e36-aa78-4d5b-a33e-0ab4fda7044b" + }, + { + "routeId": "L630", + "platformId": "U4597Z1", + "id": "5eec42ad-61ef-4a37-abbf-d5abec88d4b5" + }, + { + "routeId": "L630", + "platformId": "U4597Z2", + "id": "1c8af7f8-1f53-4f6c-b5c3-494bf81d4c60" + }, + { + "routeId": "L22", + "platformId": "U459Z1", + "id": "a5ff7c15-08a9-4551-a5fc-2ed3d95906e0" + }, + { + "routeId": "L26", + "platformId": "U459Z1", + "id": "577a0eec-0166-4c89-8212-38b68539dbb4" + }, + { + "routeId": "L91", + "platformId": "U459Z1", + "id": "ad6e2433-bf27-4e19-8296-b6b3fc275fbc" + }, + { + "routeId": "L97", + "platformId": "U459Z1", + "id": "c1b945b4-1561-45f4-b951-aa242e6fcff5" + }, + { + "routeId": "L99", + "platformId": "U459Z1", + "id": "ec1378f3-c8f4-486e-ad67-e662a918ae35" + }, + { + "routeId": "L22", + "platformId": "U459Z2", + "id": "28d4c47c-3029-4051-97b1-b3efc44cd884" + }, + { + "routeId": "L26", + "platformId": "U459Z2", + "id": "981a0dcf-fa37-4e19-9128-ad969155c44b" + }, + { + "routeId": "L91", + "platformId": "U459Z2", + "id": "62df7e7a-5f4c-459b-9aac-0fdd72f61e41" + }, + { + "routeId": "L97", + "platformId": "U459Z2", + "id": "a5c762aa-1c20-4955-bed8-af61bad2c06a" + }, + { + "routeId": "L99", + "platformId": "U459Z2", + "id": "ecc8a719-de76-4d23-a037-0016ba38386a" + }, + { + "routeId": "L154", + "platformId": "U459Z3", + "id": "b1146d51-8d4e-4dd9-b67c-f834f97a91a3" + }, + { + "routeId": "L188", + "platformId": "U459Z3", + "id": "9e6e5d8c-54c2-49d8-ac11-9808db3447bd" + }, + { + "routeId": "L901", + "platformId": "U459Z3", + "id": "bb40470e-efe5-43d1-a0c1-528ec1d58457" + }, + { + "routeId": "L906", + "platformId": "U459Z3", + "id": "db09efe5-ccc6-478c-9e1e-3879f7a46a0a" + }, + { + "routeId": "L154", + "platformId": "U459Z5", + "id": "43450148-5dcc-43e1-8397-369f817a7905" + }, + { + "routeId": "L188", + "platformId": "U459Z5", + "id": "552bf470-22fc-452e-951f-741778c46a8e" + }, + { + "routeId": "L901", + "platformId": "U459Z5", + "id": "a233d5ba-d6f7-4ddf-abc3-29f12e76e676" + }, + { + "routeId": "L906", + "platformId": "U459Z5", + "id": "cb0a8235-a437-4808-9239-891cdf07ae89" + }, + { + "routeId": "L6", + "platformId": "U45Z1", + "id": "7320835e-9d80-44cf-b12d-7c73c478c570" + }, + { + "routeId": "L11", + "platformId": "U45Z1", + "id": "16bd6c1c-10e6-4af5-9cf0-8fe700c270ee" + }, + { + "routeId": "L23", + "platformId": "U45Z1", + "id": "fef11c80-5950-47ec-917f-f18f22ce23b7" + }, + { + "routeId": "L96", + "platformId": "U45Z1", + "id": "69080224-ca76-4f6e-8871-5e148132bc07" + }, + { + "routeId": "L6", + "platformId": "U45Z2", + "id": "19b8fc9e-e5b1-4c2e-bc2a-5c248f10cf2d" + }, + { + "routeId": "L11", + "platformId": "U45Z2", + "id": "1e083b19-3f2a-449c-8e09-b5a9d3e10ed7" + }, + { + "routeId": "L23", + "platformId": "U45Z2", + "id": "d63b5945-def6-435f-a0ad-060eaeea3c9c" + }, + { + "routeId": "L96", + "platformId": "U45Z2", + "id": "2e53fcd3-2b82-4d7e-b02b-e03bc5c00587" + }, + { + "routeId": "L626", + "platformId": "U4601Z1", + "id": "ed516147-bd52-4371-bc52-c075bc2aac98" + }, + { + "routeId": "L626", + "platformId": "U4601Z2", + "id": "ba7c4314-5fc7-4cab-8f2e-e675ae1f5d63" + }, + { + "routeId": "L616", + "platformId": "U4602Z1", + "id": "60991159-a0ae-490d-93c2-24a22e8e5d4e" + }, + { + "routeId": "L616", + "platformId": "U4602Z2", + "id": "8a859a6d-b513-4adb-844b-e5b7307345a5" + }, + { + "routeId": "L616", + "platformId": "U4603Z1", + "id": "dfb83a52-bd2a-4bd5-872f-777a9b78399d" + }, + { + "routeId": "L616", + "platformId": "U4603Z2", + "id": "0598b563-f965-476e-b445-613a2639d84d" + }, + { + "routeId": "L616", + "platformId": "U4604Z1", + "id": "2379345c-541b-484b-801a-7ee23ae53134" + }, + { + "routeId": "L616", + "platformId": "U4604Z2", + "id": "c5e63a01-e6fc-432d-8977-7b1a1108cc9b" + }, + { + "routeId": "L587", + "platformId": "U4605Z1", + "id": "98d37c32-7340-49aa-9b0f-f64811c85b44" + }, + { + "routeId": "L587", + "platformId": "U4605Z2", + "id": "f6e80d0a-1d17-4e86-98f6-9e07e5f26c24" + }, + { + "routeId": "L587", + "platformId": "U4606Z1", + "id": "79943d29-ef5e-4fa2-a5a5-ede153ed80b9" + }, + { + "routeId": "L587", + "platformId": "U4606Z2", + "id": "7bbb6607-8b6a-4b5f-a5f9-6f17e13bc5a0" + }, + { + "routeId": "L646", + "platformId": "U4608Z1", + "id": "2a49fdcf-514b-4a61-98cb-eaadad810d06" + }, + { + "routeId": "L1220", + "platformId": "U4608Z301", + "id": "61c124c9-78bd-433f-b987-ed92dda3febb" + }, + { + "routeId": "L1004", + "platformId": "U4608Z301", + "id": "da7f4e54-020d-40e9-bdf6-c5793e1034ee" + }, + { + "routeId": "L1054", + "platformId": "U4608Z301", + "id": "a325a333-d9df-4ac7-b5d4-6636aeef5f9e" + }, + { + "routeId": "L1021", + "platformId": "U4608Z301", + "id": "85d01154-83a7-4815-80f1-4dcce2085cff" + }, + { + "routeId": "L1220", + "platformId": "U4609Z301", + "id": "1f1c3bf3-4db5-41f5-914a-7cbdd377b7ad" + }, + { + "routeId": "L1004", + "platformId": "U4609Z301", + "id": "896dd71c-6b13-42b2-b99e-0416c0f09ca9" + }, + { + "routeId": "L1054", + "platformId": "U4609Z301", + "id": "c15d803e-6986-4afd-bd4a-9e96cbff0a56" + }, + { + "routeId": "L1220", + "platformId": "U4610Z301", + "id": "10fe8973-3463-4635-a222-c79254add4c9" + }, + { + "routeId": "L1004", + "platformId": "U4610Z301", + "id": "d6e23c2b-f20d-43c5-962e-3ff1cd8eaaaa" + }, + { + "routeId": "L1054", + "platformId": "U4610Z301", + "id": "44dcea7f-cdfe-44b0-8dd6-1dd916a8d903" + }, + { + "routeId": "L1021", + "platformId": "U4611Z301", + "id": "f6360735-cdb4-44dd-801c-b2626b550243" + }, + { + "routeId": "L1021", + "platformId": "U4612Z301", + "id": "4b8cc8d8-1ffe-45c8-a481-f5f1b806ac65" + }, + { + "routeId": "L1021", + "platformId": "U4613Z301", + "id": "a9038b03-0245-4bfc-97ef-77bfb67106ae" + }, + { + "routeId": "L1021", + "platformId": "U4614Z301", + "id": "e171c1e6-bb88-4873-9805-84a3750707fe" + }, + { + "routeId": "L1021", + "platformId": "U4615Z301", + "id": "285a00f8-2774-4600-bf69-07c5dcb67c5e" + }, + { + "routeId": "L1216", + "platformId": "U4616Z301", + "id": "e930553e-8a17-4b7f-bc71-d46b388bf207" + }, + { + "routeId": "L1370", + "platformId": "U4616Z301", + "id": "adcb70c9-d12b-4892-8030-c458fdc93eb6" + }, + { + "routeId": "L1216", + "platformId": "U4617Z301", + "id": "e69a18d7-ad55-4fdf-80c2-4f2a66afa3f8" + }, + { + "routeId": "L1370", + "platformId": "U4617Z301", + "id": "7ef4408f-ab93-4605-af25-fc2e6f0d004f" + }, + { + "routeId": "L1216", + "platformId": "U4618Z301", + "id": "fec5ba4c-e54f-4c5b-a364-ba5aa1642200" + }, + { + "routeId": "L1321", + "platformId": "U4619Z301", + "id": "d6107323-9763-4938-a1d2-ccb781498f36" + }, + { + "routeId": "L126", + "platformId": "U461Z1", + "id": "8fe0dea0-2d3c-409c-b5f0-589df2867597" + }, + { + "routeId": "L209", + "platformId": "U461Z1", + "id": "ced6aef9-412c-4199-a432-1bbd9dafb496" + }, + { + "routeId": "L228", + "platformId": "U461Z1", + "id": "81b8bac5-429f-42f2-baba-86dd97f12c3e" + }, + { + "routeId": "L126", + "platformId": "U461Z2", + "id": "e48ad420-a41b-47ac-b115-e3b95e7d8a52" + }, + { + "routeId": "L209", + "platformId": "U461Z2", + "id": "616f6c3c-6da1-484b-97d5-86a67d51dfee" + }, + { + "routeId": "L226", + "platformId": "U461Z2", + "id": "752b1dfb-df34-479d-a941-b08916be8d6c" + }, + { + "routeId": "L227", + "platformId": "U461Z2", + "id": "8e2d02ee-4845-424c-9c43-ee24e263f3c0" + }, + { + "routeId": "L228", + "platformId": "U461Z2", + "id": "d44bc2da-0e30-4a7c-bfe6-5b68cd940418" + }, + { + "routeId": "L325", + "platformId": "U461Z2", + "id": "88a2cf7f-b800-4918-92ed-9ff8320a5499" + }, + { + "routeId": "L1217", + "platformId": "U461Z301", + "id": "18c7dd87-450e-4fee-8f6e-64d50f37b53a" + }, + { + "routeId": "L1249", + "platformId": "U461Z301", + "id": "9f34b77d-f779-4890-bc68-8c6515094371" + }, + { + "routeId": "L1309", + "platformId": "U461Z301", + "id": "19c2dfd0-ce73-4497-bd25-04cbe7bee68b" + }, + { + "routeId": "L325", + "platformId": "U461Z71", + "id": "0804c7a6-b7ed-404f-ab19-c47c5d2a7573" + }, + { + "routeId": "L1321", + "platformId": "U4620Z301", + "id": "f7c7b0ef-7603-4e04-84e9-517ee2f85128" + }, + { + "routeId": "L723", + "platformId": "U4621Z1", + "id": "d4f1c81d-3209-43be-8d15-146c690bea44" + }, + { + "routeId": "L724", + "platformId": "U4621Z1", + "id": "7a236a70-24af-46c3-adf0-92d30a2b06d7" + }, + { + "routeId": "L1321", + "platformId": "U4621Z301", + "id": "b7a6601a-b89c-4d69-9258-ce561ea16f35" + }, + { + "routeId": "L1051", + "platformId": "U4625Z301", + "id": "3b692ba9-66e2-4a53-991e-dfcc87ac8724" + }, + { + "routeId": "L20", + "platformId": "U462Z1", + "id": "f3f92b7b-4809-4184-95d2-603f4e0ae635" + }, + { + "routeId": "L26", + "platformId": "U462Z1", + "id": "8a3217b9-54cc-4c37-8725-e163d89ca123" + }, + { + "routeId": "L91", + "platformId": "U462Z1", + "id": "4b7ac1b9-7316-4350-bcf7-5b1800efcc98" + }, + { + "routeId": "L991", + "platformId": "U462Z101", + "id": "90b6c175-67a1-4892-861b-94d818f7abce" + }, + { + "routeId": "L991", + "platformId": "U462Z102", + "id": "117daef4-d6fe-4501-8f4a-41a9d5bcb232" + }, + { + "routeId": "L59", + "platformId": "U462Z11", + "id": "844e13e1-8960-4026-bcf7-6057ee67b07b" + }, + { + "routeId": "L300", + "platformId": "U462Z12", + "id": "e2bff074-23c8-41ca-889f-abf2dc3d1adb" + }, + { + "routeId": "L399", + "platformId": "U462Z12", + "id": "3678a2e0-920b-4478-9b2e-04d1e07d1d58" + }, + { + "routeId": "L322", + "platformId": "U462Z14", + "id": "14056dcf-a52a-4b5c-a544-e81de280ca45" + }, + { + "routeId": "L342", + "platformId": "U462Z14", + "id": "ffb4530a-90ac-43a1-968c-3f10e8189b05" + }, + { + "routeId": "L414", + "platformId": "U462Z14", + "id": "66e29ce4-f461-4680-ba02-9e5d51dd52f5" + }, + { + "routeId": "L429", + "platformId": "U462Z14", + "id": "0c301d8b-b99e-4076-8d0c-441319da1327" + }, + { + "routeId": "L323", + "platformId": "U462Z14", + "id": "f7e5329d-fd39-49fa-aacb-7e20ec64d0b0" + }, + { + "routeId": "L300", + "platformId": "U462Z15", + "id": "578248f9-45e7-4e2e-9248-de6d6b3bb40e" + }, + { + "routeId": "L322", + "platformId": "U462Z15", + "id": "af479b81-fc27-4265-9efd-73724bee4c18" + }, + { + "routeId": "L342", + "platformId": "U462Z15", + "id": "092994f0-6954-4c86-ac88-43e2ea914182" + }, + { + "routeId": "L399", + "platformId": "U462Z15", + "id": "8207939f-6ca1-47ab-a324-aeaccc9a3fb0" + }, + { + "routeId": "L388", + "platformId": "U462Z15", + "id": "b866c2b7-3ead-4698-93ea-4ca7bfeb9227" + }, + { + "routeId": "L389", + "platformId": "U462Z15", + "id": "f4d128f5-e31b-4122-bd01-bf371275c12b" + }, + { + "routeId": "L414", + "platformId": "U462Z15", + "id": "723f0b32-1fe2-4e06-a780-6d6e3facf3db" + }, + { + "routeId": "L429", + "platformId": "U462Z15", + "id": "121f39c4-92ae-4994-ac12-c6fd506d492d" + }, + { + "routeId": "L323", + "platformId": "U462Z15", + "id": "0a45942c-e858-4eac-b24b-ac29e2f4d2c5" + }, + { + "routeId": "L59", + "platformId": "U462Z15", + "id": "32572aae-3028-4e95-8b4e-63cef1c56102" + }, + { + "routeId": "L20", + "platformId": "U462Z2", + "id": "5062d055-a739-41a8-b5f5-200e75e42997" + }, + { + "routeId": "L26", + "platformId": "U462Z2", + "id": "b94ab728-7540-47b6-9616-9a76867ab522" + }, + { + "routeId": "L91", + "platformId": "U462Z2", + "id": "494db414-a7b7-4e22-a337-511a772b4354" + }, + { + "routeId": "L1224", + "platformId": "U462Z301", + "id": "d4361c5e-62c1-40a0-9509-df9d52bcee4e" + }, + { + "routeId": "L1245", + "platformId": "U462Z301", + "id": "43446abe-1d2e-4016-becb-0327bc3a7405" + }, + { + "routeId": "L1305", + "platformId": "U462Z301", + "id": "e04b7e14-d294-4c5b-852f-8fcd7f0b0bf2" + }, + { + "routeId": "L1354", + "platformId": "U462Z301", + "id": "4e5a6564-8a4f-4f0f-997d-d109ed6b0789" + }, + { + "routeId": "L388", + "platformId": "U462Z4", + "id": "5e747964-a9f1-4526-8d74-93ca00e09f91" + }, + { + "routeId": "L389", + "platformId": "U462Z4", + "id": "f0e38064-d044-403d-89ee-a536be204e0b" + }, + { + "routeId": "L6", + "platformId": "U463Z1", + "id": "9242475b-b7b1-4f65-ae2d-bb95368d1eda" + }, + { + "routeId": "L7", + "platformId": "U463Z1", + "id": "e8656c39-cc1f-464d-a824-14ec842e6ce0" + }, + { + "routeId": "L19", + "platformId": "U463Z1", + "id": "d1c6bfbb-a050-48e4-93a6-9feab10d013d" + }, + { + "routeId": "L95", + "platformId": "U463Z1", + "id": "751363d7-f46a-4669-bc90-f85765097144" + }, + { + "routeId": "L6", + "platformId": "U463Z2", + "id": "a95ad5c0-8b23-4c5b-a74b-f3c05942ec9a" + }, + { + "routeId": "L7", + "platformId": "U463Z2", + "id": "ecf5b0f8-9b96-4c74-9f38-6f94c9cfa863" + }, + { + "routeId": "L19", + "platformId": "U463Z2", + "id": "f343c9f9-27cb-4b4d-a55e-8ea2d12e3329" + }, + { + "routeId": "L95", + "platformId": "U463Z2", + "id": "14cc7323-c7e6-4e1a-aec4-3243b6974fc4" + }, + { + "routeId": "L193", + "platformId": "U463Z3", + "id": "8a4a27b4-6313-4210-b72b-54c53d6adf92" + }, + { + "routeId": "L1217", + "platformId": "U463Z301", + "id": "dd81bf2f-521e-4254-b3ad-32186c3d5cff" + }, + { + "routeId": "L1219", + "platformId": "U463Z301", + "id": "50f3ea7a-236f-405c-9186-e99cf7082a43" + }, + { + "routeId": "L1218", + "platformId": "U463Z301", + "id": "8a76c9b9-94cf-438f-ac63-0830bd6174aa" + }, + { + "routeId": "L1209", + "platformId": "U463Z301", + "id": "bc5241f9-490e-4018-8db2-4d5d8bcb4cf6" + }, + { + "routeId": "L1249", + "platformId": "U463Z301", + "id": "0a9227a2-c4cb-45dd-b138-a01331db700d" + }, + { + "routeId": "L1309", + "platformId": "U463Z301", + "id": "289eaf83-95cd-4f30-96c5-744833b2a0d7" + }, + { + "routeId": "L1308", + "platformId": "U463Z301", + "id": "1535914e-df78-45ac-9ea8-37a0af12bc45" + }, + { + "routeId": "L1388", + "platformId": "U463Z301", + "id": "c1c9e2dc-9b48-4f4c-86dc-d6d2c4590d2b" + }, + { + "routeId": "L193", + "platformId": "U463Z4", + "id": "68322b9c-df83-4ed9-8eb7-b5b03e1ad6c9" + }, + { + "routeId": "L12", + "platformId": "U464Z1", + "id": "a37d615d-c3fd-4e25-becd-719f0a96ffad" + }, + { + "routeId": "L31", + "platformId": "U464Z1", + "id": "4f9e9297-3675-400b-ba2f-476bc7c81f1c" + }, + { + "routeId": "L94", + "platformId": "U464Z1", + "id": "8fbac4e8-9f2e-41f6-a0cd-da2e50bf53d1" + }, + { + "routeId": "L12", + "platformId": "U464Z2", + "id": "5cd4ea09-c215-4d4a-a6b5-0772f9bd3f63" + }, + { + "routeId": "L31", + "platformId": "U464Z2", + "id": "d74c84dd-a9ef-4f1e-8037-f8169f69042d" + }, + { + "routeId": "L94", + "platformId": "U464Z2", + "id": "23a1f659-5849-4c44-b4ac-510359ddfdd4" + }, + { + "routeId": "L151", + "platformId": "U464Z3", + "id": "0a830c88-c8e1-450d-9e58-c1413f45aeda" + }, + { + "routeId": "L151", + "platformId": "U464Z5", + "id": "f682ca61-8153-4d5e-aa9a-e73c980fd483" + }, + { + "routeId": "L139", + "platformId": "U465Z1", + "id": "959ff3e9-2d92-4534-9ed5-26da983234ee" + }, + { + "routeId": "L246", + "platformId": "U465Z1", + "id": "6dd20c71-517b-4736-8f9f-7ad7ec405f59" + }, + { + "routeId": "L917", + "platformId": "U465Z1", + "id": "2ab3c697-fffb-4d70-9edc-7705827d5fbc" + }, + { + "routeId": "L139", + "platformId": "U465Z2", + "id": "d851b31f-0e6e-4c7a-85d0-0bd3ce1dc7a4" + }, + { + "routeId": "L246", + "platformId": "U465Z2", + "id": "f359451b-8daa-411a-a556-c8363724cc77" + }, + { + "routeId": "L917", + "platformId": "U465Z2", + "id": "c299cbc0-5874-43cf-884f-e3aada313e3e" + }, + { + "routeId": "L1308", + "platformId": "U465Z301", + "id": "f434e904-00d6-40cb-a80f-f67e77750e62" + }, + { + "routeId": "L1388", + "platformId": "U465Z301", + "id": "d7c3ceea-fc48-4103-ad94-389674880bd8" + }, + { + "routeId": "L304", + "platformId": "U466Z1", + "id": "e3edc78d-3336-47ec-bf68-b34dd4e6ed17" + }, + { + "routeId": "L380", + "platformId": "U466Z1", + "id": "a357338d-2b9c-4af7-aded-9c1149e04f6e" + }, + { + "routeId": "L304", + "platformId": "U466Z2", + "id": "20b748b2-422b-4dd9-a8de-6f1b8e5e4b8d" + }, + { + "routeId": "L380", + "platformId": "U466Z2", + "id": "28aaf067-09c6-4c9a-9353-bc3ae7bbec41" + }, + { + "routeId": "L10", + "platformId": "U467Z1", + "id": "5221a86b-ea1b-4775-9f74-2c917e068ff2" + }, + { + "routeId": "L93", + "platformId": "U467Z1", + "id": "23ffdc37-dbba-41bc-bc21-7a0f1918572b" + }, + { + "routeId": "L152", + "platformId": "U467Z2", + "id": "65808c47-3dac-40a6-be6d-3aee615a55b9" + }, + { + "routeId": "L177", + "platformId": "U467Z2", + "id": "96c7c212-1fee-4989-a9a7-f4130b7f6e93" + }, + { + "routeId": "L183", + "platformId": "U467Z2", + "id": "a3bd5b0a-464a-4210-81ce-0352d4accf9b" + }, + { + "routeId": "L913", + "platformId": "U467Z2", + "id": "2f307b9e-9b20-4c73-a590-204965687252" + }, + { + "routeId": "L183", + "platformId": "U467Z3", + "id": "5c5192c2-a7b9-4d42-ad63-bbb853c41d2a" + }, + { + "routeId": "L103", + "platformId": "U467Z3", + "id": "9d4b4c96-e6a6-43cb-9051-b38280f3fe04" + }, + { + "routeId": "L283", + "platformId": "U467Z3", + "id": "96b40566-5b3e-45e5-b93e-bc8763e09303" + }, + { + "routeId": "L914", + "platformId": "U467Z3", + "id": "f4593761-a674-4915-b69d-a32a5e71b2ea" + }, + { + "routeId": "L152", + "platformId": "U467Z4", + "id": "921ab9b5-14e5-43b3-834f-a5ec37cb165f" + }, + { + "routeId": "L177", + "platformId": "U467Z4", + "id": "57e6ea4c-711a-48ff-9be3-4ed2e7eae320" + }, + { + "routeId": "L183", + "platformId": "U467Z4", + "id": "743b086c-fc2a-4378-99b6-af4bd4457135" + }, + { + "routeId": "L913", + "platformId": "U467Z4", + "id": "978fbff8-9588-4623-b410-9ab5b0133c9a" + }, + { + "routeId": "L120", + "platformId": "U468Z1", + "id": "a08aa801-b7bf-4c40-b713-f38fe77c4deb" + }, + { + "routeId": "L120", + "platformId": "U468Z2", + "id": "96916cae-c70e-460f-8b01-8616a403a32d" + }, + { + "routeId": "L5", + "platformId": "U469Z1", + "id": "59e7243f-477d-4ed6-b234-90f3a9e54e90" + }, + { + "routeId": "L7", + "platformId": "U469Z1", + "id": "f8b786dd-89c7-45c9-90b3-0e5acc9123d7" + }, + { + "routeId": "L9", + "platformId": "U469Z1", + "id": "74742a05-851a-4b79-8085-28147c7cd0eb" + }, + { + "routeId": "L10", + "platformId": "U469Z1", + "id": "e733b4a7-6404-4ee5-870b-b5d559b4f56f" + }, + { + "routeId": "L11", + "platformId": "U469Z1", + "id": "2e74f53b-6bf8-4589-857f-707dfa442126" + }, + { + "routeId": "L95", + "platformId": "U469Z1", + "id": "73aca5e8-2ad2-4e86-91e0-fb8a3b03a120" + }, + { + "routeId": "L98", + "platformId": "U469Z1", + "id": "488a1f11-0998-4e44-8f35-583b05355a44" + }, + { + "routeId": "L5", + "platformId": "U469Z2", + "id": "8ff492bf-44e9-426c-bd57-6416aafc8df8" + }, + { + "routeId": "L7", + "platformId": "U469Z2", + "id": "f3d790e5-4ebe-47c3-80d6-df70c94d1538" + }, + { + "routeId": "L9", + "platformId": "U469Z2", + "id": "1af133d9-0d81-45ed-a05e-4f9847694b06" + }, + { + "routeId": "L10", + "platformId": "U469Z2", + "id": "2334b9ab-ad73-4694-946f-34b305523293" + }, + { + "routeId": "L11", + "platformId": "U469Z2", + "id": "4b9ae41c-3a5b-45f8-bd52-6ccbf7a73288" + }, + { + "routeId": "L95", + "platformId": "U469Z2", + "id": "13fb0cd1-a127-45a8-8f45-fe1bd308adfd" + }, + { + "routeId": "L98", + "platformId": "U469Z2", + "id": "5d05ea59-b953-4538-a0bd-9bec7282f880" + }, + { + "routeId": "L5", + "platformId": "U469Z3", + "id": "3b49b512-9ab6-45b0-b0fd-5661ee658f16" + }, + { + "routeId": "L9", + "platformId": "U469Z3", + "id": "b622749a-9115-4d7b-bfa8-cd0b0a47218d" + }, + { + "routeId": "L26", + "platformId": "U469Z3", + "id": "5efa2dca-6d20-4eab-a386-6da22c169f24" + }, + { + "routeId": "L95", + "platformId": "U469Z3", + "id": "b9d23441-d601-4f92-a6c9-bcaf46dce249" + }, + { + "routeId": "L5", + "platformId": "U469Z4", + "id": "f69a97ee-3299-4236-941b-206860720cec" + }, + { + "routeId": "L9", + "platformId": "U469Z4", + "id": "fc827b4b-8d18-470c-aed5-46d9fe5c32e5" + }, + { + "routeId": "L26", + "platformId": "U469Z4", + "id": "90b90752-7f65-4b43-aee9-a69b01fa90a7" + }, + { + "routeId": "L95", + "platformId": "U469Z4", + "id": "4cd5ace6-59ec-4ab0-a9ae-b16f0e36c2de" + }, + { + "routeId": "L22", + "platformId": "U46Z1", + "id": "a7412a88-4e71-41ff-84bd-588eeb5b88b2" + }, + { + "routeId": "L23", + "platformId": "U46Z1", + "id": "75e2e151-4e57-40ed-b20d-d42f291ad709" + }, + { + "routeId": "L22", + "platformId": "U46Z2", + "id": "3bf5712c-39d5-450b-8411-c1d095f1c7fa" + }, + { + "routeId": "L23", + "platformId": "U46Z2", + "id": "796a9116-f311-400e-913a-4c3e3511b168" + }, + { + "routeId": "L475", + "platformId": "U4700Z1", + "id": "fa19d22e-fd50-4797-a6e6-97feaa676710" + }, + { + "routeId": "L475", + "platformId": "U4700Z2", + "id": "2f202f22-eb7c-456e-9750-052ebe0bc7d5" + }, + { + "routeId": "L475", + "platformId": "U4701Z1", + "id": "aaf43732-edf7-432f-9d16-5b8e776b8235" + }, + { + "routeId": "L475", + "platformId": "U4701Z2", + "id": "a4cc1e46-ee8e-41fc-ac2d-d893f1dd6a5e" + }, + { + "routeId": "L475", + "platformId": "U4702Z1", + "id": "a59bb0ea-a100-4025-82bd-ff107e4e8f66" + }, + { + "routeId": "L475", + "platformId": "U4702Z2", + "id": "226a8c17-aefd-4b5d-9994-79c8156019c8" + }, + { + "routeId": "L475", + "platformId": "U4703Z1", + "id": "745b0956-d414-47f9-a859-f64190692d5f" + }, + { + "routeId": "L475", + "platformId": "U4703Z2", + "id": "a454ea0b-0c93-41f3-a97e-7601339c67e7" + }, + { + "routeId": "L475", + "platformId": "U4704Z1", + "id": "3f918842-9d31-493f-a5c7-591ca4732131" + }, + { + "routeId": "L475", + "platformId": "U4704Z2", + "id": "f2a4d491-15bc-4f40-b5d9-f54a5144fdc7" + }, + { + "routeId": "L475", + "platformId": "U4705Z1", + "id": "150c3217-5473-4c3c-8bc3-ce232d2447ba" + }, + { + "routeId": "L475", + "platformId": "U4705Z2", + "id": "4385c1ea-653b-4380-99c5-fbe8f041af7e" + }, + { + "routeId": "L475", + "platformId": "U4706Z1", + "id": "a202d9cf-83b0-4f87-afad-6eb1f9a5ba2b" + }, + { + "routeId": "L475", + "platformId": "U4706Z2", + "id": "9068e004-7b5e-4432-b6d8-ac9a2b509673" + }, + { + "routeId": "L475", + "platformId": "U4707Z1", + "id": "1a665686-33f9-45c3-8343-2aac62d82b43" + }, + { + "routeId": "L475", + "platformId": "U4707Z2", + "id": "bb4e97bb-782d-40b2-85a7-4f10f62b7225" + }, + { + "routeId": "L475", + "platformId": "U4708Z1", + "id": "53128c62-fd3c-4430-add6-13ffc53fdba3" + }, + { + "routeId": "L475", + "platformId": "U4709Z2", + "id": "5660fe89-7490-4f7f-ab3d-19174a70e3d0" + }, + { + "routeId": "L104", + "platformId": "U470Z1", + "id": "a77545da-51d3-4a28-81e2-37f6df491c6b" + }, + { + "routeId": "L120", + "platformId": "U470Z1", + "id": "fc7a8776-ccec-4832-b61b-5a0a2d52889a" + }, + { + "routeId": "L130", + "platformId": "U470Z1", + "id": "206b1e02-9a1a-48db-b70d-c1a68e10262d" + }, + { + "routeId": "L104", + "platformId": "U470Z2", + "id": "741cd803-6c49-430b-8d28-1d58180a2cc2" + }, + { + "routeId": "L120", + "platformId": "U470Z2", + "id": "ee7eef37-14e6-44de-b8cb-4e147951c8d6" + }, + { + "routeId": "L130", + "platformId": "U470Z2", + "id": "a29a8498-3c3d-49e8-8f91-1e0d48a2c91b" + }, + { + "routeId": "L467", + "platformId": "U4712Z1", + "id": "ca601919-c508-43d2-9f15-d94e0ece0f9b" + }, + { + "routeId": "L467", + "platformId": "U4712Z2", + "id": "b4ce3dc5-1106-4df1-b1f8-a517e45e0c04" + }, + { + "routeId": "L467", + "platformId": "U4713Z1", + "id": "9568c5ff-7bc0-4808-bc27-cf31a187be71" + }, + { + "routeId": "L646", + "platformId": "U4713Z1", + "id": "2f28f98d-e5d0-4f70-80a3-9f1fe7c66af7" + }, + { + "routeId": "L467", + "platformId": "U4713Z2", + "id": "457d9059-31e5-40dd-9241-fedf11e471d1" + }, + { + "routeId": "L646", + "platformId": "U4713Z2", + "id": "c4a171a0-f3d4-4fa4-90eb-a49277491601" + }, + { + "routeId": "L467", + "platformId": "U4714Z1", + "id": "14ec08ac-5628-41d0-beb6-fbe334cc0af1" + }, + { + "routeId": "L646", + "platformId": "U4714Z1", + "id": "f94e00ca-047a-49aa-b0f4-1d7c8874882f" + }, + { + "routeId": "L467", + "platformId": "U4714Z2", + "id": "eae9c9d7-5f15-4644-81e3-b026587fcd91" + }, + { + "routeId": "L646", + "platformId": "U4714Z2", + "id": "06602804-81c2-4a55-9c1f-26fcbab69370" + }, + { + "routeId": "L467", + "platformId": "U4715Z1", + "id": "664fc34b-ac06-45ec-9cb9-c1113adcd0ac" + }, + { + "routeId": "L646", + "platformId": "U4715Z1", + "id": "f1e93fe5-abac-45c3-bd50-f985de08a62d" + }, + { + "routeId": "L467", + "platformId": "U4715Z2", + "id": "83294890-57ce-47bf-a942-1c90b5703ddc" + }, + { + "routeId": "L646", + "platformId": "U4715Z2", + "id": "46de15b5-ac9f-45c9-9e5a-4e1c296ac8cd" + }, + { + "routeId": "L467", + "platformId": "U4716Z1", + "id": "ffe7ec2c-8f52-46dc-833a-9e3a238aea91" + }, + { + "routeId": "L646", + "platformId": "U4716Z1", + "id": "5dc2a31b-a745-49b3-8be4-ba9836d13a88" + }, + { + "routeId": "L467", + "platformId": "U4716Z2", + "id": "595acec8-dbe8-468a-9f84-12e91a5ad5ee" + }, + { + "routeId": "L646", + "platformId": "U4716Z2", + "id": "97cd03af-719b-406a-b64b-b9840e8a4fc3" + }, + { + "routeId": "L467", + "platformId": "U4717Z1", + "id": "1bbe13de-a14d-4d8d-b2c3-6aaa4636b64d" + }, + { + "routeId": "L467", + "platformId": "U4717Z2", + "id": "8e1274bd-f836-4abd-99f3-9330aed5d361" + }, + { + "routeId": "L646", + "platformId": "U4717Z2", + "id": "da022c60-b580-4616-bae4-4f3e7037a9eb" + }, + { + "routeId": "L361", + "platformId": "U4718Z1", + "id": "75c68c97-f246-4bf2-a498-466f567e8ecf" + }, + { + "routeId": "L361", + "platformId": "U4718Z2", + "id": "1e3ab2dd-2e30-40c8-aa8e-57239eb68e55" + }, + { + "routeId": "L3", + "platformId": "U471Z1", + "id": "638010ca-676f-44a0-b369-052991f2847c" + }, + { + "routeId": "L10", + "platformId": "U471Z1", + "id": "aae1690b-ca7b-437f-8a58-38c512bb55ae" + }, + { + "routeId": "L95", + "platformId": "U471Z1", + "id": "8ff7feaa-e386-4d59-953b-7fdedb7955f5" + }, + { + "routeId": "L3", + "platformId": "U471Z2", + "id": "6b75d39f-430d-4da3-af78-6574cb6b2145" + }, + { + "routeId": "L10", + "platformId": "U471Z2", + "id": "3a7af210-52db-4b4b-a3ec-1f80972f270e" + }, + { + "routeId": "L95", + "platformId": "U471Z2", + "id": "ed22d9f0-a14f-464a-a2b4-3e1c9b0789e9" + }, + { + "routeId": "L58", + "platformId": "U471Z2", + "id": "de708ce3-3346-45d3-a894-d63e09dc6ad1" + }, + { + "routeId": "L361", + "platformId": "U4720Z1", + "id": "06755a35-2bd8-4f16-b9f9-55c9e0d56e34" + }, + { + "routeId": "L361", + "platformId": "U4720Z2", + "id": "4c589843-0f1a-4d47-bcc3-11acec87ef07" + }, + { + "routeId": "L361", + "platformId": "U4722Z1", + "id": "cdb3247e-7e96-4757-b90e-8af981ff3cc6" + }, + { + "routeId": "L361", + "platformId": "U4722Z2", + "id": "0d2186f5-d103-4be8-bdf1-1cceca3c5726" + }, + { + "routeId": "L361", + "platformId": "U4723Z1", + "id": "b55e8530-d6e4-4bd5-8527-654933830671" + }, + { + "routeId": "L361", + "platformId": "U4723Z2", + "id": "58062f0a-4a7f-465c-80d8-6ea4b6488b73" + }, + { + "routeId": "L467", + "platformId": "U4728Z1", + "id": "a7603d95-a956-46ff-bda5-9d92169d6068" + }, + { + "routeId": "L467", + "platformId": "U4728Z2", + "id": "abb7d5fb-d623-4cb8-a6cc-55f05f028876" + }, + { + "routeId": "L22", + "platformId": "U472Z1", + "id": "de6403d0-4e1c-4a12-a1de-7d5363f29e42" + }, + { + "routeId": "L26", + "platformId": "U472Z1", + "id": "c2c31b54-27c9-41b9-91df-c257a7284337" + }, + { + "routeId": "L97", + "platformId": "U472Z1", + "id": "8e166c00-2f4c-4859-9bcb-48baabc3576c" + }, + { + "routeId": "L22", + "platformId": "U472Z2", + "id": "623d2c8c-d0a2-4f6a-91d0-3c92ce526665" + }, + { + "routeId": "L26", + "platformId": "U472Z2", + "id": "72da18d0-6fa8-462b-8e2e-2543db99c339" + }, + { + "routeId": "L97", + "platformId": "U472Z2", + "id": "30f7057e-61cf-468c-82c6-6416487f13ff" + }, + { + "routeId": "L154", + "platformId": "U472Z3", + "id": "7a9cdf74-5bed-4025-b948-18cb667d4a40" + }, + { + "routeId": "L175", + "platformId": "U472Z3", + "id": "bf0c1c04-6df3-4aaf-8c27-8523cc8f23c9" + }, + { + "routeId": "L181", + "platformId": "U472Z3", + "id": "a3be4da3-09b8-4d26-b50a-2a31bb664fd0" + }, + { + "routeId": "L154", + "platformId": "U472Z4", + "id": "18f85918-9771-490e-9aad-b730e8a53297" + }, + { + "routeId": "L175", + "platformId": "U472Z4", + "id": "7c78cf12-a5fc-41e8-975b-3ff47ebf5db9" + }, + { + "routeId": "L181", + "platformId": "U472Z4", + "id": "710d6926-04b1-4b57-a0c1-664b9026cb6c" + }, + { + "routeId": "L300", + "platformId": "U4738Z1", + "id": "3ce0c45b-43a6-4353-b992-5dd9e3e47668" + }, + { + "routeId": "L322", + "platformId": "U4738Z1", + "id": "4fe0b040-feef-4f5d-bb47-ef1d77099325" + }, + { + "routeId": "L324", + "platformId": "U4738Z1", + "id": "3854d20e-a9de-4877-962f-0b845e275c11" + }, + { + "routeId": "L300", + "platformId": "U4738Z2", + "id": "dbe27379-4149-4309-95c5-e9e9aae044a8" + }, + { + "routeId": "L322", + "platformId": "U4738Z2", + "id": "ae17296a-06d5-4585-970d-d3dbc0364892" + }, + { + "routeId": "L324", + "platformId": "U4738Z2", + "id": "56e0779b-ea57-484c-ad37-4f3c2b0ea7ad" + }, + { + "routeId": "L7", + "platformId": "U473Z1", + "id": "f3ef0034-109b-4774-90ea-3e727e15249b" + }, + { + "routeId": "L19", + "platformId": "U473Z1", + "id": "5c28d713-1f30-469a-ae71-3018ebe3cbe7" + }, + { + "routeId": "L22", + "platformId": "U473Z1", + "id": "d4a5f1f5-efa6-4e2d-b773-3e21bfbdd3d9" + }, + { + "routeId": "L95", + "platformId": "U473Z1", + "id": "0b9151fa-3930-480a-9e4d-8278d74e0145" + }, + { + "routeId": "L97", + "platformId": "U473Z1", + "id": "b4889a98-c0c0-42b2-a09c-2c7a9d08c767" + }, + { + "routeId": "L99", + "platformId": "U473Z1", + "id": "8d03c283-b850-4e2e-85e5-cec79d5429ab" + }, + { + "routeId": "L6", + "platformId": "U473Z2", + "id": "017e1786-c25d-4da5-8f94-9b9b47758319" + }, + { + "routeId": "L7", + "platformId": "U473Z2", + "id": "28488624-2334-43e2-9ce3-50215aa5b2f9" + }, + { + "routeId": "L19", + "platformId": "U473Z2", + "id": "2ceded50-430f-4727-bd29-2e84c68ae427" + }, + { + "routeId": "L22", + "platformId": "U473Z2", + "id": "1bf72532-18df-4a0a-aa02-64e8c7348aad" + }, + { + "routeId": "L95", + "platformId": "U473Z2", + "id": "826608c1-30a5-4387-9dc2-fec4830dbc3d" + }, + { + "routeId": "L97", + "platformId": "U473Z2", + "id": "bd4c089a-03fa-4448-925d-ab6fd527151d" + }, + { + "routeId": "L99", + "platformId": "U473Z2", + "id": "1b89ba0c-a61d-4022-bf21-5dda5655b348" + }, + { + "routeId": "L6", + "platformId": "U473Z3", + "id": "10f9b5e5-7645-4d40-9ef3-91a7cc67ad20" + }, + { + "routeId": "L360", + "platformId": "U4746Z1", + "id": "2cf84a14-c8ab-4fc2-99ae-bbc3d62656e4" + }, + { + "routeId": "L360", + "platformId": "U4746Z2", + "id": "4e45e853-5386-4217-ba29-f703af14c2b6" + }, + { + "routeId": "L360", + "platformId": "U4747Z1", + "id": "78ccff03-fad5-4972-8ce7-d7e5832bf3cc" + }, + { + "routeId": "L360", + "platformId": "U4747Z2", + "id": "6b293cb6-37cd-465a-b07b-c902d08cbeb4" + }, + { + "routeId": "L360", + "platformId": "U4748Z1", + "id": "f3082087-5eda-4419-aaff-b931b6dc9743" + }, + { + "routeId": "L360", + "platformId": "U4748Z2", + "id": "8925321c-b454-44d3-9c3f-7e6d84297bce" + }, + { + "routeId": "L360", + "platformId": "U4749Z1", + "id": "7419d6e8-a112-41fe-bc20-2780229cd7ec" + }, + { + "routeId": "L360", + "platformId": "U4749Z2", + "id": "911497c6-f3ab-46b4-886f-b073e23b20a0" + }, + { + "routeId": "L31", + "platformId": "U474Z1", + "id": "b039f7ae-f906-4a3f-9d99-fe2a56afe397" + }, + { + "routeId": "L992", + "platformId": "U474Z101", + "id": "25ca0a5a-6a61-4537-a8fa-ba988277fb20" + }, + { + "routeId": "L992", + "platformId": "U474Z102", + "id": "ea83d8e6-393a-46c1-aac8-ced405469269" + }, + { + "routeId": "L12", + "platformId": "U474Z2", + "id": "187d4098-7d15-406b-8521-4646a055a20f" + }, + { + "routeId": "L31", + "platformId": "U474Z2", + "id": "d4ebd7ec-6e46-4990-97bb-5623ca3b79d6" + }, + { + "routeId": "L94", + "platformId": "U474Z2", + "id": "e47d312c-2f7f-495a-8607-0ce5aa8ebf6f" + }, + { + "routeId": "L12", + "platformId": "U474Z3", + "id": "75215d2b-1ee2-448e-b01b-9868ad38f37b" + }, + { + "routeId": "L31", + "platformId": "U474Z3", + "id": "dcf63712-ba37-4658-a6a2-98d4b7228d47" + }, + { + "routeId": "L94", + "platformId": "U474Z3", + "id": "ef40e62b-f34f-4b66-8a76-e37e9680bb90" + }, + { + "routeId": "L1221", + "platformId": "U474Z301", + "id": "fea457ac-9fbf-4452-8e8c-4add162e7c7b" + }, + { + "routeId": "L1302", + "platformId": "U474Z301", + "id": "7d139b00-6f13-45bd-92f2-b23c1c3c79a8" + }, + { + "routeId": "L1322", + "platformId": "U474Z301", + "id": "1b5c3bf2-34b0-4b28-bcfc-eef9db9676c7" + }, + { + "routeId": "L1303", + "platformId": "U474Z301", + "id": "1b77c85d-b143-49d9-b3b7-5e3843caec6e" + }, + { + "routeId": "L151", + "platformId": "U474Z4", + "id": "10720d2b-4432-44eb-afde-22916e0b17e3" + }, + { + "routeId": "L152", + "platformId": "U474Z4", + "id": "9fbdf5ae-2b2b-4007-b59a-3df91c4fe6ab" + }, + { + "routeId": "L177", + "platformId": "U474Z4", + "id": "e3553fb9-cbd9-4323-ac7a-b72d3545fe7b" + }, + { + "routeId": "L183", + "platformId": "U474Z4", + "id": "dd83947d-87f8-40cd-98d6-c3938b0b8f65" + }, + { + "routeId": "L913", + "platformId": "U474Z4", + "id": "2f4e9cb3-1cbf-4fa5-bde7-3ed4d97bc090" + }, + { + "routeId": "L136", + "platformId": "U474Z5", + "id": "bd71d0f2-2844-459b-aceb-03d5b122fd5c" + }, + { + "routeId": "L195", + "platformId": "U474Z5", + "id": "6bea026a-a44a-4097-bd59-c0b0551a4aa3" + }, + { + "routeId": "L375", + "platformId": "U474Z5", + "id": "8ac2e126-3583-4b81-b16a-5ecbe018b9f1" + }, + { + "routeId": "L136", + "platformId": "U474Z6", + "id": "e73e012a-8a2c-4b04-aead-27be4a0da9bc" + }, + { + "routeId": "L177", + "platformId": "U474Z6", + "id": "924789b3-4329-43eb-8448-0bfd5599af55" + }, + { + "routeId": "L183", + "platformId": "U474Z6", + "id": "bcf14701-31d5-4e97-83a8-354ddd26eb58" + }, + { + "routeId": "L195", + "platformId": "U474Z6", + "id": "3150f7ba-953b-41cb-8ebd-6310b4bc5d4c" + }, + { + "routeId": "L913", + "platformId": "U474Z6", + "id": "697636fb-b55f-4168-ba54-cedd59c93d35" + }, + { + "routeId": "L151", + "platformId": "U474Z7", + "id": "1977eeff-1bbe-41f1-bd07-f12f230a1940" + }, + { + "routeId": "L152", + "platformId": "U474Z7", + "id": "0c1aee90-3baa-4ab9-8bdc-3cb28a6afcb8" + }, + { + "routeId": "L375", + "platformId": "U474Z7", + "id": "23591549-4574-4c9c-918e-53b67779bdc5" + }, + { + "routeId": "L12", + "platformId": "U474Z8", + "id": "036ad2db-27ed-44c6-84b4-4daf747593f2" + }, + { + "routeId": "L31", + "platformId": "U474Z8", + "id": "59f103d8-96d3-440c-8e69-ddb76165f0ad" + }, + { + "routeId": "L94", + "platformId": "U474Z8", + "id": "ccb67572-59bf-4ca3-847f-bf932c857b42" + }, + { + "routeId": "L360", + "platformId": "U4750Z1", + "id": "d3e772d5-909f-4ede-93c5-3bf3d1be1172" + }, + { + "routeId": "L360", + "platformId": "U4750Z2", + "id": "37b24c57-ee2e-49c3-ac4b-150936a5e80b" + }, + { + "routeId": "L360", + "platformId": "U4752Z1", + "id": "78632a90-bc9d-445f-af08-30e38cb93d56" + }, + { + "routeId": "L360", + "platformId": "U4752Z2", + "id": "293746b9-c6e6-4ca3-bd38-8924c520cace" + }, + { + "routeId": "L360", + "platformId": "U4753Z1", + "id": "f2ceaab3-620a-4adc-87c4-2b5cd68bfad3" + }, + { + "routeId": "L360", + "platformId": "U4753Z2", + "id": "a0be0403-f1b1-421f-b070-79d3073df238" + }, + { + "routeId": "L174", + "platformId": "U475Z1", + "id": "cfcb4c48-9a62-4226-ad36-7a5948c021c5" + }, + { + "routeId": "L902", + "platformId": "U475Z1", + "id": "0bf55f16-df39-4190-8967-c5d947fe1063" + }, + { + "routeId": "L174", + "platformId": "U475Z2", + "id": "d7fb54c1-04b9-4373-977b-c9f170928269" + }, + { + "routeId": "L902", + "platformId": "U475Z2", + "id": "3e8b3a63-7368-46b1-b111-a8d98b9623cc" + }, + { + "routeId": "L754", + "platformId": "U4760Z1", + "id": "75b1285c-9523-43f4-9b5f-5deab02b6e7a" + }, + { + "routeId": "L360", + "platformId": "U4761Z1", + "id": "b5873ef1-7e77-4732-a434-c2d29c2af8bf" + }, + { + "routeId": "L360", + "platformId": "U4761Z2", + "id": "48a73e29-7eaa-4742-af10-d8f7c0aaa851" + }, + { + "routeId": "L360", + "platformId": "U4762Z1", + "id": "9a59f3d7-e630-4eba-ab2a-ae4b98a71d2c" + }, + { + "routeId": "L360", + "platformId": "U4762Z2", + "id": "6d45d93c-f60f-4964-8f6d-487af94d08fb" + }, + { + "routeId": "L360", + "platformId": "U4763Z1", + "id": "3f0f7f5e-9fe2-4f0a-853a-e14065df5e36" + }, + { + "routeId": "L754", + "platformId": "U4763Z1", + "id": "63c69fb1-1c76-40c7-bad2-5b48da020883" + }, + { + "routeId": "L360", + "platformId": "U4763Z2", + "id": "d8cbcf91-ebcd-4cab-bb6b-388da030be45" + }, + { + "routeId": "L754", + "platformId": "U4763Z2", + "id": "4028653d-4f12-42bb-bb18-51e10738821c" + }, + { + "routeId": "L360", + "platformId": "U4764Z1", + "id": "e0006f43-b8da-415a-87e0-e89c1c06de11" + }, + { + "routeId": "L450", + "platformId": "U4764Z1", + "id": "abe1e616-e729-4ba6-a54c-2a9e0e68f4a8" + }, + { + "routeId": "L360", + "platformId": "U4764Z2", + "id": "9bb7d012-21e4-433e-a288-5f395d7cfd4f" + }, + { + "routeId": "L450", + "platformId": "U4764Z2", + "id": "ab474f67-448e-40d0-805d-4f062b03c678" + }, + { + "routeId": "L754", + "platformId": "U4764Z2", + "id": "7e3f25d4-701c-4906-801e-8bf88d55f824" + }, + { + "routeId": "L754", + "platformId": "U4764Z3", + "id": "abc01a26-50f5-46c3-8706-00f7cc16f787" + }, + { + "routeId": "L454", + "platformId": "U4764Z5", + "id": "d862a116-f66b-4c29-9945-9738ad707b03" + }, + { + "routeId": "L549", + "platformId": "U4764Z6", + "id": "7a7c2749-ece8-43fb-bc1b-4bc3fd2ed83d" + }, + { + "routeId": "L552", + "platformId": "U4764Z6", + "id": "3903bf7e-cb6d-4eb4-b60e-a02033939da8" + }, + { + "routeId": "L360", + "platformId": "U4764Z8", + "id": "0dc9b81b-41f6-4ee4-aab5-c07b09d9622f" + }, + { + "routeId": "L552", + "platformId": "U4764Z8", + "id": "66d64ebc-f6ff-4c70-ae14-b43c2f831039" + }, + { + "routeId": "L549", + "platformId": "U4764Z8", + "id": "fa0201fc-2965-4dfd-a9aa-399cbb967b82" + }, + { + "routeId": "L454", + "platformId": "U4764Z8", + "id": "e15ea6e2-4033-4ca3-8d47-a35201478d41" + }, + { + "routeId": "L1375", + "platformId": "U4765Z301", + "id": "77662921-d239-441b-8da7-51836159eff0" + }, + { + "routeId": "L1357", + "platformId": "U4765Z301", + "id": "cf268808-b74b-417c-bf53-6c3f6f45b950" + }, + { + "routeId": "L380", + "platformId": "U4766Z1", + "id": "3a41f77c-203a-40d9-b22f-58dbe53cb90a" + }, + { + "routeId": "L425", + "platformId": "U4766Z1", + "id": "6ef60c31-71db-429a-a25c-93154af46f9a" + }, + { + "routeId": "L380", + "platformId": "U4766Z2", + "id": "23314a6b-a242-4483-98a6-d1fb9760f90c" + }, + { + "routeId": "L425", + "platformId": "U4766Z2", + "id": "591a08c7-2361-4283-acba-12adbf08ae31" + }, + { + "routeId": "L342", + "platformId": "U4767Z1", + "id": "d9b6c574-a58c-4157-a111-95c264d5fc99" + }, + { + "routeId": "L342", + "platformId": "U4767Z2", + "id": "1f8bf2aa-d2bd-4cca-a402-fed7e2baecbd" + }, + { + "routeId": "L342", + "platformId": "U4768Z1", + "id": "d9bb5e31-3a3b-4779-9603-20480a6c12bc" + }, + { + "routeId": "L626", + "platformId": "U4768Z1", + "id": "7d13dfdf-ca72-4279-9acb-7071ed7e704b" + }, + { + "routeId": "L342", + "platformId": "U4768Z2", + "id": "cec5f786-c33e-4847-a19c-17af3d679277" + }, + { + "routeId": "L626", + "platformId": "U4769Z1", + "id": "739408e3-0adb-44d9-b901-957db8ba9c50" + }, + { + "routeId": "L626", + "platformId": "U4769Z2", + "id": "2aa2bd6f-533e-4e5a-9c06-e4896a9d434e" + }, + { + "routeId": "L10", + "platformId": "U476Z1", + "id": "dda604fd-798b-4fc6-bf43-9a31ea20b9ac" + }, + { + "routeId": "L13", + "platformId": "U476Z1", + "id": "eeaf00df-a9dd-4ba3-9e9f-3b023d274b00" + }, + { + "routeId": "L16", + "platformId": "U476Z1", + "id": "ed6cc9e2-762e-4b28-a452-da35e1f32cc6" + }, + { + "routeId": "L22", + "platformId": "U476Z1", + "id": "22785735-30a3-42af-a321-1e624a643f4e" + }, + { + "routeId": "L91", + "platformId": "U476Z1", + "id": "68522f33-27be-4a15-a8e6-82e449ed88be" + }, + { + "routeId": "L97", + "platformId": "U476Z1", + "id": "951cd002-64b9-4b90-b63f-561906c57e0c" + }, + { + "routeId": "L99", + "platformId": "U476Z1", + "id": "9381d3e5-ac93-4fe2-b1ce-e94dc1c9e9ce" + }, + { + "routeId": "L991", + "platformId": "U476Z101", + "id": "11c10b39-0728-4b8f-a8e1-f03c85d0f830" + }, + { + "routeId": "L991", + "platformId": "U476Z102", + "id": "4c994318-989a-4bc5-b182-11e9210387dd" + }, + { + "routeId": "L10", + "platformId": "U476Z2", + "id": "505dc5e9-bac3-4d70-af3e-da99e4712573" + }, + { + "routeId": "L13", + "platformId": "U476Z2", + "id": "d6e4f6bc-580f-4533-ae4a-67b24010c27b" + }, + { + "routeId": "L16", + "platformId": "U476Z2", + "id": "d161fe74-5e14-4917-bbc1-6a96cefe0798" + }, + { + "routeId": "L22", + "platformId": "U476Z2", + "id": "2a3a0d73-9665-42c4-9069-ea5b268f9a0b" + }, + { + "routeId": "L91", + "platformId": "U476Z2", + "id": "5eb20984-50b2-4f81-8fb7-4135d3bb06ac" + }, + { + "routeId": "L97", + "platformId": "U476Z2", + "id": "68dfb652-6e06-4d70-88aa-61864ca78a3c" + }, + { + "routeId": "L99", + "platformId": "U476Z2", + "id": "0f9c3353-1741-4053-8eff-a97531d95652" + }, + { + "routeId": "L135", + "platformId": "U476Z2", + "id": "df46fa4f-de87-426e-ae7b-d312a4ed0dbb" + }, + { + "routeId": "L135", + "platformId": "U476Z5", + "id": "ce424a97-8f3d-4f52-8cda-7a72e180f3b8" + }, + { + "routeId": "L342", + "platformId": "U4770Z1", + "id": "bbdee55e-8c14-4ee4-9ad3-23f7bee2b3e2" + }, + { + "routeId": "L626", + "platformId": "U4770Z1", + "id": "5c76bc15-1ebf-409d-a67b-496c1bf3b89f" + }, + { + "routeId": "L342", + "platformId": "U4770Z2", + "id": "c43ad7c2-e174-4f5d-8e9f-bbcb4afca446" + }, + { + "routeId": "L626", + "platformId": "U4770Z2", + "id": "d68d29da-4153-4acf-a0de-0ee8deccc184" + }, + { + "routeId": "L342", + "platformId": "U4771Z1", + "id": "005500fd-5c72-41d1-9d00-ea271826cd96" + }, + { + "routeId": "L626", + "platformId": "U4771Z1", + "id": "3fbaa67c-ed22-4df3-a0cb-ffdc33362719" + }, + { + "routeId": "L342", + "platformId": "U4771Z2", + "id": "00ddf56b-8e11-4a58-9e57-d41ed5780199" + }, + { + "routeId": "L626", + "platformId": "U4771Z2", + "id": "bd6f4044-5f95-4f91-addd-92ed79f498af" + }, + { + "routeId": "L342", + "platformId": "U4772Z1", + "id": "ce9fa096-4b98-4493-9d0d-21d95ecb7ba5" + }, + { + "routeId": "L626", + "platformId": "U4772Z1", + "id": "f3ab2b15-5d49-41d4-b4e0-1c077dae6ab9" + }, + { + "routeId": "L342", + "platformId": "U4772Z2", + "id": "ff43ae98-5d4a-4df8-bea2-647c0069976b" + }, + { + "routeId": "L626", + "platformId": "U4772Z2", + "id": "b9c6e9f1-35eb-42ad-84ab-7aa722841343" + }, + { + "routeId": "L342", + "platformId": "U4773Z3", + "id": "07b15cc6-3db0-489b-afcd-b7b17ed5f31d" + }, + { + "routeId": "L626", + "platformId": "U4773Z3", + "id": "1f858522-2ff1-4713-9502-b80702a749af" + }, + { + "routeId": "L342", + "platformId": "U4774Z1", + "id": "3c6c918f-6eda-4aca-917e-dbb43ae99f6f" + }, + { + "routeId": "L388", + "platformId": "U4774Z1", + "id": "a49d9f51-425a-4504-bcfd-484ed396e410" + }, + { + "routeId": "L389", + "platformId": "U4774Z1", + "id": "aec270cd-2ea5-47c6-9d5c-b74d988d144e" + }, + { + "routeId": "L342", + "platformId": "U4774Z2", + "id": "231e9022-de15-4f1f-b1d3-d34b7b26cef6" + }, + { + "routeId": "L388", + "platformId": "U4774Z2", + "id": "7c99296c-18a2-4a6d-8763-f44da3aef8a2" + }, + { + "routeId": "L389", + "platformId": "U4774Z2", + "id": "a3c8ed57-6de0-4caa-b25c-ba929c86b1ff" + }, + { + "routeId": "L342", + "platformId": "U4775Z1", + "id": "56511157-85bb-4a24-87dd-5e54535f516e" + }, + { + "routeId": "L388", + "platformId": "U4775Z1", + "id": "0eca6c3a-4e44-4a33-a556-05349c649ae0" + }, + { + "routeId": "L389", + "platformId": "U4775Z1", + "id": "0ef03ebb-94df-4ed2-92d2-9f50dba1f793" + }, + { + "routeId": "L342", + "platformId": "U4775Z2", + "id": "fffe4bfd-81aa-499e-beb1-3972f6f0561d" + }, + { + "routeId": "L388", + "platformId": "U4775Z2", + "id": "d9e51817-0b53-4b43-a141-5995aedcb5ba" + }, + { + "routeId": "L389", + "platformId": "U4775Z2", + "id": "dfb9522f-4bcc-450d-bfed-ed67a338bbb9" + }, + { + "routeId": "L342", + "platformId": "U4776Z1", + "id": "ff5b9b47-f586-4a29-bb9c-3136d741c560" + }, + { + "routeId": "L388", + "platformId": "U4776Z1", + "id": "f961397a-d41c-4385-90b6-86dca31ef500" + }, + { + "routeId": "L389", + "platformId": "U4776Z1", + "id": "72247733-6591-4618-a3ae-b8194125759e" + }, + { + "routeId": "L342", + "platformId": "U4776Z2", + "id": "168e026b-b20c-44b3-a900-ce629ac16e90" + }, + { + "routeId": "L388", + "platformId": "U4776Z2", + "id": "e362ecfa-b288-45b8-91cd-c7496e9ca34f" + }, + { + "routeId": "L389", + "platformId": "U4776Z2", + "id": "59e0ecd1-869c-49f1-9980-b90fbfb723d7" + }, + { + "routeId": "L617", + "platformId": "U4777Z1", + "id": "36732307-9568-42e0-973c-f6a3cd62a5d0" + }, + { + "routeId": "L590", + "platformId": "U4777Z10", + "id": "190533cd-2db3-4591-9ae1-7cc3309831b7" + }, + { + "routeId": "L324", + "platformId": "U4777Z15", + "id": "e20ff57a-da86-4680-bf5d-860a66422a99" + }, + { + "routeId": "L342", + "platformId": "U4777Z15", + "id": "0ed630b7-b270-442d-af54-fc509e29e11b" + }, + { + "routeId": "L388", + "platformId": "U4777Z15", + "id": "0d725470-3277-49f9-8301-53a876a7c31b" + }, + { + "routeId": "L389", + "platformId": "U4777Z15", + "id": "4d437059-368e-4346-b0f1-e5e0c9d04fd8" + }, + { + "routeId": "L617", + "platformId": "U4777Z15", + "id": "787ce7fd-ee87-4791-98de-32bb0c1df783" + }, + { + "routeId": "L580", + "platformId": "U4777Z15", + "id": "c2021c0a-2bd9-4c89-bfe5-46fc2943cb96" + }, + { + "routeId": "L587", + "platformId": "U4777Z15", + "id": "42b689ba-77f3-42a9-a358-14e87f0b8b36" + }, + { + "routeId": "L616", + "platformId": "U4777Z15", + "id": "a87122f6-b85b-4a2d-b902-8b7326b1d63d" + }, + { + "routeId": "L650", + "platformId": "U4777Z15", + "id": "c1d4477a-75ea-4b49-81a8-0a0c5634f7d5" + }, + { + "routeId": "L627", + "platformId": "U4777Z16", + "id": "d907257e-8b00-4ecf-93d7-b64fd14fd0f4" + }, + { + "routeId": "L324", + "platformId": "U4777Z17", + "id": "cb22ef9c-43f9-4c0f-8175-b2929b4aa8a8" + }, + { + "routeId": "L580", + "platformId": "U4777Z3", + "id": "f7985c9e-4392-4e71-b026-d44943945e2d" + }, + { + "routeId": "L627", + "platformId": "U4777Z4", + "id": "32a0125d-57e9-47ab-9c5c-215c5fb702aa" + }, + { + "routeId": "L616", + "platformId": "U4777Z4", + "id": "c0127088-95af-475e-827e-f0d4565ae7a5" + }, + { + "routeId": "L590", + "platformId": "U4777Z5", + "id": "aa60e7a5-f4ba-4714-9f54-9f0a46f826ab" + }, + { + "routeId": "L587", + "platformId": "U4777Z6", + "id": "64b62887-d2a9-401b-8045-3f71fb473256" + }, + { + "routeId": "L342", + "platformId": "U4777Z7", + "id": "c680345b-76df-46bb-b581-40f44643ce52" + }, + { + "routeId": "L388", + "platformId": "U4777Z8", + "id": "6c00e4e7-48e3-4481-aac0-29186a29a31b" + }, + { + "routeId": "L389", + "platformId": "U4777Z8", + "id": "2b0f31c7-cac6-4331-8d11-7fd6090f06eb" + }, + { + "routeId": "L650", + "platformId": "U4777Z9", + "id": "d29133c1-2122-4391-87f3-2c63f460a569" + }, + { + "routeId": "L388", + "platformId": "U4778Z1", + "id": "3f2f09f0-189a-41e7-a9b1-32ac1eb00a7f" + }, + { + "routeId": "L388", + "platformId": "U4778Z2", + "id": "13e88ed1-a027-438a-8c01-515f156d40b5" + }, + { + "routeId": "L388", + "platformId": "U4779Z1", + "id": "7f9940eb-ec53-4e1c-be1d-4b2604168b14" + }, + { + "routeId": "L587", + "platformId": "U4779Z1", + "id": "d526b3c9-67d0-4a99-b345-2d836c5dfbc2" + }, + { + "routeId": "L388", + "platformId": "U4779Z2", + "id": "8693a352-478d-4e1d-b6e4-5966795e2272" + }, + { + "routeId": "L587", + "platformId": "U4779Z2", + "id": "d08d6abd-25eb-4f91-8af0-0611d91016df" + }, + { + "routeId": "L324", + "platformId": "U4780Z1", + "id": "e1fbbeda-6f1b-4e60-b3b0-42a23ece6368" + }, + { + "routeId": "L388", + "platformId": "U4780Z1", + "id": "21e6b35a-61fc-4507-b35c-d5ac8a23bb00" + }, + { + "routeId": "L587", + "platformId": "U4780Z1", + "id": "da699027-cbd5-4160-aeb8-5005053c2028" + }, + { + "routeId": "L324", + "platformId": "U4781Z2", + "id": "ab675ec6-a8de-4011-b592-ea976d940efb" + }, + { + "routeId": "L324", + "platformId": "U4782Z2", + "id": "1f2c4b2c-1589-40d9-9fbf-a8d567840656" + }, + { + "routeId": "L324", + "platformId": "U4783Z1", + "id": "c0ed39e6-66b8-435e-970f-bce095d3308b" + }, + { + "routeId": "L388", + "platformId": "U4783Z1", + "id": "2d868f74-3db9-4044-9a2e-f072b06d5c08" + }, + { + "routeId": "L324", + "platformId": "U4783Z2", + "id": "6510d992-c58c-4b16-bba3-ca5961468f30" + }, + { + "routeId": "L388", + "platformId": "U4783Z2", + "id": "9b6426de-8ac5-416b-9314-833924bd4da6" + }, + { + "routeId": "L324", + "platformId": "U4784Z1", + "id": "bc6b47a5-8db0-4d35-ba4c-da2ce3ea0578" + }, + { + "routeId": "L388", + "platformId": "U4784Z1", + "id": "bb3e4aed-159b-45bb-bfe1-43dfaa18a6c5" + }, + { + "routeId": "L324", + "platformId": "U4784Z2", + "id": "bb723198-b6fb-4fd8-9466-a797b7a599c7" + }, + { + "routeId": "L388", + "platformId": "U4784Z2", + "id": "ebc3bcd2-0784-4ba6-9101-a7d8e8998a1f" + }, + { + "routeId": "L324", + "platformId": "U4785Z1", + "id": "7d309b5c-7df2-46e6-af77-838913a38322" + }, + { + "routeId": "L388", + "platformId": "U4785Z1", + "id": "8ddd4b20-be43-41aa-8cb9-583d19d99cca" + }, + { + "routeId": "L324", + "platformId": "U4785Z2", + "id": "4d09f768-02ce-42fb-aca8-388a554a745a" + }, + { + "routeId": "L324", + "platformId": "U4786Z1", + "id": "2b6ba824-8358-4ef3-b846-1ac19810a916" + }, + { + "routeId": "L342", + "platformId": "U4786Z1", + "id": "61e352c8-773c-43fb-9043-226c572de3da" + }, + { + "routeId": "L617", + "platformId": "U4786Z1", + "id": "96fa4fa0-f272-492d-989c-5fda60ce8fa7" + }, + { + "routeId": "L389", + "platformId": "U4786Z1", + "id": "3bd3c2e2-3d18-4acd-9b6f-a51ed96a55bb" + }, + { + "routeId": "L580", + "platformId": "U4786Z1", + "id": "1aa1fdd0-351d-4f94-beed-0202d70484f5" + }, + { + "routeId": "L587", + "platformId": "U4786Z1", + "id": "63bc1f6e-d01d-4d97-91ba-abff3131c3ed" + }, + { + "routeId": "L590", + "platformId": "U4786Z1", + "id": "cefb70c0-f2cd-478e-922e-f640463b3d50" + }, + { + "routeId": "L616", + "platformId": "U4786Z1", + "id": "4ff78424-2511-4ea2-a974-2cc124b7d2d8" + }, + { + "routeId": "L650", + "platformId": "U4786Z1", + "id": "35c51ac3-6e1f-4de0-80a9-aaa12aa51199" + }, + { + "routeId": "L324", + "platformId": "U4786Z2", + "id": "db468131-2674-431c-b73f-343ec8ba48a1" + }, + { + "routeId": "L342", + "platformId": "U4786Z2", + "id": "7bb776fa-5bdc-4c1b-bc2d-891d48d4aed0" + }, + { + "routeId": "L617", + "platformId": "U4786Z2", + "id": "706219c1-60f8-4ace-9cfd-33302882d49d" + }, + { + "routeId": "L389", + "platformId": "U4786Z2", + "id": "7b7dbc16-4dd1-45cf-bbbd-05cff4b6d7f2" + }, + { + "routeId": "L580", + "platformId": "U4786Z2", + "id": "70a351e4-cace-4407-a6ff-186a9d2fd5ca" + }, + { + "routeId": "L587", + "platformId": "U4786Z2", + "id": "b6e423a2-6e08-4115-848d-ff768c8e518c" + }, + { + "routeId": "L590", + "platformId": "U4786Z2", + "id": "d8725043-2e29-42de-ab92-8372aa60d1f5" + }, + { + "routeId": "L616", + "platformId": "U4786Z2", + "id": "da0013eb-c02b-428d-8f2d-c85f537ca9c9" + }, + { + "routeId": "L650", + "platformId": "U4786Z2", + "id": "43ea1fbd-959b-483e-99f5-e656eca2540e" + }, + { + "routeId": "L324", + "platformId": "U4787Z1", + "id": "fb7a1660-9f2c-454d-bfd1-f8a762131cbd" + }, + { + "routeId": "L389", + "platformId": "U4787Z1", + "id": "ff2c225f-3066-43bd-9cce-709f2c3eb8a9" + }, + { + "routeId": "L580", + "platformId": "U4787Z1", + "id": "c20b25bd-d69f-44eb-9de3-74428be594e2" + }, + { + "routeId": "L324", + "platformId": "U4787Z2", + "id": "2625a7cc-607b-440e-b26d-a1cbff9583da" + }, + { + "routeId": "L389", + "platformId": "U4787Z2", + "id": "2235b69d-ba3d-4201-aa25-a04087448d50" + }, + { + "routeId": "L580", + "platformId": "U4787Z2", + "id": "bcc57e77-aad7-4026-98b2-0f68de132520" + }, + { + "routeId": "L324", + "platformId": "U4788Z1", + "id": "62186512-71f6-4084-a3fc-4cd361dce9b4" + }, + { + "routeId": "L324", + "platformId": "U4788Z2", + "id": "8b4b804a-bb09-4009-bd6e-20d5a3c2b9e8" + }, + { + "routeId": "L324", + "platformId": "U4789Z1", + "id": "a74f2109-851e-490e-8a4c-3e6552e65325" + }, + { + "routeId": "L324", + "platformId": "U4789Z2", + "id": "0c6420e0-4d3f-4b25-899a-584ed0b616e8" + }, + { + "routeId": "L388", + "platformId": "U4789Z2", + "id": "90548e1a-ae31-4c90-990e-6ac0a9d9d3ca" + }, + { + "routeId": "L307", + "platformId": "U4790Z1", + "id": "d8a8c3cc-9508-44e9-9694-ca3b4a4cb3c1" + }, + { + "routeId": "L307", + "platformId": "U4790Z2", + "id": "83df0778-93fe-4af2-be21-8dc2dde712df" + }, + { + "routeId": "L399", + "platformId": "U4791Z1", + "id": "c897d957-6855-4ec4-9f04-bfae8eb4f3c1" + }, + { + "routeId": "L399", + "platformId": "U4791Z2", + "id": "be06be26-46e4-450b-a1c7-dc6240f17911" + }, + { + "routeId": "L399", + "platformId": "U4793Z1", + "id": "7a134431-bab9-4010-ac06-e81be98f87dd" + }, + { + "routeId": "L399", + "platformId": "U4793Z2", + "id": "87e5f456-9d5d-4fff-9007-5e5a27fff87d" + }, + { + "routeId": "L399", + "platformId": "U4794Z1", + "id": "50386ac8-6054-4b54-a963-331e08e2bde8" + }, + { + "routeId": "L399", + "platformId": "U4794Z2", + "id": "4919bd6f-184f-431c-99e5-a5c80a08caee" + }, + { + "routeId": "L616", + "platformId": "U4796Z1", + "id": "6358a9ae-138d-4ce8-a32d-fb0d86bbf766" + }, + { + "routeId": "L616", + "platformId": "U4797Z1", + "id": "96e0ffbd-51da-46bf-9bc0-72427e96fa1f" + }, + { + "routeId": "L616", + "platformId": "U4797Z2", + "id": "0b069f07-cbc3-4941-b3a4-a07e3f4f4b87" + }, + { + "routeId": "L616", + "platformId": "U4798Z1", + "id": "d2b9f3cc-a9aa-40b5-b5ef-4e98be023e06" + }, + { + "routeId": "L616", + "platformId": "U4798Z2", + "id": "ffc8de15-f77c-4888-95a3-14fdf4f93709" + }, + { + "routeId": "L616", + "platformId": "U4799Z1", + "id": "f76e983c-a002-41b2-9992-fa2ef0baf702" + }, + { + "routeId": "L616", + "platformId": "U4799Z2", + "id": "77804e44-79f3-404a-8d13-0dc73f48ddff" + }, + { + "routeId": "L104", + "platformId": "U479Z1", + "id": "ee331183-18b8-45e9-b28d-ba63a0752b00" + }, + { + "routeId": "L172", + "platformId": "U479Z1", + "id": "2354ce95-4973-44d2-aa5f-c0a7bc44e06b" + }, + { + "routeId": "L9", + "platformId": "U47Z1", + "id": "49614dc2-1955-4c40-b063-6fbdd45cd743" + }, + { + "routeId": "L10", + "platformId": "U47Z1", + "id": "a93288b7-3632-4aa2-9644-1fc88794d5ad" + }, + { + "routeId": "L98", + "platformId": "U47Z1", + "id": "94438919-227e-4d1a-9be3-283a858b4e3b" + }, + { + "routeId": "L99", + "platformId": "U47Z1", + "id": "6e42d625-540c-4633-8dda-6cc4db34a541" + }, + { + "routeId": "L9", + "platformId": "U47Z2", + "id": "2fc80b8a-889b-420e-a27e-80b093681b82" + }, + { + "routeId": "L10", + "platformId": "U47Z2", + "id": "3c017912-7be7-4c11-a81c-6452ba34a278" + }, + { + "routeId": "L98", + "platformId": "U47Z2", + "id": "71e85e3b-b93e-473b-bc1b-557d0261c47b" + }, + { + "routeId": "L99", + "platformId": "U47Z2", + "id": "d234e149-fbb1-43c6-a473-4eaff92fd462" + }, + { + "routeId": "L180", + "platformId": "U47Z3", + "id": "b98286fc-e1bb-491c-9c41-b73f949954fc" + }, + { + "routeId": "L214", + "platformId": "U47Z3", + "id": "1626f2a8-cf90-4412-b399-b8ba63b4063d" + }, + { + "routeId": "L180", + "platformId": "U47Z4", + "id": "882fa8c6-6eef-4563-94e8-bfd797c9add3" + }, + { + "routeId": "L214", + "platformId": "U47Z4", + "id": "3231ca1a-d833-4575-81fa-c45baf958953" + }, + { + "routeId": "L616", + "platformId": "U4800Z1", + "id": "f9181c89-c48d-4362-b66d-a371d7d7dbcb" + }, + { + "routeId": "L616", + "platformId": "U4800Z2", + "id": "f792e6d1-4f83-4625-b9ad-96d4c9c1d1c5" + }, + { + "routeId": "L616", + "platformId": "U4801Z1", + "id": "18606bde-2c81-496e-823f-fc03f4e41d74" + }, + { + "routeId": "L616", + "platformId": "U4801Z2", + "id": "9ac47d5f-d477-4fb2-98c8-620e99a7953b" + }, + { + "routeId": "L616", + "platformId": "U4802Z1", + "id": "fb705bdb-ac85-4dda-844b-b2b0760e1d58" + }, + { + "routeId": "L616", + "platformId": "U4802Z2", + "id": "cb895a6f-8d14-4401-a519-a08fa7d0f3e8" + }, + { + "routeId": "L324", + "platformId": "U4803Z1", + "id": "047c8f80-8373-463d-8a97-3924bc4dfef7" + }, + { + "routeId": "L627", + "platformId": "U4803Z1", + "id": "b52a8e25-22c2-4133-b802-16198fe713c7" + }, + { + "routeId": "L590", + "platformId": "U4803Z1", + "id": "6a977181-3ab2-4353-beed-84436886739b" + }, + { + "routeId": "L616", + "platformId": "U4803Z1", + "id": "76a87398-c77d-4802-96f0-dc2810f886d9" + }, + { + "routeId": "L324", + "platformId": "U4803Z2", + "id": "7838e47d-c705-48da-ae74-f7dfd392dfeb" + }, + { + "routeId": "L627", + "platformId": "U4803Z2", + "id": "bce05abf-63be-4239-bd2b-0dec3adbd67a" + }, + { + "routeId": "L590", + "platformId": "U4803Z2", + "id": "40af8b73-527f-4fec-9807-a14d98930dd9" + }, + { + "routeId": "L616", + "platformId": "U4803Z2", + "id": "197b87d2-37d7-4aa5-b3fb-6ecfaa3fcca6" + }, + { + "routeId": "L324", + "platformId": "U4804Z1", + "id": "0cf94d5d-afb7-4844-a1c2-7a042d1931e9" + }, + { + "routeId": "L627", + "platformId": "U4804Z1", + "id": "be3220ce-2d95-4618-ae1d-4bc082848d07" + }, + { + "routeId": "L590", + "platformId": "U4804Z1", + "id": "08c85245-1d87-4f44-a20e-33f9e97f93a4" + }, + { + "routeId": "L616", + "platformId": "U4804Z1", + "id": "90167d0b-737f-410b-9d05-6d110960948a" + }, + { + "routeId": "L324", + "platformId": "U4804Z2", + "id": "721e3edc-4c6f-410e-ba3b-ca82cca9fa76" + }, + { + "routeId": "L627", + "platformId": "U4804Z2", + "id": "2349e4c8-194b-44ad-8faf-c1abab1468ac" + }, + { + "routeId": "L590", + "platformId": "U4804Z2", + "id": "9481beac-f9e0-41a2-96d3-d2c14b7be1d5" + }, + { + "routeId": "L616", + "platformId": "U4804Z2", + "id": "f7bfe3e0-20aa-4d8d-9898-92158332266c" + }, + { + "routeId": "L324", + "platformId": "U4805Z1", + "id": "b32ed7c7-2cd6-498c-a6c5-49e06521d0a2" + }, + { + "routeId": "L627", + "platformId": "U4805Z1", + "id": "365254a3-0f61-4b7d-be1f-2a90d1a8a2f6" + }, + { + "routeId": "L590", + "platformId": "U4805Z1", + "id": "7d551e7c-5a1b-4e6f-bd3a-cdc3dca3fcc9" + }, + { + "routeId": "L616", + "platformId": "U4805Z1", + "id": "c8e5610d-f71d-4462-870a-85151c43ac23" + }, + { + "routeId": "L324", + "platformId": "U4805Z2", + "id": "bcc35ed7-d01a-4e22-931f-4902b0781e25" + }, + { + "routeId": "L627", + "platformId": "U4805Z2", + "id": "a93ef973-665f-430d-a122-e842e590adba" + }, + { + "routeId": "L590", + "platformId": "U4805Z2", + "id": "6d0b9903-55ff-4e29-80a9-b7e159591938" + }, + { + "routeId": "L616", + "platformId": "U4805Z2", + "id": "e8ffa3c2-916c-4190-9244-a0bdf24499fd" + }, + { + "routeId": "L626", + "platformId": "U4806Z1", + "id": "4c357bc4-24fb-4247-8452-b173480f8057" + }, + { + "routeId": "L626", + "platformId": "U4806Z2", + "id": "71ce9bef-9ea4-4e1f-b23c-47cde6ae4b17" + }, + { + "routeId": "L6", + "platformId": "U480Z1", + "id": "d060ce24-d113-408e-89b7-8ac63c92a220" + }, + { + "routeId": "L8", + "platformId": "U480Z1", + "id": "46a5c24b-0884-4a8c-89e4-6056fadd665d" + }, + { + "routeId": "L15", + "platformId": "U480Z1", + "id": "ce5267fe-f0ba-4d57-9a1b-3494991d53e8" + }, + { + "routeId": "L26", + "platformId": "U480Z1", + "id": "a4b62166-8b38-454d-a327-9dce9dc8d7b7" + }, + { + "routeId": "L91", + "platformId": "U480Z1", + "id": "b9072ab0-33c4-411b-80db-99e553b52892" + }, + { + "routeId": "L96", + "platformId": "U480Z1", + "id": "5a5e2150-e082-4109-ade6-31c21a5956d1" + }, + { + "routeId": "L207", + "platformId": "U480Z1", + "id": "0277c228-4307-4a80-b0fb-4a72f9270d3b" + }, + { + "routeId": "L905", + "platformId": "U480Z1", + "id": "53f0ceb5-dfb2-42d0-9133-d771f273ae52" + }, + { + "routeId": "L907", + "platformId": "U480Z1", + "id": "e335688a-9a8f-41e5-9aae-35e0c195d991" + }, + { + "routeId": "L909", + "platformId": "U480Z1", + "id": "6930b17f-c11a-43e8-8a0f-79de048e60a0" + }, + { + "routeId": "L911", + "platformId": "U480Z1", + "id": "28dedead-4a24-48cf-8966-10355a02c6e7" + }, + { + "routeId": "L992", + "platformId": "U480Z101", + "id": "1982a5ae-e92e-4851-a1f9-b664c58cf125" + }, + { + "routeId": "L992", + "platformId": "U480Z102", + "id": "53516730-7884-4ceb-870e-261db89f1699" + }, + { + "routeId": "L6", + "platformId": "U480Z2", + "id": "554ace85-7335-455b-a267-68bf5d4cbd70" + }, + { + "routeId": "L8", + "platformId": "U480Z2", + "id": "c666048c-f81f-4e11-b907-f31fa9101ed3" + }, + { + "routeId": "L15", + "platformId": "U480Z2", + "id": "fa1d7c56-3359-4962-ba51-ede1a498d84d" + }, + { + "routeId": "L26", + "platformId": "U480Z2", + "id": "eded5592-b09e-49c5-8029-c2d46ffc2857" + }, + { + "routeId": "L91", + "platformId": "U480Z2", + "id": "32231af8-565e-4a01-b58e-e45a978468cd" + }, + { + "routeId": "L96", + "platformId": "U480Z2", + "id": "61d8b940-d9cd-461b-9dd6-a1e3514b6c74" + }, + { + "routeId": "L207", + "platformId": "U480Z2", + "id": "6d132b4b-3b74-4701-8e56-415bb3531c49" + }, + { + "routeId": "L905", + "platformId": "U480Z2", + "id": "aeb96bb4-6fee-42f5-bb0c-0ea860a2228a" + }, + { + "routeId": "L907", + "platformId": "U480Z2", + "id": "a1725168-63ea-4be1-aa00-1ab3cfc2d993" + }, + { + "routeId": "L909", + "platformId": "U480Z2", + "id": "9632c049-3124-46ba-ba20-e13840061b1a" + }, + { + "routeId": "L911", + "platformId": "U480Z2", + "id": "7446fcf6-045f-48fa-a45d-f68874d5c503" + }, + { + "routeId": "L3", + "platformId": "U480Z3", + "id": "9aab1720-8ed8-45ca-b136-d9b47d111603" + }, + { + "routeId": "L6", + "platformId": "U480Z3", + "id": "112c9503-20ea-4019-985a-17434ae138da" + }, + { + "routeId": "L14", + "platformId": "U480Z3", + "id": "994a5bab-568e-479c-b804-fe633c52759f" + }, + { + "routeId": "L15", + "platformId": "U480Z3", + "id": "b232e26e-91da-4e56-a82f-4d0f1d56a1f3" + }, + { + "routeId": "L26", + "platformId": "U480Z3", + "id": "1882cd0d-70d6-4360-a9bc-2c2d8682021c" + }, + { + "routeId": "L91", + "platformId": "U480Z3", + "id": "cd0c1728-531f-482e-8516-674a5b49a77b" + }, + { + "routeId": "L92", + "platformId": "U480Z3", + "id": "63bfe063-99e2-4a40-8296-c3d8cbe5d0d3" + }, + { + "routeId": "L94", + "platformId": "U480Z3", + "id": "7fc9525e-2283-492b-89ba-3b03a00248bc" + }, + { + "routeId": "L96", + "platformId": "U480Z3", + "id": "3b2a2d6d-a0e7-4425-a18a-c9f7b47cc6a6" + }, + { + "routeId": "L905", + "platformId": "U480Z3", + "id": "1f4d1ce0-d93c-47df-b349-a6bb4d2de379" + }, + { + "routeId": "L907", + "platformId": "U480Z3", + "id": "d1560e70-d1ce-4447-bef8-1d7bfe983ca2" + }, + { + "routeId": "L908", + "platformId": "U480Z3", + "id": "494f6117-4719-4497-bc92-92168197c6f8" + }, + { + "routeId": "L911", + "platformId": "U480Z3", + "id": "5389f0d4-3c89-4052-9edf-de666992ce87" + }, + { + "routeId": "L1302", + "platformId": "U480Z301", + "id": "d9b65343-855a-4e1e-811f-6af0168534aa" + }, + { + "routeId": "L1304", + "platformId": "U480Z301", + "id": "461a9c2c-df2c-4764-ac4e-39d353091631" + }, + { + "routeId": "L1301", + "platformId": "U480Z301", + "id": "2b223218-57fa-4c75-878c-85014513df9e" + }, + { + "routeId": "L1322", + "platformId": "U480Z301", + "id": "96e33c31-bd9a-45d1-bd95-5105b31a835b" + }, + { + "routeId": "L3", + "platformId": "U480Z4", + "id": "f3a03676-c9e9-43a3-90b4-ce1b69341393" + }, + { + "routeId": "L6", + "platformId": "U480Z4", + "id": "60cbe825-dcda-4bad-9a59-07010aee19ac" + }, + { + "routeId": "L14", + "platformId": "U480Z4", + "id": "04aeb4a4-c2e7-492b-8ed0-9fd8a4b73309" + }, + { + "routeId": "L15", + "platformId": "U480Z4", + "id": "ad67dbc3-ad06-40d3-aa12-90bfa40390e9" + }, + { + "routeId": "L26", + "platformId": "U480Z4", + "id": "01d93b49-5d2f-4975-8c08-83567830f63f" + }, + { + "routeId": "L91", + "platformId": "U480Z4", + "id": "7aae201b-3a8c-4fc6-b9be-06ee2f25b348" + }, + { + "routeId": "L92", + "platformId": "U480Z4", + "id": "e2850141-8da0-4503-825f-ac2879f3912e" + }, + { + "routeId": "L94", + "platformId": "U480Z4", + "id": "faf58a6d-31c9-42c4-aa5e-5f5caac701f9" + }, + { + "routeId": "L96", + "platformId": "U480Z4", + "id": "6d06ea84-a568-4f85-b15b-b68ae4ed6b0c" + }, + { + "routeId": "L905", + "platformId": "U480Z4", + "id": "3d065695-89c5-46e5-867b-5650ef480877" + }, + { + "routeId": "L907", + "platformId": "U480Z4", + "id": "b53e2ea0-aacf-4c30-98a5-04926d0dbd21" + }, + { + "routeId": "L908", + "platformId": "U480Z4", + "id": "e33c6e91-498e-40db-a2c9-c2f8d2daf9a9" + }, + { + "routeId": "L911", + "platformId": "U480Z4", + "id": "650cdd63-0c61-41a0-83fb-434f928bd5ba" + }, + { + "routeId": "L388", + "platformId": "U4812Z1", + "id": "f2323325-e62a-4a02-8a82-58e67a42383e" + }, + { + "routeId": "L388", + "platformId": "U4812Z2", + "id": "72088869-2325-41e9-a5fc-0650e20cdd4c" + }, + { + "routeId": "L629", + "platformId": "U4816Z1", + "id": "e66bdcd0-2251-4a33-a84b-f0b585c2d7d7" + }, + { + "routeId": "L622", + "platformId": "U4816Z1", + "id": "34ae15a6-b4a6-411a-ad63-d6a638599a88" + }, + { + "routeId": "L629", + "platformId": "U4816Z2", + "id": "2efe1d90-1e3a-453c-8b36-b82188e8fab1" + }, + { + "routeId": "L622", + "platformId": "U4816Z2", + "id": "789aee03-b1e3-46aa-9dac-7159518d92b5" + }, + { + "routeId": "L622", + "platformId": "U4817Z1", + "id": "2bd94096-700e-4959-a6b9-72bce90cb02a" + }, + { + "routeId": "L622", + "platformId": "U4817Z2", + "id": "adf1e85d-4ce9-4c81-a71d-c6e1a32a07ef" + }, + { + "routeId": "L622", + "platformId": "U4818Z1", + "id": "06bd2f93-c84c-4cea-8eef-5d00b709b86c" + }, + { + "routeId": "L622", + "platformId": "U4818Z2", + "id": "4fd92e2f-7da2-4c1e-baf3-b56a5f35d99a" + }, + { + "routeId": "L622", + "platformId": "U4819Z1", + "id": "8c1132b8-8b81-49aa-ac87-7d204d3bf9d7" + }, + { + "routeId": "L622", + "platformId": "U4819Z2", + "id": "b09b4ea0-13b6-4374-9aca-f4921a38e3b7" + }, + { + "routeId": "L9", + "platformId": "U481Z1", + "id": "aac804fc-b9b4-4982-8997-7137be365400" + }, + { + "routeId": "L12", + "platformId": "U481Z1", + "id": "8a3eeb1f-7cbf-485b-8622-9faaf8e5b0f6" + }, + { + "routeId": "L15", + "platformId": "U481Z1", + "id": "5bb2ca44-0b1d-4f8b-9e56-9bc244e4e6b1" + }, + { + "routeId": "L20", + "platformId": "U481Z1", + "id": "434bdab3-8b06-4f5e-a6ca-d29e1efec874" + }, + { + "routeId": "L98", + "platformId": "U481Z1", + "id": "43abf8e7-16a9-43ee-b1ee-da4f41c5c741" + }, + { + "routeId": "L99", + "platformId": "U481Z1", + "id": "397b3d12-a51e-4f1a-9050-580783b9a6e9" + }, + { + "routeId": "L9", + "platformId": "U481Z2", + "id": "cb758413-b52c-422c-9b0a-a6d3f3e76ffa" + }, + { + "routeId": "L12", + "platformId": "U481Z2", + "id": "5cd6f3f4-73c9-4e90-87d8-3bdec286dfdf" + }, + { + "routeId": "L15", + "platformId": "U481Z2", + "id": "89c51ba3-6cdd-47cb-b33b-59ab2541cd5f" + }, + { + "routeId": "L20", + "platformId": "U481Z2", + "id": "38e79782-f8e7-4f1c-9e4f-9b8e2b6478d7" + }, + { + "routeId": "L98", + "platformId": "U481Z2", + "id": "53093f4d-a0ac-4e4c-8432-339a5eb54159" + }, + { + "routeId": "L99", + "platformId": "U481Z2", + "id": "0a1af8c8-74a7-4ddf-8b1f-e33774cbc33b" + }, + { + "routeId": "L176", + "platformId": "U481Z3", + "id": "fa53d49c-835f-4316-a66c-2cfd2f46bbbc" + }, + { + "routeId": "L910", + "platformId": "U481Z3", + "id": "0bca1b55-5342-4c95-86e9-3a6f8d63082d" + }, + { + "routeId": "L176", + "platformId": "U481Z4", + "id": "36adf8a1-e6b7-462f-8d9c-9e3429ea97b3" + }, + { + "routeId": "L910", + "platformId": "U481Z4", + "id": "d74a1546-4c70-4b59-91e8-48f093eadb3e" + }, + { + "routeId": "L820", + "platformId": "U481Z51", + "id": "75d00164-d029-45de-823f-93ccfc3001bc" + }, + { + "routeId": "L820", + "platformId": "U481Z52", + "id": "eaae33a8-a3b7-45d9-8ebe-da14231afc53" + }, + { + "routeId": "L333", + "platformId": "U4820Z1", + "id": "d7f0498c-ddd8-41cb-aa6d-15d9f1d67372" + }, + { + "routeId": "L333", + "platformId": "U4820Z2", + "id": "e88ffc53-f058-4fe3-a218-4a4cff73798c" + }, + { + "routeId": "L960", + "platformId": "U4820Z2", + "id": "c71e481e-fbef-404b-ab94-8c34b0ac629b" + }, + { + "routeId": "L2240", + "platformId": "U4822Z401", + "id": "fa10f857-1401-410b-a5c5-376afbc333b8" + }, + { + "routeId": "L2254", + "platformId": "U4822Z401", + "id": "741c0588-3ae2-424f-ba60-1386118f6724" + }, + { + "routeId": "L2240", + "platformId": "U4822Z402", + "id": "816d99da-49d5-4017-a17d-4a171df485a8" + }, + { + "routeId": "L2254", + "platformId": "U4822Z402", + "id": "b13a4a5e-928a-4fbf-8277-2975b4f5c796" + }, + { + "routeId": "L626", + "platformId": "U4823Z1", + "id": "9258bdbc-6f04-4d73-97ac-780f1b5b6c92" + }, + { + "routeId": "L626", + "platformId": "U4823Z2", + "id": "50a1f774-3c4d-42bf-aef9-02c0b393723f" + }, + { + "routeId": "L2240", + "platformId": "U4823Z401", + "id": "c6549f60-5151-49a2-a191-899e23220c52" + }, + { + "routeId": "L2240", + "platformId": "U4823Z402", + "id": "2c75fbf1-0d3c-4b8d-ab03-63063587b0a4" + }, + { + "routeId": "L626", + "platformId": "U4825Z1", + "id": "004433d1-a9d1-4874-9f40-3038a4efc00a" + }, + { + "routeId": "L626", + "platformId": "U4825Z2", + "id": "b2997b04-6edd-43cd-8467-775bdee252ca" + }, + { + "routeId": "L626", + "platformId": "U4826Z1", + "id": "6fd38f1a-afee-415e-87f0-d238c6f79217" + }, + { + "routeId": "L626", + "platformId": "U4826Z2", + "id": "8b33ecae-a67b-4783-9fd8-76bdb9f5b97d" + }, + { + "routeId": "L617", + "platformId": "U4829Z1", + "id": "0982efb6-6344-4d3b-b46a-c895f512bc12" + }, + { + "routeId": "L617", + "platformId": "U4829Z2", + "id": "5f81fa0b-d1f1-419b-896d-d7fc68092c5b" + }, + { + "routeId": "L11", + "platformId": "U482Z1", + "id": "1533d4bf-8d94-4b53-9d0f-3fd60b7043e4" + }, + { + "routeId": "L14", + "platformId": "U482Z1", + "id": "7a7f8055-251f-4ea1-9e1d-93c002c745b0" + }, + { + "routeId": "L18", + "platformId": "U482Z1", + "id": "77c13333-054d-4563-b199-b8d828f778c6" + }, + { + "routeId": "L193", + "platformId": "U482Z1", + "id": "f4cd732e-da9b-4b40-b1bb-365d08caaab8" + }, + { + "routeId": "L11", + "platformId": "U482Z2", + "id": "42b5aa62-ce09-44ac-bf6c-9b03eaf6c63c" + }, + { + "routeId": "L14", + "platformId": "U482Z2", + "id": "ff5eb28d-e6e9-4a54-a783-3dbf7a6a77e4" + }, + { + "routeId": "L18", + "platformId": "U482Z2", + "id": "d1f25984-bad5-4ce0-a86f-d97d6a41b520" + }, + { + "routeId": "L19", + "platformId": "U482Z2", + "id": "a976fa41-b9d3-43ca-b5a5-653180ace194" + }, + { + "routeId": "L193", + "platformId": "U482Z2", + "id": "6afb9b32-1d87-4aa5-a06b-653f853c9f89" + }, + { + "routeId": "L6", + "platformId": "U482Z5", + "id": "2703e72e-2c31-46d5-931a-daa462569960" + }, + { + "routeId": "L7", + "platformId": "U482Z5", + "id": "7d07ab39-a391-4149-b94e-faa98b8bc76e" + }, + { + "routeId": "L19", + "platformId": "U482Z5", + "id": "f9afca94-f076-45b7-860a-9cc7dbb91517" + }, + { + "routeId": "L93", + "platformId": "U482Z5", + "id": "7dbb6d4e-c3c8-4af3-9f55-b51c8e150a37" + }, + { + "routeId": "L95", + "platformId": "U482Z5", + "id": "facf7a41-8900-4045-8d10-f69debc65567" + }, + { + "routeId": "L96", + "platformId": "U482Z5", + "id": "23c821e6-4596-4e75-b4b0-64914889310b" + }, + { + "routeId": "L6", + "platformId": "U482Z6", + "id": "f8fe7c64-0057-4a61-a094-f52de3cffb6f" + }, + { + "routeId": "L7", + "platformId": "U482Z6", + "id": "cd1604d4-441f-4616-a75d-ed230e80eefc" + }, + { + "routeId": "L93", + "platformId": "U482Z6", + "id": "7b882926-9686-4c7b-93db-4f7d6f650f5b" + }, + { + "routeId": "L95", + "platformId": "U482Z6", + "id": "2eece98c-f519-43ff-aeeb-c88e24455613" + }, + { + "routeId": "L96", + "platformId": "U482Z6", + "id": "2573f220-fca8-4288-ade7-08c1823efcbc" + }, + { + "routeId": "L19", + "platformId": "U482Z9", + "id": "5d36f02e-3948-4de5-af6e-c1c87918fc73" + }, + { + "routeId": "L617", + "platformId": "U4830Z1", + "id": "4c06d36a-d5be-4796-aa0b-849419799c7d" + }, + { + "routeId": "L626", + "platformId": "U4830Z1", + "id": "108743c5-1c58-4b7b-8155-c3888ef2057f" + }, + { + "routeId": "L595", + "platformId": "U4830Z1", + "id": "583d448c-25cc-4e47-8b23-1c7b7f09f121" + }, + { + "routeId": "L617", + "platformId": "U4835Z1", + "id": "5cfc9db4-f7cb-4f20-9eb7-5b5ced6cc8f2" + }, + { + "routeId": "L590", + "platformId": "U4835Z1", + "id": "d6343d0a-e3c4-4664-b633-70c74de3193d" + }, + { + "routeId": "L616", + "platformId": "U4835Z1", + "id": "b118d9d7-056b-465b-b40f-7fd17ff8df41" + }, + { + "routeId": "L650", + "platformId": "U4835Z1", + "id": "87b687b9-4a88-4f84-a9a4-6d8dd945ab2c" + }, + { + "routeId": "L389", + "platformId": "U4836Z1", + "id": "8ea54bad-d69a-46a0-834a-0cce3ad5e522" + }, + { + "routeId": "L580", + "platformId": "U4836Z1", + "id": "3d4bdbb1-b824-412b-9080-2d515ddb22ba" + }, + { + "routeId": "L389", + "platformId": "U4836Z2", + "id": "1aa3b866-7d72-4836-9554-6fb4b53857c4" + }, + { + "routeId": "L580", + "platformId": "U4836Z2", + "id": "ed3a738b-0bce-43d2-b329-491d7e6cd29f" + }, + { + "routeId": "L620", + "platformId": "U4837Z3", + "id": "894e7e99-43bd-41d9-a6d8-adc61a69bc05" + }, + { + "routeId": "L620", + "platformId": "U4837Z4", + "id": "e0d54a32-d85e-4a49-9c11-39a274e8ebf4" + }, + { + "routeId": "L620", + "platformId": "U4838Z2", + "id": "549e477c-077f-4229-b83b-c5925cc2d47e" + }, + { + "routeId": "L2", + "platformId": "U483Z1", + "id": "5445e93b-2457-4d31-b811-641fc368b377" + }, + { + "routeId": "L9", + "platformId": "U483Z1", + "id": "a94fd95a-7070-438f-9f85-ed1c1ed81e06" + }, + { + "routeId": "L12", + "platformId": "U483Z1", + "id": "902dad01-f5f7-4411-86d7-44f61dc7efe5" + }, + { + "routeId": "L15", + "platformId": "U483Z1", + "id": "6ffd8fe2-0f53-40c1-a9f3-89eb3f896230" + }, + { + "routeId": "L18", + "platformId": "U483Z1", + "id": "f931f643-21f2-48bb-a917-c4b4c173183a" + }, + { + "routeId": "L20", + "platformId": "U483Z1", + "id": "64730ad6-c012-4b1a-adaf-c86d7d525592" + }, + { + "routeId": "L22", + "platformId": "U483Z1", + "id": "08d8f19d-c1f5-448b-ba3e-dffbb98c64da" + }, + { + "routeId": "L23", + "platformId": "U483Z1", + "id": "6089b338-7a76-402f-b042-9793d63bd41e" + }, + { + "routeId": "L93", + "platformId": "U483Z1", + "id": "ab4fe8c0-d2d0-4f37-a8fb-f46bed297421" + }, + { + "routeId": "L97", + "platformId": "U483Z1", + "id": "f7141e2a-ee21-42cf-bbe7-707fe90a07d6" + }, + { + "routeId": "L98", + "platformId": "U483Z1", + "id": "76f6d636-6f54-4248-ae63-1884cb278f0c" + }, + { + "routeId": "L99", + "platformId": "U483Z1", + "id": "1c06511a-921a-48dd-9ef0-32ac49fddd26" + }, + { + "routeId": "L2", + "platformId": "U483Z2", + "id": "802dfcf5-1541-4810-92da-ab350e6e7bc8" + }, + { + "routeId": "L9", + "platformId": "U483Z2", + "id": "cd964bfa-6815-4090-b226-3f73272d3df5" + }, + { + "routeId": "L12", + "platformId": "U483Z2", + "id": "1c3f4f9b-38fe-4edb-889a-a6c935d08eb4" + }, + { + "routeId": "L15", + "platformId": "U483Z2", + "id": "a5626311-9c85-46ef-b289-5429c7d99e48" + }, + { + "routeId": "L18", + "platformId": "U483Z2", + "id": "a7104db2-47e8-4f79-9d56-5dc73a106dcf" + }, + { + "routeId": "L20", + "platformId": "U483Z2", + "id": "7e5f7412-a16a-46ac-bc92-3b2e13078e80" + }, + { + "routeId": "L22", + "platformId": "U483Z2", + "id": "8e378f40-db46-4dbf-bc53-e9ab31915c9d" + }, + { + "routeId": "L23", + "platformId": "U483Z2", + "id": "79dcdd2e-eb9d-4192-a56b-ebce4c06793e" + }, + { + "routeId": "L93", + "platformId": "U483Z2", + "id": "4c51a741-0fc1-455e-ae5c-8a2396fe60f9" + }, + { + "routeId": "L97", + "platformId": "U483Z2", + "id": "2643ec62-b8b0-409c-a6ed-878b3a367c02" + }, + { + "routeId": "L98", + "platformId": "U483Z2", + "id": "55b90662-9498-49ee-92e1-f8989dc4f42b" + }, + { + "routeId": "L99", + "platformId": "U483Z2", + "id": "c13da8b8-71ad-4524-af79-1ae52bc49c64" + }, + { + "routeId": "L9", + "platformId": "U483Z5", + "id": "67f35e26-01fe-47ab-94bc-98a9568f2912" + }, + { + "routeId": "L17", + "platformId": "U483Z5", + "id": "8e1151fd-07ee-418e-ae22-dcab5405b643" + }, + { + "routeId": "L27", + "platformId": "U483Z5", + "id": "27076aef-f2e4-4867-9383-c87a9c5e4cc9" + }, + { + "routeId": "L9", + "platformId": "U483Z6", + "id": "c7308c44-900a-4b21-a1da-390400a11522" + }, + { + "routeId": "L17", + "platformId": "U483Z6", + "id": "2241b4c2-f20a-4536-b647-1245b0f59165" + }, + { + "routeId": "L27", + "platformId": "U483Z6", + "id": "4b52f624-1d88-4114-9233-bcba70917454" + }, + { + "routeId": "L1210", + "platformId": "U4843Z301", + "id": "da7dcbbe-95f0-438e-a431-63f7ba9bb5ed" + }, + { + "routeId": "L1041", + "platformId": "U4843Z301", + "id": "e225cd03-c833-42ef-913c-b85fdc0ccd29" + }, + { + "routeId": "L1051", + "platformId": "U4843Z301", + "id": "699306e2-9ac3-4e7d-82a9-0bcae05f3791" + }, + { + "routeId": "L533", + "platformId": "U4843Z5", + "id": "8fd6546f-05b3-4511-b266-f49caefa5c3d" + }, + { + "routeId": "L533", + "platformId": "U4843Z7", + "id": "f12c2b27-229c-4673-b3ed-43535c326649" + }, + { + "routeId": "L3", + "platformId": "U484Z1", + "id": "059dfe63-e465-4eb3-a08f-133eafc51d8a" + }, + { + "routeId": "L5", + "platformId": "U484Z1", + "id": "40e56ddd-fd8f-4d6a-b45d-3da7a37d9b5b" + }, + { + "routeId": "L6", + "platformId": "U484Z1", + "id": "2273f8c6-57ec-402c-ae2a-7f549a091543" + }, + { + "routeId": "L9", + "platformId": "U484Z1", + "id": "ffa0e158-d47e-439d-8ce6-70447eaf33d2" + }, + { + "routeId": "L14", + "platformId": "U484Z1", + "id": "1a7f3d75-b3bc-4229-bc99-631af29b7b24" + }, + { + "routeId": "L91", + "platformId": "U484Z1", + "id": "74d2a9a7-b39b-402b-beb8-7e774880b776" + }, + { + "routeId": "L92", + "platformId": "U484Z1", + "id": "e8ce3b8f-a1c7-4b12-a60a-3dd511c8a3c5" + }, + { + "routeId": "L94", + "platformId": "U484Z1", + "id": "e916b119-0c0a-4e9a-990d-027a474cd2c5" + }, + { + "routeId": "L95", + "platformId": "U484Z1", + "id": "38f11a65-0ec9-4801-ad8b-c682ad54f5cf" + }, + { + "routeId": "L96", + "platformId": "U484Z1", + "id": "4e345167-2ee8-4af3-98b3-d0001a6d0b1c" + }, + { + "routeId": "L98", + "platformId": "U484Z1", + "id": "a6406d51-9db3-4026-a6c5-9f1ea2d360a4" + }, + { + "routeId": "L3", + "platformId": "U484Z2", + "id": "40cc9def-f7a8-4896-bfd7-f2e3fb373c46" + }, + { + "routeId": "L5", + "platformId": "U484Z2", + "id": "1b90317a-c401-43ac-aaaa-0050668b6dbf" + }, + { + "routeId": "L6", + "platformId": "U484Z2", + "id": "76317139-4cf0-49b7-a0ad-8a8322363ef4" + }, + { + "routeId": "L9", + "platformId": "U484Z2", + "id": "4a528948-8c6b-4be3-a9ad-ba5b6d0fdd79" + }, + { + "routeId": "L14", + "platformId": "U484Z2", + "id": "d8690732-ab5e-4e5c-85ff-41713b72caaa" + }, + { + "routeId": "L91", + "platformId": "U484Z2", + "id": "9113dd7c-11f6-41c3-be52-e4a1b04bb22a" + }, + { + "routeId": "L92", + "platformId": "U484Z2", + "id": "0755fd0f-5343-4e21-ab9b-5eb4cbe749d0" + }, + { + "routeId": "L94", + "platformId": "U484Z2", + "id": "dd00f7f6-ddde-449a-a765-6ec76730291a" + }, + { + "routeId": "L95", + "platformId": "U484Z2", + "id": "06bb9177-cb7d-4fa9-9d45-199c066e2888" + }, + { + "routeId": "L96", + "platformId": "U484Z2", + "id": "f35f3353-4cef-4777-a755-dca58f7addcd" + }, + { + "routeId": "L98", + "platformId": "U484Z2", + "id": "2b41a470-132d-4259-8b47-14a1e5d55fcc" + }, + { + "routeId": "L389", + "platformId": "U4850Z1", + "id": "3ebfdedd-d889-4795-9903-ca0ebf48e0a9" + }, + { + "routeId": "L389", + "platformId": "U4850Z2", + "id": "3e197cc4-782d-4362-aa50-4a325f1cc8cc" + }, + { + "routeId": "L389", + "platformId": "U4851Z1", + "id": "a5f69e6b-b3b9-4f11-8cd5-77296bba0363" + }, + { + "routeId": "L389", + "platformId": "U4851Z2", + "id": "c267135d-b7a8-4b2f-8694-974121d5a216" + }, + { + "routeId": "L389", + "platformId": "U4853Z1", + "id": "96c74603-2a64-404b-9cfe-93b1880f9bad" + }, + { + "routeId": "L389", + "platformId": "U4853Z2", + "id": "b7d5b929-698e-4f96-bb4d-6fd9c98f295c" + }, + { + "routeId": "L600", + "platformId": "U4854Z1", + "id": "85a7eb00-4f4f-4564-9067-1224f4892f91" + }, + { + "routeId": "L389", + "platformId": "U4854Z1", + "id": "c11228cd-3c0d-45b1-81de-27a0bd866801" + }, + { + "routeId": "L711", + "platformId": "U4854Z1", + "id": "4cbf62ac-d3a2-465f-b488-2bead4a78403" + }, + { + "routeId": "L600", + "platformId": "U4854Z2", + "id": "07b12148-e9da-41ff-8b40-00f588b50d2d" + }, + { + "routeId": "L389", + "platformId": "U4854Z2", + "id": "9223486c-7aef-43f1-bd66-ad903829333b" + }, + { + "routeId": "L711", + "platformId": "U4854Z2", + "id": "40b671bc-efa0-46bb-bf6c-a06869f72489" + }, + { + "routeId": "L389", + "platformId": "U4857Z1", + "id": "6325c235-37ac-419b-a0d0-e0c5afd4e98a" + }, + { + "routeId": "L389", + "platformId": "U4857Z2", + "id": "d5171fe6-2f0b-46bb-b51d-aca1705a08bf" + }, + { + "routeId": "L389", + "platformId": "U4858Z1", + "id": "de764616-75c7-4088-8d49-e3ad6b47290c" + }, + { + "routeId": "L389", + "platformId": "U4858Z2", + "id": "44144433-6192-4a97-a167-567e360896ac" + }, + { + "routeId": "L161", + "platformId": "U485Z1", + "id": "1ca68e48-3c27-4658-aa16-7411d21ffb03" + }, + { + "routeId": "L161", + "platformId": "U485Z2", + "id": "60973a97-b1ab-47e6-9634-e654c81abd2f" + }, + { + "routeId": "L907", + "platformId": "U485Z2", + "id": "94880c57-ad59-44ba-9813-541d8863cec0" + }, + { + "routeId": "L312", + "platformId": "U485Z2", + "id": "79968da2-e55b-431f-8fd0-ae5ed70d12c6" + }, + { + "routeId": "L389", + "platformId": "U4860Z1", + "id": "dc92ca29-bd49-41f3-97c2-e038aac1cde7" + }, + { + "routeId": "L389", + "platformId": "U4860Z2", + "id": "97ebb3d7-c69f-4cab-83a9-4d28725e3ff9" + }, + { + "routeId": "L332", + "platformId": "U4861Z1", + "id": "8e59f29c-afeb-46dc-8a05-62caffba9bb6" + }, + { + "routeId": "L956", + "platformId": "U4861Z1", + "id": "3f83795f-5779-4c27-89d4-5173eb169082" + }, + { + "routeId": "L337", + "platformId": "U4861Z1", + "id": "69006edc-9b75-4f4a-b3d5-bc0c28768a75" + }, + { + "routeId": "L335", + "platformId": "U4861Z1", + "id": "fb88a099-c227-466f-96c9-8ef79a0ce525" + }, + { + "routeId": "L339", + "platformId": "U4861Z1", + "id": "3db23f6e-0c4c-4315-b590-e64fe8331096" + }, + { + "routeId": "L332", + "platformId": "U4861Z2", + "id": "5ba48e92-8586-433d-818b-9c12ae67d97d" + }, + { + "routeId": "L956", + "platformId": "U4861Z2", + "id": "82df7b0e-84e9-4be5-8fae-7e076053959a" + }, + { + "routeId": "L337", + "platformId": "U4861Z2", + "id": "13001731-0eb0-4bed-a1da-1ba59a51a9f5" + }, + { + "routeId": "L335", + "platformId": "U4861Z2", + "id": "f6f9acb4-617b-4064-882b-20abf9dcb3b0" + }, + { + "routeId": "L339", + "platformId": "U4861Z2", + "id": "fb520f81-e8f7-4c1a-8223-1be42ee6b1e0" + }, + { + "routeId": "L1210", + "platformId": "U4862Z301", + "id": "8766edeb-9a03-4d4a-bb90-b4d49c2618ff" + }, + { + "routeId": "L1041", + "platformId": "U4862Z301", + "id": "23e1f16a-10ee-48bc-bfb3-d7ef8261107d" + }, + { + "routeId": "L1210", + "platformId": "U4863Z301", + "id": "0f29e72e-fa67-4cde-839b-a80c28849cf3" + }, + { + "routeId": "L1041", + "platformId": "U4863Z301", + "id": "0add241d-8e97-4881-9421-381a7c5b1f6e" + }, + { + "routeId": "L1210", + "platformId": "U4864Z301", + "id": "f9b7f937-4868-4ae5-8618-cdff3ba2ff2e" + }, + { + "routeId": "L1041", + "platformId": "U4864Z301", + "id": "6271919b-007f-476b-b0a1-4d246cea55ac" + }, + { + "routeId": "L1210", + "platformId": "U4865Z301", + "id": "65f194ab-8e92-492a-9611-4d2f143d52f9" + }, + { + "routeId": "L1041", + "platformId": "U4865Z301", + "id": "a80b83bb-bec9-4ce7-b2f4-e09b889e8755" + }, + { + "routeId": "L1051", + "platformId": "U4866Z301", + "id": "671a91f7-526c-4f15-a3ca-3a48c332f348" + }, + { + "routeId": "L1051", + "platformId": "U4867Z301", + "id": "6bfae6bb-349d-42ef-85f6-8ff7e3244b1c" + }, + { + "routeId": "L1051", + "platformId": "U4868Z301", + "id": "92e9bc9b-7ccc-4cdd-acd5-b2b25d05ac91" + }, + { + "routeId": "L1040", + "platformId": "U4869Z301", + "id": "a2f3c7ab-2dab-49b1-822e-c1e466ca33cc" + }, + { + "routeId": "L161", + "platformId": "U486Z1", + "id": "de3ed714-26ae-413c-b631-9891a67f5e8c" + }, + { + "routeId": "L907", + "platformId": "U486Z1", + "id": "a5abbec3-7109-4c06-a230-2c83345f54f6" + }, + { + "routeId": "L312", + "platformId": "U486Z1", + "id": "badd8c88-139a-42d2-b927-0014c6a5edc8" + }, + { + "routeId": "L161", + "platformId": "U486Z2", + "id": "e9a9cc3d-02e2-43c9-8e9e-0947fdfc4cf4" + }, + { + "routeId": "L907", + "platformId": "U486Z2", + "id": "5cd27076-bd3e-465a-805e-425d2ff56847" + }, + { + "routeId": "L312", + "platformId": "U486Z2", + "id": "5466ae2d-c852-4caa-a176-758dd13cb1de" + }, + { + "routeId": "L1040", + "platformId": "U4870Z301", + "id": "6edc3e1d-b1ce-4215-9c80-a8d8b4592f6f" + }, + { + "routeId": "L1040", + "platformId": "U4871Z301", + "id": "bed7fad1-5f17-4ec2-808f-6e574a08b23d" + }, + { + "routeId": "L1040", + "platformId": "U4872Z301", + "id": "3c4118bc-669a-42c9-bc5b-2b180870b33e" + }, + { + "routeId": "L1040", + "platformId": "U4873Z301", + "id": "f469e17b-da47-4ec4-8c85-f2dcb64ef849" + }, + { + "routeId": "L1040", + "platformId": "U4874Z301", + "id": "3af1ef7d-dbe7-4210-a49d-b41ec51435e7" + }, + { + "routeId": "L1040", + "platformId": "U4875Z301", + "id": "346f6c66-c049-410d-bfde-f1ce23865bb5" + }, + { + "routeId": "L1040", + "platformId": "U4876Z301", + "id": "101d1acb-5791-4749-b402-c4610cd291b9" + }, + { + "routeId": "L1011", + "platformId": "U4877Z301", + "id": "983ee7e1-d32b-48f2-aa77-05d3b2a53cee" + }, + { + "routeId": "L1012", + "platformId": "U4877Z301", + "id": "b8aef119-ffb7-4ba0-91e5-bf907f611cc1" + }, + { + "routeId": "L1040", + "platformId": "U4877Z301", + "id": "1eba9670-8e1b-44ba-ac39-b273c86fdd0c" + }, + { + "routeId": "L650", + "platformId": "U4878Z1", + "id": "7ff86bc5-8de4-40a8-b5c4-5b9b49c658cb" + }, + { + "routeId": "L650", + "platformId": "U4878Z2", + "id": "252ac404-c61a-478b-ba1b-8fd832e4a9ed" + }, + { + "routeId": "L906", + "platformId": "U487Z1", + "id": "7f06dec6-8e0c-473e-94f7-21c0402e5330" + }, + { + "routeId": "L227", + "platformId": "U487Z1", + "id": "1728a41e-83bf-4e67-a343-502cb9bbdf06" + }, + { + "routeId": "L906", + "platformId": "U487Z2", + "id": "35788a5d-48dd-42a4-bf71-01703146b043" + }, + { + "routeId": "L227", + "platformId": "U487Z2", + "id": "4b7e696d-0c4a-4cab-9bb2-ffb7a15632e7" + }, + { + "routeId": "L595", + "platformId": "U4880Z1", + "id": "01573bc6-bf74-41b9-b701-dc1280888a57" + }, + { + "routeId": "L595", + "platformId": "U4880Z2", + "id": "9bebe4c2-98eb-4bb2-8b77-1e69e8abac42" + }, + { + "routeId": "L401", + "platformId": "U4884Z1", + "id": "2c3385f5-1dd3-44c0-839d-ae19c21a85ca" + }, + { + "routeId": "L401", + "platformId": "U4884Z2", + "id": "948054e1-83f8-4ca2-a31f-2a03a41931e9" + }, + { + "routeId": "L1217", + "platformId": "U4884Z301", + "id": "97954468-ead6-4e61-ae0c-44d924366724" + }, + { + "routeId": "L1398", + "platformId": "U4884Z301", + "id": "5d8bbdf2-434a-46c1-9e4f-7cd2733d4aec" + }, + { + "routeId": "L401", + "platformId": "U4885Z1", + "id": "59b83f1e-9ff2-4e82-98a9-25fcf7a32cbe" + }, + { + "routeId": "L452", + "platformId": "U4885Z1", + "id": "5750959d-53d4-4d6d-8186-7842eacc87cd" + }, + { + "routeId": "L401", + "platformId": "U4885Z2", + "id": "6269068c-c978-4bd3-93bc-14ac782eb97c" + }, + { + "routeId": "L452", + "platformId": "U4885Z2", + "id": "31f64a33-b794-4e56-8d63-b93cc0ae945b" + }, + { + "routeId": "L1217", + "platformId": "U4885Z301", + "id": "a5fae160-8bb7-45a8-8cca-bb2392be354e" + }, + { + "routeId": "L1390", + "platformId": "U4885Z301", + "id": "55f431d5-b46d-4cf1-9379-e880e4fb634f" + }, + { + "routeId": "L1398", + "platformId": "U4885Z301", + "id": "360ef3dc-7c79-4453-9eb6-8840508c6f46" + }, + { + "routeId": "L454", + "platformId": "U4886Z1", + "id": "f949d7d0-8c82-4151-8db0-02d28d77ef4b" + }, + { + "routeId": "L453", + "platformId": "U4886Z1", + "id": "545cfc83-1951-4246-b67e-391962ffee93" + }, + { + "routeId": "L455", + "platformId": "U4886Z1", + "id": "09572c98-be40-4854-aad2-644bfbfe8f30" + }, + { + "routeId": "L453", + "platformId": "U4886Z14", + "id": "dbb596f4-f36a-4fc4-8f54-47c97e7eb64d" + }, + { + "routeId": "L455", + "platformId": "U4886Z16", + "id": "bd2924ae-806e-4ee2-854a-7ffe639aa2e2" + }, + { + "routeId": "L454", + "platformId": "U4886Z19", + "id": "e3e1f746-d909-4c51-b1e5-f7e5f83eaa34" + }, + { + "routeId": "L1217", + "platformId": "U4886Z301", + "id": "8a4ef4e3-85f3-47a8-a4d8-aa3b0b918d1c" + }, + { + "routeId": "L1390", + "platformId": "U4886Z301", + "id": "7147c2e2-d7f4-440b-a8b9-7cae1a535073" + }, + { + "routeId": "L401", + "platformId": "U4886Z5", + "id": "1df96c28-541e-4ee7-b30d-0446f274d48f" + }, + { + "routeId": "L401", + "platformId": "U4886Z7", + "id": "53d06bca-a1ed-40d8-bc3c-c446621bcf99" + }, + { + "routeId": "L208", + "platformId": "U4887Z1", + "id": "f4eccbbe-6d8b-432d-967b-1e5c686875b4" + }, + { + "routeId": "L208", + "platformId": "U4887Z2", + "id": "32e4b37c-5195-42cc-aaf6-f342b5d823f7" + }, + { + "routeId": "L630", + "platformId": "U4888Z1", + "id": "0e563209-0301-4b8a-b1e7-9e74fae58f9a" + }, + { + "routeId": "L630", + "platformId": "U4888Z2", + "id": "8a943f54-6dbc-4825-88f4-113d0f1b1be7" + }, + { + "routeId": "L630", + "platformId": "U4889Z1", + "id": "2de95201-9b2a-4f9a-972b-dac4f56f194f" + }, + { + "routeId": "L630", + "platformId": "U4889Z2", + "id": "d9290180-798b-4e0e-9313-314751169bbe" + }, + { + "routeId": "L113", + "platformId": "U488Z1", + "id": "b30d5d3d-22d1-4a50-b322-2a53764aa7a1" + }, + { + "routeId": "L215", + "platformId": "U488Z1", + "id": "ff0a21ec-9229-42c8-9e52-7e46913fd11d" + }, + { + "routeId": "L189", + "platformId": "U488Z1", + "id": "1cd4d850-6250-49d2-bb17-763d229077b0" + }, + { + "routeId": "L904", + "platformId": "U488Z1", + "id": "24be1171-0a56-4e32-8723-8771e37a7e11" + }, + { + "routeId": "L333", + "platformId": "U488Z1", + "id": "1a8d9173-b833-4abd-8e15-feb18f8c8c06" + }, + { + "routeId": "L960", + "platformId": "U488Z1", + "id": "9ac47d2b-3abd-4360-8422-d283d14ff106" + }, + { + "routeId": "L106", + "platformId": "U488Z2", + "id": "84971606-5c0b-464b-a226-2c39c6020ab4" + }, + { + "routeId": "L139", + "platformId": "U488Z2", + "id": "29b03fc3-4454-4611-bac5-e021a4dc5a4f" + }, + { + "routeId": "L150", + "platformId": "U488Z2", + "id": "88a93751-af83-41f8-a6a1-8cc956ca0d90" + }, + { + "routeId": "L196", + "platformId": "U488Z2", + "id": "30effe01-486e-4d83-a0d9-d6072398156d" + }, + { + "routeId": "L910", + "platformId": "U488Z2", + "id": "96d3e765-5d24-435c-b4c4-3cf172796446" + }, + { + "routeId": "L913", + "platformId": "U488Z2", + "id": "02ac8c9a-6389-428f-bc3b-431028b9479c" + }, + { + "routeId": "L117", + "platformId": "U488Z2", + "id": "41930f5b-aa96-49b8-86ec-1319d1bdf256" + }, + { + "routeId": "L106", + "platformId": "U488Z3", + "id": "c7ff9411-ec47-414d-b900-36e7c9dae99c" + }, + { + "routeId": "L113", + "platformId": "U488Z3", + "id": "d78d60e7-a184-4508-bb41-7a399081b03d" + }, + { + "routeId": "L189", + "platformId": "U488Z3", + "id": "554b95d5-7e1b-4c2a-b3f7-6310eb12702b" + }, + { + "routeId": "L215", + "platformId": "U488Z3", + "id": "40fdd801-42ff-420b-a0f6-b42dcc3c3a6b" + }, + { + "routeId": "L138", + "platformId": "U488Z4", + "id": "1fab190e-ed05-4903-821c-1c3fc0dc2a72" + }, + { + "routeId": "L139", + "platformId": "U488Z4", + "id": "04725468-18ee-4a28-88a8-3df71c160e9d" + }, + { + "routeId": "L150", + "platformId": "U488Z4", + "id": "81c8247b-5efe-4880-9b3c-f659f3b2a850" + }, + { + "routeId": "L196", + "platformId": "U488Z4", + "id": "994dab11-c420-4dc6-ba23-cfdcfec796b8" + }, + { + "routeId": "L193", + "platformId": "U488Z4", + "id": "f79a299d-6f0c-484c-96f7-5607d4ecb051" + }, + { + "routeId": "L904", + "platformId": "U488Z4", + "id": "0e95d3d5-21b7-4823-b696-3e695ad23c80" + }, + { + "routeId": "L910", + "platformId": "U488Z4", + "id": "1e83afd9-a416-4d38-a7de-8cc8071503c6" + }, + { + "routeId": "L913", + "platformId": "U488Z4", + "id": "ff0f607f-110e-41ed-8aa0-519af4c2ead4" + }, + { + "routeId": "L138", + "platformId": "U488Z6", + "id": "9ed2a1db-d766-4d84-af5e-7ef7134842fc" + }, + { + "routeId": "L193", + "platformId": "U488Z6", + "id": "559182dd-f01c-4fa4-891a-8729783c3938" + }, + { + "routeId": "L203", + "platformId": "U488Z6", + "id": "89f32e8c-494d-4271-ad4b-3691cf9d6a96" + }, + { + "routeId": "L332", + "platformId": "U488Z6", + "id": "e0a7e690-e64c-4858-b463-c2ccd2a479ee" + }, + { + "routeId": "L956", + "platformId": "U488Z6", + "id": "fca940be-bb29-4ebf-b525-27f4dc4a0c55" + }, + { + "routeId": "L337", + "platformId": "U488Z6", + "id": "43d8d79a-0a20-4dbc-95ea-9b2d66bcab9a" + }, + { + "routeId": "L335", + "platformId": "U488Z6", + "id": "924285ce-5968-457c-a3d3-89395cdd014b" + }, + { + "routeId": "L339", + "platformId": "U488Z6", + "id": "874ace6f-b54d-4a0c-bcfd-5fc587c49170" + }, + { + "routeId": "L332", + "platformId": "U488Z7", + "id": "eb450d11-5c11-4d97-988d-ba01659fe700" + }, + { + "routeId": "L956", + "platformId": "U488Z7", + "id": "34566db6-94a4-4064-80c7-6556334e39c8" + }, + { + "routeId": "L333", + "platformId": "U488Z7", + "id": "38400ce0-74d8-4b9b-9890-d3ea789233ee" + }, + { + "routeId": "L337", + "platformId": "U488Z7", + "id": "4c34043f-f418-4bf4-8ec8-0b35e687b92d" + }, + { + "routeId": "L335", + "platformId": "U488Z7", + "id": "9b8ce7b8-b3f5-4720-b27d-550bbc15dab0" + }, + { + "routeId": "L339", + "platformId": "U488Z7", + "id": "bd21288a-3440-48c9-a46a-37a36b015593" + }, + { + "routeId": "L960", + "platformId": "U488Z7", + "id": "b83164cd-27f6-4260-8e32-a27a8f2e5bdf" + }, + { + "routeId": "L117", + "platformId": "U488Z8", + "id": "a19fe4e5-d34a-4fd0-b396-b6b89b85de28" + }, + { + "routeId": "L203", + "platformId": "U488Z8", + "id": "9d4c022e-3bec-42fd-843e-8daef12d413a" + }, + { + "routeId": "L630", + "platformId": "U4890Z1", + "id": "64dad8a9-5b64-4d43-b299-7b900880c4b2" + }, + { + "routeId": "L630", + "platformId": "U4890Z2", + "id": "5f48ffce-3ef7-49f4-8f16-8a03f178a973" + }, + { + "routeId": "L365", + "platformId": "U4891Z1", + "id": "1575a30b-051c-4281-9849-57b2d272002d" + }, + { + "routeId": "L630", + "platformId": "U4891Z1", + "id": "8992777d-0c40-4353-a57b-66ed51fc1116" + }, + { + "routeId": "L365", + "platformId": "U4891Z2", + "id": "8bf563da-78c0-4777-bbeb-daf05b5d18f1" + }, + { + "routeId": "L630", + "platformId": "U4891Z2", + "id": "d783defc-be97-4f10-971e-57bb922da3ed" + }, + { + "routeId": "L365", + "platformId": "U4892Z1", + "id": "938a5913-85a4-47cd-ac78-35a37c30732b" + }, + { + "routeId": "L365", + "platformId": "U4892Z2", + "id": "0c7fa942-a82a-4b20-b122-62d9a217c610" + }, + { + "routeId": "L365", + "platformId": "U4893Z1", + "id": "2495e44c-146b-4cb4-a510-7bf6d4b9f7bd" + }, + { + "routeId": "L630", + "platformId": "U4893Z1", + "id": "3992b134-457d-47f7-ad49-0f4a5a9c96e2" + }, + { + "routeId": "L365", + "platformId": "U4893Z2", + "id": "a321b23f-97e1-478b-b0cb-5c32064a944e" + }, + { + "routeId": "L630", + "platformId": "U4893Z2", + "id": "80dce3d0-8fdd-41d5-81c7-6ea79f78bbf8" + }, + { + "routeId": "L365", + "platformId": "U4894Z1", + "id": "0e07b394-ab40-4186-9246-4f939e3d7be8" + }, + { + "routeId": "L630", + "platformId": "U4894Z1", + "id": "06047dba-b311-4785-b57d-a6a1dc9f2bdf" + }, + { + "routeId": "L365", + "platformId": "U4894Z2", + "id": "734fab07-3b5b-470c-9da2-12cfd905d933" + }, + { + "routeId": "L630", + "platformId": "U4894Z2", + "id": "80c950b5-665a-45cf-8d34-76a23b3e7c31" + }, + { + "routeId": "L365", + "platformId": "U4895Z1", + "id": "7352cc2e-dac5-4d08-9bde-bf9f8d708075" + }, + { + "routeId": "L386", + "platformId": "U4895Z1", + "id": "70cc78b5-b29e-40e6-be64-64a14520814f" + }, + { + "routeId": "L630", + "platformId": "U4895Z1", + "id": "c3946ca5-434c-40e9-9bc5-6fc6355278a7" + }, + { + "routeId": "L386", + "platformId": "U4896Z1", + "id": "2d0c8b68-782f-4b64-9e93-7b877fdecec6" + }, + { + "routeId": "L630", + "platformId": "U4896Z1", + "id": "1038aecb-270e-4d99-a1f5-fa5bff641b39" + }, + { + "routeId": "L386", + "platformId": "U4896Z2", + "id": "a9a2c08f-dcd6-4e1d-b104-efc5a5c3b5da" + }, + { + "routeId": "L630", + "platformId": "U4896Z2", + "id": "5fdb73e5-c6d6-4d90-99b5-1e3da7fb3a27" + }, + { + "routeId": "L386", + "platformId": "U4898Z1", + "id": "cc86c792-2530-4f92-9f54-518851c3a8c5" + }, + { + "routeId": "L630", + "platformId": "U4898Z1", + "id": "a8b91fc8-9a7f-462a-b49b-3b0153eb7026" + }, + { + "routeId": "L386", + "platformId": "U4898Z2", + "id": "2adc775e-6559-46c5-891f-8d0f4f238a7c" + }, + { + "routeId": "L630", + "platformId": "U4898Z2", + "id": "077587e2-9db4-48c4-8f02-cdc56d155e16" + }, + { + "routeId": "L630", + "platformId": "U4899Z1", + "id": "a9913106-8bee-4fa6-a21d-a0cf4065c0eb" + }, + { + "routeId": "L630", + "platformId": "U4899Z2", + "id": "2786ca3b-ba6b-4e09-b3af-55a3937b29e3" + }, + { + "routeId": "L386", + "platformId": "U4899Z3", + "id": "d4513c4a-1d98-43a8-9278-c6b13349996c" + }, + { + "routeId": "L386", + "platformId": "U4899Z4", + "id": "d3520fc4-16b7-490c-9ed8-c637a3201f97" + }, + { + "routeId": "L167", + "platformId": "U489Z1", + "id": "7601a0ee-d815-4fee-a767-5c961f03c291" + }, + { + "routeId": "L167", + "platformId": "U489Z2", + "id": "7c58d922-0dc5-46c3-9965-e50daccde28e" + }, + { + "routeId": "L894", + "platformId": "U48Z1", + "id": "374a671b-43bb-4535-a794-fe4287c47a1f" + }, + { + "routeId": "L905", + "platformId": "U48Z1", + "id": "f6205e57-b257-4ec7-b9fc-5d04c45f40e0" + }, + { + "routeId": "L911", + "platformId": "U48Z1", + "id": "72b4bfe2-86b7-4303-961d-75721c1fda36" + }, + { + "routeId": "L905", + "platformId": "U48Z2", + "id": "a202841b-ff49-492b-a917-d26af5ae4efa" + }, + { + "routeId": "L911", + "platformId": "U48Z2", + "id": "349d5fd5-8228-4268-84b5-2830ee5f216d" + }, + { + "routeId": "L630", + "platformId": "U4900Z1", + "id": "a057204f-b633-4f0f-a5c6-6c807ead5740" + }, + { + "routeId": "L630", + "platformId": "U4900Z2", + "id": "7116f143-6d25-4342-b321-d3793f937483" + }, + { + "routeId": "L630", + "platformId": "U4901Z1", + "id": "79fa2992-86e7-4c8e-88a0-4bd70cb9d890" + }, + { + "routeId": "L630", + "platformId": "U4901Z2", + "id": "ba19ad3a-b390-4339-9ca7-e117aad841a9" + }, + { + "routeId": "L630", + "platformId": "U4902Z1", + "id": "faf0d039-9897-4760-8db9-54b7b0853a6d" + }, + { + "routeId": "L630", + "platformId": "U4902Z2", + "id": "cd5d57a9-ce7f-4368-9fa6-9a07fb2097fe" + }, + { + "routeId": "L630", + "platformId": "U4903Z1", + "id": "64196061-ee05-4481-80c9-46600cc7a3cb" + }, + { + "routeId": "L630", + "platformId": "U4903Z2", + "id": "1939fd15-7058-4748-9223-52594d06767c" + }, + { + "routeId": "L630", + "platformId": "U4904Z1", + "id": "c012655a-230b-421d-b588-fc5e007980fd" + }, + { + "routeId": "L630", + "platformId": "U4904Z2", + "id": "45fbedf2-835f-4791-baff-7000c8eaca79" + }, + { + "routeId": "L630", + "platformId": "U4907Z1", + "id": "cee9a816-2a0c-436e-b5bf-034dba1126c8" + }, + { + "routeId": "L630", + "platformId": "U4907Z2", + "id": "2a9b293c-c8dc-4b9d-b506-19127d74e2b1" + }, + { + "routeId": "L630", + "platformId": "U4908Z1", + "id": "2b49e3d4-b4cd-4df5-a85d-ebd950399358" + }, + { + "routeId": "L630", + "platformId": "U4908Z2", + "id": "c861d1b9-f6eb-48b6-b426-9587daec1fcf" + }, + { + "routeId": "L229", + "platformId": "U490Z1", + "id": "c2be00e8-35ac-4942-84be-23f3af7a3084" + }, + { + "routeId": "L209", + "platformId": "U490Z1", + "id": "f6158d52-513d-4e8d-a06e-621c3b7c7522" + }, + { + "routeId": "L903", + "platformId": "U490Z1", + "id": "a1326a55-34d3-4a98-9a89-a02bc7eccec7" + }, + { + "routeId": "L366", + "platformId": "U490Z1", + "id": "42ad08b0-f0a1-4770-b7bc-8a5c169b73d3" + }, + { + "routeId": "L229", + "platformId": "U490Z2", + "id": "2b23fc36-faa9-4941-9d2f-69050f106da1" + }, + { + "routeId": "L209", + "platformId": "U490Z2", + "id": "8cc18f96-fa18-4d0d-acb7-b3cf2184a286" + }, + { + "routeId": "L903", + "platformId": "U490Z2", + "id": "75a0480a-fb0c-4697-a15a-577b911e962d" + }, + { + "routeId": "L366", + "platformId": "U490Z2", + "id": "b0ac441d-0268-4082-9ebf-ced71cbec05e" + }, + { + "routeId": "L630", + "platformId": "U4913Z1", + "id": "68c5310e-d9d3-4bba-9b17-dd9197f4088d" + }, + { + "routeId": "L630", + "platformId": "U4913Z2", + "id": "f3722f2a-82c1-4e78-9a70-3e934c8e72aa" + }, + { + "routeId": "L630", + "platformId": "U4915Z1", + "id": "4bf9b618-629f-4bb0-811c-87a8d652973d" + }, + { + "routeId": "L630", + "platformId": "U4915Z2", + "id": "767f3c25-3ca6-4af4-af6b-a5181f146204" + }, + { + "routeId": "L630", + "platformId": "U4916Z1", + "id": "15cf94bb-ad60-45c5-b4f6-d41135c52c43" + }, + { + "routeId": "L630", + "platformId": "U4916Z2", + "id": "a6431554-ef6f-4200-b8f4-243b3d849b9d" + }, + { + "routeId": "L630", + "platformId": "U4918Z1", + "id": "792f5d3c-96a1-40e6-9431-c4a8dc70f465" + }, + { + "routeId": "L631", + "platformId": "U4918Z1", + "id": "2707f3df-fb0a-48d3-9a65-e043597985f1" + }, + { + "routeId": "L630", + "platformId": "U4918Z2", + "id": "73350fc3-3f78-4df9-a4df-6c4326edbcbd" + }, + { + "routeId": "L631", + "platformId": "U4918Z2", + "id": "9c80dc7e-a4be-4348-acc8-762ae4ceb9a7" + }, + { + "routeId": "L630", + "platformId": "U4919Z1", + "id": "783a3de7-eb60-4862-a8e2-18b82fb49a37" + }, + { + "routeId": "L154", + "platformId": "U491Z1", + "id": "314b591d-5380-4a1c-ba6a-a3b79298edab" + }, + { + "routeId": "L240", + "platformId": "U491Z1", + "id": "d4770f7d-3824-44ca-afe2-91128da49122" + }, + { + "routeId": "L154", + "platformId": "U491Z2", + "id": "42ed0929-0887-4b07-97bf-43baa14bfb7a" + }, + { + "routeId": "L240", + "platformId": "U491Z2", + "id": "29ea97eb-c32c-4852-853e-bd4313ead045" + }, + { + "routeId": "L636", + "platformId": "U4921Z1", + "id": "30595e39-5f30-4c07-ba87-93e48c67e43a" + }, + { + "routeId": "L636", + "platformId": "U4921Z2", + "id": "265022b1-00ea-476c-bf74-277a4ab94a1a" + }, + { + "routeId": "L636", + "platformId": "U4922Z1", + "id": "4353f9e0-5359-40be-8153-ebcbb03d513e" + }, + { + "routeId": "L636", + "platformId": "U4923Z1", + "id": "5c4c9509-15cf-4903-80c6-a7306d4dc136" + }, + { + "routeId": "L636", + "platformId": "U4923Z2", + "id": "c04d904d-2bc8-4780-bd39-78e8184580a9" + }, + { + "routeId": "L636", + "platformId": "U4924Z1", + "id": "a47e63de-7a32-48de-ad32-7a220cba0bca" + }, + { + "routeId": "L636", + "platformId": "U4924Z2", + "id": "4d38e1d7-59a0-406d-96ee-40ba2682047c" + }, + { + "routeId": "L307", + "platformId": "U4926Z1", + "id": "4da13cbd-a92a-461b-9ba6-e7f654efb98c" + }, + { + "routeId": "L307", + "platformId": "U4926Z2", + "id": "5c94f190-b14a-4062-9a8b-ee41095ba990" + }, + { + "routeId": "L655", + "platformId": "U4929Z1", + "id": "84fe0116-ef24-4504-9e47-24788d06fd88" + }, + { + "routeId": "L174", + "platformId": "U492Z1", + "id": "4298ac88-83bb-4436-b259-c5472ec01757" + }, + { + "routeId": "L902", + "platformId": "U492Z1", + "id": "81456913-8c4c-431d-b2d0-00327925c38e" + }, + { + "routeId": "L174", + "platformId": "U492Z2", + "id": "04467946-c3e7-4257-b138-4df57a3325cc" + }, + { + "routeId": "L902", + "platformId": "U492Z2", + "id": "b16d7895-8a6c-4341-899c-bef7afb2f4c7" + }, + { + "routeId": "L386", + "platformId": "U4930Z1", + "id": "739dd275-2689-4dd3-a356-fde9a3472a82" + }, + { + "routeId": "L386", + "platformId": "U4930Z2", + "id": "a7987cc6-b779-45da-943a-c1c70bd82281" + }, + { + "routeId": "L324", + "platformId": "U4932Z1", + "id": "467b01ae-a2ef-4fbe-b9d6-5eaf47496453" + }, + { + "routeId": "L324", + "platformId": "U4932Z2", + "id": "cde21051-7859-47ad-808c-dcde32d3ed8c" + }, + { + "routeId": "L324", + "platformId": "U4933Z1", + "id": "370cfd9a-3632-4c35-bbf4-858a8f08ddf0" + }, + { + "routeId": "L324", + "platformId": "U4933Z2", + "id": "b60138f3-fc09-4cfa-b1c4-0cf0552ca0f8" + }, + { + "routeId": "L422", + "platformId": "U4934Z1", + "id": "5bb14d7c-cd5a-44f5-8d2b-14bad8df5727" + }, + { + "routeId": "L422", + "platformId": "U4934Z2", + "id": "08c1638b-017d-426e-b414-1ed97283413f" + }, + { + "routeId": "L422", + "platformId": "U4935Z1", + "id": "f41160dc-35d7-498b-8f24-677a25ee8774" + }, + { + "routeId": "L422", + "platformId": "U4938Z1", + "id": "1c30598c-cf14-42e4-8d17-84437abafe89" + }, + { + "routeId": "L422", + "platformId": "U4938Z2", + "id": "ae1b463f-c431-4bc5-b1b6-400d0a42a4a9" + }, + { + "routeId": "L422", + "platformId": "U4939Z1", + "id": "43ed3249-d974-46ba-8ddc-483b1ffd12ef" + }, + { + "routeId": "L422", + "platformId": "U4939Z2", + "id": "4446c7d8-d707-49cb-aed2-b45f63f57ca9" + }, + { + "routeId": "L59", + "platformId": "U493Z1", + "id": "267b3eb0-0543-4d81-ac0b-545d7c279de2" + }, + { + "routeId": "L59", + "platformId": "U493Z2", + "id": "d7f41502-dee0-43af-83c7-e5dc61371e81" + }, + { + "routeId": "L625", + "platformId": "U4940Z1", + "id": "84529071-41b5-4b81-a1c0-25d486c7cd92" + }, + { + "routeId": "L580", + "platformId": "U4940Z1", + "id": "b13ca46f-7c9c-4664-9932-80af33a7594c" + }, + { + "routeId": "L625", + "platformId": "U4940Z2", + "id": "4bb2e4d1-33eb-4266-a15b-6b1c09374cb4" + }, + { + "routeId": "L580", + "platformId": "U4940Z2", + "id": "388ff321-4bf3-4fd4-9e70-0303eb213a3c" + }, + { + "routeId": "L422", + "platformId": "U4942Z1", + "id": "ab48f21f-6200-49fb-8cec-c99358095fcc" + }, + { + "routeId": "L422", + "platformId": "U4942Z2", + "id": "c289c91d-dbde-4a11-9bc6-3bd235430c66" + }, + { + "routeId": "L679", + "platformId": "U4943Z1", + "id": "0be00f11-472f-4255-a054-8079ab865ef5" + }, + { + "routeId": "L679", + "platformId": "U4943Z2", + "id": "24e43e2b-16e7-4fa9-9f3c-9f20a7732aca" + }, + { + "routeId": "L422", + "platformId": "U4944Z2", + "id": "c6fa5aa8-623e-4c29-94eb-be6ddc8992d0" + }, + { + "routeId": "L422", + "platformId": "U4945Z1", + "id": "4fc1bc70-74c6-44c4-b13d-7df70ba750fa" + }, + { + "routeId": "L422", + "platformId": "U4945Z2", + "id": "258b5dc7-2670-4a23-a283-79a24dd41048" + }, + { + "routeId": "L422", + "platformId": "U4946Z1", + "id": "cdf79152-48bc-460b-8b73-fca07f370bd3" + }, + { + "routeId": "L422", + "platformId": "U4946Z2", + "id": "387833db-541c-49bf-9ec5-d1028b214eb8" + }, + { + "routeId": "L422", + "platformId": "U4947Z1", + "id": "148fc2c4-b03c-4b76-b206-c7c8b6e4f559" + }, + { + "routeId": "L422", + "platformId": "U4947Z2", + "id": "9ee40b78-4392-434d-bf15-7984a3fd2542" + }, + { + "routeId": "L422", + "platformId": "U4948Z1", + "id": "7d8856db-5c64-4206-aac3-a1dd038e770a" + }, + { + "routeId": "L422", + "platformId": "U4948Z2", + "id": "f8adea46-f937-4b63-94ce-747b9f54df88" + }, + { + "routeId": "L555", + "platformId": "U4949Z1", + "id": "fa51a8c4-3311-47a6-9d50-2370c2fcb6b1" + }, + { + "routeId": "L555", + "platformId": "U4949Z2", + "id": "226f5bd3-4092-4542-bdf1-974561291aae" + }, + { + "routeId": "L215", + "platformId": "U494Z1", + "id": "b82e1095-589c-4791-aced-1b785a52b556" + }, + { + "routeId": "L197", + "platformId": "U494Z1", + "id": "d38c771f-4b93-4ce0-ab6b-38824ee60765" + }, + { + "routeId": "L904", + "platformId": "U494Z1", + "id": "117b45c7-f3b1-449a-a478-a41c87b61824" + }, + { + "routeId": "L913", + "platformId": "U494Z1", + "id": "8c9bc021-26b0-4548-9551-90f53eb56709" + }, + { + "routeId": "L189", + "platformId": "U494Z2", + "id": "cdf932fe-aec6-4408-8399-f71567e5074f" + }, + { + "routeId": "L117", + "platformId": "U494Z2", + "id": "d871daf8-8276-44fa-b7ef-bdfc65c3558e" + }, + { + "routeId": "L189", + "platformId": "U494Z3", + "id": "8fb382a5-2401-4ce1-9932-d4f99d135022" + }, + { + "routeId": "L197", + "platformId": "U494Z3", + "id": "db5836f0-5422-4a56-a59c-e25c2ab6d3ac" + }, + { + "routeId": "L117", + "platformId": "U494Z3", + "id": "1b1400f8-77cd-4f9f-ab18-604c67e1b9c7" + }, + { + "routeId": "L422", + "platformId": "U4950Z1", + "id": "19797492-01ae-4e33-9e53-96dfbb474f52" + }, + { + "routeId": "L422", + "platformId": "U4950Z2", + "id": "96de72b6-b4f9-4c39-a2d0-368eee5ddc59" + }, + { + "routeId": "L422", + "platformId": "U4951Z1", + "id": "a949d8c0-2ebb-46aa-b217-51b965c30697" + }, + { + "routeId": "L422", + "platformId": "U4951Z2", + "id": "219c9b03-e5bb-4ceb-b834-27d50f20b12f" + }, + { + "routeId": "L422", + "platformId": "U4952Z1", + "id": "c0c553b0-72ed-462d-907f-b7f6dcebe966" + }, + { + "routeId": "L422", + "platformId": "U4952Z2", + "id": "8cbe918b-7cbc-4df2-aae9-3b9d7d0185c4" + }, + { + "routeId": "L633", + "platformId": "U4955Z1", + "id": "c901c01b-ecd1-40a0-be51-d296cfe13098" + }, + { + "routeId": "L633", + "platformId": "U4955Z2", + "id": "1b23ebd2-ea39-4ff4-88f9-c6d11c6be6d0" + }, + { + "routeId": "L633", + "platformId": "U4956Z1", + "id": "4a637406-c419-4c2e-b167-6854fdc96a21" + }, + { + "routeId": "L633", + "platformId": "U4956Z2", + "id": "0f20f7d8-79ea-4d03-b88c-5dd5cd311b4b" + }, + { + "routeId": "L633", + "platformId": "U4957Z1", + "id": "d0a957a5-b15a-40a4-b14a-94a7a4788dc0" + }, + { + "routeId": "L633", + "platformId": "U4957Z2", + "id": "3f8a69ce-b852-4537-a54f-e407702dd572" + }, + { + "routeId": "L633", + "platformId": "U4958Z1", + "id": "3f8e82e5-0741-4a2e-b38d-f7e75fa33c4d" + }, + { + "routeId": "L633", + "platformId": "U4958Z2", + "id": "74066f1e-b78c-4738-9d6b-7d4cb275523d" + }, + { + "routeId": "L633", + "platformId": "U4959Z1", + "id": "2b8bfa62-0046-4e9c-874f-5770cb6328ce" + }, + { + "routeId": "L633", + "platformId": "U4959Z2", + "id": "876fe30a-9893-4741-9536-83e4d4118cbb" + }, + { + "routeId": "L118", + "platformId": "U495Z1", + "id": "119b3d3a-7642-46e3-9fdf-86fcf87490ce" + }, + { + "routeId": "L118", + "platformId": "U495Z2", + "id": "0e71242d-4041-434d-85cc-1eab5119f5e5" + }, + { + "routeId": "L633", + "platformId": "U4960Z1", + "id": "9223e1b9-de41-4dcd-9109-db77770a7bb7" + }, + { + "routeId": "L633", + "platformId": "U4960Z2", + "id": "88ebba9d-b1e5-4029-84fc-594c0ec848c0" + }, + { + "routeId": "L633", + "platformId": "U4961Z1", + "id": "789c4ad2-2e19-412e-ae6a-f1d11c9fdb24" + }, + { + "routeId": "L633", + "platformId": "U4961Z2", + "id": "32167b1d-73c9-4459-83b7-f87d026eb807" + }, + { + "routeId": "L380", + "platformId": "U4962Z1", + "id": "231f74c0-621d-4cf4-b7a6-ec6297204f18" + }, + { + "routeId": "L952", + "platformId": "U4962Z1", + "id": "63d23b24-955e-4c01-9f13-a26c04b3c4fb" + }, + { + "routeId": "L425", + "platformId": "U4962Z1", + "id": "b2a1e3b9-deb1-4a0d-82b7-0932c6bce7da" + }, + { + "routeId": "L380", + "platformId": "U4962Z2", + "id": "1d0a4b85-5465-4f1f-b920-e00ea0e05fe6" + }, + { + "routeId": "L425", + "platformId": "U4962Z2", + "id": "6532f781-9829-4b20-a1b8-712220300dcc" + }, + { + "routeId": "L380", + "platformId": "U4963Z1", + "id": "9776e9a1-6a6c-4af1-a2e1-a1e8930b9871" + }, + { + "routeId": "L952", + "platformId": "U4963Z1", + "id": "ae12a7f4-9b2a-4ffa-be0b-1db60521f638" + }, + { + "routeId": "L425", + "platformId": "U4963Z1", + "id": "e5135c55-9339-4b7b-8b29-7b5dbf55c8ec" + }, + { + "routeId": "L380", + "platformId": "U4963Z2", + "id": "1fd0b9fe-0b8e-462a-8256-c799db83769b" + }, + { + "routeId": "L425", + "platformId": "U4963Z2", + "id": "a72f7762-8ecf-47f3-b5f8-7c9397cae741" + }, + { + "routeId": "L380", + "platformId": "U4964Z1", + "id": "d4fd5014-b11b-4762-9d79-7e767c044746" + }, + { + "routeId": "L952", + "platformId": "U4964Z1", + "id": "2ea8fa27-7844-4345-83d3-70012b360e36" + }, + { + "routeId": "L425", + "platformId": "U4964Z1", + "id": "1b387ad0-f059-434a-a928-de045fe57379" + }, + { + "routeId": "L380", + "platformId": "U4964Z2", + "id": "134cc3a6-a76e-44d6-8774-7b051cf05239" + }, + { + "routeId": "L425", + "platformId": "U4964Z2", + "id": "e8561808-6fb6-4a50-a635-166d311f9517" + }, + { + "routeId": "L380", + "platformId": "U4965Z1", + "id": "d951512c-7d0f-46e2-9f9e-fb85e1f7b67d" + }, + { + "routeId": "L384", + "platformId": "U4965Z1", + "id": "31b1504d-679e-4761-a256-ac61bc330998" + }, + { + "routeId": "L638", + "platformId": "U4965Z1", + "id": "d6be8902-175b-4b6e-96d4-3b08dfcbf9d6" + }, + { + "routeId": "L425", + "platformId": "U4965Z1", + "id": "fca85895-ddd9-42e2-ac29-2a329f5e93f1" + }, + { + "routeId": "L631", + "platformId": "U4965Z1", + "id": "c59c4a8c-a68d-459f-9822-439b36361a77" + }, + { + "routeId": "L637", + "platformId": "U4965Z1", + "id": "d7049e26-3074-4a0c-8768-1cb33d15a367" + }, + { + "routeId": "L380", + "platformId": "U4965Z2", + "id": "7ea9a70f-5741-48ae-b6fb-5046481c0698" + }, + { + "routeId": "L384", + "platformId": "U4965Z2", + "id": "81064afd-916e-436e-b46c-4eabeee3f593" + }, + { + "routeId": "L638", + "platformId": "U4965Z2", + "id": "532c7120-5193-4d9e-96c5-a7ed751ac2fa" + }, + { + "routeId": "L394", + "platformId": "U4965Z2", + "id": "8a255cb9-ff38-4bb9-be9d-5eabfa50114c" + }, + { + "routeId": "L425", + "platformId": "U4965Z2", + "id": "b1b56a0b-c69a-4aa5-9649-61eb96d3c630" + }, + { + "routeId": "L631", + "platformId": "U4965Z2", + "id": "1634cc35-8f59-486b-890c-aebe16c41327" + }, + { + "routeId": "L637", + "platformId": "U4965Z2", + "id": "d4cca429-b826-41d7-b26d-d406b59c7917" + }, + { + "routeId": "L638", + "platformId": "U4966Z1", + "id": "232c3db7-def5-4c8d-aa54-9fcd79094e90" + }, + { + "routeId": "L630", + "platformId": "U4966Z1", + "id": "d3791418-c034-4848-943e-4c6b2d87b3ac" + }, + { + "routeId": "L637", + "platformId": "U4966Z1", + "id": "810ea353-146f-4464-a8c6-0e9980ac6871" + }, + { + "routeId": "L630", + "platformId": "U4966Z2", + "id": "3167ab6c-a9e0-4551-a2da-f1cb6e679bc2" + }, + { + "routeId": "L637", + "platformId": "U4966Z2", + "id": "aae4b08f-5e0a-478c-a8c9-3907f4ee3040" + }, + { + "routeId": "L638", + "platformId": "U4966Z2", + "id": "a7a661cc-f3b2-49cb-98f0-759fb5aa7e82" + }, + { + "routeId": "L638", + "platformId": "U4967Z1", + "id": "9d8cf224-c890-422e-a3d3-d2670811ae8f" + }, + { + "routeId": "L637", + "platformId": "U4967Z1", + "id": "ce4ca9c2-9e3b-42c0-8ead-f69fb706ce92" + }, + { + "routeId": "L637", + "platformId": "U4967Z2", + "id": "723c191c-e014-4e63-ab71-51d17474619b" + }, + { + "routeId": "L638", + "platformId": "U4967Z2", + "id": "964835ea-ddab-43c8-8a94-8abdd2478d43" + }, + { + "routeId": "L630", + "platformId": "U4967Z3", + "id": "6fb7deaf-657d-43e9-ac6c-e965181b81b4" + }, + { + "routeId": "L630", + "platformId": "U4967Z4", + "id": "bbdc7bde-ac36-4973-9f2c-1a4a728c4c82" + }, + { + "routeId": "L630", + "platformId": "U4968Z1", + "id": "e0bdf82b-0080-4fd2-adb9-4f5b47910452" + }, + { + "routeId": "L633", + "platformId": "U4969Z1", + "id": "0b065480-a6a6-45d8-8e1b-9f78a859eb76" + }, + { + "routeId": "L633", + "platformId": "U4969Z2", + "id": "99b555da-a6bf-44a1-bb93-50d4c403c45c" + }, + { + "routeId": "L638", + "platformId": "U4971Z1", + "id": "66291f6b-6c68-415c-9aa0-48803a430bd7" + }, + { + "routeId": "L631", + "platformId": "U4971Z1", + "id": "92710695-aa3e-461a-94a3-89015318932b" + }, + { + "routeId": "L637", + "platformId": "U4971Z1", + "id": "10ccc7ca-2470-46de-a052-5131b6a2f45f" + }, + { + "routeId": "L952", + "platformId": "U4971Z2", + "id": "2daba1ea-ea6b-4cdc-8e88-2deacb0c8ef4" + }, + { + "routeId": "L638", + "platformId": "U4971Z2", + "id": "1b1441fb-1464-46f8-8d12-9195dc8b26fc" + }, + { + "routeId": "L631", + "platformId": "U4971Z2", + "id": "25f05b51-ea70-4d75-9344-37aba8996e32" + }, + { + "routeId": "L637", + "platformId": "U4971Z2", + "id": "670873d1-906b-4c9e-8b9b-3be9fca81101" + }, + { + "routeId": "L380", + "platformId": "U4972Z1", + "id": "2448c3cd-ba01-4e9a-8567-992736b481b6" + }, + { + "routeId": "L384", + "platformId": "U4972Z1", + "id": "4020c787-f7c4-4365-ae30-8cc402df2de6" + }, + { + "routeId": "L638", + "platformId": "U4972Z1", + "id": "9f57590b-23d6-4bef-a449-0a0c9ed3cfbd" + }, + { + "routeId": "L394", + "platformId": "U4972Z1", + "id": "2cd8f72f-e872-483e-95c2-4845c7a1c377" + }, + { + "routeId": "L425", + "platformId": "U4972Z1", + "id": "de266a2a-8d65-4cd9-b59f-bc804549761c" + }, + { + "routeId": "L631", + "platformId": "U4972Z1", + "id": "04ba1084-af7b-4ec2-b29a-7bb74f01b25b" + }, + { + "routeId": "L380", + "platformId": "U4972Z2", + "id": "98c763bc-9eeb-45d2-a7ae-289ec92e8312" + }, + { + "routeId": "L384", + "platformId": "U4972Z2", + "id": "d89bf11d-fcbe-4d33-ad74-4758ce5ce3a4" + }, + { + "routeId": "L638", + "platformId": "U4972Z2", + "id": "bb09724d-455b-41c8-86ac-19cd23acc934" + }, + { + "routeId": "L425", + "platformId": "U4972Z2", + "id": "fb79666d-a7d0-45a8-bf6f-8f78094a87f9" + }, + { + "routeId": "L631", + "platformId": "U4972Z2", + "id": "6ab8dfa5-ad3f-4ad3-bbcb-970fe66b4b12" + }, + { + "routeId": "L637", + "platformId": "U4972Z3", + "id": "2f654a66-9200-45ba-ac62-902076971aba" + }, + { + "routeId": "L637", + "platformId": "U4972Z4", + "id": "bf799902-5352-4aae-8904-01f44e8c2227" + }, + { + "routeId": "L2260", + "platformId": "U4972Z401", + "id": "8e1dde3b-c7d4-4a23-a040-6ef78eaf3f44" + }, + { + "routeId": "L2260", + "platformId": "U4972Z402", + "id": "bfbfd33e-1276-467b-88f3-02c3e2656739" + }, + { + "routeId": "L637", + "platformId": "U4974Z1", + "id": "6089b2c7-2a11-4912-be00-c45f7122893e" + }, + { + "routeId": "L637", + "platformId": "U4974Z2", + "id": "a1587aa5-9003-4057-a150-d8655cf469a9" + }, + { + "routeId": "L380", + "platformId": "U4976Z1", + "id": "3de38429-725e-446e-99b1-bf639ca98b92" + }, + { + "routeId": "L384", + "platformId": "U4976Z1", + "id": "a4d6cbbc-3e84-40b6-8b02-d47c2319e88c" + }, + { + "routeId": "L638", + "platformId": "U4976Z1", + "id": "62f335de-3111-4121-bf04-ad14eae23638" + }, + { + "routeId": "L380", + "platformId": "U4976Z2", + "id": "c5dd8cd3-0ae6-46e1-9a2c-1783a142409f" + }, + { + "routeId": "L384", + "platformId": "U4976Z2", + "id": "ae1fcdb9-e3e5-4e35-a813-7ca6f5953c90" + }, + { + "routeId": "L638", + "platformId": "U4976Z2", + "id": "4026c7d5-61cf-41c4-ac6e-2c7e196aef02" + }, + { + "routeId": "L394", + "platformId": "U4976Z2", + "id": "ebd8e701-587b-42cc-ba24-241504888374" + }, + { + "routeId": "L638", + "platformId": "U4977Z1", + "id": "b593132c-5abc-4b1f-8492-73dc7b37e3d3" + }, + { + "routeId": "L380", + "platformId": "U4977Z2", + "id": "7a2efa0b-3c5b-47c1-8c68-3d32a36e4c49" + }, + { + "routeId": "L384", + "platformId": "U4977Z2", + "id": "cb8170ae-6c05-45b7-aa75-1226013be7db" + }, + { + "routeId": "L638", + "platformId": "U4977Z2", + "id": "750a352d-b27e-4f70-849d-77b94eac9eb8" + }, + { + "routeId": "L380", + "platformId": "U4978Z1", + "id": "19f7f155-5a8b-448d-b9bc-5c77149ba074" + }, + { + "routeId": "L384", + "platformId": "U4978Z1", + "id": "f1a24063-1e25-48fa-bbcf-457e2d57395f" + }, + { + "routeId": "L394", + "platformId": "U4978Z1", + "id": "47a91dff-bc4c-4c84-905a-f501608d15e2" + }, + { + "routeId": "L380", + "platformId": "U4978Z2", + "id": "6441de76-c8f6-49c6-aefa-513cb2952c33" + }, + { + "routeId": "L384", + "platformId": "U4978Z2", + "id": "fd2c7af0-481e-4a55-9750-dc00eea06f76" + }, + { + "routeId": "L384", + "platformId": "U4979Z1", + "id": "1ff95e25-70f2-4e6f-8a6c-231f8149053c" + }, + { + "routeId": "L380", + "platformId": "U4979Z1", + "id": "44737d2e-811c-48da-8410-3229294b22a6" + }, + { + "routeId": "L394", + "platformId": "U4979Z1", + "id": "bded1084-982b-4dc7-9313-c46bc4cd24e5" + }, + { + "routeId": "L384", + "platformId": "U4979Z2", + "id": "be34abf5-3920-482b-92e0-cca181c80304" + }, + { + "routeId": "L197", + "platformId": "U497Z1", + "id": "61d395b4-fc18-45a1-96ca-4b65b23bf19a" + }, + { + "routeId": "L106", + "platformId": "U497Z2", + "id": "5c3f82c8-0e27-48e5-8f74-77f1454cfb68" + }, + { + "routeId": "L196", + "platformId": "U497Z2", + "id": "52a97fb4-8a25-4bc9-b55c-0d6809482105" + }, + { + "routeId": "L197", + "platformId": "U497Z2", + "id": "a4d2f621-674d-49f0-a740-9fedec11fecc" + }, + { + "routeId": "L901", + "platformId": "U497Z2", + "id": "79b828a8-6f62-4449-9877-57eba3df46c9" + }, + { + "routeId": "L121", + "platformId": "U497Z3", + "id": "8612e13a-7d19-4b24-b92d-048052e94597" + }, + { + "routeId": "L139", + "platformId": "U497Z3", + "id": "913837d8-96e4-4ffe-9a64-75f53ca6e0c6" + }, + { + "routeId": "L150", + "platformId": "U497Z3", + "id": "4b571cce-006d-414e-b89a-8d4ef537dfc9" + }, + { + "routeId": "L910", + "platformId": "U497Z3", + "id": "872a7a9a-db0b-4fd5-9976-3d81dccfc3d4" + }, + { + "routeId": "L106", + "platformId": "U497Z4", + "id": "ae2a08ab-4493-4848-87ee-f9f8abfcbb08" + }, + { + "routeId": "L121", + "platformId": "U497Z4", + "id": "f063abae-7a57-4ce5-997b-a9a7311967a2" + }, + { + "routeId": "L139", + "platformId": "U497Z4", + "id": "420db1df-ddc7-4460-b77d-c9b3236480b7" + }, + { + "routeId": "L150", + "platformId": "U497Z4", + "id": "57ef0f92-277b-465f-a6df-626286393c6a" + }, + { + "routeId": "L196", + "platformId": "U497Z4", + "id": "5c762a92-4b1e-41e0-bb04-9442d8695d2e" + }, + { + "routeId": "L901", + "platformId": "U497Z4", + "id": "6ec08044-4c0c-4dc1-a488-5b9833f0a392" + }, + { + "routeId": "L910", + "platformId": "U497Z4", + "id": "a05b0341-dd86-4d47-97bb-8e573e4be3f1" + }, + { + "routeId": "L913", + "platformId": "U497Z4", + "id": "9555883d-0e71-453d-a61e-0eb047fa9b85" + }, + { + "routeId": "L117", + "platformId": "U497Z4", + "id": "8ffeb7fc-de5e-4dfb-a313-801c97735474" + }, + { + "routeId": "L913", + "platformId": "U497Z5", + "id": "4d1b7e21-84fc-4317-9237-bff9f66777e2" + }, + { + "routeId": "L117", + "platformId": "U497Z5", + "id": "8b171bd1-7a6f-457c-86e5-e96864bac9a6" + }, + { + "routeId": "L679", + "platformId": "U4980Z1", + "id": "a8beeff6-c6c5-4e1f-9bf0-b368edf7446f" + }, + { + "routeId": "L422", + "platformId": "U4980Z1", + "id": "3b35bf3b-8406-40ea-afdb-dcfd10acdbfa" + }, + { + "routeId": "L679", + "platformId": "U4980Z2", + "id": "afcf3771-c491-4fec-8af2-2f5e4965ed1c" + }, + { + "routeId": "L422", + "platformId": "U4980Z2", + "id": "1743e691-9806-45de-9fda-c6206d07edb3" + }, + { + "routeId": "L421", + "platformId": "U4981Z3", + "id": "301b0b63-aa4d-4c33-9ad4-3fc4cc41c9b5" + }, + { + "routeId": "L421", + "platformId": "U4981Z4", + "id": "aa77d573-29e6-457d-b006-c0145d3782b6" + }, + { + "routeId": "L421", + "platformId": "U4982Z1", + "id": "1e194524-51bf-471a-8a8f-af9c5420ca5a" + }, + { + "routeId": "L421", + "platformId": "U4982Z2", + "id": "43141926-8d26-4f88-88d8-7cb24d556188" + }, + { + "routeId": "L421", + "platformId": "U4983Z1", + "id": "a16ad333-d12a-471c-98ac-a87efdf507d1" + }, + { + "routeId": "L421", + "platformId": "U4983Z2", + "id": "3ff05663-3097-421e-b9c8-6231d2e85bc5" + }, + { + "routeId": "L421", + "platformId": "U4984Z1", + "id": "6ecb5b83-2f32-4c7e-9a43-5d22e26bc5e9" + }, + { + "routeId": "L421", + "platformId": "U4984Z2", + "id": "ed92bcd6-83a1-4cd7-bf64-9b2583655f4a" + }, + { + "routeId": "L424", + "platformId": "U4986Z1", + "id": "eed662fa-5bfd-4ac4-b5c5-18850750c9d1" + }, + { + "routeId": "L424", + "platformId": "U4986Z2", + "id": "1fa2b75f-614f-42bb-938c-f128143184dc" + }, + { + "routeId": "L424", + "platformId": "U4987Z1", + "id": "4d1dd291-fc87-4a52-87d7-92a25b593005" + }, + { + "routeId": "L424", + "platformId": "U4987Z2", + "id": "34b86823-6711-405d-afa0-d2ba153ce5e0" + }, + { + "routeId": "L424", + "platformId": "U4988Z1", + "id": "35c65cc5-68d8-40ca-a42f-76aa27e58159" + }, + { + "routeId": "L424", + "platformId": "U4988Z2", + "id": "0e1a9f9d-2a3d-4a38-8638-053a408a814d" + }, + { + "routeId": "L424", + "platformId": "U4989Z1", + "id": "aa945f71-93e0-41be-8bf3-9bbcd09de146" + }, + { + "routeId": "L424", + "platformId": "U4989Z2", + "id": "61a746b7-4afa-4d17-ab0c-f73e4cb4de99" + }, + { + "routeId": "L109", + "platformId": "U498Z1", + "id": "378e45bf-5709-4e84-bb2f-94954139b77a" + }, + { + "routeId": "L136", + "platformId": "U498Z1", + "id": "1b6ab878-cdee-4948-a5db-28cf94363580" + }, + { + "routeId": "L913", + "platformId": "U498Z1", + "id": "f8a78f8e-f6ec-4e0a-9bad-e118135b155e" + }, + { + "routeId": "L903", + "platformId": "U498Z1", + "id": "7278b6fd-1f09-4e43-8107-f234bd2cc92d" + }, + { + "routeId": "L109", + "platformId": "U498Z2", + "id": "e21648ef-1620-4431-bd7a-97bc0f1d9218" + }, + { + "routeId": "L903", + "platformId": "U498Z2", + "id": "77589318-8f35-4323-bb4d-c45269ab6980" + }, + { + "routeId": "L424", + "platformId": "U4990Z1", + "id": "6e25d46b-1713-4813-88a0-e66504ba799c" + }, + { + "routeId": "L424", + "platformId": "U4990Z2", + "id": "6a2ded70-e4b9-48be-813f-3d4b4c554f4d" + }, + { + "routeId": "L421", + "platformId": "U4991Z1", + "id": "22bd6f1f-7ca8-408b-b288-9282fe8cde6f" + }, + { + "routeId": "L421", + "platformId": "U4991Z2", + "id": "6ebd96c3-9798-4f04-a106-2d648e8c615e" + }, + { + "routeId": "L424", + "platformId": "U4992Z1", + "id": "2b4c989d-3007-4f43-8eb5-de182116e253" + }, + { + "routeId": "L421", + "platformId": "U4992Z1", + "id": "2daadde2-0e5f-487b-bccb-347c3145de44" + }, + { + "routeId": "L424", + "platformId": "U4992Z2", + "id": "aecc5cf3-4d63-42c2-98ff-75e941a11bb9" + }, + { + "routeId": "L421", + "platformId": "U4992Z2", + "id": "675e2243-fbb1-48b3-afbb-d11b48052b72" + }, + { + "routeId": "L424", + "platformId": "U4993Z1", + "id": "30029028-9f51-4721-b457-10ff441c9b74" + }, + { + "routeId": "L421", + "platformId": "U4993Z1", + "id": "305dfffd-2877-47b1-a9c2-ade9ec930914" + }, + { + "routeId": "L424", + "platformId": "U4993Z2", + "id": "a3ddce4e-5d66-4d53-ad25-7050be86c1bf" + }, + { + "routeId": "L421", + "platformId": "U4993Z2", + "id": "89e829c2-c173-4065-8595-0f4626422834" + }, + { + "routeId": "L424", + "platformId": "U4994Z1", + "id": "53f77f51-ab2a-4d26-99cf-cbec992ba5fb" + }, + { + "routeId": "L421", + "platformId": "U4994Z1", + "id": "c9dd19c9-8391-4dff-aa4c-d7a4e7ab5469" + }, + { + "routeId": "L424", + "platformId": "U4994Z2", + "id": "138c9169-69fc-4263-bbd2-2ba5c3b02a05" + }, + { + "routeId": "L421", + "platformId": "U4994Z2", + "id": "09766ebd-3041-4520-b5d6-8b76aec89e77" + }, + { + "routeId": "L424", + "platformId": "U4995Z1", + "id": "e11d15ca-bfdd-4a98-8205-a9bdb1872d93" + }, + { + "routeId": "L421", + "platformId": "U4995Z1", + "id": "c306a57e-c7e2-4ca0-9459-291caa17733a" + }, + { + "routeId": "L424", + "platformId": "U4995Z2", + "id": "6f2c7c33-6c94-47fe-8fd9-ba84db5cedff" + }, + { + "routeId": "L421", + "platformId": "U4995Z2", + "id": "75565a46-f6ba-4470-a3ea-27ffab1995ff" + }, + { + "routeId": "L424", + "platformId": "U4996Z1", + "id": "6264c09b-3a7a-4b71-8d66-8ebc417cd90c" + }, + { + "routeId": "L421", + "platformId": "U4996Z1", + "id": "58a5e464-2574-4f92-b53c-e2dd09c7f7a7" + }, + { + "routeId": "L424", + "platformId": "U4996Z2", + "id": "8545ab02-22b3-42d5-9b24-73d947ac84e7" + }, + { + "routeId": "L421", + "platformId": "U4996Z2", + "id": "61e4e5dc-8f75-4f71-a438-905cac22a1b6" + }, + { + "routeId": "L705", + "platformId": "U4997Z1", + "id": "6ce573f9-efdf-428b-8a3c-7affdb06cd85" + }, + { + "routeId": "L681", + "platformId": "U4997Z1", + "id": "ff1be424-1026-40f7-913a-4f16114eee9e" + }, + { + "routeId": "L487", + "platformId": "U4997Z1", + "id": "dac04c15-b059-43fa-9067-430c517e3ab2" + }, + { + "routeId": "L424", + "platformId": "U4997Z1", + "id": "0ae00611-fb2f-4c7c-b1a1-3717ad922bd9" + }, + { + "routeId": "L421", + "platformId": "U4997Z1", + "id": "20570627-88b9-40e6-bc21-fdaf00946855" + }, + { + "routeId": "L706", + "platformId": "U4997Z1", + "id": "a672c9bb-7be9-4741-9ff8-f28dea00f658" + }, + { + "routeId": "L705", + "platformId": "U4997Z2", + "id": "c00798ba-a39a-4187-b311-0068c29d16dc" + }, + { + "routeId": "L681", + "platformId": "U4997Z2", + "id": "04a56030-35f2-4ed7-b33f-3e6c5137140a" + }, + { + "routeId": "L487", + "platformId": "U4997Z2", + "id": "1405bb6b-2b0c-493c-83a9-2fa52294a03b" + }, + { + "routeId": "L424", + "platformId": "U4997Z2", + "id": "79331a75-3a8f-46f5-b9ef-0b442adf4b40" + }, + { + "routeId": "L421", + "platformId": "U4997Z2", + "id": "45d7996c-48e6-404c-9707-4c55aad788ef" + }, + { + "routeId": "L706", + "platformId": "U4997Z2", + "id": "506e095e-ca84-49c0-a40d-d7f43e5c2b97" + }, + { + "routeId": "L705", + "platformId": "U4998Z1", + "id": "0006adbd-29bb-4f43-bcfe-67fe0e5ca894" + }, + { + "routeId": "L681", + "platformId": "U4998Z1", + "id": "3b5206e7-c94c-4935-a5cf-7b3c0d288fb2" + }, + { + "routeId": "L487", + "platformId": "U4998Z1", + "id": "f2f4faaf-1b57-471f-a39b-cefc9b9d6c08" + }, + { + "routeId": "L424", + "platformId": "U4998Z1", + "id": "2a73eeee-a211-41d5-93eb-5f9dc4aacc9d" + }, + { + "routeId": "L421", + "platformId": "U4998Z1", + "id": "b7c4a9f2-570e-42de-8970-b4f296a96a79" + }, + { + "routeId": "L706", + "platformId": "U4998Z1", + "id": "fbab1e1a-5ad3-4aa9-83fc-daefe3843add" + }, + { + "routeId": "L705", + "platformId": "U4998Z2", + "id": "7742f693-fe56-4617-ac61-36c0696ac1de" + }, + { + "routeId": "L681", + "platformId": "U4998Z2", + "id": "b1bde40a-d6dd-4924-9d08-50d4e8d4209f" + }, + { + "routeId": "L487", + "platformId": "U4998Z2", + "id": "99875b80-d168-4827-a3d0-1ed9ab5426ce" + }, + { + "routeId": "L424", + "platformId": "U4998Z2", + "id": "80960466-92e0-45c1-95b3-d570b9d144d3" + }, + { + "routeId": "L421", + "platformId": "U4998Z2", + "id": "1a09a8f9-358b-4038-8b16-e8edbf0f5283" + }, + { + "routeId": "L706", + "platformId": "U4998Z2", + "id": "1bf6170b-a338-48f0-a09a-4c61d729a15b" + }, + { + "routeId": "L12", + "platformId": "U499Z1", + "id": "82535167-7c32-4720-acb0-75206f002187" + }, + { + "routeId": "L94", + "platformId": "U499Z1", + "id": "14546b82-de6a-410f-8a40-76ea5f0b030d" + }, + { + "routeId": "L12", + "platformId": "U499Z2", + "id": "b806e23a-449d-4349-861a-d9a9e6018d04" + }, + { + "routeId": "L94", + "platformId": "U499Z2", + "id": "89075f42-ccbf-4a7b-9dbd-f50a297a2de9" + }, + { + "routeId": "L110", + "platformId": "U499Z5", + "id": "d3c8d62c-193e-4971-95bf-1055f15659e1" + }, + { + "routeId": "L110", + "platformId": "U499Z6", + "id": "40c2564a-ce29-4931-b72c-8da497e32fc0" + }, + { + "routeId": "L170", + "platformId": "U49Z1", + "id": "0fa195f2-d7eb-44e6-bbc1-32c055a633f1" + }, + { + "routeId": "L170", + "platformId": "U49Z2", + "id": "85d0c18e-4ab7-41f1-8161-4490d06de412" + }, + { + "routeId": "L105", + "platformId": "U49Z3", + "id": "d0ab3346-99cf-46ef-bf71-1edded42db85" + }, + { + "routeId": "L5", + "platformId": "U49Z4", + "id": "8ca881c4-6b45-44a6-b871-38fec7438c7d" + }, + { + "routeId": "L12", + "platformId": "U49Z4", + "id": "db184471-94f1-4a07-9cdf-9489bc9dc00c" + }, + { + "routeId": "L20", + "platformId": "U49Z4", + "id": "a09b2091-ba9c-4863-a642-023ebc5589ca" + }, + { + "routeId": "L94", + "platformId": "U49Z4", + "id": "c5472765-6727-4e97-a15d-efe59665d894" + }, + { + "routeId": "L5", + "platformId": "U49Z5", + "id": "f512dc54-6e90-4751-8b79-848f4c1a3eac" + }, + { + "routeId": "L12", + "platformId": "U49Z5", + "id": "98fa2df4-f4eb-4cf6-a715-45b456c61798" + }, + { + "routeId": "L20", + "platformId": "U49Z5", + "id": "ff92e197-b404-4b87-b33f-02f76349182a" + }, + { + "routeId": "L94", + "platformId": "U49Z5", + "id": "85e26ea0-fb19-4826-b9b9-30c09b98dd99" + }, + { + "routeId": "L9", + "platformId": "U4Z1", + "id": "78506202-1c78-4242-8640-46186a11d78d" + }, + { + "routeId": "L12", + "platformId": "U4Z1", + "id": "f250ff4f-9266-4e57-94ae-815f90793e8a" + }, + { + "routeId": "L15", + "platformId": "U4Z1", + "id": "8c616e2b-2ccb-4c83-9f7c-c2c7d401d095" + }, + { + "routeId": "L20", + "platformId": "U4Z1", + "id": "e89abdb4-826b-4a70-9e52-58d8eaa1c140" + }, + { + "routeId": "L98", + "platformId": "U4Z1", + "id": "1c4dfc78-16af-4958-bfd5-aa653aac77dc" + }, + { + "routeId": "L99", + "platformId": "U4Z1", + "id": "57d44888-c110-4afb-b7ea-afbbdd662437" + }, + { + "routeId": "L820", + "platformId": "U4Z1", + "id": "fc0fe9dd-173c-40cb-afeb-aab813bdbd55" + }, + { + "routeId": "L9", + "platformId": "U4Z2", + "id": "9c217c92-a9a6-433a-a151-1755b48e8dad" + }, + { + "routeId": "L12", + "platformId": "U4Z2", + "id": "d33ac898-ef66-4c62-a38a-9582d7f06b05" + }, + { + "routeId": "L15", + "platformId": "U4Z2", + "id": "b42651ae-4560-4d09-886d-ac14df2eecf2" + }, + { + "routeId": "L20", + "platformId": "U4Z2", + "id": "0a680567-37cc-475f-a9bb-c30c06bc93d7" + }, + { + "routeId": "L98", + "platformId": "U4Z2", + "id": "da5ef9bb-ff9d-47f5-a2e1-e091b1368a54" + }, + { + "routeId": "L99", + "platformId": "U4Z2", + "id": "978cab1a-6e89-4a47-8b48-c5b22c5e4afd" + }, + { + "routeId": "L176", + "platformId": "U4Z3", + "id": "6365ffea-cf41-4397-85b3-06491bd5dc12" + }, + { + "routeId": "L910", + "platformId": "U4Z3", + "id": "dcdf3144-8a48-4bbe-afa3-08d157943f95" + }, + { + "routeId": "L176", + "platformId": "U4Z4", + "id": "2dc58779-e264-4262-8c99-18c99bffe513" + }, + { + "routeId": "L910", + "platformId": "U4Z4", + "id": "e1d33b03-5bf3-4866-8fe7-103d47f568bd" + }, + { + "routeId": "L820", + "platformId": "U4Z52", + "id": "983dd151-4326-401a-8951-6b0ec74e8dcf" + }, + { + "routeId": "L421", + "platformId": "U5000Z1", + "id": "ecec18af-35b4-4861-a474-619844cc6fb6" + }, + { + "routeId": "L421", + "platformId": "U5000Z2", + "id": "7deaf3b9-e130-4384-8590-11de49101e9d" + }, + { + "routeId": "L316", + "platformId": "U5002Z1", + "id": "df94fa63-76ae-4e1b-8117-6e6f37d5234e" + }, + { + "routeId": "L316", + "platformId": "U5002Z2", + "id": "8753d86c-e76d-4c95-beaa-0a59b8adf28c" + }, + { + "routeId": "L527", + "platformId": "U5003Z1", + "id": "68f794d9-2c7b-452f-9537-58c779b996ea" + }, + { + "routeId": "L527", + "platformId": "U5003Z2", + "id": "cbfb9e10-aef3-4c43-bfb4-cb008bb5ee6c" + }, + { + "routeId": "L527", + "platformId": "U5004Z1", + "id": "0189683e-9906-49d2-8f1a-838bd5ce1e7b" + }, + { + "routeId": "L527", + "platformId": "U5004Z2", + "id": "f86b8239-44b6-40c2-b380-85cb25ee5322" + }, + { + "routeId": "L526", + "platformId": "U5005Z1", + "id": "48b76e58-5204-4397-8f32-f4e1e83d1233" + }, + { + "routeId": "L526", + "platformId": "U5005Z2", + "id": "6ff93676-c91b-48d4-8f51-db76dce99542" + }, + { + "routeId": "L1222", + "platformId": "U5008Z301", + "id": "a8fcc2ee-95b6-4d29-ab86-23d4203c2ea4" + }, + { + "routeId": "L1034", + "platformId": "U5008Z301", + "id": "daef9297-88ae-406e-a219-8bfed8856f54" + }, + { + "routeId": "L136", + "platformId": "U500Z1", + "id": "d4639a0a-4a76-4177-a4e2-ec5f0347d096" + }, + { + "routeId": "L195", + "platformId": "U500Z1", + "id": "394f970c-da33-455f-9f94-21a8ac47b1fa" + }, + { + "routeId": "L911", + "platformId": "U500Z1", + "id": "1b2e70ce-5273-46ab-aea0-bb13e6dbe7c5" + }, + { + "routeId": "L916", + "platformId": "U500Z1", + "id": "820be991-b34c-45db-a362-a1e307d44e98" + }, + { + "routeId": "L375", + "platformId": "U500Z1", + "id": "12fae2c8-db81-4f12-913d-c047487e92ff" + }, + { + "routeId": "L58", + "platformId": "U500Z1", + "id": "dbf7f852-9b1a-40c7-b05c-aec962b75e17" + }, + { + "routeId": "L136", + "platformId": "U500Z2", + "id": "6f7e8bd7-f364-47de-ae7c-896ae2fb980d" + }, + { + "routeId": "L195", + "platformId": "U500Z2", + "id": "dac8d59f-d7c7-4d4d-8575-9fd92394f2e5" + }, + { + "routeId": "L916", + "platformId": "U500Z2", + "id": "8d976512-446d-48c1-88f7-c3b7fc53933d" + }, + { + "routeId": "L911", + "platformId": "U500Z2", + "id": "9ddc7491-3c68-44e2-a146-0c649a0f7d92" + }, + { + "routeId": "L375", + "platformId": "U500Z2", + "id": "862c3cdc-03d8-4a4e-89e2-3fa46feb052b" + }, + { + "routeId": "L58", + "platformId": "U500Z2", + "id": "25204337-9dbb-4e5f-a1f0-153d509899b1" + }, + { + "routeId": "L120", + "platformId": "U501Z1", + "id": "69e9d339-83db-4b83-be2c-b6e9a53d226e" + }, + { + "routeId": "L130", + "platformId": "U501Z1", + "id": "859577ef-77b7-4357-96ee-78e7fcc4ff9f" + }, + { + "routeId": "L951", + "platformId": "U501Z1", + "id": "bd263e55-df6d-4c64-bc65-1fcbeac3ec90" + }, + { + "routeId": "L120", + "platformId": "U501Z2", + "id": "141fe76b-e764-4ea0-bd15-d8a679c16dd7" + }, + { + "routeId": "L130", + "platformId": "U501Z2", + "id": "56ecf674-adab-454f-9e64-2a5b6fbf8087" + }, + { + "routeId": "L951", + "platformId": "U501Z2", + "id": "34d2d08e-231f-4637-889e-5e71e514ef52" + }, + { + "routeId": "L489", + "platformId": "U5021Z1", + "id": "a14b43ee-f63c-478a-9cb2-947cc54f26db" + }, + { + "routeId": "L1222", + "platformId": "U5026Z301", + "id": "630b4db0-3308-4d93-b4a3-9da3b5e62d69" + }, + { + "routeId": "L1034", + "platformId": "U5026Z301", + "id": "e0d34202-a1a4-430b-a141-4a261a20f31f" + }, + { + "routeId": "L151", + "platformId": "U502Z1", + "id": "dbb25e6b-5117-4953-bd66-8f659eea4249" + }, + { + "routeId": "L151", + "platformId": "U502Z2", + "id": "c5d3e4d8-7dde-4ce1-8fb3-86f055cc4e31" + }, + { + "routeId": "L18", + "platformId": "U503Z1", + "id": "c7e610d9-bc8f-480b-86f9-da19403b001c" + }, + { + "routeId": "L19", + "platformId": "U503Z1", + "id": "092910a4-2555-41c0-80f5-dedd42f831a1" + }, + { + "routeId": "L93", + "platformId": "U503Z1", + "id": "f3969067-7b9f-4546-831a-16a5b6f1827d" + }, + { + "routeId": "L193", + "platformId": "U503Z1", + "id": "3cfb7281-5d76-4da2-b4a5-d52a6c6742b5" + }, + { + "routeId": "L18", + "platformId": "U503Z2", + "id": "9d18c43c-124c-4187-93c1-3eb5481781fa" + }, + { + "routeId": "L19", + "platformId": "U503Z2", + "id": "e7d0566a-b8ba-4ab4-9429-6e4a44061d5b" + }, + { + "routeId": "L93", + "platformId": "U503Z2", + "id": "a9521d6a-85ca-4698-b516-4b2e99d13e9d" + }, + { + "routeId": "L193", + "platformId": "U503Z2", + "id": "b21ef505-f37c-4d0a-a8e5-60eb35e9c347" + }, + { + "routeId": "L6", + "platformId": "U504Z1", + "id": "47db5b17-9738-4411-9b37-9de11e126c74" + }, + { + "routeId": "L11", + "platformId": "U504Z1", + "id": "f3466ca3-1346-4ef7-888f-a6958556b2af" + }, + { + "routeId": "L96", + "platformId": "U504Z1", + "id": "b2306515-b41c-4d22-baa1-3eddb484eb29" + }, + { + "routeId": "L6", + "platformId": "U504Z2", + "id": "0e741f58-5ffa-4dbf-81cf-e8c2758312cb" + }, + { + "routeId": "L11", + "platformId": "U504Z2", + "id": "5afd0646-72c9-4caf-ae5e-643270c38ac1" + }, + { + "routeId": "L96", + "platformId": "U504Z2", + "id": "738c5929-d80c-4bca-b759-4d217719ca8b" + }, + { + "routeId": "L1321", + "platformId": "U5052Z301", + "id": "47d1410b-c309-4be2-b787-783c7c216d53" + }, + { + "routeId": "L1321", + "platformId": "U5053Z301", + "id": "1561fca1-5731-416c-805c-74f9080f3e63" + }, + { + "routeId": "L1321", + "platformId": "U5054Z301", + "id": "23acb113-6b48-44ff-a325-8dab18f27e40" + }, + { + "routeId": "L1321", + "platformId": "U5055Z301", + "id": "b0ff2e9d-95f2-43fe-a33f-454796817af2" + }, + { + "routeId": "L1321", + "platformId": "U5056Z301", + "id": "88e0697d-c07e-4496-9a07-1bfe368be0c5" + }, + { + "routeId": "L1050", + "platformId": "U5058Z301", + "id": "08cb085a-0515-41c3-b97f-437374f82f2e" + }, + { + "routeId": "L174", + "platformId": "U505Z1", + "id": "30bd5a89-9d4b-42f2-820c-0b97f96aa617" + }, + { + "routeId": "L902", + "platformId": "U505Z1", + "id": "f121188e-b66a-4bc2-9ac5-56080af7aa3e" + }, + { + "routeId": "L174", + "platformId": "U505Z2", + "id": "8422b9fc-04b9-48a2-a194-455f8fa27317" + }, + { + "routeId": "L902", + "platformId": "U505Z2", + "id": "b967319e-1d86-4d7c-bbc9-6c4515a36f02" + }, + { + "routeId": "L1050", + "platformId": "U5064Z301", + "id": "c9e03f5d-98d9-4335-9368-41def08b92e2" + }, + { + "routeId": "L1050", + "platformId": "U5065Z301", + "id": "45c1082a-3135-4723-b6b7-9a1067ec2690" + }, + { + "routeId": "L1050", + "platformId": "U5066Z301", + "id": "c6d3d7f0-de44-4989-949a-64bf5b3650a3" + }, + { + "routeId": "L1050", + "platformId": "U5067Z301", + "id": "7a73d294-113e-4094-a9db-cc6b7c50d6f4" + }, + { + "routeId": "L1050", + "platformId": "U5068Z301", + "id": "2ab55a9e-f69d-444e-a42d-f85f43811b0d" + }, + { + "routeId": "L1050", + "platformId": "U5069Z301", + "id": "d30eba34-2aa3-474e-ae1d-996ac890eb13" + }, + { + "routeId": "L107", + "platformId": "U506Z1", + "id": "2037e0e1-b392-4490-b2f4-fb9e820d9384" + }, + { + "routeId": "L160", + "platformId": "U506Z1", + "id": "b196744a-fd40-47c8-b61a-1b0ca4c73797" + }, + { + "routeId": "L116", + "platformId": "U506Z1", + "id": "0209d865-b5bd-42f6-a886-a5e317f5eb81" + }, + { + "routeId": "L147", + "platformId": "U506Z1", + "id": "8507b033-95ee-4472-9f39-b615606708e4" + }, + { + "routeId": "L902", + "platformId": "U506Z1", + "id": "fdf87822-fb29-4786-b160-8901ec566f9d" + }, + { + "routeId": "L909", + "platformId": "U506Z1", + "id": "da3fbb24-4ac6-41e5-99c3-8784eaa56daa" + }, + { + "routeId": "L340", + "platformId": "U506Z1", + "id": "19c3a8b2-464f-4d30-8c8c-4dc60c2cbcec" + }, + { + "routeId": "L355", + "platformId": "U506Z1", + "id": "3bafa8e7-9ac8-4e30-a9c0-615a4b512a3c" + }, + { + "routeId": "L954", + "platformId": "U506Z1", + "id": "5c007899-cdf1-4d7c-8df3-5a48ef5f18de" + }, + { + "routeId": "L350", + "platformId": "U506Z1", + "id": "e1800c9e-c356-4ee4-ad3b-53b3b5524b56" + }, + { + "routeId": "L1802", + "platformId": "U506Z11", + "id": "1a1e76bb-c481-450a-a4bf-e70fe8ae92e7" + }, + { + "routeId": "L107", + "platformId": "U506Z2", + "id": "e68af834-8831-428a-ba27-32ca89c87479" + }, + { + "routeId": "L160", + "platformId": "U506Z2", + "id": "e45f7642-bbe2-42fe-96a9-db32c42f09aa" + }, + { + "routeId": "L116", + "platformId": "U506Z2", + "id": "9d61e27c-1300-4c36-9a8c-0682bfa391d7" + }, + { + "routeId": "L147", + "platformId": "U506Z2", + "id": "806eee5c-08b4-4450-bc3e-35e84de917f8" + }, + { + "routeId": "L902", + "platformId": "U506Z2", + "id": "eb387601-3607-4e0f-9782-30994eda4d9d" + }, + { + "routeId": "L909", + "platformId": "U506Z2", + "id": "54deadbc-fd3b-4d7c-9fc8-e70697b3ac7d" + }, + { + "routeId": "L340", + "platformId": "U506Z2", + "id": "f3bb0cca-2361-4c25-8c84-3592f1f7a28f" + }, + { + "routeId": "L355", + "platformId": "U506Z2", + "id": "165e3593-5372-4337-81a9-f3c02d92cc71" + }, + { + "routeId": "L954", + "platformId": "U506Z2", + "id": "f65b07cf-5998-4a0f-9afa-d270d86af28f" + }, + { + "routeId": "L350", + "platformId": "U506Z2", + "id": "754e4a2a-e9ef-4b8e-9b59-fa946127cb29" + }, + { + "routeId": "L1050", + "platformId": "U5070Z301", + "id": "d5aebe3d-3d1e-4d5d-96fc-e3dc889e7482" + }, + { + "routeId": "L1050", + "platformId": "U5071Z301", + "id": "cec0ed24-6812-4927-975e-d768e81335bb" + }, + { + "routeId": "L1050", + "platformId": "U5072Z301", + "id": "855d56b4-ee9f-4e7f-b582-8044de862bb6" + }, + { + "routeId": "L1014", + "platformId": "U5076Z301", + "id": "31c4e24c-f467-4616-9c04-eda2c96c04f2" + }, + { + "routeId": "L415", + "platformId": "U5077Z1", + "id": "1e666466-515d-4cc8-a424-f472aca19477" + }, + { + "routeId": "L415", + "platformId": "U5077Z2", + "id": "6b9d4be5-4bf8-40d7-a975-7e3ccd44b2e4" + }, + { + "routeId": "L1014", + "platformId": "U5077Z301", + "id": "bae5645f-d012-4ab0-87c9-39459571a7aa" + }, + { + "routeId": "L1014", + "platformId": "U5078Z301", + "id": "ff79e99c-3d21-44b7-a358-108563af241d" + }, + { + "routeId": "L415", + "platformId": "U5079Z1", + "id": "343b7533-3f53-41f0-9e92-42f98293aa78" + }, + { + "routeId": "L415", + "platformId": "U5079Z2", + "id": "46590b41-abe8-4e3d-8754-6049ec5e883e" + }, + { + "routeId": "L1014", + "platformId": "U5079Z301", + "id": "d6033200-7984-4e15-a183-079580451e47" + }, + { + "routeId": "L1", + "platformId": "U507Z1", + "id": "98d9f125-284c-4b27-a414-4d116b3f4054" + }, + { + "routeId": "L2", + "platformId": "U507Z1", + "id": "07961576-5080-4d9e-85d8-5d8446d4e5d7" + }, + { + "routeId": "L96", + "platformId": "U507Z1", + "id": "3c9691cd-2a86-494f-bb37-3056d2a438e5" + }, + { + "routeId": "L108", + "platformId": "U507Z1", + "id": "085c455d-0420-4fc0-84cf-598e5081d4e8" + }, + { + "routeId": "L168", + "platformId": "U507Z1", + "id": "51100f3e-98c0-4df2-9b9a-5823306fc72a" + }, + { + "routeId": "L191", + "platformId": "U507Z1", + "id": "8a6cabd5-074e-4f42-8424-8ac27b8753d8" + }, + { + "routeId": "L910", + "platformId": "U507Z1", + "id": "1be2f63c-1a01-4423-9fa1-5a3293fc6118" + }, + { + "routeId": "L164", + "platformId": "U507Z1", + "id": "d736be3e-8775-4832-9236-162e5f38f807" + }, + { + "routeId": "L991", + "platformId": "U507Z101", + "id": "ad56154d-b6f2-4636-97d6-5c195340894c" + }, + { + "routeId": "L991", + "platformId": "U507Z102", + "id": "35a6239f-0a99-4ec2-a7d0-0a5828cc979f" + }, + { + "routeId": "L1", + "platformId": "U507Z2", + "id": "dd8ecb69-8cdb-4f77-85eb-5e7e15e91380" + }, + { + "routeId": "L2", + "platformId": "U507Z2", + "id": "29c0040f-098b-4efa-96e2-a6a8b05cff3e" + }, + { + "routeId": "L96", + "platformId": "U507Z2", + "id": "ae85b2ca-a21d-4230-ba80-12623b9e9607" + }, + { + "routeId": "L108", + "platformId": "U507Z2", + "id": "1b25abfa-62cd-4df7-a1f0-3447084b7e0a" + }, + { + "routeId": "L168", + "platformId": "U507Z2", + "id": "2023b36a-8b65-465f-a0ee-23795fc724da" + }, + { + "routeId": "L191", + "platformId": "U507Z2", + "id": "9ad93be7-d604-4f72-ac54-2e16a2b88ea6" + }, + { + "routeId": "L910", + "platformId": "U507Z2", + "id": "80260351-cd58-41f1-8242-1b5aeda5bfd5" + }, + { + "routeId": "L164", + "platformId": "U507Z2", + "id": "a594246f-c112-4f4b-ba77-f69132f0104b" + }, + { + "routeId": "L423", + "platformId": "U5082Z1", + "id": "7847dcd8-8c40-4980-a26b-3786b6f81e9d" + }, + { + "routeId": "L1217", + "platformId": "U5084Z301", + "id": "9288b98f-bb7a-4100-8ce4-b9ed5f7bafbb" + }, + { + "routeId": "L1390", + "platformId": "U5084Z301", + "id": "cd07272b-62d9-4ea5-8548-5d54514868f4" + }, + { + "routeId": "L434", + "platformId": "U5085Z1", + "id": "6bcebb89-867e-425a-b18c-22a02eb27e12" + }, + { + "routeId": "L434", + "platformId": "U5085Z2", + "id": "6ac0e612-e8e8-45f6-b17f-379844a22376" + }, + { + "routeId": "L341", + "platformId": "U5088Z1", + "id": "f1623ff3-fcb8-4268-b614-dbaefb42a9a0" + }, + { + "routeId": "L341", + "platformId": "U5088Z2", + "id": "78b7e519-0119-43c8-9e79-e666a52e0cee" + }, + { + "routeId": "L6", + "platformId": "U508Z1", + "id": "dad2fd92-881d-45cc-be65-0f1264f6db6a" + }, + { + "routeId": "L7", + "platformId": "U508Z1", + "id": "5a65874f-50af-4e03-ba45-22b51e85d0b1" + }, + { + "routeId": "L19", + "platformId": "U508Z1", + "id": "9d4b67ac-7446-4364-843c-4d84811d2947" + }, + { + "routeId": "L95", + "platformId": "U508Z1", + "id": "cac1fb31-9056-4c5f-8d5f-c3c5af92fb0d" + }, + { + "routeId": "L124", + "platformId": "U508Z1", + "id": "fe45534e-a909-413c-9743-86d034bef05b" + }, + { + "routeId": "L139", + "platformId": "U508Z1", + "id": "ea1b6789-fcb3-4a5f-af5c-cd02a1c98960" + }, + { + "routeId": "L6", + "platformId": "U508Z2", + "id": "05c79c87-dcb8-45fc-bac5-83f09c50e3b6" + }, + { + "routeId": "L7", + "platformId": "U508Z2", + "id": "841e747d-22a8-4b92-988c-3ae7a5a24191" + }, + { + "routeId": "L19", + "platformId": "U508Z2", + "id": "84990849-1094-466a-b124-720abce86ae5" + }, + { + "routeId": "L95", + "platformId": "U508Z2", + "id": "5f118331-3ab1-4403-962e-03c3055c56c4" + }, + { + "routeId": "L124", + "platformId": "U508Z2", + "id": "653b5923-e6c2-46d6-a297-639b095f94fc" + }, + { + "routeId": "L139", + "platformId": "U508Z2", + "id": "f0d4baf2-541d-4de1-b2a2-3480cff642ff" + }, + { + "routeId": "L415", + "platformId": "U5093Z1", + "id": "f6de2793-62b6-4be9-8c31-dea876f1e429" + }, + { + "routeId": "L415", + "platformId": "U5093Z2", + "id": "d8739f86-794e-49ac-89df-c9e1b173ae81" + }, + { + "routeId": "L629", + "platformId": "U5095Z1", + "id": "67fa5e75-21a7-405e-a19d-3977a11989d7" + }, + { + "routeId": "L629", + "platformId": "U5095Z2", + "id": "93712fd4-9939-4363-a33d-fbe8780e0771" + }, + { + "routeId": "L637", + "platformId": "U5099Z1", + "id": "35a5dfa8-374c-480c-aebd-040765e79c05" + }, + { + "routeId": "L637", + "platformId": "U5099Z2", + "id": "7c4efd77-e426-4095-ade6-7362f9d6b5c2" + }, + { + "routeId": "L27", + "platformId": "U509Z3", + "id": "1683d7c0-5ffe-4742-958d-9b84cc34eecc" + }, + { + "routeId": "L27", + "platformId": "U509Z4", + "id": "2e3409d5-5765-44f4-837c-d9b03378e331" + }, + { + "routeId": "L956", + "platformId": "U50Z1", + "id": "f3e235a0-d39b-4c17-8a83-e588081980ea" + }, + { + "routeId": "L960", + "platformId": "U50Z1", + "id": "a884135a-dc86-4a45-9090-9a46fe16004d" + }, + { + "routeId": "L993", + "platformId": "U50Z101", + "id": "17c5f9a1-5b96-4780-935b-132a955fcc9f" + }, + { + "routeId": "L993", + "platformId": "U50Z102", + "id": "4c7dd4a3-d9ac-4d4d-887f-e9d025431c96" + }, + { + "routeId": "L124", + "platformId": "U50Z15", + "id": "27ad3a68-8b87-45fc-ada7-8c845c9a9c5e" + }, + { + "routeId": "L134", + "platformId": "U50Z15", + "id": "24c29ae3-0079-4d26-b9df-35c98202c1d2" + }, + { + "routeId": "L170", + "platformId": "U50Z15", + "id": "bc6fac11-4f62-4158-b90f-36bdef6ba728" + }, + { + "routeId": "L118", + "platformId": "U50Z2", + "id": "d3a856cc-7225-4a42-b964-a8ebb0a2f46d" + }, + { + "routeId": "L193", + "platformId": "U50Z2", + "id": "e59096ee-588c-4b1c-a3a7-7117772399a9" + }, + { + "routeId": "L904", + "platformId": "U50Z2", + "id": "6b4c246c-90ff-44e0-ac7f-a7d35a6b09d8" + }, + { + "routeId": "L118", + "platformId": "U50Z3", + "id": "7ceb2008-1580-4a7a-be2e-83b18ae53da9" + }, + { + "routeId": "L193", + "platformId": "U50Z3", + "id": "ef156353-5ad1-433b-95f6-8f8c4068bf83" + }, + { + "routeId": "L904", + "platformId": "U50Z3", + "id": "ec9d8424-d331-44ef-916e-2eddd664da19" + }, + { + "routeId": "L332", + "platformId": "U50Z4", + "id": "df7a3a8a-55bb-42f7-8f05-cd5a365241cd" + }, + { + "routeId": "L956", + "platformId": "U50Z4", + "id": "b54f8392-3ec8-4a0b-aa19-2f8904b96e47" + }, + { + "routeId": "L960", + "platformId": "U50Z4", + "id": "ba257cca-33f1-45cd-9c35-b41e59a4bbf0" + }, + { + "routeId": "L121", + "platformId": "U50Z5", + "id": "ba1081e9-8b8e-4097-b95c-90f0db2001f1" + }, + { + "routeId": "L124", + "platformId": "U50Z5", + "id": "524be791-17d3-4e81-b623-b0e315a2012d" + }, + { + "routeId": "L134", + "platformId": "U50Z5", + "id": "b5ff4927-b3fc-4e6f-9a29-fa684979563a" + }, + { + "routeId": "L170", + "platformId": "U50Z5", + "id": "a6ca5b5d-c3f8-4bbe-b4e7-dc7f8f960b55" + }, + { + "routeId": "L117", + "platformId": "U50Z5", + "id": "ca799687-9625-4d75-bb85-eed10628516c" + }, + { + "routeId": "L203", + "platformId": "U50Z5", + "id": "e3075834-d71b-4bfb-ac1e-434e505a7157" + }, + { + "routeId": "L121", + "platformId": "U50Z6", + "id": "5bcbc78d-28a5-4b6b-ba02-256826f14f42" + }, + { + "routeId": "L124", + "platformId": "U50Z6", + "id": "61bb21c2-bb8e-48c8-b6a0-077b6e182275" + }, + { + "routeId": "L134", + "platformId": "U50Z6", + "id": "1536386a-71ae-40b3-9fe7-6e0f7dfe7acf" + }, + { + "routeId": "L170", + "platformId": "U50Z6", + "id": "a11e5487-00d3-4ec3-8297-ec97baec9d22" + }, + { + "routeId": "L117", + "platformId": "U50Z6", + "id": "d9178b09-9aca-451a-b7d3-98b7a7d02bef" + }, + { + "routeId": "L203", + "platformId": "U50Z6", + "id": "e85b4ee9-f6e8-4422-b1de-5c87353b0cbd" + }, + { + "routeId": "L118", + "platformId": "U50Z7", + "id": "8bc5d48d-2784-49d2-84e5-c4bb182f7dde" + }, + { + "routeId": "L124", + "platformId": "U50Z7", + "id": "a7380703-77c1-45e7-af34-391bdc089352" + }, + { + "routeId": "L170", + "platformId": "U50Z7", + "id": "2fd30b04-dc50-429e-bbdd-efe5b6e06967" + }, + { + "routeId": "L193", + "platformId": "U50Z7", + "id": "b15de929-63f3-4ab2-bce5-327f67e41a32" + }, + { + "routeId": "L905", + "platformId": "U50Z7", + "id": "7f0a1ce8-7718-45eb-a096-0a87decdcdd0" + }, + { + "routeId": "L910", + "platformId": "U50Z7", + "id": "c3835929-cb82-4fb9-bf1b-2eee4b0966ec" + }, + { + "routeId": "L956", + "platformId": "U50Z7", + "id": "5d5c03de-9fe7-4c7b-8cbb-b9935cbdfd6b" + }, + { + "routeId": "L960", + "platformId": "U50Z7", + "id": "f4f507a4-9d55-44e6-a950-bdb09790faf1" + }, + { + "routeId": "L134", + "platformId": "U50Z8", + "id": "b9c606dc-b60b-46bc-9c61-7e4a82e65df8" + }, + { + "routeId": "L905", + "platformId": "U50Z8", + "id": "0450b6e7-49e0-4214-b905-e1344c50aef7" + }, + { + "routeId": "L910", + "platformId": "U50Z8", + "id": "861e09eb-4861-4ab6-ab11-f9c6d69e18db" + }, + { + "routeId": "L332", + "platformId": "U50Z84", + "id": "2ffec3ea-1157-41bf-85a7-84dece4cd18b" + }, + { + "routeId": "L337", + "platformId": "U50Z84", + "id": "37b62452-0945-4976-895e-62a37b1b1569" + }, + { + "routeId": "L335", + "platformId": "U50Z84", + "id": "ec59e9b3-b9e5-495c-8116-5cdac6d0bf74" + }, + { + "routeId": "L339", + "platformId": "U50Z84", + "id": "59ee6ae1-6fb8-412b-b296-f007b6380e1b" + }, + { + "routeId": "L337", + "platformId": "U50Z9", + "id": "8b1ff9a1-3ec1-46ae-8ab2-c9800627c7e6" + }, + { + "routeId": "L335", + "platformId": "U50Z9", + "id": "3316b4d4-2527-4cef-9c0b-a046c07b8bff" + }, + { + "routeId": "L339", + "platformId": "U50Z9", + "id": "39adc6ca-9c13-4a71-8c56-d454b9b62109" + }, + { + "routeId": "L151", + "platformId": "U510Z1", + "id": "738047fb-cfe6-46c5-9873-e242e211dcde" + }, + { + "routeId": "L152", + "platformId": "U510Z1", + "id": "5ffb5790-03ac-4354-82c8-d98c306b33b6" + }, + { + "routeId": "L375", + "platformId": "U510Z1", + "id": "4a19b225-f8f4-47b1-9167-191270d55358" + }, + { + "routeId": "L992", + "platformId": "U510Z101", + "id": "def8c334-f06f-4ca8-86e3-939403cd2db8" + }, + { + "routeId": "L992", + "platformId": "U510Z102", + "id": "66506559-22fe-4e2d-acf1-46ef0456be43" + }, + { + "routeId": "L151", + "platformId": "U510Z2", + "id": "f3fc85f3-191c-44c1-b2ac-0fd46bf4b5d6" + }, + { + "routeId": "L152", + "platformId": "U510Z2", + "id": "d08fd55b-8bf0-4c48-ada7-ff1cd4b7e605" + }, + { + "routeId": "L375", + "platformId": "U510Z3", + "id": "c5359362-14b0-4c4b-919c-3497a1273e09" + }, + { + "routeId": "L177", + "platformId": "U511Z1", + "id": "8119d4e6-e341-45ce-a7bd-d96f96228f14" + }, + { + "routeId": "L200", + "platformId": "U511Z1", + "id": "26f7867d-cee9-4973-b9d3-75adee325dc2" + }, + { + "routeId": "L202", + "platformId": "U511Z1", + "id": "4b1d16bf-bec5-47b1-8ada-f115ab328b32" + }, + { + "routeId": "L235", + "platformId": "U511Z1", + "id": "0c486059-35c8-4bf2-ac84-e1bd61374935" + }, + { + "routeId": "L905", + "platformId": "U511Z1", + "id": "a8d2353c-d42a-48c1-9dff-44c46a06fa00" + }, + { + "routeId": "L177", + "platformId": "U511Z2", + "id": "4722a4a4-1c69-4776-8619-79903752cb25" + }, + { + "routeId": "L200", + "platformId": "U511Z2", + "id": "f7e61f8b-d900-4540-ab1d-aadc46050620" + }, + { + "routeId": "L202", + "platformId": "U511Z2", + "id": "b5cfbdb8-6506-4606-a72d-0697d7f180fa" + }, + { + "routeId": "L235", + "platformId": "U511Z2", + "id": "29da1327-d5fd-4e91-9959-115a51542761" + }, + { + "routeId": "L905", + "platformId": "U511Z2", + "id": "aba4c9c5-a59e-4b1b-9b1c-4f1830a6c159" + }, + { + "routeId": "L5", + "platformId": "U512Z1", + "id": "90456f7e-4ba4-4807-aeae-2690359f059c" + }, + { + "routeId": "L9", + "platformId": "U512Z1", + "id": "0c260561-f1d4-4f32-9ded-35d94980479f" + }, + { + "routeId": "L11", + "platformId": "U512Z1", + "id": "57028f35-3429-4fe6-8cb1-0a79e97df3e6" + }, + { + "routeId": "L31", + "platformId": "U512Z1", + "id": "86da0fb5-1066-4eb9-8fa0-791f602828fc" + }, + { + "routeId": "L98", + "platformId": "U512Z1", + "id": "1453cbb9-b739-45bd-803a-838766a73e4c" + }, + { + "routeId": "L5", + "platformId": "U512Z2", + "id": "8490ecd6-f6ab-4c3e-b888-375212ad2deb" + }, + { + "routeId": "L9", + "platformId": "U512Z2", + "id": "364765ba-0c86-4a4c-94b5-876dfe5dc99d" + }, + { + "routeId": "L11", + "platformId": "U512Z2", + "id": "0ec8b58d-d7ce-45f5-ba62-e6012cb93a35" + }, + { + "routeId": "L31", + "platformId": "U512Z2", + "id": "e646bff9-d32a-448c-8df0-56793b4275e4" + }, + { + "routeId": "L98", + "platformId": "U512Z2", + "id": "7a09c96c-8360-415d-827e-3ae4601b7919" + }, + { + "routeId": "L207", + "platformId": "U512Z3", + "id": "6aec2b1b-fd49-4094-8fca-4d8b4e0832d2" + }, + { + "routeId": "L136", + "platformId": "U512Z4", + "id": "46a1795c-c46e-403e-a0d4-9e33082c6ffe" + }, + { + "routeId": "L207", + "platformId": "U512Z4", + "id": "de11a8e9-89da-4d30-b4cf-18501c74a7f7" + }, + { + "routeId": "L913", + "platformId": "U512Z4", + "id": "db4e23a5-1625-40e7-bc73-8a97845027a3" + }, + { + "routeId": "L133", + "platformId": "U512Z5", + "id": "d3d522f4-a2d0-4e8c-849e-691b99effc5c" + }, + { + "routeId": "L136", + "platformId": "U512Z5", + "id": "24048a6e-7296-4d2e-b3cf-ae542d8c57bd" + }, + { + "routeId": "L207", + "platformId": "U512Z5", + "id": "02a1b7d3-9761-419d-8695-a91a235d3a45" + }, + { + "routeId": "L908", + "platformId": "U512Z5", + "id": "824af16a-52d4-4dd3-88ac-ff13b8a7ea0f" + }, + { + "routeId": "L909", + "platformId": "U512Z5", + "id": "1c4f10ab-094a-48cb-8a80-272edaf452b7" + }, + { + "routeId": "L913", + "platformId": "U512Z5", + "id": "c4607453-40c9-48f4-a74a-28fa56f01017" + }, + { + "routeId": "L133", + "platformId": "U512Z8", + "id": "2dc3c57a-8f3a-4b69-af78-b2906a0083fd" + }, + { + "routeId": "L207", + "platformId": "U512Z8", + "id": "51fb1fce-313a-47e0-9b2c-4b0f3dc3bd3f" + }, + { + "routeId": "L908", + "platformId": "U512Z8", + "id": "fbcb3e5d-5c80-4df6-9300-4c21389c135f" + }, + { + "routeId": "L909", + "platformId": "U512Z8", + "id": "3615580e-532c-4af4-86f2-977034907173" + }, + { + "routeId": "L107", + "platformId": "U513Z1", + "id": "cb7f3a09-1e5e-454d-a60f-2b0e10ea8aef" + }, + { + "routeId": "L909", + "platformId": "U513Z1", + "id": "d26646ff-43d2-4ca0-96fd-3699f4b19d7b" + }, + { + "routeId": "L107", + "platformId": "U513Z2", + "id": "3c63c9ba-057d-423a-90f3-48dfe9f10939" + }, + { + "routeId": "L909", + "platformId": "U513Z2", + "id": "a065d00f-3bd5-402c-8ccf-d4ea537cb099" + }, + { + "routeId": "L3", + "platformId": "U514Z1", + "id": "9cc32609-ddd0-4192-b64c-fa6122c11422" + }, + { + "routeId": "L10", + "platformId": "U514Z1", + "id": "43526ec4-cd35-4b94-a949-54bd3bb68c27" + }, + { + "routeId": "L95", + "platformId": "U514Z1", + "id": "cf860030-754d-45ee-9e8a-e6ebf46c099e" + }, + { + "routeId": "L905", + "platformId": "U514Z1", + "id": "6d9f8515-51b3-4886-a7fa-c76884a8e718" + }, + { + "routeId": "L3", + "platformId": "U514Z2", + "id": "9a40bf65-77be-45cd-baea-86763a7e6d20" + }, + { + "routeId": "L10", + "platformId": "U514Z2", + "id": "447bdee8-180a-41af-a616-2a9133a3cfe7" + }, + { + "routeId": "L95", + "platformId": "U514Z2", + "id": "28cdbcfb-0283-456b-8787-758e03fe58f0" + }, + { + "routeId": "L905", + "platformId": "U514Z2", + "id": "1e396dd7-ba12-4885-9402-5d4276f6559c" + }, + { + "routeId": "L10", + "platformId": "U515Z1", + "id": "275d096d-b2ca-48c7-b5fc-57118aed437c" + }, + { + "routeId": "L11", + "platformId": "U515Z1", + "id": "e583fc72-3119-47fb-b10d-b86660a6f143" + }, + { + "routeId": "L13", + "platformId": "U515Z1", + "id": "f83c5bf6-e0dc-41e0-a7d4-49909b5ff5b4" + }, + { + "routeId": "L15", + "platformId": "U515Z1", + "id": "987b37f5-abba-4bff-93d1-3f51dc0b59e0" + }, + { + "routeId": "L16", + "platformId": "U515Z1", + "id": "5f36ab52-537a-483b-b579-f8f4fe52e822" + }, + { + "routeId": "L91", + "platformId": "U515Z1", + "id": "26d93482-d979-4b20-b70c-0b3ea1c653ee" + }, + { + "routeId": "L98", + "platformId": "U515Z1", + "id": "de56f52a-9172-4f00-a0c5-d86743741b36" + }, + { + "routeId": "L13", + "platformId": "U515Z14", + "id": "5b17ab2f-9236-47da-a618-2c1f818d15b9" + }, + { + "routeId": "L10", + "platformId": "U515Z2", + "id": "c054bd7f-5cc3-40ef-8d3b-294db1fcd2f2" + }, + { + "routeId": "L11", + "platformId": "U515Z2", + "id": "9c894632-0389-4805-9102-254818876567" + }, + { + "routeId": "L16", + "platformId": "U515Z2", + "id": "68c7b61d-1e4d-41ff-83f0-a26d1a9d92ff" + }, + { + "routeId": "L91", + "platformId": "U515Z2", + "id": "6dfefc08-d150-49e2-af99-d2aca2eee509" + }, + { + "routeId": "L98", + "platformId": "U515Z2", + "id": "1d0169b7-91a5-4e71-b198-c1445dba671c" + }, + { + "routeId": "L15", + "platformId": "U515Z4", + "id": "383e9b9f-e96b-4e39-b59c-44832d49741e" + }, + { + "routeId": "L5", + "platformId": "U516Z1", + "id": "19600a19-6c3d-4175-ab64-0ac7fbd623cc" + }, + { + "routeId": "L9", + "platformId": "U516Z1", + "id": "8863dc5d-9a37-4fdb-8897-033003a469e1" + }, + { + "routeId": "L15", + "platformId": "U516Z1", + "id": "e9a6947a-27b5-4681-80b3-25dff4a9d228" + }, + { + "routeId": "L26", + "platformId": "U516Z1", + "id": "6ead64fa-3bc1-422c-a204-9357b96b1c8b" + }, + { + "routeId": "L95", + "platformId": "U516Z1", + "id": "5ca068c5-6dc8-4573-8125-9a6ba4248b1f" + }, + { + "routeId": "L98", + "platformId": "U516Z1", + "id": "360e6c93-51f6-499c-9a71-8e62a2a4129f" + }, + { + "routeId": "L5", + "platformId": "U516Z2", + "id": "5cd1a4c9-178a-4beb-a330-ccf0b710a3d7" + }, + { + "routeId": "L9", + "platformId": "U516Z2", + "id": "21a6d3fe-ae2e-4bbe-a9d3-fdfe19237ca2" + }, + { + "routeId": "L15", + "platformId": "U516Z2", + "id": "b4e061ef-3855-4f41-9864-067517bce75f" + }, + { + "routeId": "L26", + "platformId": "U516Z2", + "id": "e739ca5d-5c3a-4c60-8807-b66d46fa963b" + }, + { + "routeId": "L95", + "platformId": "U516Z2", + "id": "4394381d-5028-45ed-aa84-eaaa0f234a6f" + }, + { + "routeId": "L98", + "platformId": "U516Z2", + "id": "9b8ca5bf-29cf-4364-89a6-20237b0895c7" + }, + { + "routeId": "L136", + "platformId": "U516Z3", + "id": "4af63ea7-9d10-4df7-bbb7-65a65d8e5383" + }, + { + "routeId": "L175", + "platformId": "U516Z3", + "id": "c25ad650-aca0-4f87-a6af-f19651bf277a" + }, + { + "routeId": "L913", + "platformId": "U516Z3", + "id": "1a7218f5-3513-4961-943f-7bf82157e805" + }, + { + "routeId": "L136", + "platformId": "U516Z4", + "id": "7cf9d1a0-4323-4e5d-8f07-61cd533f052b" + }, + { + "routeId": "L175", + "platformId": "U516Z4", + "id": "226666ab-dbc5-4cd3-9946-b9dc80545a59" + }, + { + "routeId": "L913", + "platformId": "U516Z4", + "id": "840bcafd-c470-4021-b2fd-d0bf021f671d" + }, + { + "routeId": "L120", + "platformId": "U517Z1", + "id": "72b07a71-421e-4cf8-9cc8-ac65cb5e8f14" + }, + { + "routeId": "L130", + "platformId": "U517Z1", + "id": "ba3e5653-5ba7-479d-ab8f-f39b02964052" + }, + { + "routeId": "L951", + "platformId": "U517Z1", + "id": "153e9ebd-4460-4127-b4c1-37fc0ee7712e" + }, + { + "routeId": "L10", + "platformId": "U518Z1", + "id": "72aed05d-e7c8-4970-a61d-cb460c313228" + }, + { + "routeId": "L16", + "platformId": "U518Z1", + "id": "c1eb35e1-d574-42a7-8a00-cb07e7dcd7da" + }, + { + "routeId": "L91", + "platformId": "U518Z1", + "id": "55096b83-a5b8-4e57-a5a8-ac7330a6f1d2" + }, + { + "routeId": "L10", + "platformId": "U518Z2", + "id": "522bb9cd-7666-4481-81c9-2cc45ea3a580" + }, + { + "routeId": "L16", + "platformId": "U518Z2", + "id": "0cd5e8eb-efb1-46e3-a634-5a2444c2e0bf" + }, + { + "routeId": "L91", + "platformId": "U518Z2", + "id": "89ce95e4-bdd2-44d3-b290-f1d7df0d69f9" + }, + { + "routeId": "L136", + "platformId": "U518Z3", + "id": "fcf64ad7-2ed3-49de-9697-eb25bc279889" + }, + { + "routeId": "L175", + "platformId": "U518Z3", + "id": "29e17d7f-b4aa-4b9d-ad8c-57083de0e22b" + }, + { + "routeId": "L913", + "platformId": "U518Z3", + "id": "877e02d0-b017-46d8-9c0c-243c30936e42" + }, + { + "routeId": "L136", + "platformId": "U518Z4", + "id": "f5cbdb9c-0a39-4d3f-a6c4-8840b88608bb" + }, + { + "routeId": "L175", + "platformId": "U518Z4", + "id": "6db3137e-f619-4aae-b5ef-9e17ffdc5538" + }, + { + "routeId": "L913", + "platformId": "U518Z4", + "id": "d1ab47c7-93e5-408a-94fd-2a7d9b7e93e4" + }, + { + "routeId": "L1", + "platformId": "U519Z1", + "id": "13e560ca-1989-4573-bc09-b9885f32936f" + }, + { + "routeId": "L2", + "platformId": "U519Z1", + "id": "03db9d17-c03f-434e-b93c-26c76a758ec9" + }, + { + "routeId": "L96", + "platformId": "U519Z1", + "id": "37b36c01-b043-4200-a295-f1e6540d3fda" + }, + { + "routeId": "L1", + "platformId": "U519Z2", + "id": "f62ceb1a-b116-4384-994b-1b06bf781d5d" + }, + { + "routeId": "L2", + "platformId": "U519Z2", + "id": "bcbf837f-b9fe-47b4-bae0-296166ebbbf4" + }, + { + "routeId": "L96", + "platformId": "U519Z2", + "id": "e09a1fc3-daa8-4bf9-910d-fd066f9e3898" + }, + { + "routeId": "L201", + "platformId": "U51Z1", + "id": "6423d6cf-527a-4a95-bcbd-03a13f0bca64" + }, + { + "routeId": "L953", + "platformId": "U51Z1", + "id": "762926be-124f-4701-b486-25fa11e5e312" + }, + { + "routeId": "L201", + "platformId": "U51Z2", + "id": "9c413921-0f14-43e3-93a1-5fbf74f0c986" + }, + { + "routeId": "L953", + "platformId": "U51Z2", + "id": "9e763db6-2017-4639-894c-a777d01f7700" + }, + { + "routeId": "L825", + "platformId": "U5209Z51", + "id": "281317e2-8747-4499-bd7a-42d23204e116" + }, + { + "routeId": "L894", + "platformId": "U5209Z51", + "id": "06a2da69-2591-4af9-9687-ee7b588701b6" + }, + { + "routeId": "L825", + "platformId": "U5209Z52", + "id": "5035c120-09a8-4032-bcbf-f85ca3386727" + }, + { + "routeId": "L894", + "platformId": "U5209Z52", + "id": "4af18282-b1cb-4428-bed2-672dd5d7bdce" + }, + { + "routeId": "L314", + "platformId": "U520Z1", + "id": "a35d32db-adf3-4cee-a2e8-8bd69e79553f" + }, + { + "routeId": "L360", + "platformId": "U520Z1", + "id": "a03b6bb9-5b8d-41a7-b453-c736efbbcc5d" + }, + { + "routeId": "L361", + "platformId": "U520Z1", + "id": "21026b5c-1355-4e65-b01d-89d705f83445" + }, + { + "routeId": "L390", + "platformId": "U520Z1", + "id": "07a03556-c00b-48ed-b2d9-f2b467b1ea13" + }, + { + "routeId": "L314", + "platformId": "U520Z2", + "id": "d6176c35-c614-41bb-bcb4-f1b9be0dcf84" + }, + { + "routeId": "L360", + "platformId": "U520Z2", + "id": "1c5581d5-cbac-4d13-a93a-9e37aa1ee980" + }, + { + "routeId": "L361", + "platformId": "U520Z2", + "id": "2662e92d-b63d-4773-a96a-44e666c3141a" + }, + { + "routeId": "L390", + "platformId": "U520Z2", + "id": "5c9bb699-3c22-4b5b-9ce3-a880a31eb017" + }, + { + "routeId": "L825", + "platformId": "U5210Z52", + "id": "55342a06-a4db-48ee-940d-5a3dd84ae302" + }, + { + "routeId": "L894", + "platformId": "U5210Z52", + "id": "808d7b4b-500c-4d6f-8e80-32b65b6f168b" + }, + { + "routeId": "L1", + "platformId": "U521Z1", + "id": "3de95497-9bb9-44b8-9201-adde29d968ea" + }, + { + "routeId": "L17", + "platformId": "U521Z1", + "id": "7cfd2a2e-d457-4350-93a1-a5c6e389eacf" + }, + { + "routeId": "L25", + "platformId": "U521Z1", + "id": "bf027614-a01a-42a2-9a86-c1dc439ae3ce" + }, + { + "routeId": "L93", + "platformId": "U521Z1", + "id": "9c418c38-fe6c-478d-8166-e385bc65e352" + }, + { + "routeId": "L1", + "platformId": "U521Z2", + "id": "a0a6adba-750b-437c-8c83-5da41ffedb27" + }, + { + "routeId": "L17", + "platformId": "U521Z2", + "id": "7eb9c919-b3c5-4f5c-af10-ce1cf970b895" + }, + { + "routeId": "L25", + "platformId": "U521Z2", + "id": "e425e0e1-3803-48ea-bb64-9b2bcdc1debf" + }, + { + "routeId": "L93", + "platformId": "U521Z2", + "id": "d7d84dcc-9d80-4eb2-8c81-8667b6c657b2" + }, + { + "routeId": "L894", + "platformId": "U521Z2", + "id": "5f20164d-6916-48c4-8d93-6df6f2be0403" + }, + { + "routeId": "L7", + "platformId": "U522Z1", + "id": "3efe3d49-810b-4b5c-aa63-72d25f84d91f" + }, + { + "routeId": "L14", + "platformId": "U522Z1", + "id": "74b38bb5-b230-4925-ab70-c03359f1b98f" + }, + { + "routeId": "L18", + "platformId": "U522Z1", + "id": "b5170aa4-e6f8-4d0a-a637-dae5c45cad41" + }, + { + "routeId": "L93", + "platformId": "U522Z1", + "id": "ce8d8858-9590-4927-ba87-c69a250cbda0" + }, + { + "routeId": "L95", + "platformId": "U522Z1", + "id": "3964a963-5bc9-45a5-894f-deae13df4c3c" + }, + { + "routeId": "L7", + "platformId": "U522Z2", + "id": "0f443523-7d09-4cda-8daf-04ee08b02384" + }, + { + "routeId": "L14", + "platformId": "U522Z2", + "id": "af42b78c-383d-4843-840f-21114036c248" + }, + { + "routeId": "L18", + "platformId": "U522Z2", + "id": "26135650-6002-490a-ad1f-81bec32d4103" + }, + { + "routeId": "L93", + "platformId": "U522Z2", + "id": "bc39068e-207d-47ee-ba4e-fcf4057ad233" + }, + { + "routeId": "L95", + "platformId": "U522Z2", + "id": "3e9ee853-766d-4608-ad29-fcffda19686e" + }, + { + "routeId": "L423", + "platformId": "U5242Z1", + "id": "03c9c9d8-ff30-49e7-9cb3-e458f59fb3ea" + }, + { + "routeId": "L244", + "platformId": "U524Z1", + "id": "b1274c95-3a28-4bba-b1a2-138507399496" + }, + { + "routeId": "L248", + "platformId": "U524Z1", + "id": "e24923b7-0f41-4750-a69e-212bce507cd2" + }, + { + "routeId": "L313", + "platformId": "U524Z1", + "id": "d0ef2717-dcfa-4357-8c75-c031084306da" + }, + { + "routeId": "L951", + "platformId": "U524Z1", + "id": "6390071d-828d-4761-ac6f-0a7753a1b2d0" + }, + { + "routeId": "L244", + "platformId": "U524Z2", + "id": "58211bb7-9217-4d55-8af9-83e3dfcf94eb" + }, + { + "routeId": "L248", + "platformId": "U524Z2", + "id": "19efc024-fec1-4a4f-b848-db5049625773" + }, + { + "routeId": "L313", + "platformId": "U524Z2", + "id": "e2f5bf94-e441-47b4-8b06-222528b2113e" + }, + { + "routeId": "L951", + "platformId": "U524Z2", + "id": "586262e2-2647-4310-9ade-41088bf0d957" + }, + { + "routeId": "L906", + "platformId": "U525Z1", + "id": "eee76c57-450f-4d11-8cd1-c1dd569ea2c2" + }, + { + "routeId": "L226", + "platformId": "U525Z1", + "id": "e2cbd993-3e54-4fee-ba77-455b749d715d" + }, + { + "routeId": "L906", + "platformId": "U525Z2", + "id": "40de451c-6b02-44a9-a95d-f20c3f34bf2d" + }, + { + "routeId": "L226", + "platformId": "U525Z2", + "id": "35f920c6-80f5-48ef-a3b9-908370361152" + }, + { + "routeId": "L185", + "platformId": "U526Z1", + "id": "c0516754-ce1e-4425-b510-430431289be7" + }, + { + "routeId": "L209", + "platformId": "U526Z1", + "id": "448eb9e2-7829-4c24-8840-2ecbcd24ca87" + }, + { + "routeId": "L378", + "platformId": "U526Z1", + "id": "ad21beb2-1e98-452e-aad6-8d7a870ead04" + }, + { + "routeId": "L302", + "platformId": "U526Z1", + "id": "741a1916-fa1a-4433-acfd-6c0038608822" + }, + { + "routeId": "L375", + "platformId": "U526Z1", + "id": "e800a6c4-3249-499b-a20e-90d45f0810c5" + }, + { + "routeId": "L376", + "platformId": "U526Z1", + "id": "73cfc6b1-5f13-42e1-96e9-383bc828059d" + }, + { + "routeId": "L185", + "platformId": "U526Z2", + "id": "8f975676-a07c-473a-bd33-575f4583c4eb" + }, + { + "routeId": "L209", + "platformId": "U526Z2", + "id": "bb38a31d-3361-4904-827a-21a1baceffa0" + }, + { + "routeId": "L378", + "platformId": "U526Z2", + "id": "5f27a8fd-f04e-410e-a775-4d21afb651cc" + }, + { + "routeId": "L302", + "platformId": "U526Z2", + "id": "4e9c3ad0-a772-4c39-9ea3-1f11e99814d5" + }, + { + "routeId": "L375", + "platformId": "U526Z2", + "id": "f5da1f6a-485f-486b-be3e-db761790cfa0" + }, + { + "routeId": "L376", + "platformId": "U526Z2", + "id": "7535d10d-8783-4106-a5fb-26c3f7aff179" + }, + { + "routeId": "L904", + "platformId": "U527Z1", + "id": "ec6ec151-0016-4ca2-90a0-3026326f342b" + }, + { + "routeId": "L905", + "platformId": "U527Z1", + "id": "41e7c57e-6d85-4241-9889-477613084b41" + }, + { + "routeId": "L910", + "platformId": "U527Z1", + "id": "2a63fb32-4848-4b79-a88f-d3ac9fb6a2d0" + }, + { + "routeId": "L993", + "platformId": "U527Z101", + "id": "df7e521e-1952-4c4b-841d-90eaf1d2953e" + }, + { + "routeId": "L993", + "platformId": "U527Z102", + "id": "536e9cd4-576b-454d-8e3f-ecde502d1b10" + }, + { + "routeId": "L904", + "platformId": "U527Z2", + "id": "81d8fef0-18a8-4280-809e-112c7dba8abe" + }, + { + "routeId": "L905", + "platformId": "U527Z2", + "id": "005b6933-6bcd-4ec2-877f-1d78b2d84201" + }, + { + "routeId": "L910", + "platformId": "U527Z2", + "id": "69e9410e-d7c0-4785-afa0-4c933cd6e0ec" + }, + { + "routeId": "L3", + "platformId": "U529Z1", + "id": "308eae61-7214-4b45-aa1a-5c24b65de001" + }, + { + "routeId": "L7", + "platformId": "U529Z1", + "id": "bb199606-d5cd-48f6-805b-2ca2d048ff10" + }, + { + "routeId": "L8", + "platformId": "U529Z1", + "id": "ddc9a46e-469b-4bb6-81f7-1729788f55c2" + }, + { + "routeId": "L10", + "platformId": "U529Z1", + "id": "ddc738f1-cfe6-419f-b9ab-9c6e65009592" + }, + { + "routeId": "L12", + "platformId": "U529Z1", + "id": "bddf4505-57fd-4d54-a1eb-b0e0f7d0c210" + }, + { + "routeId": "L31", + "platformId": "U529Z1", + "id": "e9c38ae0-5152-45b5-8053-77c51bea3b42" + }, + { + "routeId": "L92", + "platformId": "U529Z1", + "id": "b750c282-46af-444c-ba1e-e1e2e65b2719" + }, + { + "routeId": "L94", + "platformId": "U529Z1", + "id": "72fe5b4d-41b5-4378-bac4-4b53de54b523" + }, + { + "routeId": "L95", + "platformId": "U529Z1", + "id": "c0126c8b-de2c-41cc-ac67-05355cebbbf0" + }, + { + "routeId": "L109", + "platformId": "U529Z10", + "id": "bb7c7efd-5fbc-42f2-97ed-61033c896e89" + }, + { + "routeId": "L992", + "platformId": "U529Z101", + "id": "e5a8d4e9-dfe7-4679-9f2f-efb737ed546b" + }, + { + "routeId": "L992", + "platformId": "U529Z102", + "id": "4b4b4d53-28a1-4c91-b124-cd8a54c76c52" + }, + { + "routeId": "L7", + "platformId": "U529Z2", + "id": "d439508a-8636-4fcd-90d0-f0be85b3b130" + }, + { + "routeId": "L8", + "platformId": "U529Z2", + "id": "46e8336b-f75d-4322-abc4-fd4ee6687399" + }, + { + "routeId": "L12", + "platformId": "U529Z2", + "id": "8b090862-51ce-498d-ac8d-44d805e2b736" + }, + { + "routeId": "L31", + "platformId": "U529Z2", + "id": "33d520c3-dfd7-4f53-8f35-cadb63ee1c30" + }, + { + "routeId": "L92", + "platformId": "U529Z2", + "id": "53e8a73e-c60d-4c23-8608-70a0ee59d55f" + }, + { + "routeId": "L94", + "platformId": "U529Z2", + "id": "fc0343e0-f6bb-4d60-8f64-cc948b91ac7f" + }, + { + "routeId": "L825", + "platformId": "U529Z2", + "id": "866814a5-276c-4599-9755-f5728002045c" + }, + { + "routeId": "L894", + "platformId": "U529Z2", + "id": "d8002401-f7ac-4c5c-9bb3-0b45a07dbc40" + }, + { + "routeId": "L3", + "platformId": "U529Z4", + "id": "396fb392-f39b-4930-8aaf-f7ebe1c13765" + }, + { + "routeId": "L10", + "platformId": "U529Z4", + "id": "d96b6a15-fe24-4ea8-9ade-7fa65f409040" + }, + { + "routeId": "L95", + "platformId": "U529Z4", + "id": "c089acfd-f489-4a28-8904-010c8f6bccf1" + }, + { + "routeId": "L825", + "platformId": "U529Z4", + "id": "4527a16d-916c-4d12-8f38-1cd849865797" + }, + { + "routeId": "L894", + "platformId": "U529Z4", + "id": "c560312a-dec7-49f1-abe1-61bd5b0b7418" + }, + { + "routeId": "L58", + "platformId": "U529Z4", + "id": "22244e24-f0e3-43cd-81d8-f21b883e0284" + }, + { + "routeId": "L7", + "platformId": "U529Z5", + "id": "01d8dbce-ceb5-495f-902a-d889b8509a08" + }, + { + "routeId": "L8", + "platformId": "U529Z5", + "id": "0695d81c-4cc4-49b2-80c4-5d16a54d4683" + }, + { + "routeId": "L12", + "platformId": "U529Z5", + "id": "ec0d381a-a7fb-4cac-be30-a42497c4a90c" + }, + { + "routeId": "L31", + "platformId": "U529Z5", + "id": "45e35048-9095-4a64-b29c-d4115fee913f" + }, + { + "routeId": "L92", + "platformId": "U529Z5", + "id": "b243828b-0620-4e94-a091-c6546e794187" + }, + { + "routeId": "L94", + "platformId": "U529Z5", + "id": "0d1ff05f-14bd-4030-95e0-281520f56f5f" + }, + { + "routeId": "L825", + "platformId": "U529Z5", + "id": "df4fdf0a-2793-46dd-bf4e-cfdd35cfb969" + }, + { + "routeId": "L894", + "platformId": "U529Z5", + "id": "a20ca30f-cf89-4a74-8dec-00e34ab48e3d" + }, + { + "routeId": "L58", + "platformId": "U529Z5", + "id": "6f8d91fa-7809-4271-ae87-3e4c83bd9dd9" + }, + { + "routeId": "L109", + "platformId": "U529Z8", + "id": "86eec936-bca0-4a35-9808-7f3e9879299b" + }, + { + "routeId": "L916", + "platformId": "U529Z8", + "id": "9d4c708e-c93b-481f-9669-79636d99f947" + }, + { + "routeId": "L903", + "platformId": "U529Z88", + "id": "a1a9000c-1329-451e-8603-03f567c561b8" + }, + { + "routeId": "L916", + "platformId": "U529Z9", + "id": "7266b6ef-847e-44e0-81f5-f6314eeaa30a" + }, + { + "routeId": "L903", + "platformId": "U529Z9", + "id": "f2b729ff-b438-4987-a841-9cdabf6b94c0" + }, + { + "routeId": "L993", + "platformId": "U52Z101", + "id": "fb6610cd-cd4b-4b5f-b37d-c29a87ab2a65" + }, + { + "routeId": "L993", + "platformId": "U52Z102", + "id": "ada05b26-5a13-4f1b-ac6b-d55851de3f75" + }, + { + "routeId": "L126", + "platformId": "U52Z2", + "id": "d6a2782b-22f8-4f95-b6fc-a5205b0f6ec5" + }, + { + "routeId": "L135", + "platformId": "U52Z2", + "id": "de84d363-549e-4c05-9e21-c5355e7835ee" + }, + { + "routeId": "L197", + "platformId": "U52Z2", + "id": "fd07cd6e-c06f-48ec-8028-87489273ca1d" + }, + { + "routeId": "L177", + "platformId": "U52Z2", + "id": "7c354b59-941e-46ce-bc7c-064f9940f2b1" + }, + { + "routeId": "L115", + "platformId": "U52Z2", + "id": "2f4eab31-02ef-4b83-804d-618669d9002b" + }, + { + "routeId": "L126", + "platformId": "U52Z4", + "id": "4b8afec6-30c0-406f-9456-11f61dfb4375" + }, + { + "routeId": "L115", + "platformId": "U52Z4", + "id": "3ba7e313-1c02-4788-8fae-88f4c133ba4a" + }, + { + "routeId": "L135", + "platformId": "U52Z5", + "id": "4af06900-fa58-4c56-8908-04c6d8379981" + }, + { + "routeId": "L177", + "platformId": "U52Z5", + "id": "907913a5-8cfb-4396-b1a0-6a555c8e2f20" + }, + { + "routeId": "L197", + "platformId": "U52Z5", + "id": "5f85505f-1776-413a-8048-291b4535afa9" + }, + { + "routeId": "L18", + "platformId": "U530Z1", + "id": "ea2e59ee-10fd-450c-ad2d-1123639c7f17" + }, + { + "routeId": "L19", + "platformId": "U530Z1", + "id": "07d482e1-22c4-4d3b-8f32-db3c6be400ef" + }, + { + "routeId": "L93", + "platformId": "U530Z1", + "id": "fbb67584-7e11-492e-a838-62af3b3285ed" + }, + { + "routeId": "L193", + "platformId": "U530Z1", + "id": "8d8a1046-f0f2-48d2-90ac-1e00c03390d6" + }, + { + "routeId": "L18", + "platformId": "U530Z2", + "id": "78f30ed5-753b-4ec9-95b1-8537db511362" + }, + { + "routeId": "L19", + "platformId": "U530Z2", + "id": "6059edc4-3d12-4ea9-adca-ec5287eeb3d1" + }, + { + "routeId": "L93", + "platformId": "U530Z2", + "id": "adcde592-7db9-4e87-8b02-3c4fd59fa10e" + }, + { + "routeId": "L193", + "platformId": "U530Z2", + "id": "e99dfe2b-23b1-435b-820e-8b44bb526c68" + }, + { + "routeId": "L22", + "platformId": "U531Z1", + "id": "a46c900a-94a4-4e51-9d35-17a3338ccb48" + }, + { + "routeId": "L22", + "platformId": "U531Z2", + "id": "5a40bdd9-129d-4347-a58b-9900045fa112" + }, + { + "routeId": "L23", + "platformId": "U531Z2", + "id": "6e0a4c3e-050e-4532-8976-5cb46c4bb5f9" + }, + { + "routeId": "L827", + "platformId": "U532Z52", + "id": "38e7fbfd-8eed-4918-a458-d45bf8d461e3" + }, + { + "routeId": "L215", + "platformId": "U533Z1", + "id": "7e929183-9815-447a-b004-b44a80099986" + }, + { + "routeId": "L197", + "platformId": "U533Z1", + "id": "80d8420c-65b3-4989-b8c0-9b2df9597691" + }, + { + "routeId": "L904", + "platformId": "U533Z1", + "id": "a8331c26-dd55-4bde-8c11-f425355c76d7" + }, + { + "routeId": "L215", + "platformId": "U533Z2", + "id": "47fc088b-02fa-4f42-945b-c94113524177" + }, + { + "routeId": "L197", + "platformId": "U533Z2", + "id": "fbdc55f9-ab66-4aaa-ab8a-ee930f53a2fd" + }, + { + "routeId": "L904", + "platformId": "U533Z2", + "id": "29efb841-d0a6-470e-a86e-2925834bcef0" + }, + { + "routeId": "L27", + "platformId": "U533Z3", + "id": "6c2eeb79-e368-474f-9cd0-55fabfeb68f6" + }, + { + "routeId": "L27", + "platformId": "U533Z4", + "id": "6c2c666e-ec64-44a9-b824-17db1f30a6d0" + }, + { + "routeId": "L401", + "platformId": "U5354Z1", + "id": "6477e76e-31f2-414e-9d21-0198f938cdde" + }, + { + "routeId": "L452", + "platformId": "U5354Z1", + "id": "0109bcbb-5993-4a99-9d76-04ec55601b35" + }, + { + "routeId": "L401", + "platformId": "U5354Z2", + "id": "2897d1ff-3075-4125-8c19-4dd4ffe5f79d" + }, + { + "routeId": "L452", + "platformId": "U5354Z2", + "id": "0dc27b60-15e8-4c15-b1ee-ec92a2676764" + }, + { + "routeId": "L350", + "platformId": "U5355Z1", + "id": "0cb832a0-9bee-4f1f-9487-218c1c5b2bfb" + }, + { + "routeId": "L350", + "platformId": "U5355Z2", + "id": "fdcdae6d-d330-4d77-addc-7540f7e34dc3" + }, + { + "routeId": "L181", + "platformId": "U535Z1", + "id": "5bc0d4f5-a111-46ac-9bae-280aac79b6f5" + }, + { + "routeId": "L909", + "platformId": "U535Z1", + "id": "951efb2c-b114-4a2a-96b5-433acf49cb59" + }, + { + "routeId": "L171", + "platformId": "U535Z1", + "id": "d97df8d1-dabe-4cc0-b6bc-b8030e53d974" + }, + { + "routeId": "L181", + "platformId": "U535Z2", + "id": "0acc76dd-b5fc-458a-b10d-fea3dc90d5d0" + }, + { + "routeId": "L909", + "platformId": "U535Z2", + "id": "2914137e-5bbb-44be-9ed7-7189f9ee06bf" + }, + { + "routeId": "L171", + "platformId": "U535Z2", + "id": "084d3739-4350-4428-ad54-a7162a201fe7" + }, + { + "routeId": "L187", + "platformId": "U536Z3", + "id": "47ad96b0-545c-4cae-a4d0-816716e01b41" + }, + { + "routeId": "L241", + "platformId": "U537Z1", + "id": "37b6e4b9-b2c8-49f1-abc7-3cd27f030da1" + }, + { + "routeId": "L917", + "platformId": "U537Z1", + "id": "4c18fb39-600e-4634-8d95-3cdffa0243fd" + }, + { + "routeId": "L241", + "platformId": "U537Z2", + "id": "d8ca1aca-310f-46f5-ae8b-c06dda3a942b" + }, + { + "routeId": "L917", + "platformId": "U537Z2", + "id": "7a6c39df-72d9-462e-9472-e724c9010c91" + }, + { + "routeId": "L181", + "platformId": "U538Z1", + "id": "ebc74104-6a05-423c-bb81-6336fa319db2" + }, + { + "routeId": "L183", + "platformId": "U538Z1", + "id": "cbf3ee19-5a1a-486d-9d53-fe562012471e" + }, + { + "routeId": "L909", + "platformId": "U538Z1", + "id": "ad460cae-2152-4078-adf2-0d0c45849c7f" + }, + { + "routeId": "L171", + "platformId": "U538Z1", + "id": "fd70ed35-51ff-4ad8-8466-899d31093b18" + }, + { + "routeId": "L181", + "platformId": "U538Z2", + "id": "45623125-2e4f-4687-9d78-311e18fe099f" + }, + { + "routeId": "L183", + "platformId": "U538Z2", + "id": "ddf8a292-ad5a-459c-926d-8c007d1839d4" + }, + { + "routeId": "L909", + "platformId": "U538Z2", + "id": "30b93bf8-80e6-4ff7-a893-0bcf763ef05d" + }, + { + "routeId": "L171", + "platformId": "U538Z2", + "id": "763a50f2-dd79-4e9b-8ed5-132aa05e5814" + }, + { + "routeId": "L2", + "platformId": "U539Z1", + "id": "c3de03cd-873d-438c-bd75-67984ed3c80c" + }, + { + "routeId": "L9", + "platformId": "U539Z1", + "id": "332164f9-ff59-49f7-a61e-b8c6c2abfb1a" + }, + { + "routeId": "L12", + "platformId": "U539Z1", + "id": "0bc72d32-4daf-48c1-8d3c-afad47fd0d07" + }, + { + "routeId": "L15", + "platformId": "U539Z1", + "id": "db3403bc-6ec5-4f95-8519-958a02e1193e" + }, + { + "routeId": "L18", + "platformId": "U539Z1", + "id": "187223a8-0737-4efd-a2fa-656927cc4d2a" + }, + { + "routeId": "L20", + "platformId": "U539Z1", + "id": "8305daed-1e27-4403-bb43-82908a6ecb5e" + }, + { + "routeId": "L22", + "platformId": "U539Z1", + "id": "535465d6-63e1-4b90-9f2d-937ece745f37" + }, + { + "routeId": "L23", + "platformId": "U539Z1", + "id": "41e87718-1cd4-4a3d-94c5-c88746427ddd" + }, + { + "routeId": "L93", + "platformId": "U539Z1", + "id": "8aa0886a-9eb4-41fb-b879-0d2b7bcf1c2a" + }, + { + "routeId": "L97", + "platformId": "U539Z1", + "id": "fb5a7cff-3096-4ae6-aafa-bb0fd8f23b34" + }, + { + "routeId": "L98", + "platformId": "U539Z1", + "id": "ca2b5bee-a40e-49fa-87e8-ffd8ca90c300" + }, + { + "routeId": "L99", + "platformId": "U539Z1", + "id": "71123f69-2460-4011-a1ed-aad3017672f9" + }, + { + "routeId": "L992", + "platformId": "U539Z101", + "id": "4ebd5609-5eed-4030-a1b1-ddca1f6a0dea" + }, + { + "routeId": "L992", + "platformId": "U539Z102", + "id": "4edb5401-e89b-460b-9399-72f6f47ac978" + }, + { + "routeId": "L2", + "platformId": "U539Z2", + "id": "0ffa1f0a-49e7-42f2-a9c4-7e784f66d5de" + }, + { + "routeId": "L9", + "platformId": "U539Z2", + "id": "26a1bb11-175c-4b1d-861a-8129dc7aa9ca" + }, + { + "routeId": "L12", + "platformId": "U539Z2", + "id": "191a9021-6315-4cb7-9bd8-558558f2b273" + }, + { + "routeId": "L15", + "platformId": "U539Z2", + "id": "d002baca-6e02-46cc-9378-e5d3f46c8aff" + }, + { + "routeId": "L18", + "platformId": "U539Z2", + "id": "f50e594a-bad9-4958-9756-3a0dc43e73ca" + }, + { + "routeId": "L20", + "platformId": "U539Z2", + "id": "100b361f-c4e1-4487-b854-c437ed92b123" + }, + { + "routeId": "L22", + "platformId": "U539Z2", + "id": "a0d9d6f5-348b-406b-bd41-f84383718cfd" + }, + { + "routeId": "L23", + "platformId": "U539Z2", + "id": "b043526d-9b57-4856-bc1a-c970ebc87ccd" + }, + { + "routeId": "L93", + "platformId": "U539Z2", + "id": "7dd14686-c085-41ff-a1b8-0ced4f006571" + }, + { + "routeId": "L97", + "platformId": "U539Z2", + "id": "f05fe081-9301-4dc5-b4c4-85739b80263d" + }, + { + "routeId": "L98", + "platformId": "U539Z2", + "id": "44bfdb49-8265-416f-93f2-057bb42cfaa1" + }, + { + "routeId": "L99", + "platformId": "U539Z2", + "id": "89ab9923-18d2-480c-a2f9-7d0d0c4885cc" + }, + { + "routeId": "L147", + "platformId": "U53Z1", + "id": "c3ea9034-27f1-4cd8-8b33-f8823b4ccfca" + }, + { + "routeId": "L147", + "platformId": "U53Z2", + "id": "c79e1c10-44bb-469d-9d2c-3df34a68420b" + }, + { + "routeId": "L10", + "platformId": "U540Z1", + "id": "16137234-cbe1-4812-ba33-07b21a14e73d" + }, + { + "routeId": "L16", + "platformId": "U540Z1", + "id": "54f16b71-6288-49d5-a6cb-c418c29f8cc4" + }, + { + "routeId": "L91", + "platformId": "U540Z1", + "id": "0840333d-a386-4dd8-87bb-98803ddf103c" + }, + { + "routeId": "L101", + "platformId": "U540Z1", + "id": "324f8e15-9862-4b19-ab8f-fca8b580d2ff" + }, + { + "routeId": "L10", + "platformId": "U540Z2", + "id": "555b7e97-a299-49ec-a46d-2226e79f13d6" + }, + { + "routeId": "L16", + "platformId": "U540Z2", + "id": "c69d7775-c658-43aa-ae67-fc2544b2c07c" + }, + { + "routeId": "L91", + "platformId": "U540Z2", + "id": "8259861a-3758-4da3-bbc9-f8fff2f45430" + }, + { + "routeId": "L101", + "platformId": "U540Z3", + "id": "f48830a5-6653-4ca3-9efc-c4c10d84a9e1" + }, + { + "routeId": "L1", + "platformId": "U541Z1", + "id": "6892dc59-c6dd-4343-b9b9-4502baf46f59" + }, + { + "routeId": "L2", + "platformId": "U541Z1", + "id": "867d9c60-ca4c-435d-9f5e-c747f31aea25" + }, + { + "routeId": "L96", + "platformId": "U541Z1", + "id": "a365ac90-a068-4fcc-a5f4-6c19d39b2007" + }, + { + "routeId": "L1", + "platformId": "U541Z2", + "id": "fdfa98dd-64e8-4dd5-ac71-bf9d5a5ae79e" + }, + { + "routeId": "L96", + "platformId": "U541Z2", + "id": "15610873-fe07-4ae9-86cf-efdfd5694172" + }, + { + "routeId": "L2", + "platformId": "U541Z4", + "id": "3011e433-6e8f-402b-a67a-f397d055c65d" + }, + { + "routeId": "L108", + "platformId": "U541Z6", + "id": "cc2609c3-303a-4525-a507-727a47225c9f" + }, + { + "routeId": "L168", + "platformId": "U541Z6", + "id": "36e21535-f495-4367-8ecb-ce8b7ab76720" + }, + { + "routeId": "L191", + "platformId": "U541Z6", + "id": "5a7db405-e655-4010-82d7-daa16761ab6b" + }, + { + "routeId": "L910", + "platformId": "U541Z6", + "id": "7321f931-5efd-40b2-ada1-460cca7e191c" + }, + { + "routeId": "L164", + "platformId": "U541Z6", + "id": "a08a6a3f-c634-4e15-9cad-118506e15e23" + }, + { + "routeId": "L108", + "platformId": "U541Z7", + "id": "e7d98015-d3db-4707-8111-4424ba0ea027" + }, + { + "routeId": "L168", + "platformId": "U541Z7", + "id": "c316001a-d247-4ef9-ae2a-da6a19001f99" + }, + { + "routeId": "L191", + "platformId": "U541Z7", + "id": "c6a1723a-e08c-44e4-b8bb-84e78f82eec3" + }, + { + "routeId": "L910", + "platformId": "U541Z7", + "id": "c8679df0-ac26-4ba2-9f24-ad014eef6c89" + }, + { + "routeId": "L164", + "platformId": "U541Z7", + "id": "93c53a38-80cc-4ef5-a891-7290980fbbbf" + }, + { + "routeId": "L229", + "platformId": "U542Z1", + "id": "93aaa9fd-d3ba-4e0a-98c4-f125c7acc63e" + }, + { + "routeId": "L903", + "platformId": "U542Z1", + "id": "00b2d585-2f86-415e-9f46-4be15ce6c2ed" + }, + { + "routeId": "L366", + "platformId": "U542Z1", + "id": "e9e88dd5-0443-401f-bd7f-5ef4b2ac06d6" + }, + { + "routeId": "L364", + "platformId": "U542Z1", + "id": "f1f5a170-da62-40bd-9889-be84d792fa41" + }, + { + "routeId": "L382", + "platformId": "U542Z1", + "id": "03fd86e8-05ce-4d45-a6ec-90c56decb028" + }, + { + "routeId": "L383", + "platformId": "U542Z1", + "id": "3100d56f-1b70-4596-8c3d-b998cbf22fe2" + }, + { + "routeId": "L959", + "platformId": "U542Z1", + "id": "42a386da-e331-40b1-a91b-b6e0adf9e6a6" + }, + { + "routeId": "L228", + "platformId": "U542Z12", + "id": "5b8f56e1-1ccd-43ef-a94e-9f9e75c0dda4" + }, + { + "routeId": "L126", + "platformId": "U542Z2", + "id": "a9c382a0-e86b-4217-a9b9-f024a741a63f" + }, + { + "routeId": "L229", + "platformId": "U542Z2", + "id": "a1228b5e-ae50-4792-891f-07276e983945" + }, + { + "routeId": "L209", + "platformId": "U542Z2", + "id": "eac6389d-043b-405b-a7e1-6f3bab74854a" + }, + { + "routeId": "L226", + "platformId": "U542Z2", + "id": "8f406f65-c9ef-40fd-a15f-923cc9256730" + }, + { + "routeId": "L227", + "platformId": "U542Z2", + "id": "4c02ec4c-0798-43f4-8136-9bf876bf4139" + }, + { + "routeId": "L903", + "platformId": "U542Z2", + "id": "2cf5341d-fcca-44d4-8875-a99416806efa" + }, + { + "routeId": "L228", + "platformId": "U542Z2", + "id": "e73b7346-cf97-4f32-8776-aea75f695563" + }, + { + "routeId": "L366", + "platformId": "U542Z2", + "id": "d670f01f-3859-462d-89ca-822b8c8e5506" + }, + { + "routeId": "L364", + "platformId": "U542Z2", + "id": "12cf4c2e-1854-4a33-9dc3-8de76c1a5d98" + }, + { + "routeId": "L325", + "platformId": "U542Z2", + "id": "54319087-d96f-45fc-b0d5-a96b1f33eec4" + }, + { + "routeId": "L382", + "platformId": "U542Z2", + "id": "fa3b2f0d-643f-4bb3-a009-e0687955bc8a" + }, + { + "routeId": "L383", + "platformId": "U542Z2", + "id": "e417a941-7a97-40ef-981c-d69c74e60a60" + }, + { + "routeId": "L959", + "platformId": "U542Z2", + "id": "cef65ab1-826d-49ab-abfc-52655e080b78" + }, + { + "routeId": "L102", + "platformId": "U543Z1", + "id": "db96278a-bdae-4223-b33d-8f4bbd6b05d4" + }, + { + "routeId": "L144", + "platformId": "U543Z1", + "id": "a1f5b366-4fd3-46ea-ad39-8eed824bb6a0" + }, + { + "routeId": "L152", + "platformId": "U543Z1", + "id": "ac3d73fc-e92e-40e2-bf05-77dffa96006d" + }, + { + "routeId": "L177", + "platformId": "U543Z1", + "id": "4e760d63-f724-4faf-99e3-fc23e2fbaa1b" + }, + { + "routeId": "L200", + "platformId": "U543Z1", + "id": "dcccfd6f-9e21-4e05-a80d-a63ae0c4483e" + }, + { + "routeId": "L905", + "platformId": "U543Z1", + "id": "29aaeda4-fca6-4540-9ad9-6eb16053cb89" + }, + { + "routeId": "L102", + "platformId": "U543Z2", + "id": "9d37c64d-0983-4d9c-8303-ce48f844faff" + }, + { + "routeId": "L144", + "platformId": "U543Z2", + "id": "07fdc4b2-6443-41ce-a648-681766147196" + }, + { + "routeId": "L152", + "platformId": "U543Z2", + "id": "b12213a8-25d7-4335-aa86-92bfb04a5c1b" + }, + { + "routeId": "L177", + "platformId": "U543Z2", + "id": "43799fa5-9102-4bf7-8160-125556669268" + }, + { + "routeId": "L200", + "platformId": "U543Z2", + "id": "82a4a4b8-dd34-4008-9ee6-2ea41db53757" + }, + { + "routeId": "L905", + "platformId": "U543Z2", + "id": "a10de09a-67d0-4d4d-823f-ad8774335311" + }, + { + "routeId": "L102", + "platformId": "U544Z1", + "id": "d96999c8-7c7c-48f3-8e42-be1fcff28cce" + }, + { + "routeId": "L144", + "platformId": "U544Z1", + "id": "a832c9f1-acc7-4be0-bde3-b2eefb490ab3" + }, + { + "routeId": "L152", + "platformId": "U544Z1", + "id": "c9fcbd09-f273-405c-b54c-1472b344e401" + }, + { + "routeId": "L177", + "platformId": "U544Z1", + "id": "14c89e19-8bc5-489e-a336-157a8aef26a5" + }, + { + "routeId": "L200", + "platformId": "U544Z1", + "id": "e52141e6-6038-422c-9ac2-6fa0a8cc5b8a" + }, + { + "routeId": "L905", + "platformId": "U544Z1", + "id": "ead44fa8-370d-4e52-9807-fdca45dc28a4" + }, + { + "routeId": "L102", + "platformId": "U544Z2", + "id": "ee7e8a73-b8bf-482d-b2cf-ec607c6d99a7" + }, + { + "routeId": "L144", + "platformId": "U544Z2", + "id": "8f65db5b-0666-4622-900f-2f40572a8151" + }, + { + "routeId": "L152", + "platformId": "U544Z2", + "id": "a04c8f65-b3e1-40fc-964b-1b5c1dd5da7d" + }, + { + "routeId": "L177", + "platformId": "U544Z2", + "id": "d2ba6f1f-c343-4669-859f-b5750ed70fc1" + }, + { + "routeId": "L200", + "platformId": "U544Z2", + "id": "a44d198b-0a9c-4ef1-a010-030c99ffb1ed" + }, + { + "routeId": "L905", + "platformId": "U544Z2", + "id": "86e637be-e66f-4305-b29b-f5677e1cc463" + }, + { + "routeId": "L113", + "platformId": "U545Z1", + "id": "cd6e3cc1-97a3-489f-a04a-8d31dbfc2231" + }, + { + "routeId": "L113", + "platformId": "U545Z2", + "id": "0b90217a-84b7-4b9d-99c9-aba2675b0176" + }, + { + "routeId": "L913", + "platformId": "U545Z2", + "id": "d807e334-cf30-464e-8925-49f37070394a" + }, + { + "routeId": "L333", + "platformId": "U545Z2", + "id": "78716a0a-6193-4cae-ae6a-dc4fc73c4ffa" + }, + { + "routeId": "L960", + "platformId": "U545Z2", + "id": "a78bc563-e726-43d7-a6b6-65879c61983b" + }, + { + "routeId": "L113", + "platformId": "U545Z3", + "id": "83d4e4f4-72b1-41ec-8503-b0ade2e8c760" + }, + { + "routeId": "L913", + "platformId": "U545Z3", + "id": "315a8ebe-7fd3-46a0-aa01-870f283da02a" + }, + { + "routeId": "L333", + "platformId": "U545Z3", + "id": "9454d50e-8837-4d8f-8ab3-adaa1f6e6865" + }, + { + "routeId": "L960", + "platformId": "U545Z3", + "id": "aa135ce0-9b04-402d-84af-f218561d9626" + }, + { + "routeId": "L113", + "platformId": "U546Z1", + "id": "8d9e3856-9055-4e39-8fb2-2419204621b6" + }, + { + "routeId": "L913", + "platformId": "U546Z1", + "id": "3ffce0cf-9e06-4bb0-b3f1-285fdd187072" + }, + { + "routeId": "L333", + "platformId": "U546Z1", + "id": "69b40d30-37ec-4945-be12-29008e3da753" + }, + { + "routeId": "L960", + "platformId": "U546Z1", + "id": "937af2af-2c89-4df1-9c95-05e35b14baca" + }, + { + "routeId": "L113", + "platformId": "U546Z2", + "id": "545760f1-a860-4e7a-b91b-47e2e2c53ff9" + }, + { + "routeId": "L913", + "platformId": "U546Z2", + "id": "af12ed45-a33e-4239-8143-b3d28414bc34" + }, + { + "routeId": "L333", + "platformId": "U546Z2", + "id": "c0b06b59-bb90-4dcf-aeb4-af5c562feba8" + }, + { + "routeId": "L960", + "platformId": "U546Z2", + "id": "aeaa8c53-63f1-4854-af3c-71da991dc581" + }, + { + "routeId": "L133", + "platformId": "U548Z1", + "id": "42766cd7-03d6-480d-907e-ffbe4174dc71" + }, + { + "routeId": "L199", + "platformId": "U548Z1", + "id": "4b4e1501-fc88-496b-a1a8-f957993037e4" + }, + { + "routeId": "L188", + "platformId": "U548Z1", + "id": "af5cc2ec-38e2-48b9-abf2-e7fdad0e669c" + }, + { + "routeId": "L908", + "platformId": "U548Z1", + "id": "f6cbf6fc-e917-40be-ac28-c7cbb4abada5" + }, + { + "routeId": "L909", + "platformId": "U548Z1", + "id": "ec4afa1b-372c-4ec8-8ffb-e19446bb0b05" + }, + { + "routeId": "L133", + "platformId": "U548Z2", + "id": "4b52a6f7-ce0d-4427-a2a6-4d431506c886" + }, + { + "routeId": "L199", + "platformId": "U548Z2", + "id": "641597cc-7da8-4d7b-ae0e-3fbc59182233" + }, + { + "routeId": "L188", + "platformId": "U548Z2", + "id": "c8967c91-bb8f-4627-803b-643d4f0bfbc3" + }, + { + "routeId": "L908", + "platformId": "U548Z2", + "id": "9d6974ee-2220-412f-8d95-b14f540ffef4" + }, + { + "routeId": "L909", + "platformId": "U548Z2", + "id": "cc920f19-2322-4bf8-b30f-eaa1ba43b110" + }, + { + "routeId": "L155", + "platformId": "U548Z3", + "id": "f2853454-4d2f-474b-939b-249879d6a983" + }, + { + "routeId": "L228", + "platformId": "U548Z3", + "id": "eabbaae9-1eff-4415-aea8-22b4450723dc" + }, + { + "routeId": "L228", + "platformId": "U548Z4", + "id": "fe70a139-5249-443e-a0e8-71b9a9032326" + }, + { + "routeId": "L3", + "platformId": "U54Z1", + "id": "2ee609b7-6ff7-4645-8610-84aa2182a7e4" + }, + { + "routeId": "L10", + "platformId": "U54Z1", + "id": "b44d1778-ad1c-4027-9a9b-69acf6fa4b0d" + }, + { + "routeId": "L95", + "platformId": "U54Z1", + "id": "0e4a82ee-9353-4d9c-b435-e34bb00939df" + }, + { + "routeId": "L3", + "platformId": "U54Z2", + "id": "1bfb897f-83b2-4a0d-af20-f676a3bce61f" + }, + { + "routeId": "L10", + "platformId": "U54Z2", + "id": "466550ba-6f30-43c3-b18a-1110ebea907e" + }, + { + "routeId": "L95", + "platformId": "U54Z2", + "id": "d70b4f9c-fa10-400e-bc0c-18c5487d7e0f" + }, + { + "routeId": "L201", + "platformId": "U54Z3", + "id": "8aee5579-11d1-4d7e-83f7-ea409224ae98" + }, + { + "routeId": "L911", + "platformId": "U54Z3", + "id": "f0869932-0765-42b2-a69e-aa9e1b210efd" + }, + { + "routeId": "L166", + "platformId": "U54Z3", + "id": "f7ee9393-1df0-4bea-83a8-765ebd8a897e" + }, + { + "routeId": "L201", + "platformId": "U54Z4", + "id": "33b62504-8d8c-4aac-b2f6-4579501e8a2a" + }, + { + "routeId": "L911", + "platformId": "U54Z4", + "id": "617d88b8-2604-4d92-938c-f5beef06c09a" + }, + { + "routeId": "L166", + "platformId": "U54Z4", + "id": "7cf9b3db-6d07-4446-9363-6c8636b76b45" + }, + { + "routeId": "L166", + "platformId": "U54Z5", + "id": "32bf6c4d-3111-4ac9-85ec-cdc2d25f2b7b" + }, + { + "routeId": "L166", + "platformId": "U54Z6", + "id": "300f7d61-e8b9-4cc0-be8c-a2dd4d50780b" + }, + { + "routeId": "L348", + "platformId": "U54Z6", + "id": "f4a3aba1-5552-44b4-9ef4-fec39209bea8" + }, + { + "routeId": "L348", + "platformId": "U54Z76", + "id": "de933ff8-4ee1-4083-acb2-ee8392a51be6" + }, + { + "routeId": "L11", + "platformId": "U550Z1", + "id": "fdc9321d-d7e1-4cc3-8aad-ab2b64f84ecf" + }, + { + "routeId": "L14", + "platformId": "U550Z1", + "id": "82d8113e-392e-4d89-bd22-0e3f1deac2e0" + }, + { + "routeId": "L96", + "platformId": "U550Z1", + "id": "ace72652-a45d-4286-acbb-6d7b75a48045" + }, + { + "routeId": "L150", + "platformId": "U550Z1", + "id": "54f00c78-33bd-4845-a2f7-87ddc8789596" + }, + { + "routeId": "L188", + "platformId": "U550Z1", + "id": "4a1a0881-6008-4c1a-92a5-d8ca39100607" + }, + { + "routeId": "L11", + "platformId": "U550Z2", + "id": "da7557a7-e558-4ed8-a7b4-7cee40c9b8be" + }, + { + "routeId": "L14", + "platformId": "U550Z2", + "id": "8a2b32bd-2428-40f3-83eb-8d95c472324b" + }, + { + "routeId": "L96", + "platformId": "U550Z2", + "id": "71245be5-5df6-4660-967f-02030e0e5f1e" + }, + { + "routeId": "L150", + "platformId": "U550Z2", + "id": "81139b0e-2581-4f5d-b14a-e643341b3522" + }, + { + "routeId": "L188", + "platformId": "U550Z2", + "id": "35e26187-0258-48aa-be64-0aa5e83548ea" + }, + { + "routeId": "L181", + "platformId": "U552Z1", + "id": "3978de69-65d2-41d1-bcbd-3d496b40e649" + }, + { + "routeId": "L183", + "platformId": "U552Z1", + "id": "cf895338-d307-4bfc-9c09-44f320d15083" + }, + { + "routeId": "L908", + "platformId": "U552Z1", + "id": "72286f78-e538-4345-952a-b7d7a6fd0169" + }, + { + "routeId": "L181", + "platformId": "U552Z2", + "id": "f958ec3e-582a-45a9-ade3-94170a1dbaa0" + }, + { + "routeId": "L183", + "platformId": "U552Z2", + "id": "c0d9fe66-668a-4ac4-a9e7-e850b1168d43" + }, + { + "routeId": "L908", + "platformId": "U552Z2", + "id": "dd60f0cd-cd24-456e-b12e-2fd0ecda11cb" + }, + { + "routeId": "L5", + "platformId": "U553Z1", + "id": "7b9a23de-61a6-4f93-9f13-c370ab6afb44" + }, + { + "routeId": "L12", + "platformId": "U553Z1", + "id": "d8701868-1f30-4d58-8062-6eb7a9a7580d" + }, + { + "routeId": "L20", + "platformId": "U553Z1", + "id": "ae9e74e8-1810-44b0-93fe-7cbbdc833c99" + }, + { + "routeId": "L94", + "platformId": "U553Z1", + "id": "1ee350bb-cfc0-41be-a49b-d4a019f31dab" + }, + { + "routeId": "L5", + "platformId": "U553Z2", + "id": "0f754355-778c-498c-a525-191a1e551c8a" + }, + { + "routeId": "L12", + "platformId": "U553Z2", + "id": "5b42b4a8-4770-4cbe-b706-0e745176e080" + }, + { + "routeId": "L20", + "platformId": "U553Z2", + "id": "8f5a4192-35d9-4d74-801d-4b6b68b02448" + }, + { + "routeId": "L94", + "platformId": "U553Z2", + "id": "7843e869-b097-4a23-b6eb-1c7f9702ff03" + }, + { + "routeId": "L20", + "platformId": "U554Z1", + "id": "0dd75954-7332-4fc1-a739-a9b115a0acfb" + }, + { + "routeId": "L26", + "platformId": "U554Z1", + "id": "0590b9ff-5158-4c4e-994c-ac34d9177506" + }, + { + "routeId": "L20", + "platformId": "U554Z2", + "id": "6dcbaab3-ccc4-449e-9f83-f4baca05d35c" + }, + { + "routeId": "L26", + "platformId": "U554Z2", + "id": "e056c038-2bb5-47ba-83b3-17c1c305a7ff" + }, + { + "routeId": "L191", + "platformId": "U554Z5", + "id": "4f1cc299-bc0f-429d-a1b4-c515156d43bd" + }, + { + "routeId": "L225", + "platformId": "U554Z5", + "id": "71075f09-476b-47d7-9d6f-2354486c4905" + }, + { + "routeId": "L910", + "platformId": "U554Z5", + "id": "49ceb837-d77c-4e6e-9c63-8fc68b89e547" + }, + { + "routeId": "L191", + "platformId": "U554Z6", + "id": "921af381-5ffc-422a-ab45-a5f5d28534d0" + }, + { + "routeId": "L910", + "platformId": "U554Z6", + "id": "6645ddcf-728a-44f5-990e-759afa71bf34" + }, + { + "routeId": "L162", + "platformId": "U555Z1", + "id": "aa9f6001-62b1-43f3-9325-a559e95d6fdc" + }, + { + "routeId": "L169", + "platformId": "U555Z1", + "id": "7ad07c6e-a17f-419c-a657-3eae57c7fbd5" + }, + { + "routeId": "L913", + "platformId": "U555Z1", + "id": "7af9ac15-5bea-47ec-a33c-51071173cd0c" + }, + { + "routeId": "L370", + "platformId": "U555Z1", + "id": "1f73e344-8281-46ae-9a77-f521b1e48c88" + }, + { + "routeId": "L371", + "platformId": "U555Z1", + "id": "b64052db-9ca5-4324-b903-dbb3e897a893" + }, + { + "routeId": "L374", + "platformId": "U555Z1", + "id": "deaabbec-cacf-444f-9d76-7be0d11e6b83" + }, + { + "routeId": "L373", + "platformId": "U555Z1", + "id": "5c3db538-8e9e-4fc9-9175-739c83160e7d" + }, + { + "routeId": "L958", + "platformId": "U555Z1", + "id": "5f6a419e-5c5d-4a40-820e-743fe65b980e" + }, + { + "routeId": "L162", + "platformId": "U555Z2", + "id": "6ba1c32c-54dd-4474-ba58-cce605de9e24" + }, + { + "routeId": "L169", + "platformId": "U555Z2", + "id": "220fec1f-888e-4d08-97e3-f34578306e85" + }, + { + "routeId": "L913", + "platformId": "U555Z2", + "id": "39fa4ac2-1904-47df-9949-27641664c4a6" + }, + { + "routeId": "L370", + "platformId": "U555Z2", + "id": "02c27659-f513-4cec-aa6c-9c76c17f2c62" + }, + { + "routeId": "L371", + "platformId": "U555Z2", + "id": "c7a6edc7-b9b2-4655-ba7b-c0a0f2ab9909" + }, + { + "routeId": "L374", + "platformId": "U555Z2", + "id": "f579f526-f62c-4187-a909-60e92dcb1066" + }, + { + "routeId": "L373", + "platformId": "U555Z2", + "id": "321eb5dc-85c6-45a0-9806-819e06678ebb" + }, + { + "routeId": "L958", + "platformId": "U555Z2", + "id": "44495872-8128-4e3b-a880-3aadc86ed62b" + }, + { + "routeId": "L160", + "platformId": "U556Z1", + "id": "26c8ce0a-a3b8-48ec-8d92-4852e6a9813c" + }, + { + "routeId": "L902", + "platformId": "U556Z1", + "id": "b2db499c-204a-4f62-896a-be5510b6480f" + }, + { + "routeId": "L355", + "platformId": "U556Z1", + "id": "b53947d7-d41a-4e93-95a8-45fa61ab410a" + }, + { + "routeId": "L160", + "platformId": "U556Z2", + "id": "12bf5afe-f69b-45c9-8d03-729ff52571c1" + }, + { + "routeId": "L902", + "platformId": "U556Z2", + "id": "f2440c8e-7a1f-41ff-a6fd-e8a03d57c92e" + }, + { + "routeId": "L355", + "platformId": "U556Z2", + "id": "2e049dfe-75dd-437f-8b53-9656877d4622" + }, + { + "routeId": "L234", + "platformId": "U557Z1", + "id": "c8c9675d-76a9-4b0a-81f6-fdda8b68350a" + }, + { + "routeId": "L235", + "platformId": "U557Z1", + "id": "b96d4ed2-8018-497d-832c-f263b2957c2e" + }, + { + "routeId": "L236", + "platformId": "U557Z1", + "id": "dc341ce2-a1d6-44b7-85ed-ba0d42f71a39" + }, + { + "routeId": "L234", + "platformId": "U557Z2", + "id": "8a9e958c-0c3a-4a52-a094-cad7a21af812" + }, + { + "routeId": "L235", + "platformId": "U557Z3", + "id": "3e2054ed-fbc0-442f-a53f-e9a22fd19637" + }, + { + "routeId": "L236", + "platformId": "U557Z3", + "id": "cdeac43b-7bac-4657-a085-f89adf3b5a2d" + }, + { + "routeId": "L214", + "platformId": "U558Z1", + "id": "78b94205-2b67-4aeb-8654-c08cb39f71d1" + }, + { + "routeId": "L365", + "platformId": "U558Z1", + "id": "d81ec389-606f-4b64-875e-95640d63d47b" + }, + { + "routeId": "L214", + "platformId": "U558Z2", + "id": "148f306b-9f9f-43b9-ac4d-dba5f11ab010" + }, + { + "routeId": "L365", + "platformId": "U558Z2", + "id": "3d17723d-5047-4832-8119-3807df2d9e92" + }, + { + "routeId": "L11", + "platformId": "U559Z1", + "id": "8d64b6bf-4ef1-4e16-9aa4-e13f8726f687" + }, + { + "routeId": "L14", + "platformId": "U559Z1", + "id": "c4450959-b3aa-4abf-9bbb-117264ba97e7" + }, + { + "routeId": "L96", + "platformId": "U559Z1", + "id": "e406c124-63fb-4547-be85-9e4992c4c98c" + }, + { + "routeId": "L124", + "platformId": "U559Z1", + "id": "4706dbdf-92fa-42d4-ab84-780516855f19" + }, + { + "routeId": "L139", + "platformId": "U559Z1", + "id": "73f45a29-73a9-44b7-a2e3-a7eb20f325f7" + }, + { + "routeId": "L188", + "platformId": "U559Z1", + "id": "e272d120-e309-4470-84e0-6a8fbaf2eb0b" + }, + { + "routeId": "L11", + "platformId": "U559Z2", + "id": "6267e7de-6da1-4a12-adcb-3afe866bba7b" + }, + { + "routeId": "L14", + "platformId": "U559Z2", + "id": "e28aa220-2e14-4784-a6bc-7b98b8c4ee6e" + }, + { + "routeId": "L96", + "platformId": "U559Z2", + "id": "d89928e1-27b1-4b4a-b2c2-e33047babfcd" + }, + { + "routeId": "L124", + "platformId": "U559Z2", + "id": "e749c7ed-e229-4ab0-be68-4163016d986f" + }, + { + "routeId": "L139", + "platformId": "U559Z2", + "id": "bf0eb61b-e600-4d1e-a231-acfd8cf3504c" + }, + { + "routeId": "L188", + "platformId": "U559Z2", + "id": "955bfea9-28ec-42e0-a7e1-4387fdb2ce84" + }, + { + "routeId": "L102", + "platformId": "U55Z1", + "id": "5aa2b619-68b0-4b45-bdd1-b8500844a568" + }, + { + "routeId": "L183", + "platformId": "U55Z1", + "id": "8a9a9256-ab00-462f-9aa9-48df9b00dd73" + }, + { + "routeId": "L166", + "platformId": "U55Z1", + "id": "1f2b276c-1c72-4008-b9ad-2285ef0c03ce" + }, + { + "routeId": "L102", + "platformId": "U55Z2", + "id": "68cdac78-cd22-4fed-93b4-3fbdc420d1ed" + }, + { + "routeId": "L183", + "platformId": "U55Z2", + "id": "a109de12-18fb-422a-9d4c-7a72cf742297" + }, + { + "routeId": "L166", + "platformId": "U55Z2", + "id": "bc0ee10e-28f1-4690-ac59-3618087dd4a8" + }, + { + "routeId": "L102", + "platformId": "U55Z3", + "id": "c095e451-0c42-4e06-92d5-60d0c60c47fa" + }, + { + "routeId": "L6", + "platformId": "U560Z1", + "id": "fb079de1-0026-4662-b001-5253e494bf12" + }, + { + "routeId": "L11", + "platformId": "U560Z1", + "id": "77fe1682-bd6a-4516-9de8-53e6fd20c084" + }, + { + "routeId": "L96", + "platformId": "U560Z1", + "id": "9aa7e1ce-5da7-4165-b789-aa9c274c7225" + }, + { + "routeId": "L6", + "platformId": "U560Z2", + "id": "3c289deb-7978-4818-ba71-9485c43d2212" + }, + { + "routeId": "L11", + "platformId": "U560Z2", + "id": "7b2a1bce-ea97-4114-ab57-93c046ef3553" + }, + { + "routeId": "L96", + "platformId": "U560Z2", + "id": "efe4993b-e072-4c4a-82a7-dd6a884c0c2a" + }, + { + "routeId": "L231", + "platformId": "U561Z1", + "id": "ab10bde2-25b7-4066-87b9-1b6d35b2ffff" + }, + { + "routeId": "L231", + "platformId": "U562Z1", + "id": "4a1d29e7-4452-48b8-8dcf-662d12e610c3" + }, + { + "routeId": "L120", + "platformId": "U562Z2", + "id": "9e25de99-953e-4f78-b969-008327a32b11" + }, + { + "routeId": "L149", + "platformId": "U563Z1", + "id": "a23c054d-e475-4a45-bd0d-f59ae691b833" + }, + { + "routeId": "L164", + "platformId": "U563Z1", + "id": "160b65e4-5a44-47bb-863c-0a18420a7016" + }, + { + "routeId": "L149", + "platformId": "U563Z2", + "id": "5bacddda-d5b3-421f-896c-d8e8518073bb" + }, + { + "routeId": "L164", + "platformId": "U563Z2", + "id": "b569e7b6-56d1-4658-a341-9efba7fa5e77" + }, + { + "routeId": "L241", + "platformId": "U564Z1", + "id": "0fcf8940-abd7-4674-b05f-60abc540c814" + }, + { + "routeId": "L917", + "platformId": "U564Z1", + "id": "1d5b2d0a-ce5a-4ce6-84c6-5b44a0fac8ec" + }, + { + "routeId": "L241", + "platformId": "U564Z2", + "id": "6330bc34-8b69-40f5-aad2-b15d40a95cc2" + }, + { + "routeId": "L917", + "platformId": "U564Z2", + "id": "00edc51e-b4d1-46ca-81e5-34d8844dc934" + }, + { + "routeId": "L149", + "platformId": "U565Z1", + "id": "dbf00f68-6a76-4a2f-9970-0120b56bee88" + }, + { + "routeId": "L191", + "platformId": "U565Z1", + "id": "9a16726c-5c56-4039-b9c6-c0a3ee66407e" + }, + { + "routeId": "L104", + "platformId": "U566Z1", + "id": "29add7a9-ab7b-4674-aa2f-65328629bc4f" + }, + { + "routeId": "L104", + "platformId": "U566Z2", + "id": "02fc6415-9ec7-43f1-b8c7-74b3e52c3a26" + }, + { + "routeId": "L9", + "platformId": "U567Z1", + "id": "12c516f5-14ec-4459-8dc5-6220d7287a81" + }, + { + "routeId": "L10", + "platformId": "U567Z1", + "id": "0e63af29-6498-4c44-b4aa-d361305c0f01" + }, + { + "routeId": "L16", + "platformId": "U567Z1", + "id": "a4478136-8b57-4c25-85a5-8cd2cc6deb7e" + }, + { + "routeId": "L98", + "platformId": "U567Z1", + "id": "9d1a2c7e-7760-45ca-aad9-f751c1b0dd59" + }, + { + "routeId": "L99", + "platformId": "U567Z1", + "id": "d8228326-8cd0-478b-94dc-1feb3ae039c3" + }, + { + "routeId": "L9", + "platformId": "U567Z2", + "id": "d48e431e-72c8-45c6-958b-5f12930c747f" + }, + { + "routeId": "L10", + "platformId": "U567Z2", + "id": "97ce24f1-e2bb-4d6b-8ddc-f2fffbba3444" + }, + { + "routeId": "L16", + "platformId": "U567Z2", + "id": "7aebcf1e-a763-413c-aa76-94d6f4b2976e" + }, + { + "routeId": "L98", + "platformId": "U567Z2", + "id": "cb0cbb8b-5376-435c-a925-c49e0e972ae9" + }, + { + "routeId": "L99", + "platformId": "U567Z2", + "id": "8dccbdd5-26d4-47c0-a3f6-b7487a40a957" + }, + { + "routeId": "L111", + "platformId": "U568Z1", + "id": "82f50c75-1261-4bc2-8aec-1932f70621d1" + }, + { + "routeId": "L908", + "platformId": "U568Z1", + "id": "267d27b2-ed80-480e-afb5-14e24b78684a" + }, + { + "routeId": "L209", + "platformId": "U568Z1", + "id": "8c7ab94a-6eb6-427f-88de-1de08af7cf0e" + }, + { + "routeId": "L329", + "platformId": "U568Z1", + "id": "6055aa86-64a0-405b-a5f7-abdd55a57c73" + }, + { + "routeId": "L111", + "platformId": "U568Z2", + "id": "02dd8ae3-ea76-49ba-973a-cf4d1a98e742" + }, + { + "routeId": "L908", + "platformId": "U568Z2", + "id": "74cc79b9-a679-4b42-ae90-6ced2999d867" + }, + { + "routeId": "L209", + "platformId": "U568Z2", + "id": "02734f5d-90c8-4d56-b087-7db3e774440f" + }, + { + "routeId": "L329", + "platformId": "U568Z2", + "id": "e2bab7b3-d813-46df-bf32-cc4535bfd8a2" + }, + { + "routeId": "L118", + "platformId": "U569Z1", + "id": "6de84921-7c2a-4fb5-88b6-ea90424189b2" + }, + { + "routeId": "L118", + "platformId": "U569Z2", + "id": "7200b391-04b6-462a-a272-1a574e3913dd" + }, + { + "routeId": "L116", + "platformId": "U56Z1", + "id": "be8423fd-2a03-40a9-963a-19809d50c9b9" + }, + { + "routeId": "L116", + "platformId": "U56Z2", + "id": "203e6d61-ac58-4209-9cd9-286065ed31ef" + }, + { + "routeId": "L552", + "platformId": "U5701Z1", + "id": "a95fca24-4440-41f9-a6b5-4e4ba8166e73" + }, + { + "routeId": "L552", + "platformId": "U5701Z2", + "id": "711a5032-a9dd-4267-b58e-31c4723005a4" + }, + { + "routeId": "L552", + "platformId": "U5702Z1", + "id": "a4e9e7b7-a09f-48e5-89ad-696a0cf5063f" + }, + { + "routeId": "L552", + "platformId": "U5702Z2", + "id": "6a137818-c0c0-459c-ae1e-d8e97814563e" + }, + { + "routeId": "L551", + "platformId": "U5703Z1", + "id": "c2253dc7-6564-46b2-94fd-784453a449d5" + }, + { + "routeId": "L420", + "platformId": "U5703Z1", + "id": "68dedd6d-1637-4866-a63d-2da640ea1e46" + }, + { + "routeId": "L500", + "platformId": "U5703Z1", + "id": "11c307c9-8626-482a-b44f-38474a7a61af" + }, + { + "routeId": "L551", + "platformId": "U5703Z2", + "id": "c3198ed3-f23f-4ef4-8d0f-1558925d99f0" + }, + { + "routeId": "L420", + "platformId": "U5703Z2", + "id": "ed50df9f-f1e1-4003-b1c8-51e5b39cf59f" + }, + { + "routeId": "L500", + "platformId": "U5703Z2", + "id": "833f4980-3427-4001-92d5-aff2c2442d03" + }, + { + "routeId": "L552", + "platformId": "U5705Z1", + "id": "494dfb3f-c27d-4d75-b5ca-51e2ef04ebb9" + }, + { + "routeId": "L552", + "platformId": "U5707Z1", + "id": "4c1f3c94-4a60-49d5-a78f-be075dd8ee04" + }, + { + "routeId": "L552", + "platformId": "U5707Z2", + "id": "e4e09adc-4ae2-4d35-b29c-37be1bc3e091" + }, + { + "routeId": "L552", + "platformId": "U5708Z1", + "id": "4acb564d-d473-467e-b057-c9b81ce748a1" + }, + { + "routeId": "L552", + "platformId": "U5708Z2", + "id": "a74a470f-dbb9-4f14-9885-d760ca46e670" + }, + { + "routeId": "L175", + "platformId": "U570Z1", + "id": "342767f6-38e1-4412-9c23-a9a605e63430" + }, + { + "routeId": "L175", + "platformId": "U570Z2", + "id": "5f919ebf-6050-4af4-b14d-5f5c72312246" + }, + { + "routeId": "L552", + "platformId": "U5710Z1", + "id": "573f84c6-bc02-4c21-92b5-5d28b8bbd36c" + }, + { + "routeId": "L754", + "platformId": "U5711Z1", + "id": "44b60aa2-7aab-4e99-8394-136477ea7601" + }, + { + "routeId": "L754", + "platformId": "U5711Z2", + "id": "e00f3a23-3217-499d-94f4-04b6c4dba472" + }, + { + "routeId": "L551", + "platformId": "U5712Z1", + "id": "502f4a71-bf67-4f76-a267-a2da2cc6f11f" + }, + { + "routeId": "L420", + "platformId": "U5712Z1", + "id": "1ce0e503-6dcf-4d99-ab82-6f939f5bb054" + }, + { + "routeId": "L500", + "platformId": "U5712Z1", + "id": "5cd6236b-4d86-499b-bb1d-90b873deb95d" + }, + { + "routeId": "L551", + "platformId": "U5712Z2", + "id": "87e7e5a3-4d99-40d6-ac84-e2ddc896379d" + }, + { + "routeId": "L420", + "platformId": "U5712Z2", + "id": "97801049-f120-4615-bf16-7bddcc69963e" + }, + { + "routeId": "L500", + "platformId": "U5712Z2", + "id": "53b06767-5387-4cb9-b640-5e8bf28ec1e5" + }, + { + "routeId": "L552", + "platformId": "U5713Z1", + "id": "5e89e248-2dc6-4dcf-92bd-96c1056b240d" + }, + { + "routeId": "L552", + "platformId": "U5713Z2", + "id": "adfaf140-44d2-45d3-b098-0ea83a81068e" + }, + { + "routeId": "L754", + "platformId": "U5714Z1", + "id": "6019bc30-5a40-4ebe-814c-4c44dfec0031" + }, + { + "routeId": "L754", + "platformId": "U5714Z2", + "id": "2a28223e-84a8-48bb-87f8-491a38123dfa" + }, + { + "routeId": "L2844", + "platformId": "U5717Z1", + "id": "917b17a5-ece6-4698-81fb-a96a23de355b" + }, + { + "routeId": "L2844", + "platformId": "U5717Z2", + "id": "09817f86-1e75-49fd-bc40-bce67796194f" + }, + { + "routeId": "L2844", + "platformId": "U5718Z1", + "id": "19a0e904-819b-4a4e-9d1e-009b1a2b779e" + }, + { + "routeId": "L2844", + "platformId": "U5718Z2", + "id": "967afc09-76bd-451e-83cb-82670f3483d9" + }, + { + "routeId": "L2844", + "platformId": "U5719Z1", + "id": "61e6f415-4a52-43df-adae-01111ac508e3" + }, + { + "routeId": "L2844", + "platformId": "U5719Z2", + "id": "a0c1ee91-0ad2-4c8b-b592-2ef8217d8ed4" + }, + { + "routeId": "L170", + "platformId": "U571Z1", + "id": "6cc7ec67-6001-405a-aa09-1697a4e1aaf9" + }, + { + "routeId": "L170", + "platformId": "U571Z2", + "id": "3c461c74-fb67-4f6c-82f9-7315b0ab4ccc" + }, + { + "routeId": "L798", + "platformId": "U5725Z1", + "id": "29386e05-8c45-4c09-a913-dd5107b8edbe" + }, + { + "routeId": "L770", + "platformId": "U5725Z1", + "id": "dec2688e-ef9f-41c5-9be8-019d7a58da72" + }, + { + "routeId": "L798", + "platformId": "U5725Z2", + "id": "dec34c02-10ed-4cdd-80fe-7657d200518b" + }, + { + "routeId": "L770", + "platformId": "U5725Z2", + "id": "f3e8f5c2-08cb-4f3e-9d69-e0e3f759bf7d" + }, + { + "routeId": "L798", + "platformId": "U5726Z1", + "id": "9ab59017-5b3c-47e4-8475-8085d6ce26a8" + }, + { + "routeId": "L798", + "platformId": "U5726Z2", + "id": "dc386a2c-0f3f-408a-88a2-0681491986fd" + }, + { + "routeId": "L798", + "platformId": "U5727Z1", + "id": "7e9eea59-91c1-4151-a6f1-72656e32a459" + }, + { + "routeId": "L798", + "platformId": "U5727Z2", + "id": "c6224ce9-7e83-4d4e-9eb1-9cec3e5fa1fd" + }, + { + "routeId": "L798", + "platformId": "U5728Z1", + "id": "ef2d98d4-b7b3-4246-8e92-1a7ef2ad5bb2" + }, + { + "routeId": "L798", + "platformId": "U5728Z2", + "id": "d5b4dc23-ffb0-4c24-973f-a54e3667b308" + }, + { + "routeId": "L167", + "platformId": "U572Z1", + "id": "da350ed9-f8e5-46bd-bf40-557f736f13be" + }, + { + "routeId": "L167", + "platformId": "U572Z2", + "id": "12268c3e-d959-49ed-ac49-69c1bab04bf2" + }, + { + "routeId": "L798", + "platformId": "U5730Z1", + "id": "27dd8c28-4548-4f1f-ac2e-90a604c4f3a4" + }, + { + "routeId": "L798", + "platformId": "U5730Z2", + "id": "f0516b85-6948-4a29-84b4-67440305642c" + }, + { + "routeId": "L798", + "platformId": "U5731Z1", + "id": "5d17da27-4fac-4047-b3e9-5cfd3382506b" + }, + { + "routeId": "L798", + "platformId": "U5731Z2", + "id": "130bcc18-3810-405f-a0bc-c38c1e3388eb" + }, + { + "routeId": "L482", + "platformId": "U5736Z1", + "id": "601f21c7-70d9-47ff-97b7-867c99adb795" + }, + { + "routeId": "L482", + "platformId": "U5736Z2", + "id": "ba657a72-7bbe-441e-a4f2-d12e5b0bd9c1" + }, + { + "routeId": "L2260", + "platformId": "U5737Z401", + "id": "c466250b-f9b1-4cfe-92b6-5e38f1237779" + }, + { + "routeId": "L2844", + "platformId": "U5739Z1", + "id": "f73ad315-f2fb-49e1-8463-59123f7fc19d" + }, + { + "routeId": "L2844", + "platformId": "U5739Z2", + "id": "6694caa9-412f-4bf3-a31c-c305608f74b0" + }, + { + "routeId": "L149", + "platformId": "U573Z1", + "id": "e67b8097-4e4c-43ca-b19c-34fa7070fc53" + }, + { + "routeId": "L149", + "platformId": "U573Z2", + "id": "5fdbe6a8-9731-4d57-a490-a59554dd984f" + }, + { + "routeId": "L2842", + "platformId": "U5740Z1", + "id": "89648680-0604-4def-bc73-cad90ecc4565" + }, + { + "routeId": "L2844", + "platformId": "U5740Z1", + "id": "eb9bdf69-828e-439e-9d7c-1918860f9872" + }, + { + "routeId": "L2842", + "platformId": "U5740Z2", + "id": "51c7b5ff-b6b3-4305-a1d5-f6a6b3f5175e" + }, + { + "routeId": "L2844", + "platformId": "U5740Z2", + "id": "85987b10-581d-460a-97dc-fa55ae236b6d" + }, + { + "routeId": "L2844", + "platformId": "U5741Z1", + "id": "c8d6a8e5-d9dd-47c0-95a9-b742ad49595e" + }, + { + "routeId": "L795", + "platformId": "U5741Z1", + "id": "dd017108-2716-415c-a137-3ac4b1b364fe" + }, + { + "routeId": "L2844", + "platformId": "U5741Z2", + "id": "bbeec17f-c381-40b4-97e9-004a2bb74b9f" + }, + { + "routeId": "L795", + "platformId": "U5741Z2", + "id": "c4c1bd22-6537-4c0a-b425-2196c49db458" + }, + { + "routeId": "L2844", + "platformId": "U5742Z1", + "id": "9d7f955b-0c8e-4086-8f23-dd341702d58f" + }, + { + "routeId": "L2844", + "platformId": "U5742Z2", + "id": "5193213b-5fcb-45b9-abb0-b5ce5a650a68" + }, + { + "routeId": "L795", + "platformId": "U5743Z1", + "id": "e0f55938-5208-40f4-a8f5-d22348b9c4b5" + }, + { + "routeId": "L795", + "platformId": "U5743Z2", + "id": "80e8828d-15b3-4426-b44a-53e19bd6221f" + }, + { + "routeId": "L2844", + "platformId": "U5744Z1", + "id": "e8a47541-5a29-4d41-8829-f2e74739343f" + }, + { + "routeId": "L794", + "platformId": "U5744Z1", + "id": "cba0b1a5-75ab-481c-a487-3d97f3887184" + }, + { + "routeId": "L2844", + "platformId": "U5744Z2", + "id": "c33c0341-6998-45aa-a2c0-2c7c9df3d224" + }, + { + "routeId": "L794", + "platformId": "U5744Z2", + "id": "6a23e031-630b-400f-9dbe-c9b4aacc5cd6" + }, + { + "routeId": "L2844", + "platformId": "U5748Z1", + "id": "26836f87-3085-4b32-a852-fc493666a848" + }, + { + "routeId": "L2844", + "platformId": "U5748Z2", + "id": "8ae97c9c-6e80-4cdc-821d-8fc6c76b49f9" + }, + { + "routeId": "L2844", + "platformId": "U5749Z1", + "id": "a9deb2de-9867-4064-b848-14946430a8ba" + }, + { + "routeId": "L2844", + "platformId": "U5749Z2", + "id": "4996ded6-7336-4981-af43-a423fcf640ac" + }, + { + "routeId": "L109", + "platformId": "U574Z1", + "id": "0da5d6ab-50da-4114-9c2d-08a0d0d95c4b" + }, + { + "routeId": "L177", + "platformId": "U574Z1", + "id": "aece25bf-60c9-42ac-bd28-f0e77d2eaef8" + }, + { + "routeId": "L183", + "platformId": "U574Z1", + "id": "59283225-cf30-4789-bd86-252433c34c73" + }, + { + "routeId": "L195", + "platformId": "U574Z1", + "id": "bccb0ba1-6635-40d0-89ba-72a81d17004c" + }, + { + "routeId": "L903", + "platformId": "U574Z1", + "id": "ead538dd-f421-40d0-9764-1beb5c89e468" + }, + { + "routeId": "L109", + "platformId": "U574Z2", + "id": "f8544794-3033-4987-81f4-4284d85a9050" + }, + { + "routeId": "L177", + "platformId": "U574Z2", + "id": "6a0d174c-4e6b-478e-9aaa-dc9e5ccdf2a3" + }, + { + "routeId": "L183", + "platformId": "U574Z2", + "id": "40aee1ab-9038-44bc-92e8-be020cd206d8" + }, + { + "routeId": "L195", + "platformId": "U574Z2", + "id": "0a6403e7-ce44-4681-a8e0-cb56f1f69b97" + }, + { + "routeId": "L903", + "platformId": "U574Z2", + "id": "261f3677-2085-4fb6-b196-d2b10abb04d8" + }, + { + "routeId": "L2844", + "platformId": "U5750Z1", + "id": "4d3fd177-c9d8-493f-b28b-64b7ba4f3f16" + }, + { + "routeId": "L2844", + "platformId": "U5750Z2", + "id": "e683d0e4-d58d-4f49-a2c7-69718e0f3190" + }, + { + "routeId": "L791", + "platformId": "U5753Z1", + "id": "c82fd921-02ed-4ca8-88b5-affd4c3e2730" + }, + { + "routeId": "L791", + "platformId": "U5753Z2", + "id": "9881d45b-bfa5-46f7-9a99-32a6331a057c" + }, + { + "routeId": "L482", + "platformId": "U5755Z1", + "id": "55d9e8eb-c66f-4c32-94b5-d60fe5e6df81" + }, + { + "routeId": "L482", + "platformId": "U5755Z2", + "id": "d9a1c11f-95b4-4528-aabb-38fab610dc14" + }, + { + "routeId": "L199", + "platformId": "U575Z1", + "id": "96190c1a-8ce3-4073-b63f-68eeb0296fb0" + }, + { + "routeId": "L188", + "platformId": "U575Z1", + "id": "0339ead0-1474-4d37-847a-f61c1bd9d770" + }, + { + "routeId": "L146", + "platformId": "U575Z1", + "id": "26de9aad-922d-41d2-8c61-2d28a16b64c6" + }, + { + "routeId": "L155", + "platformId": "U575Z1", + "id": "1926f183-4ff0-477f-bc1f-ef642aff9e1e" + }, + { + "routeId": "L146", + "platformId": "U575Z2", + "id": "65d1e1fb-3bbe-44bc-922e-a5015711261f" + }, + { + "routeId": "L155", + "platformId": "U575Z2", + "id": "a9d3f769-840e-4488-8fe4-59708fe83b2b" + }, + { + "routeId": "L455", + "platformId": "U5764Z1", + "id": "bfde2387-326b-4d6c-9172-dc87dce7c6be" + }, + { + "routeId": "L455", + "platformId": "U5764Z2", + "id": "e1040de8-6527-4b0b-b298-4cc4afae01f6" + }, + { + "routeId": "L455", + "platformId": "U5765Z1", + "id": "eb0c76e1-47e7-47c5-9fae-f7f55a58e0cc" + }, + { + "routeId": "L455", + "platformId": "U5765Z2", + "id": "f4a50fbf-e60c-414b-ad61-9c3c0a9ca179" + }, + { + "routeId": "L521", + "platformId": "U5768Z1", + "id": "ee8738f3-ab60-4429-b7a3-1e3045d380eb" + }, + { + "routeId": "L523", + "platformId": "U5768Z1", + "id": "09cf39bb-0839-48be-9c59-17e47dde94f7" + }, + { + "routeId": "L521", + "platformId": "U5768Z2", + "id": "240beda8-5cd9-4519-98dd-be2b1d13a01e" + }, + { + "routeId": "L523", + "platformId": "U5768Z2", + "id": "63ef17b7-e53b-4990-ba01-62749ee48418" + }, + { + "routeId": "L101", + "platformId": "U576Z1", + "id": "931498a1-c410-43a8-92af-8808daa2269b" + }, + { + "routeId": "L188", + "platformId": "U576Z1", + "id": "6609b583-2936-4f1b-8ae8-831233177505" + }, + { + "routeId": "L101", + "platformId": "U576Z2", + "id": "1c301c4b-11ba-48c9-8c5a-ad40d028c75c" + }, + { + "routeId": "L188", + "platformId": "U576Z2", + "id": "dede63a8-82bb-453d-9a93-d32d9372a0d1" + }, + { + "routeId": "L420", + "platformId": "U5773Z1", + "id": "9d57aae4-bd9d-4480-a26e-5f01d7df3e6d" + }, + { + "routeId": "L420", + "platformId": "U5773Z2", + "id": "ca43e0e1-3c9f-45ae-b513-5d1b81b78e03" + }, + { + "routeId": "L420", + "platformId": "U5774Z1", + "id": "cb8d3f3a-5f71-4093-8eb5-6cb8bc625043" + }, + { + "routeId": "L420", + "platformId": "U5774Z2", + "id": "6ca4ac35-e1e3-42f1-abc7-848a248e40f7" + }, + { + "routeId": "L420", + "platformId": "U5775Z1", + "id": "a918d206-62e3-410c-ac8c-aa61adddb7a4" + }, + { + "routeId": "L420", + "platformId": "U5775Z2", + "id": "a50bc2b9-4015-4486-8b07-23e050a35237" + }, + { + "routeId": "L754", + "platformId": "U5776Z1", + "id": "0d1f1f3d-fb01-4ac0-be49-c20a5eef973f" + }, + { + "routeId": "L754", + "platformId": "U5776Z2", + "id": "a11990fb-bf62-440c-95aa-3d5c9cec9b9c" + }, + { + "routeId": "L1760", + "platformId": "U5777Z1", + "id": "c18cc2a9-c6a5-42e9-a704-a5224fbf586f" + }, + { + "routeId": "L1760", + "platformId": "U5777Z2", + "id": "2099b343-903b-4b11-bc9a-8aed1252ebee" + }, + { + "routeId": "L792", + "platformId": "U5779Z1", + "id": "f6fb0a2c-4c06-4711-ae14-ef3eefefd4ed" + }, + { + "routeId": "L1760", + "platformId": "U5779Z1", + "id": "6235062c-f9fa-4eb0-8fb6-6137a46a8c60" + }, + { + "routeId": "L792", + "platformId": "U5779Z2", + "id": "1f61b7cd-9b16-4a49-ae6b-48dbbcec7331" + }, + { + "routeId": "L1760", + "platformId": "U5779Z2", + "id": "b7d47731-48a9-4cdf-8b4b-c87053cf5882" + }, + { + "routeId": "L792", + "platformId": "U5780Z1", + "id": "06593882-b73f-498d-b458-b20e20c813c2" + }, + { + "routeId": "L1760", + "platformId": "U5780Z1", + "id": "9f119838-91fe-42cd-950d-8fc1739a6c09" + }, + { + "routeId": "L792", + "platformId": "U5780Z2", + "id": "e6707455-a674-42d3-b534-3e272ea4e859" + }, + { + "routeId": "L1760", + "platformId": "U5780Z2", + "id": "628f9d68-b22c-4dbe-be3b-c405a794fd57" + }, + { + "routeId": "L792", + "platformId": "U5782Z1", + "id": "e629c8ac-45b5-4bb9-8d61-7f367897c16b" + }, + { + "routeId": "L1760", + "platformId": "U5782Z1", + "id": "bf225a1d-fb59-40ce-b399-109d62636817" + }, + { + "routeId": "L792", + "platformId": "U5782Z2", + "id": "dde25466-857f-49f8-a556-7305b849c8ee" + }, + { + "routeId": "L1760", + "platformId": "U5782Z2", + "id": "59eae818-8497-494a-8de5-73910d7c90d7" + }, + { + "routeId": "L792", + "platformId": "U5783Z1", + "id": "7cf102b2-814a-411a-bf0f-33e7cefb6ef5" + }, + { + "routeId": "L1760", + "platformId": "U5783Z1", + "id": "aa523e28-6026-4f11-a207-ed4b7552d706" + }, + { + "routeId": "L792", + "platformId": "U5783Z2", + "id": "9e83949a-17fd-47cc-bd1c-b463441531fd" + }, + { + "routeId": "L1760", + "platformId": "U5783Z2", + "id": "1a208a0a-3360-4adf-83fa-1c7f34b2e779" + }, + { + "routeId": "L406", + "platformId": "U5784Z1", + "id": "e734c7ed-cbab-4a75-809b-49aa2fb68443" + }, + { + "routeId": "L2843", + "platformId": "U5784Z1", + "id": "05770125-a138-4803-914e-df6e3f563ae7" + }, + { + "routeId": "L2849", + "platformId": "U5784Z1", + "id": "2c55172f-c815-4efd-b86c-c30d5d6b2561" + }, + { + "routeId": "L792", + "platformId": "U5784Z1", + "id": "40793e11-c09a-4e39-a949-75fb76a4ae83" + }, + { + "routeId": "L406", + "platformId": "U5784Z2", + "id": "d787ec83-40cd-4949-a9af-0537a64a13f5" + }, + { + "routeId": "L2843", + "platformId": "U5784Z2", + "id": "bacaedc8-d220-4b5a-86f9-754c6dd43946" + }, + { + "routeId": "L2849", + "platformId": "U5784Z2", + "id": "b86af21f-b5bd-4569-bc87-db69f88c007d" + }, + { + "routeId": "L2848", + "platformId": "U5784Z2", + "id": "b6b2ba24-1be1-42ab-b3c6-2afc619fbaae" + }, + { + "routeId": "L792", + "platformId": "U5784Z2", + "id": "dad45d28-d856-47c5-b9ce-37c32d5e72b7" + }, + { + "routeId": "L1760", + "platformId": "U5785Z1", + "id": "367d0a0b-0502-428d-aad4-38774764349f" + }, + { + "routeId": "L793", + "platformId": "U5785Z2", + "id": "63688f06-5fd1-4845-8c7a-659ca40b939a" + }, + { + "routeId": "L790", + "platformId": "U5785Z2", + "id": "e70ec2b3-8dd1-465f-9332-495ec6f04d8d" + }, + { + "routeId": "L1760", + "platformId": "U5785Z2", + "id": "f1cc6a9d-56bb-4734-a1c4-bc13b2b4d48e" + }, + { + "routeId": "L793", + "platformId": "U5786Z1", + "id": "484817c7-a342-4867-9764-1ad7bc1dc029" + }, + { + "routeId": "L790", + "platformId": "U5786Z1", + "id": "c30e4cb6-9689-40d4-950e-d1e18b83a61f" + }, + { + "routeId": "L406", + "platformId": "U5786Z1", + "id": "f12cec0b-b07c-4cec-b06e-41ee4340feb5" + }, + { + "routeId": "L1760", + "platformId": "U5786Z1", + "id": "c263e53f-9987-4e15-940f-74268ddc95c1" + }, + { + "routeId": "L790", + "platformId": "U5786Z2", + "id": "20c0ae03-6c6f-48ed-b871-8c4fdf501163" + }, + { + "routeId": "L793", + "platformId": "U5786Z2", + "id": "aba09ddd-74ec-4ab3-8669-09f161cd45f5" + }, + { + "routeId": "L406", + "platformId": "U5786Z2", + "id": "5448b692-c52e-40cd-8f6d-682e30775304" + }, + { + "routeId": "L1760", + "platformId": "U5786Z2", + "id": "1c0efaa1-38c8-45ef-beaa-f72846595359" + }, + { + "routeId": "L792", + "platformId": "U5787Z1", + "id": "895e5ba9-f353-4364-8c97-b084b6b82d02" + }, + { + "routeId": "L1760", + "platformId": "U5787Z1", + "id": "60efeb48-a41d-423b-a36d-150454ef5432" + }, + { + "routeId": "L792", + "platformId": "U5787Z2", + "id": "2a5b9b44-0720-4f16-b958-1ae0089bc511" + }, + { + "routeId": "L1760", + "platformId": "U5787Z2", + "id": "5ff7d7a7-4776-4286-8a8a-bc02d6222b06" + }, + { + "routeId": "L792", + "platformId": "U5789Z1", + "id": "9934604f-cffa-4ef5-8a0f-558d4ead355c" + }, + { + "routeId": "L1760", + "platformId": "U5789Z1", + "id": "ba87bd65-5897-4ce0-b30c-1298d94c7a48" + }, + { + "routeId": "L792", + "platformId": "U5789Z2", + "id": "646a4f5a-d207-4d24-adfb-c331a439846a" + }, + { + "routeId": "L1760", + "platformId": "U5789Z2", + "id": "d97eb5f9-c8f8-41c4-96b9-43e25567a4aa" + }, + { + "routeId": "L129", + "platformId": "U578Z1", + "id": "13d64a35-3d03-44d0-a8d2-fac09ad0f09a" + }, + { + "routeId": "L907", + "platformId": "U578Z1", + "id": "eb7d8278-c37c-4e3d-b946-cdc422cd1e48" + }, + { + "routeId": "L318", + "platformId": "U578Z1", + "id": "c09659e1-c5b2-477d-99be-e364c1dc54a9" + }, + { + "routeId": "L129", + "platformId": "U578Z2", + "id": "4f73eb56-0160-4f41-9b8a-32e6684895ab" + }, + { + "routeId": "L907", + "platformId": "U578Z2", + "id": "ffaf123d-e2b9-4082-b006-720af9d25844" + }, + { + "routeId": "L318", + "platformId": "U578Z2", + "id": "f3a0043d-077c-4988-9086-a2a26ce4c785" + }, + { + "routeId": "L792", + "platformId": "U5792Z1", + "id": "e7d3c9cd-90e2-440a-83a3-00b86d9f6708" + }, + { + "routeId": "L2848", + "platformId": "U5792Z2", + "id": "9f6b6b2e-e4c5-4d44-b740-0d52784d3c77" + }, + { + "routeId": "L792", + "platformId": "U5792Z2", + "id": "e623e072-f75a-4e3b-9f6d-0860f9c24425" + }, + { + "routeId": "L406", + "platformId": "U5793Z1", + "id": "ead25f67-d2b4-4089-a267-749c7cef3613" + }, + { + "routeId": "L2843", + "platformId": "U5793Z1", + "id": "2c951c7b-9baa-4d26-83fc-b7ab0e17a08e" + }, + { + "routeId": "L2849", + "platformId": "U5793Z1", + "id": "bd409fbc-dbc6-420c-99a2-1908e59d80a9" + }, + { + "routeId": "L406", + "platformId": "U5793Z2", + "id": "9a69c042-4046-468c-b67a-301b83e584b5" + }, + { + "routeId": "L2843", + "platformId": "U5793Z2", + "id": "9716c9c4-b26f-49a1-84f5-b278a172e431" + }, + { + "routeId": "L2849", + "platformId": "U5793Z2", + "id": "489cfd19-06fc-4148-8b69-e833da1f2913" + }, + { + "routeId": "L406", + "platformId": "U5794Z1", + "id": "65dc2a69-897d-4c7d-b0db-65108fed2f5c" + }, + { + "routeId": "L2843", + "platformId": "U5794Z1", + "id": "38bcf233-e112-4a8e-aeac-2b316e9b88c3" + }, + { + "routeId": "L2849", + "platformId": "U5794Z1", + "id": "f48c64af-19d2-441b-9272-3778c377b6bb" + }, + { + "routeId": "L406", + "platformId": "U5794Z2", + "id": "de79b73c-932c-49b1-b8ff-e0c801b1ff7e" + }, + { + "routeId": "L2843", + "platformId": "U5794Z2", + "id": "ab984a33-84aa-47b9-bd82-e4da1288b8ae" + }, + { + "routeId": "L2849", + "platformId": "U5794Z2", + "id": "4ebfa9a3-feeb-4e62-986f-1506bc99e48f" + }, + { + "routeId": "L790", + "platformId": "U5795Z1", + "id": "9adf552c-23d1-4794-8219-fc0f9f15835b" + }, + { + "routeId": "L790", + "platformId": "U5795Z2", + "id": "f43f99a0-ee31-4ddf-88ca-7e18f0a9d20b" + }, + { + "routeId": "L406", + "platformId": "U5796Z1", + "id": "81419cd9-a75b-47b8-bc53-8a8635685c7c" + }, + { + "routeId": "L406", + "platformId": "U5796Z2", + "id": "109786a7-f2ad-4c37-91ef-6bedfc9028b5" + }, + { + "routeId": "L406", + "platformId": "U5797Z1", + "id": "5c5a4f8b-239c-460e-9746-1b45a62a91ad" + }, + { + "routeId": "L406", + "platformId": "U5797Z2", + "id": "e4c4b806-0dfd-4e04-b074-6a970412b10c" + }, + { + "routeId": "L406", + "platformId": "U5798Z1", + "id": "37f49b05-7bb1-40c0-8ab9-10976642c684" + }, + { + "routeId": "L406", + "platformId": "U5798Z2", + "id": "644dfe81-b8df-46d5-b7a1-8158246c9730" + }, + { + "routeId": "L406", + "platformId": "U5799Z1", + "id": "fdac720b-05b3-473f-8515-87d45365e145" + }, + { + "routeId": "L406", + "platformId": "U5799Z2", + "id": "f17be5ca-e39c-4218-a8c0-953725df093e" + }, + { + "routeId": "L191", + "platformId": "U579Z1", + "id": "70ba3968-0fc0-440d-9cc2-f2f2000ae213" + }, + { + "routeId": "L191", + "platformId": "U579Z2", + "id": "c13768b1-dddb-41ba-a844-9cb036b01579" + }, + { + "routeId": "L149", + "platformId": "U579Z3", + "id": "2a6962cd-9abf-4227-a00c-a12088b036a6" + }, + { + "routeId": "L149", + "platformId": "U579Z4", + "id": "596723d6-8b13-4ef6-ac6a-3692c704687e" + }, + { + "routeId": "L120", + "platformId": "U57Z1", + "id": "0e76c1a5-12d6-4264-b635-9f28cbd64225" + }, + { + "routeId": "L246", + "platformId": "U57Z1", + "id": "dc009fd4-3c66-43cc-ad07-052009aa650f" + }, + { + "routeId": "L951", + "platformId": "U57Z1", + "id": "3d1e58df-7c98-43af-aaea-ab3ff891eddf" + }, + { + "routeId": "L120", + "platformId": "U57Z2", + "id": "3ee30098-89df-415e-8608-c18f5d2a4935" + }, + { + "routeId": "L246", + "platformId": "U57Z2", + "id": "51d03d13-935d-4e21-838f-04f84a9cb535" + }, + { + "routeId": "L951", + "platformId": "U57Z2", + "id": "ba4a6f44-8bd6-4e20-ab12-f19370913edc" + }, + { + "routeId": "L792", + "platformId": "U5806Z1", + "id": "b061d30c-6279-4bb2-ac5d-102b171d8017" + }, + { + "routeId": "L2848", + "platformId": "U5806Z2", + "id": "32cc5d2b-bbd8-4e98-b583-fb8360f2eebb" + }, + { + "routeId": "L792", + "platformId": "U5806Z2", + "id": "f7de971c-bf0f-44dc-92c0-86a708b67815" + }, + { + "routeId": "L9", + "platformId": "U580Z1", + "id": "c0048100-b05c-4a84-b1cd-d489b7c99d34" + }, + { + "routeId": "L10", + "platformId": "U580Z1", + "id": "c8fd8141-39d4-455e-bcfc-25003cdc04af" + }, + { + "routeId": "L16", + "platformId": "U580Z1", + "id": "ae980dc9-8752-4652-9b6d-88cd3ca20848" + }, + { + "routeId": "L98", + "platformId": "U580Z1", + "id": "0f11b560-059d-4d05-93b4-132de04b2c22" + }, + { + "routeId": "L99", + "platformId": "U580Z1", + "id": "d4b4943e-a133-4e60-99ba-22a03e25b6f9" + }, + { + "routeId": "L9", + "platformId": "U580Z2", + "id": "eece3ce1-a88e-40ad-acbb-0acc6a820022" + }, + { + "routeId": "L10", + "platformId": "U580Z2", + "id": "a065a9b1-13cb-4d35-acc8-052d7fcfdb66" + }, + { + "routeId": "L16", + "platformId": "U580Z2", + "id": "88bd782a-af99-4b91-b664-86f0a6700ae9" + }, + { + "routeId": "L98", + "platformId": "U580Z2", + "id": "a98c246f-4f30-4687-a898-3b77fd2408e2" + }, + { + "routeId": "L99", + "platformId": "U580Z2", + "id": "b2a6c111-9868-4134-a10f-4ccd134bb752" + }, + { + "routeId": "L792", + "platformId": "U5816Z1", + "id": "dfbfbd95-db85-4cb1-b7d5-144f90341609" + }, + { + "routeId": "L2848", + "platformId": "U5816Z2", + "id": "2851dd5a-1933-4ca2-968c-b7c91d4f698b" + }, + { + "routeId": "L792", + "platformId": "U5816Z2", + "id": "038d11fe-6243-4149-bfeb-ce164a90fba3" + }, + { + "routeId": "L792", + "platformId": "U5817Z1", + "id": "1f8ba683-511d-4aff-b5c1-f0d425a13cab" + }, + { + "routeId": "L2848", + "platformId": "U5817Z2", + "id": "60f4beb4-3ffe-46a9-947c-bbbf59968681" + }, + { + "routeId": "L792", + "platformId": "U5817Z2", + "id": "95a8abfa-db41-4fd6-9761-fe7b7fa037ad" + }, + { + "routeId": "L792", + "platformId": "U5818Z1", + "id": "dbbe9873-04ec-49d7-a033-f9613bebbcc3" + }, + { + "routeId": "L2848", + "platformId": "U5818Z2", + "id": "5e60984e-759a-4e9c-a0ec-bccc89bc7f24" + }, + { + "routeId": "L792", + "platformId": "U5818Z2", + "id": "37299252-198c-4268-8111-e37184520157" + }, + { + "routeId": "L792", + "platformId": "U5819Z1", + "id": "eb29359e-7a2f-4b4d-aec2-ba798cb67033" + }, + { + "routeId": "L2848", + "platformId": "U5819Z2", + "id": "57df1be3-25fe-4095-ace2-f300bcf6c520" + }, + { + "routeId": "L792", + "platformId": "U5819Z2", + "id": "2f399331-5151-4d3c-9fe6-ebcec165bf63" + }, + { + "routeId": "L152", + "platformId": "U581Z1", + "id": "9ad6e497-e605-4644-9cf2-703a3970986b" + }, + { + "routeId": "L177", + "platformId": "U581Z1", + "id": "e45fcd5e-9a92-4e1d-af43-330c4b5effc1" + }, + { + "routeId": "L200", + "platformId": "U581Z1", + "id": "79dddae0-e1d4-49f6-9c07-10d257ae0a69" + }, + { + "routeId": "L152", + "platformId": "U581Z2", + "id": "f7eb2fa6-3760-46dc-bae8-362090b189e8" + }, + { + "routeId": "L177", + "platformId": "U581Z2", + "id": "67b52493-fe98-4fda-8857-f64c7500289c" + }, + { + "routeId": "L200", + "platformId": "U581Z2", + "id": "5c09a3d7-9168-4142-a4b4-207dd0d30d78" + }, + { + "routeId": "L796", + "platformId": "U5822Z1", + "id": "2c9a2e8e-6024-4a05-98f6-84d8107cd788" + }, + { + "routeId": "L796", + "platformId": "U5822Z2", + "id": "7fd0c241-3e3e-47f5-8948-1d651f8c04aa" + }, + { + "routeId": "L796", + "platformId": "U5823Z1", + "id": "0c1225fb-86a5-4fa4-9e84-644bbce6f674" + }, + { + "routeId": "L796", + "platformId": "U5823Z2", + "id": "4549c47f-9a71-4895-91bc-5be24a710427" + }, + { + "routeId": "L796", + "platformId": "U5825Z1", + "id": "ac8c65e8-0148-4629-9951-cd856265372e" + }, + { + "routeId": "L796", + "platformId": "U5825Z2", + "id": "0f79666e-1a00-45d9-b9ad-1e34a72c9e21" + }, + { + "routeId": "L521", + "platformId": "U5826Z1", + "id": "10571510-506b-4cd0-9df4-c7bd6a5ae6b0" + }, + { + "routeId": "L521", + "platformId": "U5826Z2", + "id": "167c7dbb-674c-4641-a42f-5f2073adfd96" + }, + { + "routeId": "L521", + "platformId": "U5827Z1", + "id": "16a3ff14-9b0a-4282-a581-31c3a58af2d5" + }, + { + "routeId": "L521", + "platformId": "U5827Z2", + "id": "9bdcd3bd-0690-4dce-8295-3c1d2893887f" + }, + { + "routeId": "L521", + "platformId": "U5828Z1", + "id": "ad6dec5a-26af-4316-8478-1a76935b0018" + }, + { + "routeId": "L521", + "platformId": "U5828Z2", + "id": "770e29e5-9320-4f1c-8750-6fb20c315a7f" + }, + { + "routeId": "L234", + "platformId": "U582Z1", + "id": "dbb50f87-67ec-424a-9f85-0c4862a1eb1f" + }, + { + "routeId": "L235", + "platformId": "U582Z1", + "id": "46bb3a1e-baa1-476e-b60c-72079e900193" + }, + { + "routeId": "L236", + "platformId": "U582Z1", + "id": "9224aab6-2865-49f2-a3c1-ea39e39f2a58" + }, + { + "routeId": "L1802", + "platformId": "U582Z11", + "id": "9d2ffb93-720a-4438-a232-b716577a97d5" + }, + { + "routeId": "L234", + "platformId": "U582Z3", + "id": "e83b5790-b630-4dc2-a78f-927ac2bcb778" + }, + { + "routeId": "L235", + "platformId": "U582Z3", + "id": "fdf87334-d203-4a23-9e88-3214445000c5" + }, + { + "routeId": "L236", + "platformId": "U582Z3", + "id": "309086c6-8244-4c19-b2b7-6b2b2159a462" + }, + { + "routeId": "L790", + "platformId": "U5833Z1", + "id": "a66843fa-96cb-4b6f-a14f-72f449d3c57e" + }, + { + "routeId": "L790", + "platformId": "U5833Z2", + "id": "444533ad-d322-454d-b552-81bab1312807" + }, + { + "routeId": "L790", + "platformId": "U5834Z1", + "id": "27303feb-bc3a-4415-8476-5503efc0afa8" + }, + { + "routeId": "L790", + "platformId": "U5834Z2", + "id": "7fbbcff4-6861-4c3b-9a9e-06b1a99c7723" + }, + { + "routeId": "L790", + "platformId": "U5835Z1", + "id": "0926e631-298a-4556-8449-f1ba4f865415" + }, + { + "routeId": "L790", + "platformId": "U5835Z2", + "id": "72986c32-8756-4dff-8ab9-eb20aee256d6" + }, + { + "routeId": "L495", + "platformId": "U5836Z1", + "id": "d444b4cf-96c9-4e2c-86bc-10a64e0ece1c" + }, + { + "routeId": "L495", + "platformId": "U5836Z2", + "id": "6d00185d-9657-4d8d-ac02-98249e4cb06f" + }, + { + "routeId": "L482", + "platformId": "U5837Z1", + "id": "3c11bead-4f32-4411-908f-f830d6853a72" + }, + { + "routeId": "L482", + "platformId": "U5838Z1", + "id": "7eddc2aa-7409-46e6-a102-d522d88f7843" + }, + { + "routeId": "L482", + "platformId": "U5838Z2", + "id": "81bc33f4-6876-45ce-911b-6273c9fc097c" + }, + { + "routeId": "L450", + "platformId": "U5839Z1", + "id": "f7b0b0af-d321-4589-a8b7-55a44487d04e" + }, + { + "routeId": "L450", + "platformId": "U5839Z2", + "id": "e6646c4a-529e-4d04-b0f9-9406977f9d20" + }, + { + "routeId": "L2", + "platformId": "U583Z1", + "id": "50e18cfd-9822-44b6-a7cc-4b3dc57cc5c7" + }, + { + "routeId": "L3", + "platformId": "U583Z1", + "id": "ee8819fb-1976-4c5f-8246-d52376915cde" + }, + { + "routeId": "L17", + "platformId": "U583Z1", + "id": "cfb27151-90d4-47f4-b52d-698de645bee6" + }, + { + "routeId": "L27", + "platformId": "U583Z1", + "id": "bd5fa2af-f390-4bb4-9926-7d4875dc84e8" + }, + { + "routeId": "L92", + "platformId": "U583Z1", + "id": "6065c289-594b-4d91-8d07-27bab827e851" + }, + { + "routeId": "L2", + "platformId": "U583Z2", + "id": "e0aa7b2b-b1c5-4973-871d-f38a7b49239c" + }, + { + "routeId": "L3", + "platformId": "U583Z2", + "id": "ef0121d1-c74d-413c-89c7-65e9386bc49e" + }, + { + "routeId": "L17", + "platformId": "U583Z2", + "id": "45c824e4-1cbd-4a72-bcce-6083f52b1c3a" + }, + { + "routeId": "L27", + "platformId": "U583Z2", + "id": "49cad216-fa0f-427a-80dd-ced00d577f72" + }, + { + "routeId": "L92", + "platformId": "U583Z2", + "id": "0c0a370e-d7bf-46c3-baf3-8cb8abbb9f7d" + }, + { + "routeId": "L134", + "platformId": "U583Z4", + "id": "40d8d26c-8350-40b3-b78e-cc4e324c8a70" + }, + { + "routeId": "L134", + "platformId": "U583Z5", + "id": "f0017735-21bb-4035-933a-9f41fc9680f7" + }, + { + "routeId": "L549", + "platformId": "U5840Z1", + "id": "4feb3db9-56d7-47e0-b2d4-5f05426fa663" + }, + { + "routeId": "L549", + "platformId": "U5840Z2", + "id": "1a1fab1f-6cf6-4624-82db-62bdfa2f0e37" + }, + { + "routeId": "L450", + "platformId": "U5841Z1", + "id": "4a524e02-15d9-4b46-9d5b-951d3429f894" + }, + { + "routeId": "L549", + "platformId": "U5841Z2", + "id": "5df9631f-2e66-49e7-b7e0-2ec448ff52d7" + }, + { + "routeId": "L450", + "platformId": "U5841Z2", + "id": "19b9abae-d6fe-48e1-ba5d-7f7719c847b2" + }, + { + "routeId": "L549", + "platformId": "U5841Z3", + "id": "545c1f5a-c1f2-4d04-8a6d-b9bdc39278b2" + }, + { + "routeId": "L549", + "platformId": "U5845Z1", + "id": "1ccd2fbb-06d3-4a9d-9461-169363d0fa6e" + }, + { + "routeId": "L549", + "platformId": "U5845Z2", + "id": "703c6828-78a2-499b-a883-7794ccd608d6" + }, + { + "routeId": "L549", + "platformId": "U5848Z1", + "id": "1f3ac8d3-79fe-4814-b9c1-d6b08de1a932" + }, + { + "routeId": "L549", + "platformId": "U5848Z2", + "id": "0727f623-0df1-448e-9ccf-75442e6e4c49" + }, + { + "routeId": "L450", + "platformId": "U5849Z1", + "id": "9c6e5d89-a92d-43d8-a963-4fa315fbc8e3" + }, + { + "routeId": "L549", + "platformId": "U5849Z1", + "id": "acf4eea8-139a-4315-b403-02047e95a786" + }, + { + "routeId": "L549", + "platformId": "U5849Z2", + "id": "5edd7f67-cd5e-4e09-8ee6-eddf450d0a7f" + }, + { + "routeId": "L450", + "platformId": "U5849Z2", + "id": "68ce6e35-f0c5-4bbc-8278-3361905e8f35" + }, + { + "routeId": "L22", + "platformId": "U584Z1", + "id": "254703ed-9ec2-45e4-a026-958666d50457" + }, + { + "routeId": "L26", + "platformId": "U584Z1", + "id": "a3284fad-fd0b-41b1-b06b-00f8dd1f8f16" + }, + { + "routeId": "L97", + "platformId": "U584Z1", + "id": "07f552c4-c2a0-459f-8077-84bc0453cf55" + }, + { + "routeId": "L99", + "platformId": "U584Z1", + "id": "75b2aa92-be02-4e5e-8c25-06e300b2e118" + }, + { + "routeId": "L22", + "platformId": "U584Z2", + "id": "c0244b78-444b-4f7b-9294-aa3eaa338e3d" + }, + { + "routeId": "L26", + "platformId": "U584Z2", + "id": "7d104ab7-0e25-466e-9e29-9e481a386cb8" + }, + { + "routeId": "L97", + "platformId": "U584Z2", + "id": "1fc6969c-1508-4714-8d10-e2ac1c6ef539" + }, + { + "routeId": "L99", + "platformId": "U584Z2", + "id": "d0f670a3-a0c0-4755-b6ec-4e80ed75c2c0" + }, + { + "routeId": "L549", + "platformId": "U5850Z1", + "id": "efff7189-ede6-443f-a56e-eb58b4647c22" + }, + { + "routeId": "L770", + "platformId": "U5851Z1", + "id": "f418bb8b-0548-4764-a595-acbb1e0fb226" + }, + { + "routeId": "L770", + "platformId": "U5851Z2", + "id": "43785b34-a656-4981-9e51-f09db60226a6" + }, + { + "routeId": "L770", + "platformId": "U5852Z1", + "id": "72552fbc-42f4-48b8-b3c9-6ffe7e7372ac" + }, + { + "routeId": "L770", + "platformId": "U5852Z2", + "id": "96693e10-6666-4884-8156-679854c40360" + }, + { + "routeId": "L909", + "platformId": "U585Z1", + "id": "4496af80-ee53-4316-89d8-21625d6c1022" + }, + { + "routeId": "L171", + "platformId": "U585Z1", + "id": "f7e825eb-d317-4706-b8ca-d5a8402fad3c" + }, + { + "routeId": "L909", + "platformId": "U585Z2", + "id": "2afc27ea-d8bb-4f3a-90d0-cc9e086a6784" + }, + { + "routeId": "L171", + "platformId": "U585Z2", + "id": "7d78cf3f-05cc-4691-96d7-d2a41ef9eca2" + }, + { + "routeId": "L705", + "platformId": "U5861Z1", + "id": "d03a9e57-8fdf-4f88-b204-5be08cbd66cd" + }, + { + "routeId": "L2805", + "platformId": "U5861Z1", + "id": "13a5b734-a465-41b1-90e1-7fa954866477" + }, + { + "routeId": "L705", + "platformId": "U5861Z2", + "id": "2bdd14cd-e5b3-448f-8ec1-7f5fe0e1642c" + }, + { + "routeId": "L2805", + "platformId": "U5861Z2", + "id": "62ace873-7773-4d3f-aa00-bcb99d527d36" + }, + { + "routeId": "L2849", + "platformId": "U5863Z1", + "id": "f1389a46-0caa-4147-a1ed-cfb78299ce70" + }, + { + "routeId": "L794", + "platformId": "U5863Z1", + "id": "9be458c0-6ac0-470f-8e21-eda0c371b20c" + }, + { + "routeId": "L792", + "platformId": "U5863Z1", + "id": "6009e61b-c899-42cd-9004-8120a6cff4b1" + }, + { + "routeId": "L420", + "platformId": "U5866Z1", + "id": "3c634925-813b-49a6-91ea-f6ac1af88983" + }, + { + "routeId": "L500", + "platformId": "U5866Z1", + "id": "00ba91bc-39f0-45cf-b9d5-0677ea86ed24" + }, + { + "routeId": "L420", + "platformId": "U5866Z2", + "id": "10a96e1b-3d5a-436b-8ff3-ec62498b3d62" + }, + { + "routeId": "L500", + "platformId": "U5866Z2", + "id": "49cbb4ee-8aef-4c34-ac65-3c0b8a45cd87" + }, + { + "routeId": "L795", + "platformId": "U5868Z1", + "id": "a884b480-334d-4c4c-b0b5-6aef00c06ff0" + }, + { + "routeId": "L795", + "platformId": "U5868Z2", + "id": "4273cd62-7de7-4b08-91ee-f38737ec81b3" + }, + { + "routeId": "L5", + "platformId": "U586Z1", + "id": "8385bca3-9abe-4fe2-aea1-bffd096b6031" + }, + { + "routeId": "L9", + "platformId": "U586Z1", + "id": "47e6bed6-ee14-46d3-858f-6dee165997b1" + }, + { + "routeId": "L26", + "platformId": "U586Z1", + "id": "b6c76dc8-2d07-4c97-a281-a5943f16d197" + }, + { + "routeId": "L95", + "platformId": "U586Z1", + "id": "33fb6c64-1594-4c47-81b2-fcbe8733f82f" + }, + { + "routeId": "L5", + "platformId": "U586Z2", + "id": "d010a8e3-31f4-464f-9802-03e0961a20cb" + }, + { + "routeId": "L9", + "platformId": "U586Z2", + "id": "f8107068-453b-455d-a036-d30619b53302" + }, + { + "routeId": "L26", + "platformId": "U586Z2", + "id": "37697058-8a78-44c1-9ba7-993e53f87489" + }, + { + "routeId": "L95", + "platformId": "U586Z2", + "id": "faa7fe14-28ac-4728-a6f0-3c1e90095155" + }, + { + "routeId": "L514", + "platformId": "U5870Z1", + "id": "9dffa417-8cc3-4a46-aa90-35ba1686a490" + }, + { + "routeId": "L482", + "platformId": "U5873Z1", + "id": "1e29d127-b675-422c-8f66-67c8ffdb6d98" + }, + { + "routeId": "L482", + "platformId": "U5873Z2", + "id": "d4761238-230b-4f98-9f64-d24070887c6f" + }, + { + "routeId": "L552", + "platformId": "U5876Z1", + "id": "c58aa6dc-9c92-463b-8476-82be708badbf" + }, + { + "routeId": "L552", + "platformId": "U5876Z2", + "id": "129d75c8-4b9d-4248-9d6d-20a71a60ca3b" + }, + { + "routeId": "L450", + "platformId": "U5879Z1", + "id": "a5341dae-760d-45ab-944c-185a7ef950f5" + }, + { + "routeId": "L549", + "platformId": "U5879Z1", + "id": "81fdc3cf-355a-4f02-ba4f-bd691108f9a5" + }, + { + "routeId": "L549", + "platformId": "U5879Z2", + "id": "41c2f22c-5269-4457-bb31-898a5abbe871" + }, + { + "routeId": "L450", + "platformId": "U5879Z2", + "id": "e302b4b1-8a47-4a27-9d61-f73b8ace532e" + }, + { + "routeId": "L142", + "platformId": "U587Z1", + "id": "826c25b7-6fe1-4f17-8fe5-521fd73ee422" + }, + { + "routeId": "L184", + "platformId": "U587Z1", + "id": "45045873-36ea-43a7-ad81-b5937fa8ab95" + }, + { + "routeId": "L225", + "platformId": "U587Z1", + "id": "c9398b0f-4e7e-4a26-bf13-a2086719f120" + }, + { + "routeId": "L904", + "platformId": "U587Z1", + "id": "ad154293-7dd9-49f1-8f69-d91706cd6bfb" + }, + { + "routeId": "L401", + "platformId": "U5882Z1", + "id": "ef872963-37ad-42fd-959a-4f2a770d7f61" + }, + { + "routeId": "L452", + "platformId": "U5882Z1", + "id": "2513a947-ef63-486b-a914-ac67d79eaa62" + }, + { + "routeId": "L553", + "platformId": "U5882Z1", + "id": "cf051b93-3204-4f4c-9265-9ea573e8001c" + }, + { + "routeId": "L759", + "platformId": "U5882Z1", + "id": "c240dc98-8f8e-46de-9dea-6d5614ee043a" + }, + { + "routeId": "L754", + "platformId": "U5882Z1", + "id": "56b73778-50ef-487b-8d1a-570b94c3bd6a" + }, + { + "routeId": "L401", + "platformId": "U5882Z2", + "id": "6943c859-265d-4ff4-b79e-17d9de14e149" + }, + { + "routeId": "L452", + "platformId": "U5882Z2", + "id": "67adc70a-0faf-4209-8723-6191560fde58" + }, + { + "routeId": "L553", + "platformId": "U5882Z2", + "id": "b765a4bb-3d79-426b-9e93-379a18e2dc96" + }, + { + "routeId": "L759", + "platformId": "U5882Z2", + "id": "4635da29-10cf-4121-bfd4-a807eb3dad37" + }, + { + "routeId": "L754", + "platformId": "U5882Z2", + "id": "e272f31f-077e-451a-897b-f6f6afd42c0c" + }, + { + "routeId": "L2844", + "platformId": "U5887Z1", + "id": "33622d4c-7a80-40f3-8077-f2ec413816ab" + }, + { + "routeId": "L2844", + "platformId": "U5887Z2", + "id": "47b472f0-ea42-470f-9355-278ec4368ae4" + }, + { + "routeId": "L1760", + "platformId": "U5888Z1", + "id": "38446939-0399-4236-b39c-e78c385da591" + }, + { + "routeId": "L1760", + "platformId": "U5888Z2", + "id": "f0bfc7e2-b527-4ab9-a90f-92beff2e1eba" + }, + { + "routeId": "L2844", + "platformId": "U5889Z1", + "id": "20d3669f-52f8-451e-8a3f-b994ba900c8f" + }, + { + "routeId": "L2844", + "platformId": "U5889Z2", + "id": "cb1fbe31-b761-4baf-b660-8303bc0eaa4b" + }, + { + "routeId": "L112", + "platformId": "U588Z1", + "id": "f94814d7-e191-4816-9e07-80db23a35c28" + }, + { + "routeId": "L234", + "platformId": "U588Z1", + "id": "03cc5038-2f1a-4266-a83c-8ab7794df4fb" + }, + { + "routeId": "L2846", + "platformId": "U5893Z1", + "id": "3a5ce13c-ffe3-4b57-a45e-89b1b3f73ae4" + }, + { + "routeId": "L743", + "platformId": "U5897Z1", + "id": "fac4116e-0a3a-4e47-9ed8-370b3f0c00a9" + }, + { + "routeId": "L743", + "platformId": "U5897Z2", + "id": "5becdcba-a066-4fbb-80b2-c3b47c657280" + }, + { + "routeId": "L770", + "platformId": "U5898Z1", + "id": "183d9594-a528-47e8-9e37-56d71e1889f7" + }, + { + "routeId": "L796", + "platformId": "U5898Z1", + "id": "ed2dc574-4b0a-4fde-9ef0-bf077e065c30" + }, + { + "routeId": "L770", + "platformId": "U5898Z2", + "id": "b2edbad0-5147-4cdf-bc4c-2eecefad33d6" + }, + { + "routeId": "L796", + "platformId": "U5898Z2", + "id": "db277746-3595-42d1-a503-3f54be96648a" + }, + { + "routeId": "L188", + "platformId": "U589Z1", + "id": "d954a235-c728-4cfe-a274-5176dd3d4c4f" + }, + { + "routeId": "L134", + "platformId": "U589Z2", + "id": "7f5e848d-e62d-423b-b099-b976ecb1cdbb" + }, + { + "routeId": "L904", + "platformId": "U589Z2", + "id": "a7e0dacd-71c8-4373-b2fe-30d50c1ab735" + }, + { + "routeId": "L188", + "platformId": "U589Z3", + "id": "1ba2d192-94ed-42df-b68f-3c0eed4964e0" + }, + { + "routeId": "L134", + "platformId": "U589Z4", + "id": "332dc887-7f9b-42dc-aa98-6571629de916" + }, + { + "routeId": "L904", + "platformId": "U589Z4", + "id": "7ca5e2a0-4cb3-47bc-b9c6-bedf8e518a37" + }, + { + "routeId": "L123", + "platformId": "U58Z1", + "id": "03e99360-5441-4b0c-8941-857db539c26d" + }, + { + "routeId": "L123", + "platformId": "U58Z2", + "id": "e86e32b8-68d2-45a3-b42a-64d9aa566dff" + }, + { + "routeId": "L791", + "platformId": "U5900Z1", + "id": "b1946855-5690-43a6-ac8b-2a6097d81505" + }, + { + "routeId": "L455", + "platformId": "U5902Z1", + "id": "2e0e91a3-3b8a-4cff-a3f2-8603aaad8ed2" + }, + { + "routeId": "L455", + "platformId": "U5902Z2", + "id": "558b4ddf-345a-4fbd-a167-5274ca172ee7" + }, + { + "routeId": "L552", + "platformId": "U5903Z1", + "id": "df13543c-0052-4273-ac35-8cf02fb911d4" + }, + { + "routeId": "L795", + "platformId": "U5904Z1", + "id": "f971e002-1aa7-40d9-80e1-2bcefcab8dfd" + }, + { + "routeId": "L795", + "platformId": "U5904Z2", + "id": "34043701-9733-4d36-aabf-1336c330b5a9" + }, + { + "routeId": "L420", + "platformId": "U5909Z1", + "id": "5feb1a1b-7352-4083-92bd-093bfc1bd06b" + }, + { + "routeId": "L520", + "platformId": "U5909Z1", + "id": "be3660be-c55c-4bc4-aefa-20d7895e29f2" + }, + { + "routeId": "L520", + "platformId": "U5909Z2", + "id": "34b3c59b-570c-449a-a86b-182546c5f3c2" + }, + { + "routeId": "L420", + "platformId": "U5909Z2", + "id": "6e5edee1-244d-472c-82bf-c2edb1ee7d2e" + }, + { + "routeId": "L126", + "platformId": "U590Z1", + "id": "66b095e3-9d5a-40ac-bda8-a5391441c8f2" + }, + { + "routeId": "L170", + "platformId": "U590Z1", + "id": "f01ddf7a-d8fd-4dca-8d34-9247010c370d" + }, + { + "routeId": "L905", + "platformId": "U590Z1", + "id": "a7057f50-d139-475a-a742-d495d5f487fd" + }, + { + "routeId": "L2801", + "platformId": "U5913Z1", + "id": "87dcdd6b-a9ba-48f3-9d26-2f50add4e71b" + }, + { + "routeId": "L430", + "platformId": "U5914Z1", + "id": "a2a28d0c-72a2-49bc-9fa7-8839f9a9933c" + }, + { + "routeId": "L432", + "platformId": "U5914Z1", + "id": "24a362da-0dcd-461b-bd4e-d626a4d3a6b3" + }, + { + "routeId": "L430", + "platformId": "U5914Z2", + "id": "a464e3e9-43fb-4236-9b10-5ac90bb09bd3" + }, + { + "routeId": "L432", + "platformId": "U5914Z2", + "id": "a9590609-3d39-4653-a14a-289dfae078d4" + }, + { + "routeId": "L480", + "platformId": "U5918Z1", + "id": "9ca481cc-f38f-4cc7-bd91-24322abfca9d" + }, + { + "routeId": "L151", + "platformId": "U591Z1", + "id": "263d1016-2c86-4be0-a86a-8499e9a750d9" + }, + { + "routeId": "L151", + "platformId": "U591Z2", + "id": "f2febd5d-fced-4b6a-afbf-66b3af4e30df" + }, + { + "routeId": "L791", + "platformId": "U5920Z1", + "id": "32fd10da-f75c-45c6-8f99-4cf2c39f452e" + }, + { + "routeId": "L791", + "platformId": "U5920Z2", + "id": "774b25ee-84b1-444f-97db-c713ada09eab" + }, + { + "routeId": "L495", + "platformId": "U5922Z1", + "id": "cca235a8-c1bd-4f00-8151-8caf6c67e433" + }, + { + "routeId": "L313", + "platformId": "U5923Z1", + "id": "4610639f-d7d8-4e4f-8635-64aaf6d99155" + }, + { + "routeId": "L329", + "platformId": "U5928Z1", + "id": "9bc34059-d646-445a-9b18-5e2ab70a763a" + }, + { + "routeId": "L686", + "platformId": "U5928Z1", + "id": "81736e4e-0b7e-462a-895a-c652617ae76e" + }, + { + "routeId": "L329", + "platformId": "U5928Z2", + "id": "a2fc6a8b-3597-4825-9b43-749008f9e181" + }, + { + "routeId": "L686", + "platformId": "U5928Z2", + "id": "bbf438fc-87e7-4aa9-a547-38994411cd61" + }, + { + "routeId": "L1", + "platformId": "U592Z1", + "id": "862a0b90-8a82-41c6-b63d-a9f2cbbf532c" + }, + { + "routeId": "L2", + "platformId": "U592Z1", + "id": "8a8eff23-430f-472c-8ff9-17d001d8e878" + }, + { + "routeId": "L25", + "platformId": "U592Z1", + "id": "863ebac0-183b-453c-be70-7d02a1be0d27" + }, + { + "routeId": "L96", + "platformId": "U592Z1", + "id": "f731cc22-f15a-4436-8455-e14af09fe438" + }, + { + "routeId": "L97", + "platformId": "U592Z1", + "id": "cbb8d6c7-8915-491d-a90c-0464f19840d6" + }, + { + "routeId": "L143", + "platformId": "U592Z1", + "id": "6cc534ad-323c-444e-9e64-1d9a2e09b0b0" + }, + { + "routeId": "L149", + "platformId": "U592Z1", + "id": "113457d1-cf44-4f11-b22c-3a6f2a4948a6" + }, + { + "routeId": "L180", + "platformId": "U592Z1", + "id": "0b119169-7211-4224-b8e4-2f087594b317" + }, + { + "routeId": "L902", + "platformId": "U592Z1", + "id": "89c25141-3457-491e-b55b-2ae6e7315cba" + }, + { + "routeId": "L1", + "platformId": "U592Z2", + "id": "084f39e7-f400-42f0-a733-4642bf1d854e" + }, + { + "routeId": "L2", + "platformId": "U592Z2", + "id": "ec9cb77c-21ab-4676-b4b8-fed4af96cff6" + }, + { + "routeId": "L25", + "platformId": "U592Z2", + "id": "e9e76b94-5808-4c2d-abd2-5943368f67c5" + }, + { + "routeId": "L96", + "platformId": "U592Z2", + "id": "a043729b-2886-43a2-9937-e2bab1b606ff" + }, + { + "routeId": "L97", + "platformId": "U592Z2", + "id": "7955f303-8311-416b-b280-ff7a7a030d53" + }, + { + "routeId": "L143", + "platformId": "U592Z2", + "id": "9b445304-70c8-4902-b79a-84a1a8a3941e" + }, + { + "routeId": "L149", + "platformId": "U592Z2", + "id": "fde08142-4be3-4c28-934c-9188464a2a11" + }, + { + "routeId": "L180", + "platformId": "U592Z2", + "id": "af8b9893-a93c-44d4-92b0-962297fb0e79" + }, + { + "routeId": "L902", + "platformId": "U592Z2", + "id": "a21d304d-4a0d-4e8e-a3bd-1e194730f68a" + }, + { + "routeId": "L332", + "platformId": "U5931Z1", + "id": "84c562cc-4668-41f3-a7fd-af4ee817f0bd" + }, + { + "routeId": "L956", + "platformId": "U5931Z1", + "id": "95cac804-6150-43da-95eb-e0cc9bc7b62c" + }, + { + "routeId": "L444", + "platformId": "U5931Z1", + "id": "943de1af-7f95-4a74-b5b5-e9c27be4b11a" + }, + { + "routeId": "L341", + "platformId": "U5931Z1", + "id": "c2a900d8-b428-4668-8cc6-6b7d68a7fb63" + }, + { + "routeId": "L332", + "platformId": "U5931Z2", + "id": "269fde98-245f-46cb-adcc-98aac137d5bd" + }, + { + "routeId": "L956", + "platformId": "U5931Z2", + "id": "40d03455-f3b3-4459-9219-9de99e9026f0" + }, + { + "routeId": "L444", + "platformId": "U5931Z2", + "id": "45999060-0858-4b5a-ad7f-b9fc2b532744" + }, + { + "routeId": "L341", + "platformId": "U5931Z2", + "id": "be833220-8fcc-4792-bc88-a9312d1f6bf5" + }, + { + "routeId": "L2805", + "platformId": "U5934Z1", + "id": "9cd6d406-a3f5-4294-b3a7-22d13579e73d" + }, + { + "routeId": "L2805", + "platformId": "U5934Z2", + "id": "9178dbca-50cb-4159-b5b0-9d50e6287709" + }, + { + "routeId": "L1219", + "platformId": "U5935Z301", + "id": "78e3b529-9fe6-49ea-86ee-c01df7699025" + }, + { + "routeId": "L1218", + "platformId": "U5935Z301", + "id": "53074a22-d91d-495c-93dc-ef1b7f7ca4ac" + }, + { + "routeId": "L1310", + "platformId": "U5935Z301", + "id": "94c0fcab-7d87-4927-a356-0ebc7c9767b0" + }, + { + "routeId": "L798", + "platformId": "U5937Z1", + "id": "6a467147-e2d5-4ca5-9a93-7b7c688cb6a2" + }, + { + "routeId": "L406", + "platformId": "U5937Z1", + "id": "c7ad3a35-bd2b-4571-bf62-b03b4f011618" + }, + { + "routeId": "L791", + "platformId": "U5937Z1", + "id": "28b4a24e-53c2-429e-b4aa-6cfd8328b4d1" + }, + { + "routeId": "L455", + "platformId": "U5937Z1", + "id": "2c31ba75-4dd9-4823-bbe0-98072e83ddac" + }, + { + "routeId": "L798", + "platformId": "U5937Z2", + "id": "a34757c9-bdd9-4023-a46b-875044f39892" + }, + { + "routeId": "L406", + "platformId": "U5937Z2", + "id": "e01c58b5-a41b-4b73-8f4e-756432ee0d18" + }, + { + "routeId": "L791", + "platformId": "U5937Z2", + "id": "c6ee5e7f-edaa-4889-a51e-1b74b950d461" + }, + { + "routeId": "L455", + "platformId": "U5937Z2", + "id": "d14c19a6-0b55-46dd-a240-e4a51ce5524c" + }, + { + "routeId": "L661", + "platformId": "U5939Z1", + "id": "dc4a6fe0-7d2e-4985-b4bf-b74ac5c1e0ab" + }, + { + "routeId": "L661", + "platformId": "U5939Z2", + "id": "017ec657-5f07-4171-a6dd-8c4440d816a6" + }, + { + "routeId": "L17", + "platformId": "U593Z1", + "id": "499dd9df-d76b-42b9-ab20-331421ba71af" + }, + { + "routeId": "L27", + "platformId": "U593Z1", + "id": "bce3ff25-cada-45e1-a623-7ea279df9097" + }, + { + "routeId": "L93", + "platformId": "U593Z1", + "id": "50f094b0-9200-4ef0-bf84-d7d6a99b4d3b" + }, + { + "routeId": "L207", + "platformId": "U593Z1", + "id": "a46a7bb0-3344-473e-a0a3-922b8877af21" + }, + { + "routeId": "L17", + "platformId": "U593Z2", + "id": "2aca1eed-b497-45a2-b263-de1d8618af4b" + }, + { + "routeId": "L27", + "platformId": "U593Z2", + "id": "2f66965d-3dcf-4bcb-8e1e-9a8062f3b1d7" + }, + { + "routeId": "L93", + "platformId": "U593Z2", + "id": "264a34b6-e77c-4adc-8c19-db048e8ea230" + }, + { + "routeId": "L207", + "platformId": "U593Z2", + "id": "e09ba1b2-12da-4956-b77d-f712fa05e1fd" + }, + { + "routeId": "L501", + "platformId": "U5942Z1", + "id": "c93bf7eb-577f-4811-99eb-5218874ce6b4" + }, + { + "routeId": "L501", + "platformId": "U5942Z2", + "id": "eeba412b-33a6-47c3-97b3-8acc591b81dc" + }, + { + "routeId": "L617", + "platformId": "U5943Z1", + "id": "7ee88c85-78d0-400b-b6c4-531fa734bc8a" + }, + { + "routeId": "L617", + "platformId": "U5943Z2", + "id": "c4a68612-33df-431d-8dc3-a183649f3b96" + }, + { + "routeId": "L467", + "platformId": "U5945Z1", + "id": "83ed1ea2-88a6-4f62-a993-15b935dc1c10" + }, + { + "routeId": "L467", + "platformId": "U5945Z2", + "id": "ba8591ad-bb2f-44d0-9d9c-8e5818fdc26d" + }, + { + "routeId": "L418", + "platformId": "U5947Z1", + "id": "7cfa3322-5b91-4743-9a80-5f620aa888dd" + }, + { + "routeId": "L418", + "platformId": "U5947Z2", + "id": "7c78cab8-96dc-410a-9974-25bd7fcf8023" + }, + { + "routeId": "L418", + "platformId": "U5948Z1", + "id": "f7c356a9-3fae-4815-815c-93e7ecc0ce84" + }, + { + "routeId": "L418", + "platformId": "U5948Z2", + "id": "a7546943-1ddd-44b0-bd5d-30ecff36cb83" + }, + { + "routeId": "L418", + "platformId": "U5948Z3", + "id": "afad3379-4715-4a7d-b5ae-5f40ace25c26" + }, + { + "routeId": "L418", + "platformId": "U5948Z4", + "id": "aa990afd-7680-4dc3-8597-61b9b423c7fb" + }, + { + "routeId": "L639", + "platformId": "U5953Z1", + "id": "cd9d4a9e-7ffd-4a33-9475-177c96f9a81f" + }, + { + "routeId": "L639", + "platformId": "U5953Z2", + "id": "f56bcd63-9e82-4b62-aefd-0e363a447363" + }, + { + "routeId": "L423", + "platformId": "U5954Z1", + "id": "9aa8c2cc-7c97-4d30-86d9-71c62feb09c8" + }, + { + "routeId": "L423", + "platformId": "U5954Z2", + "id": "375ea9c2-8a53-433a-9f06-b1666ffa78b5" + }, + { + "routeId": "L556", + "platformId": "U5956Z1", + "id": "844c0811-a37e-43e3-a44a-17b2a396d63c" + }, + { + "routeId": "L451", + "platformId": "U5956Z1", + "id": "6cb6da9d-02e9-4b3c-8569-e81853694190" + }, + { + "routeId": "L550", + "platformId": "U5956Z1", + "id": "5a7149ab-8b8d-40a5-8105-33eb49a2ae8f" + }, + { + "routeId": "L451", + "platformId": "U5956Z2", + "id": "8d0d4eda-8d41-4a51-a812-74fe16f9f1e3" + }, + { + "routeId": "L550", + "platformId": "U5956Z2", + "id": "de26c764-b858-4828-9b61-228f39df6e28" + }, + { + "routeId": "L454", + "platformId": "U5957Z1", + "id": "87a3adc7-d4b4-4f32-9d2e-6b6c9289a437" + }, + { + "routeId": "L454", + "platformId": "U5957Z2", + "id": "797b4bbb-220b-4ad6-99e9-c656e864107e" + }, + { + "routeId": "L523", + "platformId": "U5958Z1", + "id": "ae72bd86-680f-447f-aa9b-a5e50e8f7e84" + }, + { + "routeId": "L523", + "platformId": "U5958Z2", + "id": "6941cd09-901e-48e8-9d9d-bd06938c2042" + }, + { + "routeId": "L523", + "platformId": "U5959Z1", + "id": "d8420828-157b-4845-8cd3-9fcf1bdcb04f" + }, + { + "routeId": "L523", + "platformId": "U5959Z2", + "id": "432ef544-701d-4fbd-8966-af175ab167b7" + }, + { + "routeId": "L1", + "platformId": "U595Z1", + "id": "c8d25966-ddec-4f23-b669-820cb653e211" + }, + { + "routeId": "L6", + "platformId": "U595Z1", + "id": "395c43a4-2b27-4280-b2ed-89292c4d4377" + }, + { + "routeId": "L17", + "platformId": "U595Z1", + "id": "cc0714e1-0643-4257-8fe7-21efda4ee5cc" + }, + { + "routeId": "L27", + "platformId": "U595Z1", + "id": "09285a6e-94ff-446f-8059-d90614118da3" + }, + { + "routeId": "L25", + "platformId": "U595Z1", + "id": "25b173e0-de99-4516-ace8-69ed1276263d" + }, + { + "routeId": "L93", + "platformId": "U595Z1", + "id": "5f690713-7446-41db-9a1e-85861d1ebd2f" + }, + { + "routeId": "L1", + "platformId": "U595Z2", + "id": "f99cd407-5652-4376-9738-e1f3e95b3de5" + }, + { + "routeId": "L6", + "platformId": "U595Z2", + "id": "20d87f2d-29a9-4f04-877b-7adaf544b745" + }, + { + "routeId": "L17", + "platformId": "U595Z2", + "id": "56815f15-3b0d-4176-9421-8aff0c615f7d" + }, + { + "routeId": "L27", + "platformId": "U595Z2", + "id": "e761d2bd-21f2-4f2f-9e32-3ba6cf8478d6" + }, + { + "routeId": "L25", + "platformId": "U595Z2", + "id": "252aebd1-de4f-4797-9e20-696a6739f8d4" + }, + { + "routeId": "L93", + "platformId": "U595Z2", + "id": "7c54a597-d2d8-41b1-bea9-557155a1fa98" + }, + { + "routeId": "L523", + "platformId": "U5960Z1", + "id": "50a7d86c-33f1-4319-9557-efefdff662c3" + }, + { + "routeId": "L523", + "platformId": "U5960Z2", + "id": "21f7d68c-c90a-4d45-95b9-9f8745d9daaa" + }, + { + "routeId": "L629", + "platformId": "U5961Z1", + "id": "1365c046-3cb0-4bb6-909d-09fc8a57f331" + }, + { + "routeId": "L622", + "platformId": "U5961Z1", + "id": "e87b4bac-93de-49b8-be7b-2b2a65b06e43" + }, + { + "routeId": "L622", + "platformId": "U5961Z2", + "id": "27954045-139c-43ff-bfe4-53f00a0112d9" + }, + { + "routeId": "L354", + "platformId": "U5964Z1", + "id": "385e42a4-cb3b-4231-aa48-b5f7d84dde1d" + }, + { + "routeId": "L737", + "platformId": "U5968Z1", + "id": "6e17cc88-83be-4f83-8340-7e3322093a43" + }, + { + "routeId": "L22", + "platformId": "U596Z1", + "id": "33185f1b-a06e-4be3-95b7-596f035b8dd5" + }, + { + "routeId": "L26", + "platformId": "U596Z1", + "id": "2f49312f-ba6f-47d9-b211-c2f87c6ab69f" + }, + { + "routeId": "L97", + "platformId": "U596Z1", + "id": "2456da8d-1652-4c60-9f2c-d4068df731c4" + }, + { + "routeId": "L22", + "platformId": "U596Z2", + "id": "9b35758e-77f2-4f2e-a823-4c810767d7e7" + }, + { + "routeId": "L26", + "platformId": "U596Z2", + "id": "bdb257a6-b3b9-4160-8854-2e19c3092d6a" + }, + { + "routeId": "L97", + "platformId": "U596Z2", + "id": "0b1cd836-6473-4f9a-ab32-d3c8b0507758" + }, + { + "routeId": "L154", + "platformId": "U596Z3", + "id": "dae0c1d5-5a02-459a-ac7b-57ff2e11066d" + }, + { + "routeId": "L177", + "platformId": "U596Z3", + "id": "321efda3-2315-4512-a47d-366a56d9fb36" + }, + { + "routeId": "L901", + "platformId": "U596Z3", + "id": "bfa6ad03-ee98-4693-8d5d-01109d00e406" + }, + { + "routeId": "L906", + "platformId": "U596Z3", + "id": "0728a79a-18c4-4c8c-ae4e-046bd85bbd4a" + }, + { + "routeId": "L154", + "platformId": "U596Z4", + "id": "de7c6da7-d4bf-44d2-af59-532b69593c63" + }, + { + "routeId": "L177", + "platformId": "U596Z4", + "id": "5b180646-447d-442c-80b8-5c9ce3824ff1" + }, + { + "routeId": "L901", + "platformId": "U596Z4", + "id": "cd664741-0ffe-4cd5-aa2d-30eba2c75065" + }, + { + "routeId": "L906", + "platformId": "U596Z4", + "id": "f6dece56-bfd4-46b2-adf3-ff97858d0066" + }, + { + "routeId": "L18", + "platformId": "U597Z1", + "id": "235acf67-7d2b-40db-8fca-d02a74382084" + }, + { + "routeId": "L19", + "platformId": "U597Z1", + "id": "4925bff9-245f-48d0-8278-c54379692ad6" + }, + { + "routeId": "L93", + "platformId": "U597Z1", + "id": "9e607c71-a405-4d66-9999-23fbda51da15" + }, + { + "routeId": "L193", + "platformId": "U597Z1", + "id": "6edf1c1d-ba18-4408-a997-8fd1243eefd7" + }, + { + "routeId": "L993", + "platformId": "U597Z101", + "id": "d73fd6fa-b454-43dc-a363-b90fcb4136a5" + }, + { + "routeId": "L993", + "platformId": "U597Z102", + "id": "14f90f47-af59-446c-9ece-f0aab0e24d41" + }, + { + "routeId": "L18", + "platformId": "U597Z2", + "id": "c7336059-d7d9-4252-8ade-cd2e97546006" + }, + { + "routeId": "L19", + "platformId": "U597Z2", + "id": "61c43c43-b03e-4309-89d0-977209d52334" + }, + { + "routeId": "L93", + "platformId": "U597Z2", + "id": "f3e8c0a9-bce9-4bda-b300-71487f0e3e7b" + }, + { + "routeId": "L134", + "platformId": "U597Z3", + "id": "8fac4e32-c93f-481c-850d-628d7c9c0e35" + }, + { + "routeId": "L193", + "platformId": "U597Z3", + "id": "b10f7098-33ba-48cd-a6ad-a7c62ecf69af" + }, + { + "routeId": "L904", + "platformId": "U597Z3", + "id": "39c74761-00f7-42eb-8def-9c1c2bcded49" + }, + { + "routeId": "L904", + "platformId": "U597Z4", + "id": "57c6b0d9-af70-4adb-b4c6-2d86079fe7c6" + }, + { + "routeId": "L193", + "platformId": "U597Z5", + "id": "78183d6d-106d-4485-b8c2-53f4f156797c" + }, + { + "routeId": "L905", + "platformId": "U597Z5", + "id": "b39743a7-e28e-4d10-bcf3-6c63065c16d8" + }, + { + "routeId": "L910", + "platformId": "U597Z5", + "id": "e9180f01-7732-46c9-89aa-36447eb11911" + }, + { + "routeId": "L904", + "platformId": "U597Z7", + "id": "6ba47100-9797-4a04-965c-61b1a36bb492" + }, + { + "routeId": "L905", + "platformId": "U597Z7", + "id": "30df13e8-4375-49a5-a397-14e131ee9905" + }, + { + "routeId": "L910", + "platformId": "U597Z7", + "id": "5322f74f-5cef-41e6-90de-eddc01c68039" + }, + { + "routeId": "L134", + "platformId": "U597Z9", + "id": "9c26271b-c164-44f2-8b0b-6ee30d720562" + }, + { + "routeId": "L22", + "platformId": "U598Z1", + "id": "c533d928-11db-4755-8789-3465fc8cb89e" + }, + { + "routeId": "L23", + "platformId": "U598Z1", + "id": "49732594-2919-4bb1-a3da-288833754097" + }, + { + "routeId": "L22", + "platformId": "U598Z2", + "id": "d44b7925-c8bc-419c-8256-e19a6420c49c" + }, + { + "routeId": "L23", + "platformId": "U598Z2", + "id": "9e6d2ee3-4815-4522-8a5c-49c68fd1e999" + }, + { + "routeId": "L22", + "platformId": "U599Z1", + "id": "b5eb873b-a47b-458c-a3f0-b1dde2855ef6" + }, + { + "routeId": "L26", + "platformId": "U599Z1", + "id": "a60d2a7b-f882-4e12-a212-ce0b4c6c7fc6" + }, + { + "routeId": "L91", + "platformId": "U599Z1", + "id": "5035280f-8d77-406f-888f-284bc7aa601a" + }, + { + "routeId": "L97", + "platformId": "U599Z1", + "id": "6b6ddc26-4c34-4d4a-b698-2b3f332a881e" + }, + { + "routeId": "L99", + "platformId": "U599Z1", + "id": "dfcbe958-c16e-4fae-8078-5a4fed7568b2" + }, + { + "routeId": "L154", + "platformId": "U599Z1", + "id": "75222e2e-d594-4f5b-b486-f2074ce65fa8" + }, + { + "routeId": "L188", + "platformId": "U599Z1", + "id": "c3c82b03-8103-455b-8f2f-12c72965a2ba" + }, + { + "routeId": "L901", + "platformId": "U599Z1", + "id": "8983b89a-7691-47aa-b4e4-d04b039661c2" + }, + { + "routeId": "L906", + "platformId": "U599Z1", + "id": "bd1ec7f8-1531-4c8d-b218-fce93a038e4d" + }, + { + "routeId": "L22", + "platformId": "U599Z2", + "id": "89cbbd32-42d0-42fa-b10c-8b3e0d56fec7" + }, + { + "routeId": "L26", + "platformId": "U599Z2", + "id": "ca1db784-a501-4e22-955c-fc517af80a1f" + }, + { + "routeId": "L91", + "platformId": "U599Z2", + "id": "8bb0d788-132f-45be-95ba-d58de7788a40" + }, + { + "routeId": "L97", + "platformId": "U599Z2", + "id": "bbabaf25-5a05-4b4f-b1e4-19d7f09e735d" + }, + { + "routeId": "L99", + "platformId": "U599Z2", + "id": "0aa4e4e6-b1a9-450f-8250-97f717777998" + }, + { + "routeId": "L154", + "platformId": "U599Z2", + "id": "61b1a2e8-4235-4607-875d-ab5aba140c80" + }, + { + "routeId": "L188", + "platformId": "U599Z2", + "id": "14afb945-fed8-4687-b1e5-887d75b95b48" + }, + { + "routeId": "L901", + "platformId": "U599Z2", + "id": "04f0892e-ae80-4367-b982-9677108fb344" + }, + { + "routeId": "L906", + "platformId": "U599Z2", + "id": "0bdb12c0-6a19-49b0-a393-f0d9433646f5" + }, + { + "routeId": "L246", + "platformId": "U59Z1", + "id": "ea5b8b3b-bf26-444b-b6dc-3f2783a167be" + }, + { + "routeId": "L246", + "platformId": "U59Z2", + "id": "11da0959-f7fc-48b1-ab67-62892ad66a95" + }, + { + "routeId": "L224", + "platformId": "U6001Z1", + "id": "a683c49e-bd71-4fd2-8833-52734159a08f" + }, + { + "routeId": "L224", + "platformId": "U6001Z2", + "id": "e8269321-b57a-4f26-ad79-5b3b58f01547" + }, + { + "routeId": "L204", + "platformId": "U6004Z1", + "id": "e3bff7ee-c104-4432-959b-fe5c943b8c33" + }, + { + "routeId": "L204", + "platformId": "U6004Z2", + "id": "edf5ca1f-c693-49da-b882-10dfca1720af" + }, + { + "routeId": "L224", + "platformId": "U6005Z1", + "id": "99301203-fba8-4c8c-947d-a2a8299b0fde" + }, + { + "routeId": "L224", + "platformId": "U6005Z2", + "id": "7de3c331-dd68-4e28-bf2b-e1aaea6ec67b" + }, + { + "routeId": "L224", + "platformId": "U6006Z1", + "id": "4ef49220-bc53-4aaa-b531-f4e20836e0ac" + }, + { + "routeId": "L224", + "platformId": "U6006Z2", + "id": "3ee69846-ee38-4eb5-812a-9bf0f4456d44" + }, + { + "routeId": "L247", + "platformId": "U600Z1", + "id": "00bec5c6-2c5c-4ec6-8a04-f8aea1f21855" + }, + { + "routeId": "L246", + "platformId": "U600Z1", + "id": "9cc2cc8b-3b21-4181-9b0b-45aa07275abe" + }, + { + "routeId": "L247", + "platformId": "U600Z2", + "id": "4f480c7b-8aba-46c3-a7bf-a8580f321461" + }, + { + "routeId": "L246", + "platformId": "U600Z2", + "id": "24372855-075d-4e89-89ab-41623dc7b918" + }, + { + "routeId": "L244", + "platformId": "U600Z3", + "id": "4f963685-eb92-48ca-8083-58ccf1470632" + }, + { + "routeId": "L244", + "platformId": "U600Z4", + "id": "900b6651-2eae-4788-8e88-8cb4e29f84a3" + }, + { + "routeId": "L223", + "platformId": "U6010Z1", + "id": "cf8419c9-6f71-4f2a-855d-e3f6aa48163b" + }, + { + "routeId": "L224", + "platformId": "U6010Z1", + "id": "3cca6339-ffde-4419-8586-af39b62c08fe" + }, + { + "routeId": "L223", + "platformId": "U6010Z2", + "id": "8e9166ff-edd6-4aa5-844a-30b196c05a09" + }, + { + "routeId": "L224", + "platformId": "U6010Z2", + "id": "934eaf08-a9f5-4c45-b275-12f344010152" + }, + { + "routeId": "L705", + "platformId": "U6018Z1", + "id": "e64da0cd-6154-499f-8f48-4427539429b6" + }, + { + "routeId": "L535", + "platformId": "U6018Z1", + "id": "7595a4f0-fee3-4635-947d-ebc515b3a7e5" + }, + { + "routeId": "L536", + "platformId": "U6018Z1", + "id": "f47bb5f4-cda0-4381-896b-741ff9b201e1" + }, + { + "routeId": "L681", + "platformId": "U6018Z1", + "id": "215c4dee-425b-46bc-a8b9-880aae3c2743" + }, + { + "routeId": "L679", + "platformId": "U6018Z1", + "id": "11300fc1-6c52-4765-9d6f-33bd2bb77d4b" + }, + { + "routeId": "L487", + "platformId": "U6018Z1", + "id": "0c02967e-e8ee-41c0-93c0-42ef8d9a6951" + }, + { + "routeId": "L422", + "platformId": "U6018Z1", + "id": "240e812d-1890-4be5-8616-9a094c6b97d3" + }, + { + "routeId": "L424", + "platformId": "U6018Z1", + "id": "c9b1604a-ee3a-4f6e-9114-9e26a4fdfc83" + }, + { + "routeId": "L421", + "platformId": "U6018Z1", + "id": "de25c3a1-6852-425f-b4f7-c2eb5eb9c828" + }, + { + "routeId": "L706", + "platformId": "U6018Z1", + "id": "2e0d2c36-71b5-4f23-82d9-88059059fbf3" + }, + { + "routeId": "L461", + "platformId": "U6019Z1", + "id": "85dd13a5-a1cb-40bf-a650-9a7b149f10f7" + }, + { + "routeId": "L461", + "platformId": "U6019Z2", + "id": "7fd30406-83c0-44d6-b1ee-b268de7bce2d" + }, + { + "routeId": "L135", + "platformId": "U601Z1", + "id": "58e11952-c319-4162-a4b1-cc852066e0e7" + }, + { + "routeId": "L197", + "platformId": "U601Z1", + "id": "c904578c-e1d9-426f-88be-5984c885719a" + }, + { + "routeId": "L911", + "platformId": "U601Z1", + "id": "2b256117-b590-4eee-a7b8-d2f693d3a0d3" + }, + { + "routeId": "L203", + "platformId": "U601Z1", + "id": "44cc21cd-f328-4889-9c61-ef21ecd6302f" + }, + { + "routeId": "L993", + "platformId": "U601Z101", + "id": "3abda3bd-13ee-4de0-b972-b56145746b02" + }, + { + "routeId": "L993", + "platformId": "U601Z102", + "id": "73dab38d-12b0-4eda-b22e-c0529bb897c3" + }, + { + "routeId": "L406", + "platformId": "U601Z2", + "id": "e53c9ca8-a033-4d11-87d6-4de974d7a69d" + }, + { + "routeId": "L401", + "platformId": "U601Z2", + "id": "ed4eeecd-da74-492c-b16d-8ed530f84208" + }, + { + "routeId": "L402", + "platformId": "U601Z2", + "id": "adeb07fd-b774-4c37-97ee-31d27668cd5f" + }, + { + "routeId": "L197", + "platformId": "U601Z21", + "id": "e1c681b5-a6e8-4334-8e9c-61b60ea22995" + }, + { + "routeId": "L406", + "platformId": "U601Z21", + "id": "31e8a1bd-1f07-44ad-bb7f-ebd718cd21c3" + }, + { + "routeId": "L401", + "platformId": "U601Z21", + "id": "633d7507-2530-4816-b95f-99b20032c0fe" + }, + { + "routeId": "L402", + "platformId": "U601Z21", + "id": "9e8aefeb-b037-4738-83a1-5c7208864d9f" + }, + { + "routeId": "L135", + "platformId": "U601Z3", + "id": "ea8d3383-4a86-4fde-b6c3-29cbb189b947" + }, + { + "routeId": "L203", + "platformId": "U601Z3", + "id": "e0e69c89-e41c-4fb5-bac8-9fb932ed8e2b" + }, + { + "routeId": "L487", + "platformId": "U6022Z1", + "id": "a217c8fe-8976-4f31-a174-86daa0fc473f" + }, + { + "routeId": "L487", + "platformId": "U6022Z2", + "id": "d1e352ed-7137-4a0b-904e-6c33f97169fd" + }, + { + "routeId": "L487", + "platformId": "U6023Z1", + "id": "8290f470-77af-41ae-8843-79597ebe2bec" + }, + { + "routeId": "L487", + "platformId": "U6023Z2", + "id": "acd55573-2d6e-4414-bf56-2878dc2e8b9e" + }, + { + "routeId": "L487", + "platformId": "U6024Z1", + "id": "6262ba4d-444b-47e3-85d4-904f77cb5288" + }, + { + "routeId": "L487", + "platformId": "U6025Z1", + "id": "ae0b481e-362c-4e1f-b3cf-5e0729dc5584" + }, + { + "routeId": "L487", + "platformId": "U6025Z2", + "id": "7245500b-3a53-46df-b64a-e6d9fe74550d" + }, + { + "routeId": "L487", + "platformId": "U6026Z1", + "id": "4ba03750-d6e8-4a0c-8e1a-94787ec8c976" + }, + { + "routeId": "L487", + "platformId": "U6026Z2", + "id": "6ce29e56-7967-44c6-9520-9c571ba59bcb" + }, + { + "routeId": "L487", + "platformId": "U6027Z1", + "id": "5ab29b26-cf3d-4e71-bfac-c21a4a3fd363" + }, + { + "routeId": "L487", + "platformId": "U6027Z2", + "id": "e1f23d71-f73f-4194-b0fa-bc989e7a0ac9" + }, + { + "routeId": "L487", + "platformId": "U6028Z1", + "id": "c3139b51-3902-47c4-ae97-df5f9a75934b" + }, + { + "routeId": "L487", + "platformId": "U6029Z1", + "id": "4126b032-ffc6-4d68-b395-5152aa9507a3" + }, + { + "routeId": "L487", + "platformId": "U6029Z2", + "id": "9f3df213-ee25-4c48-9c21-0e567ae3cf45" + }, + { + "routeId": "L142", + "platformId": "U602Z1", + "id": "5b296104-f071-414f-896c-654df41d120a" + }, + { + "routeId": "L168", + "platformId": "U602Z1", + "id": "c93a9625-fa4a-42e1-b478-6c15328ef4f0" + }, + { + "routeId": "L394", + "platformId": "U602Z1", + "id": "6ada6a8d-d51e-403f-ba3a-dc699ba5889b" + }, + { + "routeId": "L992", + "platformId": "U602Z101", + "id": "9ff5b553-38e0-48a0-9e4c-7bbc68d5938e" + }, + { + "routeId": "L992", + "platformId": "U602Z102", + "id": "95c56cc6-dee9-4301-817c-1641f9f98553" + }, + { + "routeId": "L149", + "platformId": "U602Z4", + "id": "ae3b0f54-7241-4885-af35-ea6135421402" + }, + { + "routeId": "L168", + "platformId": "U602Z4", + "id": "6f3f3582-2b72-4358-92a8-3971ae333bee" + }, + { + "routeId": "L184", + "platformId": "U602Z4", + "id": "d3a8089f-d225-4348-9417-724a01802b14" + }, + { + "routeId": "L904", + "platformId": "U602Z4", + "id": "6fab2c9e-5dde-4424-bd26-4951b1010afc" + }, + { + "routeId": "L904", + "platformId": "U602Z5", + "id": "80576cd5-ce1e-4d27-b027-656e79489be7" + }, + { + "routeId": "L142", + "platformId": "U602Z7", + "id": "05612c50-21db-4692-950d-e85512211b03" + }, + { + "routeId": "L149", + "platformId": "U602Z7", + "id": "a374340c-8082-486e-9d4f-ef79aecd71c3" + }, + { + "routeId": "L168", + "platformId": "U602Z7", + "id": "9c8eec5f-8b33-49ca-80e6-a70705d1dce4" + }, + { + "routeId": "L184", + "platformId": "U602Z7", + "id": "ab0e8bd1-89e3-400a-8e9a-cb67d44ab2b8" + }, + { + "routeId": "L487", + "platformId": "U6030Z1", + "id": "66c199d1-0ef3-42fe-8e64-d2ce54339552" + }, + { + "routeId": "L487", + "platformId": "U6030Z2", + "id": "199834e3-7a9d-4b1b-a0b4-2d941ffee54d" + }, + { + "routeId": "L487", + "platformId": "U6031Z1", + "id": "ad5939d4-d749-47ed-a09b-72b2212c5954" + }, + { + "routeId": "L487", + "platformId": "U6031Z2", + "id": "00d5ae79-7f29-4ead-9fae-a72b9d24ff47" + }, + { + "routeId": "L2844", + "platformId": "U6032Z1", + "id": "e8db1bb1-9fa0-4034-bd38-d903a5e79f74" + }, + { + "routeId": "L487", + "platformId": "U6032Z1", + "id": "f1f63a6d-1353-4c44-ab4c-9ea6db6b1cf5" + }, + { + "routeId": "L795", + "platformId": "U6032Z1", + "id": "3d97a781-3c1c-4044-a70e-94221dd945c4" + }, + { + "routeId": "L487", + "platformId": "U6032Z2", + "id": "cefe9b1d-f497-430b-82ec-1689387ef54d" + }, + { + "routeId": "L2844", + "platformId": "U6032Z2", + "id": "81413df7-08d9-4138-a524-962814bd2964" + }, + { + "routeId": "L795", + "platformId": "U6032Z2", + "id": "d43acf32-9ca5-4261-a370-55e5ea20ee4b" + }, + { + "routeId": "L2844", + "platformId": "U6034Z1", + "id": "d6537bf7-c41a-4171-8ec5-db222d60e411" + }, + { + "routeId": "L487", + "platformId": "U6034Z1", + "id": "2a727957-5b63-4193-a624-5eaa67326834" + }, + { + "routeId": "L795", + "platformId": "U6034Z1", + "id": "88eb3634-1ef4-45c0-b8ff-98c8794a0d6b" + }, + { + "routeId": "L487", + "platformId": "U6034Z2", + "id": "d37f81bb-18a2-4a9f-80b7-51bd32bb3999" + }, + { + "routeId": "L2844", + "platformId": "U6034Z2", + "id": "82ffc844-af9b-43ee-bdaa-e0fcd146ed8a" + }, + { + "routeId": "L795", + "platformId": "U6034Z2", + "id": "09a57f70-eb71-4f33-8a09-79a01bdc8c43" + }, + { + "routeId": "L2844", + "platformId": "U6035Z1", + "id": "9c5a8319-0245-4a3d-96e3-6f2e5a848e35" + }, + { + "routeId": "L487", + "platformId": "U6035Z1", + "id": "f93968aa-f9cd-49e4-9ab2-3da2108b4346" + }, + { + "routeId": "L795", + "platformId": "U6035Z1", + "id": "75778fb8-df46-4196-ad57-8109e2c1a5d0" + }, + { + "routeId": "L487", + "platformId": "U6035Z2", + "id": "8158cda8-1766-446f-a317-bf08cf8c74da" + }, + { + "routeId": "L2844", + "platformId": "U6035Z2", + "id": "30dfbfc9-d12d-44a2-a17c-61288b454074" + }, + { + "routeId": "L795", + "platformId": "U6035Z2", + "id": "d1aa0093-96ee-4b75-91c8-7977ee4671ae" + }, + { + "routeId": "L2844", + "platformId": "U6036Z1", + "id": "12592946-def5-430a-abcc-25bf9db633a9" + }, + { + "routeId": "L487", + "platformId": "U6036Z1", + "id": "8458b960-e1ba-48d0-883e-940b41502521" + }, + { + "routeId": "L795", + "platformId": "U6036Z1", + "id": "a879df89-a0cd-4e38-87ed-3e58d284afe3" + }, + { + "routeId": "L487", + "platformId": "U6036Z2", + "id": "ae488835-0d96-4c5d-bc92-2a005008ee70" + }, + { + "routeId": "L2844", + "platformId": "U6036Z2", + "id": "03f5864c-bac7-49dc-bde4-cd96d6e2bf41" + }, + { + "routeId": "L795", + "platformId": "U6036Z2", + "id": "6de803aa-7227-44b0-a60f-4afbc17a14b6" + }, + { + "routeId": "L2844", + "platformId": "U6037Z1", + "id": "7c12dfca-69e9-411d-b9a2-994bf6dd4267" + }, + { + "routeId": "L487", + "platformId": "U6037Z1", + "id": "ea7fcf4e-d489-4ce3-9f5d-d1f6880bdceb" + }, + { + "routeId": "L795", + "platformId": "U6037Z1", + "id": "996730b4-04c3-42e8-962f-f9f5b376c791" + }, + { + "routeId": "L487", + "platformId": "U6037Z2", + "id": "2dd439bb-426c-423c-8d20-e7112509485a" + }, + { + "routeId": "L2844", + "platformId": "U6037Z2", + "id": "5b1f3857-bcf9-4422-aadd-ca0fd9548b28" + }, + { + "routeId": "L795", + "platformId": "U6037Z2", + "id": "82534109-1798-448c-b40d-34dfdbda5ae9" + }, + { + "routeId": "L2844", + "platformId": "U6038Z1", + "id": "0195e387-dc1c-42ef-8e9e-8edd7a8619ce" + }, + { + "routeId": "L487", + "platformId": "U6038Z1", + "id": "b94e0db4-0f58-4dfe-8141-0574e0fac5f8" + }, + { + "routeId": "L795", + "platformId": "U6038Z1", + "id": "680e0724-f849-49f1-82f5-8748cc22de5f" + }, + { + "routeId": "L487", + "platformId": "U6038Z2", + "id": "8a23db6d-6cda-4a1f-8264-f63e907e621b" + }, + { + "routeId": "L2844", + "platformId": "U6038Z2", + "id": "93823240-471d-4f66-a4b2-5a58ca0a2b43" + }, + { + "routeId": "L795", + "platformId": "U6038Z2", + "id": "12ddcbb9-894e-4972-8ad2-c25fc1d591a7" + }, + { + "routeId": "L2844", + "platformId": "U6039Z1", + "id": "8e0d4367-0f34-4883-886c-8751ce648e48" + }, + { + "routeId": "L487", + "platformId": "U6039Z1", + "id": "d131676e-8882-4e43-a9c5-8089f34bf97c" + }, + { + "routeId": "L795", + "platformId": "U6039Z1", + "id": "1715bd0d-223f-4b18-abd1-add457cb5646" + }, + { + "routeId": "L1760", + "platformId": "U6039Z1", + "id": "78d9efd4-40d8-41fd-8d2c-de84338fbab9" + }, + { + "routeId": "L136", + "platformId": "U603Z1", + "id": "204588ba-ba40-4e01-bfe6-51a747760462" + }, + { + "routeId": "L195", + "platformId": "U603Z1", + "id": "d79d494d-8432-4e19-b43f-0867f623bd25" + }, + { + "routeId": "L911", + "platformId": "U603Z1", + "id": "d0d11cc3-07dd-4518-8be4-9d98cd8241f0" + }, + { + "routeId": "L916", + "platformId": "U603Z1", + "id": "685bcaf0-638a-40e1-beff-acc84c958b6f" + }, + { + "routeId": "L375", + "platformId": "U603Z1", + "id": "f7cd1140-2628-4a24-9e6a-ac3a3778c0f3" + }, + { + "routeId": "L58", + "platformId": "U603Z1", + "id": "07171c7a-f6dc-49fa-86bc-2f46207bff2a" + }, + { + "routeId": "L993", + "platformId": "U603Z101", + "id": "4df2f9de-79c1-4270-ae34-05f5c39c877d" + }, + { + "routeId": "L993", + "platformId": "U603Z102", + "id": "d01c8db0-0315-4e2d-914c-b3bbde62477d" + }, + { + "routeId": "L136", + "platformId": "U603Z2", + "id": "29907e01-f2c2-4877-95b9-f1085b112abd" + }, + { + "routeId": "L195", + "platformId": "U603Z2", + "id": "6c104e29-3636-4a3f-b0c8-bee46bac179c" + }, + { + "routeId": "L916", + "platformId": "U603Z2", + "id": "680859ff-7acb-45ec-ac5f-661d142993cb" + }, + { + "routeId": "L911", + "platformId": "U603Z2", + "id": "581750f6-93ef-4286-83a3-67762b773add" + }, + { + "routeId": "L375", + "platformId": "U603Z2", + "id": "bb376ab3-91e7-45a2-b323-241769640131" + }, + { + "routeId": "L58", + "platformId": "U603Z2", + "id": "7e76fb7e-5b0c-4a06-bf18-830999448da2" + }, + { + "routeId": "L151", + "platformId": "U603Z3", + "id": "b6fbae7d-52ea-4cf7-af53-ae834151f768" + }, + { + "routeId": "L152", + "platformId": "U603Z3", + "id": "75a3904b-4ce6-47ee-b7c0-073d2a03e9e2" + }, + { + "routeId": "L177", + "platformId": "U603Z3", + "id": "0342485b-7a05-4515-9eb3-512e834ce4e3" + }, + { + "routeId": "L183", + "platformId": "U603Z3", + "id": "4533e91c-2f26-4c62-af40-6be189a4f0dd" + }, + { + "routeId": "L911", + "platformId": "U603Z3", + "id": "16abe49e-412a-41ad-8802-bc3d447eb8b2" + }, + { + "routeId": "L913", + "platformId": "U603Z3", + "id": "3a0477ed-e381-4c93-9ac0-cea936a38ed5" + }, + { + "routeId": "L151", + "platformId": "U603Z4", + "id": "5bb34daa-a39d-4b62-8b88-2f5886e81eac" + }, + { + "routeId": "L152", + "platformId": "U603Z4", + "id": "649e1653-b9d7-4906-9d50-5e368ce92ec4" + }, + { + "routeId": "L177", + "platformId": "U603Z4", + "id": "341d2a4b-fabf-4a52-81a0-b03c578be199" + }, + { + "routeId": "L183", + "platformId": "U603Z4", + "id": "7eb8c1a2-d943-44ac-9eaa-1f0a209ab486" + }, + { + "routeId": "L911", + "platformId": "U603Z4", + "id": "0a05bda2-d31e-40f6-9444-241f0ea6dcfa" + }, + { + "routeId": "L913", + "platformId": "U603Z4", + "id": "700e9a7b-2c7a-409c-958a-84258fe8007d" + }, + { + "routeId": "L151", + "platformId": "U603Z5", + "id": "68f43600-c578-4d6c-abf3-175a0fceb15c" + }, + { + "routeId": "L166", + "platformId": "U603Z5", + "id": "39467dde-1448-4d8e-bffb-06eb80bf25bd" + }, + { + "routeId": "L151", + "platformId": "U603Z6", + "id": "0d9fb4a6-a51b-4f1d-9306-389931c86f37" + }, + { + "routeId": "L166", + "platformId": "U603Z6", + "id": "bdf811e8-b4e4-417f-9d30-46e44a35e992" + }, + { + "routeId": "L2844", + "platformId": "U6042Z1", + "id": "960847b9-2890-488a-a7c9-6e608278e235" + }, + { + "routeId": "L487", + "platformId": "U6042Z1", + "id": "d8b07d32-c680-4644-8474-709e05c43a78" + }, + { + "routeId": "L795", + "platformId": "U6042Z1", + "id": "cac8b6ef-fd01-410d-93e4-4038131aa1cf" + }, + { + "routeId": "L1760", + "platformId": "U6042Z1", + "id": "eed0ff8c-6abd-470c-a6e6-caf6f084addb" + }, + { + "routeId": "L487", + "platformId": "U6042Z2", + "id": "6f6f08d6-37c4-476c-b588-a1981309723a" + }, + { + "routeId": "L2844", + "platformId": "U6042Z2", + "id": "ba64b7cd-9472-48fd-94f0-eede5276b0f1" + }, + { + "routeId": "L795", + "platformId": "U6042Z2", + "id": "affd2270-d18a-4395-99b5-eee6b4636dd3" + }, + { + "routeId": "L1760", + "platformId": "U6042Z2", + "id": "251883a9-0487-4a31-b5d8-806566636d44" + }, + { + "routeId": "L793", + "platformId": "U6042Z3", + "id": "e23f7eab-e6fa-4312-ac95-69f7070aea1b" + }, + { + "routeId": "L790", + "platformId": "U6042Z3", + "id": "d218c4f5-10f0-48c4-8726-bf8443e2c837" + }, + { + "routeId": "L406", + "platformId": "U6042Z3", + "id": "e46315ea-44e9-41f7-9f06-94b1e4ce06b9" + }, + { + "routeId": "L1760", + "platformId": "U6042Z3", + "id": "b00f0506-292e-4000-991d-ba54b22cc183" + }, + { + "routeId": "L790", + "platformId": "U6042Z4", + "id": "778b0d6c-63d3-4c72-a197-2fa588de8c61" + }, + { + "routeId": "L793", + "platformId": "U6042Z4", + "id": "934b041a-9344-45a7-abb5-2a060bf120e8" + }, + { + "routeId": "L406", + "platformId": "U6042Z4", + "id": "6f830783-f1fc-4d3a-a983-939f0057ba71" + }, + { + "routeId": "L487", + "platformId": "U6042Z4", + "id": "8ee5a88d-d024-4a48-b230-e23c395335d1" + }, + { + "routeId": "L2844", + "platformId": "U6042Z4", + "id": "f8230f29-35d7-4483-b08d-d582ef0fd5f6" + }, + { + "routeId": "L795", + "platformId": "U6042Z4", + "id": "b489a514-1bff-423f-bf3e-2bd50da9e53d" + }, + { + "routeId": "L1760", + "platformId": "U6042Z4", + "id": "2ade6034-a710-43e7-afa7-a21fc803ab47" + }, + { + "routeId": "L406", + "platformId": "U6043Z1", + "id": "98df9313-7977-438c-a425-b1ee09533f43" + }, + { + "routeId": "L2844", + "platformId": "U6043Z1", + "id": "f9077367-ac95-43df-a192-c451113b9e91" + }, + { + "routeId": "L487", + "platformId": "U6043Z1", + "id": "25cdfdec-aa78-4670-be2f-26cfafd5bc78" + }, + { + "routeId": "L795", + "platformId": "U6043Z1", + "id": "6dd24f19-e164-4d5c-b56f-5fa64576493a" + }, + { + "routeId": "L1760", + "platformId": "U6043Z1", + "id": "302d9a6d-59f4-4cbd-b7de-1c08c9158562" + }, + { + "routeId": "L790", + "platformId": "U6043Z2", + "id": "cfae0288-a166-439d-9d5c-0dd3edc60282" + }, + { + "routeId": "L793", + "platformId": "U6043Z2", + "id": "5400f99d-1586-41f0-85cf-6bcce6b13b3b" + }, + { + "routeId": "L406", + "platformId": "U6043Z2", + "id": "eb36d264-8820-44cf-b5ed-c8ca61e03aa4" + }, + { + "routeId": "L487", + "platformId": "U6043Z2", + "id": "8e360478-4de9-4332-8450-67fc485d4040" + }, + { + "routeId": "L2844", + "platformId": "U6043Z2", + "id": "1e7e186b-c74c-43e1-9a73-01e554176fae" + }, + { + "routeId": "L795", + "platformId": "U6043Z2", + "id": "66141327-3594-44f6-8067-24d09c81f2f2" + }, + { + "routeId": "L1760", + "platformId": "U6043Z2", + "id": "0b5c97a9-14d2-4bbf-b179-af50b259c707" + }, + { + "routeId": "L125", + "platformId": "U604Z1", + "id": "2f7478c4-aadc-4fdd-a7f9-4d4fcb218848" + }, + { + "routeId": "L154", + "platformId": "U604Z1", + "id": "16c864c7-c631-4f23-ae7c-0a9f87047676" + }, + { + "routeId": "L125", + "platformId": "U604Z2", + "id": "0cf47732-2fc2-4b3e-b522-1130c156ed95" + }, + { + "routeId": "L154", + "platformId": "U604Z2", + "id": "d3a3a97e-16f7-4fb0-a119-f0322e1b8155" + }, + { + "routeId": "L770", + "platformId": "U6052Z1", + "id": "16bdd67c-f468-4451-86e6-96ce0dba06d4" + }, + { + "routeId": "L770", + "platformId": "U6052Z2", + "id": "6b6b0461-da0b-43ad-bca1-00ffd19d9ad4" + }, + { + "routeId": "L344", + "platformId": "U6056Z1", + "id": "2aaad7ee-f863-4012-aada-a59227a28d69" + }, + { + "routeId": "L344", + "platformId": "U6056Z2", + "id": "0df59184-a8c6-478f-b877-ce8b093703a8" + }, + { + "routeId": "L7", + "platformId": "U605Z1", + "id": "cae63fa9-346a-47a7-9b8f-94477d3efc9e" + }, + { + "routeId": "L19", + "platformId": "U605Z1", + "id": "4684478a-fed5-4f39-9f57-851f7b722c61" + }, + { + "routeId": "L22", + "platformId": "U605Z1", + "id": "7b118af8-39a6-4610-8c12-b8efc7d2580b" + }, + { + "routeId": "L95", + "platformId": "U605Z1", + "id": "992cd845-88f9-4a0a-9ebe-123b30e62e67" + }, + { + "routeId": "L97", + "platformId": "U605Z1", + "id": "62d5c84a-0ebd-46a7-88cc-4b50fa8b2f24" + }, + { + "routeId": "L99", + "platformId": "U605Z1", + "id": "55bca2c7-90ac-4bbe-abe7-ff80296caf67" + }, + { + "routeId": "L7", + "platformId": "U605Z2", + "id": "0f828e5e-d371-41fe-bbf8-fb87d78859c8" + }, + { + "routeId": "L19", + "platformId": "U605Z2", + "id": "9fcade00-fcca-4a5f-86fa-86e403c3b6b1" + }, + { + "routeId": "L22", + "platformId": "U605Z2", + "id": "37abe733-f1c4-4250-bd0e-6e31e5d615ea" + }, + { + "routeId": "L95", + "platformId": "U605Z2", + "id": "c902f81d-9545-4dc9-ac82-ac822c2883c2" + }, + { + "routeId": "L97", + "platformId": "U605Z2", + "id": "c4cd3b2a-df62-4df0-9dbd-6dea9d31b80a" + }, + { + "routeId": "L99", + "platformId": "U605Z2", + "id": "f1f98784-1641-493a-aa11-500ef38948da" + }, + { + "routeId": "L175", + "platformId": "U605Z3", + "id": "305348f1-f1ef-4fef-b809-13d27453e937" + }, + { + "routeId": "L175", + "platformId": "U605Z4", + "id": "2a0e1625-1f20-4c7d-b8a0-5b1604244406" + }, + { + "routeId": "L400", + "platformId": "U6060Z1", + "id": "34bdf4c5-f927-49e1-87d0-769001300a41" + }, + { + "routeId": "L410", + "platformId": "U6060Z1", + "id": "16c8b52e-83ea-4228-b19a-ae48599ce3aa" + }, + { + "routeId": "L400", + "platformId": "U6060Z2", + "id": "de979d81-1d74-404b-b011-374f8e90636e" + }, + { + "routeId": "L410", + "platformId": "U6060Z2", + "id": "a2db31ed-0976-4653-84e0-75e275c6fc48" + }, + { + "routeId": "L136", + "platformId": "U606Z1", + "id": "f21db6f1-ead9-4e25-a163-ced903d0b8c2" + }, + { + "routeId": "L195", + "platformId": "U606Z1", + "id": "007f9e11-f3f2-415f-ae91-7b0e5b9f163b" + }, + { + "routeId": "L911", + "platformId": "U606Z1", + "id": "003cb1f1-b13a-437f-be43-8e13c444160f" + }, + { + "routeId": "L916", + "platformId": "U606Z1", + "id": "7524a584-630c-4362-9bea-c430d3e1fc15" + }, + { + "routeId": "L375", + "platformId": "U606Z1", + "id": "aee5e3fa-f23f-4e2d-a504-6ac59f858e94" + }, + { + "routeId": "L58", + "platformId": "U606Z1", + "id": "af5a9ae1-85e3-476d-af7e-a48065464fe7" + }, + { + "routeId": "L136", + "platformId": "U606Z2", + "id": "0d7adef7-8b52-457f-806d-f00d1a86ec4d" + }, + { + "routeId": "L195", + "platformId": "U606Z2", + "id": "c6aa0494-51d7-4a3e-85a3-3702aa861f35" + }, + { + "routeId": "L201", + "platformId": "U606Z2", + "id": "3dd86cc5-0ca0-49a8-a374-ffee66d88696" + }, + { + "routeId": "L916", + "platformId": "U606Z2", + "id": "cd0a440d-35f9-40c1-be80-e459c4e5bae0" + }, + { + "routeId": "L911", + "platformId": "U606Z2", + "id": "bf1cea35-6790-4960-a36c-358a7dab837f" + }, + { + "routeId": "L166", + "platformId": "U606Z2", + "id": "72d656f9-4819-4e9a-b94e-3b57a9f150b1" + }, + { + "routeId": "L375", + "platformId": "U606Z2", + "id": "0a8a48c3-7a8d-4f0d-a213-c6e63483819f" + }, + { + "routeId": "L58", + "platformId": "U606Z2", + "id": "23b42e30-a207-4e6e-8276-8f84ebdfbaa1" + }, + { + "routeId": "L201", + "platformId": "U606Z5", + "id": "bd0c0f15-8924-4d57-9a79-c5a1e74245cb" + }, + { + "routeId": "L166", + "platformId": "U606Z5", + "id": "afbdc9f4-4592-4661-a919-bdbd01085a7d" + }, + { + "routeId": "L400", + "platformId": "U6070Z1", + "id": "6901e781-5776-489d-a3bb-83c3ec1e566b" + }, + { + "routeId": "L410", + "platformId": "U6070Z1", + "id": "7a42188b-7fe2-4841-b0da-7ccc0da5f43c" + }, + { + "routeId": "L400", + "platformId": "U6070Z2", + "id": "1c968390-d680-4f27-aa5a-9022023fe9c9" + }, + { + "routeId": "L410", + "platformId": "U6070Z2", + "id": "ec6bea0f-aa26-4920-b106-6bc31b44f3a3" + }, + { + "routeId": "L400", + "platformId": "U6072Z1", + "id": "bf71d9c9-a240-4e83-876f-f5672d615d34" + }, + { + "routeId": "L410", + "platformId": "U6072Z1", + "id": "d40152bc-cb07-42f6-9ba3-6d2dca7a5e8d" + }, + { + "routeId": "L400", + "platformId": "U6072Z2", + "id": "f3236c11-d35f-468c-90c1-fe4804cbc576" + }, + { + "routeId": "L410", + "platformId": "U6072Z2", + "id": "a4713b92-5a53-48ec-88db-40ab35a6f0e3" + }, + { + "routeId": "L400", + "platformId": "U6073Z1", + "id": "47e7647b-c365-478b-b43d-5bde9a428279" + }, + { + "routeId": "L410", + "platformId": "U6073Z1", + "id": "2dae424e-ddd9-4dce-91f5-a787c4342d99" + }, + { + "routeId": "L400", + "platformId": "U6073Z2", + "id": "3a6ef2d6-a8fc-4f20-9e0e-99c31b856ea5" + }, + { + "routeId": "L410", + "platformId": "U6073Z2", + "id": "75d76f7f-50a1-4cf6-8ad5-e3e4ff7f1e5d" + }, + { + "routeId": "L400", + "platformId": "U6077Z1", + "id": "72e3b9b7-105c-4562-aa3e-b763ea96325f" + }, + { + "routeId": "L410", + "platformId": "U6077Z1", + "id": "5b2d34c5-3b65-4aca-a100-b8343f759936" + }, + { + "routeId": "L400", + "platformId": "U6077Z2", + "id": "85f10469-5227-4ba7-a184-7b4e04869662" + }, + { + "routeId": "L410", + "platformId": "U6077Z2", + "id": "74877a8b-bf7c-4a19-9ed7-b3fce9e070aa" + }, + { + "routeId": "L400", + "platformId": "U6078Z1", + "id": "6f78d4f4-e14f-4e74-adc4-137e07aa27f4" + }, + { + "routeId": "L410", + "platformId": "U6078Z1", + "id": "a25f195d-6d98-430f-a783-608ac5e1a6b9" + }, + { + "routeId": "L400", + "platformId": "U6078Z2", + "id": "ac11e7bf-2365-4e79-ab8f-f67e890ba63d" + }, + { + "routeId": "L410", + "platformId": "U6078Z2", + "id": "9b75ca94-7c77-43a0-94ad-0205d8f7c42a" + }, + { + "routeId": "L236", + "platformId": "U607Z1", + "id": "cbc03d59-7864-43dd-936a-71916212eabb" + }, + { + "routeId": "L1801", + "platformId": "U607Z11", + "id": "88853005-5ab0-4d12-801f-2dde65427592" + }, + { + "routeId": "L236", + "platformId": "U607Z2", + "id": "9bc8261c-62a6-4b4a-a14e-e7664fa02fb8" + }, + { + "routeId": "L695", + "platformId": "U6089Z1", + "id": "7ed1cdaf-3ac4-49c0-b8f4-77ea82538aab" + }, + { + "routeId": "L695", + "platformId": "U6089Z2", + "id": "798d53f7-eef3-4be7-8a1f-3bf8202f44f1" + }, + { + "routeId": "L120", + "platformId": "U608Z1", + "id": "635afb6e-1ca2-4324-9afd-8e2243c9dae4" + }, + { + "routeId": "L245", + "platformId": "U608Z1", + "id": "0887a9ea-ff62-4105-899a-9a24df574ea1" + }, + { + "routeId": "L246", + "platformId": "U608Z1", + "id": "60198919-2efd-40f0-8eaf-838a16d79456" + }, + { + "routeId": "L951", + "platformId": "U608Z1", + "id": "36c0b557-4716-4e9d-995f-cbfa7c645664" + }, + { + "routeId": "L120", + "platformId": "U608Z2", + "id": "198c7ec9-a771-4f66-95e8-eb44e27d36bc" + }, + { + "routeId": "L245", + "platformId": "U608Z2", + "id": "5f9bf226-721b-43ed-a5e1-4b7070d4a9e6" + }, + { + "routeId": "L246", + "platformId": "U608Z2", + "id": "4c523ea3-df29-4fc3-bd9f-02a260c50e40" + }, + { + "routeId": "L951", + "platformId": "U608Z2", + "id": "b1124bb4-f982-4009-af7d-0cd088c88c73" + }, + { + "routeId": "L695", + "platformId": "U6091Z1", + "id": "335f331b-e0ef-4f71-8ff7-4fb9e21a036a" + }, + { + "routeId": "L695", + "platformId": "U6091Z2", + "id": "670790ca-0d32-468f-b6e0-8e5f5be04215" + }, + { + "routeId": "L695", + "platformId": "U6092Z1", + "id": "51cd49a4-223d-4586-af73-2ff7f141dd6a" + }, + { + "routeId": "L695", + "platformId": "U6092Z2", + "id": "1ae6a4f1-4b8c-46ca-9c36-827462706213" + }, + { + "routeId": "L695", + "platformId": "U6093Z1", + "id": "e96c3258-5a10-41c6-a322-86b4e33e757a" + }, + { + "routeId": "L695", + "platformId": "U6093Z2", + "id": "a14cacdb-6d0a-4ce3-9aef-25b7d0d4a117" + }, + { + "routeId": "L695", + "platformId": "U6094Z1", + "id": "b9fce851-c3f1-4dcc-a05f-9fc427e3f3fb" + }, + { + "routeId": "L695", + "platformId": "U6094Z2", + "id": "ab182e59-c126-48e9-98bd-d0d2d29d3c52" + }, + { + "routeId": "L695", + "platformId": "U6095Z1", + "id": "8d82fb20-db32-4d2d-85ed-c3b960fac777" + }, + { + "routeId": "L695", + "platformId": "U6095Z2", + "id": "a209c6da-bdb4-4b5a-bd2b-34abe9a8a65f" + }, + { + "routeId": "L695", + "platformId": "U6096Z1", + "id": "1643a33f-9ce8-4bde-b5fb-c18ecf18b990" + }, + { + "routeId": "L695", + "platformId": "U6096Z2", + "id": "f28619db-0cfe-48e6-be41-884bb0f22c3d" + }, + { + "routeId": "L695", + "platformId": "U6097Z1", + "id": "0e4e5a3f-9e1e-4723-8ca4-f67adfcfe7dd" + }, + { + "routeId": "L695", + "platformId": "U6097Z2", + "id": "5ca13e79-db47-495f-a623-4dc9711cc298" + }, + { + "routeId": "L695", + "platformId": "U6098Z1", + "id": "d4b6a24b-87d8-4443-bf4f-2c0a52ea270c" + }, + { + "routeId": "L695", + "platformId": "U6098Z2", + "id": "8275b1d9-65e0-4e20-9cca-3f0f9180eea0" + }, + { + "routeId": "L695", + "platformId": "U6099Z1", + "id": "2afa1aa1-c980-4047-b56c-9fcdc4beb9cc" + }, + { + "routeId": "L695", + "platformId": "U6099Z2", + "id": "2c0f929b-7114-4d27-8fe7-d7414d7f937e" + }, + { + "routeId": "L161", + "platformId": "U609Z1", + "id": "bc3d29a3-d4de-47be-a0d9-b1567dca6e30" + }, + { + "routeId": "L161", + "platformId": "U609Z2", + "id": "a9951cab-ca86-44b9-ae72-7d4274c6e769" + }, + { + "routeId": "L161", + "platformId": "U609Z3", + "id": "eda2978a-e0ec-4070-94fd-9b5c1a304e51" + }, + { + "routeId": "L907", + "platformId": "U609Z3", + "id": "4bc18209-135f-41fd-be64-79d502e8414d" + }, + { + "routeId": "L312", + "platformId": "U609Z3", + "id": "900a90f6-4545-48d2-b883-14aa7991b62a" + }, + { + "routeId": "L161", + "platformId": "U609Z4", + "id": "18fe4f8c-ac4c-40da-96ec-7d617d6e8db9" + }, + { + "routeId": "L907", + "platformId": "U609Z4", + "id": "c409400c-4a83-4f70-bb25-dd6e568f616b" + }, + { + "routeId": "L312", + "platformId": "U609Z4", + "id": "e459310f-1fe2-4742-baad-8d1ec5610938" + }, + { + "routeId": "L189", + "platformId": "U60Z1", + "id": "bd1dd117-428f-40dc-8218-b3ca961bfffe" + }, + { + "routeId": "L197", + "platformId": "U60Z1", + "id": "b8689da5-5139-4c69-b8db-10093499142d" + }, + { + "routeId": "L117", + "platformId": "U60Z1", + "id": "bc9b3d4f-bd40-4aa4-b625-a40bec4cdc09" + }, + { + "routeId": "L189", + "platformId": "U60Z2", + "id": "1fc49019-5597-43ba-9cac-c69e3fd673ca" + }, + { + "routeId": "L197", + "platformId": "U60Z2", + "id": "fce953ff-975f-477e-a80e-f7c45ce68d19" + }, + { + "routeId": "L117", + "platformId": "U60Z2", + "id": "134e2d6d-5d6f-4530-adca-25bd422ccb98" + }, + { + "routeId": "L695", + "platformId": "U6100Z1", + "id": "bc713396-ef3e-4eaf-838b-c2f87c9064a3" + }, + { + "routeId": "L695", + "platformId": "U6100Z2", + "id": "8476ccfb-58e3-4f1a-8554-5b43c0bf2324" + }, + { + "routeId": "L695", + "platformId": "U6101Z1", + "id": "bc3897ef-eaa7-49d9-b79e-84590f6f30ab" + }, + { + "routeId": "L695", + "platformId": "U6101Z2", + "id": "0eb28eba-ec56-4ea0-9a70-2c322805257f" + }, + { + "routeId": "L431", + "platformId": "U6103Z1", + "id": "a3cb843c-0f33-4a76-afe0-d81579f71d8e" + }, + { + "routeId": "L431", + "platformId": "U6103Z2", + "id": "338fc281-96dd-4ff5-a1c9-16f9aad766c9" + }, + { + "routeId": "L431", + "platformId": "U6104Z1", + "id": "ca9ebd60-db14-48bf-8fee-869d42778760" + }, + { + "routeId": "L431", + "platformId": "U6104Z2", + "id": "e895e650-d0ca-47d9-bea7-334d48aed484" + }, + { + "routeId": "L431", + "platformId": "U6105Z1", + "id": "b4c1cdb6-f958-4646-b91d-a160bdd64d20" + }, + { + "routeId": "L431", + "platformId": "U6105Z2", + "id": "e94d7e12-80e2-41af-86e5-bd241626159d" + }, + { + "routeId": "L431", + "platformId": "U6106Z1", + "id": "1ce28ee7-35b7-4e90-8b63-452acc2805e2" + }, + { + "routeId": "L431", + "platformId": "U6106Z2", + "id": "5d8fe52f-8f81-4088-b3cd-924441869b83" + }, + { + "routeId": "L431", + "platformId": "U6107Z1", + "id": "7dcb60d1-aa71-4e4a-a4fb-2be97f3131e4" + }, + { + "routeId": "L431", + "platformId": "U6107Z2", + "id": "2cd248fe-ac19-4957-8e0f-c819dec5f7ba" + }, + { + "routeId": "L22", + "platformId": "U610Z1", + "id": "3e1ba6e2-8ab4-4ea9-80c2-f6648d3bbc83" + }, + { + "routeId": "L25", + "platformId": "U610Z1", + "id": "20a61071-b429-4ec0-a6a3-686fd88fff5a" + }, + { + "routeId": "L97", + "platformId": "U610Z1", + "id": "caee6ad4-4b06-448e-b0a9-8ff95c9b606e" + }, + { + "routeId": "L22", + "platformId": "U610Z2", + "id": "e6e2b9a5-f743-451c-919c-80e6dc1e6fde" + }, + { + "routeId": "L25", + "platformId": "U610Z2", + "id": "b1ae9a58-b988-45a5-af29-a1fdd9222286" + }, + { + "routeId": "L97", + "platformId": "U610Z2", + "id": "72f512e7-9a87-49fc-b2b5-ea932b48fa05" + }, + { + "routeId": "L164", + "platformId": "U610Z3", + "id": "c529125d-3cb3-4f5f-ac6c-94a88c551d3f" + }, + { + "routeId": "L365", + "platformId": "U610Z3", + "id": "3a831d81-e04a-4967-bd12-d5c192609f04" + }, + { + "routeId": "L365", + "platformId": "U610Z4", + "id": "0a874689-29b6-4c65-83a8-138b2c7c037b" + }, + { + "routeId": "L164", + "platformId": "U610Z6", + "id": "8e075339-6132-4e9a-990c-d09e497f8638" + }, + { + "routeId": "L415", + "platformId": "U6111Z1", + "id": "f6ea4d92-0acc-422b-a1e4-67a93457feef" + }, + { + "routeId": "L415", + "platformId": "U6111Z2", + "id": "aa53b25e-825b-4e07-8cac-6d31c7b3ba4e" + }, + { + "routeId": "L431", + "platformId": "U6112Z1", + "id": "860fafa3-d618-480d-aa31-b7d9e002ecfb" + }, + { + "routeId": "L431", + "platformId": "U6112Z2", + "id": "3c4b728d-7516-4cd4-8a4f-445749658021" + }, + { + "routeId": "L696", + "platformId": "U6114Z1", + "id": "66c77b8e-5cda-4a75-9305-68522c0d9bda" + }, + { + "routeId": "L696", + "platformId": "U6114Z2", + "id": "d49a8d73-d70f-4b1c-b0cd-d37f315e73d2" + }, + { + "routeId": "L696", + "platformId": "U6115Z1", + "id": "fb8bbad6-c671-491b-8fd9-c3755f8718a6" + }, + { + "routeId": "L696", + "platformId": "U6115Z2", + "id": "c7c3aa07-07d1-4bf9-8237-e2311f4ba596" + }, + { + "routeId": "L696", + "platformId": "U6116Z1", + "id": "10c168a0-e442-467c-99f4-9ab55dc63f70" + }, + { + "routeId": "L696", + "platformId": "U6116Z2", + "id": "1530717f-d9b3-4e78-ada8-0a27ea4f94be" + }, + { + "routeId": "L696", + "platformId": "U6117Z1", + "id": "5cd630a4-e4e9-4e5a-b26f-3313bf42288b" + }, + { + "routeId": "L696", + "platformId": "U6117Z2", + "id": "97ebbefa-f8c9-4d70-b44a-88536388a949" + }, + { + "routeId": "L696", + "platformId": "U6118Z1", + "id": "bb930ef0-a0fe-4074-843b-973f5c15d86e" + }, + { + "routeId": "L696", + "platformId": "U6118Z2", + "id": "9d898c6d-08f4-48fe-9aa0-ef9264dfde3a" + }, + { + "routeId": "L696", + "platformId": "U6119Z1", + "id": "34b81c48-675c-4371-b5c9-c2c369b048e1" + }, + { + "routeId": "L696", + "platformId": "U6119Z2", + "id": "687b9db4-f263-4962-96c5-0226422846e2" + }, + { + "routeId": "L154", + "platformId": "U611Z1", + "id": "03485324-5385-469b-b814-6a5755b1829b" + }, + { + "routeId": "L193", + "platformId": "U611Z1", + "id": "d7e7b254-0d7e-43e1-be70-59aa73ad8f5e" + }, + { + "routeId": "L901", + "platformId": "U611Z1", + "id": "d90139c3-4406-4f77-8a68-ffa0d51d12b8" + }, + { + "routeId": "L203", + "platformId": "U611Z1", + "id": "dce6c758-c792-4417-b449-8578d2c6ff26" + }, + { + "routeId": "L154", + "platformId": "U611Z2", + "id": "bb7dedf0-e978-45a1-8253-cad13615fb52" + }, + { + "routeId": "L193", + "platformId": "U611Z2", + "id": "9dd1a4d7-b794-49bd-a05a-d3e4e9d56ee5" + }, + { + "routeId": "L901", + "platformId": "U611Z2", + "id": "5094119b-fd32-44af-8442-2ff9191b6d45" + }, + { + "routeId": "L203", + "platformId": "U611Z2", + "id": "3bcad09e-16ed-4f3e-b0b7-0415f1959c81" + }, + { + "routeId": "L696", + "platformId": "U6120Z1", + "id": "d43333a2-a8de-49be-8055-ed39cd9d8563" + }, + { + "routeId": "L696", + "platformId": "U6120Z2", + "id": "14e7b7cc-8853-4d19-9508-5c5f40fc1722" + }, + { + "routeId": "L10", + "platformId": "U612Z1", + "id": "7d2b7100-2085-4133-82eb-a0606c4097b3" + }, + { + "routeId": "L98", + "platformId": "U612Z1", + "id": "78edc6db-6558-446a-8d8e-f391baf6c164" + }, + { + "routeId": "L9", + "platformId": "U612Z12", + "id": "662f2cf1-b0d1-48af-8f3e-30d1cd7e0439" + }, + { + "routeId": "L99", + "platformId": "U612Z12", + "id": "053c381e-f2b6-412e-ab73-d332979dba6e" + }, + { + "routeId": "L10", + "platformId": "U612Z2", + "id": "517ba252-e6be-46dc-a7b2-1a21165a21c9" + }, + { + "routeId": "L98", + "platformId": "U612Z2", + "id": "c1b0be19-9007-4474-880a-6d0e46d13c57" + }, + { + "routeId": "L9", + "platformId": "U612Z3", + "id": "91cf4c21-d950-4b19-bb0c-6cf1dbc3052e" + }, + { + "routeId": "L99", + "platformId": "U612Z3", + "id": "e9b8b810-751e-412f-8996-0c9b4e401a9f" + }, + { + "routeId": "L1365", + "platformId": "U612Z301", + "id": "555b7941-4066-4da7-8055-c1f01238fdb5" + }, + { + "routeId": "L180", + "platformId": "U612Z4", + "id": "3e4b9853-8696-4b69-ba5f-528a13f86af9" + }, + { + "routeId": "L904", + "platformId": "U612Z4", + "id": "fc122e11-5e40-4a38-8bed-491f26783418" + }, + { + "routeId": "L214", + "platformId": "U612Z4", + "id": "e3bfa06a-7294-4778-8209-a5825236f92e" + }, + { + "routeId": "L957", + "platformId": "U612Z4", + "id": "1a5ecf25-b41e-4a9e-a6b9-94c23f545f75" + }, + { + "routeId": "L952", + "platformId": "U612Z4", + "id": "db3318d3-e333-40a0-b0d0-42644abaaeeb" + }, + { + "routeId": "L164", + "platformId": "U612Z41", + "id": "7026151f-c137-4ef3-a941-3503249e0435" + }, + { + "routeId": "L180", + "platformId": "U612Z5", + "id": "d1d29074-716d-4c56-b830-50ddd98f85ba" + }, + { + "routeId": "L904", + "platformId": "U612Z5", + "id": "94b83027-cbfb-4c7f-bc80-06c5c72c8565" + }, + { + "routeId": "L164", + "platformId": "U612Z5", + "id": "fbf7b203-32b5-4ba9-8c28-c2e8e710312f" + }, + { + "routeId": "L214", + "platformId": "U612Z5", + "id": "08e07a34-b09c-42b1-a9bc-311a450c2190" + }, + { + "routeId": "L957", + "platformId": "U612Z5", + "id": "4fd7d710-2d19-42cd-89c0-f61bef27bdc1" + }, + { + "routeId": "L952", + "platformId": "U612Z5", + "id": "5bd90f6a-7199-4f39-b69d-7f662d04ad59" + }, + { + "routeId": "L731", + "platformId": "U6139Z1", + "id": "c106b3d8-d68d-4cfb-adbf-9543a08a7a10" + }, + { + "routeId": "L731", + "platformId": "U6139Z2", + "id": "4e2581bb-416e-4d93-aa70-438586b0d200" + }, + { + "routeId": "L215", + "platformId": "U613Z1", + "id": "516e7f7a-9b32-4f78-a95a-6599f55aa93c" + }, + { + "routeId": "L197", + "platformId": "U613Z1", + "id": "19438a04-7dc4-4b67-81b5-b7f6ba422a8a" + }, + { + "routeId": "L904", + "platformId": "U613Z1", + "id": "be81cac1-da53-476f-9eef-c8aad78238bf" + }, + { + "routeId": "L215", + "platformId": "U613Z2", + "id": "fabae73a-1c45-4d43-b4b1-646df12baec5" + }, + { + "routeId": "L197", + "platformId": "U613Z2", + "id": "0b66631a-286b-468a-9665-e1f50211996d" + }, + { + "routeId": "L904", + "platformId": "U613Z2", + "id": "772f5280-ee7b-471b-b405-533c24ca462d" + }, + { + "routeId": "L695", + "platformId": "U6143Z1", + "id": "52739a41-90a6-4afa-ad18-93a791a53077" + }, + { + "routeId": "L695", + "platformId": "U6143Z2", + "id": "ba147de2-f56f-4d15-bf9d-a3a95366cd39" + }, + { + "routeId": "L365", + "platformId": "U6147Z1", + "id": "befe71f6-3657-4c4b-be58-dcfe345dc2bc" + }, + { + "routeId": "L417", + "platformId": "U6147Z1", + "id": "2a0c427b-82b1-496a-8828-f94686f94a25" + }, + { + "routeId": "L629", + "platformId": "U6147Z1", + "id": "6922a6b8-83d6-430f-ac5a-edac72f043e5" + }, + { + "routeId": "L417", + "platformId": "U6147Z2", + "id": "30b6dd5c-cc4f-4c69-887d-03b50ab18f5a" + }, + { + "routeId": "L365", + "platformId": "U6147Z2", + "id": "5f37daa3-4797-437f-9745-67c67b970cd9" + }, + { + "routeId": "L629", + "platformId": "U6147Z2", + "id": "d8e38b9b-68e8-4253-a00b-54a90c372deb" + }, + { + "routeId": "L577", + "platformId": "U6148Z1", + "id": "1a76f4d6-7cd3-4bc4-866e-7522c8f76c87" + }, + { + "routeId": "L577", + "platformId": "U6148Z2", + "id": "9bbf93ea-b4b6-4b17-9f84-5c00792a0323" + }, + { + "routeId": "L625", + "platformId": "U6149Z1", + "id": "e721f612-67a2-43d5-b83a-4a15f18945cf" + }, + { + "routeId": "L625", + "platformId": "U6149Z2", + "id": "8955f546-4881-4868-8c14-d37eb8b89566" + }, + { + "routeId": "L2", + "platformId": "U614Z1", + "id": "a3a1b2cc-2f94-4e01-8748-63f364063d17" + }, + { + "routeId": "L3", + "platformId": "U614Z1", + "id": "0b76135f-c497-435e-9322-b44e4e7f2d13" + }, + { + "routeId": "L17", + "platformId": "U614Z1", + "id": "69552ce0-9901-4fae-a025-f2d6444a71d8" + }, + { + "routeId": "L27", + "platformId": "U614Z1", + "id": "03e0c06b-8a45-42cb-aded-6a2e6c4754a1" + }, + { + "routeId": "L92", + "platformId": "U614Z1", + "id": "7ddd6fbe-a829-4b87-8220-b3d3d2fae1b4" + }, + { + "routeId": "L2", + "platformId": "U614Z2", + "id": "6ef821f8-b4ec-4414-835e-38f73181f9dc" + }, + { + "routeId": "L3", + "platformId": "U614Z2", + "id": "3f70be57-2fdd-4a40-9d2c-37817f020c98" + }, + { + "routeId": "L17", + "platformId": "U614Z2", + "id": "09ffd6d5-6b89-4bd7-9740-81309c286484" + }, + { + "routeId": "L27", + "platformId": "U614Z2", + "id": "858de39f-7eaf-4d33-a684-2971fb15fde9" + }, + { + "routeId": "L92", + "platformId": "U614Z2", + "id": "1312adeb-14a8-4174-80c3-c730133a8a47" + }, + { + "routeId": "L118", + "platformId": "U614Z3", + "id": "a98528e4-16e9-43fa-825a-ddf6bb281fcb" + }, + { + "routeId": "L170", + "platformId": "U614Z3", + "id": "5979430a-e59f-4fe3-a9b4-313542de7176" + }, + { + "routeId": "L196", + "platformId": "U614Z3", + "id": "5d38bf0f-1e92-4be5-8cf1-d2f4e6e8762f" + }, + { + "routeId": "L197", + "platformId": "U614Z3", + "id": "e978e99f-335a-4bca-823e-199323e426cb" + }, + { + "routeId": "L901", + "platformId": "U614Z3", + "id": "1ecf70f5-2471-4dc5-9a21-475c8e7d003e" + }, + { + "routeId": "L170", + "platformId": "U614Z4", + "id": "9bf07230-b1d7-49fa-aea9-2db7dc286e53" + }, + { + "routeId": "L196", + "platformId": "U614Z4", + "id": "ee64f1f6-fe74-409a-9cd4-022d07138499" + }, + { + "routeId": "L197", + "platformId": "U614Z4", + "id": "db06026b-0e3b-4a2d-ab50-74b6362e0507" + }, + { + "routeId": "L901", + "platformId": "U614Z4", + "id": "bd02e885-81ef-4efc-8568-01f8669b59ab" + }, + { + "routeId": "L572", + "platformId": "U6154Z1", + "id": "71a10ed1-f307-401d-918f-99dccbdcc659" + }, + { + "routeId": "L404", + "platformId": "U6154Z1", + "id": "d671af92-50ad-4e95-90c6-7717e0c4a226" + }, + { + "routeId": "L572", + "platformId": "U6154Z2", + "id": "66f4fc77-0a62-4c52-b710-284414e12c83" + }, + { + "routeId": "L404", + "platformId": "U6154Z2", + "id": "7c98beca-313d-4595-97e5-0a1b7b597b43" + }, + { + "routeId": "L517", + "platformId": "U6155Z1", + "id": "4f6931cc-6ada-4410-a3de-d66f51ac5e24" + }, + { + "routeId": "L517", + "platformId": "U6155Z2", + "id": "00310333-6051-4b61-913d-768497a476a8" + }, + { + "routeId": "L469", + "platformId": "U6156Z2", + "id": "1fe4f7e0-3f90-4586-8c2b-e6995eaf7737" + }, + { + "routeId": "L731", + "platformId": "U6157Z1", + "id": "0e12fa9d-71f2-4fe7-9b11-721e6dca99b8" + }, + { + "routeId": "L731", + "platformId": "U6157Z2", + "id": "5d96316a-ceab-4b39-8cf8-fc990fed02bb" + }, + { + "routeId": "L145", + "platformId": "U615Z1", + "id": "0acbcf4a-ee60-4774-8e89-94da4700f75b" + }, + { + "routeId": "L145", + "platformId": "U615Z2", + "id": "e3428906-f1cf-4781-92d5-4c3bedb523a1" + }, + { + "routeId": "L737", + "platformId": "U6160Z1", + "id": "42b68e7b-cba8-4688-b027-cb599aacce7c" + }, + { + "routeId": "L737", + "platformId": "U6160Z2", + "id": "73f0df38-b1ac-4f6b-b34f-058b697b5987" + }, + { + "routeId": "L737", + "platformId": "U6161Z1", + "id": "97cdcd12-49d5-43ef-acc6-bd72564d776e" + }, + { + "routeId": "L737", + "platformId": "U6161Z2", + "id": "4abca362-4347-41d3-8ed2-263580358ba8" + }, + { + "routeId": "L737", + "platformId": "U6162Z2", + "id": "c1de9f4c-2b3d-422d-b87e-cd5955fa3617" + }, + { + "routeId": "L737", + "platformId": "U6162Z51", + "id": "60805c82-d510-42d1-99af-2acdc09f215e" + }, + { + "routeId": "L737", + "platformId": "U6163Z1", + "id": "9d2b7c0b-a688-4d6f-b63f-0b15a8d196eb" + }, + { + "routeId": "L737", + "platformId": "U6163Z4", + "id": "2a6b0a70-0a28-48cf-8c97-83f234417497" + }, + { + "routeId": "L737", + "platformId": "U6164Z1", + "id": "66f32e68-183b-435f-a429-5e1a5e647af2" + }, + { + "routeId": "L737", + "platformId": "U6164Z2", + "id": "8a366abb-ba3b-4a1e-8c5c-df2d8438f0e1" + }, + { + "routeId": "L737", + "platformId": "U6165Z1", + "id": "094fb4d2-9a69-4709-a7f3-1fa49cd6245d" + }, + { + "routeId": "L737", + "platformId": "U6165Z2", + "id": "54d1d937-fc01-4711-a92a-eb68482e6dee" + }, + { + "routeId": "L11", + "platformId": "U616Z1", + "id": "4cf0f7b0-1693-433b-809f-37f84cd698ef" + }, + { + "routeId": "L13", + "platformId": "U616Z1", + "id": "b26a59af-1eb6-45bf-add6-570d86163d03" + }, + { + "routeId": "L11", + "platformId": "U616Z2", + "id": "a0c8a381-de36-463f-a1df-197871858b26" + }, + { + "routeId": "L13", + "platformId": "U616Z2", + "id": "816fc296-b402-4851-bf98-bd1a19788200" + }, + { + "routeId": "L3360", + "platformId": "U6172Z1", + "id": "4f59a7ce-d790-4ffa-97d3-be47608b0f37" + }, + { + "routeId": "L714", + "platformId": "U6172Z1", + "id": "b5ecbec2-56d4-42a1-9461-cbac0d0528ce" + }, + { + "routeId": "L3360", + "platformId": "U6172Z2", + "id": "fc7e80a7-103f-4846-a00d-fa866aaca06a" + }, + { + "routeId": "L427", + "platformId": "U6172Z2", + "id": "5466c1e9-f759-4552-b3fd-5df80fac0b79" + }, + { + "routeId": "L714", + "platformId": "U6172Z2", + "id": "4ba72d97-aa9c-4975-9ca7-016dac3e559d" + }, + { + "routeId": "L720", + "platformId": "U6172Z2", + "id": "e73f3368-b7f3-42ff-bc6a-6fc66044508d" + }, + { + "routeId": "L737", + "platformId": "U6175Z1", + "id": "8bca82d4-a286-4d32-9fe9-5771046d68b4" + }, + { + "routeId": "L737", + "platformId": "U6175Z2", + "id": "2588acd9-c2f4-4e9f-ae4e-b3b98ca6dc62" + }, + { + "routeId": "L737", + "platformId": "U6176Z1", + "id": "33204b22-98f7-41ab-ab3a-c618572e039b" + }, + { + "routeId": "L737", + "platformId": "U6176Z2", + "id": "7f1a2120-b1ad-4620-ad98-5b3835d592b1" + }, + { + "routeId": "L737", + "platformId": "U6177Z1", + "id": "da673974-ee27-42ca-abcd-042989199baf" + }, + { + "routeId": "L737", + "platformId": "U6177Z2", + "id": "5bb5790f-b931-40f4-8dfe-faf469bc43dd" + }, + { + "routeId": "L463", + "platformId": "U6182Z1", + "id": "411c7081-457d-4e70-af7c-671cfffdc7e8" + }, + { + "routeId": "L403", + "platformId": "U6182Z1", + "id": "8edbf19b-8aad-43d8-a224-791a79425b06" + }, + { + "routeId": "L463", + "platformId": "U6182Z2", + "id": "28a9736d-9f57-43bb-9b69-acf17d05b0ff" + }, + { + "routeId": "L403", + "platformId": "U6182Z2", + "id": "73b45095-771d-4b41-8a85-815713eb74ee" + }, + { + "routeId": "L463", + "platformId": "U6183Z1", + "id": "a2d31afd-e1dc-4342-ae5c-f0e46bc3b2ce" + }, + { + "routeId": "L499", + "platformId": "U6183Z1", + "id": "bff747ef-3af0-44b7-b872-dba2a050c58a" + }, + { + "routeId": "L403", + "platformId": "U6183Z1", + "id": "d2c14943-ab98-4985-aa93-dd4f200a1147" + }, + { + "routeId": "L463", + "platformId": "U6183Z2", + "id": "7cff8fba-268b-4a51-a967-a6252b0658fe" + }, + { + "routeId": "L499", + "platformId": "U6183Z2", + "id": "b601f7d8-ea9b-4ab0-8acd-43ba07c0f848" + }, + { + "routeId": "L403", + "platformId": "U6183Z2", + "id": "e85a813d-163f-471f-b86e-164b8db89565" + }, + { + "routeId": "L463", + "platformId": "U6184Z1", + "id": "9cd136d7-4466-4614-b11b-e6e4bc43e09c" + }, + { + "routeId": "L403", + "platformId": "U6184Z1", + "id": "f03c540b-bc23-49db-bd9b-4e5f6dd1cc8d" + }, + { + "routeId": "L463", + "platformId": "U6184Z2", + "id": "b3bdc1e7-5da4-4832-b759-d537e676b47d" + }, + { + "routeId": "L403", + "platformId": "U6184Z2", + "id": "44dcfa7a-cbad-487e-9a2e-266c07c51194" + }, + { + "routeId": "L463", + "platformId": "U6185Z1", + "id": "baf29c62-a587-402f-9c80-1f1982e7e2f9" + }, + { + "routeId": "L403", + "platformId": "U6185Z1", + "id": "d0f55d36-a6c9-42b3-bc35-b31ae807d8b2" + }, + { + "routeId": "L463", + "platformId": "U6185Z2", + "id": "d995dfff-2106-4288-b308-103fce206596" + }, + { + "routeId": "L403", + "platformId": "U6185Z2", + "id": "c3ab6ce4-c8f2-4cbe-b59e-abab785dfaf5" + }, + { + "routeId": "L463", + "platformId": "U6187Z1", + "id": "fefc745d-56dd-44ca-aec5-50a9f2a28baa" + }, + { + "routeId": "L403", + "platformId": "U6187Z1", + "id": "73b9b17b-ce8b-4f7b-820a-d4379f51e9af" + }, + { + "routeId": "L463", + "platformId": "U6187Z2", + "id": "b8f14c9a-ad4c-476e-93a2-d83b88bcbf73" + }, + { + "routeId": "L403", + "platformId": "U6187Z2", + "id": "cfb0ca8f-68a9-4a77-a5a0-c28e5d1a8d74" + }, + { + "routeId": "L463", + "platformId": "U6188Z1", + "id": "ffda3624-a6d0-4214-bdca-307f72f33a76" + }, + { + "routeId": "L403", + "platformId": "U6188Z1", + "id": "6fc9d2d5-5d77-4313-858c-0579402b727f" + }, + { + "routeId": "L463", + "platformId": "U6189Z1", + "id": "1a9d7708-7212-4a91-b331-9677e76fcedc" + }, + { + "routeId": "L463", + "platformId": "U6189Z2", + "id": "66f7e650-40b6-4b93-bb03-ccecfc291bc1" + }, + { + "routeId": "L22", + "platformId": "U618Z1", + "id": "56d94d06-d76e-4617-a718-f2d62eeceea2" + }, + { + "routeId": "L26", + "platformId": "U618Z1", + "id": "b41b382b-23f3-42b2-89c4-128385d9e54a" + }, + { + "routeId": "L97", + "platformId": "U618Z1", + "id": "959b45da-1e3a-45df-b24e-d532937a5518" + }, + { + "routeId": "L99", + "platformId": "U618Z1", + "id": "830ec100-9201-4876-baf2-0f15aabc3011" + }, + { + "routeId": "L22", + "platformId": "U618Z2", + "id": "7d5ed78d-5662-4920-ba8a-64c6f2af90f4" + }, + { + "routeId": "L26", + "platformId": "U618Z2", + "id": "6625597f-1c7f-4937-941a-f963c954b089" + }, + { + "routeId": "L97", + "platformId": "U618Z2", + "id": "dcf038b3-310d-45b2-82d0-92bf47683bf1" + }, + { + "routeId": "L99", + "platformId": "U618Z2", + "id": "56e25726-f06f-460d-8ac7-fe7077225792" + }, + { + "routeId": "L91", + "platformId": "U618Z3", + "id": "3770b2b9-22ab-4318-ba08-797f1ff6a08d" + }, + { + "routeId": "L737", + "platformId": "U6195Z1", + "id": "085d414c-eb56-4262-99bd-b3e8d1cfa5bb" + }, + { + "routeId": "L737", + "platformId": "U6195Z2", + "id": "d6634346-04a5-479d-8544-f5f8e4054d73" + }, + { + "routeId": "L737", + "platformId": "U6196Z1", + "id": "aadde965-8c8e-4fbf-8dbc-3b85a9fd63b8" + }, + { + "routeId": "L737", + "platformId": "U6196Z2", + "id": "d10e232a-83f8-4806-9db2-9d43ad0c61fb" + }, + { + "routeId": "L737", + "platformId": "U6198Z1", + "id": "7ec59235-e437-437b-bf83-48324fb68db1" + }, + { + "routeId": "L737", + "platformId": "U6198Z2", + "id": "cd9574bb-63f0-42e5-9b8a-e1ac408fd084" + }, + { + "routeId": "L737", + "platformId": "U6199Z1", + "id": "def3eb48-22fe-49a2-b70c-d0608e8b916f" + }, + { + "routeId": "L737", + "platformId": "U6199Z2", + "id": "29569b4e-80d7-4516-bd96-49355ebc51be" + }, + { + "routeId": "L170", + "platformId": "U619Z1", + "id": "c1c60955-60ee-47b8-bebb-b4eaeba81e9c" + }, + { + "routeId": "L196", + "platformId": "U619Z1", + "id": "96b7a54c-896a-411e-88d8-ef9f7e60fe94" + }, + { + "routeId": "L197", + "platformId": "U619Z1", + "id": "74ce4f36-ab1c-475f-aca2-d5d825bcf891" + }, + { + "routeId": "L901", + "platformId": "U619Z1", + "id": "2c6b619f-6c5f-40fa-a5fd-c9a26d90e07e" + }, + { + "routeId": "L170", + "platformId": "U619Z2", + "id": "62bebd8e-bd52-4615-9f04-8f4b6698e8c3" + }, + { + "routeId": "L196", + "platformId": "U619Z2", + "id": "499cf037-25e5-4684-ae18-d23717fdaab0" + }, + { + "routeId": "L197", + "platformId": "U619Z2", + "id": "564bf086-4b54-4ae7-b732-8b23606b3b9b" + }, + { + "routeId": "L901", + "platformId": "U619Z2", + "id": "e1d67256-0634-4574-8b41-87dfe19cf1f0" + }, + { + "routeId": "L20", + "platformId": "U61Z1", + "id": "217aa796-7efe-4641-9786-b1600b64435e" + }, + { + "routeId": "L26", + "platformId": "U61Z1", + "id": "ef4045e6-77be-45c1-9c7e-3322b14c2718" + }, + { + "routeId": "L191", + "platformId": "U61Z1", + "id": "cd8b6152-1524-4be3-99a2-b8cc653cdeda" + }, + { + "routeId": "L225", + "platformId": "U61Z1", + "id": "bc7e89b4-1c17-4160-a74a-f9a166115771" + }, + { + "routeId": "L910", + "platformId": "U61Z1", + "id": "3627bfd3-f22c-4de1-b130-144ee5afee7a" + }, + { + "routeId": "L20", + "platformId": "U61Z2", + "id": "79d3e627-4871-4568-9253-6361097ceac8" + }, + { + "routeId": "L26", + "platformId": "U61Z2", + "id": "baba33cc-83d3-4573-8dc1-fad40ce88d70" + }, + { + "routeId": "L191", + "platformId": "U61Z2", + "id": "97eae5f3-098d-4c4a-b1e4-06ca0cd90bb9" + }, + { + "routeId": "L225", + "platformId": "U61Z2", + "id": "1bccdfc2-25bb-44d6-a80e-720dace1918c" + }, + { + "routeId": "L910", + "platformId": "U61Z2", + "id": "9b036df0-e5ff-4ff3-8d1f-17cff1ee3bb1" + }, + { + "routeId": "L207", + "platformId": "U620Z1", + "id": "1f13662d-4bca-42eb-a8ea-64b42013ccaf" + }, + { + "routeId": "L207", + "platformId": "U620Z2", + "id": "66114dfc-e1db-4939-ac6a-3b06c9f41a55" + }, + { + "routeId": "L345", + "platformId": "U6213Z1", + "id": "d2575f39-1f47-407a-9413-bba90c768c59" + }, + { + "routeId": "L345", + "platformId": "U6213Z2", + "id": "dab5f553-e312-4a4e-9ced-c7323eabe62a" + }, + { + "routeId": "L427", + "platformId": "U6216Z2", + "id": "f2e5dd41-b22c-4849-921c-8909ed53c255" + }, + { + "routeId": "L714", + "platformId": "U6218Z1", + "id": "37a86ffc-3e2f-43c3-896e-02283a1ab2b7" + }, + { + "routeId": "L714", + "platformId": "U6218Z2", + "id": "563fdcde-82d9-4cdf-a4a5-5ea61c93ca51" + }, + { + "routeId": "L714", + "platformId": "U6219Z1", + "id": "a3dbe3ea-a1d2-4f00-bba0-ac63a5ee7060" + }, + { + "routeId": "L250", + "platformId": "U621Z1", + "id": "f04796e3-dfc5-4930-9b1f-2e82b57a94e3" + }, + { + "routeId": "L909", + "platformId": "U621Z1", + "id": "8553db25-97e9-43ce-8196-46b23ac21c2b" + }, + { + "routeId": "L163", + "platformId": "U621Z1", + "id": "6877596b-9658-4e38-a861-418dca3525bd" + }, + { + "routeId": "L211", + "platformId": "U621Z1", + "id": "8aca28a6-4789-4ba8-aad9-13bc00a9c7b1" + }, + { + "routeId": "L250", + "platformId": "U621Z2", + "id": "b65d4ad2-e86c-4fd5-a1d2-b41056688dd9" + }, + { + "routeId": "L909", + "platformId": "U621Z2", + "id": "0c3adca6-cdf7-4885-ab52-fba0fd4ab7d3" + }, + { + "routeId": "L163", + "platformId": "U621Z2", + "id": "57443003-93c6-4091-a608-05060bc0c920" + }, + { + "routeId": "L211", + "platformId": "U621Z2", + "id": "b22507b5-3a4e-4464-a130-6ff1e5ccb8ae" + }, + { + "routeId": "L391", + "platformId": "U621Z2", + "id": "429d4259-1782-413e-8068-95c47216c2bd" + }, + { + "routeId": "L391", + "platformId": "U621Z81", + "id": "3f3b6c60-fc65-4330-92ec-e918fc5efc2a" + }, + { + "routeId": "L714", + "platformId": "U6220Z1", + "id": "55a5ea54-c6b2-4f1d-8297-461e55551657" + }, + { + "routeId": "L714", + "platformId": "U6220Z2", + "id": "3fa977bd-17bd-464a-8ce0-9b584393490b" + }, + { + "routeId": "L714", + "platformId": "U6223Z1", + "id": "fa88eadb-162f-4adc-9e18-7e7e2352a200" + }, + { + "routeId": "L714", + "platformId": "U6223Z2", + "id": "b9d71b29-ddbf-4e4e-be03-d11afa9982be" + }, + { + "routeId": "L714", + "platformId": "U6224Z1", + "id": "ef309659-23f0-48b4-9f99-3b3e4e987be2" + }, + { + "routeId": "L714", + "platformId": "U6228Z3", + "id": "37558b67-1211-40b2-8688-a9042fcc1371" + }, + { + "routeId": "L714", + "platformId": "U6228Z4", + "id": "b37c9d2b-66c1-41e4-9fd1-bbe69a93c90b" + }, + { + "routeId": "L714", + "platformId": "U6229Z1", + "id": "41bb58c9-4bf9-4dee-a465-dd6a0f8f4c20" + }, + { + "routeId": "L714", + "platformId": "U6229Z2", + "id": "a9e8f5bf-df0d-4742-847e-0848dd53c0b8" + }, + { + "routeId": "L201", + "platformId": "U622Z1", + "id": "5e5679fc-8c57-4909-89a1-81f8367a192d" + }, + { + "routeId": "L905", + "platformId": "U622Z1", + "id": "98d3c1fb-be1e-48bf-9799-7adb9dff9b4f" + }, + { + "routeId": "L911", + "platformId": "U622Z1", + "id": "57f00139-80e6-431d-8e6b-b371368a34fd" + }, + { + "routeId": "L201", + "platformId": "U622Z2", + "id": "d5209aa0-40de-4c8f-b953-74b3d40ca298" + }, + { + "routeId": "L905", + "platformId": "U622Z2", + "id": "c58dd992-40db-43d2-a8a3-52b6a4d1ea78" + }, + { + "routeId": "L911", + "platformId": "U622Z2", + "id": "af8f7a1f-4840-4546-a37d-bedcd060a6db" + }, + { + "routeId": "L714", + "platformId": "U6230Z1", + "id": "107955fc-0c7d-48f7-b601-858896a8d24d" + }, + { + "routeId": "L714", + "platformId": "U6230Z2", + "id": "2a93a653-53da-4c36-a8d6-5e9edd3f0c5e" + }, + { + "routeId": "L714", + "platformId": "U6231Z1", + "id": "e7badb35-f932-4b0e-98e5-0c13754a255b" + }, + { + "routeId": "L714", + "platformId": "U6231Z2", + "id": "e5fcd391-7ce3-4658-a75a-7591c8d19d3c" + }, + { + "routeId": "L714", + "platformId": "U6232Z1", + "id": "6e64da49-ad28-411f-879e-34bff3410e81" + }, + { + "routeId": "L714", + "platformId": "U6232Z2", + "id": "e7165e0f-5269-4497-b5aa-7a40944f386b" + }, + { + "routeId": "L713", + "platformId": "U6233Z1", + "id": "5a34a983-5c5e-4ac3-a5db-7558f6c4cfdb" + }, + { + "routeId": "L725", + "platformId": "U6233Z1", + "id": "5d1adb1b-160a-436f-a370-1902041dec8b" + }, + { + "routeId": "L723", + "platformId": "U6233Z1", + "id": "e1f313b7-f710-400e-a570-d3946bfac627" + }, + { + "routeId": "L724", + "platformId": "U6233Z1", + "id": "77a71908-8d11-4d68-9f5c-1342dfee69a0" + }, + { + "routeId": "L713", + "platformId": "U6233Z2", + "id": "a2bdcc1d-19d2-4698-bf57-b10de9e5275f" + }, + { + "routeId": "L725", + "platformId": "U6233Z2", + "id": "0332f2db-c2fb-4821-b325-84d6ad0d785e" + }, + { + "routeId": "L723", + "platformId": "U6233Z2", + "id": "09b4b753-02e8-48b9-a5e7-f7cdb0596fb8" + }, + { + "routeId": "L724", + "platformId": "U6233Z2", + "id": "4777eafc-6c85-499e-9b93-9b4518156f9f" + }, + { + "routeId": "L499", + "platformId": "U6234Z1", + "id": "50b8ac8c-42b4-4fa8-afbe-ed2a3e2ae62a" + }, + { + "routeId": "L499", + "platformId": "U6234Z2", + "id": "29a8e9fb-3159-43ea-9d9c-6f3099de6acb" + }, + { + "routeId": "L499", + "platformId": "U6235Z1", + "id": "0e21fb3c-edf3-40bd-8b6f-d383a3939d02" + }, + { + "routeId": "L499", + "platformId": "U6235Z2", + "id": "7856d471-0788-426a-ae24-5695bc71b904" + }, + { + "routeId": "L499", + "platformId": "U6236Z1", + "id": "b4a866e5-c457-436a-8a78-eece7c24e6b0" + }, + { + "routeId": "L499", + "platformId": "U6236Z2", + "id": "37bad86c-4e25-45be-95d3-eba177703fb1" + }, + { + "routeId": "L499", + "platformId": "U6237Z1", + "id": "7f30b800-b8ba-45c3-8db4-11f67912ccb2" + }, + { + "routeId": "L499", + "platformId": "U6237Z2", + "id": "40ac88a3-b64a-4b87-bac7-40c977c24f13" + }, + { + "routeId": "L499", + "platformId": "U6238Z1", + "id": "0ad3b8fa-9fe5-4583-b7ea-27e4485b5628" + }, + { + "routeId": "L499", + "platformId": "U6238Z2", + "id": "cef18bbc-ff73-457d-b26d-bc3f4c346fca" + }, + { + "routeId": "L499", + "platformId": "U6239Z1", + "id": "fe450f83-2f02-43c3-b14e-c7233cf54f44" + }, + { + "routeId": "L499", + "platformId": "U6239Z2", + "id": "0037387f-1eaa-4d3c-bdba-b9f260381e9f" + }, + { + "routeId": "L107", + "platformId": "U623Z1", + "id": "b6fbb749-671c-421b-92ad-b90ba4b56fb9" + }, + { + "routeId": "L147", + "platformId": "U623Z1", + "id": "22abe4a2-c502-48ed-bb26-b8b40de0b2c7" + }, + { + "routeId": "L909", + "platformId": "U623Z1", + "id": "5e913c4e-7c55-4069-8f8c-162a4c89c084" + }, + { + "routeId": "L107", + "platformId": "U623Z2", + "id": "bdec7d56-c0e0-4848-9ebc-cdbe128d0bfa" + }, + { + "routeId": "L147", + "platformId": "U623Z2", + "id": "a58c249b-2ba7-448b-adff-d4a44b37ca3e" + }, + { + "routeId": "L909", + "platformId": "U623Z2", + "id": "32ceed29-ab80-4838-826f-ee89d02cbcaa" + }, + { + "routeId": "L340", + "platformId": "U623Z3", + "id": "9b28b0ce-71be-4b08-85f8-b097479de3b8" + }, + { + "routeId": "L954", + "platformId": "U623Z3", + "id": "4634b159-fae2-4e17-9940-60fb012facf5" + }, + { + "routeId": "L350", + "platformId": "U623Z3", + "id": "f0c8a85e-63b7-44ef-89bd-e97826f3fc32" + }, + { + "routeId": "L340", + "platformId": "U623Z4", + "id": "ecce8124-a327-4017-982f-bc5f08bd65be" + }, + { + "routeId": "L954", + "platformId": "U623Z4", + "id": "95794719-995c-418a-8594-4d567ef8e113" + }, + { + "routeId": "L350", + "platformId": "U623Z4", + "id": "7e611d91-669c-4761-bb45-c298f799f11c" + }, + { + "routeId": "L499", + "platformId": "U6240Z1", + "id": "808e9891-b2e4-440e-b629-3e42766aaf51" + }, + { + "routeId": "L499", + "platformId": "U6240Z2", + "id": "5036f65a-dd27-4dc8-bab0-8ef5eb195816" + }, + { + "routeId": "L499", + "platformId": "U6243Z1", + "id": "85bf8674-c7e0-47c1-89c4-2c0a4c1b0e36" + }, + { + "routeId": "L499", + "platformId": "U6243Z2", + "id": "a137c804-6a48-4742-ae05-c2c218b4946f" + }, + { + "routeId": "L499", + "platformId": "U6244Z1", + "id": "99bc8b49-db05-4f37-9f01-482492007eda" + }, + { + "routeId": "L499", + "platformId": "U6244Z2", + "id": "4979a300-4d39-4cd2-a502-c418a24c7623" + }, + { + "routeId": "L775", + "platformId": "U6247Z1", + "id": "d56d3d7e-130a-4d9f-977c-f6fda04c71dd" + }, + { + "routeId": "L775", + "platformId": "U6247Z2", + "id": "0bcb68cf-2681-437f-9e3f-eeabcb2441d6" + }, + { + "routeId": "L731", + "platformId": "U6248Z1", + "id": "4ccb28d2-95ca-4b61-bd45-d8d38fcbc726" + }, + { + "routeId": "L138", + "platformId": "U624Z1", + "id": "18e85049-d603-4424-8088-1888c1da49ee" + }, + { + "routeId": "L138", + "platformId": "U624Z2", + "id": "717df5d5-10fd-4122-8d8c-6050c58b832b" + }, + { + "routeId": "L459", + "platformId": "U6252Z1", + "id": "1592578d-4ee2-4c4d-881e-70a5b6aca31b" + }, + { + "routeId": "L459", + "platformId": "U6252Z2", + "id": "6062af31-926f-443f-9c0d-781c413f2992" + }, + { + "routeId": "L403", + "platformId": "U6255Z1", + "id": "9f58309d-925f-4704-a5d8-4063dc3f21e8" + }, + { + "routeId": "L403", + "platformId": "U6255Z2", + "id": "5454656e-5b27-4b6b-b84c-c9f4362a6487" + }, + { + "routeId": "L731", + "platformId": "U6256Z1", + "id": "435ba382-77bb-49f2-9534-55f429c8ae02" + }, + { + "routeId": "L731", + "platformId": "U6256Z2", + "id": "3f671cd4-5e5a-45ca-9d60-efef1909fede" + }, + { + "routeId": "L139", + "platformId": "U625Z1", + "id": "80744f80-a407-4edd-b529-7db2fd99d679" + }, + { + "routeId": "L150", + "platformId": "U625Z1", + "id": "c11f12e3-0c0a-4d50-a4b1-1c2cfa9c542f" + }, + { + "routeId": "L910", + "platformId": "U625Z1", + "id": "958008d9-bbf6-45dd-9d4c-7714968559c6" + }, + { + "routeId": "L117", + "platformId": "U625Z1", + "id": "cc982e26-43f7-4e29-b846-a2e8d86fe0b5" + }, + { + "routeId": "L139", + "platformId": "U625Z2", + "id": "4114697e-b508-44e9-947c-5b1704c2ce38" + }, + { + "routeId": "L150", + "platformId": "U625Z2", + "id": "b5d89a67-758b-483b-b954-fc9093ea62db" + }, + { + "routeId": "L910", + "platformId": "U625Z2", + "id": "00720e4a-5a8c-4024-bc30-acbf1d14c7b7" + }, + { + "routeId": "L117", + "platformId": "U625Z2", + "id": "e59131ca-d99e-4184-a525-057bc7053c99" + }, + { + "routeId": "L403", + "platformId": "U6260Z51", + "id": "2387ac60-6e42-4a75-8c02-4c0673be98b6" + }, + { + "routeId": "L775", + "platformId": "U6260Z51", + "id": "c4eae8f7-e6a7-4a93-9ec5-874e6ab3e8e8" + }, + { + "routeId": "L403", + "platformId": "U6260Z52", + "id": "d36e3e94-660c-4269-a041-2cc42fb973b1" + }, + { + "routeId": "L775", + "platformId": "U6260Z52", + "id": "ec778012-9273-480b-b121-41addfaea00c" + }, + { + "routeId": "L713", + "platformId": "U6261Z1", + "id": "deb44896-5380-4205-9e1e-74cc7714f544" + }, + { + "routeId": "L725", + "platformId": "U6261Z1", + "id": "f984ad55-cadf-430b-ade6-e2ce57ff2cce" + }, + { + "routeId": "L724", + "platformId": "U6261Z1", + "id": "66cac91f-7a5c-49b3-9d27-3be62f35fd8e" + }, + { + "routeId": "L713", + "platformId": "U6261Z2", + "id": "7cb44d92-2c8f-4573-95e6-9f9963247f21" + }, + { + "routeId": "L725", + "platformId": "U6261Z2", + "id": "a547a6e7-1bbd-48ea-9275-71f8f5a048a3" + }, + { + "routeId": "L723", + "platformId": "U6261Z3", + "id": "497c7857-1821-42b5-8b26-2fdaea579b11" + }, + { + "routeId": "L724", + "platformId": "U6261Z3", + "id": "4603f687-05bd-4d09-8c18-8db1e501eb9c" + }, + { + "routeId": "L723", + "platformId": "U6261Z4", + "id": "bd912ed8-3676-412c-8019-9b0e0fa573bc" + }, + { + "routeId": "L724", + "platformId": "U6261Z4", + "id": "29fd0d17-69b7-4829-8f08-8dcf7bba9614" + }, + { + "routeId": "L723", + "platformId": "U6262Z1", + "id": "73b51828-45d8-486e-a6c1-ea818ed43e5e" + }, + { + "routeId": "L724", + "platformId": "U6262Z1", + "id": "e4fa2b29-bd41-4783-b691-214941ddeeaf" + }, + { + "routeId": "L723", + "platformId": "U6262Z2", + "id": "ff04a1f8-b620-43b7-a641-c809cd915272" + }, + { + "routeId": "L724", + "platformId": "U6262Z2", + "id": "a7bc9e35-3456-423e-ac06-ee130ed5636a" + }, + { + "routeId": "L723", + "platformId": "U6269Z1", + "id": "b7369aa2-364b-4b01-bc17-ecfc2b3dbbec" + }, + { + "routeId": "L723", + "platformId": "U6269Z2", + "id": "b85542ef-2428-4f82-aa64-919d8d05853f" + }, + { + "routeId": "L191", + "platformId": "U626Z1", + "id": "af62d865-5410-4e37-9cbc-09bf0735ab7a" + }, + { + "routeId": "L910", + "platformId": "U626Z1", + "id": "a4d23272-32f3-4c77-9753-92939a901159" + }, + { + "routeId": "L191", + "platformId": "U626Z2", + "id": "6ff29c33-3160-489c-8a72-7f5743da8b33" + }, + { + "routeId": "L910", + "platformId": "U626Z2", + "id": "1ebf34c0-c780-4a93-8a3e-ccf175b9e099" + }, + { + "routeId": "L723", + "platformId": "U6272Z1", + "id": "260c6d3f-bb22-4115-a15a-11e28d569d03" + }, + { + "routeId": "L723", + "platformId": "U6272Z2", + "id": "9da2ae78-33ca-46d6-8d17-1e997b02933a" + }, + { + "routeId": "L403", + "platformId": "U6273Z1", + "id": "e47f7467-78c5-49cb-b3fe-ceee8c01d7f1" + }, + { + "routeId": "L723", + "platformId": "U6273Z1", + "id": "9ac7b351-7761-4418-b3c4-06d2298d8d26" + }, + { + "routeId": "L403", + "platformId": "U6273Z2", + "id": "6e9fe16b-69a2-4953-9b6d-787b0fa9edaa" + }, + { + "routeId": "L723", + "platformId": "U6273Z2", + "id": "7a504361-e9be-420b-a5a2-f834ea52a1ea" + }, + { + "routeId": "L724", + "platformId": "U6274Z1", + "id": "6883046a-075c-4806-afe3-2c2bcc2cdcd3" + }, + { + "routeId": "L724", + "platformId": "U6274Z2", + "id": "c0c7ea87-3638-4dcd-bda0-41e1a6260516" + }, + { + "routeId": "L724", + "platformId": "U6275Z1", + "id": "cf1eace3-a06e-4247-8cc0-8206fc80f159" + }, + { + "routeId": "L724", + "platformId": "U6275Z2", + "id": "07680b7d-beae-477b-adc9-9e4cb227feb7" + }, + { + "routeId": "L724", + "platformId": "U6276Z1", + "id": "de52d18b-1078-4a24-bc40-4626ce079a6b" + }, + { + "routeId": "L724", + "platformId": "U6276Z2", + "id": "3b84b21e-2f95-429f-a468-5b4102e75929" + }, + { + "routeId": "L403", + "platformId": "U6277Z51", + "id": "1b6a3dd5-8d9b-4bbe-8ff0-ef870e3d7a46" + }, + { + "routeId": "L724", + "platformId": "U6277Z51", + "id": "2723ccee-b538-4bff-80f9-20d5045c6537" + }, + { + "routeId": "L403", + "platformId": "U6277Z52", + "id": "e3c57567-36bc-499f-985a-4e503c39d592" + }, + { + "routeId": "L724", + "platformId": "U6277Z52", + "id": "7eaf89f1-5960-4b13-91d4-527744b2102e" + }, + { + "routeId": "L403", + "platformId": "U6278Z1", + "id": "aa22d44b-441c-4beb-a429-ca99ed5cf6e5" + }, + { + "routeId": "L403", + "platformId": "U6278Z2", + "id": "b2215767-a878-42e7-bb54-9841724836e7" + }, + { + "routeId": "L724", + "platformId": "U6278Z3", + "id": "b13bd35a-c8da-4b1f-bee1-fefc9ed18d3f" + }, + { + "routeId": "L724", + "platformId": "U6278Z4", + "id": "1c51128c-3e02-4f83-8c2e-00ac9c107e1d" + }, + { + "routeId": "L724", + "platformId": "U6279Z1", + "id": "36eef0dd-68e7-4df7-9dbc-c52761513338" + }, + { + "routeId": "L724", + "platformId": "U6279Z2", + "id": "1943e02f-7cf9-42df-8b9c-cde738cbeee5" + }, + { + "routeId": "L13", + "platformId": "U627Z1", + "id": "00423b03-25bf-4a8e-9c84-63d5ec9ab8dd" + }, + { + "routeId": "L22", + "platformId": "U627Z1", + "id": "f29fd423-13f1-47be-8f81-d1fdd914dd9e" + }, + { + "routeId": "L97", + "platformId": "U627Z1", + "id": "49329aa0-2843-4a1e-a34d-5c1c5f6c96f0" + }, + { + "routeId": "L99", + "platformId": "U627Z1", + "id": "bebaf7f1-7595-4024-9389-5e917fab26b4" + }, + { + "routeId": "L13", + "platformId": "U627Z2", + "id": "fdf95015-64be-42b2-b297-4fe887cef00d" + }, + { + "routeId": "L22", + "platformId": "U627Z2", + "id": "f257cd6e-0575-4eab-9c84-de8ae4e7d4bc" + }, + { + "routeId": "L97", + "platformId": "U627Z2", + "id": "982c424e-6a9d-406e-9734-b5b410425dd5" + }, + { + "routeId": "L99", + "platformId": "U627Z2", + "id": "f7bd66de-4b83-4b00-93e8-2476477e9885" + }, + { + "routeId": "L724", + "platformId": "U6280Z1", + "id": "495a435c-bebb-4a45-b816-4fb6fef56a67" + }, + { + "routeId": "L724", + "platformId": "U6280Z2", + "id": "4f8a381d-7ee1-42ba-90f0-23b6dbfb481b" + }, + { + "routeId": "L724", + "platformId": "U6281Z1", + "id": "5e0a3168-288c-4d69-af31-0e3da17be343" + }, + { + "routeId": "L724", + "platformId": "U6281Z2", + "id": "9b23b0a9-a0c6-484e-a552-4a3b9267b43a" + }, + { + "routeId": "L713", + "platformId": "U6282Z1", + "id": "68377a2d-2c7f-4117-9743-ba11dd7bad39" + }, + { + "routeId": "L724", + "platformId": "U6282Z1", + "id": "cbbd7440-097c-460b-ac28-c106e7050e8a" + }, + { + "routeId": "L713", + "platformId": "U6282Z2", + "id": "8f466dca-6038-46a5-a2d6-d101df7c7891" + }, + { + "routeId": "L725", + "platformId": "U6282Z2", + "id": "cdaa7b28-8257-4fcb-a009-2d5f5b44d592" + }, + { + "routeId": "L724", + "platformId": "U6282Z2", + "id": "b718e222-0ee3-4090-994a-296b546d8b53" + }, + { + "routeId": "L713", + "platformId": "U6283Z1", + "id": "74bb74e1-3fc7-41bd-9c22-7b90cec149c8" + }, + { + "routeId": "L713", + "platformId": "U6283Z2", + "id": "b25c0696-9415-423c-83a3-fd8c632644f5" + }, + { + "routeId": "L725", + "platformId": "U6283Z2", + "id": "df31ce8c-5829-400a-a2f7-c22c0a85f90e" + }, + { + "routeId": "L403", + "platformId": "U6284Z1", + "id": "f532758f-35bc-4df3-bdc9-7938edfcc95f" + }, + { + "routeId": "L725", + "platformId": "U6284Z1", + "id": "ab246bb1-9982-4feb-a424-d7ee76d6de55" + }, + { + "routeId": "L403", + "platformId": "U6284Z2", + "id": "e08e613b-5f45-4f46-98f6-0fafab28f740" + }, + { + "routeId": "L403", + "platformId": "U6285Z1", + "id": "2ccca43f-6307-4342-b0f8-51105f716ad3" + }, + { + "routeId": "L725", + "platformId": "U6285Z1", + "id": "70be619a-c8a3-41b9-a7e9-713db9ad5ea6" + }, + { + "routeId": "L725", + "platformId": "U6287Z2", + "id": "5f0a23b0-6a7f-4afc-9cc8-9ba2695fe84d" + }, + { + "routeId": "L463", + "platformId": "U6288Z1", + "id": "662be517-4e6a-4a88-89f6-d5a8d8915a93" + }, + { + "routeId": "L403", + "platformId": "U6288Z1", + "id": "30188a5a-33fd-4c5d-a8eb-874235a34faa" + }, + { + "routeId": "L463", + "platformId": "U6288Z2", + "id": "af018d4e-fba6-4346-a9a2-05df45937b09" + }, + { + "routeId": "L403", + "platformId": "U6288Z2", + "id": "6eeaafff-5c9e-48b3-ac33-c4ea9724ff81" + }, + { + "routeId": "L463", + "platformId": "U6289Z1", + "id": "2b2c9fcb-754a-4530-bc51-7c6bb9732977" + }, + { + "routeId": "L463", + "platformId": "U6289Z2", + "id": "7cf677bd-b1b9-471e-aca2-2f1f6649b8d7" + }, + { + "routeId": "L100", + "platformId": "U628Z1", + "id": "fd474a03-4bd7-48f3-83b5-0db757d03c0a" + }, + { + "routeId": "L191", + "platformId": "U628Z1", + "id": "7901f5b8-24d2-4506-ba47-b0c78d95ea50" + }, + { + "routeId": "L290", + "platformId": "U628Z1", + "id": "b4a5f7f0-d4b3-4c4a-b2ff-f896ad1569ad" + }, + { + "routeId": "L907", + "platformId": "U628Z1", + "id": "8fe24eaf-47f0-461c-9b96-a0113d1a9fc3" + }, + { + "routeId": "L910", + "platformId": "U628Z1", + "id": "0f01e931-b2a2-4e7b-a9f7-7e5ad4fc0557" + }, + { + "routeId": "L59", + "platformId": "U628Z1", + "id": "951a04bf-708c-46fc-b6b3-849f222066c7" + }, + { + "routeId": "L322", + "platformId": "U628Z10", + "id": "2b4e2c95-9b15-4e1c-ba81-17f5e4544315" + }, + { + "routeId": "L414", + "platformId": "U628Z10", + "id": "76ba53ed-7ed7-404b-8920-8a0eaf07f6b5" + }, + { + "routeId": "L429", + "platformId": "U628Z10", + "id": "03f9c8e5-e611-4ee0-b528-94654221c986" + }, + { + "routeId": "L100", + "platformId": "U628Z5", + "id": "e9b15b60-15a9-43bd-8a73-4adce5980818" + }, + { + "routeId": "L191", + "platformId": "U628Z5", + "id": "fa643dd9-a9c1-4c95-a009-1212466fabe9" + }, + { + "routeId": "L907", + "platformId": "U628Z5", + "id": "bd5b1dca-28ad-40d2-92ad-54918d0abf4a" + }, + { + "routeId": "L910", + "platformId": "U628Z5", + "id": "ff0cfa47-0e41-4784-98ce-a6a12f4f3f7c" + }, + { + "routeId": "L59", + "platformId": "U628Z5", + "id": "a04f9b16-1087-4e03-ab8f-85532a1d53d7" + }, + { + "routeId": "L290", + "platformId": "U628Z7", + "id": "1492bb0f-526e-4812-ab27-780fae1c34bf" + }, + { + "routeId": "L403", + "platformId": "U6290Z1", + "id": "36c74f8c-5439-410d-a69d-05c976c92a4a" + }, + { + "routeId": "L403", + "platformId": "U6290Z2", + "id": "f9ff0721-3698-470c-a295-dd189e0516dc" + }, + { + "routeId": "L403", + "platformId": "U6291Z1", + "id": "ea04fd72-8a4a-456f-9ef9-3884a8d71638" + }, + { + "routeId": "L403", + "platformId": "U6291Z2", + "id": "a38eb7c3-bc97-4929-83ce-c44d7bf4d9d3" + }, + { + "routeId": "L403", + "platformId": "U6292Z1", + "id": "cd9a0a7a-6c42-4fd8-8efe-c1f95ea29bd7" + }, + { + "routeId": "L403", + "platformId": "U6292Z2", + "id": "612f1033-6caf-42c1-bc24-7d164d72efb6" + }, + { + "routeId": "L713", + "platformId": "U6293Z1", + "id": "fe3ca2e0-d156-4771-b89b-98b48e44b6a1" + }, + { + "routeId": "L713", + "platformId": "U6293Z2", + "id": "ca44e415-acfb-4c10-9147-50f97f4ecb02" + }, + { + "routeId": "L713", + "platformId": "U6294Z1", + "id": "42859270-3523-45e1-acf7-2667a1636c83" + }, + { + "routeId": "L713", + "platformId": "U6294Z2", + "id": "c875ec88-a2fd-480a-8602-5f16a4ccd926" + }, + { + "routeId": "L725", + "platformId": "U6294Z2", + "id": "41451f57-777b-4e71-ad38-358a5d15750b" + }, + { + "routeId": "L713", + "platformId": "U6295Z1", + "id": "516a0926-f8ed-41a0-a393-5870a9dd2bb5" + }, + { + "routeId": "L713", + "platformId": "U6295Z2", + "id": "1e5e1a14-7c7d-44df-a0f3-207cca9737d4" + }, + { + "routeId": "L725", + "platformId": "U6295Z2", + "id": "934e19d9-6de6-4b1b-a1bd-1079a95eade4" + }, + { + "routeId": "L713", + "platformId": "U6296Z1", + "id": "3e3b10a2-4d77-45ae-bb2c-8f992d68d2c7" + }, + { + "routeId": "L713", + "platformId": "U6296Z2", + "id": "e3895d65-566f-46c9-939d-890c455f2ef4" + }, + { + "routeId": "L725", + "platformId": "U6296Z2", + "id": "d1b615fd-2c7f-499d-8e5f-7b7034512e3f" + }, + { + "routeId": "L713", + "platformId": "U6297Z1", + "id": "ad6683d9-8991-4af9-8f6b-7beb295d75be" + }, + { + "routeId": "L713", + "platformId": "U6297Z2", + "id": "2f271530-515a-44a7-918e-5437dd7d7b5d" + }, + { + "routeId": "L725", + "platformId": "U6297Z2", + "id": "3180cd02-f342-4219-9fa0-4e2bcb155bd8" + }, + { + "routeId": "L725", + "platformId": "U6298Z2", + "id": "c7bfc67a-7adf-47e9-bea9-36ff39b27251" + }, + { + "routeId": "L907", + "platformId": "U629Z1", + "id": "f8936966-1695-47a6-a85c-05aa9f67305d" + }, + { + "routeId": "L910", + "platformId": "U629Z1", + "id": "444f5cfe-ea13-426d-9ddb-e06c0142a46f" + }, + { + "routeId": "L59", + "platformId": "U629Z1", + "id": "07310448-67a9-425d-8413-8969206835de" + }, + { + "routeId": "L100", + "platformId": "U629Z2", + "id": "5cbd97d8-fe01-48d0-9d81-9206515d1839" + }, + { + "routeId": "L191", + "platformId": "U629Z2", + "id": "30b6e556-957a-4693-a63e-e77d6ada06db" + }, + { + "routeId": "L100", + "platformId": "U629Z3", + "id": "1dfbf05e-ef1f-4bc1-9664-d90bd8251c9a" + }, + { + "routeId": "L191", + "platformId": "U629Z3", + "id": "e1ffcc2e-8a1d-42f8-b9d0-2249db97efd1" + }, + { + "routeId": "L290", + "platformId": "U629Z3", + "id": "0d6ea49c-8540-4c9f-b934-d3450da8990e" + }, + { + "routeId": "L907", + "platformId": "U629Z3", + "id": "9614d389-0507-4aed-8664-b285c41d28a9" + }, + { + "routeId": "L910", + "platformId": "U629Z3", + "id": "7e4a159b-f458-4205-8943-eab4cacf4be2" + }, + { + "routeId": "L59", + "platformId": "U629Z3", + "id": "e3439ccd-8643-4637-9d4f-a87cc6c2cad5" + }, + { + "routeId": "L139", + "platformId": "U62Z1", + "id": "f3a30d71-615d-43e6-8a87-71023afcb297" + }, + { + "routeId": "L246", + "platformId": "U62Z1", + "id": "ea543773-e5c7-4f12-b616-9154b1748555" + }, + { + "routeId": "L117", + "platformId": "U62Z1", + "id": "4a8b3e14-af14-4be5-912e-ba26b60333aa" + }, + { + "routeId": "L917", + "platformId": "U62Z1", + "id": "2724cd1f-1005-460d-b667-5c82868a5fd5" + }, + { + "routeId": "L139", + "platformId": "U62Z2", + "id": "47da1ae2-7ad0-41de-bb1f-4faeae1f6cb6" + }, + { + "routeId": "L246", + "platformId": "U62Z2", + "id": "a973608e-309e-4a45-b763-4b39437ec9b0" + }, + { + "routeId": "L117", + "platformId": "U62Z2", + "id": "d5a80151-6c8b-4bea-8cd0-c5af99768bce" + }, + { + "routeId": "L917", + "platformId": "U62Z2", + "id": "7ae7469f-416f-4e93-a5c0-050bf5117e0a" + }, + { + "routeId": "L714", + "platformId": "U6300Z2", + "id": "51154ce5-f7e4-45e7-b2f5-8af6304d77df" + }, + { + "routeId": "L714", + "platformId": "U6301Z1", + "id": "dbe37466-53df-4796-ba3a-6270f4c01ce7" + }, + { + "routeId": "L714", + "platformId": "U6307Z1", + "id": "97630a7e-76e1-4d04-8888-9e2e00f6f820" + }, + { + "routeId": "L714", + "platformId": "U6307Z2", + "id": "713a889c-015a-412f-a68f-e962b4728954" + }, + { + "routeId": "L108", + "platformId": "U630Z1", + "id": "fb02e477-529d-4eb5-9a11-66c2ea66895f" + }, + { + "routeId": "L168", + "platformId": "U630Z1", + "id": "0a8f9e9c-075b-4e04-a4cd-d5896bfe3716" + }, + { + "routeId": "L108", + "platformId": "U630Z2", + "id": "6999b963-7c89-4894-b977-ed25b30dee90" + }, + { + "routeId": "L168", + "platformId": "U630Z2", + "id": "b8b8e051-edc2-4ae4-b284-21beff0e55cd" + }, + { + "routeId": "L714", + "platformId": "U6313Z1", + "id": "332dd5e2-dc78-4902-a0d9-c71857548600" + }, + { + "routeId": "L714", + "platformId": "U6313Z2", + "id": "25530193-7a63-444c-a5ad-1efdf97d22fc" + }, + { + "routeId": "L714", + "platformId": "U6314Z1", + "id": "c0980530-d84a-4c34-9992-72114e16d9ae" + }, + { + "routeId": "L714", + "platformId": "U6314Z2", + "id": "5c741a1a-b0ff-493a-9218-7bdacf3de253" + }, + { + "routeId": "L714", + "platformId": "U6315Z1", + "id": "a069a502-4b4f-4381-a0cc-a9f3e68ff1f6" + }, + { + "routeId": "L714", + "platformId": "U6315Z2", + "id": "7860126d-851c-4e4a-b1e0-6d95d6bdae43" + }, + { + "routeId": "L714", + "platformId": "U6316Z1", + "id": "02245c86-46f5-4e5f-b37a-723b93ca965e" + }, + { + "routeId": "L714", + "platformId": "U6316Z2", + "id": "4e2e28e8-c0b4-4db0-b6a0-e93cbb65a8a0" + }, + { + "routeId": "L714", + "platformId": "U6317Z1", + "id": "1aebfac5-b4a9-4e5b-bba9-dc880f197bfc" + }, + { + "routeId": "L714", + "platformId": "U6317Z2", + "id": "d22b88a4-d285-4798-9c97-4acbd2eed5d6" + }, + { + "routeId": "L714", + "platformId": "U6319Z1", + "id": "8c94317e-4b4a-4693-806d-6ff240152824" + }, + { + "routeId": "L714", + "platformId": "U6319Z2", + "id": "ec77d919-ba9c-4a82-b95e-064b246259b1" + }, + { + "routeId": "L108", + "platformId": "U631Z1", + "id": "15104464-1a23-4279-9b59-d54965969adb" + }, + { + "routeId": "L168", + "platformId": "U631Z1", + "id": "5ac4195b-8b82-4b11-b84b-2165769bbcb4" + }, + { + "routeId": "L108", + "platformId": "U631Z2", + "id": "921077f3-2a84-4496-8101-01977aea2d6d" + }, + { + "routeId": "L168", + "platformId": "U631Z2", + "id": "c4839e79-0b57-47d7-9bed-345197ad9f0d" + }, + { + "routeId": "L542", + "platformId": "U6321Z1", + "id": "b5b55845-4360-494e-99c4-534d4788cfec" + }, + { + "routeId": "L542", + "platformId": "U6321Z2", + "id": "61aad35b-2e78-46f7-b353-525c2fb1daf4" + }, + { + "routeId": "L415", + "platformId": "U6322Z1", + "id": "c1c1a1e2-2612-4327-a9a2-6b36a3b384ac" + }, + { + "routeId": "L415", + "platformId": "U6322Z2", + "id": "bbd9d137-5c96-4197-b032-56a2c8c7fb44" + }, + { + "routeId": "L427", + "platformId": "U6324Z1", + "id": "48555de4-504a-49c6-bb8e-49da2a92035f" + }, + { + "routeId": "L722", + "platformId": "U6324Z1", + "id": "093e85c0-ef1d-4257-a8ac-6badb4d81601" + }, + { + "routeId": "L427", + "platformId": "U6324Z2", + "id": "caf489fd-426c-4baa-b2cb-d5a94de09174" + }, + { + "routeId": "L722", + "platformId": "U6324Z2", + "id": "8520efef-ce66-4767-a0b7-2f366176fb8d" + }, + { + "routeId": "L427", + "platformId": "U6329Z1", + "id": "22b56f1c-62ac-4aa6-a29a-d0d16559b7c6" + }, + { + "routeId": "L427", + "platformId": "U6329Z2", + "id": "9c8bcabd-44dd-4ed3-bd8f-66374b4d0c3d" + }, + { + "routeId": "L124", + "platformId": "U632Z1", + "id": "ac7e1041-400b-489c-b368-1a6a708eb82f" + }, + { + "routeId": "L134", + "platformId": "U632Z1", + "id": "934fd168-fbba-473f-8c87-1150223e044a" + }, + { + "routeId": "L121", + "platformId": "U632Z3", + "id": "c3d07e9f-5f31-4e0f-8b2d-2e8492a3af9d" + }, + { + "routeId": "L124", + "platformId": "U632Z3", + "id": "4fbb32d3-d4ef-44ed-ba63-a4012061d616" + }, + { + "routeId": "L134", + "platformId": "U632Z3", + "id": "9c3acb35-5b96-4e41-93ec-5586d4e9a0ad" + }, + { + "routeId": "L170", + "platformId": "U632Z3", + "id": "a0232366-a5ac-49e5-8d41-507e74ae88e5" + }, + { + "routeId": "L121", + "platformId": "U632Z4", + "id": "7cf7c42a-caa1-47c1-8779-1171731e972e" + }, + { + "routeId": "L170", + "platformId": "U632Z4", + "id": "34e52253-3eb1-4e4f-8749-08dbf28e164d" + }, + { + "routeId": "L427", + "platformId": "U6330Z1", + "id": "3a205dcc-83a7-45f3-9b59-3e9732e1ddfe" + }, + { + "routeId": "L427", + "platformId": "U6330Z2", + "id": "4c010427-8de9-4753-88f7-88d65c2d6ce6" + }, + { + "routeId": "L722", + "platformId": "U6332Z2", + "id": "bf697f10-1532-4157-b3ed-90576bc2f31f" + }, + { + "routeId": "L722", + "platformId": "U6333Z2", + "id": "64f81f75-76fb-4212-ae23-dc0b5c81ea07" + }, + { + "routeId": "L722", + "platformId": "U6334Z2", + "id": "392dfc8c-cf18-4d6f-997e-efab5156379e" + }, + { + "routeId": "L722", + "platformId": "U6335Z4", + "id": "5bb7478e-3b31-4584-8000-6e01a1c31eb7" + }, + { + "routeId": "L427", + "platformId": "U6338Z1", + "id": "a03535c4-e7ec-464a-b1e5-f7796d62b260" + }, + { + "routeId": "L427", + "platformId": "U6338Z2", + "id": "717eebda-31b9-4b63-a508-c238dc2947ed" + }, + { + "routeId": "L125", + "platformId": "U633Z1", + "id": "daf5e69e-2430-4992-a35d-5541175e1677" + }, + { + "routeId": "L154", + "platformId": "U633Z1", + "id": "40e414ea-0033-44b6-b5ac-7053cf314614" + }, + { + "routeId": "L175", + "platformId": "U633Z1", + "id": "cc734b14-8cf2-46f0-b101-ff99dc87a841" + }, + { + "routeId": "L183", + "platformId": "U633Z1", + "id": "f082a87d-ce87-49dd-a01b-05546b43c961" + }, + { + "routeId": "L911", + "platformId": "U633Z1", + "id": "cbe50903-c926-435a-9400-f9142e0c0dcb" + }, + { + "routeId": "L125", + "platformId": "U633Z2", + "id": "8fb73d96-318b-43b0-bb84-6b801e7f48e3" + }, + { + "routeId": "L154", + "platformId": "U633Z2", + "id": "979deac7-3b08-4732-a9ff-629b38384a06" + }, + { + "routeId": "L175", + "platformId": "U633Z2", + "id": "7936bbe8-5705-4477-a19a-22794c0582a6" + }, + { + "routeId": "L183", + "platformId": "U633Z2", + "id": "7082e25a-7401-40cc-b75b-ebb7c37aaa90" + }, + { + "routeId": "L911", + "platformId": "U633Z2", + "id": "d7b75667-bfa8-4d5b-8453-5f890ac3f7ef" + }, + { + "routeId": "L427", + "platformId": "U6343Z1", + "id": "6d832abf-591f-404f-af19-94b6ba0320ab" + }, + { + "routeId": "L427", + "platformId": "U6343Z2", + "id": "c4ab2ee1-aead-4d0e-9ac4-57d6c549a368" + }, + { + "routeId": "L427", + "platformId": "U6344Z1", + "id": "e6d13c26-07d1-4e40-ad7a-a6a7c4f36960" + }, + { + "routeId": "L427", + "platformId": "U6344Z2", + "id": "962a8d4e-c508-4791-b213-0290a2af79ff" + }, + { + "routeId": "L427", + "platformId": "U6345Z1", + "id": "28a4f17a-20fd-4f75-9bbc-b3617e5eea41" + }, + { + "routeId": "L427", + "platformId": "U6345Z2", + "id": "ef5b0cdb-e7eb-49ca-a024-5eb147624a4a" + }, + { + "routeId": "L427", + "platformId": "U6346Z1", + "id": "6a14edbf-10eb-49ac-8be7-95e3ec8d483b" + }, + { + "routeId": "L427", + "platformId": "U6346Z2", + "id": "2a273eb9-f0dd-44ab-8280-a5f95e045a26" + }, + { + "routeId": "L722", + "platformId": "U6347Z2", + "id": "9d29f8c1-d496-4ce9-9e4d-02dcd935158a" + }, + { + "routeId": "L722", + "platformId": "U6348Z1", + "id": "4b9ca77e-37c1-4a8b-b08b-c15627cf2766" + }, + { + "routeId": "L722", + "platformId": "U6348Z2", + "id": "5d498f33-59c1-406a-b588-ff57953a7b74" + }, + { + "routeId": "L174", + "platformId": "U634Z1", + "id": "1dc660d9-6e96-4b29-9510-2a5b5a6e6ae0" + }, + { + "routeId": "L130", + "platformId": "U634Z1", + "id": "670a7fd1-089c-451b-9006-510c39bd1bad" + }, + { + "routeId": "L246", + "platformId": "U634Z1", + "id": "fb6cdf49-3f9b-4a06-8c75-faee5d3a5a53" + }, + { + "routeId": "L902", + "platformId": "U634Z1", + "id": "4180877b-5f29-4456-aa69-59edf455f638" + }, + { + "routeId": "L352", + "platformId": "U634Z1", + "id": "52cf04da-4c0e-4ee0-b557-e45112bc4693" + }, + { + "routeId": "L301", + "platformId": "U634Z1", + "id": "103a29ba-221f-43f0-973d-3a2fb5272829" + }, + { + "routeId": "L174", + "platformId": "U634Z2", + "id": "4892c533-3986-4594-a3f6-2abf3286e720" + }, + { + "routeId": "L130", + "platformId": "U634Z2", + "id": "1b06a05d-4c7f-4c2f-ba50-f74405b2a1f9" + }, + { + "routeId": "L246", + "platformId": "U634Z2", + "id": "04d05f12-61a9-48d8-840d-c06489597084" + }, + { + "routeId": "L902", + "platformId": "U634Z2", + "id": "fb246a65-a6df-4eba-8724-b6075d8de347" + }, + { + "routeId": "L352", + "platformId": "U634Z2", + "id": "27ec7384-c19c-4aed-ae03-3cf1f2005d1d" + }, + { + "routeId": "L301", + "platformId": "U634Z2", + "id": "4fc0e196-2c2d-41f2-be3c-234ec0c8b51f" + }, + { + "routeId": "L315", + "platformId": "U6359Z1", + "id": "2f606eae-a40e-4e38-aaa8-4d1e620dd467" + }, + { + "routeId": "L315", + "platformId": "U6359Z2", + "id": "b92ecfe6-70f6-45c2-8f96-e7acdbf39f70" + }, + { + "routeId": "L164", + "platformId": "U635Z1", + "id": "077b8cfe-5264-4079-977c-0d03ec4b7243" + }, + { + "routeId": "L164", + "platformId": "U635Z2", + "id": "abf1c5cd-2d3f-4300-8e87-82fce4891e6c" + }, + { + "routeId": "L22", + "platformId": "U636Z1", + "id": "27f3efc7-d118-4cf5-b7bb-e99b1bdd781b" + }, + { + "routeId": "L25", + "platformId": "U636Z1", + "id": "6d7f99f0-5fa4-447b-b5b6-d3550be0a661" + }, + { + "routeId": "L97", + "platformId": "U636Z1", + "id": "3b2f2e50-45ff-458d-b985-cc5de485a273" + }, + { + "routeId": "L22", + "platformId": "U636Z2", + "id": "adda175c-89fa-4957-8ec9-f958476958ed" + }, + { + "routeId": "L25", + "platformId": "U636Z2", + "id": "35301433-f550-4ae1-ae07-1211714af70f" + }, + { + "routeId": "L97", + "platformId": "U636Z2", + "id": "a1e19eac-3609-4580-a7ef-69c32111c2b1" + }, + { + "routeId": "L722", + "platformId": "U6370Z1", + "id": "31f94975-3652-404d-ad2b-932e6bcb4e71" + }, + { + "routeId": "L722", + "platformId": "U6370Z2", + "id": "f32b78fb-2c1e-4344-b683-dfbbbe38134a" + }, + { + "routeId": "L722", + "platformId": "U6371Z1", + "id": "994e464d-da55-493a-845b-40a07486822c" + }, + { + "routeId": "L722", + "platformId": "U6371Z2", + "id": "c82f9786-7d40-47ac-b9d6-51198a44f70b" + }, + { + "routeId": "L722", + "platformId": "U6372Z1", + "id": "f8611d78-7a1e-40ef-a997-e7fc74798dcb" + }, + { + "routeId": "L722", + "platformId": "U6372Z2", + "id": "ba87acea-b9c7-41cf-bcc1-f1d714d9cf24" + }, + { + "routeId": "L722", + "platformId": "U6373Z1", + "id": "d8b44808-bd05-4955-9cda-2fb99a5c5d5e" + }, + { + "routeId": "L722", + "platformId": "U6373Z2", + "id": "816e549b-0994-4fab-ac2b-2d6416330abb" + }, + { + "routeId": "L120", + "platformId": "U637Z1", + "id": "a327d1dc-fdaf-4a99-9c7a-2a57c978b9fc" + }, + { + "routeId": "L246", + "platformId": "U637Z1", + "id": "4ff2c98f-88ad-479a-b713-9144709a0341" + }, + { + "routeId": "L951", + "platformId": "U637Z1", + "id": "edb5d397-53f9-42d0-86af-7dc0d5552433" + }, + { + "routeId": "L120", + "platformId": "U637Z2", + "id": "c575e735-607d-4e40-9481-2a3160c26a80" + }, + { + "routeId": "L246", + "platformId": "U637Z2", + "id": "19a8443e-e840-4e22-b542-8c04eac1be7f" + }, + { + "routeId": "L951", + "platformId": "U637Z2", + "id": "a667bdc7-2a0d-44c8-9407-b1dec40845e0" + }, + { + "routeId": "L137", + "platformId": "U638Z1", + "id": "33479332-5a73-4135-808f-b9789fe93651" + }, + { + "routeId": "L908", + "platformId": "U638Z1", + "id": "409bcf07-c1a9-4069-b41a-cf1d4b1999b0" + }, + { + "routeId": "L137", + "platformId": "U638Z2", + "id": "805b1b3f-59e5-4dba-b97b-56aa521a4ae9" + }, + { + "routeId": "L908", + "platformId": "U638Z2", + "id": "b076082b-b4b0-4887-bf93-d5731b8dd70c" + }, + { + "routeId": "L733", + "platformId": "U6390Z1", + "id": "b8c2aace-fc63-43a2-8e52-08b092bce2fa" + }, + { + "routeId": "L733", + "platformId": "U6391Z1", + "id": "d5365647-3151-4c28-82af-c67319784e92" + }, + { + "routeId": "L733", + "platformId": "U6392Z1", + "id": "36bc8e97-ef39-4c24-be2d-23548c799d13" + }, + { + "routeId": "L733", + "platformId": "U6392Z2", + "id": "07d16478-2682-4385-a737-18d8eb391a3b" + }, + { + "routeId": "L733", + "platformId": "U6393Z1", + "id": "822403c8-ac4b-4548-8ed1-c7b21b2ff7ab" + }, + { + "routeId": "L733", + "platformId": "U6393Z2", + "id": "0f266fcc-54a4-4c5a-b3d1-258ab7f87e66" + }, + { + "routeId": "L731", + "platformId": "U6394Z1", + "id": "7ef95bd1-efeb-4826-982b-8016a9e29994" + }, + { + "routeId": "L731", + "platformId": "U6394Z2", + "id": "5271dba1-6199-4c46-b405-077b0d7424f2" + }, + { + "routeId": "L733", + "platformId": "U6396Z1", + "id": "57bb2e02-919f-4929-a0f9-481baf5b1552" + }, + { + "routeId": "L733", + "platformId": "U6396Z2", + "id": "ac2223b1-9e54-4fb7-8872-bb174c5ad3ed" + }, + { + "routeId": "L733", + "platformId": "U6398Z1", + "id": "29b0abea-38c2-4651-b877-82bfd51c6cfa" + }, + { + "routeId": "L345", + "platformId": "U6398Z1", + "id": "ffe4674e-334e-418c-9f4a-9950f87c4e83" + }, + { + "routeId": "L733", + "platformId": "U6398Z2", + "id": "2501f59d-04f7-4c67-a1e3-2b4564837e27" + }, + { + "routeId": "L345", + "platformId": "U6398Z2", + "id": "544f6353-d679-46a6-80ef-7251af1e2489" + }, + { + "routeId": "L201", + "platformId": "U639Z1", + "id": "96e2015b-52a1-46c1-a18c-fb90b59970ef" + }, + { + "routeId": "L376", + "platformId": "U639Z1", + "id": "4970a177-70b1-4bf3-a0c0-b8a7aeea035f" + }, + { + "routeId": "L201", + "platformId": "U639Z2", + "id": "ef45f876-a2ac-4bc9-b94e-d5629abeac4e" + }, + { + "routeId": "L158", + "platformId": "U63Z1", + "id": "74ef3b45-7a1b-42a3-a446-c5c691e7bb87" + }, + { + "routeId": "L202", + "platformId": "U63Z1", + "id": "4bacbefe-dc0c-4e1e-90a5-aef086d40b43" + }, + { + "routeId": "L911", + "platformId": "U63Z1", + "id": "639a53b8-c403-42ab-a345-0014d7900657" + }, + { + "routeId": "L915", + "platformId": "U63Z1", + "id": "ef52bec8-7f8c-46b8-bb16-57125ed7b4a8" + }, + { + "routeId": "L166", + "platformId": "U63Z1", + "id": "7fd415e8-caf4-4825-a5b7-fc87e31c9203" + }, + { + "routeId": "L58", + "platformId": "U63Z1", + "id": "c1575a64-d0c0-402b-b57c-38eea1f4dddb" + }, + { + "routeId": "L158", + "platformId": "U63Z2", + "id": "c33b6aab-25fb-4dc6-89f6-2f77231f4d7f" + }, + { + "routeId": "L202", + "platformId": "U63Z2", + "id": "6d177047-a230-4f1e-bc3a-3edfbed3c309" + }, + { + "routeId": "L915", + "platformId": "U63Z2", + "id": "b4352d6b-ed57-4396-a13a-fc5901f2d130" + }, + { + "routeId": "L911", + "platformId": "U63Z2", + "id": "f93e6181-2501-4135-9d25-933c7c29e7e6" + }, + { + "routeId": "L166", + "platformId": "U63Z2", + "id": "bd3b02f9-a0b0-4d57-bb76-7a04ec8d62f4" + }, + { + "routeId": "L58", + "platformId": "U63Z2", + "id": "fd4b9730-5938-4b79-810b-09bc38ecd585" + }, + { + "routeId": "L415", + "platformId": "U6408Z1", + "id": "5640c0a4-c0af-4b9f-8e09-c5e167887908" + }, + { + "routeId": "L415", + "platformId": "U6408Z3", + "id": "04d95533-690c-40af-8b00-8d2a26a3a7a7" + }, + { + "routeId": "L188", + "platformId": "U640Z1", + "id": "16917c67-cf93-4252-a3b6-a65239875bbb" + }, + { + "routeId": "L188", + "platformId": "U640Z2", + "id": "3fa33e8f-629e-4b1d-b1e5-6e8d18b4326a" + }, + { + "routeId": "L533", + "platformId": "U6411Z1", + "id": "990f26fc-43d9-4018-ad0a-90211818a9bd" + }, + { + "routeId": "L533", + "platformId": "U6411Z2", + "id": "d455e428-6951-49d2-9ec1-c6d70262da6e" + }, + { + "routeId": "L731", + "platformId": "U6413Z1", + "id": "af0394e5-bf0f-486a-a220-6e20bc3c720c" + }, + { + "routeId": "L731", + "platformId": "U6413Z2", + "id": "80eccff0-536b-446c-badf-0c6b2c645ddf" + }, + { + "routeId": "L731", + "platformId": "U6414Z1", + "id": "ecb91306-1f5a-44e1-83ee-fdc69524e3fb" + }, + { + "routeId": "L731", + "platformId": "U6414Z2", + "id": "a0879625-76fb-49d0-a8a7-56c59aa0d3db" + }, + { + "routeId": "L731", + "platformId": "U6416Z2", + "id": "744ccdd6-67f6-4c50-baa8-adafa14e184d" + }, + { + "routeId": "L731", + "platformId": "U6417Z2", + "id": "9a875b10-9cf7-446b-8fe1-d111656d9c19" + }, + { + "routeId": "L535", + "platformId": "U6419Z1", + "id": "d33d1484-d063-459f-9b6a-2dc9a81c9893" + }, + { + "routeId": "L535", + "platformId": "U6419Z2", + "id": "544ddc5f-2b35-41ae-986a-da701d66c9bd" + }, + { + "routeId": "L177", + "platformId": "U641Z1", + "id": "e4548b82-6a16-4016-8e1e-605e97d058ab" + }, + { + "routeId": "L901", + "platformId": "U641Z1", + "id": "e688bd3d-7985-4423-ad69-1772017b3364" + }, + { + "routeId": "L906", + "platformId": "U641Z1", + "id": "a858f2ad-f1ec-478b-9235-c407a9fb8fb6" + }, + { + "routeId": "L177", + "platformId": "U641Z2", + "id": "037acda8-3376-455e-b3d8-dd125f2cee82" + }, + { + "routeId": "L901", + "platformId": "U641Z2", + "id": "211a8915-3a2d-45f7-bee0-b959337f732e" + }, + { + "routeId": "L906", + "platformId": "U641Z2", + "id": "6c9b4d60-e8db-4cc9-b891-06d5e31caaf4" + }, + { + "routeId": "L181", + "platformId": "U641Z3", + "id": "46a9672a-ad05-4eac-9166-ba223b4d456a" + }, + { + "routeId": "L181", + "platformId": "U641Z4", + "id": "8e56cf97-19c7-46f4-b22c-9ab7d2803ebc" + }, + { + "routeId": "L535", + "platformId": "U6420Z1", + "id": "0bbba8ac-1f3e-48ae-8f25-cd250d1c13db" + }, + { + "routeId": "L535", + "platformId": "U6420Z2", + "id": "13a789be-4e88-40a9-ab74-3ffd784cc453" + }, + { + "routeId": "L535", + "platformId": "U6424Z1", + "id": "7bcf488a-c01b-4954-b3e0-4392e6181fb8" + }, + { + "routeId": "L533", + "platformId": "U6424Z1", + "id": "d164fb74-ea1c-4bf1-b30c-aab3ebc9e819" + }, + { + "routeId": "L535", + "platformId": "U6424Z2", + "id": "c17eaf63-ffcf-41da-aa69-cbbe1967998d" + }, + { + "routeId": "L533", + "platformId": "U6424Z2", + "id": "b5d6eb52-73f5-404a-a6ed-83f864720ea7" + }, + { + "routeId": "L535", + "platformId": "U6425Z1", + "id": "a42876d5-fb3a-4bd0-a41c-62c0022badc8" + }, + { + "routeId": "L533", + "platformId": "U6425Z1", + "id": "88239d54-e7e0-4406-b0ba-4aed4d5f2481" + }, + { + "routeId": "L535", + "platformId": "U6425Z2", + "id": "05fe98f3-2c68-40a0-afa4-2a1dbb5a4717" + }, + { + "routeId": "L533", + "platformId": "U6425Z2", + "id": "237404b6-8319-45ab-9d43-5cff129d557b" + }, + { + "routeId": "L535", + "platformId": "U6426Z1", + "id": "d7d623d1-884f-46e0-827c-35cc4666a7f7" + }, + { + "routeId": "L535", + "platformId": "U6426Z2", + "id": "6c871344-b614-42be-ba1d-e2433bdfcdf1" + }, + { + "routeId": "L535", + "platformId": "U6427Z1", + "id": "2df78ea7-371d-4184-99ee-3360dd8a620f" + }, + { + "routeId": "L535", + "platformId": "U6427Z2", + "id": "407746b0-ebb5-4fa1-9679-a7cb861a14ca" + }, + { + "routeId": "L415", + "platformId": "U6428Z1", + "id": "5d372c69-f117-4f76-8371-61a256d81661" + }, + { + "routeId": "L415", + "platformId": "U6428Z2", + "id": "593f0041-1f17-4da9-85ec-9f4525d6e27f" + }, + { + "routeId": "L535", + "platformId": "U6429Z1", + "id": "1dbbfb0d-5360-4cdb-9c3c-3ada1126a004" + }, + { + "routeId": "L535", + "platformId": "U6429Z2", + "id": "9dac0ce5-0fce-46ec-97f5-f2f002e70189" + }, + { + "routeId": "L105", + "platformId": "U642Z1", + "id": "b9d75dec-cb00-4cb9-8528-f90758f81a79" + }, + { + "routeId": "L535", + "platformId": "U6433Z1", + "id": "7a71d5c4-c7ad-45ae-9ea2-33ad025ac541" + }, + { + "routeId": "L533", + "platformId": "U6433Z1", + "id": "5604b869-bb26-4ffb-b9c1-442fa5842936" + }, + { + "routeId": "L535", + "platformId": "U6433Z2", + "id": "44c2d7db-72d7-4f34-b1a4-41adc37077e8" + }, + { + "routeId": "L533", + "platformId": "U6433Z2", + "id": "81151388-2f49-484b-a8c0-af53eb60a118" + }, + { + "routeId": "L533", + "platformId": "U6435Z1", + "id": "a8925ce1-0103-45f1-987f-cc875009dfe0" + }, + { + "routeId": "L533", + "platformId": "U6435Z2", + "id": "e3b44847-c702-4e78-8fb6-dbc0443855b5" + }, + { + "routeId": "L533", + "platformId": "U6436Z1", + "id": "eeb90838-0d9a-40d2-81a6-c47f2a9ec50e" + }, + { + "routeId": "L533", + "platformId": "U6436Z2", + "id": "3eb2dac7-597c-4e5c-94f8-2c0d02f3398c" + }, + { + "routeId": "L401", + "platformId": "U6438Z1", + "id": "37057e75-c325-4012-9bd4-a04df5999b3c" + }, + { + "routeId": "L459", + "platformId": "U6438Z2", + "id": "ff4159bd-ed7b-468e-b6b1-eccfe1ccf2a6" + }, + { + "routeId": "L401", + "platformId": "U6438Z2", + "id": "42ba3d62-d9de-4dbb-bf5b-7f2029d831ae" + }, + { + "routeId": "L401", + "platformId": "U6438Z3", + "id": "06fc1c4f-7533-4724-bb7d-e60edbe527f5" + }, + { + "routeId": "L459", + "platformId": "U6438Z3", + "id": "cb9fc5bc-0958-4e9b-9692-705283af4b52" + }, + { + "routeId": "L401", + "platformId": "U6438Z4", + "id": "54a51f2d-4ddd-4ecf-94e9-f690f4846bfa" + }, + { + "routeId": "L731", + "platformId": "U6439Z1", + "id": "7a87bd9c-d785-40ba-ae30-33c0c1def11c" + }, + { + "routeId": "L467", + "platformId": "U6439Z1", + "id": "8fe5eb93-bd0f-4a55-be09-00ec77553857" + }, + { + "routeId": "L731", + "platformId": "U6439Z2", + "id": "6aa05b12-fd8d-4f4b-b2bf-6db6b79808ee" + }, + { + "routeId": "L467", + "platformId": "U6439Z2", + "id": "42a3ecfb-1a13-49f7-943e-05247412a702" + }, + { + "routeId": "L118", + "platformId": "U643Z1", + "id": "6a5e40cc-ecb6-4ddb-acfc-790cd6de4678" + }, + { + "routeId": "L170", + "platformId": "U643Z1", + "id": "e535d45c-a9c8-496a-9ec3-cb073adc0dc9" + }, + { + "routeId": "L905", + "platformId": "U643Z1", + "id": "0c4cb80f-c2f2-417b-b50c-6e620624c636" + }, + { + "routeId": "L118", + "platformId": "U643Z2", + "id": "d32d8f28-8d81-49b1-8464-2cb816568d28" + }, + { + "routeId": "L170", + "platformId": "U643Z2", + "id": "34e7d42f-a206-4356-85cc-f91b3c8b9976" + }, + { + "routeId": "L905", + "platformId": "U643Z2", + "id": "d9632b28-1f80-443e-a14f-cfe76d0ec46e" + }, + { + "routeId": "L427", + "platformId": "U6440Z2", + "id": "99f124c7-ae11-4fe1-b751-b1e4b5258fa8" + }, + { + "routeId": "L720", + "platformId": "U6440Z2", + "id": "4be9da7a-0cee-437b-ab33-0c8d6c0c3d3f" + }, + { + "routeId": "L1217", + "platformId": "U6441Z301", + "id": "c5220ce8-fb14-4b37-986a-78bee43b8804" + }, + { + "routeId": "L1390", + "platformId": "U6441Z301", + "id": "63032859-8d66-43af-ae70-c1f598e53551" + }, + { + "routeId": "L401", + "platformId": "U6442Z2", + "id": "ff489ad7-4190-4d21-ad2c-464d8fde34fc" + }, + { + "routeId": "L401", + "platformId": "U6442Z4", + "id": "5b5d3cc7-88fa-40c1-b1a9-83de69caa43b" + }, + { + "routeId": "L401", + "platformId": "U6443Z1", + "id": "dec3e121-273a-453d-9536-7541713489fb" + }, + { + "routeId": "L401", + "platformId": "U6443Z2", + "id": "26904858-144b-4bf9-acca-6d20885c8b77" + }, + { + "routeId": "L123", + "platformId": "U644Z1", + "id": "c410dc51-1962-4619-a964-2f4eb216f6e3" + }, + { + "routeId": "L123", + "platformId": "U644Z2", + "id": "6c156e30-5298-4c68-b038-a2beace91743" + }, + { + "routeId": "L459", + "platformId": "U6457Z1", + "id": "5d36354b-fa00-46a9-9028-27c9a5bbe5bd" + }, + { + "routeId": "L459", + "platformId": "U6457Z2", + "id": "dff62228-6101-4e6f-9960-d5521df526c8" + }, + { + "routeId": "L1", + "platformId": "U645Z1", + "id": "9cea9131-5d71-467d-b02a-2b9338fbec06" + }, + { + "routeId": "L2", + "platformId": "U645Z1", + "id": "224c7797-167e-4b18-a6d6-7f266a689633" + }, + { + "routeId": "L96", + "platformId": "U645Z1", + "id": "96ce3de8-5176-4fdf-a07c-2f35c5952be6" + }, + { + "routeId": "L1", + "platformId": "U645Z2", + "id": "d0b6f552-b813-4ffa-99c4-f4a7abc0d056" + }, + { + "routeId": "L2", + "platformId": "U645Z2", + "id": "d981ac2b-a248-4c9f-b567-dfaac0fe4316" + }, + { + "routeId": "L96", + "platformId": "U645Z2", + "id": "1515cc65-b5f8-48fd-bc0c-48cf79032d3e" + }, + { + "routeId": "L108", + "platformId": "U645Z3", + "id": "1bb12f5e-3bea-4fdc-ac58-6416db3cebe9" + }, + { + "routeId": "L108", + "platformId": "U645Z4", + "id": "b599d56d-26f7-4716-9de7-1826b1c7a8cc" + }, + { + "routeId": "L459", + "platformId": "U6460Z1", + "id": "f0c1dc08-9ef9-416b-91ba-ae8f8b13aaae" + }, + { + "routeId": "L459", + "platformId": "U6460Z2", + "id": "814eda84-d807-4b16-82ab-027aada14078" + }, + { + "routeId": "L459", + "platformId": "U6462Z1", + "id": "2a358478-48aa-46ba-aea2-7da9d387f81d" + }, + { + "routeId": "L459", + "platformId": "U6462Z2", + "id": "01bbdfaf-2afb-499e-b618-604d88dea2c3" + }, + { + "routeId": "L451", + "platformId": "U6464Z1", + "id": "389a2e55-9b3f-4707-b349-e4695a6887e8" + }, + { + "routeId": "L451", + "platformId": "U6464Z2", + "id": "095717bb-7103-416a-b325-68e60caec25c" + }, + { + "routeId": "L451", + "platformId": "U6465Z1", + "id": "9a1b315a-2f3d-4e5c-a28b-436a8cf8f572" + }, + { + "routeId": "L556", + "platformId": "U6465Z1", + "id": "7df65aa6-afd1-4f0e-9ed5-dc684d00b9eb" + }, + { + "routeId": "L556", + "platformId": "U6465Z2", + "id": "007c0514-4071-405c-a33b-bcec3bf48134" + }, + { + "routeId": "L451", + "platformId": "U6465Z2", + "id": "145f8515-96ec-4a35-8d16-046353c9235a" + }, + { + "routeId": "L451", + "platformId": "U6466Z1", + "id": "6bcb46d2-93f5-4ba0-8ff0-24581dbaa9b7" + }, + { + "routeId": "L451", + "platformId": "U6466Z2", + "id": "1b334405-d0f3-465f-a535-f6302df3ba0b" + }, + { + "routeId": "L108", + "platformId": "U646Z1", + "id": "c518c3de-0295-49d9-8ab4-bd23a0376e38" + }, + { + "routeId": "L131", + "platformId": "U646Z1", + "id": "46b90890-455d-4dd4-ac7e-87d9438b64b4" + }, + { + "routeId": "L907", + "platformId": "U646Z1", + "id": "3014f689-2ca5-4b02-9e43-edf47aee2983" + }, + { + "routeId": "L108", + "platformId": "U646Z2", + "id": "ec8d043c-3908-458f-9cca-217c40c6492b" + }, + { + "routeId": "L131", + "platformId": "U646Z2", + "id": "baea9e94-62ed-471a-bc97-e1c64c0a8fb0" + }, + { + "routeId": "L907", + "platformId": "U646Z2", + "id": "008e921d-76b6-4cb1-b824-8037a36e2762" + }, + { + "routeId": "L731", + "platformId": "U6473Z2", + "id": "d8d83ab7-93cd-4bd8-a8d5-f35fb0e7393a" + }, + { + "routeId": "L731", + "platformId": "U6474Z1", + "id": "3880b498-68f8-4622-b2b2-16fef9f3b1c4" + }, + { + "routeId": "L731", + "platformId": "U6474Z2", + "id": "fdcba0ee-d5c5-44cf-8e40-8478610ecaf4" + }, + { + "routeId": "L451", + "platformId": "U6475Z1", + "id": "9c993433-90f3-484d-8ab3-fbd314874fa1" + }, + { + "routeId": "L451", + "platformId": "U6475Z2", + "id": "b7735062-c1b4-4349-8899-95719fc7dd9c" + }, + { + "routeId": "L451", + "platformId": "U6478Z1", + "id": "1abbd82d-3e15-45aa-923d-bd2379d55e47" + }, + { + "routeId": "L451", + "platformId": "U6478Z2", + "id": "1fcdb0fe-2740-4551-9096-8fe4965b3226" + }, + { + "routeId": "L556", + "platformId": "U6479Z1", + "id": "4c0c7f9e-21c4-4c04-819f-96021c8a3828" + }, + { + "routeId": "L556", + "platformId": "U6479Z2", + "id": "8d8fb693-e7b4-4d14-8eb1-7c4660df4fdc" + }, + { + "routeId": "L451", + "platformId": "U6481Z1", + "id": "6f87f0fe-4dc0-40a2-8081-050a6d4e1055" + }, + { + "routeId": "L451", + "platformId": "U6481Z2", + "id": "f2194e5a-43a7-4793-b23f-d3c464b9aebd" + }, + { + "routeId": "L556", + "platformId": "U6483Z1", + "id": "f6c13c6c-30c2-45bd-84a1-1fb1499cbf9f" + }, + { + "routeId": "L556", + "platformId": "U6483Z2", + "id": "d41bb043-7681-4712-a0c8-3ec97ebd5e40" + }, + { + "routeId": "L401", + "platformId": "U6487Z1", + "id": "93e9c035-3239-417e-80ab-22c8405f8655" + }, + { + "routeId": "L401", + "platformId": "U6487Z2", + "id": "48024b64-028b-4aa3-97e1-00ff5cc97dc8" + }, + { + "routeId": "L566", + "platformId": "U6489Z1", + "id": "6083eeec-63e8-4394-b27e-a18c96be6f49" + }, + { + "routeId": "L401", + "platformId": "U6489Z2", + "id": "b6c49b95-b046-4a2a-86ea-2ecd30e96e32" + }, + { + "routeId": "L550", + "platformId": "U6489Z3", + "id": "cbab6248-fbb3-4015-a577-bdee233c18e2" + }, + { + "routeId": "L401", + "platformId": "U6489Z4", + "id": "3a432f88-d534-4630-8f23-555f7c901d36" + }, + { + "routeId": "L452", + "platformId": "U6489Z4", + "id": "3ba36684-6815-4cfa-8e64-bda4fa018fa0" + }, + { + "routeId": "L452", + "platformId": "U6489Z5", + "id": "5160d40c-1e81-4b42-9e74-9512ee5a2451" + }, + { + "routeId": "L566", + "platformId": "U6489Z5", + "id": "49ed9b6a-4fb9-420c-9cf9-793415f96b98" + }, + { + "routeId": "L556", + "platformId": "U6489Z6", + "id": "96b6357d-cc9e-49a6-a6ba-201d2d4b8c93" + }, + { + "routeId": "L451", + "platformId": "U6489Z6", + "id": "60504604-8f08-49b2-a342-515b884da98c" + }, + { + "routeId": "L550", + "platformId": "U6489Z6", + "id": "28fbdd8f-0391-402b-b273-98d371d0112b" + }, + { + "routeId": "L451", + "platformId": "U6489Z7", + "id": "5a10bed0-1019-4416-9ff7-55785c2a6c9f" + }, + { + "routeId": "L556", + "platformId": "U6489Z7", + "id": "53380cc0-fb69-4ab3-9b01-5370f2b14aa9" + }, + { + "routeId": "L102", + "platformId": "U648Z1", + "id": "69a0346e-7eaa-4586-b645-13ae8dc2b267" + }, + { + "routeId": "L236", + "platformId": "U648Z1", + "id": "11245f7b-487f-46b6-816a-b4a14c05d9bb" + }, + { + "routeId": "L200", + "platformId": "U648Z2", + "id": "5f1357d5-3e72-44f9-a2ef-d82fdd1f95f8" + }, + { + "routeId": "L905", + "platformId": "U648Z2", + "id": "81cb5cd4-d82a-47e4-a372-68b914199643" + }, + { + "routeId": "L102", + "platformId": "U648Z4", + "id": "77399488-74c9-4d04-85cc-ee99dfe8282f" + }, + { + "routeId": "L200", + "platformId": "U648Z4", + "id": "84611c06-fb76-481c-a65d-944a61020f01" + }, + { + "routeId": "L236", + "platformId": "U648Z4", + "id": "482c4ad9-82ea-4a18-9c62-33f826750aa3" + }, + { + "routeId": "L905", + "platformId": "U648Z4", + "id": "ef6fc13c-991f-42ad-b4d9-c6674a7a22b8" + }, + { + "routeId": "L556", + "platformId": "U6490Z1", + "id": "0ae8e99f-9f21-4220-8b1c-f30a17d8a732" + }, + { + "routeId": "L451", + "platformId": "U6490Z1", + "id": "0d76b646-a101-4e1c-a0ef-fc935189a96a" + }, + { + "routeId": "L550", + "platformId": "U6490Z1", + "id": "c926828b-3cc0-425d-9cc1-8f7dd11734b7" + }, + { + "routeId": "L451", + "platformId": "U6490Z2", + "id": "094a37f5-a131-48cf-b651-12c87f4738dd" + }, + { + "routeId": "L550", + "platformId": "U6490Z2", + "id": "30c61fce-2f11-4c68-a21c-3213b9f481af" + }, + { + "routeId": "L401", + "platformId": "U6491Z1", + "id": "63ae248b-0aff-48a0-b10c-3dec5f8ee9a6" + }, + { + "routeId": "L550", + "platformId": "U6491Z1", + "id": "fb16bfda-6ef8-437b-9b27-9844e93293d6" + }, + { + "routeId": "L401", + "platformId": "U6491Z2", + "id": "a567c221-698b-44c2-aa7d-004ddb8769e7" + }, + { + "routeId": "L550", + "platformId": "U6491Z2", + "id": "9eb0bdeb-f623-4fd4-a30b-fe1353e71b01" + }, + { + "routeId": "L401", + "platformId": "U6492Z1", + "id": "7ea83291-4b63-4eb0-9106-0eee1ec51e7c" + }, + { + "routeId": "L452", + "platformId": "U6492Z1", + "id": "68b99696-a666-4303-a0d3-653d5d473657" + }, + { + "routeId": "L566", + "platformId": "U6492Z1", + "id": "65f21e3f-b6e2-4fb7-86dd-15883ec2de5e" + }, + { + "routeId": "L401", + "platformId": "U6492Z2", + "id": "bf387a3d-67b0-4ed2-98f6-4537e837ffad" + }, + { + "routeId": "L452", + "platformId": "U6492Z2", + "id": "f40151ed-86b7-4260-92a7-0dbc107199e7" + }, + { + "routeId": "L566", + "platformId": "U6492Z2", + "id": "908f0126-e1b5-4d5f-92f2-cf7f2851a1f4" + }, + { + "routeId": "L556", + "platformId": "U6493Z3", + "id": "e1e93bf6-22f0-4b85-91e3-5f7f04554856" + }, + { + "routeId": "L451", + "platformId": "U6493Z3", + "id": "a0794e41-b01a-4948-863e-0f81009b68db" + }, + { + "routeId": "L550", + "platformId": "U6493Z3", + "id": "3b3af858-bf4a-4e80-bf52-7fb048dc943f" + }, + { + "routeId": "L451", + "platformId": "U6493Z4", + "id": "82631cb0-c6cf-4cdf-b918-8fd1f2ba8bf3" + }, + { + "routeId": "L550", + "platformId": "U6493Z4", + "id": "24dfac8b-99ac-4c43-b42b-3c448f16fde9" + }, + { + "routeId": "L401", + "platformId": "U6497Z1", + "id": "8b3bcb13-9072-483c-98be-32fa59508788" + }, + { + "routeId": "L401", + "platformId": "U6497Z2", + "id": "673076a4-1a18-4f17-9706-001255c45a17" + }, + { + "routeId": "L401", + "platformId": "U6499Z1", + "id": "80e6aeb8-92cc-404c-926e-98eb836d0af4" + }, + { + "routeId": "L401", + "platformId": "U6499Z2", + "id": "d769cbc4-4524-4148-a8eb-22f9ab324840" + }, + { + "routeId": "L144", + "platformId": "U649Z1", + "id": "106153f6-814b-47ad-9896-cb0a155b9fbf" + }, + { + "routeId": "L177", + "platformId": "U649Z1", + "id": "d22cf730-d719-4691-b482-061dbaa9607e" + }, + { + "routeId": "L202", + "platformId": "U649Z1", + "id": "a7381965-650f-4303-9ade-74db38510bca" + }, + { + "routeId": "L144", + "platformId": "U649Z2", + "id": "3b5d363d-c749-48e0-aac2-c48e20312ff9" + }, + { + "routeId": "L177", + "platformId": "U649Z2", + "id": "ebeb333c-39c5-415f-aed6-d1b03ddc81d6" + }, + { + "routeId": "L202", + "platformId": "U649Z3", + "id": "774f439c-0d49-473c-9879-8f7ee384ca77" + }, + { + "routeId": "L158", + "platformId": "U64Z1", + "id": "9c79eb7f-efba-4385-9689-81b077548335" + }, + { + "routeId": "L915", + "platformId": "U64Z1", + "id": "aaa9e181-0cd4-4c79-a01e-012be4a58ca0" + }, + { + "routeId": "L166", + "platformId": "U64Z1", + "id": "5ccfdf9d-2c5b-4dd9-88ec-63e0287d1f22" + }, + { + "routeId": "L377", + "platformId": "U64Z1", + "id": "a5db78e1-eb0b-479f-a4f5-298d5b82a386" + }, + { + "routeId": "L202", + "platformId": "U64Z2", + "id": "6acb3b9f-d0fd-4211-86a3-4def50bc6a87" + }, + { + "routeId": "L58", + "platformId": "U64Z2", + "id": "7eb48924-32cc-46f5-bc0e-df37fcdd68df" + }, + { + "routeId": "L158", + "platformId": "U64Z3", + "id": "9fb7049f-d064-4e86-8950-732dd9797050" + }, + { + "routeId": "L202", + "platformId": "U64Z3", + "id": "461d13e3-8a09-4abf-a300-b37710efcaaf" + }, + { + "routeId": "L915", + "platformId": "U64Z3", + "id": "09146274-5846-4d32-a3d8-8551f27665ba" + }, + { + "routeId": "L166", + "platformId": "U64Z3", + "id": "c5d60b83-b161-45ab-ae78-014e9c6d8410" + }, + { + "routeId": "L377", + "platformId": "U64Z3", + "id": "40f66a23-45db-4f87-b625-36edd52b5ec1" + }, + { + "routeId": "L58", + "platformId": "U64Z3", + "id": "1d78b26d-f567-4f5b-8939-4edc48a1a1a6" + }, + { + "routeId": "L58", + "platformId": "U64Z6", + "id": "92d951d5-88d2-4433-9cad-bd9d6197ed92" + }, + { + "routeId": "L632", + "platformId": "U6502Z1", + "id": "150c21d6-d766-41e9-9add-584e4939b7d1" + }, + { + "routeId": "L632", + "platformId": "U6502Z2", + "id": "6eece30d-1ebc-4148-b504-f956b8fe8a3f" + }, + { + "routeId": "L632", + "platformId": "U6503Z1", + "id": "959a3c49-aa03-4f89-9d02-7aa30d815e92" + }, + { + "routeId": "L632", + "platformId": "U6503Z2", + "id": "0c0855ac-655c-453e-829c-497f19e5bcbd" + }, + { + "routeId": "L632", + "platformId": "U6504Z1", + "id": "6784a1b5-fc76-43f5-8fa6-4900e91798cb" + }, + { + "routeId": "L632", + "platformId": "U6504Z2", + "id": "10421d18-2e16-4436-b518-842ad99908f1" + }, + { + "routeId": "L386", + "platformId": "U6505Z1", + "id": "cd04ac7b-a6d8-4d0e-b951-ca284be790ea" + }, + { + "routeId": "L386", + "platformId": "U6505Z2", + "id": "6162c843-ed1b-4eb3-b7e7-55372349f3f9" + }, + { + "routeId": "L415", + "platformId": "U6506Z2", + "id": "1d1a9510-beba-43a8-9e61-bb47daf4d6b4" + }, + { + "routeId": "L577", + "platformId": "U6508Z1", + "id": "8e04287b-e9af-45d3-863a-a02ffae58f87" + }, + { + "routeId": "L577", + "platformId": "U6508Z2", + "id": "a221456b-9149-482d-b84a-21c76b3c03db" + }, + { + "routeId": "L181", + "platformId": "U650Z1", + "id": "d76f3194-4422-4fbe-be7f-18476b3305a1" + }, + { + "routeId": "L201", + "platformId": "U650Z1", + "id": "3f3a9bb0-94be-479c-afb8-09d1fa22d760" + }, + { + "routeId": "L181", + "platformId": "U650Z2", + "id": "116f068a-8c53-4c43-836e-2282aa838c7c" + }, + { + "routeId": "L201", + "platformId": "U650Z2", + "id": "907e9f72-d373-47fe-b348-88c7ebda2933" + }, + { + "routeId": "L401", + "platformId": "U6511Z1", + "id": "9f323fd8-bab2-4417-a13d-5366432ddc6f" + }, + { + "routeId": "L452", + "platformId": "U6511Z1", + "id": "6714ca88-3265-49d4-9d1a-d06af256cab6" + }, + { + "routeId": "L566", + "platformId": "U6511Z1", + "id": "f1084ae2-8a0d-4986-bc04-0a5593492066" + }, + { + "routeId": "L401", + "platformId": "U6511Z2", + "id": "d2854a01-112a-498b-a609-b3f8a62bbfd4" + }, + { + "routeId": "L452", + "platformId": "U6511Z2", + "id": "5c460936-3c38-4d4b-a870-5d9a04968e16" + }, + { + "routeId": "L566", + "platformId": "U6511Z2", + "id": "3cdf9fc8-0a9a-4203-a7b4-7758ec7a91b2" + }, + { + "routeId": "L550", + "platformId": "U6514Z1", + "id": "0a4a63c6-9fd9-48d6-a5f0-be7cf3c92aa2" + }, + { + "routeId": "L550", + "platformId": "U6514Z2", + "id": "fd015542-112d-4e02-ad49-04fdd1f41f2a" + }, + { + "routeId": "L550", + "platformId": "U6515Z1", + "id": "ea71d631-9407-4041-813c-c06d04184d5c" + }, + { + "routeId": "L550", + "platformId": "U6515Z2", + "id": "435eda8c-b646-48a9-8772-7a887b1ea639" + }, + { + "routeId": "L401", + "platformId": "U6516Z1", + "id": "860837cc-68b5-4813-85f2-d8392fcf4ffc" + }, + { + "routeId": "L452", + "platformId": "U6516Z1", + "id": "530af14d-9f43-4ca7-af2a-d75149225b05" + }, + { + "routeId": "L566", + "platformId": "U6516Z1", + "id": "f45f04c7-ff56-4334-b1c1-2ef7f8ba45af" + }, + { + "routeId": "L401", + "platformId": "U6516Z2", + "id": "f426a851-447a-462b-be86-4bc03214d230" + }, + { + "routeId": "L452", + "platformId": "U6516Z2", + "id": "5b51f606-d9ad-478f-8d51-ccc7a32e8620" + }, + { + "routeId": "L566", + "platformId": "U6516Z2", + "id": "0344ad28-75ac-4352-a6e7-a5eefc558efd" + }, + { + "routeId": "L10", + "platformId": "U651Z1", + "id": "d8e49615-d678-4969-b7be-705565a13f2f" + }, + { + "routeId": "L93", + "platformId": "U651Z1", + "id": "3e697ebf-1a02-41f8-b64a-16df1ff97aba" + }, + { + "routeId": "L10", + "platformId": "U651Z2", + "id": "13906981-26f1-4af5-8178-92d604f6a256" + }, + { + "routeId": "L93", + "platformId": "U651Z2", + "id": "e5a63fd1-f47d-4ac3-8f21-c32ddfc3b24c" + }, + { + "routeId": "L183", + "platformId": "U651Z5", + "id": "9b980206-f3a9-46af-86f3-96f91ca9d7e0" + }, + { + "routeId": "L103", + "platformId": "U651Z5", + "id": "db6681ae-9abc-4d0f-ad73-51b04c8eff4d" + }, + { + "routeId": "L283", + "platformId": "U651Z5", + "id": "e5f4a327-c625-4be2-8fc7-ea08e82baeae" + }, + { + "routeId": "L914", + "platformId": "U651Z5", + "id": "05842320-522b-404e-ac8b-4f35cb1782c6" + }, + { + "routeId": "L348", + "platformId": "U651Z5", + "id": "e3ae7daa-30ba-42a4-b9f0-f6de946d59d0" + }, + { + "routeId": "L369", + "platformId": "U651Z5", + "id": "a99ba690-8748-406e-891b-9102dbea656c" + }, + { + "routeId": "L183", + "platformId": "U651Z6", + "id": "36855968-1bd3-4016-98eb-2c787edd2d21" + }, + { + "routeId": "L103", + "platformId": "U651Z6", + "id": "191f96c0-aebc-4dda-a337-7c84e3016466" + }, + { + "routeId": "L283", + "platformId": "U651Z6", + "id": "a2985c7e-95a2-403d-995b-6632a338b479" + }, + { + "routeId": "L914", + "platformId": "U651Z6", + "id": "dbecb8ca-ae9a-4c6a-98f3-3076fe3644a4" + }, + { + "routeId": "L348", + "platformId": "U651Z6", + "id": "be7725c8-1b2b-4ed4-ad6c-96ebc0822b9b" + }, + { + "routeId": "L369", + "platformId": "U651Z6", + "id": "e9f43514-cef5-4cbd-bbb7-338cc7669a36" + }, + { + "routeId": "L452", + "platformId": "U6525Z1", + "id": "01cda169-bb50-44fb-bfd4-5ffae53807d5" + }, + { + "routeId": "L566", + "platformId": "U6525Z1", + "id": "dc990b88-5256-4cd1-9d04-26004c6855ee" + }, + { + "routeId": "L452", + "platformId": "U6525Z2", + "id": "3fb1b546-91a7-4e83-b9c5-ad7a2d4a54cf" + }, + { + "routeId": "L566", + "platformId": "U6525Z2", + "id": "ca369d10-9c05-4be6-a5f0-b6d3c2e6258c" + }, + { + "routeId": "L401", + "platformId": "U6525Z3", + "id": "8f6e5126-e4c8-431e-95ef-c6e47e5fcc8c" + }, + { + "routeId": "L558", + "platformId": "U6525Z3", + "id": "b6c7745f-f4de-47a9-8fff-1b13496fdf92" + }, + { + "routeId": "L566", + "platformId": "U6525Z3", + "id": "e1a0e52a-5bac-4ab5-b509-64c128db336d" + }, + { + "routeId": "L401", + "platformId": "U6525Z4", + "id": "ccb77b33-343b-41a2-bfbe-99339945a5d4" + }, + { + "routeId": "L566", + "platformId": "U6525Z4", + "id": "119f85f2-4f23-49b2-847d-2b4bfe7c25a0" + }, + { + "routeId": "L558", + "platformId": "U6525Z4", + "id": "d072fbd2-27ff-4867-b604-331488974727" + }, + { + "routeId": "L401", + "platformId": "U6526Z1", + "id": "dbdd675c-3e74-46b8-9139-42c3d6aaa6a9" + }, + { + "routeId": "L401", + "platformId": "U6526Z2", + "id": "c621c98c-4148-45d7-b5fb-3f89f043341e" + }, + { + "routeId": "L452", + "platformId": "U6527Z3", + "id": "3d7da3d0-449a-4d8f-af82-ebfa6851bc22" + }, + { + "routeId": "L452", + "platformId": "U6527Z4", + "id": "743f02ea-ee83-459a-8885-419aec36d099" + }, + { + "routeId": "L452", + "platformId": "U6528Z1", + "id": "1cf9efd3-cf93-4cb8-958a-86465cb17d57" + }, + { + "routeId": "L452", + "platformId": "U6528Z2", + "id": "bca6cb25-9457-445b-ac64-7dc0740580ba" + }, + { + "routeId": "L452", + "platformId": "U6529Z1", + "id": "b3accccb-9c8d-4999-936d-3988fc5a675f" + }, + { + "routeId": "L452", + "platformId": "U6529Z2", + "id": "c311af84-1c4a-4273-9aba-cd50646d76e5" + }, + { + "routeId": "L7", + "platformId": "U652Z1", + "id": "a7cf46c9-22e8-45ac-8684-a0d6132f9ec8" + }, + { + "routeId": "L12", + "platformId": "U652Z1", + "id": "98de9ed0-04cb-4f13-b614-79696922b39b" + }, + { + "routeId": "L92", + "platformId": "U652Z1", + "id": "7a049b1e-e3a1-4f75-9d2c-657e10e0476b" + }, + { + "routeId": "L94", + "platformId": "U652Z1", + "id": "faa5207f-d104-4f35-9624-6f891e9c81e1" + }, + { + "routeId": "L7", + "platformId": "U652Z2", + "id": "7e535ca4-452a-44b9-9ab6-6097807fb21a" + }, + { + "routeId": "L12", + "platformId": "U652Z2", + "id": "3964b202-85d8-4b66-ae58-8f0d744d3994" + }, + { + "routeId": "L92", + "platformId": "U652Z2", + "id": "e4f6c794-4ce7-48fb-b81b-642a45fd578c" + }, + { + "routeId": "L94", + "platformId": "U652Z2", + "id": "6d6dfc35-5bfe-4888-a79f-3122c10c23b5" + }, + { + "routeId": "L141", + "platformId": "U652Z3", + "id": "ae05335f-a99f-4bbd-ac81-c7ae8cbc209a" + }, + { + "routeId": "L110", + "platformId": "U652Z3", + "id": "f513228f-db71-43f7-8bba-18e2f137b0e0" + }, + { + "routeId": "L141", + "platformId": "U652Z4", + "id": "8abe9120-acfc-4d3c-a052-9b8e1918680d" + }, + { + "routeId": "L110", + "platformId": "U652Z4", + "id": "dffb45d4-5833-4ee7-9de8-3cd034c3918b" + }, + { + "routeId": "L558", + "platformId": "U6530Z1", + "id": "634838f7-59da-434b-9d8b-c732401c01e2" + }, + { + "routeId": "L558", + "platformId": "U6530Z2", + "id": "6198ebfd-0deb-4fa2-97d5-40b6cf87306b" + }, + { + "routeId": "L401", + "platformId": "U6531Z1", + "id": "fd530e7c-06b1-40c1-8116-88b98e822742" + }, + { + "routeId": "L558", + "platformId": "U6531Z1", + "id": "8d10c4e9-8a12-437a-9f44-2b6dc9e0c176" + }, + { + "routeId": "L401", + "platformId": "U6531Z2", + "id": "6186c9f5-0079-4027-aca2-72995c9c644d" + }, + { + "routeId": "L558", + "platformId": "U6531Z2", + "id": "ec1910cb-dddb-49a1-8364-fefd9b3fc537" + }, + { + "routeId": "L558", + "platformId": "U6531Z3", + "id": "0e9bef1d-224d-4d53-b55e-dde99014f69e" + }, + { + "routeId": "L558", + "platformId": "U6531Z4", + "id": "efadebde-0bfd-4a4b-9d32-ac82fdd74932" + }, + { + "routeId": "L452", + "platformId": "U6533Z1", + "id": "c1e74aaa-6c4e-4c16-9a6c-653c49efedbc" + }, + { + "routeId": "L452", + "platformId": "U6533Z2", + "id": "914f139f-cdff-462b-9ef5-0bf4819d092f" + }, + { + "routeId": "L452", + "platformId": "U6534Z1", + "id": "01619008-d28b-4c2f-a406-05265730f3e6" + }, + { + "routeId": "L452", + "platformId": "U6534Z2", + "id": "17c08a14-1cdb-401d-ac0d-a70e097ea3a3" + }, + { + "routeId": "L452", + "platformId": "U6536Z1", + "id": "cb95dbc1-858e-4a97-94e1-5e3ab22e6b17" + }, + { + "routeId": "L452", + "platformId": "U6536Z2", + "id": "b2358b76-6386-485d-9cac-f3ea6b7b33a8" + }, + { + "routeId": "L452", + "platformId": "U6539Z1", + "id": "19e0e168-dd76-4a4c-b9a3-45800b666d39" + }, + { + "routeId": "L452", + "platformId": "U6539Z2", + "id": "cb3cae84-4775-4272-8aa5-e21bf7fa6b57" + }, + { + "routeId": "L167", + "platformId": "U653Z1", + "id": "01bea042-d328-47b4-8ec2-7745ff00391f" + }, + { + "routeId": "L167", + "platformId": "U653Z2", + "id": "6d8113eb-bf37-4af1-ab01-bc828830bd26" + }, + { + "routeId": "L452", + "platformId": "U6542Z1", + "id": "c9af7372-c1cb-4626-8ecf-1eaf74c0de0a" + }, + { + "routeId": "L452", + "platformId": "U6542Z2", + "id": "9372c22f-7c17-45d8-9993-6aacd7959d51" + }, + { + "routeId": "L452", + "platformId": "U6543Z1", + "id": "a9b532ee-fa00-429f-8041-7c4ccea527fb" + }, + { + "routeId": "L452", + "platformId": "U6543Z2", + "id": "a39429de-cc67-4029-8823-a90a8b25de1c" + }, + { + "routeId": "L452", + "platformId": "U6544Z1", + "id": "89b1cfec-08b7-4a44-a4aa-b38de4685b71" + }, + { + "routeId": "L452", + "platformId": "U6544Z2", + "id": "6c7f72d8-7559-48a5-a1a2-78b61433459e" + }, + { + "routeId": "L553", + "platformId": "U6545Z1", + "id": "bf38e261-d5d9-422a-9b91-664428cf277c" + }, + { + "routeId": "L553", + "platformId": "U6545Z2", + "id": "4d40886e-e46f-4cf1-9429-35774106005f" + }, + { + "routeId": "L553", + "platformId": "U6546Z1", + "id": "8eaa0e80-a870-4720-8b81-cf24407f11fe" + }, + { + "routeId": "L558", + "platformId": "U6546Z1", + "id": "04ce5e1b-4a1c-4240-95e6-4d19275afd99" + }, + { + "routeId": "L558", + "platformId": "U6546Z2", + "id": "21b1a295-f3da-447f-ac96-7d5665a95245" + }, + { + "routeId": "L553", + "platformId": "U6546Z2", + "id": "8b11b69e-ae56-47e6-8fa8-61b74d8a20da" + }, + { + "routeId": "L553", + "platformId": "U6547Z1", + "id": "bb7ff2f4-62e7-4e02-bffc-f5d0b76ec869" + }, + { + "routeId": "L558", + "platformId": "U6547Z1", + "id": "3bc7d7f8-1be0-41dd-a3d6-d0d26c2e731a" + }, + { + "routeId": "L558", + "platformId": "U6547Z2", + "id": "3612f151-bf68-4f26-b330-a15d54a4e9ce" + }, + { + "routeId": "L553", + "platformId": "U6547Z2", + "id": "dc521508-8ff7-4166-a3ce-1be2ca4532bc" + }, + { + "routeId": "L558", + "platformId": "U6548Z1", + "id": "8f859bed-d2f8-422b-bf16-799dea21af84" + }, + { + "routeId": "L558", + "platformId": "U6548Z2", + "id": "849d0d52-135d-4088-b7b9-7011f9cacb8e" + }, + { + "routeId": "L401", + "platformId": "U6549Z1", + "id": "db64ab1b-1f0f-413f-ab4a-9d09a31f0af9" + }, + { + "routeId": "L401", + "platformId": "U6549Z2", + "id": "41ca7882-2f86-456d-b5f3-0fe6418d3c9d" + }, + { + "routeId": "L125", + "platformId": "U654Z1", + "id": "3fca9bb4-d994-4b83-a2ca-8d946206e2c4" + }, + { + "routeId": "L154", + "platformId": "U654Z1", + "id": "d24bb009-7c4b-4baf-9089-164cda9da080" + }, + { + "routeId": "L183", + "platformId": "U654Z1", + "id": "3fdeac31-9de9-4611-b4af-6de81f38a495" + }, + { + "routeId": "L911", + "platformId": "U654Z1", + "id": "f44e60e6-4cb6-4441-aef4-3bc402706fe9" + }, + { + "routeId": "L125", + "platformId": "U654Z2", + "id": "810af687-cb9d-4f13-8f5d-de730e2ba980" + }, + { + "routeId": "L154", + "platformId": "U654Z2", + "id": "1209ca00-3b26-4c34-b7bb-b153601b4b66" + }, + { + "routeId": "L183", + "platformId": "U654Z2", + "id": "fcc2916d-93b0-444c-bf75-7606cfe40cda" + }, + { + "routeId": "L911", + "platformId": "U654Z2", + "id": "a10422aa-ae6c-4ed1-8eb8-4e6cf74033b8" + }, + { + "routeId": "L553", + "platformId": "U6550Z1", + "id": "20a56e27-053b-472a-9868-c4e2dfa8acee" + }, + { + "routeId": "L553", + "platformId": "U6550Z2", + "id": "f40c3add-a5f0-48a6-896f-56a7c581a4ec" + }, + { + "routeId": "L452", + "platformId": "U6554Z1", + "id": "4cf9aabb-caab-4abc-a627-90d506afecf0" + }, + { + "routeId": "L452", + "platformId": "U6554Z2", + "id": "0e912a4b-b23c-4834-bfc7-5ebc03630db0" + }, + { + "routeId": "L553", + "platformId": "U6555Z1", + "id": "0248110b-76a7-42e7-8cf2-7dccd0af2b78" + }, + { + "routeId": "L558", + "platformId": "U6555Z1", + "id": "da9ba389-ce50-4815-93c0-20c46495ca2f" + }, + { + "routeId": "L558", + "platformId": "U6555Z2", + "id": "0a5690b7-4e7e-4ba5-8d8c-34b956274a46" + }, + { + "routeId": "L553", + "platformId": "U6555Z2", + "id": "0e5b2dd5-0efa-4962-89ad-49fb0d3fa593" + }, + { + "routeId": "L558", + "platformId": "U6556Z1", + "id": "19ebd3c6-6b49-4195-a7ea-95b5ce9cfa8b" + }, + { + "routeId": "L558", + "platformId": "U6556Z2", + "id": "cfe4628d-df05-4775-90c9-ee9f1f06c574" + }, + { + "routeId": "L553", + "platformId": "U6557Z1", + "id": "5e4a7cc1-5695-4295-93f0-059e24800206" + }, + { + "routeId": "L553", + "platformId": "U6557Z2", + "id": "5a49eeae-ad37-40eb-b0a9-9d919ddd757f" + }, + { + "routeId": "L558", + "platformId": "U6557Z3", + "id": "ad284428-f033-4c4e-9975-98ab7607924b" + }, + { + "routeId": "L558", + "platformId": "U6557Z4", + "id": "0c14a0dd-ca87-4843-93f7-71db4e8e9dfc" + }, + { + "routeId": "L452", + "platformId": "U6558Z1", + "id": "7d34e5e2-e40e-4d85-89fe-753a6bbfa7dd" + }, + { + "routeId": "L452", + "platformId": "U6558Z2", + "id": "ef725faf-9f4b-4dd2-b0c3-33be26575b95" + }, + { + "routeId": "L401", + "platformId": "U6559Z1", + "id": "d157e0c4-4914-43ac-927a-0a5b51ff19ff" + }, + { + "routeId": "L401", + "platformId": "U6559Z2", + "id": "b682eec6-01e2-41b7-b2d4-ac5473c8892f" + }, + { + "routeId": "L3", + "platformId": "U655Z1", + "id": "64be1d93-ddef-4775-891e-86ef383ae5b4" + }, + { + "routeId": "L8", + "platformId": "U655Z1", + "id": "372422b1-266f-4619-aae9-495aec74c2c8" + }, + { + "routeId": "L12", + "platformId": "U655Z1", + "id": "fae64fb6-cc41-46ff-9d4a-70f13d81eae8" + }, + { + "routeId": "L92", + "platformId": "U655Z1", + "id": "bfcea122-5c97-4296-87fb-504eb745b34b" + }, + { + "routeId": "L94", + "platformId": "U655Z1", + "id": "cf8cdc01-b5c7-48e3-b157-0b627c37d21f" + }, + { + "routeId": "L992", + "platformId": "U655Z101", + "id": "f83dc48f-69d9-4334-941a-6109ba2e6b57" + }, + { + "routeId": "L992", + "platformId": "U655Z102", + "id": "1f4059bd-eb88-4df7-82e7-ef3941f1e496" + }, + { + "routeId": "L3", + "platformId": "U655Z2", + "id": "203b3454-7723-4621-ab0b-4f4c8faa32a3" + }, + { + "routeId": "L8", + "platformId": "U655Z2", + "id": "dec09aad-29e0-4f2a-b9bd-4129e5823912" + }, + { + "routeId": "L12", + "platformId": "U655Z2", + "id": "5c763c1a-b79e-493e-a181-c76116aa6f82" + }, + { + "routeId": "L92", + "platformId": "U655Z2", + "id": "9d2abe16-c196-4908-8c7b-0ff8e0c4da11" + }, + { + "routeId": "L94", + "platformId": "U655Z2", + "id": "7a35af5e-9b01-4a77-9a2c-8541054b581d" + }, + { + "routeId": "L553", + "platformId": "U6560Z1", + "id": "6d7160a2-c493-431e-88c0-4066fe03865b" + }, + { + "routeId": "L553", + "platformId": "U6560Z2", + "id": "324a67c1-e9d7-49d6-8508-1480ceff7586" + }, + { + "routeId": "L550", + "platformId": "U6562Z1", + "id": "339e786c-b225-4502-ab0d-e932af4520ce" + }, + { + "routeId": "L553", + "platformId": "U6562Z1", + "id": "f6f093a7-86f7-489d-bcfa-311eaa41ebb2" + }, + { + "routeId": "L550", + "platformId": "U6562Z2", + "id": "60540615-43e3-475e-835c-50ddf6bb1097" + }, + { + "routeId": "L553", + "platformId": "U6562Z2", + "id": "62a71023-4ec0-45d2-8524-5c68fc19814d" + }, + { + "routeId": "L550", + "platformId": "U6563Z1", + "id": "18c67f65-6183-4d78-96a2-5bf7a63cdfc5" + }, + { + "routeId": "L550", + "platformId": "U6563Z2", + "id": "062cf26e-3476-41f0-b678-b18daa680a81" + }, + { + "routeId": "L553", + "platformId": "U6563Z3", + "id": "12ed16c9-2d14-4179-a091-55b418d56447" + }, + { + "routeId": "L553", + "platformId": "U6563Z4", + "id": "66d0442d-bab3-46f4-a4a9-31cba9ebd753" + }, + { + "routeId": "L553", + "platformId": "U6567Z1", + "id": "44f7659b-efae-4bbd-8ec2-10a3384e5ad3" + }, + { + "routeId": "L553", + "platformId": "U6567Z2", + "id": "0e443043-315f-494a-bff3-0f00326c48e6" + }, + { + "routeId": "L553", + "platformId": "U6568Z1", + "id": "bc98564e-e8fc-4c5d-aaa2-9858cb0dc1a5" + }, + { + "routeId": "L553", + "platformId": "U6568Z2", + "id": "93903149-693e-405a-85f8-573a4c82dafd" + }, + { + "routeId": "L113", + "platformId": "U656Z1", + "id": "8eb4db0c-0798-4072-9412-c4b0dbdfd840" + }, + { + "routeId": "L215", + "platformId": "U656Z1", + "id": "029e091d-ef17-4752-b9de-e7fd88128c75" + }, + { + "routeId": "L189", + "platformId": "U656Z1", + "id": "6703adb3-a186-46fb-bea2-8b3b68e2ddd6" + }, + { + "routeId": "L904", + "platformId": "U656Z1", + "id": "923fca4e-f25b-471c-87f0-847bacf4bd4a" + }, + { + "routeId": "L333", + "platformId": "U656Z1", + "id": "d5282f25-b12f-41e6-9b20-2acdac636464" + }, + { + "routeId": "L960", + "platformId": "U656Z1", + "id": "85f312f1-47f1-4a8e-bd49-c336eb1fa2ad" + }, + { + "routeId": "L113", + "platformId": "U656Z2", + "id": "cf3fdb8b-071b-40fc-9964-7c52b0d537f7" + }, + { + "routeId": "L189", + "platformId": "U656Z2", + "id": "d5744b82-34d2-4537-8d69-056e923a1cc2" + }, + { + "routeId": "L215", + "platformId": "U656Z2", + "id": "0701208e-d0bf-49ac-b700-60a3821a3be7" + }, + { + "routeId": "L904", + "platformId": "U656Z2", + "id": "fde45827-e741-427e-be3a-52f45d5c32bf" + }, + { + "routeId": "L333", + "platformId": "U656Z2", + "id": "28690e97-59a8-4705-84c6-634a9e6db0f0" + }, + { + "routeId": "L960", + "platformId": "U656Z2", + "id": "5aa7200c-2a18-4fb1-9f96-7fd4d1d17a5f" + }, + { + "routeId": "L553", + "platformId": "U6570Z1", + "id": "052ceba0-a8cb-4659-8aa0-4877da625b8c" + }, + { + "routeId": "L553", + "platformId": "U6570Z2", + "id": "63cc8c38-c2d0-4c10-b904-090269c9adc6" + }, + { + "routeId": "L550", + "platformId": "U6571Z1", + "id": "20b3642d-d6d5-4efd-bd0a-35e1968e45fb" + }, + { + "routeId": "L550", + "platformId": "U6571Z2", + "id": "9d04c296-0cb6-42c1-a47a-c58ff0da02ee" + }, + { + "routeId": "L553", + "platformId": "U6572Z1", + "id": "c5d20446-5dca-4c56-812e-fbd97dbfb294" + }, + { + "routeId": "L553", + "platformId": "U6572Z2", + "id": "835e3238-e305-47c0-9f77-768d4e16cb2b" + }, + { + "routeId": "L550", + "platformId": "U6573Z1", + "id": "d390644b-8acd-4329-a408-f45aef64ef1b" + }, + { + "routeId": "L550", + "platformId": "U6573Z2", + "id": "0b7475e8-34bd-46e3-ae10-f0376eff9708" + }, + { + "routeId": "L550", + "platformId": "U6574Z1", + "id": "ab265ae0-9c5d-45d1-9eac-a2920eea9444" + }, + { + "routeId": "L553", + "platformId": "U6574Z1", + "id": "bb84282b-4283-4b21-98ff-1f3cd64b170e" + }, + { + "routeId": "L550", + "platformId": "U6574Z2", + "id": "d04c56eb-8aec-4c18-a902-5adcbf44186c" + }, + { + "routeId": "L553", + "platformId": "U6574Z2", + "id": "a6f87968-6f9d-4ca0-96ae-75cd8d1041c0" + }, + { + "routeId": "L553", + "platformId": "U6575Z1", + "id": "5be20b02-e53f-4bac-b273-245b1f2ed092" + }, + { + "routeId": "L553", + "platformId": "U6575Z2", + "id": "79951040-a6ea-41f4-9474-597021b9324e" + }, + { + "routeId": "L141", + "platformId": "U657Z1", + "id": "5dd962a9-9f35-4746-9f41-bc282ff18887" + }, + { + "routeId": "L110", + "platformId": "U657Z1", + "id": "8113988f-cd1f-45e2-be4f-a22f541f8215" + }, + { + "routeId": "L141", + "platformId": "U657Z2", + "id": "45dbd106-1731-4ecd-8209-7bfa01b7f358" + }, + { + "routeId": "L110", + "platformId": "U657Z2", + "id": "4707e90d-568d-4b89-8037-98ade9cf2f57" + }, + { + "routeId": "L550", + "platformId": "U6584Z1", + "id": "79c75377-e594-49d4-a9af-f29ac91f0790" + }, + { + "routeId": "L550", + "platformId": "U6584Z2", + "id": "c186e5ca-38f6-44fd-a6e0-7d624c768744" + }, + { + "routeId": "L550", + "platformId": "U6585Z1", + "id": "9a579a66-5767-4a4b-950b-7f84eaaecf2f" + }, + { + "routeId": "L550", + "platformId": "U6585Z2", + "id": "020f8af2-fec7-4a04-8743-3e62b3aa4bc7" + }, + { + "routeId": "L550", + "platformId": "U6588Z1", + "id": "c687d0e7-2d8d-40ab-a4d6-641f78254e2a" + }, + { + "routeId": "L550", + "platformId": "U6588Z2", + "id": "7957fdf9-35ce-4223-a4bf-a1368d685b39" + }, + { + "routeId": "L453", + "platformId": "U6589Z1", + "id": "9627733b-9c35-4d30-b562-156e78d56d51" + }, + { + "routeId": "L455", + "platformId": "U6589Z1", + "id": "b9cab8aa-b95b-4b5c-b601-fe671e755423" + }, + { + "routeId": "L453", + "platformId": "U6589Z2", + "id": "c2fcee89-3f94-46f1-a73a-ba37013d7f2c" + }, + { + "routeId": "L455", + "platformId": "U6589Z2", + "id": "2cdb1f49-2169-49b6-bc6f-19430052679d" + }, + { + "routeId": "L139", + "platformId": "U658Z1", + "id": "4c3103e5-9644-410c-bc6f-efba280d6f72" + }, + { + "routeId": "L150", + "platformId": "U658Z1", + "id": "30902d1e-002c-4743-aef9-715f5f179ecd" + }, + { + "routeId": "L910", + "platformId": "U658Z1", + "id": "c893a968-df57-4974-9b44-9b54ea4f19c9" + }, + { + "routeId": "L117", + "platformId": "U658Z1", + "id": "1261d612-422b-41bc-ae04-7f765350321c" + }, + { + "routeId": "L139", + "platformId": "U658Z2", + "id": "7ca057cd-31ee-4f38-86e4-9193522181e5" + }, + { + "routeId": "L150", + "platformId": "U658Z2", + "id": "b38658b9-fec3-43ee-8c4e-a4bbebdaf59f" + }, + { + "routeId": "L910", + "platformId": "U658Z2", + "id": "8694d5c5-75d6-40fc-9ad1-0458b9b60644" + }, + { + "routeId": "L117", + "platformId": "U658Z2", + "id": "2912bf40-e055-48c3-a38d-4870adfdfabf" + }, + { + "routeId": "L189", + "platformId": "U658Z4", + "id": "a5d321e3-2e44-4220-91af-bf7b2ba00b60" + }, + { + "routeId": "L197", + "platformId": "U658Z4", + "id": "e5ae132c-64b3-4952-9f82-74a0d6f541b4" + }, + { + "routeId": "L117", + "platformId": "U658Z4", + "id": "3d0e319d-145b-4a0e-9093-4dee568ef676" + }, + { + "routeId": "L189", + "platformId": "U658Z5", + "id": "8c92d29d-ce1c-4278-9773-85a795968018" + }, + { + "routeId": "L117", + "platformId": "U658Z5", + "id": "c71bb882-8b0c-4edc-b149-9e5667c8478a" + }, + { + "routeId": "L197", + "platformId": "U658Z6", + "id": "7337870a-8517-4e07-8556-00f323ff211a" + }, + { + "routeId": "L453", + "platformId": "U6590Z1", + "id": "49ea9598-7215-4d38-9c67-6f0ef88dac08" + }, + { + "routeId": "L455", + "platformId": "U6590Z1", + "id": "11d7da66-ee3f-4e89-8be3-9bec09bc7965" + }, + { + "routeId": "L453", + "platformId": "U6590Z2", + "id": "e57d1d88-c4c2-4369-8104-b8b31c7ffb86" + }, + { + "routeId": "L455", + "platformId": "U6590Z2", + "id": "fc29249e-ea9f-4e6a-8a13-52431d6e06b1" + }, + { + "routeId": "L453", + "platformId": "U6591Z1", + "id": "34731362-0846-4f4e-a819-5c8d76a77a6d" + }, + { + "routeId": "L455", + "platformId": "U6591Z1", + "id": "21a90312-8ed1-456f-ac4a-36dcbe19c3ce" + }, + { + "routeId": "L453", + "platformId": "U6591Z2", + "id": "52cb6f49-155f-4ca5-81c7-25cf6f62b7fb" + }, + { + "routeId": "L455", + "platformId": "U6591Z2", + "id": "8edce253-7cca-414d-a402-853298411d15" + }, + { + "routeId": "L453", + "platformId": "U6592Z1", + "id": "1e4e535c-fb0e-4134-931e-ba85f9eadd5d" + }, + { + "routeId": "L455", + "platformId": "U6592Z1", + "id": "7b22cffc-b629-435d-90a7-2f4459c9fb93" + }, + { + "routeId": "L453", + "platformId": "U6592Z2", + "id": "4a316d0a-9199-47af-950b-74bbeaafc122" + }, + { + "routeId": "L455", + "platformId": "U6592Z2", + "id": "98d79374-1f96-40b4-945c-0b22b7cad15e" + }, + { + "routeId": "L154", + "platformId": "U659Z1", + "id": "d5d5678a-fd54-40a7-9516-7f46676cacb1" + }, + { + "routeId": "L215", + "platformId": "U659Z1", + "id": "5982c9ee-2fcb-43b4-8ef4-39a7b485eb2d" + }, + { + "routeId": "L154", + "platformId": "U659Z2", + "id": "2903f94d-8e2e-4651-8896-abfb2a56b5f8" + }, + { + "routeId": "L215", + "platformId": "U659Z2", + "id": "83f3c8b1-c9f3-4c18-b289-69cfd8abd64c" + }, + { + "routeId": "L27", + "platformId": "U659Z3", + "id": "5a606e65-6571-4f80-aba8-a171d2387c5b" + }, + { + "routeId": "L27", + "platformId": "U659Z4", + "id": "477d94b7-320c-47a0-a6ca-2c9302af7670" + }, + { + "routeId": "L110", + "platformId": "U65Z1", + "id": "72e4ab20-6578-4c30-95bf-366c79320260" + }, + { + "routeId": "L110", + "platformId": "U65Z2", + "id": "8a1b1d52-34a1-44ae-8a5e-c66098393808" + }, + { + "routeId": "L533", + "platformId": "U6600Z1", + "id": "13d7e0d6-8d89-48a6-b6e2-f37e90db5459" + }, + { + "routeId": "L533", + "platformId": "U6600Z2", + "id": "8edb91cc-a592-4d3d-b2ec-687ed59bd642" + }, + { + "routeId": "L536", + "platformId": "U6601Z1", + "id": "04bd126b-bcc7-46de-bf0c-177072f62e2a" + }, + { + "routeId": "L533", + "platformId": "U6601Z1", + "id": "9ddf42a0-62d3-420d-9ab3-5e2bceb19910" + }, + { + "routeId": "L536", + "platformId": "U6601Z2", + "id": "0394ce8e-b22a-47e3-ad69-af0b1ae1c207" + }, + { + "routeId": "L533", + "platformId": "U6601Z2", + "id": "dc5df734-9c76-4bcb-b87a-0c4d236d0ceb" + }, + { + "routeId": "L536", + "platformId": "U6603Z1", + "id": "0df57e87-c16d-40d5-90a8-23fa5e0cc234" + }, + { + "routeId": "L533", + "platformId": "U6603Z1", + "id": "27cc4400-a266-4bee-8ed5-cff9eb8ebb80" + }, + { + "routeId": "L706", + "platformId": "U6603Z1", + "id": "19472c5e-93e8-4cd3-a958-f1ee8c38cfdb" + }, + { + "routeId": "L536", + "platformId": "U6603Z2", + "id": "d9cb74f8-cd20-4f6d-a3c8-abe3a04f1c3f" + }, + { + "routeId": "L706", + "platformId": "U6603Z2", + "id": "904338e5-842a-407b-a8c1-bf1d7ed7a379" + }, + { + "routeId": "L533", + "platformId": "U6603Z2", + "id": "ce3c0b8b-8641-4821-bfd3-fbc1afb77253" + }, + { + "routeId": "L536", + "platformId": "U6604Z1", + "id": "9501b916-d09e-461b-b348-71a00e8e0418" + }, + { + "routeId": "L706", + "platformId": "U6604Z1", + "id": "448b7720-5575-4af1-9a76-ed47c8de04ee" + }, + { + "routeId": "L533", + "platformId": "U6604Z1", + "id": "64646fb9-c122-4f91-9665-7d183693134f" + }, + { + "routeId": "L533", + "platformId": "U6606Z1", + "id": "efe5c104-eb8a-45c9-aa11-ef763106bef4" + }, + { + "routeId": "L533", + "platformId": "U6606Z2", + "id": "c626852f-3529-43d0-808c-52aea23adbec" + }, + { + "routeId": "L533", + "platformId": "U6607Z1", + "id": "bd743783-e276-4a4e-89b1-7aea77c51870" + }, + { + "routeId": "L533", + "platformId": "U6607Z2", + "id": "fd6e0849-3a01-4303-a724-370d096a06c9" + }, + { + "routeId": "L705", + "platformId": "U6608Z1", + "id": "abd9fd9c-2902-4151-891a-68ff99ca74f2" + }, + { + "routeId": "L536", + "platformId": "U6608Z1", + "id": "04843b77-75f3-43be-85cc-4d6cbc282a89" + }, + { + "routeId": "L706", + "platformId": "U6608Z1", + "id": "27aa9532-a54d-466a-b15f-868459c5438b" + }, + { + "routeId": "L536", + "platformId": "U6608Z2", + "id": "86ca2d83-8f6b-4511-8bc2-6e36c1a060ee" + }, + { + "routeId": "L706", + "platformId": "U6608Z2", + "id": "4c4a30ff-a239-4c3f-b3b8-1907084ef703" + }, + { + "routeId": "L705", + "platformId": "U6609Z1", + "id": "6a398111-6144-4ac9-8fad-8508a807480c" + }, + { + "routeId": "L536", + "platformId": "U6609Z1", + "id": "14e66fb1-375a-46bb-aaac-128dbebb09e9" + }, + { + "routeId": "L706", + "platformId": "U6609Z1", + "id": "e04a1fd9-6315-4a48-823d-4a0881caaedd" + }, + { + "routeId": "L536", + "platformId": "U6609Z2", + "id": "7c6a702c-6abd-492f-bc56-ca6e62818df2" + }, + { + "routeId": "L706", + "platformId": "U6609Z2", + "id": "79936cd2-75da-40bb-989e-df6568bf8a82" + }, + { + "routeId": "L133", + "platformId": "U660Z1", + "id": "37f98b7e-e187-431a-a922-ce891ab6dbee" + }, + { + "routeId": "L199", + "platformId": "U660Z1", + "id": "8c948b94-b616-4bdd-afad-6d9378c5d4b0" + }, + { + "routeId": "L188", + "platformId": "U660Z1", + "id": "fe556740-167c-45c8-b598-d92d97ef14c4" + }, + { + "routeId": "L908", + "platformId": "U660Z1", + "id": "e32288df-000d-4b15-a8a7-b28a65c083bc" + }, + { + "routeId": "L909", + "platformId": "U660Z1", + "id": "302616f8-05fb-491d-a068-a5f46c431184" + }, + { + "routeId": "L155", + "platformId": "U660Z1", + "id": "1cbfdc78-7a5e-4d8a-8653-bcd6b2d5d56c" + }, + { + "routeId": "L228", + "platformId": "U660Z1", + "id": "d512ad83-5358-4a1b-8caf-007db5f45792" + }, + { + "routeId": "L133", + "platformId": "U660Z2", + "id": "765327d2-0271-4ec5-af48-30c7b0e40be5" + }, + { + "routeId": "L199", + "platformId": "U660Z2", + "id": "0d650423-99d5-4ad0-84b1-038f44c2e080" + }, + { + "routeId": "L188", + "platformId": "U660Z2", + "id": "4b9daae9-aa55-4ca4-8329-c356b4380027" + }, + { + "routeId": "L908", + "platformId": "U660Z2", + "id": "16f3ee0d-1011-45b6-82a6-99b87556a48d" + }, + { + "routeId": "L909", + "platformId": "U660Z2", + "id": "793fde9f-6fbc-4676-bc49-1a7677bf6987" + }, + { + "routeId": "L177", + "platformId": "U660Z4", + "id": "0007a13c-a19c-4bb0-a2e0-93dbce410d99" + }, + { + "routeId": "L195", + "platformId": "U660Z4", + "id": "49f775f8-d29d-47cf-a848-3d6fceb125f4" + }, + { + "routeId": "L155", + "platformId": "U660Z4", + "id": "ceace712-5049-4502-9ee8-024981baa666" + }, + { + "routeId": "L903", + "platformId": "U660Z4", + "id": "d9038825-5829-43f3-b10f-99b00d4349d9" + }, + { + "routeId": "L177", + "platformId": "U660Z5", + "id": "9cac80bf-8961-49fb-b62c-ed28639bd077" + }, + { + "routeId": "L195", + "platformId": "U660Z5", + "id": "9b4d3049-a84e-45c1-8d44-66b5b0ad8aab" + }, + { + "routeId": "L155", + "platformId": "U660Z5", + "id": "8a8dd999-5e1e-4b4e-bf53-bab45bd544a7" + }, + { + "routeId": "L903", + "platformId": "U660Z5", + "id": "c526d9dc-1d37-401c-98b7-b8a07ec6b365" + }, + { + "routeId": "L133", + "platformId": "U660Z6", + "id": "c7726666-520f-46f5-9068-62ce312119e2" + }, + { + "routeId": "L199", + "platformId": "U660Z6", + "id": "6fb23aff-2ede-4181-8d4f-894ffcb604e8" + }, + { + "routeId": "L705", + "platformId": "U6610Z1", + "id": "1fe6cb0c-11be-4581-8d3b-40842a3d1289" + }, + { + "routeId": "L536", + "platformId": "U6610Z1", + "id": "d7893c60-8fff-4cee-98ef-08a37f48b637" + }, + { + "routeId": "L706", + "platformId": "U6610Z1", + "id": "c2bdd849-4e58-43ae-8ed9-98f1c742abf2" + }, + { + "routeId": "L536", + "platformId": "U6610Z2", + "id": "b5b5038a-1198-49c4-b33e-4a7c5934f70f" + }, + { + "routeId": "L706", + "platformId": "U6610Z2", + "id": "8cd2b48e-7c63-46c6-8c06-ad4e707b3b3d" + }, + { + "routeId": "L705", + "platformId": "U6611Z1", + "id": "2a5a8635-2d9c-4ca4-8975-0a5d01bc7b01" + }, + { + "routeId": "L536", + "platformId": "U6611Z1", + "id": "0599fe08-5a60-4625-a1a9-3cb757b26ba9" + }, + { + "routeId": "L706", + "platformId": "U6611Z1", + "id": "6e61119c-37b3-4f4d-8d64-f1bb28e5b931" + }, + { + "routeId": "L536", + "platformId": "U6611Z2", + "id": "a5447758-7707-4fc4-b4d2-83eb4f308732" + }, + { + "routeId": "L706", + "platformId": "U6611Z2", + "id": "dc68f121-573f-4fbe-ac26-1741918cd852" + }, + { + "routeId": "L536", + "platformId": "U6612Z1", + "id": "9988084f-3546-4db5-b566-9a8c6e2767e5" + }, + { + "routeId": "L706", + "platformId": "U6612Z1", + "id": "461222bf-24d3-4ab4-b904-92ed38e1a2db" + }, + { + "routeId": "L536", + "platformId": "U6612Z2", + "id": "bee0fbbd-a144-4f13-8654-f90dc9f79679" + }, + { + "routeId": "L706", + "platformId": "U6612Z2", + "id": "54cf1187-34cd-4c7c-878e-dd66934b24bc" + }, + { + "routeId": "L536", + "platformId": "U6613Z1", + "id": "d775a1fe-4585-4cb2-9213-7e7f7cfa0531" + }, + { + "routeId": "L706", + "platformId": "U6613Z1", + "id": "dbc8dfc9-3779-4c2d-8761-82fab18501d5" + }, + { + "routeId": "L536", + "platformId": "U6613Z2", + "id": "8a3bb66c-0025-4e74-8aa9-2668fd65f9c2" + }, + { + "routeId": "L706", + "platformId": "U6613Z2", + "id": "613ab0cc-42e3-4ce1-9566-0259f2e2999c" + }, + { + "routeId": "L706", + "platformId": "U6614Z1", + "id": "78329fef-4284-44fc-b0a6-e21367d76cd5" + }, + { + "routeId": "L705", + "platformId": "U6614Z2", + "id": "56d2de7e-d09a-4080-9d0d-358aaa23eae0" + }, + { + "routeId": "L706", + "platformId": "U6614Z2", + "id": "a1749685-6bcf-4743-bc3f-4dcd9237a8d8" + }, + { + "routeId": "L705", + "platformId": "U6615Z2", + "id": "c031ff30-527d-47f4-8a8d-49a68b7b5fe9" + }, + { + "routeId": "L705", + "platformId": "U6616Z2", + "id": "9944c510-7541-4cd9-9180-0d7c4ac84b3f" + }, + { + "routeId": "L706", + "platformId": "U6619Z1", + "id": "a5ded43c-590b-470e-ae07-dc14a9449d47" + }, + { + "routeId": "L706", + "platformId": "U6619Z2", + "id": "a33e7f95-f6da-47b6-bce5-cdabdef2ff84" + }, + { + "routeId": "L20", + "platformId": "U661Z1", + "id": "7f59ea78-e102-43e4-b84e-ab0509d0d4ba" + }, + { + "routeId": "L26", + "platformId": "U661Z1", + "id": "46a839e6-3fb7-4ba9-9984-2f1a1d1d149e" + }, + { + "routeId": "L191", + "platformId": "U661Z1", + "id": "d8f5e1fc-d083-4991-8ada-a2073ac69da7" + }, + { + "routeId": "L225", + "platformId": "U661Z1", + "id": "ad749e81-deee-4466-a499-fd1efb25fabf" + }, + { + "routeId": "L910", + "platformId": "U661Z1", + "id": "27e5c17f-5612-4c71-b432-cb920cc7812a" + }, + { + "routeId": "L20", + "platformId": "U661Z2", + "id": "4e75ae03-c1e7-4d52-b581-611f9e78006a" + }, + { + "routeId": "L26", + "platformId": "U661Z2", + "id": "0cc7cb58-0a42-45db-90ad-04a6d6243f32" + }, + { + "routeId": "L191", + "platformId": "U661Z2", + "id": "34998f7e-5ab9-440b-92e5-b17645215889" + }, + { + "routeId": "L910", + "platformId": "U661Z2", + "id": "e9569785-d430-4ae7-b4e2-d75590bb284c" + }, + { + "routeId": "L225", + "platformId": "U661Z3", + "id": "28acd3ce-3bd3-4f94-bc49-6b6a1f8eb414" + }, + { + "routeId": "L706", + "platformId": "U6620Z1", + "id": "e1575f90-a1f1-499d-9bda-16bd4e605bf6" + }, + { + "routeId": "L706", + "platformId": "U6620Z2", + "id": "0e2b801d-a7c8-463e-9ff7-fd4921d19371" + }, + { + "routeId": "L706", + "platformId": "U6623Z1", + "id": "7c8bc7c2-725c-445a-a876-27a25ae2d813" + }, + { + "routeId": "L706", + "platformId": "U6623Z2", + "id": "15e0756f-1b68-4f1e-8451-de8ceeb5bdab" + }, + { + "routeId": "L533", + "platformId": "U6624Z1", + "id": "3af0f818-07f5-41a5-b9a0-6806d8368ffe" + }, + { + "routeId": "L533", + "platformId": "U6624Z2", + "id": "e236b621-eedd-4f31-aac6-fafd9bb59f0e" + }, + { + "routeId": "L542", + "platformId": "U6625Z1", + "id": "bc342525-4fdd-46a8-9794-cb8eda6c3b07" + }, + { + "routeId": "L542", + "platformId": "U6625Z2", + "id": "4922794d-9564-410b-86be-04f5721e70e0" + }, + { + "routeId": "L542", + "platformId": "U6625Z3", + "id": "befd3f0b-e78c-4085-884b-d60ef62951a6" + }, + { + "routeId": "L542", + "platformId": "U6625Z4", + "id": "d52c7c63-0f42-4974-911b-a7661fe706ca" + }, + { + "routeId": "L542", + "platformId": "U6626Z1", + "id": "023bacff-8e2c-4774-bad2-5af4b55ec3e1" + }, + { + "routeId": "L542", + "platformId": "U6626Z2", + "id": "00451a3f-7f81-42f6-ab5d-fce84a721d19" + }, + { + "routeId": "L542", + "platformId": "U6626Z3", + "id": "2b7efe11-4478-41a7-bb72-8d4da8cb0acf" + }, + { + "routeId": "L542", + "platformId": "U6626Z4", + "id": "624be9e7-a6b5-48d1-8365-bf6ba7f6555e" + }, + { + "routeId": "L542", + "platformId": "U6627Z1", + "id": "af1646a1-c3a0-4213-8a7c-02513fc66b16" + }, + { + "routeId": "L542", + "platformId": "U6627Z2", + "id": "4577055c-4601-4df6-911b-f98b54ba9811" + }, + { + "routeId": "L106", + "platformId": "U662Z1", + "id": "f0a56866-a904-4719-a501-bbbd91d41f67" + }, + { + "routeId": "L196", + "platformId": "U662Z1", + "id": "06b7c4c7-1c35-4372-9f54-ad6efa09e35e" + }, + { + "routeId": "L197", + "platformId": "U662Z1", + "id": "b1b0e271-5461-4fb7-8cf9-5d39af89ff49" + }, + { + "routeId": "L901", + "platformId": "U662Z1", + "id": "f80f2ba1-e635-4855-b817-044a0f1a11ef" + }, + { + "routeId": "L106", + "platformId": "U662Z2", + "id": "723f2774-98fb-4f8e-9990-0623c1eada59" + }, + { + "routeId": "L196", + "platformId": "U662Z2", + "id": "2e407d22-6489-4b6d-9ce0-02e2ed2d9292" + }, + { + "routeId": "L197", + "platformId": "U662Z2", + "id": "f649e168-28e5-4808-8d8e-567ca1f1e44a" + }, + { + "routeId": "L901", + "platformId": "U662Z2", + "id": "27964b9b-570d-4ef0-a3c4-2297b87a507d" + }, + { + "routeId": "L542", + "platformId": "U6630Z1", + "id": "322c6fe9-e0f3-476c-886b-d3e0448bec53" + }, + { + "routeId": "L542", + "platformId": "U6630Z2", + "id": "7fdca302-a926-48fc-a51b-e218c554c50c" + }, + { + "routeId": "L538", + "platformId": "U6631Z1", + "id": "fd438b9f-ba04-4acc-ac11-78a22e6caea1" + }, + { + "routeId": "L538", + "platformId": "U6631Z2", + "id": "0286655a-839a-4417-89af-007d0583e6e3" + }, + { + "routeId": "L536", + "platformId": "U6633Z1", + "id": "479e4d97-9e21-4383-a652-d226a23d19e0" + }, + { + "routeId": "L536", + "platformId": "U6633Z2", + "id": "906d9920-94de-4606-8b22-597a105ee341" + }, + { + "routeId": "L536", + "platformId": "U6635Z1", + "id": "41952960-4359-41e3-a84d-5acd29de5d2f" + }, + { + "routeId": "L536", + "platformId": "U6635Z2", + "id": "fcda21f8-bc28-4e89-8e80-cf33bff5f304" + }, + { + "routeId": "L536", + "platformId": "U6636Z1", + "id": "1893deb3-3fa3-4645-99a5-f3e1a1031517" + }, + { + "routeId": "L536", + "platformId": "U6636Z2", + "id": "64211645-5053-47cc-96ef-835ebe9fa57c" + }, + { + "routeId": "L536", + "platformId": "U6637Z1", + "id": "5e818e9b-8f09-4280-9434-e46491739d80" + }, + { + "routeId": "L536", + "platformId": "U6637Z2", + "id": "9ad235dc-97df-438d-aa53-ed0d0f8c595a" + }, + { + "routeId": "L536", + "platformId": "U6638Z1", + "id": "f4a0e5b2-3f4d-49a3-a9f9-0d2cd032d1b2" + }, + { + "routeId": "L536", + "platformId": "U6638Z2", + "id": "a875e31a-bf9f-48ad-a228-69a41d53cebc" + }, + { + "routeId": "L535", + "platformId": "U6639Z1", + "id": "5ba8d9d4-2b3e-4fe9-8cdf-70c7eefe75bb" + }, + { + "routeId": "L535", + "platformId": "U6639Z2", + "id": "74602db4-3b56-4878-9b89-0b9a8708eca3" + }, + { + "routeId": "L134", + "platformId": "U663Z1", + "id": "8b6477e2-4f23-4b71-b3e2-7f6cb8b8d683" + }, + { + "routeId": "L188", + "platformId": "U663Z1", + "id": "779d50bb-6d79-445b-998c-4ab553ce3eae" + }, + { + "routeId": "L904", + "platformId": "U663Z1", + "id": "167c2a39-4eb6-4a3d-94ff-7fc68a281ecd" + }, + { + "routeId": "L188", + "platformId": "U663Z2", + "id": "2a7ebf63-1e25-4a3f-93ba-20787f11c4be" + }, + { + "routeId": "L193", + "platformId": "U663Z2", + "id": "20fc88f1-b055-449e-9799-65b6a8b3018e" + }, + { + "routeId": "L134", + "platformId": "U663Z3", + "id": "ca0e1d9e-6fdb-43b4-8036-ab437836e268" + }, + { + "routeId": "L193", + "platformId": "U663Z3", + "id": "01c0c91e-b9eb-4397-b390-ff2c9426e08f" + }, + { + "routeId": "L904", + "platformId": "U663Z3", + "id": "feaf2166-f108-4ba5-80de-2529c084c16b" + }, + { + "routeId": "L905", + "platformId": "U663Z3", + "id": "9280646e-ca18-4fd2-af38-97f1004132e6" + }, + { + "routeId": "L910", + "platformId": "U663Z3", + "id": "d4275a87-4766-4da9-afff-9a9a2e306f5a" + }, + { + "routeId": "L134", + "platformId": "U663Z4", + "id": "2a9c5531-b1a8-4c5f-92a3-c21e162bf29d" + }, + { + "routeId": "L193", + "platformId": "U663Z4", + "id": "e98d9297-fb03-4667-a7c4-1fb9786a93bc" + }, + { + "routeId": "L904", + "platformId": "U663Z4", + "id": "4382de7f-4c63-4755-881f-e8db7421bd4d" + }, + { + "routeId": "L535", + "platformId": "U6640Z1", + "id": "5dc0627a-32ca-485a-ad48-b16ee4c051b7" + }, + { + "routeId": "L535", + "platformId": "U6640Z2", + "id": "8485526b-f5b7-46b1-a8fd-67061f4c4bb4" + }, + { + "routeId": "L535", + "platformId": "U6641Z1", + "id": "df631098-70f2-4fef-86ca-cd9ad2559d14" + }, + { + "routeId": "L535", + "platformId": "U6641Z2", + "id": "b7e6c578-bed7-461e-a24e-a69fb280c0ad" + }, + { + "routeId": "L535", + "platformId": "U6642Z1", + "id": "1e3b8bba-3c10-4d6c-9fe2-894f68ec3904" + }, + { + "routeId": "L535", + "platformId": "U6642Z2", + "id": "c6a17c8c-3e5d-47f1-8ad4-3f2b60228aa4" + }, + { + "routeId": "L535", + "platformId": "U6643Z1", + "id": "3f892fab-315f-4eac-9559-421ff8c11c30" + }, + { + "routeId": "L535", + "platformId": "U6643Z2", + "id": "f2863d42-7cce-4b61-ba79-eff817e512ba" + }, + { + "routeId": "L705", + "platformId": "U6645Z2", + "id": "301fd0f1-b352-4d3d-b34e-b08e66e9b18f" + }, + { + "routeId": "L706", + "platformId": "U6645Z2", + "id": "198008e8-225d-42df-ab44-6e3c6d12d21d" + }, + { + "routeId": "L705", + "platformId": "U6646Z2", + "id": "1aec9e85-40d4-4cd5-829c-687644c74e03" + }, + { + "routeId": "L706", + "platformId": "U6646Z2", + "id": "0c78776a-80c2-4003-8f41-352c9ee26033" + }, + { + "routeId": "L705", + "platformId": "U6647Z1", + "id": "d7cdbc94-b1e9-4ba0-b053-9b39978fa088" + }, + { + "routeId": "L706", + "platformId": "U6647Z1", + "id": "08af586d-1441-4adc-a4c2-0650a3fa4688" + }, + { + "routeId": "L706", + "platformId": "U6647Z2", + "id": "c273262e-f08c-46bf-abea-8b0ab1470336" + }, + { + "routeId": "L134", + "platformId": "U664Z1", + "id": "6290e6d6-93f3-425e-bedc-007eff084897" + }, + { + "routeId": "L904", + "platformId": "U664Z1", + "id": "e02116db-4b3a-4ceb-b67e-c6f8641e7fe2" + }, + { + "routeId": "L134", + "platformId": "U664Z2", + "id": "ee09b89e-d195-4996-888e-e08d32b5f9c2" + }, + { + "routeId": "L904", + "platformId": "U664Z2", + "id": "95916966-4673-4d18-b77d-8ec7820a3117" + }, + { + "routeId": "L706", + "platformId": "U6652Z1", + "id": "4d818d69-bab0-4a1f-8381-1c0b69fde203" + }, + { + "routeId": "L706", + "platformId": "U6652Z2", + "id": "792a4658-7caa-446c-ad6f-7eba330c313b" + }, + { + "routeId": "L533", + "platformId": "U6654Z1", + "id": "306d060d-9cab-4743-89bd-d07adaa88a8d" + }, + { + "routeId": "L533", + "platformId": "U6654Z2", + "id": "fdf56859-c5e2-4de3-b981-f501cc577fe0" + }, + { + "routeId": "L481", + "platformId": "U6659Z1", + "id": "086e9c85-e778-4c71-87dc-05b9faa9d536" + }, + { + "routeId": "L533", + "platformId": "U6659Z1", + "id": "679fd88d-78fa-4d7a-bf65-c7e7e8a684a2" + }, + { + "routeId": "L481", + "platformId": "U6659Z2", + "id": "c91645e3-8f8b-4e0e-a93d-8ea14d401bad" + }, + { + "routeId": "L533", + "platformId": "U6659Z2", + "id": "473b5a5d-3496-4d54-abd8-d5f719ae6067" + }, + { + "routeId": "L2801", + "platformId": "U6659Z2", + "id": "66139455-edb5-4074-bba8-2ccca8f7bad5" + }, + { + "routeId": "L152", + "platformId": "U665Z1", + "id": "c6957c1b-727c-4de3-b785-2377cc507744" + }, + { + "routeId": "L177", + "platformId": "U665Z1", + "id": "7d2c48ab-fa37-40d6-8e54-ff0ccc1c8b9e" + }, + { + "routeId": "L183", + "platformId": "U665Z1", + "id": "fca9bf7c-1e02-47bd-99cb-fa72f1c3f7eb" + }, + { + "routeId": "L911", + "platformId": "U665Z1", + "id": "812a39fa-1b54-41d8-a051-923eb04cd563" + }, + { + "routeId": "L913", + "platformId": "U665Z1", + "id": "5becb7c3-f257-41d7-8aca-1fefb25835ac" + }, + { + "routeId": "L166", + "platformId": "U665Z1", + "id": "6ad9ea63-4d4a-43e3-a561-7f754bdaa945" + }, + { + "routeId": "L152", + "platformId": "U665Z2", + "id": "f5607139-9547-4813-af79-7952d4fba5c8" + }, + { + "routeId": "L177", + "platformId": "U665Z2", + "id": "42026fa9-1db0-4faa-8b38-f53396a3d550" + }, + { + "routeId": "L183", + "platformId": "U665Z2", + "id": "24c5971d-3bc5-4e67-8ed1-58615f8e2191" + }, + { + "routeId": "L911", + "platformId": "U665Z2", + "id": "0b2030f0-4157-4bdc-acd7-63cc74b837cc" + }, + { + "routeId": "L913", + "platformId": "U665Z2", + "id": "ea95dc54-99c6-413c-afe2-ca5260fbffa7" + }, + { + "routeId": "L166", + "platformId": "U665Z2", + "id": "f953bce7-99e1-4894-b565-0cf2ad3e42bf" + }, + { + "routeId": "L481", + "platformId": "U6660Z1", + "id": "cd7f9125-5acb-47c5-8ed3-7619c6129320" + }, + { + "routeId": "L533", + "platformId": "U6660Z1", + "id": "2db3e3ba-7be9-470b-9152-883a8668c6fb" + }, + { + "routeId": "L481", + "platformId": "U6660Z2", + "id": "e4e1d90d-6b03-42a4-a299-facbf355cdfa" + }, + { + "routeId": "L533", + "platformId": "U6660Z2", + "id": "2bf61382-bafa-457c-b78d-4002f0dd2a1f" + }, + { + "routeId": "L533", + "platformId": "U6661Z1", + "id": "f915c9f8-5cba-4524-b311-a92dd304007c" + }, + { + "routeId": "L533", + "platformId": "U6661Z2", + "id": "199722f0-0163-41b3-95da-b98be9a9dc43" + }, + { + "routeId": "L533", + "platformId": "U6662Z1", + "id": "9dd7ff3a-18b0-4401-864e-cbcac8a53c6c" + }, + { + "routeId": "L533", + "platformId": "U6662Z2", + "id": "6e13e47c-0369-4c8a-b7b0-d4dd34541856" + }, + { + "routeId": "L533", + "platformId": "U6663Z1", + "id": "50e49390-54ff-4f6c-9d90-cd12c096483e" + }, + { + "routeId": "L533", + "platformId": "U6663Z2", + "id": "c2af1702-a22c-40fe-bf87-af4918de594a" + }, + { + "routeId": "L702", + "platformId": "U6666Z1", + "id": "7787401d-69a3-4ebb-ae0e-fcb0dd25ccf0" + }, + { + "routeId": "L702", + "platformId": "U6666Z2", + "id": "7533a841-149d-4f5f-9281-6d02a4324b6c" + }, + { + "routeId": "L702", + "platformId": "U6667Z1", + "id": "c1b36df5-f9b3-4587-94f3-de430982e545" + }, + { + "routeId": "L702", + "platformId": "U6667Z2", + "id": "9bd1d2d8-c3e5-428f-b55e-21bb8e76d158" + }, + { + "routeId": "L244", + "platformId": "U666Z1", + "id": "76b9c84d-9961-4fd1-973e-d284adc1a150" + }, + { + "routeId": "L244", + "platformId": "U666Z2", + "id": "3fcccd60-659f-4ebe-b460-b5ec7111a672" + }, + { + "routeId": "L248", + "platformId": "U666Z2", + "id": "20cc36f3-ef05-4b9a-9068-88a2ec292bdf" + }, + { + "routeId": "L702", + "platformId": "U6670Z1", + "id": "b9fd2323-1f65-47e8-a5f9-ace8b0ca1cbe" + }, + { + "routeId": "L702", + "platformId": "U6670Z2", + "id": "93dd7929-28ba-4cb1-8ae5-3a80fdb68978" + }, + { + "routeId": "L702", + "platformId": "U6671Z1", + "id": "1636f01f-16bb-46e9-a339-2be88dbce044" + }, + { + "routeId": "L702", + "platformId": "U6671Z2", + "id": "a12d1b8a-2004-4125-a202-5117017a969c" + }, + { + "routeId": "L705", + "platformId": "U6672Z1", + "id": "eacf3c5c-b154-4096-a761-ef282d92e38f" + }, + { + "routeId": "L702", + "platformId": "U6672Z1", + "id": "271b0513-1c41-454e-b827-303f75928a04" + }, + { + "routeId": "L705", + "platformId": "U6673Z1", + "id": "90673deb-dd1e-4db6-8d4c-6194f25d9249" + }, + { + "routeId": "L702", + "platformId": "U6673Z1", + "id": "66cb9ebd-1b90-4005-91d4-72d4fe39ddda" + }, + { + "routeId": "L705", + "platformId": "U6673Z2", + "id": "200701b4-effa-4d69-b7f8-5599f89a66ed" + }, + { + "routeId": "L702", + "platformId": "U6673Z2", + "id": "7db13014-928d-492a-859e-5ba2c1acdb9a" + }, + { + "routeId": "L702", + "platformId": "U6674Z1", + "id": "2466bbe0-5fda-44c1-aebb-024440613c97" + }, + { + "routeId": "L702", + "platformId": "U6674Z2", + "id": "34965877-d517-4941-b18a-4c1be5926c62" + }, + { + "routeId": "L702", + "platformId": "U6675Z1", + "id": "470e038e-8943-42fa-b185-2b9a80d74e3e" + }, + { + "routeId": "L702", + "platformId": "U6675Z2", + "id": "df5dcfaa-34af-4a5b-ad80-711cc8e9d5a4" + }, + { + "routeId": "L702", + "platformId": "U6676Z1", + "id": "3abd703b-08ad-4925-a59e-638c32e729e3" + }, + { + "routeId": "L702", + "platformId": "U6676Z2", + "id": "71c766d2-165a-44d2-bb71-88d2963aa5ab" + }, + { + "routeId": "L705", + "platformId": "U6677Z1", + "id": "48b8342f-53c2-4286-8c87-a6f0f9a5a880" + }, + { + "routeId": "L705", + "platformId": "U6677Z2", + "id": "202e0b5e-1dc4-44eb-ae69-5587b793432a" + }, + { + "routeId": "L705", + "platformId": "U6678Z1", + "id": "d16a4a65-89a6-40ed-9f0f-efc58ccf0e85" + }, + { + "routeId": "L705", + "platformId": "U6678Z2", + "id": "a5d559d9-62f9-44bf-b06b-a5b73cbfa1f0" + }, + { + "routeId": "L705", + "platformId": "U6679Z1", + "id": "a443a48a-9c76-4329-bd92-6c918734e2ee" + }, + { + "routeId": "L705", + "platformId": "U6679Z2", + "id": "b96b28eb-e1f7-456f-937a-787a54ee595a" + }, + { + "routeId": "L164", + "platformId": "U667Z1", + "id": "ff036a94-c826-4d1e-a471-1c890e663361" + }, + { + "routeId": "L164", + "platformId": "U667Z2", + "id": "e3041c08-763d-4966-bdfa-6729cd30484c" + }, + { + "routeId": "L705", + "platformId": "U6680Z1", + "id": "41533384-5fce-4a6e-90a8-e074d83edb42" + }, + { + "routeId": "L705", + "platformId": "U6680Z2", + "id": "502879c9-c30b-41bf-8f0d-61293fac37e1" + }, + { + "routeId": "L705", + "platformId": "U6681Z1", + "id": "f07a2210-7b1f-4f80-a503-b749ba7e51e1" + }, + { + "routeId": "L2805", + "platformId": "U6681Z1", + "id": "9854be66-ecd0-4367-8096-82d51fed8771" + }, + { + "routeId": "L705", + "platformId": "U6681Z2", + "id": "ff666937-5ee5-4d7a-bf7e-f89f927c9e62" + }, + { + "routeId": "L2805", + "platformId": "U6681Z2", + "id": "504015f8-49b2-4b1a-9c63-e964f523221c" + }, + { + "routeId": "L705", + "platformId": "U6682Z1", + "id": "5d02f381-de7c-46ab-b00b-6e0e6b73bbeb" + }, + { + "routeId": "L705", + "platformId": "U6682Z2", + "id": "a3aaefbb-47f9-49e9-9316-c2296873f612" + }, + { + "routeId": "L2801", + "platformId": "U6683Z3", + "id": "be6053de-ecb3-4b4e-8105-9f1a8bacc74e" + }, + { + "routeId": "L138", + "platformId": "U668Z1", + "id": "14ba1c5f-eb92-4ddc-9f7c-c80e58e2cc61" + }, + { + "routeId": "L138", + "platformId": "U668Z2", + "id": "accd9c20-385b-402f-b87b-cf0e0ccae6e9" + }, + { + "routeId": "L2805", + "platformId": "U6690Z1", + "id": "328cf7e8-af00-4309-a387-de05eb5b8828" + }, + { + "routeId": "L2805", + "platformId": "U6691Z2", + "id": "50c82b2f-22fc-4748-97b4-8e68a6655f8f" + }, + { + "routeId": "L2801", + "platformId": "U6691Z2", + "id": "fe572b2a-514f-4779-aa76-00cbc6eb49bc" + }, + { + "routeId": "L2805", + "platformId": "U6691Z3", + "id": "958fecdc-6c3a-4a91-a839-0d9a79102ceb" + }, + { + "routeId": "L2801", + "platformId": "U6691Z3", + "id": "bc8ff593-487a-4c01-8e50-ba5655005fdd" + }, + { + "routeId": "L381", + "platformId": "U6692Z1", + "id": "fdf8f6f9-defd-4029-98a8-1485977caf97" + }, + { + "routeId": "L481", + "platformId": "U6692Z1", + "id": "0b010774-6f2a-4840-92b0-4315cb6ff8b6" + }, + { + "routeId": "L533", + "platformId": "U6692Z1", + "id": "d009941b-79f1-4961-9ab3-5ceec5b73bcb" + }, + { + "routeId": "L2801", + "platformId": "U6692Z1", + "id": "7d1c2078-ec68-493a-85a0-bcf89001cbaa" + }, + { + "routeId": "L381", + "platformId": "U6692Z2", + "id": "2b8c8dc4-b87c-4415-92ed-321f32953096" + }, + { + "routeId": "L481", + "platformId": "U6692Z2", + "id": "ac8c5ca6-d1f8-4102-a972-e0a399760d3d" + }, + { + "routeId": "L533", + "platformId": "U6692Z2", + "id": "79cff47c-4ce8-4e68-8733-d327e83a7608" + }, + { + "routeId": "L2801", + "platformId": "U6692Z2", + "id": "e774dd2b-57e7-4cf1-b77d-70b768c5e5f9" + }, + { + "routeId": "L118", + "platformId": "U669Z1", + "id": "1e85e1de-88d7-43ea-b887-e4c36251299a" + }, + { + "routeId": "L135", + "platformId": "U669Z1", + "id": "8140e43a-3e6d-42dd-9020-f4f4255cfebd" + }, + { + "routeId": "L138", + "platformId": "U669Z1", + "id": "7cf35523-2c9b-433e-88a1-88951e093968" + }, + { + "routeId": "L118", + "platformId": "U669Z2", + "id": "89529599-1254-43be-a215-87e512ed0e83" + }, + { + "routeId": "L138", + "platformId": "U669Z2", + "id": "a971b5af-5ec7-4f74-a785-04c5bbf4de42" + }, + { + "routeId": "L112", + "platformId": "U66Z1", + "id": "d36b1512-0b03-4ca0-9b77-fd9df61ae5d6" + }, + { + "routeId": "L234", + "platformId": "U66Z1", + "id": "208d4ce6-fd4c-4dff-a85a-3055d9820bd8" + }, + { + "routeId": "L112", + "platformId": "U66Z2", + "id": "106109a9-6404-4e68-85d1-e027664ac63c" + }, + { + "routeId": "L234", + "platformId": "U66Z2", + "id": "0d00b795-84d6-48ce-a58a-78921335fe35" + }, + { + "routeId": "L542", + "platformId": "U6701Z1", + "id": "bf5bfb22-87d2-42a9-a3ab-dcaed8594e32" + }, + { + "routeId": "L538", + "platformId": "U6701Z1", + "id": "fdadd759-6ae0-4605-8af8-2ddca91402b7" + }, + { + "routeId": "L542", + "platformId": "U6701Z2", + "id": "97205608-25e4-4df4-9a13-23d8546b37b2" + }, + { + "routeId": "L538", + "platformId": "U6701Z2", + "id": "29402bc5-8f93-42b8-ab69-f979ca19d12a" + }, + { + "routeId": "L542", + "platformId": "U6702Z1", + "id": "d0bc1768-5fa1-4c52-a50e-45a166c3d592" + }, + { + "routeId": "L538", + "platformId": "U6702Z1", + "id": "4efe01da-cfad-46c3-b18d-2090b0861640" + }, + { + "routeId": "L22", + "platformId": "U670Z1", + "id": "e661c168-771e-46c3-8871-485741578ccb" + }, + { + "routeId": "L26", + "platformId": "U670Z1", + "id": "f2561108-4319-49ff-9f47-398456b2d3ad" + }, + { + "routeId": "L97", + "platformId": "U670Z1", + "id": "1cffff9f-60e3-4dcc-bfcd-0e4781754898" + }, + { + "routeId": "L22", + "platformId": "U670Z2", + "id": "43a6b61d-8176-42c4-9806-393c1badf6af" + }, + { + "routeId": "L26", + "platformId": "U670Z2", + "id": "0e39c390-ee25-434a-9f56-d6edac3462d2" + }, + { + "routeId": "L97", + "platformId": "U670Z2", + "id": "73f035c3-baa4-41f1-8417-5972514e1602" + }, + { + "routeId": "L177", + "platformId": "U670Z3", + "id": "095651d5-c5d1-4b97-b247-04fa7cee3cee" + }, + { + "routeId": "L177", + "platformId": "U670Z4", + "id": "8076fe79-796f-4046-8ab8-fa4a0c6f5a6d" + }, + { + "routeId": "L195", + "platformId": "U671Z1", + "id": "d5323569-e0c6-49e5-b218-773dd731b9ad" + }, + { + "routeId": "L195", + "platformId": "U671Z3", + "id": "b2681e2f-a92e-4a3d-a6b8-4d626319ea36" + }, + { + "routeId": "L188", + "platformId": "U671Z4", + "id": "385dce52-367d-4ffc-80c6-b814e56458a2" + }, + { + "routeId": "L553", + "platformId": "U6720Z1", + "id": "709fd33a-cbec-46b6-bdc1-3ab042cd1b5b" + }, + { + "routeId": "L553", + "platformId": "U6720Z2", + "id": "4119dc01-6be7-421d-a901-42e0ff7dcb0c" + }, + { + "routeId": "L598", + "platformId": "U6721Z1", + "id": "a3bfb776-1ef9-4469-bc4a-31c86102eaf5" + }, + { + "routeId": "L598", + "platformId": "U6721Z2", + "id": "7b34a357-5660-4890-af98-9a42febfe1b8" + }, + { + "routeId": "L139", + "platformId": "U672Z1", + "id": "7100d682-b5f9-45c8-9744-d6ffeef48379" + }, + { + "routeId": "L139", + "platformId": "U672Z2", + "id": "b324bc87-1b14-42bb-99f3-c7fea96f19a6" + }, + { + "routeId": "L101", + "platformId": "U673Z3", + "id": "c8a3495f-164e-4475-be65-3e99bae52b09" + }, + { + "routeId": "L138", + "platformId": "U673Z3", + "id": "86e52021-beec-415b-b570-e2b8c1a112ab" + }, + { + "routeId": "L175", + "platformId": "U673Z3", + "id": "48258a56-eb1f-4295-b0d0-f74954f191ba" + }, + { + "routeId": "L177", + "platformId": "U673Z3", + "id": "9c7a0dbe-acd9-4529-88bb-0f6c2a84357d" + }, + { + "routeId": "L195", + "platformId": "U673Z3", + "id": "40c9259a-86b9-43e6-a78e-252896542307" + }, + { + "routeId": "L101", + "platformId": "U673Z4", + "id": "f2897ba9-eedf-42f4-ba99-3b5fcd6a8267" + }, + { + "routeId": "L138", + "platformId": "U673Z4", + "id": "90b71c1b-87e4-41f2-9458-155ff3f54bc1" + }, + { + "routeId": "L175", + "platformId": "U673Z4", + "id": "39678daa-1523-4299-8540-af770509502e" + }, + { + "routeId": "L177", + "platformId": "U673Z4", + "id": "a485daa5-a41f-4712-bb0d-3c6c48819cca" + }, + { + "routeId": "L195", + "platformId": "U673Z4", + "id": "26330c17-0edf-4d1a-9885-7ab6960e058e" + }, + { + "routeId": "L542", + "platformId": "U6741Z1", + "id": "1bddd729-da40-473c-bbd2-838df9e1b7c7" + }, + { + "routeId": "L542", + "platformId": "U6741Z2", + "id": "ab37d7a2-000c-43fb-ad9e-bd3497995958" + }, + { + "routeId": "L542", + "platformId": "U6743Z1", + "id": "18d333c8-9445-4b19-b39a-6478f2af4677" + }, + { + "routeId": "L538", + "platformId": "U6743Z1", + "id": "af704c2e-78c2-43b5-ac40-c1f3bffe84ad" + }, + { + "routeId": "L542", + "platformId": "U6743Z2", + "id": "fe4ce967-2828-4d2c-a7d3-699bb258bbe4" + }, + { + "routeId": "L538", + "platformId": "U6743Z2", + "id": "566e4c10-770f-4740-b1bd-c4d7bc32a404" + }, + { + "routeId": "L542", + "platformId": "U6744Z1", + "id": "5422815f-a940-4010-b23e-dbcd64e15d1e" + }, + { + "routeId": "L538", + "platformId": "U6744Z1", + "id": "d99a057b-c353-4903-9ad8-4656a2132d45" + }, + { + "routeId": "L542", + "platformId": "U6744Z2", + "id": "dc27dbd9-95aa-4311-9572-c57984662347" + }, + { + "routeId": "L538", + "platformId": "U6744Z2", + "id": "f8bd4660-8d63-467d-a668-ef4beb02a447" + }, + { + "routeId": "L538", + "platformId": "U6745Z1", + "id": "7a88ba52-d35c-4419-acec-396203768006" + }, + { + "routeId": "L538", + "platformId": "U6745Z2", + "id": "fd5437f3-d491-4137-95fc-fc5e26d2cba8" + }, + { + "routeId": "L538", + "platformId": "U6746Z51", + "id": "634a8b51-76fe-445a-be81-34d6f3ba95a7" + }, + { + "routeId": "L705", + "platformId": "U6747Z2", + "id": "47500d0d-f408-4198-9fab-7b11175af8e3" + }, + { + "routeId": "L138", + "platformId": "U674Z1", + "id": "45b1acb4-0120-4adb-b265-89cc600f0745" + }, + { + "routeId": "L138", + "platformId": "U674Z2", + "id": "2aa22b5a-d81d-4901-9278-f90c70aeba65" + }, + { + "routeId": "L705", + "platformId": "U6752Z2", + "id": "b75a516e-d9b3-40d2-bfaf-846708b1c191" + }, + { + "routeId": "L705", + "platformId": "U6753Z2", + "id": "be54f165-0f00-4fe9-a4ed-b790da45c97d" + }, + { + "routeId": "L705", + "platformId": "U6754Z2", + "id": "852f9d34-ce4c-4235-8740-dde2fe1191a8" + }, + { + "routeId": "L550", + "platformId": "U6757Z1", + "id": "0add3990-2df0-443d-8a3e-639d6c67936e" + }, + { + "routeId": "L550", + "platformId": "U6757Z2", + "id": "1829b4b8-036d-4211-bda8-59ace91be07f" + }, + { + "routeId": "L550", + "platformId": "U6758Z1", + "id": "565e74d2-b839-46e0-8944-9c238ce26618" + }, + { + "routeId": "L550", + "platformId": "U6758Z2", + "id": "2edca1d7-01d3-4c68-ad89-36a446d2ce76" + }, + { + "routeId": "L406", + "platformId": "U6759Z1", + "id": "c3153c14-c49d-4af9-af50-d88e8bdbb544" + }, + { + "routeId": "L2843", + "platformId": "U6759Z1", + "id": "6ddcd08f-218d-43e8-9f7f-e270b181f078" + }, + { + "routeId": "L2849", + "platformId": "U6759Z1", + "id": "4a52b8f2-bdfb-4c09-be49-97a9baf1640a" + }, + { + "routeId": "L792", + "platformId": "U6759Z1", + "id": "3b6631a1-599c-43f0-8240-e77354715a1d" + }, + { + "routeId": "L487", + "platformId": "U6759Z1", + "id": "a5539b2b-5891-49e0-b457-7270168108d5" + }, + { + "routeId": "L1760", + "platformId": "U6759Z1", + "id": "9c0186ec-46d0-4e1a-8f4d-568b3a68835f" + }, + { + "routeId": "L794", + "platformId": "U6759Z1", + "id": "814b8ef1-513c-4658-a19f-933964de0840" + }, + { + "routeId": "L406", + "platformId": "U6759Z2", + "id": "68514b67-43bb-455f-a997-ebcfb0a875f8" + }, + { + "routeId": "L2843", + "platformId": "U6759Z2", + "id": "1b6abe13-c7d3-4718-bbbe-e926bbc7e1f6" + }, + { + "routeId": "L2849", + "platformId": "U6759Z2", + "id": "b3d1431e-e96d-43b3-9e7b-feefbac3a62d" + }, + { + "routeId": "L794", + "platformId": "U6759Z2", + "id": "c36ec7a8-eeb2-440c-9236-974ac43df656" + }, + { + "routeId": "L2848", + "platformId": "U6759Z2", + "id": "58dd0e72-acd3-4f3b-a308-0b3b94b3fadf" + }, + { + "routeId": "L792", + "platformId": "U6759Z2", + "id": "94676671-461b-4f8a-b7d8-169abc4e31ae" + }, + { + "routeId": "L1760", + "platformId": "U6759Z2", + "id": "44c88149-1284-4bdf-9fa0-a2c565a359e5" + }, + { + "routeId": "L1", + "platformId": "U675Z1", + "id": "86921e8f-235a-4a45-82f8-148320452350" + }, + { + "routeId": "L3", + "platformId": "U675Z1", + "id": "4628403c-4a73-4b38-946d-f93e704e317e" + }, + { + "routeId": "L10", + "platformId": "U675Z1", + "id": "0f9337a7-f6ed-4968-9c8a-2e73cd5f2194" + }, + { + "routeId": "L17", + "platformId": "U675Z1", + "id": "8a9ca1d2-dae8-4235-8c56-03e1379d3fc7" + }, + { + "routeId": "L25", + "platformId": "U675Z1", + "id": "f58a8bf6-06c0-430f-b1fa-5ed9b8f176f2" + }, + { + "routeId": "L93", + "platformId": "U675Z1", + "id": "f6d5a6e6-cb35-44dd-9f7b-cbcb8727ada8" + }, + { + "routeId": "L95", + "platformId": "U675Z1", + "id": "470b8232-1d02-479f-8379-8bf8e0154704" + }, + { + "routeId": "L905", + "platformId": "U675Z10", + "id": "65a30ddc-88e1-4277-a98c-c8b35683a796" + }, + { + "routeId": "L993", + "platformId": "U675Z101", + "id": "fcc17a44-c529-41a7-8503-7c6083532682" + }, + { + "routeId": "L993", + "platformId": "U675Z102", + "id": "7fb81c34-f2e9-4c82-858d-1e2cb7301d0e" + }, + { + "routeId": "L905", + "platformId": "U675Z11", + "id": "10acf3c1-d8f6-4894-bd24-f09e46495257" + }, + { + "routeId": "L958", + "platformId": "U675Z11", + "id": "c13a86b4-fe31-42c8-abd8-72c6eb3ae144" + }, + { + "routeId": "L371", + "platformId": "U675Z12", + "id": "cd9abe6e-1bbf-40b9-841c-7402781d54b0" + }, + { + "routeId": "L374", + "platformId": "U675Z12", + "id": "d48b868b-b064-4364-98a6-d699369153a4" + }, + { + "routeId": "L1", + "platformId": "U675Z2", + "id": "cf08c5d5-510d-4cbc-9c0a-c6fc3260f564" + }, + { + "routeId": "L3", + "platformId": "U675Z2", + "id": "bc390acf-1d8e-4c71-8843-652c39003521" + }, + { + "routeId": "L10", + "platformId": "U675Z2", + "id": "4f8d1cd0-0368-426f-b5e6-cb719b3c89ab" + }, + { + "routeId": "L17", + "platformId": "U675Z2", + "id": "d1b42444-c75d-4e69-b7d9-740e8fb00d8e" + }, + { + "routeId": "L25", + "platformId": "U675Z2", + "id": "488e917b-88b0-4e76-a082-1d08309aa416" + }, + { + "routeId": "L93", + "platformId": "U675Z2", + "id": "ad17fc83-fa91-44ab-ad34-166c340dd74f" + }, + { + "routeId": "L95", + "platformId": "U675Z2", + "id": "afb8253a-ca2f-4b1a-9135-5510cadee90d" + }, + { + "routeId": "L152", + "platformId": "U675Z3", + "id": "e4dd77c9-0651-438d-bace-073463a81ad2" + }, + { + "routeId": "L177", + "platformId": "U675Z3", + "id": "91aeb22e-afb8-4b2d-b9a3-8c5db1004231" + }, + { + "routeId": "L200", + "platformId": "U675Z3", + "id": "d93c1d88-bd1c-4309-a89c-6fd8c5670559" + }, + { + "routeId": "L102", + "platformId": "U675Z4", + "id": "51ec722a-6ee0-4f26-99ff-02a02f63c7ea" + }, + { + "routeId": "L144", + "platformId": "U675Z4", + "id": "6f67e1f2-488e-410e-a56d-1e5688c96f85" + }, + { + "routeId": "L162", + "platformId": "U675Z4", + "id": "3446bf83-dfc8-4a93-9ae3-0aaaef33599e" + }, + { + "routeId": "L145", + "platformId": "U675Z4", + "id": "4c8ba0df-3b27-4433-bfcc-339529d0a869" + }, + { + "routeId": "L169", + "platformId": "U675Z4", + "id": "1a1f11b4-df4a-4381-8171-6ae3d0b5cbbe" + }, + { + "routeId": "L913", + "platformId": "U675Z4", + "id": "1d705d21-9880-46fb-b27b-c1f8a1ba878a" + }, + { + "routeId": "L370", + "platformId": "U675Z5", + "id": "9af9674e-0fee-4068-b496-4902fae4e8a4" + }, + { + "routeId": "L373", + "platformId": "U675Z5", + "id": "83f799a5-2ffd-4daa-b8f6-923d926a6fc5" + }, + { + "routeId": "L370", + "platformId": "U675Z6", + "id": "e4f64442-f82a-4441-9917-3b1e5a267d74" + }, + { + "routeId": "L371", + "platformId": "U675Z6", + "id": "aa44e13c-0ce9-4c8e-9650-5f55c973a941" + }, + { + "routeId": "L374", + "platformId": "U675Z6", + "id": "a637d641-d9f6-4d37-9507-9329382edf2f" + }, + { + "routeId": "L373", + "platformId": "U675Z6", + "id": "0d07c266-1c95-4285-a3a3-8a56d41f189f" + }, + { + "routeId": "L958", + "platformId": "U675Z6", + "id": "afacd438-8245-4a78-b611-25170bef8e44" + }, + { + "routeId": "L144", + "platformId": "U675Z7", + "id": "84968309-7b27-41ce-8f4e-4f3736472776" + }, + { + "routeId": "L162", + "platformId": "U675Z7", + "id": "9c7d7d9a-8d60-4b0d-ac0f-9ecd24da149d" + }, + { + "routeId": "L145", + "platformId": "U675Z7", + "id": "83f5bc91-bb43-48ca-bcf7-30d31e526ae8" + }, + { + "routeId": "L169", + "platformId": "U675Z7", + "id": "18ebee4d-e53e-4bc1-82d3-5c1585cf9333" + }, + { + "routeId": "L200", + "platformId": "U675Z7", + "id": "9f38de35-2575-4ab1-afe9-da871ea1d1f4" + }, + { + "routeId": "L905", + "platformId": "U675Z7", + "id": "405c1646-32a0-4bbe-9d45-16afb2066f68" + }, + { + "routeId": "L102", + "platformId": "U675Z8", + "id": "96a282a6-eb7d-4faa-8079-a933c41c73ed" + }, + { + "routeId": "L152", + "platformId": "U675Z8", + "id": "2159bed3-aa3e-4559-80b8-bdfd358e3049" + }, + { + "routeId": "L177", + "platformId": "U675Z8", + "id": "4601f4f4-4675-40ab-a519-31d70757328d" + }, + { + "routeId": "L913", + "platformId": "U675Z8", + "id": "8a9e9f84-8637-436d-934e-97e043473b93" + }, + { + "routeId": "L162", + "platformId": "U675Z9", + "id": "2c4ef575-0946-484e-bcc0-9553b4c31248" + }, + { + "routeId": "L145", + "platformId": "U675Z9", + "id": "e201fe8d-d268-4ab3-b7ae-df13ece9a2d1" + }, + { + "routeId": "L169", + "platformId": "U675Z9", + "id": "842dc74e-b442-42ea-8c95-a9cdf875578a" + }, + { + "routeId": "L913", + "platformId": "U675Z9", + "id": "74e9d421-ef55-4ffc-98a0-dacc129c3b30" + }, + { + "routeId": "L458", + "platformId": "U6760Z1", + "id": "1fddb696-fa4a-4818-bc7a-7c5d35ce72a0" + }, + { + "routeId": "L550", + "platformId": "U6760Z1", + "id": "2eda7b87-2c30-4d01-874e-83e55afecbef" + }, + { + "routeId": "L2854", + "platformId": "U6760Z1", + "id": "4c6490ad-8a13-45c2-87da-5568a4923fe0" + }, + { + "routeId": "L453", + "platformId": "U6760Z1", + "id": "6fccaccb-45fb-4e5d-a9df-ff3358090f84" + }, + { + "routeId": "L458", + "platformId": "U6760Z2", + "id": "ac1b2c94-aa96-4659-9c72-f1a42f670027" + }, + { + "routeId": "L2854", + "platformId": "U6760Z2", + "id": "76f26103-0c1d-4f1e-a773-35e546e29fc3" + }, + { + "routeId": "L453", + "platformId": "U6760Z2", + "id": "042c5884-d06b-4866-9fb5-9582469f7da5" + }, + { + "routeId": "L451", + "platformId": "U6766Z1", + "id": "7e4252c6-f2b8-4b96-bc30-a813ae8b0634" + }, + { + "routeId": "L451", + "platformId": "U6766Z2", + "id": "69a3d6cc-208b-4405-a79f-7d1e29c02e7b" + }, + { + "routeId": "L451", + "platformId": "U6767Z1", + "id": "43bd0d87-91f7-406c-903e-e94723ad9143" + }, + { + "routeId": "L454", + "platformId": "U6767Z2", + "id": "c894c253-4143-409c-8dc2-3ea5eda5c749" + }, + { + "routeId": "L451", + "platformId": "U6769Z1", + "id": "81c47936-852c-4ce2-b73d-3561960d36d3" + }, + { + "routeId": "L451", + "platformId": "U6769Z2", + "id": "b1ae87d3-cf6f-4810-872e-8be5da411122" + }, + { + "routeId": "L10", + "platformId": "U676Z1", + "id": "66b21abe-e189-4417-9ff4-d63352641ebe" + }, + { + "routeId": "L93", + "platformId": "U676Z1", + "id": "c7b24410-ed67-4251-8ec9-aabc0d6b758e" + }, + { + "routeId": "L10", + "platformId": "U676Z2", + "id": "5b46e0e3-5c23-494e-8391-030846b5e60c" + }, + { + "routeId": "L93", + "platformId": "U676Z2", + "id": "aefd598f-9bc9-4cfe-806b-c6445e81b267" + }, + { + "routeId": "L451", + "platformId": "U6770Z1", + "id": "2d210051-b59f-4aaf-89b5-bf6e160faf36" + }, + { + "routeId": "L451", + "platformId": "U6770Z2", + "id": "ffa70243-4cd4-4b74-98e7-bdef3b41eca1" + }, + { + "routeId": "L453", + "platformId": "U6775Z1", + "id": "b129e968-6691-423f-9f5c-7b0c753f6507" + }, + { + "routeId": "L453", + "platformId": "U6775Z2", + "id": "9bf30e07-5a8f-4870-a712-3cd4c0a4dcf8" + }, + { + "routeId": "L453", + "platformId": "U6776Z1", + "id": "6a05db45-9987-4417-8bf9-2356bdc5aa71" + }, + { + "routeId": "L453", + "platformId": "U6776Z2", + "id": "7b92bfd2-15d8-45ed-8379-468a55e6b8b9" + }, + { + "routeId": "L125", + "platformId": "U677Z1", + "id": "25e834b9-c8f0-4c7e-95d6-49ec88f6ca1e" + }, + { + "routeId": "L181", + "platformId": "U677Z1", + "id": "907e525e-88fb-4ac6-8eb5-e0cf6b84f393" + }, + { + "routeId": "L183", + "platformId": "U677Z1", + "id": "6b75bd33-a6c0-4760-99ae-3fb29073cd97" + }, + { + "routeId": "L125", + "platformId": "U677Z2", + "id": "8ba425cb-cda4-4820-88b9-9de55aa9eae6" + }, + { + "routeId": "L181", + "platformId": "U677Z2", + "id": "5d2713c0-0cf9-4222-9642-e34fe22f920f" + }, + { + "routeId": "L183", + "platformId": "U677Z2", + "id": "c45d38d5-a9fb-47cb-a5f2-49222833e4e6" + }, + { + "routeId": "L458", + "platformId": "U6784Z1", + "id": "58fda727-13af-4d41-b6d4-42a343856119" + }, + { + "routeId": "L550", + "platformId": "U6784Z1", + "id": "1e8f7277-d8a9-4e43-8f40-157836357b84" + }, + { + "routeId": "L2854", + "platformId": "U6784Z1", + "id": "776bfffe-194e-42df-89c1-e83c6be68216" + }, + { + "routeId": "L458", + "platformId": "U6784Z2", + "id": "b05c6e21-b60c-46ce-b5d5-4a158a1488e4" + }, + { + "routeId": "L2854", + "platformId": "U6784Z2", + "id": "b217ce31-70f6-4e77-88f3-c5d0af0c501f" + }, + { + "routeId": "L550", + "platformId": "U6784Z2", + "id": "f525ca5b-cc32-4aab-8ce9-29fa720dc202" + }, + { + "routeId": "L550", + "platformId": "U6785Z1", + "id": "dba76baf-7ed5-43f7-b375-66c4f5bb2d43" + }, + { + "routeId": "L550", + "platformId": "U6785Z2", + "id": "35d24eb8-f5f1-44de-b1b2-63e0004c38ef" + }, + { + "routeId": "L458", + "platformId": "U6785Z3", + "id": "1f5f9a6a-f1e2-45c9-a131-81fcb0598d9b" + }, + { + "routeId": "L550", + "platformId": "U6785Z3", + "id": "31b5d193-a7f5-4419-ae85-af3d4a6ef489" + }, + { + "routeId": "L2854", + "platformId": "U6785Z3", + "id": "1ac60c78-3720-40f2-bb8f-69f31757a726" + }, + { + "routeId": "L458", + "platformId": "U6785Z4", + "id": "3f84cc1b-1230-415b-9eea-dc73ee964d4f" + }, + { + "routeId": "L2854", + "platformId": "U6785Z4", + "id": "ed10378a-1f0b-4b54-b270-67fedc0479c5" + }, + { + "routeId": "L453", + "platformId": "U6786Z1", + "id": "fbd293b2-64d5-46db-9f6a-7fbf62d0d499" + }, + { + "routeId": "L453", + "platformId": "U6786Z2", + "id": "db197c50-3558-4750-8ea2-aeb7df02f34b" + }, + { + "routeId": "L458", + "platformId": "U6787Z1", + "id": "4287ba58-367f-4deb-a8e2-ee76cd658119" + }, + { + "routeId": "L550", + "platformId": "U6787Z1", + "id": "35e4cb70-753d-4965-8f7f-43a37e2c81a5" + }, + { + "routeId": "L2854", + "platformId": "U6787Z1", + "id": "740e0a1a-8569-4aff-8ebd-0a73f7e558a4" + }, + { + "routeId": "L458", + "platformId": "U6787Z2", + "id": "9f084353-b068-41d2-a44e-efb2065db322" + }, + { + "routeId": "L2854", + "platformId": "U6787Z2", + "id": "2e712c6f-d347-4d3c-9a17-d94f733a9bf1" + }, + { + "routeId": "L458", + "platformId": "U6788Z1", + "id": "c9cced96-e8c6-44e8-8331-6b0ad3b0b721" + }, + { + "routeId": "L550", + "platformId": "U6788Z1", + "id": "52bc7676-7819-44d5-99bc-67d39aafa9a0" + }, + { + "routeId": "L2854", + "platformId": "U6788Z1", + "id": "3d9df6e8-2c04-4c7b-a61f-31f716a5d8c0" + }, + { + "routeId": "L453", + "platformId": "U6788Z1", + "id": "ed8a682a-e4e4-4ef0-89cb-9f3bf6ca9768" + }, + { + "routeId": "L458", + "platformId": "U6788Z2", + "id": "c1bef3c2-1190-4ce8-902e-8ccc79ff9110" + }, + { + "routeId": "L2854", + "platformId": "U6788Z2", + "id": "daf1eab7-b295-46cb-a59a-8943a6f4a536" + }, + { + "routeId": "L453", + "platformId": "U6788Z2", + "id": "6d75ca82-e78a-4dd2-8444-e3e0a9d18e9c" + }, + { + "routeId": "L562", + "platformId": "U6789Z1", + "id": "48479d9b-f1bb-4293-a504-b9e6aaf18198" + }, + { + "routeId": "L562", + "platformId": "U6789Z2", + "id": "103acb70-901c-4fbc-b664-52f1e86b9d9c" + }, + { + "routeId": "L136", + "platformId": "U678Z1", + "id": "e36524cc-fa70-4d57-84c9-17dc4e700f2c" + }, + { + "routeId": "L913", + "platformId": "U678Z1", + "id": "36761d4a-c96e-4bf0-a941-1fe6358495cd" + }, + { + "routeId": "L136", + "platformId": "U678Z2", + "id": "a2fd9450-4c3b-4c46-b4fd-3c5d18497296" + }, + { + "routeId": "L913", + "platformId": "U678Z2", + "id": "198936f2-4256-4055-8853-1e6ca4769815" + }, + { + "routeId": "L174", + "platformId": "U679Z1", + "id": "6a68aa7b-081b-499a-a5f9-1970db9699d3" + }, + { + "routeId": "L902", + "platformId": "U679Z1", + "id": "1214db67-941b-4ab3-b619-1905280bd754" + }, + { + "routeId": "L352", + "platformId": "U679Z1", + "id": "5f868845-9ba7-4402-8339-537b800e7a03" + }, + { + "routeId": "L301", + "platformId": "U679Z1", + "id": "af690cbb-a373-465e-b5c6-22b6cfc6f85f" + }, + { + "routeId": "L174", + "platformId": "U679Z2", + "id": "0372272f-f5e3-4c0b-b68a-a42db842b2ae" + }, + { + "routeId": "L902", + "platformId": "U679Z2", + "id": "da1193e6-ac91-41bd-8952-ef5520297f76" + }, + { + "routeId": "L352", + "platformId": "U679Z2", + "id": "34a57fb3-fca0-4e88-bf21-b0338cc4dbb6" + }, + { + "routeId": "L301", + "platformId": "U679Z2", + "id": "db38dad1-c7c9-462c-8d85-e541527b0e05" + }, + { + "routeId": "L13", + "platformId": "U67Z2", + "id": "1c67ca4f-37fa-461c-a418-b90be32fa958" + }, + { + "routeId": "L22", + "platformId": "U67Z2", + "id": "039e472d-4b24-4e0a-a25f-af0adf18096b" + }, + { + "routeId": "L97", + "platformId": "U67Z2", + "id": "4e8419a0-e8af-44d6-be6c-c2ac123b796d" + }, + { + "routeId": "L99", + "platformId": "U67Z2", + "id": "ac1f88c0-84b1-4a10-b1ff-6cf73d75886b" + }, + { + "routeId": "L13", + "platformId": "U67Z4", + "id": "f4106628-a1b2-40a7-934e-f6cd2e4ab774" + }, + { + "routeId": "L22", + "platformId": "U67Z7", + "id": "5b77455b-da29-4b63-9fea-1bb6f0c0edce" + }, + { + "routeId": "L97", + "platformId": "U67Z7", + "id": "d2446798-1448-4d96-84f0-1f87c7a6cbfe" + }, + { + "routeId": "L99", + "platformId": "U67Z7", + "id": "04848195-317b-46a3-afeb-a4fc16218793" + }, + { + "routeId": "L124", + "platformId": "U67Z7", + "id": "712814a7-bb42-45f6-9af5-685521d21335" + }, + { + "routeId": "L139", + "platformId": "U67Z7", + "id": "7584d9f8-efa1-4191-b223-c6edb40130a2" + }, + { + "routeId": "L6", + "platformId": "U680Z1", + "id": "180f0694-9ed3-4fea-8148-cff42bdb2bd2" + }, + { + "routeId": "L7", + "platformId": "U680Z1", + "id": "d7035e94-e1a3-421a-bc48-5dfc81040756" + }, + { + "routeId": "L19", + "platformId": "U680Z1", + "id": "076506dc-256a-41e6-8457-e56392e06303" + }, + { + "routeId": "L22", + "platformId": "U680Z1", + "id": "d48a8bcc-36ca-495c-8b19-0532850f9eb4" + }, + { + "routeId": "L95", + "platformId": "U680Z1", + "id": "6b2eb3b1-26f5-4c87-8175-d8191894bb46" + }, + { + "routeId": "L97", + "platformId": "U680Z1", + "id": "e9119e43-81a4-4718-87a6-9d9c90305b49" + }, + { + "routeId": "L99", + "platformId": "U680Z1", + "id": "4c165a7d-fc19-4635-893d-a9fa8ab1a8ef" + }, + { + "routeId": "L6", + "platformId": "U680Z2", + "id": "f3469e6b-7632-434a-bc9e-58326c8763b2" + }, + { + "routeId": "L7", + "platformId": "U680Z2", + "id": "94b03a4a-8b64-4686-af8c-a73fb455bf11" + }, + { + "routeId": "L19", + "platformId": "U680Z2", + "id": "e7321064-0052-4a29-a94f-f300a2eaff5b" + }, + { + "routeId": "L22", + "platformId": "U680Z2", + "id": "24a89466-7502-4d8e-80f3-ca31057e2c45" + }, + { + "routeId": "L95", + "platformId": "U680Z2", + "id": "deb23048-a169-49a7-a131-4dd5056c96c4" + }, + { + "routeId": "L97", + "platformId": "U680Z2", + "id": "08d24a45-4083-4deb-9b10-42af08e460b9" + }, + { + "routeId": "L99", + "platformId": "U680Z2", + "id": "e94738e9-9483-47d2-b8fe-565616d6b82d" + }, + { + "routeId": "L135", + "platformId": "U680Z3", + "id": "ae0cd7c1-9445-4980-a1fa-e43ba0f0681d" + }, + { + "routeId": "L136", + "platformId": "U680Z3", + "id": "407ef5d5-ed30-431b-b440-e9d2d0a793c5" + }, + { + "routeId": "L150", + "platformId": "U680Z3", + "id": "bc8ed7f0-fe7b-40f2-ba64-0acafc0124e9" + }, + { + "routeId": "L213", + "platformId": "U680Z3", + "id": "2c28bd31-2101-4148-a52c-1101d091bb52" + }, + { + "routeId": "L913", + "platformId": "U680Z3", + "id": "bcaf5ead-0356-4b78-a073-c6c9bd2fdee0" + }, + { + "routeId": "L1217", + "platformId": "U680Z301", + "id": "5fdece12-da0c-49a7-9445-9899a908da7b" + }, + { + "routeId": "L1249", + "platformId": "U680Z301", + "id": "48a8c7c9-249c-445c-89f8-eb88ba1880e7" + }, + { + "routeId": "L1309", + "platformId": "U680Z301", + "id": "e53fb074-f399-4a75-a06c-7bd251f7c237" + }, + { + "routeId": "L135", + "platformId": "U680Z4", + "id": "43a235c5-ec4c-472d-af24-a761af4d2edd" + }, + { + "routeId": "L136", + "platformId": "U680Z4", + "id": "a2e86f51-4703-4635-b046-fb46333ef09c" + }, + { + "routeId": "L150", + "platformId": "U680Z4", + "id": "55341972-793e-4867-b964-4bb069a02178" + }, + { + "routeId": "L213", + "platformId": "U680Z4", + "id": "32bdce15-6c3d-4249-844f-c1cf37b9a70a" + }, + { + "routeId": "L913", + "platformId": "U680Z4", + "id": "1dfbbe4f-222f-49eb-b66a-88c745d1d706" + }, + { + "routeId": "L562", + "platformId": "U6811Z1", + "id": "12f93867-301c-424d-8407-7ef7838469e6" + }, + { + "routeId": "L562", + "platformId": "U6811Z2", + "id": "a2fd1025-14f7-4de3-b18e-2c72b56bb58e" + }, + { + "routeId": "L760", + "platformId": "U6814Z1", + "id": "7d3b0256-f3b2-4f7f-8460-3ee30a62c8f3" + }, + { + "routeId": "L560", + "platformId": "U6814Z1", + "id": "e26ceac0-b6f1-43e5-986e-f49f76632e73" + }, + { + "routeId": "L760", + "platformId": "U6814Z2", + "id": "239062f5-2b31-4fa5-add5-f7072ce3ca49" + }, + { + "routeId": "L560", + "platformId": "U6814Z2", + "id": "2d8c083d-d8be-4e4d-8068-ab0a9adf3c39" + }, + { + "routeId": "L760", + "platformId": "U6816Z1", + "id": "06239029-c861-49b0-b381-6d56ad69f2a7" + }, + { + "routeId": "L560", + "platformId": "U6816Z1", + "id": "80f32813-2968-492a-a4c6-5a40e002e522" + }, + { + "routeId": "L760", + "platformId": "U6816Z2", + "id": "691f7714-113c-4e40-8cf6-5771d3b82341" + }, + { + "routeId": "L560", + "platformId": "U6816Z2", + "id": "2d14529a-9f3a-4a18-8755-d08e81759c80" + }, + { + "routeId": "L760", + "platformId": "U6818Z1", + "id": "756e1a72-496d-452c-b383-159120bcf5c8" + }, + { + "routeId": "L560", + "platformId": "U6818Z1", + "id": "aa683209-3000-4a47-808b-0c6a9e9ba164" + }, + { + "routeId": "L760", + "platformId": "U6818Z2", + "id": "81674799-1c8a-48d8-a7be-bfaed8005004" + }, + { + "routeId": "L560", + "platformId": "U6818Z2", + "id": "7514ef59-e2df-4484-a5d5-0b5533cc2acf" + }, + { + "routeId": "L560", + "platformId": "U6820Z1", + "id": "3d559196-8df1-439b-b7b7-0c805a3e190f" + }, + { + "routeId": "L560", + "platformId": "U6820Z2", + "id": "1e7a8f3f-5b17-4715-9677-8fae8b238713" + }, + { + "routeId": "L760", + "platformId": "U6821Z1", + "id": "b7c506ea-3503-482a-ac16-5a3ccbf7f31f" + }, + { + "routeId": "L760", + "platformId": "U6821Z2", + "id": "2c4c1e96-6cb1-480b-a465-537e1e6219a2" + }, + { + "routeId": "L560", + "platformId": "U6821Z2", + "id": "98e10727-9543-437d-9219-d7dcfa864f48" + }, + { + "routeId": "L305", + "platformId": "U6823Z3", + "id": "d148008e-d99f-4c17-acd4-997aa91fe66b" + }, + { + "routeId": "L760", + "platformId": "U6823Z3", + "id": "904d57c4-7fef-4352-b35f-ef194843b588" + }, + { + "routeId": "L305", + "platformId": "U6823Z4", + "id": "656ce482-24c8-475c-9487-31e414a537e9" + }, + { + "routeId": "L760", + "platformId": "U6823Z4", + "id": "84d4eb95-c104-4dcd-a30c-c9bed0e4a0fd" + }, + { + "routeId": "L560", + "platformId": "U6824Z2", + "id": "1faa5b3d-cef2-40d5-b688-6f5b0f17c7a1" + }, + { + "routeId": "L560", + "platformId": "U6825Z1", + "id": "ffc1f9c0-cccd-4361-8d7b-be99843b5dcd" + }, + { + "routeId": "L560", + "platformId": "U6825Z2", + "id": "a79098b4-a96e-447d-a551-1b25bd04ebbf" + }, + { + "routeId": "L560", + "platformId": "U6826Z2", + "id": "1dc7f156-6f64-40b3-ad7a-5d45fae31b35" + }, + { + "routeId": "L560", + "platformId": "U6827Z1", + "id": "e896dfb6-b94f-4e8c-881d-77f0489b2560" + }, + { + "routeId": "L560", + "platformId": "U6828Z2", + "id": "974fae4f-d09f-41b7-a2ae-ffc4332bb211" + }, + { + "routeId": "L305", + "platformId": "U6829Z1", + "id": "9f30e98f-fdfb-41f2-b4a5-3b7f1490ab92" + }, + { + "routeId": "L760", + "platformId": "U6829Z1", + "id": "f09b87bd-c99e-41c7-bc65-a72b58135fd1" + }, + { + "routeId": "L560", + "platformId": "U6829Z1", + "id": "f66147c8-f63f-41bf-b19c-262f2b18ec68" + }, + { + "routeId": "L305", + "platformId": "U6829Z2", + "id": "7996eb64-3f0a-4670-b226-fa3cecffbf1c" + }, + { + "routeId": "L760", + "platformId": "U6829Z2", + "id": "d75acf2e-4526-43cf-b24c-b2cc03fb701f" + }, + { + "routeId": "L560", + "platformId": "U6829Z2", + "id": "cfaecebf-2edb-4761-9f9d-177957b849a7" + }, + { + "routeId": "L120", + "platformId": "U682Z2", + "id": "fe55c51d-b57f-43bc-bc1d-f62e2cb38de0" + }, + { + "routeId": "L120", + "platformId": "U682Z3", + "id": "65327ca9-c012-4336-9cb0-bb67b1a8e1bd" + }, + { + "routeId": "L305", + "platformId": "U6830Z1", + "id": "d99fc797-adc5-4382-8e4a-1f1f5eaff138" + }, + { + "routeId": "L760", + "platformId": "U6830Z1", + "id": "707ae221-7f63-4f95-86b2-5cc3f06c6b59" + }, + { + "routeId": "L305", + "platformId": "U6830Z2", + "id": "aa80cdca-107e-4bae-b409-5969850301a2" + }, + { + "routeId": "L760", + "platformId": "U6830Z2", + "id": "6b5af1fb-1610-414f-bbf5-b6f189e27d58" + }, + { + "routeId": "L560", + "platformId": "U6831Z1", + "id": "4fdedf2a-55b2-48b0-be0b-3b3241c63f62" + }, + { + "routeId": "L560", + "platformId": "U6831Z2", + "id": "ceea5a32-95cc-468c-bb6a-59d89ea1d8a6" + }, + { + "routeId": "L560", + "platformId": "U6833Z1", + "id": "7df5d08f-8884-45f9-8a94-b4f72b9aec53" + }, + { + "routeId": "L151", + "platformId": "U683Z1", + "id": "21645390-c60d-4a83-8d33-2ae86f1b04b3" + }, + { + "routeId": "L201", + "platformId": "U683Z1", + "id": "e214a7fe-35fb-4ca6-abf6-cdbc0be7815d" + }, + { + "routeId": "L911", + "platformId": "U683Z1", + "id": "b834b196-6890-4508-8f71-38804d2c6c20" + }, + { + "routeId": "L151", + "platformId": "U683Z2", + "id": "a90dd13b-ac55-4aa0-bf14-23c0197fa0bd" + }, + { + "routeId": "L201", + "platformId": "U683Z2", + "id": "8f223299-c8cb-42ea-9103-bf3e23047b24" + }, + { + "routeId": "L911", + "platformId": "U683Z2", + "id": "70bd8fb9-0df7-49dc-b538-4a58b89d08c9" + }, + { + "routeId": "L760", + "platformId": "U6843Z1", + "id": "d634f748-6d9d-4385-b98f-53bf3f2a4802" + }, + { + "routeId": "L560", + "platformId": "U6843Z1", + "id": "2fc09828-86d8-4be0-aa84-1066b1e1b6c9" + }, + { + "routeId": "L760", + "platformId": "U6843Z2", + "id": "865e3d07-bb1a-47d1-b2b2-8ad414ffc547" + }, + { + "routeId": "L560", + "platformId": "U6843Z2", + "id": "06bbc3bf-0e91-4e07-81c6-ea3357bc867a" + }, + { + "routeId": "L908", + "platformId": "U684Z1", + "id": "af85b861-febc-4a53-8815-2fd2919e74ad" + }, + { + "routeId": "L212", + "platformId": "U684Z1", + "id": "3d1501c0-c291-49ae-8be9-b21fe27a7245" + }, + { + "routeId": "L221", + "platformId": "U684Z1", + "id": "1a3d4cb7-939c-46e5-964b-e8ebd868f43f" + }, + { + "routeId": "L303", + "platformId": "U684Z1", + "id": "699208b8-95b8-424b-961d-bda90ce86f1e" + }, + { + "routeId": "L908", + "platformId": "U684Z2", + "id": "be8171d8-b600-4770-8081-2515bf9a1805" + }, + { + "routeId": "L212", + "platformId": "U684Z2", + "id": "7909bf89-c2ed-4963-942f-08228bf4db90" + }, + { + "routeId": "L221", + "platformId": "U684Z2", + "id": "6c3435cc-d97c-428b-90db-8d6261905ab2" + }, + { + "routeId": "L303", + "platformId": "U684Z2", + "id": "58206a45-cf13-4c9a-b72e-798d9cd3ade5" + }, + { + "routeId": "L404", + "platformId": "U6851Z1", + "id": "50ccaf30-13db-4946-be6e-7eb26793c3fd" + }, + { + "routeId": "L404", + "platformId": "U6851Z2", + "id": "74bf8cc6-d925-4771-a951-bc7b9c2c5fde" + }, + { + "routeId": "L404", + "platformId": "U6852Z1", + "id": "f3d44e9b-e54c-4926-8130-51596cc5b535" + }, + { + "routeId": "L404", + "platformId": "U6852Z2", + "id": "e732446e-01e0-4029-8ca1-273ecea0e31d" + }, + { + "routeId": "L404", + "platformId": "U6853Z1", + "id": "3f728503-b4e2-48fb-8928-e0210a26093e" + }, + { + "routeId": "L404", + "platformId": "U6853Z2", + "id": "16f30d6d-2c08-4ea5-9dbd-1eab8931e445" + }, + { + "routeId": "L992", + "platformId": "U685Z101", + "id": "4da6eaf5-f6e4-475b-966f-cd0af918f52b" + }, + { + "routeId": "L992", + "platformId": "U685Z102", + "id": "36d6075d-5e80-4fb7-945b-ac851a21adec" + }, + { + "routeId": "L904", + "platformId": "U685Z13", + "id": "d7f89eb8-c3f3-4256-b04b-8279623638ad" + }, + { + "routeId": "L149", + "platformId": "U685Z2", + "id": "a687198a-3a90-41a4-ba9a-4f8a170c4c60" + }, + { + "routeId": "L149", + "platformId": "U685Z3", + "id": "a2081a3f-7d49-46ad-b350-fc429eb6df66" + }, + { + "routeId": "L904", + "platformId": "U685Z4", + "id": "ae5555a9-6540-4fb7-a06c-6916567195f8" + }, + { + "routeId": "L404", + "platformId": "U6865Z1", + "id": "e6bc02a5-36b3-4031-a49d-ae84531c1b7f" + }, + { + "routeId": "L404", + "platformId": "U6865Z2", + "id": "74c7ec67-ccd4-4537-8323-10043c3cd632" + }, + { + "routeId": "L404", + "platformId": "U6866Z1", + "id": "a352e11e-7d01-488e-96a7-0f131dca47b8" + }, + { + "routeId": "L404", + "platformId": "U6866Z2", + "id": "4fa48452-0e35-47d5-a826-81a8b079e308" + }, + { + "routeId": "L404", + "platformId": "U6867Z1", + "id": "6fd5c143-7f5d-4f6b-af59-2eebd9b1dd51" + }, + { + "routeId": "L908", + "platformId": "U686Z1", + "id": "126c2e4b-a07f-46c7-a73d-4fa15fb33268" + }, + { + "routeId": "L212", + "platformId": "U686Z1", + "id": "00d9e2d1-7ad0-4a6d-9f00-a693c4625452" + }, + { + "routeId": "L221", + "platformId": "U686Z1", + "id": "285845c9-fb8f-4a4f-8fa3-34a3296f180e" + }, + { + "routeId": "L303", + "platformId": "U686Z1", + "id": "25a13507-a612-45fa-991c-4d55d572949c" + }, + { + "routeId": "L908", + "platformId": "U686Z2", + "id": "970408f6-b7ac-4c5b-8dcb-081cbe2b7716" + }, + { + "routeId": "L212", + "platformId": "U686Z2", + "id": "74c995e9-4734-486e-97e2-910f92aa8bcf" + }, + { + "routeId": "L221", + "platformId": "U686Z2", + "id": "929975cf-44ea-432a-85f1-c0c43276b957" + }, + { + "routeId": "L303", + "platformId": "U686Z2", + "id": "3e328281-c246-402e-9e40-14cdbef7a48b" + }, + { + "routeId": "L214", + "platformId": "U687Z1", + "id": "c75aee4e-0251-4b50-9afc-235661cc5ee5" + }, + { + "routeId": "L214", + "platformId": "U687Z2", + "id": "052fbbcd-c891-4516-b65c-7eda567c033f" + }, + { + "routeId": "L306", + "platformId": "U687Z3", + "id": "69695504-b7fa-4286-ba2d-c11c46f9e366" + }, + { + "routeId": "L957", + "platformId": "U687Z3", + "id": "aa1c5e7e-789d-4e25-b684-1811be491bc3" + }, + { + "routeId": "L306", + "platformId": "U687Z4", + "id": "9bff0e3e-6885-4fbf-b06f-f59dd55036af" + }, + { + "routeId": "L957", + "platformId": "U687Z4", + "id": "8e999e4d-aa62-4d2a-ab91-d6154c42ea61" + }, + { + "routeId": "L404", + "platformId": "U6884Z1", + "id": "68d35d2a-0455-49cf-bee6-7ec785c2d35c" + }, + { + "routeId": "L404", + "platformId": "U6884Z2", + "id": "6d0c9aa4-49a2-4402-8474-4ff0ef6f3dfb" + }, + { + "routeId": "L572", + "platformId": "U6888Z1", + "id": "cb908937-ff90-49e0-8f45-1c3896811ea1" + }, + { + "routeId": "L404", + "platformId": "U6888Z1", + "id": "834f7bc4-86ff-4870-8031-5b886b8d2330" + }, + { + "routeId": "L572", + "platformId": "U6888Z2", + "id": "fac9d6e6-5891-458d-9454-e18ed1164e40" + }, + { + "routeId": "L404", + "platformId": "U6888Z2", + "id": "310d14bc-e70e-4b26-82c2-fc863fbe5c08" + }, + { + "routeId": "L572", + "platformId": "U6889Z1", + "id": "93fb9f0b-33e3-4465-b42c-a5fae3e5d9c1" + }, + { + "routeId": "L572", + "platformId": "U6889Z2", + "id": "ecd68599-f6a3-4d60-8a20-55bf503835cf" + }, + { + "routeId": "L162", + "platformId": "U688Z1", + "id": "53a610de-b7e8-4f70-8c87-989b0c11de87" + }, + { + "routeId": "L145", + "platformId": "U688Z1", + "id": "3be4e6bf-0804-4908-981d-0e7ec132c8b8" + }, + { + "routeId": "L169", + "platformId": "U688Z1", + "id": "92602d41-c5c7-4f4b-9a19-b18805d2d8c5" + }, + { + "routeId": "L913", + "platformId": "U688Z1", + "id": "4e0304a9-a50b-4b59-a483-4b5b8ef2416f" + }, + { + "routeId": "L162", + "platformId": "U688Z2", + "id": "eee02828-0ebc-48bf-8a1b-3031bdd48d91" + }, + { + "routeId": "L145", + "platformId": "U688Z2", + "id": "cfb46eba-dbfb-4104-a29f-531a3f8d02e8" + }, + { + "routeId": "L169", + "platformId": "U688Z2", + "id": "c60702f9-4c59-49c2-997f-6b445cc77958" + }, + { + "routeId": "L913", + "platformId": "U688Z2", + "id": "8e02e3d8-93bf-4ced-86de-1a8472181457" + }, + { + "routeId": "L572", + "platformId": "U6890Z1", + "id": "1d72f9ab-17fa-4668-810c-3a7c80fb59e0" + }, + { + "routeId": "L572", + "platformId": "U6890Z2", + "id": "2328e710-d211-4227-befb-0379d1369150" + }, + { + "routeId": "L572", + "platformId": "U6892Z1", + "id": "7f7e9cc9-790f-4710-b591-2df76b3ebab6" + }, + { + "routeId": "L572", + "platformId": "U6892Z2", + "id": "cfd360a1-98f9-4e91-94c5-47fbb5437f26" + }, + { + "routeId": "L572", + "platformId": "U6893Z1", + "id": "47251772-e736-4cc9-bfbc-b06ccfac42c3" + }, + { + "routeId": "L572", + "platformId": "U6894Z1", + "id": "574652a0-da86-4bff-8a7c-6b9a5b55c20d" + }, + { + "routeId": "L572", + "platformId": "U6894Z2", + "id": "eb4ac11f-406d-4e18-af5b-f69fb5f9b021" + }, + { + "routeId": "L572", + "platformId": "U6895Z1", + "id": "f3e77619-4afe-4e0f-a18e-689701079983" + }, + { + "routeId": "L572", + "platformId": "U6895Z2", + "id": "06716d09-d5a6-4a6a-a444-506290594fcd" + }, + { + "routeId": "L572", + "platformId": "U6896Z1", + "id": "330ea6ec-bf6d-46b6-8616-fc884b0327c8" + }, + { + "routeId": "L572", + "platformId": "U6896Z2", + "id": "249980c8-6794-465d-a852-058babdab796" + }, + { + "routeId": "L572", + "platformId": "U6897Z1", + "id": "de5a4575-4e23-4872-b81c-4d200811af66" + }, + { + "routeId": "L572", + "platformId": "U6898Z1", + "id": "389859a9-fa8e-4940-94cd-6d1e864ce458" + }, + { + "routeId": "L572", + "platformId": "U6898Z2", + "id": "cacc3eba-2708-4860-bc4b-04239884e444" + }, + { + "routeId": "L572", + "platformId": "U6899Z1", + "id": "db15fc4d-8189-4877-8232-ab88bf2c4373" + }, + { + "routeId": "L572", + "platformId": "U6899Z2", + "id": "890265e7-f5a6-433a-9d35-c69d17b9e446" + }, + { + "routeId": "L3", + "platformId": "U689Z1", + "id": "21385f4e-de10-4929-960e-f58208f9f613" + }, + { + "routeId": "L8", + "platformId": "U689Z1", + "id": "3c2ba081-a02c-4f0a-8fc8-de44569bb777" + }, + { + "routeId": "L12", + "platformId": "U689Z1", + "id": "5e933075-e2c2-4717-a316-0dae991531fc" + }, + { + "routeId": "L92", + "platformId": "U689Z1", + "id": "833408f4-1d09-4068-816e-8c76421ba98f" + }, + { + "routeId": "L94", + "platformId": "U689Z1", + "id": "161cfb41-f772-4241-b888-9ae089f50569" + }, + { + "routeId": "L992", + "platformId": "U689Z101", + "id": "38b5c742-c732-4ea3-abc7-7e4405bbea19" + }, + { + "routeId": "L992", + "platformId": "U689Z102", + "id": "41967118-801d-4f77-b8d3-04142468185f" + }, + { + "routeId": "L993", + "platformId": "U689Z121", + "id": "3d9a8af8-57ea-4843-b494-22119c3c91b9" + }, + { + "routeId": "L993", + "platformId": "U689Z122", + "id": "ae442b12-ba9b-4558-8f19-aae380b27807" + }, + { + "routeId": "L3", + "platformId": "U689Z2", + "id": "3a07bd08-bf65-4436-982e-18b6872e7df3" + }, + { + "routeId": "L8", + "platformId": "U689Z2", + "id": "75612e6e-5e25-44d2-80cc-06cab8570606" + }, + { + "routeId": "L12", + "platformId": "U689Z2", + "id": "9feebc73-486e-43ec-b136-c043a0246129" + }, + { + "routeId": "L92", + "platformId": "U689Z2", + "id": "d7d4b50d-9773-4398-9887-2ec813ee61db" + }, + { + "routeId": "L94", + "platformId": "U689Z2", + "id": "f57c103a-5c4c-45b4-bd0d-00be335ad0af" + }, + { + "routeId": "L133", + "platformId": "U689Z3", + "id": "36913bb2-b5d8-447b-9e98-4f6f0a34dd04" + }, + { + "routeId": "L175", + "platformId": "U689Z3", + "id": "1176a496-93e0-443a-813d-0c1808968268" + }, + { + "routeId": "L207", + "platformId": "U689Z3", + "id": "1d16b390-c123-4505-8eb0-8aaf1bf4fc45" + }, + { + "routeId": "L908", + "platformId": "U689Z3", + "id": "8a8281a1-8798-46ea-be7e-f3c59f19ec1c" + }, + { + "routeId": "L909", + "platformId": "U689Z3", + "id": "70113cd5-fe27-435c-ac44-655053a786ba" + }, + { + "routeId": "L194", + "platformId": "U689Z3", + "id": "dc9c898a-38df-44d9-afbf-41c83fe429fb" + }, + { + "routeId": "L133", + "platformId": "U689Z6", + "id": "3dc9ed01-4f9a-4f18-a438-b6aff8d94f45" + }, + { + "routeId": "L135", + "platformId": "U689Z6", + "id": "f6b287b4-52b1-4934-ad1e-e64b4fd75c88" + }, + { + "routeId": "L175", + "platformId": "U689Z6", + "id": "b842e427-0320-42d8-9394-d14522b550d3" + }, + { + "routeId": "L207", + "platformId": "U689Z6", + "id": "0604891d-6b91-4e78-9f22-e4bb8365c084" + }, + { + "routeId": "L908", + "platformId": "U689Z6", + "id": "21ee3e74-dbd3-4861-b568-66d206182205" + }, + { + "routeId": "L909", + "platformId": "U689Z6", + "id": "a0cfa1bb-87e8-472f-a1db-3358e109de84" + }, + { + "routeId": "L135", + "platformId": "U689Z7", + "id": "5f542d98-c03b-450c-9db2-664e99919b5a" + }, + { + "routeId": "L194", + "platformId": "U689Z8", + "id": "16eee06a-7ffd-41b2-b7dc-5e8bef62007a" + }, + { + "routeId": "L15", + "platformId": "U68Z1", + "id": "2959b9dc-32d6-4957-8751-40414c73a16a" + }, + { + "routeId": "L17", + "platformId": "U68Z1", + "id": "603c0a87-1027-47f3-94c0-e406af6f9e73" + }, + { + "routeId": "L27", + "platformId": "U68Z1", + "id": "441d8122-e409-4266-a9b3-3bacc8fee76d" + }, + { + "routeId": "L93", + "platformId": "U68Z1", + "id": "dafca7bf-9d50-4438-84b2-2e639c5e4253" + }, + { + "routeId": "L15", + "platformId": "U68Z2", + "id": "0a757ca9-a21b-47d0-8ecc-80c421b7bf50" + }, + { + "routeId": "L17", + "platformId": "U68Z2", + "id": "3b401303-a9e5-41b0-a058-42dbf269d3db" + }, + { + "routeId": "L27", + "platformId": "U68Z2", + "id": "2f655338-c1e3-4d0c-b68b-bd9b7049ea90" + }, + { + "routeId": "L93", + "platformId": "U68Z2", + "id": "7df8dcfe-c375-444c-82fe-cc8ef4caa0fe" + }, + { + "routeId": "L572", + "platformId": "U6900Z1", + "id": "761109eb-e26e-4cbb-9ad7-9eb5b932fe77" + }, + { + "routeId": "L572", + "platformId": "U6900Z2", + "id": "75dd1f8b-29c3-443e-a52f-241bdfccf0da" + }, + { + "routeId": "L572", + "platformId": "U6901Z1", + "id": "992c9183-cbb1-4c53-90d8-8b75cd4f4ce0" + }, + { + "routeId": "L576", + "platformId": "U6901Z1", + "id": "3b0a97c4-31e5-4b1c-8226-758df1c21258" + }, + { + "routeId": "L572", + "platformId": "U6902Z1", + "id": "3fe23c58-4cfd-40f3-a1c3-63ed114e6134" + }, + { + "routeId": "L572", + "platformId": "U6902Z2", + "id": "1db04489-92ad-453a-b9f6-cac10f616e85" + }, + { + "routeId": "L572", + "platformId": "U6903Z1", + "id": "4c8ded20-87c4-479a-b138-bf2d051d7d29" + }, + { + "routeId": "L572", + "platformId": "U6903Z2", + "id": "86f63817-148a-4c32-b82d-d6de77bf069f" + }, + { + "routeId": "L572", + "platformId": "U6904Z1", + "id": "fc953f55-c415-4dce-b21e-fcce96d91739" + }, + { + "routeId": "L572", + "platformId": "U6904Z2", + "id": "7938cc37-c231-4ddf-87e8-7ee6440ed2a4" + }, + { + "routeId": "L572", + "platformId": "U6905Z1", + "id": "11a72bef-8258-48be-b2b8-4a7f1ce5eb73" + }, + { + "routeId": "L572", + "platformId": "U6905Z2", + "id": "6ba4eabe-73ad-4847-8b15-c6d99f563778" + }, + { + "routeId": "L576", + "platformId": "U6906Z1", + "id": "cc59e263-a80d-49e2-b761-76c68e547819" + }, + { + "routeId": "L576", + "platformId": "U6906Z2", + "id": "216749ff-8955-4751-86c5-422a1a2f0b1b" + }, + { + "routeId": "L576", + "platformId": "U6907Z1", + "id": "fc7329ca-8a1b-44c4-9b12-a6c1a616d6f2" + }, + { + "routeId": "L576", + "platformId": "U6907Z2", + "id": "07ec54a5-e2b4-465f-9e24-4566b75b243a" + }, + { + "routeId": "L576", + "platformId": "U6908Z1", + "id": "6f4397a5-70e5-4962-87fe-6c5a2abb6ac8" + }, + { + "routeId": "L576", + "platformId": "U6908Z2", + "id": "df0de0eb-3456-41e2-b8ae-ccad829cf746" + }, + { + "routeId": "L576", + "platformId": "U6909Z1", + "id": "db159be0-bf19-4a49-942d-018b02da09fa" + }, + { + "routeId": "L576", + "platformId": "U6909Z2", + "id": "7184ea66-690a-4c93-a3e7-90a91c6a14f6" + }, + { + "routeId": "L16", + "platformId": "U690Z1", + "id": "6f534420-4f77-489b-88fc-5ccce56095b0" + }, + { + "routeId": "L19", + "platformId": "U690Z1", + "id": "b23a1291-de7d-40e7-8dc8-9a77f04dbb39" + }, + { + "routeId": "L95", + "platformId": "U690Z1", + "id": "05426df9-02ad-4ad5-ba30-b34bd93e6838" + }, + { + "routeId": "L16", + "platformId": "U690Z2", + "id": "d4e366d3-4291-4d5d-a846-b0c839e0c106" + }, + { + "routeId": "L19", + "platformId": "U690Z2", + "id": "d4fc27e6-31e4-454e-b63e-b26f7d9398ff" + }, + { + "routeId": "L95", + "platformId": "U690Z2", + "id": "d62f0cb9-fdab-4fd2-95ec-497fb785f070" + }, + { + "routeId": "L576", + "platformId": "U6910Z1", + "id": "4b38bebb-276b-4d96-815a-e6c33436f3d2" + }, + { + "routeId": "L576", + "platformId": "U6910Z2", + "id": "ec6f4922-1f9c-45a5-8553-0eae9e23b98e" + }, + { + "routeId": "L576", + "platformId": "U6911Z3", + "id": "7d806ec6-c446-4fa6-9116-597bb2811881" + }, + { + "routeId": "L576", + "platformId": "U6911Z4", + "id": "e03409b2-8538-4f98-8333-de06a401a43f" + }, + { + "routeId": "L576", + "platformId": "U6914Z1", + "id": "03bbab40-5319-4b14-b1c9-092acada6063" + }, + { + "routeId": "L576", + "platformId": "U6914Z2", + "id": "d48cf07b-ab04-4da9-9ce4-5893daa5d893" + }, + { + "routeId": "L317", + "platformId": "U6918Z1", + "id": "2ea7a955-34b0-434c-92bf-3ca5d0bd4beb" + }, + { + "routeId": "L420", + "platformId": "U6918Z1", + "id": "653ad37c-1237-4c43-bae7-d91b468fc76c" + }, + { + "routeId": "L361", + "platformId": "U6918Z1", + "id": "bc81864f-5a4e-4cb4-9ec2-776ad6c8d531" + }, + { + "routeId": "L392", + "platformId": "U6918Z1", + "id": "5da260f7-e93b-4da4-991a-6882f69ea3b5" + }, + { + "routeId": "L317", + "platformId": "U6918Z2", + "id": "261cccc3-b09e-483a-ab9a-78c96711db52" + }, + { + "routeId": "L392", + "platformId": "U6918Z2", + "id": "3fc3a19f-99ca-497e-b801-2b25bd3657b9" + }, + { + "routeId": "L420", + "platformId": "U6918Z2", + "id": "2e5e2e53-7bcc-4497-a25c-b7cbcd54408c" + }, + { + "routeId": "L361", + "platformId": "U6918Z2", + "id": "84dc544e-2a1d-4001-9671-66c61cbcf017" + }, + { + "routeId": "L576", + "platformId": "U6919Z1", + "id": "69ac78ff-78d8-46fb-a21a-5b9e05f27d68" + }, + { + "routeId": "L576", + "platformId": "U6919Z2", + "id": "8ef93d79-39c1-4f9e-abd6-3a00bda90517" + }, + { + "routeId": "L7", + "platformId": "U691Z1", + "id": "100894b8-8c9a-4005-8681-2bdede4d5530" + }, + { + "routeId": "L8", + "platformId": "U691Z1", + "id": "0b582139-dd06-4f4f-8830-9e53bf265428" + }, + { + "routeId": "L92", + "platformId": "U691Z1", + "id": "52d4ccbe-0a46-4828-8d8a-2d8a9fcefa9f" + }, + { + "routeId": "L7", + "platformId": "U691Z2", + "id": "4410511a-c064-4631-9c2e-f28800b7344c" + }, + { + "routeId": "L8", + "platformId": "U691Z2", + "id": "16bd4776-b050-401b-a21f-671c71f23bb0" + }, + { + "routeId": "L92", + "platformId": "U691Z2", + "id": "00fc5998-25f8-459a-800b-7fe9c7db5d08" + }, + { + "routeId": "L576", + "platformId": "U6920Z1", + "id": "22e70dc5-d59d-46ac-9309-a1f50ff4423d" + }, + { + "routeId": "L576", + "platformId": "U6920Z2", + "id": "afc04c0e-9530-4600-a8e1-47ecdaa815e9" + }, + { + "routeId": "L576", + "platformId": "U6923Z1", + "id": "40840a91-fabd-40ad-b95c-a533c759e26a" + }, + { + "routeId": "L576", + "platformId": "U6923Z2", + "id": "70b06d97-b086-4c88-8486-4ec97b637317" + }, + { + "routeId": "L576", + "platformId": "U6924Z1", + "id": "d8d017e2-ef99-460f-82dd-49da5b20d745" + }, + { + "routeId": "L576", + "platformId": "U6924Z2", + "id": "efa7ee36-5e7f-46a4-a6ac-789224315157" + }, + { + "routeId": "L576", + "platformId": "U6925Z1", + "id": "1d94f8bd-fec9-4719-9ff1-9ebfdc18735f" + }, + { + "routeId": "L576", + "platformId": "U6926Z1", + "id": "df80977c-18b0-4beb-8530-37416838f84c" + }, + { + "routeId": "L576", + "platformId": "U6926Z2", + "id": "64c9045c-2bb3-454b-97d7-11dca7de17b3" + }, + { + "routeId": "L576", + "platformId": "U6927Z1", + "id": "5f59f72f-6c1c-4481-8b30-8164c513c270" + }, + { + "routeId": "L576", + "platformId": "U6927Z2", + "id": "538cc459-0549-4828-820e-49c3bd690dcd" + }, + { + "routeId": "L576", + "platformId": "U6928Z1", + "id": "28cbe719-9b2a-4d40-88a0-e362ff3695fb" + }, + { + "routeId": "L576", + "platformId": "U6928Z2", + "id": "f113c4e3-c014-44b2-b760-caee8c629da9" + }, + { + "routeId": "L572", + "platformId": "U6929Z1", + "id": "d3a76f25-3490-48ed-8b3c-ae182aefd777" + }, + { + "routeId": "L576", + "platformId": "U6929Z1", + "id": "fafa2029-4b28-4ff7-8a67-cd72ea5cf39e" + }, + { + "routeId": "L404", + "platformId": "U6929Z1", + "id": "153977ce-25af-4327-bb04-5647ce09c5a0" + }, + { + "routeId": "L572", + "platformId": "U6929Z2", + "id": "ce10476b-407e-47fe-b3c7-584ccf8747a7" + }, + { + "routeId": "L576", + "platformId": "U6929Z2", + "id": "a1fd7b00-5619-4189-8935-4e13e1158fba" + }, + { + "routeId": "L404", + "platformId": "U6929Z2", + "id": "20fd1aa5-53d0-438f-89d8-ed76a3f78ed1" + }, + { + "routeId": "L1", + "platformId": "U692Z1", + "id": "66ac5407-f14f-46cf-aafb-5a5841518783" + }, + { + "routeId": "L8", + "platformId": "U692Z1", + "id": "f0327201-f272-4b21-a67a-e6a48906d852" + }, + { + "routeId": "L12", + "platformId": "U692Z1", + "id": "070e80a6-2b57-48de-8b0b-25d7ebce726c" + }, + { + "routeId": "L14", + "platformId": "U692Z1", + "id": "290c17de-9edf-4882-b8c4-284348b2e52c" + }, + { + "routeId": "L25", + "platformId": "U692Z1", + "id": "9769fef5-c1c3-4c3a-a422-9100b234c300" + }, + { + "routeId": "L26", + "platformId": "U692Z1", + "id": "25c02976-89f0-42f0-971e-5d7be6feeecc" + }, + { + "routeId": "L91", + "platformId": "U692Z1", + "id": "6896bc52-3f4a-48f2-b8c3-f7f286327d01" + }, + { + "routeId": "L96", + "platformId": "U692Z1", + "id": "5b0e6de4-e3a4-4e80-96fc-fef29571214f" + }, + { + "routeId": "L1", + "platformId": "U692Z2", + "id": "e5d3aff5-6bd0-4d19-ba0b-2260433458ba" + }, + { + "routeId": "L8", + "platformId": "U692Z2", + "id": "3cf7ea96-e410-4b7a-b5f4-3fe30ca18438" + }, + { + "routeId": "L12", + "platformId": "U692Z2", + "id": "7b52cda4-e771-4121-b4ec-3164d17a06a5" + }, + { + "routeId": "L14", + "platformId": "U692Z2", + "id": "6fe2b9f9-e56b-4a49-b76f-b3b4412ac6fa" + }, + { + "routeId": "L25", + "platformId": "U692Z2", + "id": "aec0f46f-6680-46f3-a42f-5662dffc94fe" + }, + { + "routeId": "L26", + "platformId": "U692Z2", + "id": "cebd637b-1265-4c6a-b218-48202e686748" + }, + { + "routeId": "L91", + "platformId": "U692Z2", + "id": "ec03f0ae-78f6-4563-8766-5e4464d2158b" + }, + { + "routeId": "L96", + "platformId": "U692Z2", + "id": "63c5e16d-a10d-487c-8db9-22eb7db3f12f" + }, + { + "routeId": "L909", + "platformId": "U692Z3", + "id": "9d302282-9231-44c2-93cc-c4e34422892f" + }, + { + "routeId": "L907", + "platformId": "U692Z4", + "id": "aa669878-d848-4264-a84b-69593e4d468e" + }, + { + "routeId": "L909", + "platformId": "U692Z4", + "id": "2b9311ba-9d0c-4dc1-b4c8-49dfe8f74acb" + }, + { + "routeId": "L176", + "platformId": "U693Z1", + "id": "178a73de-c292-45da-b80c-2e38ad50228d" + }, + { + "routeId": "L910", + "platformId": "U693Z1", + "id": "278f4e8c-e47f-47cf-be96-1514c35f1af2" + }, + { + "routeId": "L176", + "platformId": "U693Z2", + "id": "1799ed5e-752f-47d3-94f9-49ba8ff489a8" + }, + { + "routeId": "L910", + "platformId": "U693Z2", + "id": "abb3da32-3cea-485b-a0e5-a8cd83aae77e" + }, + { + "routeId": "L369", + "platformId": "U6941Z1", + "id": "5211db14-360e-4378-850c-c56466fbd756" + }, + { + "routeId": "L369", + "platformId": "U6941Z2", + "id": "dc522a5c-87ff-4245-a9ef-9d262f31fd34" + }, + { + "routeId": "L555", + "platformId": "U6942Z1", + "id": "a8840e2a-3d3b-476f-9db0-996150da9905" + }, + { + "routeId": "L535", + "platformId": "U6944Z1", + "id": "6818853b-54ec-4fa6-acc7-c64b80826dfe" + }, + { + "routeId": "L535", + "platformId": "U6944Z2", + "id": "451646dd-1cc0-47df-9639-09c195d4350e" + }, + { + "routeId": "L542", + "platformId": "U6946Z1", + "id": "64ce0ca6-6823-4952-bdef-df63d83aa57c" + }, + { + "routeId": "L538", + "platformId": "U6946Z1", + "id": "e6ea8e63-c94d-4c78-8644-457fd96135c2" + }, + { + "routeId": "L542", + "platformId": "U6946Z2", + "id": "ebb2813f-8815-468c-a009-9d46c494188d" + }, + { + "routeId": "L538", + "platformId": "U6946Z2", + "id": "2119336a-9f90-485f-93ef-efd18c41f363" + }, + { + "routeId": "L572", + "platformId": "U6947Z1", + "id": "daeac1c5-c71f-4137-b384-e90f856d89d6" + }, + { + "routeId": "L576", + "platformId": "U6947Z1", + "id": "fbf2bf29-6862-49cd-9770-df11442a3cc3" + }, + { + "routeId": "L404", + "platformId": "U6947Z1", + "id": "1bc27e51-a965-4e29-807a-2d6e18dce90b" + }, + { + "routeId": "L572", + "platformId": "U6947Z2", + "id": "682838c0-bc5c-49c6-a55e-f363ed4efde5" + }, + { + "routeId": "L576", + "platformId": "U6947Z2", + "id": "02f34c8a-6808-49e5-bc9a-431862185b8c" + }, + { + "routeId": "L404", + "platformId": "U6947Z2", + "id": "c423ce53-bdd3-4664-a4cf-2b6178edf2bd" + }, + { + "routeId": "L535", + "platformId": "U6948Z5", + "id": "7fdf11d8-9661-44b6-9fbe-30242c3e105c" + }, + { + "routeId": "L535", + "platformId": "U6948Z51", + "id": "df4b32c3-46b4-4dac-a179-942f32f5ad2b" + }, + { + "routeId": "L9", + "platformId": "U694Z1", + "id": "e261c433-7b7f-4fcd-93aa-ae9f811bce6f" + }, + { + "routeId": "L11", + "platformId": "U694Z1", + "id": "822bc625-e42f-43ad-8001-2276bd9430c2" + }, + { + "routeId": "L31", + "platformId": "U694Z1", + "id": "2aa6490d-03c7-40e6-b6ec-6a81d11134bd" + }, + { + "routeId": "L98", + "platformId": "U694Z1", + "id": "325c54d2-1eb4-4ff4-b568-04f79cf8e2b1" + }, + { + "routeId": "L9", + "platformId": "U694Z2", + "id": "9c51fd5a-e52e-4ae7-a409-d0b6c4946cbd" + }, + { + "routeId": "L11", + "platformId": "U694Z2", + "id": "e369de89-cfb5-431c-92f3-9f8c80c191ca" + }, + { + "routeId": "L31", + "platformId": "U694Z2", + "id": "b6bf6c8a-ebbe-45eb-96e2-d4cf556fd559" + }, + { + "routeId": "L98", + "platformId": "U694Z2", + "id": "86c258b8-ee9f-416b-ba4a-e9dc946cc646" + }, + { + "routeId": "L109", + "platformId": "U694Z3", + "id": "86be739b-26fc-4d11-8afd-8e2a39a06933" + }, + { + "routeId": "L177", + "platformId": "U694Z3", + "id": "d312ba0c-d73c-43a0-a3f3-28484409187a" + }, + { + "routeId": "L183", + "platformId": "U694Z3", + "id": "62e65f24-509a-4346-8635-c65ae878b7b8" + }, + { + "routeId": "L195", + "platformId": "U694Z3", + "id": "b8b2e6e4-8649-4f5d-b590-32567d57bdfd" + }, + { + "routeId": "L146", + "platformId": "U694Z3", + "id": "83231a6c-79b1-4e2e-9edc-d719139c10a3" + }, + { + "routeId": "L903", + "platformId": "U694Z3", + "id": "cb4f226c-956b-444b-aeeb-29506e5ad17a" + }, + { + "routeId": "L109", + "platformId": "U694Z4", + "id": "60b95838-0848-41b6-a226-5779d5f7916c" + }, + { + "routeId": "L177", + "platformId": "U694Z4", + "id": "86719ffb-8f92-45b9-846e-ff5809e06296" + }, + { + "routeId": "L183", + "platformId": "U694Z4", + "id": "5d646f97-390a-47f6-a836-36e39de1bd26" + }, + { + "routeId": "L195", + "platformId": "U694Z4", + "id": "bdbe4471-316e-4d1f-9ba8-505c7f26ff27" + }, + { + "routeId": "L146", + "platformId": "U694Z4", + "id": "731632c4-efb0-461d-ad79-29d4a282ba0d" + }, + { + "routeId": "L903", + "platformId": "U694Z4", + "id": "449b1c9a-1ceb-4e1a-958a-ebb179040acf" + }, + { + "routeId": "L341", + "platformId": "U6954Z1", + "id": "7bd8ca40-753d-49e9-96e9-1ad2ab163cd3" + }, + { + "routeId": "L341", + "platformId": "U6954Z2", + "id": "bd691047-223e-432e-842b-fb81558534cd" + }, + { + "routeId": "L333", + "platformId": "U6955Z1", + "id": "c78c5d4b-4b17-4d37-ab70-de3bf803d60f" + }, + { + "routeId": "L960", + "platformId": "U6955Z1", + "id": "4ed0a6bf-e2a9-4910-b52e-51086232e78a" + }, + { + "routeId": "L333", + "platformId": "U6955Z2", + "id": "2a71e77f-2453-495a-92d3-a3bba14cd408" + }, + { + "routeId": "L109", + "platformId": "U695Z1", + "id": "460238f1-69f0-4449-96ab-17f96e0f9964" + }, + { + "routeId": "L109", + "platformId": "U695Z2", + "id": "14ffc7fd-8278-4828-8b0b-be9966ecfc1a" + }, + { + "routeId": "L402", + "platformId": "U6962Z1", + "id": "91db3c70-3f7a-4675-ba89-f85d180aad70" + }, + { + "routeId": "L402", + "platformId": "U6962Z2", + "id": "28220473-4337-4969-b2c6-4993467ade4a" + }, + { + "routeId": "L169", + "platformId": "U696Z1", + "id": "9047d241-cf3a-4f84-a32b-3f07831ba1e6" + }, + { + "routeId": "L202", + "platformId": "U696Z1", + "id": "22cbb5e3-4fbe-4dac-aa26-3b811a9869bd" + }, + { + "routeId": "L169", + "platformId": "U696Z2", + "id": "206965af-f0dc-4de9-956e-1a1ef9d437f5" + }, + { + "routeId": "L202", + "platformId": "U696Z2", + "id": "ff97475c-4935-4559-af8b-850ecde0942c" + }, + { + "routeId": "L482", + "platformId": "U6976Z1", + "id": "a60d93fa-7418-4b50-8547-b58ff439739e" + }, + { + "routeId": "L482", + "platformId": "U6976Z2", + "id": "037fde00-5deb-4ea1-ac8f-346479ddcc4a" + }, + { + "routeId": "L482", + "platformId": "U6977Z1", + "id": "7f4e8503-abe1-475e-97d3-84ac417bc657" + }, + { + "routeId": "L482", + "platformId": "U6977Z2", + "id": "42a5b498-9d7d-4aac-81e3-1bec685ceee6" + }, + { + "routeId": "L11", + "platformId": "U697Z1", + "id": "49800847-92d2-4701-bf75-69d0188697d3" + }, + { + "routeId": "L14", + "platformId": "U697Z1", + "id": "f7a29341-86d1-4ffe-bad7-3308b4feced5" + }, + { + "routeId": "L96", + "platformId": "U697Z1", + "id": "9567f55a-5c79-46b2-a27f-f0eb762cc0cc" + }, + { + "routeId": "L11", + "platformId": "U697Z2", + "id": "9c7bb516-f9dc-4b00-9280-0017ebbb17a4" + }, + { + "routeId": "L14", + "platformId": "U697Z2", + "id": "8ba64f36-28a4-4e9d-b343-19b224c9e908" + }, + { + "routeId": "L96", + "platformId": "U697Z2", + "id": "7e0ebc77-c039-4e1f-bf56-18408e747d87" + }, + { + "routeId": "L118", + "platformId": "U697Z3", + "id": "26accd36-7b52-4b0c-af57-18e4a8ae7a86" + }, + { + "routeId": "L170", + "platformId": "U697Z3", + "id": "a1734aa2-983e-4194-8f46-17a3361f98d4" + }, + { + "routeId": "L135", + "platformId": "U697Z3", + "id": "37e5fad3-4820-4881-9085-4960c8e73213" + }, + { + "routeId": "L136", + "platformId": "U697Z3", + "id": "f687f8cf-7739-4a78-ab39-a4b7ad1fa8ec" + }, + { + "routeId": "L213", + "platformId": "U697Z3", + "id": "4aadf049-282d-496b-a0ec-1ade73a0ddb8" + }, + { + "routeId": "L905", + "platformId": "U697Z3", + "id": "dce1d924-8325-4f03-80fe-add366d0a7a7" + }, + { + "routeId": "L913", + "platformId": "U697Z3", + "id": "ba22217c-0d70-4588-ae3f-fc2a2ad0733e" + }, + { + "routeId": "L118", + "platformId": "U697Z4", + "id": "cfa431eb-0aa8-4e70-8d64-27a8012fcd3f" + }, + { + "routeId": "L170", + "platformId": "U697Z4", + "id": "4ebc5c31-f643-4d66-ace0-0302deac87fe" + }, + { + "routeId": "L905", + "platformId": "U697Z4", + "id": "ad50e8a1-8378-44a4-9dba-6372523552ad" + }, + { + "routeId": "L135", + "platformId": "U697Z5", + "id": "7862c8b9-2560-4ba3-9bf0-5264a641f403" + }, + { + "routeId": "L136", + "platformId": "U697Z5", + "id": "4f77a45b-fe3b-4257-9c2e-db740f44887c" + }, + { + "routeId": "L138", + "platformId": "U697Z5", + "id": "d08d5ea5-24c8-4ff3-9631-6d51721a41ba" + }, + { + "routeId": "L213", + "platformId": "U697Z5", + "id": "6b261556-5c4b-4fa5-b2f8-52fec5d459c8" + }, + { + "routeId": "L913", + "platformId": "U697Z5", + "id": "acbc311c-18c4-4e50-8a8b-ea392e50b0b6" + }, + { + "routeId": "L138", + "platformId": "U697Z6", + "id": "a916e680-1259-4467-8735-30b954293884" + }, + { + "routeId": "L138", + "platformId": "U697Z7", + "id": "8cccd8d8-58af-402a-803e-979709a4c313" + }, + { + "routeId": "L100", + "platformId": "U698Z1", + "id": "b53bda9d-0c15-4c9a-a3ec-7d9a172fabe6" + }, + { + "routeId": "L191", + "platformId": "U698Z1", + "id": "cb75540f-dcbd-41e6-af9c-ac6a7f669bc9" + }, + { + "routeId": "L910", + "platformId": "U698Z1", + "id": "c9e064d1-f92d-4e25-9436-9a6b01341f2e" + }, + { + "routeId": "L59", + "platformId": "U698Z1", + "id": "7ef5d850-b9f0-48a0-9978-dc86165ef796" + }, + { + "routeId": "L100", + "platformId": "U698Z2", + "id": "20026f8e-4f4c-437b-8cbe-3ad1866ea188" + }, + { + "routeId": "L191", + "platformId": "U698Z2", + "id": "f4234ac8-2ac4-4b4d-99d8-5c50f9957637" + }, + { + "routeId": "L910", + "platformId": "U698Z2", + "id": "35992c36-aaa3-48f9-a75e-ddee425976d8" + }, + { + "routeId": "L322", + "platformId": "U698Z2", + "id": "f60693b1-c86f-4ecd-ad15-3194662db50d" + }, + { + "routeId": "L324", + "platformId": "U698Z2", + "id": "5f82f7f8-7774-4f77-8855-a38faefd9672" + }, + { + "routeId": "L342", + "platformId": "U698Z2", + "id": "74c25f1e-b934-4e47-9d5f-f94d89f8e345" + }, + { + "routeId": "L388", + "platformId": "U698Z2", + "id": "7a697948-6014-41f8-9cb6-1a83d1033564" + }, + { + "routeId": "L429", + "platformId": "U698Z2", + "id": "ec562a81-c11d-4fd2-81e8-00271ad95d45" + }, + { + "routeId": "L323", + "platformId": "U698Z2", + "id": "4a98328b-3e17-4a7c-98b6-bba7b43ad674" + }, + { + "routeId": "L59", + "platformId": "U698Z2", + "id": "e6204904-4e01-4b1c-9197-148698376971" + }, + { + "routeId": "L322", + "platformId": "U698Z3", + "id": "36e334ee-1748-4bdc-946c-3ae38038ccff" + }, + { + "routeId": "L324", + "platformId": "U698Z3", + "id": "9c47da5e-9f55-476c-a55e-8af3d2b80bf3" + }, + { + "routeId": "L342", + "platformId": "U698Z3", + "id": "dad569eb-e62c-4d21-9955-7495a8e87701" + }, + { + "routeId": "L388", + "platformId": "U698Z3", + "id": "9be2d42c-3206-415f-9c59-e03243ff12a3" + }, + { + "routeId": "L429", + "platformId": "U698Z3", + "id": "13516467-fb99-4bd8-85a0-697a8fb92fb5" + }, + { + "routeId": "L323", + "platformId": "U698Z3", + "id": "49919da0-caa3-4321-8fb4-6afc4f7a6cd3" + }, + { + "routeId": "L176", + "platformId": "U699Z1", + "id": "f1269202-bd1e-4e44-8c6a-372cff318125" + }, + { + "routeId": "L191", + "platformId": "U699Z1", + "id": "6a74056e-7329-4623-8a6a-d3341dd54b5f" + }, + { + "routeId": "L910", + "platformId": "U699Z1", + "id": "1f079d92-a156-49da-b274-c6aa9d9838f4" + }, + { + "routeId": "L143", + "platformId": "U699Z12", + "id": "99435fac-9fbd-4480-b462-befb94d250e3" + }, + { + "routeId": "L176", + "platformId": "U699Z2", + "id": "721b83b4-82b6-404b-9d9f-1a9d1189eb39" + }, + { + "routeId": "L191", + "platformId": "U699Z2", + "id": "02a5ee8f-0897-40d9-8965-64706036c723" + }, + { + "routeId": "L910", + "platformId": "U699Z2", + "id": "e42a5f31-c1fc-4863-b501-edeb9df695af" + }, + { + "routeId": "L143", + "platformId": "U699Z3", + "id": "345f19ac-bb6f-4d8d-94e2-fb4e5a895841" + }, + { + "routeId": "L149", + "platformId": "U699Z3", + "id": "f2fd24bd-9941-4be7-9d13-8092617ba597" + }, + { + "routeId": "L149", + "platformId": "U699Z4", + "id": "7714c3f7-237c-4847-8d6c-a3b06cc80f4e" + }, + { + "routeId": "L133", + "platformId": "U69Z1", + "id": "0262b069-d6d7-463c-bdfa-7a78b7007f62" + }, + { + "routeId": "L136", + "platformId": "U69Z1", + "id": "cfae8009-e038-4507-aae7-ed6b2f78d331" + }, + { + "routeId": "L207", + "platformId": "U69Z1", + "id": "2ce207be-e22d-4be5-b8be-e2329a45039d" + }, + { + "routeId": "L908", + "platformId": "U69Z1", + "id": "c08fa8d2-7b6b-4fcf-b83c-f619c047a0cf" + }, + { + "routeId": "L909", + "platformId": "U69Z1", + "id": "ec3dc960-bad4-40cd-8e49-f8ef2532f1b3" + }, + { + "routeId": "L913", + "platformId": "U69Z1", + "id": "44d8521c-c918-49d7-8993-033118e9d921" + }, + { + "routeId": "L133", + "platformId": "U69Z2", + "id": "02055393-d771-43c7-865e-82fb287d43b8" + }, + { + "routeId": "L136", + "platformId": "U69Z2", + "id": "bab9ba5b-df3f-48d3-9402-df4e89c400af" + }, + { + "routeId": "L207", + "platformId": "U69Z2", + "id": "ecaf1961-e9a1-4330-8646-c7a89cd94b78" + }, + { + "routeId": "L908", + "platformId": "U69Z2", + "id": "fbe3c3f9-f47d-4680-aaeb-021796db784b" + }, + { + "routeId": "L909", + "platformId": "U69Z2", + "id": "7a270e56-8ab6-4774-8b11-f4a65d6a897b" + }, + { + "routeId": "L913", + "platformId": "U69Z2", + "id": "a711f0a0-99fb-40c5-bcca-be8be69abf2d" + }, + { + "routeId": "L126", + "platformId": "U6Z1", + "id": "05d3f01e-28bd-4905-8a8d-07a40c5fcb92" + }, + { + "routeId": "L906", + "platformId": "U6Z1", + "id": "11100430-c338-4b70-8a5f-e889c3f01a1f" + }, + { + "routeId": "L126", + "platformId": "U6Z2", + "id": "2bd917a3-241e-4371-9770-3e857b71d22b" + }, + { + "routeId": "L906", + "platformId": "U6Z2", + "id": "bcd23b60-8dbf-47b8-a84d-415d9ba8d613" + }, + { + "routeId": "L798", + "platformId": "U7002Z1", + "id": "986e904f-e61f-484f-9150-eb52c6bd1660" + }, + { + "routeId": "L406", + "platformId": "U7002Z1", + "id": "05fbee83-413e-4358-aa4b-290733daafde" + }, + { + "routeId": "L791", + "platformId": "U7002Z1", + "id": "04622fbd-9079-4777-a8e4-6ab198a26faa" + }, + { + "routeId": "L455", + "platformId": "U7002Z1", + "id": "55085d97-4d0e-41fc-b3c5-01624d51a295" + }, + { + "routeId": "L798", + "platformId": "U7002Z2", + "id": "5f1f3470-a4a5-4f49-a858-05abd4804426" + }, + { + "routeId": "L406", + "platformId": "U7002Z2", + "id": "7403d4fd-7687-4339-a552-6851ed3b32e8" + }, + { + "routeId": "L791", + "platformId": "U7002Z2", + "id": "0cdcb8ab-bd94-418c-ab9e-020ef6d053f9" + }, + { + "routeId": "L455", + "platformId": "U7002Z2", + "id": "67eddda0-83ff-4b48-a635-43fe8fa8efa2" + }, + { + "routeId": "L770", + "platformId": "U7004Z1", + "id": "b218ccf4-f3a0-496f-935e-b93920cf9b39" + }, + { + "routeId": "L796", + "platformId": "U7004Z1", + "id": "4308370d-d090-4290-991e-b54c3dd4bec6" + }, + { + "routeId": "L770", + "platformId": "U7004Z2", + "id": "1d7a4250-7949-4f8e-a03f-2b4a1ae3f7c6" + }, + { + "routeId": "L796", + "platformId": "U7004Z2", + "id": "227e4716-5310-4c76-a4ef-ab5f846b135b" + }, + { + "routeId": "L770", + "platformId": "U7005Z1", + "id": "2059e3f3-a40b-4704-855d-3f1c0cc7513e" + }, + { + "routeId": "L796", + "platformId": "U7005Z1", + "id": "52f92033-041f-4ae9-a23c-48c2aa192e42" + }, + { + "routeId": "L770", + "platformId": "U7005Z2", + "id": "0cc6ba91-c818-4619-93b6-38be82ca0d29" + }, + { + "routeId": "L796", + "platformId": "U7005Z2", + "id": "ba5580c2-5349-4d30-85d6-491b50eea073" + }, + { + "routeId": "L798", + "platformId": "U7006Z1", + "id": "7ebcc083-8e22-4d90-9a08-a6ed0a4652d9" + }, + { + "routeId": "L798", + "platformId": "U7006Z2", + "id": "5eb9b404-3d9d-44b6-a7ae-1c45c52f8b7f" + }, + { + "routeId": "L798", + "platformId": "U7007Z1", + "id": "541aa99f-2a00-4c25-a2a3-73703e19b09e" + }, + { + "routeId": "L798", + "platformId": "U7007Z2", + "id": "7ccca97d-36e0-412c-8fe0-df77b29dcd1e" + }, + { + "routeId": "L798", + "platformId": "U7008Z1", + "id": "b7cc8429-be0a-456e-95bd-8dfe2c0e16b8" + }, + { + "routeId": "L798", + "platformId": "U7008Z2", + "id": "62472714-3934-4279-a539-1bf74e0f8aee" + }, + { + "routeId": "L168", + "platformId": "U700Z1", + "id": "c1df2cc5-8e08-44a1-8c10-84d84cf1772d" + }, + { + "routeId": "L225", + "platformId": "U700Z1", + "id": "0dadb655-690a-4801-b322-2aca0f87e78c" + }, + { + "routeId": "L108", + "platformId": "U700Z2", + "id": "ff309a22-3a57-4199-ac6a-098b09d6d7d4" + }, + { + "routeId": "L168", + "platformId": "U700Z2", + "id": "45422348-f9a3-4853-a599-28d4260894a2" + }, + { + "routeId": "L168", + "platformId": "U700Z3", + "id": "dfabc190-aa9c-4712-82fc-f707d75fa081" + }, + { + "routeId": "L108", + "platformId": "U700Z4", + "id": "4ec280b8-a282-4a4f-9955-642b2ec9e615" + }, + { + "routeId": "L168", + "platformId": "U700Z4", + "id": "a7864756-c5a0-4b3b-a05c-f3c115590488" + }, + { + "routeId": "L316", + "platformId": "U7011Z1", + "id": "cfeed3e5-872b-4409-9ac2-95d65c80144a" + }, + { + "routeId": "L356", + "platformId": "U7011Z1", + "id": "7dd3832d-cb3c-41c4-a30b-cf104547daf4" + }, + { + "routeId": "L356", + "platformId": "U7011Z2", + "id": "4257cd6f-36bd-41e4-9d6c-e927eb9604d9" + }, + { + "routeId": "L316", + "platformId": "U7011Z2", + "id": "939d4bb0-ba20-4380-abf1-95ce8dd57c88" + }, + { + "routeId": "L798", + "platformId": "U7012Z1", + "id": "d22694cc-38c9-4125-9d2d-2f0eaff6d3ea" + }, + { + "routeId": "L406", + "platformId": "U7012Z1", + "id": "05407798-acb2-40b4-83bb-174b206bc58b" + }, + { + "routeId": "L791", + "platformId": "U7012Z1", + "id": "14feb35a-fd89-4f88-8862-b2ba1f1f7e17" + }, + { + "routeId": "L455", + "platformId": "U7012Z1", + "id": "baa4e98d-7b17-4d6c-8f95-00a50539d514" + }, + { + "routeId": "L798", + "platformId": "U7012Z2", + "id": "78cfe41b-f725-4d87-a5f9-21ccd9b564f9" + }, + { + "routeId": "L406", + "platformId": "U7012Z2", + "id": "21c7f1b5-8d7d-456c-b7f3-0fb50ac3b2bc" + }, + { + "routeId": "L791", + "platformId": "U7012Z2", + "id": "b308b7f8-a068-40d7-a446-51baa1d153a2" + }, + { + "routeId": "L455", + "platformId": "U7012Z2", + "id": "9b2ab287-0a7c-485b-98f8-47d542d885da" + }, + { + "routeId": "L798", + "platformId": "U7013Z1", + "id": "4365bc7a-5c05-42ea-883a-3f3916543e6a" + }, + { + "routeId": "L798", + "platformId": "U7013Z2", + "id": "ba0d73ee-ff88-4354-8f0f-1092584a63cc" + }, + { + "routeId": "L798", + "platformId": "U7014Z1", + "id": "1578f78c-5898-4a9e-8918-cfc96a0f7af6" + }, + { + "routeId": "L798", + "platformId": "U7014Z2", + "id": "463873ad-3883-4aac-9b29-bf6a42b5a122" + }, + { + "routeId": "L2846", + "platformId": "U7015Z1", + "id": "4df8f256-829e-4a35-8c52-ae0a38e68f03" + }, + { + "routeId": "L2844", + "platformId": "U7015Z1", + "id": "fbee4881-df18-4fcd-ae68-18768fee799f" + }, + { + "routeId": "L2846", + "platformId": "U7015Z2", + "id": "94bed05f-10ee-475c-8dff-f2eb7bf1af6e" + }, + { + "routeId": "L2844", + "platformId": "U7015Z2", + "id": "cee548b7-c175-47e1-b3d6-9ea46d3f870e" + }, + { + "routeId": "L2846", + "platformId": "U7016Z1", + "id": "a100b456-c451-4b7c-b8ce-0e345b561817" + }, + { + "routeId": "L2846", + "platformId": "U7016Z2", + "id": "eeebaeda-966f-445f-82fc-0b5fb34165b5" + }, + { + "routeId": "L2846", + "platformId": "U7017Z1", + "id": "632a8a5b-ee20-4a66-9a3f-8ac209574eaa" + }, + { + "routeId": "L2846", + "platformId": "U7017Z2", + "id": "34c36c04-516e-424c-b83e-92e0750a7d9a" + }, + { + "routeId": "L495", + "platformId": "U7019Z1", + "id": "bd98f887-f370-4ea2-83a6-3b86d9b9fe7a" + }, + { + "routeId": "L495", + "platformId": "U7019Z2", + "id": "1a398c81-b233-461a-a911-ce1b3f5b1782" + }, + { + "routeId": "L793", + "platformId": "U7021Z1", + "id": "faa42405-73e9-473e-8f9e-b73f187a7fb2" + }, + { + "routeId": "L793", + "platformId": "U7021Z2", + "id": "6cd16e6d-5e54-4a21-a525-76c4574977e5" + }, + { + "routeId": "L793", + "platformId": "U7022Z1", + "id": "dea1ea8d-cded-4e18-9899-ec6506061bce" + }, + { + "routeId": "L793", + "platformId": "U7022Z2", + "id": "19491033-a9b5-413c-8b93-fd84f5598c1c" + }, + { + "routeId": "L2844", + "platformId": "U7024Z2", + "id": "ebdb0a43-b4be-43e8-97a3-363825a24bb2" + }, + { + "routeId": "L2844", + "platformId": "U7025Z2", + "id": "896f4299-3b32-4753-8c2b-2271f6236e35" + }, + { + "routeId": "L480", + "platformId": "U7026Z1", + "id": "7c753ac8-c633-43a5-a9f5-45bcd84c91b6" + }, + { + "routeId": "L480", + "platformId": "U7026Z2", + "id": "510fd12a-bca1-4d8f-89fe-c1a0bb814dfa" + }, + { + "routeId": "L480", + "platformId": "U7027Z1", + "id": "45c3029d-bd64-450b-a477-e115337b2231" + }, + { + "routeId": "L480", + "platformId": "U7027Z2", + "id": "0beba84a-8836-417b-9bf1-84df08185ead" + }, + { + "routeId": "L514", + "platformId": "U7028Z1", + "id": "1c795c4c-b670-4d15-9854-961a886629da" + }, + { + "routeId": "L514", + "platformId": "U7028Z2", + "id": "ee66ff7b-6b45-43c0-8588-f693759c7a1e" + }, + { + "routeId": "L514", + "platformId": "U7029Z1", + "id": "beca3308-b329-44f4-9830-8994ab078996" + }, + { + "routeId": "L514", + "platformId": "U7029Z3", + "id": "568f0e73-fa7f-439f-8ad6-ebefe87e7965" + }, + { + "routeId": "L104", + "platformId": "U702Z1", + "id": "443bde48-cc6c-4d6f-aba2-d87362d71503" + }, + { + "routeId": "L172", + "platformId": "U702Z1", + "id": "33bca75c-5352-4b07-b299-31059667a814" + }, + { + "routeId": "L796", + "platformId": "U7032Z1", + "id": "e274db90-feb6-4c54-83e6-f929fbbbbb9f" + }, + { + "routeId": "L796", + "platformId": "U7032Z2", + "id": "d492ff1e-a069-4853-bc8e-e40031b51f46" + }, + { + "routeId": "L514", + "platformId": "U7033Z1", + "id": "64dbe60f-48bb-4826-b395-5e5d16908827" + }, + { + "routeId": "L514", + "platformId": "U7033Z2", + "id": "612a8d51-9b4b-445d-9991-ee66a92e6277" + }, + { + "routeId": "L406", + "platformId": "U7035Z1", + "id": "bd2ccbb1-b0f4-47ec-8067-ca41e5c05039" + }, + { + "routeId": "L406", + "platformId": "U7035Z2", + "id": "7de32a4a-11ce-4cbd-8703-053f106a2943" + }, + { + "routeId": "L435", + "platformId": "U7038Z1", + "id": "9ad98746-af1f-4e23-9f10-4d994a2ee5c1" + }, + { + "routeId": "L686", + "platformId": "U7038Z1", + "id": "c6e96277-9f47-4dfa-892d-d222c2375558" + }, + { + "routeId": "L686", + "platformId": "U7038Z2", + "id": "e4e684c4-738f-4835-9f53-1394844c78c8" + }, + { + "routeId": "L2", + "platformId": "U703Z1", + "id": "4b4854a1-876d-4d91-94c5-ec43f4f8d78e" + }, + { + "routeId": "L17", + "platformId": "U703Z1", + "id": "ba0f76c3-a852-44ba-a5af-a6d9fc106c61" + }, + { + "routeId": "L27", + "platformId": "U703Z1", + "id": "ed118e88-7158-4d83-b2b0-88ad624b4dd9" + }, + { + "routeId": "L18", + "platformId": "U703Z1", + "id": "95171a54-7fa8-40c4-912a-2f5c7f30b71a" + }, + { + "routeId": "L93", + "platformId": "U703Z1", + "id": "f1d3e4de-c976-4ab5-afc4-357d05ca179c" + }, + { + "routeId": "L194", + "platformId": "U703Z1", + "id": "8e140a4f-79db-4438-90d1-d80d0d6ee04e" + }, + { + "routeId": "L991", + "platformId": "U703Z101", + "id": "a6a1f001-4464-4d77-a704-d993d30745f4" + }, + { + "routeId": "L991", + "platformId": "U703Z102", + "id": "78cec384-0a8f-4874-a196-32a99cea31de" + }, + { + "routeId": "L2", + "platformId": "U703Z2", + "id": "b69b17e5-aafa-4c33-91e3-b771ccf6d3f9" + }, + { + "routeId": "L17", + "platformId": "U703Z2", + "id": "aa81eaae-f21d-4679-af36-2bc075112c0e" + }, + { + "routeId": "L27", + "platformId": "U703Z2", + "id": "c2d6e184-4c79-4e6e-8a78-1ca1f3970c03" + }, + { + "routeId": "L18", + "platformId": "U703Z2", + "id": "f3dbc389-581f-4b50-bc14-b7c20aadf845" + }, + { + "routeId": "L93", + "platformId": "U703Z2", + "id": "ca05bf42-96f5-4d7e-8791-76661046b8d7" + }, + { + "routeId": "L207", + "platformId": "U703Z3", + "id": "55e60ed6-a10e-4adb-9e0b-cf3b3f32dc43" + }, + { + "routeId": "L207", + "platformId": "U703Z4", + "id": "388cbe02-9969-48e8-b152-8fb9b6c72d67" + }, + { + "routeId": "L194", + "platformId": "U703Z5", + "id": "31a23738-6120-471c-b442-df073bb6f3de" + }, + { + "routeId": "L495", + "platformId": "U7045Z1", + "id": "3271d2e3-0ea9-4b89-b4d5-a6b05f3b3b4a" + }, + { + "routeId": "L482", + "platformId": "U7045Z2", + "id": "b00378b4-cbe4-4972-ba81-916fd443989b" + }, + { + "routeId": "L495", + "platformId": "U7045Z2", + "id": "c0cf78c1-6a25-491d-bdf9-9a0c5a564832" + }, + { + "routeId": "L482", + "platformId": "U7045Z3", + "id": "4ed30f6a-0ee5-4322-af0e-a49e6a2accb0" + }, + { + "routeId": "L482", + "platformId": "U7046Z1", + "id": "7ccb2b61-9faa-44cf-934f-25be8fa0f77d" + }, + { + "routeId": "L482", + "platformId": "U7047Z1", + "id": "8c398a80-597a-4afa-88c8-977ac773b878" + }, + { + "routeId": "L552", + "platformId": "U7048Z1", + "id": "a35b3589-9969-4060-aa2e-297ad5e1f7db" + }, + { + "routeId": "L482", + "platformId": "U7049Z51", + "id": "c44aaa6d-22b2-4835-b961-e4c592239980" + }, + { + "routeId": "L482", + "platformId": "U7049Z52", + "id": "48176d81-5a5c-46fc-bd40-e3b8f621290a" + }, + { + "routeId": "L138", + "platformId": "U704Z1", + "id": "a3898457-138b-4305-a1b3-698498b92aca" + }, + { + "routeId": "L138", + "platformId": "U704Z2", + "id": "1cd82ea8-2ddc-4902-8957-66d9524b652f" + }, + { + "routeId": "L482", + "platformId": "U7050Z1", + "id": "ceeb81e0-a9b9-422b-b7d7-61b06aa3c380" + }, + { + "routeId": "L482", + "platformId": "U7050Z2", + "id": "ee747624-fa1e-432b-af84-314b31d66835" + }, + { + "routeId": "L402", + "platformId": "U7053Z1", + "id": "1ee018cc-74c3-4854-896c-da88632da196" + }, + { + "routeId": "L795", + "platformId": "U7053Z1", + "id": "e60ff49c-c01a-4034-8118-4c2f4d44738e" + }, + { + "routeId": "L402", + "platformId": "U7053Z2", + "id": "5e394192-cd80-4a99-9b50-22197b63965d" + }, + { + "routeId": "L795", + "platformId": "U7053Z2", + "id": "643b945e-1e28-411a-9169-ac157e2e8677" + }, + { + "routeId": "L787", + "platformId": "U7057Z1", + "id": "0e1a302e-4864-4867-a9d3-b9d7c4e3855f" + }, + { + "routeId": "L402", + "platformId": "U7057Z1", + "id": "57196be5-62f2-482e-b0f4-822cad4ae680" + }, + { + "routeId": "L795", + "platformId": "U7057Z1", + "id": "bdba89d9-d0c4-412b-bd74-ef5faaf99589" + }, + { + "routeId": "L787", + "platformId": "U7057Z2", + "id": "0c538879-f1c7-459f-9ce8-c00b6ec8b79a" + }, + { + "routeId": "L402", + "platformId": "U7057Z2", + "id": "c21167f8-a659-4bc6-ab86-2471150770b8" + }, + { + "routeId": "L795", + "platformId": "U7057Z2", + "id": "ae0f478a-2048-4b41-9129-5e5c27d7595b" + }, + { + "routeId": "L495", + "platformId": "U7058Z1", + "id": "4f763c35-2471-42ad-b9c8-7727af890781" + }, + { + "routeId": "L495", + "platformId": "U7058Z2", + "id": "84efee14-8e7b-42d2-a722-1fabe13679ef" + }, + { + "routeId": "L244", + "platformId": "U705Z1", + "id": "44a5ff0e-c4dd-4049-a791-87b0591191e9" + }, + { + "routeId": "L244", + "platformId": "U705Z3", + "id": "c6185ad2-b165-4585-8891-ba2db3594a1c" + }, + { + "routeId": "L480", + "platformId": "U7061Z1", + "id": "d7397375-9674-44ca-9fe6-a80f66ecfee4" + }, + { + "routeId": "L480", + "platformId": "U7061Z2", + "id": "21daf8fc-86ed-4f3c-ad3b-8fd18dd662b9" + }, + { + "routeId": "L402", + "platformId": "U7062Z1", + "id": "76b1d68c-011c-4eaf-8296-798ea9e4c7a8" + }, + { + "routeId": "L402", + "platformId": "U7062Z2", + "id": "130c424b-9893-4c06-ac3d-22b3c61c9516" + }, + { + "routeId": "L402", + "platformId": "U7063Z1", + "id": "d9b1ae61-56a4-4157-9359-93dfd13591e3" + }, + { + "routeId": "L402", + "platformId": "U7063Z2", + "id": "c70df7dd-b0c9-411a-b13a-bc221295e528" + }, + { + "routeId": "L402", + "platformId": "U7064Z1", + "id": "4ef38ccb-3c65-41be-ae9a-18320a676da3" + }, + { + "routeId": "L402", + "platformId": "U7064Z2", + "id": "31494ab0-40ac-4c5b-be36-5a082b650147" + }, + { + "routeId": "L402", + "platformId": "U7065Z1", + "id": "eb498a18-a95e-43f8-87b4-00e5ec51a399" + }, + { + "routeId": "L402", + "platformId": "U7065Z2", + "id": "e4bbb49b-ed58-45c4-953e-1e829fe5b287" + }, + { + "routeId": "L402", + "platformId": "U7067Z1", + "id": "b427f42a-1ff0-4cc1-b2b6-5fa677fdfe85" + }, + { + "routeId": "L402", + "platformId": "U7067Z2", + "id": "c0f93c08-ee76-4b0b-a2cd-cc4f5dd2e778" + }, + { + "routeId": "L180", + "platformId": "U706Z1", + "id": "78b1d6dd-5d29-426c-90f3-8435603d538e" + }, + { + "routeId": "L904", + "platformId": "U706Z1", + "id": "31fb0e17-7c48-451b-8152-565ee873673e" + }, + { + "routeId": "L214", + "platformId": "U706Z1", + "id": "a6275324-a779-49b6-86b9-d4b28694cafe" + }, + { + "routeId": "L957", + "platformId": "U706Z1", + "id": "36db5cb7-ea22-466a-b64b-4c78701e9b2d" + }, + { + "routeId": "L952", + "platformId": "U706Z1", + "id": "48700e01-0a9f-4115-8a49-c6eaf7f097aa" + }, + { + "routeId": "L180", + "platformId": "U706Z2", + "id": "f69e4c0b-5d58-4c3c-98f7-4afe851e72c7" + }, + { + "routeId": "L904", + "platformId": "U706Z2", + "id": "0cb4713a-ed4f-4813-9675-2b727d0e97de" + }, + { + "routeId": "L214", + "platformId": "U706Z2", + "id": "ed8a5b16-1feb-42e1-a9bd-20d716f65a81" + }, + { + "routeId": "L957", + "platformId": "U706Z2", + "id": "bddef25e-568c-4449-9bc8-9fcb5907713b" + }, + { + "routeId": "L952", + "platformId": "U706Z2", + "id": "ef572987-ce4e-4582-99fc-84c9e3082bfb" + }, + { + "routeId": "L909", + "platformId": "U707Z1", + "id": "528e924d-1d04-4a4c-9ee6-9e1c15087f2a" + }, + { + "routeId": "L171", + "platformId": "U707Z1", + "id": "cfc9f289-287b-4d7a-ba30-6740e5f21671" + }, + { + "routeId": "L909", + "platformId": "U707Z2", + "id": "09647e13-81fe-48af-a18e-e4c31f605684" + }, + { + "routeId": "L171", + "platformId": "U707Z2", + "id": "e4b55e83-5a4a-4880-a567-289ffdbce9b7" + }, + { + "routeId": "L181", + "platformId": "U708Z1", + "id": "2bda2c3c-a318-4bcd-9aa6-8fa42c404201" + }, + { + "routeId": "L183", + "platformId": "U708Z1", + "id": "acf2b536-26ba-44e6-830a-089c727ab924" + }, + { + "routeId": "L181", + "platformId": "U708Z2", + "id": "01d9d277-e533-48ca-b113-0cf70c87f788" + }, + { + "routeId": "L183", + "platformId": "U708Z2", + "id": "6a2087f1-952e-4f14-ab5a-621ff2133823" + }, + { + "routeId": "L402", + "platformId": "U7091Z1", + "id": "33c0ccdb-7031-4bb3-b213-6db9b821a267" + }, + { + "routeId": "L402", + "platformId": "U7091Z2", + "id": "392405ea-a092-486e-9f3a-e5e95d150ec9" + }, + { + "routeId": "L402", + "platformId": "U7092Z1", + "id": "d26151fd-fc19-49a0-be1e-5bdc064a5f4a" + }, + { + "routeId": "L402", + "platformId": "U7092Z2", + "id": "0ba151e8-0601-4655-b4ba-a838f858ba97" + }, + { + "routeId": "L402", + "platformId": "U7093Z1", + "id": "d7e20553-30f8-4deb-9269-d52176e2f473" + }, + { + "routeId": "L402", + "platformId": "U7093Z2", + "id": "79f1952e-1e40-4b4d-9854-e6055b7cf760" + }, + { + "routeId": "L402", + "platformId": "U7094Z1", + "id": "bff8e368-74b0-424b-a054-d5ec5fe78481" + }, + { + "routeId": "L402", + "platformId": "U7094Z2", + "id": "d865e8c4-cc62-444f-bcec-3a36b7ca7e20" + }, + { + "routeId": "L402", + "platformId": "U7095Z1", + "id": "439f0b42-9ac6-41bf-850d-505c51641590" + }, + { + "routeId": "L402", + "platformId": "U7095Z2", + "id": "642e5089-07f7-40e9-8883-29c708d489f2" + }, + { + "routeId": "L402", + "platformId": "U7096Z1", + "id": "d33e474b-e2bf-4b41-bb81-0510473fcc90" + }, + { + "routeId": "L2805", + "platformId": "U7096Z1", + "id": "879caef9-060d-4c7a-b040-8d5f7e1e54e7" + }, + { + "routeId": "L402", + "platformId": "U7097Z1", + "id": "e3735eb9-6ea3-4e95-8be1-7e6479b0ffd6" + }, + { + "routeId": "L402", + "platformId": "U7097Z2", + "id": "5e50ae11-e4c7-4b60-92e4-efe212c4335d" + }, + { + "routeId": "L402", + "platformId": "U7098Z1", + "id": "95ac5f7b-2c27-47c3-ab78-42f068723db0" + }, + { + "routeId": "L402", + "platformId": "U7098Z2", + "id": "bb69bac8-98e0-4932-8db4-10d9b818c469" + }, + { + "routeId": "L402", + "platformId": "U7099Z1", + "id": "4dbb721d-5422-4fd2-be3f-a9772e157b8d" + }, + { + "routeId": "L402", + "platformId": "U7099Z2", + "id": "640161a8-babf-4c0f-b80f-b7467dee510b" + }, + { + "routeId": "L168", + "platformId": "U709Z1", + "id": "5552af32-6d7f-4ca6-abf1-adf04055b6d4" + }, + { + "routeId": "L174", + "platformId": "U709Z1", + "id": "d0302ee2-861b-45a6-a9d5-bbc4609fedbd" + }, + { + "routeId": "L902", + "platformId": "U709Z1", + "id": "ea47b0c1-5f93-47a0-bfb7-15b9642edaff" + }, + { + "routeId": "L168", + "platformId": "U709Z2", + "id": "66482bb7-98e1-40a8-8d1d-a0f5c08e2a7c" + }, + { + "routeId": "L174", + "platformId": "U709Z2", + "id": "65be49ee-a2b9-42fb-9d30-b1927a16bb4d" + }, + { + "routeId": "L902", + "platformId": "U709Z2", + "id": "c8d15232-7a08-4a89-a74d-7fe149557f55" + }, + { + "routeId": "L16", + "platformId": "U70Z1", + "id": "15e81b15-378d-412a-b829-c9159d0b2cc8" + }, + { + "routeId": "L19", + "platformId": "U70Z1", + "id": "13ad126b-4011-42df-8706-55a0324b7b65" + }, + { + "routeId": "L95", + "platformId": "U70Z1", + "id": "a00e51bb-7dc8-4f4e-ba60-fd8c991d734b" + }, + { + "routeId": "L16", + "platformId": "U70Z2", + "id": "6304b301-534b-4267-ac4a-567c77c239ed" + }, + { + "routeId": "L19", + "platformId": "U70Z2", + "id": "2ef476b5-2067-4b99-b333-6096d6c34fe2" + }, + { + "routeId": "L95", + "platformId": "U70Z2", + "id": "0e08e8c6-d9bd-4860-b220-f798a8528d12" + }, + { + "routeId": "L909", + "platformId": "U70Z6", + "id": "8ad361f9-4699-4264-bb12-5acf22c2d693" + }, + { + "routeId": "L903", + "platformId": "U70Z6", + "id": "f6b99633-0cb2-41e9-957f-8e348bdd5109" + }, + { + "routeId": "L228", + "platformId": "U70Z6", + "id": "9a3a6b73-cee5-4aa2-9dbd-e612b4e3fb5e" + }, + { + "routeId": "L909", + "platformId": "U70Z7", + "id": "f70c2595-3b82-442e-bdd1-7c93b57d0caf" + }, + { + "routeId": "L903", + "platformId": "U70Z7", + "id": "d736ce08-5e33-40c1-8a9f-586250046cfa" + }, + { + "routeId": "L228", + "platformId": "U70Z7", + "id": "122057ef-eefe-46ac-8d4b-22f9edca59fb" + }, + { + "routeId": "L402", + "platformId": "U7101Z1", + "id": "942075a4-70d3-4e43-8750-a18d44b8ee04" + }, + { + "routeId": "L402", + "platformId": "U7101Z2", + "id": "14d59aec-6f1a-49f0-b053-6f5d28e15585" + }, + { + "routeId": "L402", + "platformId": "U7103Z1", + "id": "e5cbe0a9-cdee-465c-83b9-8ab8ec7d44a8" + }, + { + "routeId": "L402", + "platformId": "U7103Z2", + "id": "52518123-0f5f-4e97-8646-c0978637c755" + }, + { + "routeId": "L402", + "platformId": "U7104Z1", + "id": "3a9a2e19-0afc-4d16-ad6f-e95811c0008c" + }, + { + "routeId": "L402", + "platformId": "U7104Z2", + "id": "01999b14-fb9a-424b-843a-768ca96ebca4" + }, + { + "routeId": "L402", + "platformId": "U7105Z1", + "id": "785e7af9-6eb5-4cd0-886e-1afd4a00bda8" + }, + { + "routeId": "L402", + "platformId": "U7105Z2", + "id": "a1b06f5e-9ea3-4095-b785-c086cce55b88" + }, + { + "routeId": "L225", + "platformId": "U710Z1", + "id": "10ce882a-301d-4fd0-a124-b1fd8d1194c7" + }, + { + "routeId": "L904", + "platformId": "U710Z1", + "id": "a419e429-9a7d-4133-a442-0d2dc80dd0ad" + }, + { + "routeId": "L225", + "platformId": "U710Z2", + "id": "4cad9e22-ae70-4ae4-afa8-36025804df4d" + }, + { + "routeId": "L904", + "platformId": "U710Z2", + "id": "5df44413-8de2-40cf-a2b0-5462c91cdf8d" + }, + { + "routeId": "L174", + "platformId": "U711Z1", + "id": "404d9950-8d39-48bf-b99a-98671c05ba32" + }, + { + "routeId": "L902", + "platformId": "U711Z1", + "id": "b81e67d9-1861-4b37-88df-2963d24bf975" + }, + { + "routeId": "L174", + "platformId": "U711Z2", + "id": "4526eeac-0b8c-4b04-90da-5fa210988e1b" + }, + { + "routeId": "L902", + "platformId": "U711Z2", + "id": "2259dd93-d2cb-4e33-bb66-4156821be01b" + }, + { + "routeId": "L2805", + "platformId": "U7121Z1", + "id": "7ec433b9-c96b-4346-8d93-9d76b619699a" + }, + { + "routeId": "L2805", + "platformId": "U7121Z2", + "id": "2d368cd1-c01c-434c-9351-46f8267847c7" + }, + { + "routeId": "L2805", + "platformId": "U7122Z1", + "id": "32fdb495-61f1-4c0c-bb22-cbd1f10e1cdf" + }, + { + "routeId": "L2805", + "platformId": "U7122Z2", + "id": "5dc9ac02-a7db-4fd7-9d16-e8d944a18b62" + }, + { + "routeId": "L2805", + "platformId": "U7124Z1", + "id": "92508c7f-7247-4529-83fe-2803f9e405e2" + }, + { + "routeId": "L2805", + "platformId": "U7124Z2", + "id": "69811211-6ea0-4cc6-968e-402fcd2adbb2" + }, + { + "routeId": "L2805", + "platformId": "U7125Z1", + "id": "9f1aff90-6651-423b-a2f0-4a3079128d4c" + }, + { + "routeId": "L2805", + "platformId": "U7125Z2", + "id": "9ac8133a-46d2-4b7d-9fdf-c53213053b16" + }, + { + "routeId": "L2805", + "platformId": "U7126Z1", + "id": "add65966-ce53-47ec-bad6-cc1c2da02800" + }, + { + "routeId": "L2805", + "platformId": "U7126Z2", + "id": "ff601dbd-2b90-4d29-ae56-4e4d909d9187" + }, + { + "routeId": "L2805", + "platformId": "U7127Z1", + "id": "d10944a9-4ad3-4eb5-8fac-d6db3b59dd6b" + }, + { + "routeId": "L2805", + "platformId": "U7127Z2", + "id": "6af9387a-51f0-4bf0-885a-a5c345879b57" + }, + { + "routeId": "L2805", + "platformId": "U7128Z1", + "id": "a99ca518-f26a-431f-8f6b-5b1982d8b909" + }, + { + "routeId": "L787", + "platformId": "U7137Z1", + "id": "612841d3-e096-4507-bd41-b7e912c29b00" + }, + { + "routeId": "L787", + "platformId": "U7137Z2", + "id": "f7c0f789-7b3e-4b37-bec9-924ad2e3b048" + }, + { + "routeId": "L787", + "platformId": "U7139Z1", + "id": "5f873b03-18a9-473e-a7c3-f24787efc051" + }, + { + "routeId": "L787", + "platformId": "U7139Z2", + "id": "af86b967-0d8b-4d79-81e5-d9434b5eada2" + }, + { + "routeId": "L7", + "platformId": "U713Z1", + "id": "2d079a99-c185-4f50-b3da-d7b8b7b6ea7d" + }, + { + "routeId": "L19", + "platformId": "U713Z1", + "id": "5c1e8457-1684-463c-9ec9-613f8ad7b484" + }, + { + "routeId": "L26", + "platformId": "U713Z1", + "id": "bfb85eed-2c78-4fc4-97e8-02fa578de79a" + }, + { + "routeId": "L91", + "platformId": "U713Z1", + "id": "d58c9f4f-75de-4bcd-8592-ad925c540b26" + }, + { + "routeId": "L95", + "platformId": "U713Z1", + "id": "e0437d10-5dcf-4f46-9b11-58c83ee38f66" + }, + { + "routeId": "L991", + "platformId": "U713Z101", + "id": "612f2adf-4c21-4b7f-bd62-35826e614619" + }, + { + "routeId": "L991", + "platformId": "U713Z102", + "id": "9a6fd486-0d00-4b1b-b4b1-ea4b470e3c67" + }, + { + "routeId": "L7", + "platformId": "U713Z2", + "id": "ddc4fe75-de34-401c-9e4e-c14e4f15c4d4" + }, + { + "routeId": "L19", + "platformId": "U713Z2", + "id": "d7d6c5b6-873d-404b-b795-85fcd41c2de3" + }, + { + "routeId": "L26", + "platformId": "U713Z2", + "id": "78e54408-a315-4c7e-a343-1a9b1b5f4afd" + }, + { + "routeId": "L91", + "platformId": "U713Z2", + "id": "b1f22c41-5171-452b-9d2a-60215e531299" + }, + { + "routeId": "L95", + "platformId": "U713Z2", + "id": "6c4911aa-d0a3-47bd-889b-63a6c38e803f" + }, + { + "routeId": "L154", + "platformId": "U713Z4", + "id": "0e6f38ab-1e9e-45cb-8c44-ec1107df987a" + }, + { + "routeId": "L175", + "platformId": "U713Z4", + "id": "5aad4d50-63ff-468f-9e67-219c319f433c" + }, + { + "routeId": "L188", + "platformId": "U713Z4", + "id": "e384540b-2d56-4a3c-b14f-db650ca22405" + }, + { + "routeId": "L901", + "platformId": "U713Z4", + "id": "8c2e29a6-a7f2-4ebb-9623-50f34ff67c79" + }, + { + "routeId": "L906", + "platformId": "U713Z4", + "id": "3e3c7d97-ad08-47ba-962a-e5561acb8d35" + }, + { + "routeId": "L175", + "platformId": "U713Z5", + "id": "18f8d4a9-4b7c-4606-bfe5-bef972339832" + }, + { + "routeId": "L188", + "platformId": "U713Z5", + "id": "c0255d77-82f7-43fa-926e-d66e1a1252b6" + }, + { + "routeId": "L901", + "platformId": "U713Z5", + "id": "15f4fd57-3280-4fcc-8778-7148e9ee222c" + }, + { + "routeId": "L906", + "platformId": "U713Z5", + "id": "00253e97-2e55-4d91-a89d-3fa6c1bd9ebd" + }, + { + "routeId": "L154", + "platformId": "U713Z6", + "id": "b140887e-5a30-4064-9ed7-ca6911716fc2" + }, + { + "routeId": "L787", + "platformId": "U7140Z1", + "id": "79ad859a-164b-4a9b-a501-f59931d914c4" + }, + { + "routeId": "L787", + "platformId": "U7140Z2", + "id": "1a84bd05-163c-43f5-b7d9-0404d40a0e92" + }, + { + "routeId": "L383", + "platformId": "U7142Z1", + "id": "99a47e08-dd7b-464c-a5ec-ae76d7b00082" + }, + { + "routeId": "L490", + "platformId": "U7142Z1", + "id": "0e85892d-11a4-489e-86f6-d79bf4a6b290" + }, + { + "routeId": "L383", + "platformId": "U7142Z2", + "id": "a394f95f-735d-481e-a3c5-c4acd1a56e8d" + }, + { + "routeId": "L490", + "platformId": "U7142Z2", + "id": "80b7a095-6e6b-4a38-874b-5f0889d5ef86" + }, + { + "routeId": "L787", + "platformId": "U7143Z1", + "id": "411ace32-f747-4b91-91fb-5188af4ba2df" + }, + { + "routeId": "L787", + "platformId": "U7143Z2", + "id": "47e101f5-455b-420c-b6af-87edeaa30acd" + }, + { + "routeId": "L787", + "platformId": "U7144Z1", + "id": "60c1f5ef-92e3-4300-a49f-3667e65967fb" + }, + { + "routeId": "L787", + "platformId": "U7144Z2", + "id": "0ef7e001-8926-4c3b-8350-2cba0e0d8b81" + }, + { + "routeId": "L787", + "platformId": "U7145Z1", + "id": "9954f6e1-376c-4a65-a543-864b685a3d5b" + }, + { + "routeId": "L787", + "platformId": "U7145Z2", + "id": "cf26840a-986e-47eb-98f0-b44db640de05" + }, + { + "routeId": "L787", + "platformId": "U7146Z1", + "id": "800a00c0-b0b6-403e-8bce-3c4e1afd1338" + }, + { + "routeId": "L787", + "platformId": "U7146Z2", + "id": "35b0ac68-fed4-414a-be6e-0424580970a4" + }, + { + "routeId": "L787", + "platformId": "U7147Z1", + "id": "a61412fa-e196-4600-8a1d-5a574145c66c" + }, + { + "routeId": "L787", + "platformId": "U7147Z2", + "id": "8b01a706-32bf-4c6f-b21a-1b9365c242a6" + }, + { + "routeId": "L787", + "platformId": "U7149Z1", + "id": "e0100df8-33a7-4d06-bd9b-0f43df6e60f3" + }, + { + "routeId": "L787", + "platformId": "U7149Z2", + "id": "9d846c1c-3f13-4357-822b-24ebb394c9ae" + }, + { + "routeId": "L9", + "platformId": "U714Z1", + "id": "146fb86e-299e-4bff-b06c-6cc583936a0b" + }, + { + "routeId": "L11", + "platformId": "U714Z1", + "id": "47489049-8d4a-4152-9fed-502942b113ef" + }, + { + "routeId": "L31", + "platformId": "U714Z1", + "id": "02127255-b493-45b2-8054-853f91a6d8f9" + }, + { + "routeId": "L98", + "platformId": "U714Z1", + "id": "cc733b06-b1d0-422b-940b-fb790914c954" + }, + { + "routeId": "L9", + "platformId": "U714Z2", + "id": "401f3050-4e3b-44c7-a6f0-c6266d502068" + }, + { + "routeId": "L11", + "platformId": "U714Z2", + "id": "e000c920-90ac-49cc-a321-fae06ab4ffca" + }, + { + "routeId": "L31", + "platformId": "U714Z2", + "id": "994d968c-3f1e-444f-9131-b93947df0b15" + }, + { + "routeId": "L98", + "platformId": "U714Z2", + "id": "ce21568d-e763-45f4-9295-1a5b3f4a5f76" + }, + { + "routeId": "L787", + "platformId": "U7150Z1", + "id": "82e82117-5e9f-4ef9-887e-c82b81595e49" + }, + { + "routeId": "L787", + "platformId": "U7150Z2", + "id": "79cf3a40-5aba-4c08-b040-0f477d1a7fa7" + }, + { + "routeId": "L787", + "platformId": "U7152Z1", + "id": "dfed6321-86e2-4c64-a1ab-f9cab3a01fa1" + }, + { + "routeId": "L787", + "platformId": "U7152Z2", + "id": "38647a41-ad7d-43e3-9cf8-7f13e5824bbb" + }, + { + "routeId": "L787", + "platformId": "U7153Z1", + "id": "40febfa7-51cd-4739-ac99-3f24630f265f" + }, + { + "routeId": "L787", + "platformId": "U7155Z1", + "id": "d15717f2-3aaf-4899-a4b6-34dad8f8847a" + }, + { + "routeId": "L787", + "platformId": "U7155Z2", + "id": "5eeb512a-63dc-4e4b-ba23-de3175365723" + }, + { + "routeId": "L787", + "platformId": "U7156Z1", + "id": "cedd5636-4de5-4e52-83d9-af2c7d839ebd" + }, + { + "routeId": "L787", + "platformId": "U7156Z2", + "id": "2f4a16d7-8366-4133-8ed2-0371d112922a" + }, + { + "routeId": "L787", + "platformId": "U7157Z1", + "id": "5af1fea9-9584-45e9-bff0-696203f3701a" + }, + { + "routeId": "L787", + "platformId": "U7157Z2", + "id": "70f3d180-c842-406a-9d74-2aeedb35085a" + }, + { + "routeId": "L787", + "platformId": "U7158Z1", + "id": "e3cfb99c-388b-4b9c-988b-95c3d61dc031" + }, + { + "routeId": "L787", + "platformId": "U7158Z2", + "id": "486059c4-6f4a-44b7-878e-b8cb7b821578" + }, + { + "routeId": "L787", + "platformId": "U7159Z1", + "id": "6c146342-c592-46e5-ad99-f3e6d037ad34" + }, + { + "routeId": "L402", + "platformId": "U7159Z1", + "id": "df47fd18-ec47-4c2d-8e83-455445285211" + }, + { + "routeId": "L795", + "platformId": "U7159Z1", + "id": "e409bb94-5ab7-4c8f-9389-1f754274b266" + }, + { + "routeId": "L787", + "platformId": "U7159Z2", + "id": "abf62c66-29ed-4764-82fc-53529335e9de" + }, + { + "routeId": "L402", + "platformId": "U7159Z2", + "id": "297a0bad-ecdc-45bb-ad93-4904f302ecaf" + }, + { + "routeId": "L795", + "platformId": "U7159Z2", + "id": "92860b14-7ddb-4724-b36c-b9f5a570be67" + }, + { + "routeId": "L2801", + "platformId": "U7160Z1", + "id": "00f3c8e9-4b88-4284-99ea-3b8d2f18715b" + }, + { + "routeId": "L2801", + "platformId": "U7162Z1", + "id": "e8496be8-98d6-4c73-8abe-d1c5f83450d3" + }, + { + "routeId": "L2801", + "platformId": "U7162Z2", + "id": "f80c2ec4-d0d0-4116-b383-54d37f476f33" + }, + { + "routeId": "L314", + "platformId": "U716Z1", + "id": "633ea22c-3432-41a5-afc5-a798415c5c8e" + }, + { + "routeId": "L360", + "platformId": "U716Z1", + "id": "f5b5a759-4f81-4cc2-914e-4e553c36f60c" + }, + { + "routeId": "L361", + "platformId": "U716Z1", + "id": "bde89f31-f395-4a1c-a639-34363a13fa57" + }, + { + "routeId": "L390", + "platformId": "U716Z1", + "id": "5bdc3f3b-26a7-49d3-b441-67e213b884da" + }, + { + "routeId": "L314", + "platformId": "U716Z2", + "id": "37a51e45-9370-4c03-9bad-01b94b98e33c" + }, + { + "routeId": "L360", + "platformId": "U716Z2", + "id": "0d2ecb28-be71-4c7b-96c3-0ebfef06ba3c" + }, + { + "routeId": "L361", + "platformId": "U716Z2", + "id": "4f66fb3d-ed26-4ad5-85f6-8059b47517ac" + }, + { + "routeId": "L390", + "platformId": "U716Z2", + "id": "fd53fbb0-ec02-47f6-8898-7a10ea4a587f" + }, + { + "routeId": "L639", + "platformId": "U7179Z1", + "id": "692bc9d8-927b-4da0-b0e7-e4fb5edf72f7" + }, + { + "routeId": "L639", + "platformId": "U7179Z2", + "id": "7a9e73b6-0851-44d4-9279-717c1f09a7ed" + }, + { + "routeId": "L1", + "platformId": "U717Z1", + "id": "16be0563-7230-4f81-996a-028980afeda0" + }, + { + "routeId": "L8", + "platformId": "U717Z1", + "id": "5503129b-ef92-4842-9079-f6b254c4195a" + }, + { + "routeId": "L12", + "platformId": "U717Z1", + "id": "915a9fe9-290c-4aa5-b591-511d44fe1c55" + }, + { + "routeId": "L14", + "platformId": "U717Z1", + "id": "a4b273e4-27b9-4cc9-bf58-1bd390851918" + }, + { + "routeId": "L25", + "platformId": "U717Z1", + "id": "96da1b4d-c3f0-4a3c-949d-ed420e0f935e" + }, + { + "routeId": "L26", + "platformId": "U717Z1", + "id": "424d29f8-bab6-49f3-9661-151588f0bb98" + }, + { + "routeId": "L91", + "platformId": "U717Z1", + "id": "a07ea099-44ca-4291-95a0-cb5c54e7dd5d" + }, + { + "routeId": "L96", + "platformId": "U717Z1", + "id": "905ef996-cc2e-4b62-91d7-0eedb2badefe" + }, + { + "routeId": "L1", + "platformId": "U717Z2", + "id": "d54bdb2a-a2db-420f-8670-75f0ffc93476" + }, + { + "routeId": "L6", + "platformId": "U717Z2", + "id": "e2fa97bc-f4c5-4831-9ecd-58840a6b46d7" + }, + { + "routeId": "L12", + "platformId": "U717Z2", + "id": "3fa6a034-86a2-46c8-b119-66dcb31c7641" + }, + { + "routeId": "L14", + "platformId": "U717Z2", + "id": "1112dc46-27ae-4c39-8f97-b22598b99efd" + }, + { + "routeId": "L17", + "platformId": "U717Z2", + "id": "a5870f73-c3b2-4d05-a78b-fe0e94e59acf" + }, + { + "routeId": "L27", + "platformId": "U717Z2", + "id": "a637a291-db54-4542-8edd-21f0899c6ded" + }, + { + "routeId": "L25", + "platformId": "U717Z2", + "id": "05c998a7-23c3-4c3c-9b31-769227732607" + }, + { + "routeId": "L93", + "platformId": "U717Z2", + "id": "bbf353b6-bfd6-4507-84ba-f4a2103f18fa" + }, + { + "routeId": "L6", + "platformId": "U717Z4", + "id": "10b3a4c9-bd33-4780-8101-578f3fd4f6f1" + }, + { + "routeId": "L8", + "platformId": "U717Z4", + "id": "4be4e7e3-f98d-49f0-8de8-62a7cae15db5" + }, + { + "routeId": "L17", + "platformId": "U717Z4", + "id": "532e3f66-3508-47c5-9683-dcec15305749" + }, + { + "routeId": "L27", + "platformId": "U717Z4", + "id": "9c5d2423-6bc4-4bf6-9415-69a16641e7ba" + }, + { + "routeId": "L26", + "platformId": "U717Z4", + "id": "9d94ab9b-0f16-4d05-896b-ae08c7191b95" + }, + { + "routeId": "L91", + "platformId": "U717Z4", + "id": "f74717b6-7cd8-4c3f-ac42-622c6bf8c59c" + }, + { + "routeId": "L93", + "platformId": "U717Z4", + "id": "0c11dd76-555e-4c4d-a928-dfd1b0343ad4" + }, + { + "routeId": "L96", + "platformId": "U717Z4", + "id": "96874654-4308-429f-a7e5-78d0cde55f65" + }, + { + "routeId": "L156", + "platformId": "U717Z4", + "id": "2e9bc95f-e17a-4f9d-9dea-8c47a3bd4405" + }, + { + "routeId": "L1", + "platformId": "U718Z1", + "id": "425b06ac-bc12-42aa-88c4-4ccbf4959d4e" + }, + { + "routeId": "L3", + "platformId": "U718Z1", + "id": "4c1ec259-3d5d-48d7-ada9-70f2268d9288" + }, + { + "routeId": "L17", + "platformId": "U718Z1", + "id": "a15d02cd-901f-40fb-882f-b4ce9d577d77" + }, + { + "routeId": "L25", + "platformId": "U718Z1", + "id": "a252da84-f0a2-428c-beb4-d6ab67a20667" + }, + { + "routeId": "L95", + "platformId": "U718Z1", + "id": "07417c1f-fd13-43bc-91bd-ee101872b743" + }, + { + "routeId": "L17", + "platformId": "U718Z2", + "id": "10fa1133-8a68-40a9-b9d8-a20f5ec60a32" + }, + { + "routeId": "L95", + "platformId": "U718Z2", + "id": "b1df59d6-5034-4933-bfc8-fc7ca99a9c7c" + }, + { + "routeId": "L250", + "platformId": "U719Z1", + "id": "05b82222-d0fc-4a3f-a065-1baf3b1ab502" + }, + { + "routeId": "L909", + "platformId": "U719Z1", + "id": "31185693-5b09-4469-ab95-73f39f6c4f4b" + }, + { + "routeId": "L163", + "platformId": "U719Z1", + "id": "f11aecc7-6f33-49b7-9dfc-e78314d0290f" + }, + { + "routeId": "L211", + "platformId": "U719Z1", + "id": "d33a08f1-e867-4bde-ad32-30fde616c503" + }, + { + "routeId": "L391", + "platformId": "U719Z1", + "id": "ef14a716-0247-4fec-ba9a-5439731cdfd9" + }, + { + "routeId": "L250", + "platformId": "U719Z2", + "id": "a038afd1-e439-43a8-a1af-73b44abbee87" + }, + { + "routeId": "L909", + "platformId": "U719Z2", + "id": "9698107a-cf54-4edc-8bd4-2768f3f43e6a" + }, + { + "routeId": "L163", + "platformId": "U719Z2", + "id": "73a4fb2d-9080-4ce0-98e2-0abacb638eaa" + }, + { + "routeId": "L211", + "platformId": "U719Z2", + "id": "e7bf9952-1f56-4c45-b7c2-d8af84f6109e" + }, + { + "routeId": "L391", + "platformId": "U719Z2", + "id": "dd1da95e-cc1b-43bd-8047-0e131cd429a1" + }, + { + "routeId": "L17", + "platformId": "U71Z1", + "id": "67a01152-7881-432d-9821-63c4b4b3dc83" + }, + { + "routeId": "L27", + "platformId": "U71Z1", + "id": "973521f6-1a77-4c4c-8b22-0cd3f0b925e3" + }, + { + "routeId": "L92", + "platformId": "U71Z1", + "id": "8c1677e6-15a4-451f-b51b-eb454353ef42" + }, + { + "routeId": "L17", + "platformId": "U71Z2", + "id": "208bd44e-101b-4334-833b-de3aeec4734f" + }, + { + "routeId": "L27", + "platformId": "U71Z2", + "id": "a638d854-32fa-46e5-b03a-2f95a8c73b4b" + }, + { + "routeId": "L92", + "platformId": "U71Z2", + "id": "c0808521-8ce9-47e8-8757-d91837822693" + }, + { + "routeId": "L190", + "platformId": "U71Z3", + "id": "98f1fcea-e0c5-4d0f-9b92-be231c672c7c" + }, + { + "routeId": "L190", + "platformId": "U71Z4", + "id": "04cb7740-c1f7-45bd-8096-40cce9a06b62" + }, + { + "routeId": "L106", + "platformId": "U71Z5", + "id": "b0308ee4-375b-4d91-846c-c2d75aa238a5" + }, + { + "routeId": "L121", + "platformId": "U71Z5", + "id": "2d57bab1-f791-451c-b817-2a4e730e2715" + }, + { + "routeId": "L106", + "platformId": "U71Z6", + "id": "02b5d5d0-1ed0-4919-b69a-4901c9f94128" + }, + { + "routeId": "L121", + "platformId": "U71Z6", + "id": "439e66a3-7d06-4c49-a85c-baf0fcc86832" + }, + { + "routeId": "L120", + "platformId": "U720Z1", + "id": "873f16ec-ea89-405f-a043-1f03c80aee7e" + }, + { + "routeId": "L130", + "platformId": "U720Z1", + "id": "daa6ad67-6192-4bdf-933a-610e35269960" + }, + { + "routeId": "L951", + "platformId": "U720Z1", + "id": "64fe662e-15f2-48fc-ada3-411bee3fa718" + }, + { + "routeId": "L107", + "platformId": "U721Z1", + "id": "c159017e-189a-4f06-9207-222f5465c15b" + }, + { + "routeId": "L147", + "platformId": "U721Z1", + "id": "1fb58a2b-54c0-4c96-8657-f9a1c548288b" + }, + { + "routeId": "L909", + "platformId": "U721Z1", + "id": "9fec1717-0d1f-42b3-b248-8864844eb738" + }, + { + "routeId": "L107", + "platformId": "U721Z2", + "id": "e2cc774e-5ee9-4539-8088-72ce1f5948bc" + }, + { + "routeId": "L147", + "platformId": "U721Z2", + "id": "917b18a9-eb48-4d9b-bc60-8311a7614fc3" + }, + { + "routeId": "L909", + "platformId": "U721Z2", + "id": "5cd6e85b-054e-4918-8154-a8b60fe63846" + }, + { + "routeId": "L106", + "platformId": "U722Z1", + "id": "b7c7da3e-66bf-4f9b-8f4a-6755cb3a0424" + }, + { + "routeId": "L121", + "platformId": "U722Z1", + "id": "5681f18b-7a7d-444a-a3f0-5b842c80e358" + }, + { + "routeId": "L139", + "platformId": "U722Z1", + "id": "b5b42275-c412-4ee0-8158-83ea5a568b29" + }, + { + "routeId": "L196", + "platformId": "U722Z1", + "id": "1f7529b7-e828-4438-85b4-bfd77c7bcf81" + }, + { + "routeId": "L901", + "platformId": "U722Z1", + "id": "459eaf19-7c61-4e3a-bffb-688d2cbe119d" + }, + { + "routeId": "L910", + "platformId": "U722Z1", + "id": "23fbf97b-c77d-4e29-8804-3683f3034e9c" + }, + { + "routeId": "L913", + "platformId": "U722Z1", + "id": "ccdaf107-6996-40e3-9599-bd90ac1cfcbd" + }, + { + "routeId": "L117", + "platformId": "U722Z1", + "id": "fb7de683-39ee-4a31-9c57-7f4747747985" + }, + { + "routeId": "L106", + "platformId": "U722Z2", + "id": "da0cf3d3-4f14-4d10-9b35-0f2f90917095" + }, + { + "routeId": "L121", + "platformId": "U722Z2", + "id": "58e121f6-0556-4f9a-ae86-260eecf3926f" + }, + { + "routeId": "L139", + "platformId": "U722Z2", + "id": "c8256ceb-452b-4281-a8ca-2e4b51993213" + }, + { + "routeId": "L196", + "platformId": "U722Z2", + "id": "98cc02c4-f061-442f-9454-37618dd1a5a4" + }, + { + "routeId": "L901", + "platformId": "U722Z2", + "id": "d05e9cdb-1524-47ce-af82-eff6f0b3278f" + }, + { + "routeId": "L910", + "platformId": "U722Z2", + "id": "5fae566a-1e95-4d13-a693-f2f223291ebc" + }, + { + "routeId": "L913", + "platformId": "U722Z2", + "id": "0b628f05-e4ad-4ffe-9589-e6cdc3c9c652" + }, + { + "routeId": "L117", + "platformId": "U722Z2", + "id": "0c8a5393-d444-41c7-9451-edc4521ed493" + }, + { + "routeId": "L101", + "platformId": "U723Z1", + "id": "edfdf5fe-ab51-4849-8efb-d61a0bbc2d5c" + }, + { + "routeId": "L101", + "platformId": "U723Z2", + "id": "41aea189-276c-478f-a769-44e3965998f0" + }, + { + "routeId": "L7", + "platformId": "U724Z1", + "id": "84e52232-7726-4c55-abd0-de82bc76777e" + }, + { + "routeId": "L14", + "platformId": "U724Z1", + "id": "f83bd3c1-b540-487d-aea7-4d13bf48fd99" + }, + { + "routeId": "L18", + "platformId": "U724Z1", + "id": "c4b871c3-3caa-4d33-8127-410d514f3bc8" + }, + { + "routeId": "L93", + "platformId": "U724Z1", + "id": "f37c0e46-7366-417a-81c3-d9476520db98" + }, + { + "routeId": "L95", + "platformId": "U724Z1", + "id": "c6f27ae9-c375-4ce6-9bd1-4e92cd2dab74" + }, + { + "routeId": "L7", + "platformId": "U724Z2", + "id": "e61de9ff-6e71-4c92-846e-78429223c958" + }, + { + "routeId": "L14", + "platformId": "U724Z2", + "id": "8e1c3e50-e52a-484d-a7c4-dd54843d9056" + }, + { + "routeId": "L18", + "platformId": "U724Z2", + "id": "dcb0222b-84e9-4a1b-83fa-1b75534227f1" + }, + { + "routeId": "L93", + "platformId": "U724Z2", + "id": "7acf07c4-d25f-418c-941a-1eba83dfc6fb" + }, + { + "routeId": "L95", + "platformId": "U724Z2", + "id": "fef2f411-d88f-406c-b288-9051a04ac144" + }, + { + "routeId": "L226", + "platformId": "U725Z1", + "id": "df56199e-e76a-468e-adf2-9d28babdb8a7" + }, + { + "routeId": "L227", + "platformId": "U725Z1", + "id": "a93a5c47-5a57-43fc-827b-2fed1d670976" + }, + { + "routeId": "L226", + "platformId": "U725Z2", + "id": "46a0a0bc-d1bb-45be-b898-b4f74908f206" + }, + { + "routeId": "L227", + "platformId": "U725Z2", + "id": "1af9f3f4-5d01-4154-a088-b7c4dc2cf17e" + }, + { + "routeId": "L221", + "platformId": "U726Z1", + "id": "42963540-ac7c-42aa-872b-6e6b05e51723" + }, + { + "routeId": "L221", + "platformId": "U726Z2", + "id": "2174a545-d047-4025-97c7-f87248b34fe6" + }, + { + "routeId": "L117", + "platformId": "U727Z1", + "id": "898fb9ce-02e3-49f5-b5cd-b4bded42362a" + }, + { + "routeId": "L117", + "platformId": "U727Z2", + "id": "66dcf7c0-39f0-4211-8489-bc1e8413563f" + }, + { + "routeId": "L116", + "platformId": "U728Z1", + "id": "1ebd0240-4205-44c0-8df8-e6697a0946d9" + }, + { + "routeId": "L116", + "platformId": "U728Z2", + "id": "b0060941-1b44-4b24-a308-36e17bc8c99e" + }, + { + "routeId": "L402", + "platformId": "U7290Z1", + "id": "94afe281-8ae2-4e23-9fc1-b8d4de1cd283" + }, + { + "routeId": "L402", + "platformId": "U7290Z2", + "id": "a94fb958-b745-4675-8b81-ff387c6b610a" + }, + { + "routeId": "L154", + "platformId": "U729Z1", + "id": "24627804-ab26-460f-89a2-84ae36881c28" + }, + { + "routeId": "L193", + "platformId": "U729Z1", + "id": "2347f2a7-bf63-49c4-9348-890547db6d92" + }, + { + "routeId": "L901", + "platformId": "U729Z1", + "id": "6cdea0e5-8619-431e-a08e-87725dce3c85" + }, + { + "routeId": "L203", + "platformId": "U729Z1", + "id": "4bb5e83f-0782-42ff-bd65-8074ca7446bf" + }, + { + "routeId": "L154", + "platformId": "U729Z3", + "id": "a45ad93f-9b29-4452-b150-bb7c3892cc56" + }, + { + "routeId": "L193", + "platformId": "U729Z3", + "id": "e5500ce7-d2bd-4065-b599-68126921fc4f" + }, + { + "routeId": "L901", + "platformId": "U729Z3", + "id": "4938d3f4-4917-4901-b3a5-b3200d64c1d0" + }, + { + "routeId": "L203", + "platformId": "U729Z3", + "id": "5ffcd35b-cf3e-43ac-a376-2b2ddaf8fdf1" + }, + { + "routeId": "L7", + "platformId": "U72Z1", + "id": "7a755c09-2713-474c-8673-bbd6f7eaf4a2" + }, + { + "routeId": "L92", + "platformId": "U72Z1", + "id": "0e7f54e3-3862-4bb0-b43a-242d61644cd9" + }, + { + "routeId": "L7", + "platformId": "U72Z2", + "id": "feb0380f-6a99-42f4-93d4-3226201e6fe0" + }, + { + "routeId": "L12", + "platformId": "U72Z2", + "id": "b751ad55-a6d6-4adc-b10c-0b9d3a2b2dc2" + }, + { + "routeId": "L92", + "platformId": "U72Z2", + "id": "feddaa3d-3884-4443-86f1-dd780bfcb270" + }, + { + "routeId": "L94", + "platformId": "U72Z2", + "id": "18964d46-fb7b-45ab-afe1-8494e65fbeac" + }, + { + "routeId": "L12", + "platformId": "U72Z3", + "id": "70edd248-14f7-40cd-84a5-f11291825635" + }, + { + "routeId": "L94", + "platformId": "U72Z3", + "id": "9a48be89-a2fc-4a43-8677-e9cc096bb5f6" + }, + { + "routeId": "L912", + "platformId": "U72Z4", + "id": "7d9d943c-4a56-4b0c-b8a0-8504b4e475b8" + }, + { + "routeId": "L953", + "platformId": "U72Z4", + "id": "6275d956-4dcd-48b0-a896-924c536f0d79" + }, + { + "routeId": "L912", + "platformId": "U72Z5", + "id": "bb0e7715-8c34-425b-a674-cb1695408bf2" + }, + { + "routeId": "L953", + "platformId": "U72Z5", + "id": "a8b79db7-520b-4243-ad32-bddb7c0ad941" + }, + { + "routeId": "L2805", + "platformId": "U7307Z1", + "id": "7cf5b19a-0680-4861-be1d-776a16ec8d9d" + }, + { + "routeId": "L2805", + "platformId": "U7307Z2", + "id": "4f037fcf-03a6-4e6f-9f22-892dc9dd9dd3" + }, + { + "routeId": "L154", + "platformId": "U730Z1", + "id": "fd79706b-c851-4c2c-a20d-06cb00cc6966" + }, + { + "routeId": "L901", + "platformId": "U730Z1", + "id": "11e298d7-6222-4442-b14d-f36543b7b203" + }, + { + "routeId": "L357", + "platformId": "U730Z1", + "id": "72438c69-4ce8-4879-b7e6-42a63bceb817" + }, + { + "routeId": "L327", + "platformId": "U730Z1", + "id": "10c81287-9e2e-4e7c-9628-1ea4427d90ed" + }, + { + "routeId": "L331", + "platformId": "U730Z1", + "id": "405199f6-a2ff-4da7-9a3a-9de2ae50658e" + }, + { + "routeId": "L154", + "platformId": "U730Z2", + "id": "f20254a3-c1e8-4642-a3f8-8af9bd376f28" + }, + { + "routeId": "L901", + "platformId": "U730Z2", + "id": "7c833292-5417-4a18-a9ba-c64234bac38f" + }, + { + "routeId": "L357", + "platformId": "U730Z2", + "id": "88e07340-7a08-4a14-a8f2-3e744f420796" + }, + { + "routeId": "L327", + "platformId": "U730Z2", + "id": "e4be07c8-b3a4-4cb6-882f-f35846a7c6f8" + }, + { + "routeId": "L331", + "platformId": "U730Z2", + "id": "c420a2bb-1e6f-462f-9236-5a747b92792c" + }, + { + "routeId": "L2805", + "platformId": "U7311Z2", + "id": "fb0dd120-6729-43ca-9ed5-609fb1f6c74f" + }, + { + "routeId": "L743", + "platformId": "U7316Z1", + "id": "00244706-27ce-4b28-a1b9-83b152bfc8c5" + }, + { + "routeId": "L743", + "platformId": "U7316Z2", + "id": "1ada4cc0-966e-4063-9fde-702c53b6d93e" + }, + { + "routeId": "L402", + "platformId": "U7317Z1", + "id": "142a41dc-b8ae-43ef-8882-e49b54e16385" + }, + { + "routeId": "L795", + "platformId": "U7317Z1", + "id": "507bdc17-5a45-4a06-9238-80209a313fe1" + }, + { + "routeId": "L798", + "platformId": "U7318Z1", + "id": "192c3124-fc94-4359-83f8-dd226f47beaf" + }, + { + "routeId": "L402", + "platformId": "U7318Z1", + "id": "6fdfa29a-2240-4c47-b4e3-daf451ad6f5b" + }, + { + "routeId": "L770", + "platformId": "U7318Z1", + "id": "250cb1e6-3571-49b0-8bba-210fe4ba34e7" + }, + { + "routeId": "L793", + "platformId": "U7318Z2", + "id": "af3a7058-0bb5-44a5-a8b0-a3418a3a67dd" + }, + { + "routeId": "L798", + "platformId": "U7318Z2", + "id": "1824357f-e98d-421e-a573-66ad96fb6415" + }, + { + "routeId": "L402", + "platformId": "U7318Z2", + "id": "f265f50e-575c-4f67-9e95-12e0f9bb0d03" + }, + { + "routeId": "L770", + "platformId": "U7318Z2", + "id": "14d18365-95fe-477a-9dde-a58057f53520" + }, + { + "routeId": "L402", + "platformId": "U7319Z1", + "id": "397efd5e-ea3b-421f-a15b-1e42a555d3d0" + }, + { + "routeId": "L402", + "platformId": "U7319Z2", + "id": "303a169b-e1c7-4388-bb90-050d15f6c8cf" + }, + { + "routeId": "L154", + "platformId": "U731Z1", + "id": "ec7fc687-224b-4383-932b-34dd05e9f5c7" + }, + { + "routeId": "L901", + "platformId": "U731Z1", + "id": "7e044bea-d25a-43a5-89d8-019fc21505f3" + }, + { + "routeId": "L357", + "platformId": "U731Z1", + "id": "cd4bf0b5-4289-4915-9f1d-de496d7edcce" + }, + { + "routeId": "L327", + "platformId": "U731Z1", + "id": "2cf32aa8-ace4-4a37-be8e-7814c417a239" + }, + { + "routeId": "L331", + "platformId": "U731Z1", + "id": "7e533020-9912-4ce1-90ee-3f011a48cdb0" + }, + { + "routeId": "L154", + "platformId": "U731Z2", + "id": "d1473eca-bcc6-45a7-91b5-cd3e8079b97c" + }, + { + "routeId": "L901", + "platformId": "U731Z2", + "id": "a6f7871d-ba39-424d-b8bc-b54abe73e983" + }, + { + "routeId": "L357", + "platformId": "U731Z2", + "id": "4018bcd0-5a93-4f3a-a4cb-1d7388bad37f" + }, + { + "routeId": "L327", + "platformId": "U731Z2", + "id": "7bc89265-e8af-48d4-89d3-fdd429e9d8ef" + }, + { + "routeId": "L331", + "platformId": "U731Z2", + "id": "a6f060df-0de8-4039-9935-31adc4c30c04" + }, + { + "routeId": "L402", + "platformId": "U7320Z1", + "id": "36b5c3e9-acf7-4756-aae5-d73a9e083667" + }, + { + "routeId": "L402", + "platformId": "U7320Z10", + "id": "87faa7e8-9354-4fc1-953d-a08847975b5d" + }, + { + "routeId": "L743", + "platformId": "U7320Z2", + "id": "f36af540-2f4a-40d1-8979-d1e13168a347" + }, + { + "routeId": "L743", + "platformId": "U7320Z5", + "id": "e0d39e38-fbe9-45c7-b75c-68ff8cb7bcfe" + }, + { + "routeId": "L743", + "platformId": "U7322Z1", + "id": "0fb1f81f-f058-46c5-8591-0ed359828977" + }, + { + "routeId": "L743", + "platformId": "U7322Z2", + "id": "85f3ae4b-b5bc-431c-a30d-fa09bb4e21d5" + }, + { + "routeId": "L743", + "platformId": "U7323Z1", + "id": "14652415-ee6e-4da2-b4a3-ce9aeb0211f8" + }, + { + "routeId": "L743", + "platformId": "U7323Z2", + "id": "0f5d33bb-dbb6-4d01-9253-19db661b3c54" + }, + { + "routeId": "L743", + "platformId": "U7324Z1", + "id": "c9610d12-629b-4fd7-8985-945d90a92bc5" + }, + { + "routeId": "L743", + "platformId": "U7324Z2", + "id": "e842a111-5205-41f5-a8f3-d209ab5218c9" + }, + { + "routeId": "L481", + "platformId": "U7325Z1", + "id": "25cbff21-2f0c-4239-856e-aa7d6fa2246a" + }, + { + "routeId": "L743", + "platformId": "U7325Z1", + "id": "286613db-2f7e-4b50-9a58-0f3d80734fb3" + }, + { + "routeId": "L743", + "platformId": "U7325Z2", + "id": "7a2ea4f7-6495-49cd-b14e-c9cd4e44570c" + }, + { + "routeId": "L481", + "platformId": "U7325Z2", + "id": "26f77d96-a708-407e-a013-fa6cc8f5f7ee" + }, + { + "routeId": "L402", + "platformId": "U7327Z1", + "id": "d307f924-48b6-4eaa-82ad-72f89d0edef4" + }, + { + "routeId": "L743", + "platformId": "U7327Z1", + "id": "2b2d82bc-4ff5-4f36-9ce1-31412cdef0d1" + }, + { + "routeId": "L402", + "platformId": "U7327Z2", + "id": "7dc78c0a-1f3b-4190-917a-0571d18dbdcb" + }, + { + "routeId": "L743", + "platformId": "U7327Z2", + "id": "f90b48ff-05a7-4068-8ccd-52b71728145f" + }, + { + "routeId": "L743", + "platformId": "U7328Z1", + "id": "1a4d57ff-a959-4d4b-9892-7ab149925739" + }, + { + "routeId": "L743", + "platformId": "U7328Z2", + "id": "dbdcdd8d-ca3e-4026-ad03-bf9e2e203f80" + }, + { + "routeId": "L743", + "platformId": "U7329Z1", + "id": "4c26686d-b399-4b7b-b2f1-4ed3cd06e208" + }, + { + "routeId": "L743", + "platformId": "U7329Z2", + "id": "b209ece2-341e-4efd-a178-da38ac535378" + }, + { + "routeId": "L125", + "platformId": "U732Z1", + "id": "78a02293-95da-415b-bf7b-9fe53864751d" + }, + { + "routeId": "L911", + "platformId": "U732Z1", + "id": "980980f7-6fda-45f8-aed0-fe0877bb3c1d" + }, + { + "routeId": "L204", + "platformId": "U732Z1", + "id": "d95cadcb-fab9-4d5b-9fe6-3c69b9322916" + }, + { + "routeId": "L240", + "platformId": "U732Z1", + "id": "bba4ec3b-5f61-49c4-a3c2-19ab4f68199b" + }, + { + "routeId": "L125", + "platformId": "U732Z2", + "id": "2aa1e36f-e58c-4545-a00f-97307b1294b3" + }, + { + "routeId": "L911", + "platformId": "U732Z2", + "id": "613e0f55-2b12-4f30-b8c2-6ddb98f9f690" + }, + { + "routeId": "L204", + "platformId": "U732Z2", + "id": "3e697179-819a-40bd-87b3-c552fcb8a60a" + }, + { + "routeId": "L240", + "platformId": "U732Z2", + "id": "c7358343-0471-4e3b-85b9-2ecc2e47cc58" + }, + { + "routeId": "L743", + "platformId": "U7330Z1", + "id": "a35c6981-76bc-4b19-b3e5-0ac130f82833" + }, + { + "routeId": "L743", + "platformId": "U7330Z2", + "id": "35a86d53-9ff9-4cda-be69-ece9e78b9dc9" + }, + { + "routeId": "L743", + "platformId": "U7331Z1", + "id": "3c741a92-fe52-470a-b490-142c15551224" + }, + { + "routeId": "L743", + "platformId": "U7331Z2", + "id": "e539ab7f-8344-4c16-a7f7-2ed59dd53efb" + }, + { + "routeId": "L2846", + "platformId": "U7333Z1", + "id": "bfeb3cfe-f15e-4dcc-9ab7-64f08d7c15d3" + }, + { + "routeId": "L2846", + "platformId": "U7333Z2", + "id": "71429500-35c9-4537-8d58-7699bdf96311" + }, + { + "routeId": "L2805", + "platformId": "U7334Z1", + "id": "2cb8f9b7-0b8b-4767-8617-fd5671a8ce24" + }, + { + "routeId": "L2805", + "platformId": "U7334Z2", + "id": "bedff3b1-1b0f-4f44-aa42-baffabf06080" + }, + { + "routeId": "L2801", + "platformId": "U7337Z2", + "id": "bd7f5674-5614-4027-997e-eda57fa11493" + }, + { + "routeId": "L2805", + "platformId": "U7338Z1", + "id": "f0c5a23e-56b1-456f-bd3b-b91fd628f972" + }, + { + "routeId": "L2801", + "platformId": "U7338Z1", + "id": "ae5bfad3-a6a3-4fa4-850f-53de224e601b" + }, + { + "routeId": "L2805", + "platformId": "U7338Z2", + "id": "fcf5d241-5c1f-40e1-9be6-c50f5b0ca7e1" + }, + { + "routeId": "L2801", + "platformId": "U7338Z2", + "id": "8e41fb56-f0a3-4726-a661-31f8150e2a96" + }, + { + "routeId": "L2801", + "platformId": "U7339Z1", + "id": "254b3b57-23e4-4266-a3f5-a19ded59ede6" + }, + { + "routeId": "L2801", + "platformId": "U7339Z2", + "id": "85f19c3f-f2db-4c3e-a8c8-17ba3a5cc31a" + }, + { + "routeId": "L123", + "platformId": "U733Z1", + "id": "86ec687b-57e5-418d-9a46-7b0743647dd3" + }, + { + "routeId": "L123", + "platformId": "U733Z2", + "id": "bf93a3a9-8820-43bc-993e-b2431d15d67d" + }, + { + "routeId": "L2801", + "platformId": "U7340Z1", + "id": "2cce9d0e-d4ae-4c14-8db4-ede0be0c8727" + }, + { + "routeId": "L2801", + "platformId": "U7341Z1", + "id": "f8c84b3e-117f-4644-a07b-5261ca61986f" + }, + { + "routeId": "L2805", + "platformId": "U7342Z1", + "id": "70a7bda6-5206-4dd5-b12d-5d0269ae58b8" + }, + { + "routeId": "L2801", + "platformId": "U7342Z1", + "id": "245d3378-929a-431b-b3e5-980cd3b34814" + }, + { + "routeId": "L2805", + "platformId": "U7342Z2", + "id": "275cacac-31ba-434a-8e44-1c5ced37378b" + }, + { + "routeId": "L2801", + "platformId": "U7342Z2", + "id": "24ec020b-8f00-4db2-be8d-ae44cb5b5826" + }, + { + "routeId": "L2805", + "platformId": "U7343Z1", + "id": "9e82175e-1dfb-45c1-b5a3-2b476a64629b" + }, + { + "routeId": "L2801", + "platformId": "U7343Z1", + "id": "d672660f-e660-4738-a8d2-e28269c711fb" + }, + { + "routeId": "L2805", + "platformId": "U7343Z2", + "id": "b6d9a4bc-97a5-49ff-8911-f96902f604de" + }, + { + "routeId": "L2801", + "platformId": "U7343Z2", + "id": "0d64bf53-e468-4add-bd06-a94a4502024d" + }, + { + "routeId": "L2801", + "platformId": "U7344Z1", + "id": "4b121fd6-14a0-443c-ae9b-43022d26f1c7" + }, + { + "routeId": "L381", + "platformId": "U7345Z1", + "id": "d71c8f88-8ae8-41ae-aa3d-def5cc26eb3a" + }, + { + "routeId": "L481", + "platformId": "U7345Z1", + "id": "d3ba5988-b191-4ff8-a5ba-c3adb6a3c3e5" + }, + { + "routeId": "L705", + "platformId": "U7345Z1", + "id": "dc64f2d9-44a7-41c3-b031-eb66badc2a78" + }, + { + "routeId": "L2805", + "platformId": "U7345Z1", + "id": "50989669-0691-4028-9cbf-3e8099abc9b0" + }, + { + "routeId": "L533", + "platformId": "U7345Z1", + "id": "3375f1d0-2129-4e4a-bbf4-32f85058558d" + }, + { + "routeId": "L2801", + "platformId": "U7345Z1", + "id": "326f2b1e-83d1-4410-8bc2-4dc555094a62" + }, + { + "routeId": "L381", + "platformId": "U7345Z2", + "id": "a5759858-873e-4e91-9cfa-c7cc58ca806a" + }, + { + "routeId": "L481", + "platformId": "U7345Z2", + "id": "2f7d63da-e521-45d6-868a-f3c623adfe24" + }, + { + "routeId": "L2805", + "platformId": "U7345Z2", + "id": "71fe4e4f-767a-4c42-9e0c-b02914a8674f" + }, + { + "routeId": "L533", + "platformId": "U7345Z2", + "id": "2ecdb0e2-ee1d-4399-8bd2-f2d7afd91551" + }, + { + "routeId": "L2801", + "platformId": "U7345Z2", + "id": "f55707c5-1f0e-4872-9a66-20beb59224da" + }, + { + "routeId": "L527", + "platformId": "U7348Z1", + "id": "453008b9-0ed7-410b-8fd1-b9283444bf9b" + }, + { + "routeId": "L548", + "platformId": "U7348Z1", + "id": "1b236b0b-029e-4d5d-8462-e34b4b696a60" + }, + { + "routeId": "L548", + "platformId": "U7348Z2", + "id": "aeb1280e-66a4-42fa-b92e-af780a24f756" + }, + { + "routeId": "L527", + "platformId": "U7348Z2", + "id": "2f098237-fe0b-4f59-8c66-242654c938f9" + }, + { + "routeId": "L14", + "platformId": "U734Z1", + "id": "d7a22049-8cf4-469d-9d07-3857059e4c6d" + }, + { + "routeId": "L14", + "platformId": "U734Z2", + "id": "b54737b6-bbff-4dd5-8663-62252ab72f5d" + }, + { + "routeId": "L705", + "platformId": "U7357Z1", + "id": "bc3a8118-4f38-4b8d-8ed5-09500d63b0cd" + }, + { + "routeId": "L681", + "platformId": "U7357Z1", + "id": "9893952f-02ee-458a-b289-55d356549444" + }, + { + "routeId": "L679", + "platformId": "U7357Z1", + "id": "5314cc00-b2cf-479a-a5ff-2e8487e76e8e" + }, + { + "routeId": "L487", + "platformId": "U7357Z1", + "id": "a6e1966f-4725-4299-bd08-a7b8fe5c9f09" + }, + { + "routeId": "L422", + "platformId": "U7357Z1", + "id": "8495b26d-42ea-4f33-af3a-6e2b2de1af1c" + }, + { + "routeId": "L424", + "platformId": "U7357Z1", + "id": "e6d3bb55-aa3c-426b-a86a-161a63c1f80a" + }, + { + "routeId": "L421", + "platformId": "U7357Z1", + "id": "895c7621-d9d5-4919-96d6-37c665dc5f48" + }, + { + "routeId": "L706", + "platformId": "U7357Z1", + "id": "f56f0756-a196-4362-8251-ce9017a7e411" + }, + { + "routeId": "L705", + "platformId": "U7357Z2", + "id": "8122b504-6e0f-4f2c-ac2e-05b412060fdc" + }, + { + "routeId": "L681", + "platformId": "U7357Z2", + "id": "e25af595-7535-4394-91cc-f8270c77a055" + }, + { + "routeId": "L679", + "platformId": "U7357Z2", + "id": "56b2ba84-cc10-476f-9d4e-5eba4449b5f5" + }, + { + "routeId": "L487", + "platformId": "U7357Z2", + "id": "b5587184-ff4e-4348-b778-b7bad3711d05" + }, + { + "routeId": "L422", + "platformId": "U7357Z2", + "id": "84925780-5fca-40a5-91c4-4f5e72c0ef9a" + }, + { + "routeId": "L424", + "platformId": "U7357Z2", + "id": "06a39657-8524-4fb1-89a7-959e0be5d4b4" + }, + { + "routeId": "L421", + "platformId": "U7357Z2", + "id": "49c2e378-2cf4-4966-ad8d-8f9146d34e80" + }, + { + "routeId": "L706", + "platformId": "U7357Z2", + "id": "e4f54462-ecdd-4bcf-a8dd-f75acc2eb9d4" + }, + { + "routeId": "L126", + "platformId": "U735Z1", + "id": "5687fd5a-9614-468d-8ad7-d2fbf4351b96" + }, + { + "routeId": "L170", + "platformId": "U735Z1", + "id": "0bee26ab-bdbe-472e-abc7-fb8c2782730a" + }, + { + "routeId": "L905", + "platformId": "U735Z1", + "id": "2e98ee76-3b03-4593-bb67-ac4c65ec88b6" + }, + { + "routeId": "L203", + "platformId": "U735Z1", + "id": "1b84cf99-3c49-4704-adb9-ed3733a9dd67" + }, + { + "routeId": "L126", + "platformId": "U735Z2", + "id": "e3f0e859-b0bc-43b0-87e4-477e9758c514" + }, + { + "routeId": "L170", + "platformId": "U735Z2", + "id": "ae9371a7-2f3d-4e1f-9272-5b47fda2684b" + }, + { + "routeId": "L905", + "platformId": "U735Z2", + "id": "60864f91-96cb-4f4d-8e38-0754bcba17ec" + }, + { + "routeId": "L203", + "platformId": "U735Z2", + "id": "64a3a682-b39c-4423-bc84-dd9e5b11025b" + }, + { + "routeId": "L2805", + "platformId": "U7366Z1", + "id": "9bfb0deb-657a-4100-ac13-f47d6b2e4b3a" + }, + { + "routeId": "L2805", + "platformId": "U7366Z2", + "id": "3a74e83e-bf5a-4cbb-b025-9016253a69c8" + }, + { + "routeId": "L2805", + "platformId": "U7368Z1", + "id": "3d404181-7416-4011-b338-2acb5465534b" + }, + { + "routeId": "L2805", + "platformId": "U7368Z2", + "id": "68e2ff96-c263-496e-bccc-14344f57563f" + }, + { + "routeId": "L191", + "platformId": "U737Z1", + "id": "20c1055c-83de-4297-9411-52b0d30d7819" + }, + { + "routeId": "L910", + "platformId": "U737Z1", + "id": "e00e5cdb-2b3e-498a-8f7d-8d183312476c" + }, + { + "routeId": "L191", + "platformId": "U737Z2", + "id": "2bc5076d-21fc-4794-a26e-3855bc1d3316" + }, + { + "routeId": "L910", + "platformId": "U737Z2", + "id": "c30e4c74-567a-4aba-a9f9-3ab17707cb52" + }, + { + "routeId": "L175", + "platformId": "U738Z1", + "id": "26287254-8cb8-48e2-833d-7dbd6e0c29a7" + }, + { + "routeId": "L901", + "platformId": "U738Z1", + "id": "03e08d33-e478-4c24-8820-4aa64414aef7" + }, + { + "routeId": "L906", + "platformId": "U738Z1", + "id": "4583edf6-aa52-45ed-b0df-115e37c74905" + }, + { + "routeId": "L175", + "platformId": "U738Z2", + "id": "d9662b33-3d25-461a-8546-1b1bdba9cdf0" + }, + { + "routeId": "L901", + "platformId": "U738Z2", + "id": "8c48d133-ce3e-4967-9afa-a498601691d2" + }, + { + "routeId": "L906", + "platformId": "U738Z2", + "id": "57bd66b6-6726-477e-ad44-1568a207028d" + }, + { + "routeId": "L6", + "platformId": "U739Z1", + "id": "98219172-5770-478d-8536-84bff163d95b" + }, + { + "routeId": "L10", + "platformId": "U739Z1", + "id": "0fafcbb6-2bb5-444a-be3e-6af14ec3fe1d" + }, + { + "routeId": "L16", + "platformId": "U739Z1", + "id": "1027d812-e94e-429e-85dc-0ed6ca78d0ba" + }, + { + "routeId": "L22", + "platformId": "U739Z1", + "id": "f1b7b2ca-881b-4667-8dc7-bc3235ec16c3" + }, + { + "routeId": "L23", + "platformId": "U739Z1", + "id": "3970549b-5a20-4652-81d9-4971109494f9" + }, + { + "routeId": "L91", + "platformId": "U739Z1", + "id": "9cdfaeb5-b2e5-4db4-a416-b88beebfce78" + }, + { + "routeId": "L96", + "platformId": "U739Z1", + "id": "4f15d16f-0774-4e13-8009-3a2febf99e4b" + }, + { + "routeId": "L97", + "platformId": "U739Z1", + "id": "7a4bd7ad-2ea4-45f1-9b73-16f33d801b0c" + }, + { + "routeId": "L99", + "platformId": "U739Z1", + "id": "e85437f4-6650-4506-b4a1-64a53439c455" + }, + { + "routeId": "L6", + "platformId": "U739Z2", + "id": "b9c830db-c447-492a-b35c-ba0f36562aa9" + }, + { + "routeId": "L10", + "platformId": "U739Z2", + "id": "e84867cf-8a75-4f0a-a6d2-39307cd14301" + }, + { + "routeId": "L16", + "platformId": "U739Z2", + "id": "8c60abad-d856-4175-a9dc-c381e7079a68" + }, + { + "routeId": "L22", + "platformId": "U739Z2", + "id": "a4d59844-b16a-45bb-a6d0-830cb2a51599" + }, + { + "routeId": "L23", + "platformId": "U739Z2", + "id": "a688b657-f0c7-44ea-8b4e-e07fb36df850" + }, + { + "routeId": "L91", + "platformId": "U739Z2", + "id": "09b65dfd-1e5a-4c3c-a169-ce8d83cc7efd" + }, + { + "routeId": "L96", + "platformId": "U739Z2", + "id": "0be8ed79-afbf-4eff-8425-28b55646a1c8" + }, + { + "routeId": "L97", + "platformId": "U739Z2", + "id": "904f5101-42e1-43d4-a80c-c88e91ee44c3" + }, + { + "routeId": "L99", + "platformId": "U739Z2", + "id": "e599a7d2-2b14-4283-88ba-30e3dc86d240" + }, + { + "routeId": "L904", + "platformId": "U739Z3", + "id": "35c29733-0f6d-431f-860d-ea0e897dac4b" + }, + { + "routeId": "L907", + "platformId": "U739Z3", + "id": "6091f8ab-82cf-46b0-a866-7a8fe1e0488a" + }, + { + "routeId": "L908", + "platformId": "U739Z3", + "id": "007c74d7-2d46-4f6e-9130-0912b2863d1b" + }, + { + "routeId": "L910", + "platformId": "U739Z3", + "id": "1e247b45-3379-4123-9917-6ffd146e8362" + }, + { + "routeId": "L20", + "platformId": "U73Z1", + "id": "b2c7aa89-1f32-47d5-9354-19075a50355c" + }, + { + "routeId": "L26", + "platformId": "U73Z1", + "id": "6587121b-3ebd-4e06-ae53-8feb27567bee" + }, + { + "routeId": "L91", + "platformId": "U73Z1", + "id": "ea11b987-0965-4ace-ab01-f9789cedd441" + }, + { + "routeId": "L20", + "platformId": "U73Z2", + "id": "26133356-9ff2-40b6-b623-2511ffede9e2" + }, + { + "routeId": "L26", + "platformId": "U73Z2", + "id": "ffabeba6-41e3-4735-8b07-0cd06b3c20db" + }, + { + "routeId": "L91", + "platformId": "U73Z2", + "id": "7ecb749b-797e-4064-bdb2-53458bac8325" + }, + { + "routeId": "L234", + "platformId": "U7406Z1", + "id": "373b78b9-6451-4429-a6c1-5ace8ede735e" + }, + { + "routeId": "L187", + "platformId": "U7406Z3", + "id": "50e50adb-a8fd-4a59-9d3d-eb0d6696b836" + }, + { + "routeId": "L234", + "platformId": "U7406Z3", + "id": "51d471fa-3c8f-41f9-a46c-549bfa3de1df" + }, + { + "routeId": "L10", + "platformId": "U740Z1", + "id": "c854f741-8620-4b3a-a44d-e9fc7a8e66c3" + }, + { + "routeId": "L93", + "platformId": "U740Z1", + "id": "0a7126cc-36d8-4ece-8b64-261c8a79dc35" + }, + { + "routeId": "L10", + "platformId": "U740Z2", + "id": "a3f2fc5d-703b-4102-9582-5ca044d7979b" + }, + { + "routeId": "L93", + "platformId": "U740Z2", + "id": "cf95136e-c6ce-4e68-8a07-479574c2daf9" + }, + { + "routeId": "L152", + "platformId": "U740Z3", + "id": "a08f56da-fd36-4df0-8541-252920474ac8" + }, + { + "routeId": "L177", + "platformId": "U740Z3", + "id": "3a366fa0-f536-4d8e-bf8c-9bf8c1567e93" + }, + { + "routeId": "L913", + "platformId": "U740Z3", + "id": "37756ab6-8b02-4347-a85c-9d5c8f3e53a3" + }, + { + "routeId": "L103", + "platformId": "U740Z3", + "id": "bcefe495-7112-49fd-978e-661982a4156d" + }, + { + "routeId": "L283", + "platformId": "U740Z3", + "id": "4720f03e-0810-4cee-8c91-7f88b7b36b37" + }, + { + "routeId": "L152", + "platformId": "U740Z4", + "id": "029ff427-fde3-4a18-b815-c5f9b1f69fa5" + }, + { + "routeId": "L177", + "platformId": "U740Z4", + "id": "4d3eda6f-a4e5-470e-bd16-bfd05bdb845a" + }, + { + "routeId": "L913", + "platformId": "U740Z4", + "id": "66d8c8f4-7010-4412-b62b-fa2dcaadd30c" + }, + { + "routeId": "L103", + "platformId": "U740Z4", + "id": "27ba3907-9cd7-41b0-b15b-bac187724215" + }, + { + "routeId": "L283", + "platformId": "U740Z4", + "id": "f567beaf-d975-4321-afe9-c4ebf5eed334" + }, + { + "routeId": "L481", + "platformId": "U7413Z1", + "id": "8b7ff9a7-5fec-4749-a58b-a7f2578265cd" + }, + { + "routeId": "L481", + "platformId": "U7413Z2", + "id": "8f90c5fe-c487-4ec7-97fe-7e08af789f7b" + }, + { + "routeId": "L481", + "platformId": "U7414Z1", + "id": "3d3c87a1-8833-44cf-bb52-4dee4a1a8647" + }, + { + "routeId": "L481", + "platformId": "U7414Z2", + "id": "8cdf84c9-7f17-4ca3-b9bf-97d30e8bc3b9" + }, + { + "routeId": "L790", + "platformId": "U7415Z1", + "id": "277aa3b8-18e9-4484-b566-849b93eb495f" + }, + { + "routeId": "L790", + "platformId": "U7415Z2", + "id": "702e9bbf-d2af-45f0-aad4-ab1bccf237b8" + }, + { + "routeId": "L798", + "platformId": "U7416Z1", + "id": "19653ae4-c7c3-46bf-8bdb-6a5a59850e5f" + }, + { + "routeId": "L798", + "platformId": "U7416Z2", + "id": "ae9fca70-9896-4db3-8b03-03e4484af3c3" + }, + { + "routeId": "L798", + "platformId": "U7417Z1", + "id": "9292ed5f-24a9-4447-893b-bcc8fd045b76" + }, + { + "routeId": "L798", + "platformId": "U7417Z2", + "id": "bcd2bd8e-af27-4d53-8b51-6154ef08cbc1" + }, + { + "routeId": "L798", + "platformId": "U7418Z1", + "id": "a8925175-f0af-4d94-8b26-2f72df0b9fc8" + }, + { + "routeId": "L798", + "platformId": "U7418Z2", + "id": "23c91246-373a-436b-80a2-2ad04f1db1a8" + }, + { + "routeId": "L2846", + "platformId": "U7419Z1", + "id": "545545ab-062a-40ce-b407-442f96fa0d26" + }, + { + "routeId": "L406", + "platformId": "U7419Z1", + "id": "0463d838-2cab-4320-ba50-01f9f35a067c" + }, + { + "routeId": "L2847", + "platformId": "U7419Z1", + "id": "85dbbf66-8917-4df0-a55f-022723611838" + }, + { + "routeId": "L406", + "platformId": "U7419Z2", + "id": "75c2edca-8629-4e46-966e-30e5a886448c" + }, + { + "routeId": "L2847", + "platformId": "U7419Z2", + "id": "07f3c293-ee31-44a8-89c6-c7b58f528f63" + }, + { + "routeId": "L229", + "platformId": "U741Z1", + "id": "b8560737-3e12-4ab0-bb57-26cdb2092bcb" + }, + { + "routeId": "L173", + "platformId": "U741Z1", + "id": "8d7dc75c-7bca-4ebb-bdff-b470043f75f8" + }, + { + "routeId": "L908", + "platformId": "U741Z1", + "id": "f635e14c-a461-4fad-9ad1-049fdfbdce98" + }, + { + "routeId": "L204", + "platformId": "U741Z1", + "id": "4fddd502-fbe8-461e-9eeb-fce9ce97aa2c" + }, + { + "routeId": "L903", + "platformId": "U741Z1", + "id": "7ad9c4f9-0fda-496b-952f-d6d27afd4bc6" + }, + { + "routeId": "L366", + "platformId": "U741Z1", + "id": "f8a1e3e8-320a-41ea-a072-1970f0a09eb6" + }, + { + "routeId": "L364", + "platformId": "U741Z1", + "id": "0bfbb101-7ae9-402b-830b-0df46dd86fcc" + }, + { + "routeId": "L229", + "platformId": "U741Z2", + "id": "3ebad66a-bf1a-4ad6-8061-a94381c02021" + }, + { + "routeId": "L173", + "platformId": "U741Z2", + "id": "441b793f-4941-4fe4-a8f3-78560dac47e8" + }, + { + "routeId": "L908", + "platformId": "U741Z2", + "id": "5452e9ce-09d5-47ca-bf5f-e43a74e913c4" + }, + { + "routeId": "L163", + "platformId": "U741Z2", + "id": "cb2eb8ea-5687-4dc5-b1ed-85eb835a6b36" + }, + { + "routeId": "L208", + "platformId": "U741Z2", + "id": "7163e6f6-de85-4815-89d5-9acdcabd2b8c" + }, + { + "routeId": "L903", + "platformId": "U741Z2", + "id": "b1526485-4c49-4d07-ae61-fe476a5e417d" + }, + { + "routeId": "L228", + "platformId": "U741Z2", + "id": "ac9d2fd9-cee7-448d-a0de-ce13b4cf6e85" + }, + { + "routeId": "L366", + "platformId": "U741Z2", + "id": "27a8b32f-ca9d-429d-8378-0c3afe18e6c5" + }, + { + "routeId": "L364", + "platformId": "U741Z2", + "id": "29cee6f8-cc59-442c-a8bd-342e3fdbfbb6" + }, + { + "routeId": "L163", + "platformId": "U741Z3", + "id": "a532a646-80eb-48d5-9874-386da590ca57" + }, + { + "routeId": "L208", + "platformId": "U741Z3", + "id": "8b2d915f-14d0-444b-a10d-697727f9db91" + }, + { + "routeId": "L204", + "platformId": "U741Z3", + "id": "c06dcd8b-5208-408b-a9ef-01d0bca2e043" + }, + { + "routeId": "L903", + "platformId": "U741Z3", + "id": "7ee4241e-c2cb-4473-b777-5f49c3583ec4" + }, + { + "routeId": "L228", + "platformId": "U741Z3", + "id": "dfcee9b0-1580-497b-8ab2-94b5cb1a6530" + }, + { + "routeId": "L406", + "platformId": "U7421Z1", + "id": "7bf885a9-982d-405e-b2b0-a1a215532c99" + }, + { + "routeId": "L406", + "platformId": "U7421Z2", + "id": "5f0250a7-4835-4d9a-91de-c6dde78ea9f8" + }, + { + "routeId": "L2849", + "platformId": "U7423Z1", + "id": "cdafc418-33a0-4570-af2c-7aedb0b7ba51" + }, + { + "routeId": "L2849", + "platformId": "U7423Z2", + "id": "2027e794-16ef-48ad-96a0-a99fbc5d9589" + }, + { + "routeId": "L2849", + "platformId": "U7424Z1", + "id": "91e44be9-398d-4031-a9fd-fd9920e453e8" + }, + { + "routeId": "L2849", + "platformId": "U7424Z2", + "id": "4bae2dd8-f389-4501-9d9a-05e9c726211f" + }, + { + "routeId": "L406", + "platformId": "U7425Z1", + "id": "a362cf46-bd18-4d83-b7df-577e8a45e12b" + }, + { + "routeId": "L406", + "platformId": "U7425Z2", + "id": "158fb5c5-a867-4a00-b452-f11d434e30e4" + }, + { + "routeId": "L2849", + "platformId": "U7426Z1", + "id": "60f56178-c72f-4c44-886e-a4b8093aecaa" + }, + { + "routeId": "L2849", + "platformId": "U7426Z2", + "id": "680de1e9-c958-4dd6-863c-9fb18ed5356c" + }, + { + "routeId": "L406", + "platformId": "U7428Z1", + "id": "02363339-1ebf-4ff8-8fce-2ee118525f32" + }, + { + "routeId": "L406", + "platformId": "U7428Z2", + "id": "978e160c-6533-487d-bf1f-3dc7f576a7d3" + }, + { + "routeId": "L2847", + "platformId": "U7429Z1", + "id": "b6972f87-0eac-49aa-ac90-d0fb7045cc21" + }, + { + "routeId": "L2847", + "platformId": "U7429Z2", + "id": "a4f4a2c7-9a68-4372-9730-9d78e285dda5" + }, + { + "routeId": "L163", + "platformId": "U742Z3", + "id": "49ed5069-8f4e-4084-81c1-baa3813a7aa2" + }, + { + "routeId": "L204", + "platformId": "U742Z3", + "id": "d109c0c7-9381-4045-b6b6-eb31eb55f7f3" + }, + { + "routeId": "L163", + "platformId": "U742Z4", + "id": "6acbbd49-4e77-447a-9b15-87c02d77fc09" + }, + { + "routeId": "L204", + "platformId": "U742Z4", + "id": "92f2a4da-3f66-4f4a-98e1-cd3dbd726af9" + }, + { + "routeId": "L903", + "platformId": "U742Z4", + "id": "01db66da-1e79-4fe9-9e3c-450a7ad5949d" + }, + { + "routeId": "L796", + "platformId": "U7430Z1", + "id": "fc461af1-df66-452a-bc03-7242a63815fa" + }, + { + "routeId": "L796", + "platformId": "U7430Z2", + "id": "253e34bb-9f2e-468f-83d4-a6d9ea3ca097" + }, + { + "routeId": "L796", + "platformId": "U7431Z1", + "id": "7d553da8-197a-422d-8c69-d1a6fb42aae2" + }, + { + "routeId": "L796", + "platformId": "U7431Z2", + "id": "ed920150-27dc-4283-a04b-9ead3242954a" + }, + { + "routeId": "L791", + "platformId": "U7434Z1", + "id": "c48cc933-e6ea-44a8-a647-e241a478b21a" + }, + { + "routeId": "L791", + "platformId": "U7434Z2", + "id": "bfd68b70-f47d-484d-a012-482b91824fe4" + }, + { + "routeId": "L791", + "platformId": "U7435Z1", + "id": "27020751-3a56-4ee2-a682-e4b409ea42b4" + }, + { + "routeId": "L791", + "platformId": "U7435Z2", + "id": "de6866e4-58fb-448a-b31f-384b2991c3ec" + }, + { + "routeId": "L520", + "platformId": "U7438Z1", + "id": "9cded606-72b9-4957-9ab9-1b0b2c8b15d2" + }, + { + "routeId": "L520", + "platformId": "U7438Z2", + "id": "a6392e49-2754-491f-b1df-c099674fb57e" + }, + { + "routeId": "L136", + "platformId": "U743Z1", + "id": "587a369b-e202-4ced-8332-b775e3f8338d" + }, + { + "routeId": "L175", + "platformId": "U743Z1", + "id": "c989c445-bd29-439e-ad4d-8bc23a6e460f" + }, + { + "routeId": "L913", + "platformId": "U743Z1", + "id": "28fa3aee-6ded-422a-afb0-bc643bd1b480" + }, + { + "routeId": "L136", + "platformId": "U743Z2", + "id": "41e9bd57-61ad-4af3-973f-1bc1d1a0636c" + }, + { + "routeId": "L175", + "platformId": "U743Z2", + "id": "8bf01c87-5af6-4835-8e20-3f568ac2ef74" + }, + { + "routeId": "L913", + "platformId": "U743Z2", + "id": "f8147f36-6fc7-4cbf-93b6-0228afe0ee74" + }, + { + "routeId": "L420", + "platformId": "U7440Z1", + "id": "84991073-699d-43d4-91f8-d5b3c0d9efbc" + }, + { + "routeId": "L520", + "platformId": "U7440Z1", + "id": "a0497710-2cd2-41c0-bd1b-6ce83c56f0b9" + }, + { + "routeId": "L420", + "platformId": "U7440Z2", + "id": "f602757c-b2ab-4b06-bfe5-b026b7eb8187" + }, + { + "routeId": "L520", + "platformId": "U7440Z3", + "id": "67d08943-0565-4fd1-85ec-5e2828019a1d" + }, + { + "routeId": "L2842", + "platformId": "U7441Z1", + "id": "7e84f79a-cf97-4743-b84a-256fbb685de8" + }, + { + "routeId": "L2842", + "platformId": "U7441Z2", + "id": "a922ffd9-860a-4bc0-b6de-ee8c77ed053b" + }, + { + "routeId": "L791", + "platformId": "U7442Z1", + "id": "a08f6934-f61d-44b5-b0aa-00f4b25d1a6c" + }, + { + "routeId": "L791", + "platformId": "U7442Z2", + "id": "497c5401-55f7-4b7d-ac11-66ac7e691ed6" + }, + { + "routeId": "L791", + "platformId": "U7443Z1", + "id": "f327d7e7-7dac-4f37-98bd-7a35d22aa673" + }, + { + "routeId": "L793", + "platformId": "U7443Z2", + "id": "caef450e-8f5e-4d8f-b7e6-6b680b3b523d" + }, + { + "routeId": "L791", + "platformId": "U7443Z2", + "id": "3f6727c6-16ad-4f0a-9a36-38027cb4e25d" + }, + { + "routeId": "L790", + "platformId": "U7444Z1", + "id": "428e4ce2-8747-4b1a-a676-fffd5b276990" + }, + { + "routeId": "L793", + "platformId": "U7444Z1", + "id": "33047ebd-3d43-404b-8b99-34428ba04b33" + }, + { + "routeId": "L791", + "platformId": "U7444Z1", + "id": "e87f5c3b-b193-4258-8184-cf3f3604ab0a" + }, + { + "routeId": "L793", + "platformId": "U7444Z2", + "id": "faa1ff37-cbb0-47d2-83e9-73db876af055" + }, + { + "routeId": "L790", + "platformId": "U7444Z2", + "id": "8d030cc4-c534-408c-9482-a7b7ee88c935" + }, + { + "routeId": "L791", + "platformId": "U7444Z2", + "id": "ca6bf764-5ce3-4376-996c-d4c7f880e7bf" + }, + { + "routeId": "L793", + "platformId": "U7445Z1", + "id": "64775ab0-e4ac-4a15-b767-b68ac8b2dcee" + }, + { + "routeId": "L793", + "platformId": "U7445Z2", + "id": "ba929127-f975-4f26-978d-0cabd3d98a7d" + }, + { + "routeId": "L790", + "platformId": "U7446Z1", + "id": "93c90596-344d-4cb4-b0e8-fd8087529d93" + }, + { + "routeId": "L790", + "platformId": "U7446Z2", + "id": "528111dd-bb29-42b8-bc72-85c52b816e09" + }, + { + "routeId": "L791", + "platformId": "U7447Z1", + "id": "51f8a4d1-27fe-409b-b635-7e56a1296bdd" + }, + { + "routeId": "L791", + "platformId": "U7447Z2", + "id": "24e6d19a-fdd8-4cce-a771-91234601137b" + }, + { + "routeId": "L793", + "platformId": "U7448Z2", + "id": "e0242acc-4b69-4abb-a4be-127f1317732b" + }, + { + "routeId": "L791", + "platformId": "U7449Z1", + "id": "292a823b-1839-4fd3-90ba-e3d9e2dc3ea0" + }, + { + "routeId": "L791", + "platformId": "U7449Z2", + "id": "2f5da7ce-1e89-45e8-aac4-f8154a5b234f" + }, + { + "routeId": "L10", + "platformId": "U744Z1", + "id": "2221592d-4869-4935-bbd8-4916a4b6c694" + }, + { + "routeId": "L16", + "platformId": "U744Z1", + "id": "3d11e4ad-f243-467f-9b0f-5c33265c8287" + }, + { + "routeId": "L91", + "platformId": "U744Z1", + "id": "945badb2-9c6e-4a03-8e68-a43a395df9c5" + }, + { + "routeId": "L10", + "platformId": "U744Z2", + "id": "dbfb85ba-75f9-4eb7-b36f-f2d3cac471e7" + }, + { + "routeId": "L16", + "platformId": "U744Z2", + "id": "1c21e48d-0d94-4634-b3ff-e9efc704470c" + }, + { + "routeId": "L91", + "platformId": "U744Z2", + "id": "3ec9ccc8-34b7-4b05-a2ef-2385b3a69c67" + }, + { + "routeId": "L791", + "platformId": "U7450Z1", + "id": "fdb617cb-43bb-41c5-825f-564139309028" + }, + { + "routeId": "L791", + "platformId": "U7450Z2", + "id": "f1042da8-f9ad-4b91-a4bf-5ff46d33599d" + }, + { + "routeId": "L791", + "platformId": "U7453Z1", + "id": "84cb363f-5f44-475c-a815-d64c4a835a70" + }, + { + "routeId": "L791", + "platformId": "U7453Z2", + "id": "49a8968b-542c-4baa-acae-dfd94067a6f0" + }, + { + "routeId": "L791", + "platformId": "U7454Z1", + "id": "3f7140a5-82fe-4322-b950-c93e52e4773d" + }, + { + "routeId": "L791", + "platformId": "U7454Z2", + "id": "5d0cfa1c-b652-4b64-b0fa-71742711fc46" + }, + { + "routeId": "L420", + "platformId": "U7457Z1", + "id": "3bfcb660-1f78-4e4f-8f57-0ccf79e717d6" + }, + { + "routeId": "L420", + "platformId": "U7457Z2", + "id": "10aee6fe-85c5-4091-b7bb-f14508446d19" + }, + { + "routeId": "L500", + "platformId": "U7457Z3", + "id": "2c86bbb8-dfd9-45da-b782-2ccdc9507a6b" + }, + { + "routeId": "L420", + "platformId": "U7459Z1", + "id": "27d92270-73fc-4f8f-96e5-86a2a41e5c9f" + }, + { + "routeId": "L500", + "platformId": "U7459Z1", + "id": "bd61677b-7f16-4426-83dc-e7b009facc1f" + }, + { + "routeId": "L420", + "platformId": "U7459Z2", + "id": "4732f485-c8f4-4bc4-8a28-7413c1e68531" + }, + { + "routeId": "L500", + "platformId": "U7459Z2", + "id": "f1930f3c-4e0e-4eea-a55c-a05a0764ec5e" + }, + { + "routeId": "L133", + "platformId": "U745Z1", + "id": "95df3d5d-a720-4021-9534-57ad63ae50ff" + }, + { + "routeId": "L175", + "platformId": "U745Z1", + "id": "33ec18b3-eeeb-4364-a0b1-33c108318234" + }, + { + "routeId": "L207", + "platformId": "U745Z1", + "id": "fa742730-5c81-4116-bbaa-f70a61a149cd" + }, + { + "routeId": "L908", + "platformId": "U745Z1", + "id": "53d2d885-8ee4-4105-ba38-38d6a70fc3fc" + }, + { + "routeId": "L909", + "platformId": "U745Z1", + "id": "56be34ab-5484-40d2-8aad-2fff300112b7" + }, + { + "routeId": "L133", + "platformId": "U745Z2", + "id": "16c3b6a5-b53a-4927-b9ad-fd6e914a2b95" + }, + { + "routeId": "L175", + "platformId": "U745Z2", + "id": "bb5c7efd-9b8b-4e15-a32e-f861d67c1b6a" + }, + { + "routeId": "L207", + "platformId": "U745Z2", + "id": "4668bb5e-90c2-4825-a552-61c970add174" + }, + { + "routeId": "L908", + "platformId": "U745Z2", + "id": "1bb97a58-a281-47b3-aada-3a19af05b7b6" + }, + { + "routeId": "L909", + "platformId": "U745Z2", + "id": "9bdbe24b-2e52-4f41-a29a-d683a495ff97" + }, + { + "routeId": "L420", + "platformId": "U7461Z1", + "id": "893213bb-bbd2-45e5-9f12-381da3ae33a4" + }, + { + "routeId": "L420", + "platformId": "U7461Z2", + "id": "06a5dc29-1198-4002-a6c0-1a8dc6f42992" + }, + { + "routeId": "L500", + "platformId": "U7462Z1", + "id": "d1cb6749-7fb9-45a4-af3d-ca6eeaed07be" + }, + { + "routeId": "L500", + "platformId": "U7462Z2", + "id": "cc4b08c0-5b20-4606-a3a4-84838014ff4b" + }, + { + "routeId": "L420", + "platformId": "U7463Z1", + "id": "a2e74593-42b9-47c3-81f7-236a31b1f122" + }, + { + "routeId": "L500", + "platformId": "U7463Z1", + "id": "222cfbb4-1fca-4376-9d81-3bb5ff2107f9" + }, + { + "routeId": "L420", + "platformId": "U7463Z2", + "id": "eaae97e9-1db8-4531-a130-3947afec1e18" + }, + { + "routeId": "L500", + "platformId": "U7463Z2", + "id": "d70eb5bc-83e7-4641-bddf-2b2b96bcb55a" + }, + { + "routeId": "L420", + "platformId": "U7466Z1", + "id": "999cb85b-b3b7-42b8-a971-9fb0946d37fe" + }, + { + "routeId": "L500", + "platformId": "U7466Z1", + "id": "7a6e8cad-bfd1-4188-8a25-96c3de22b5d0" + }, + { + "routeId": "L420", + "platformId": "U7466Z2", + "id": "a670dfa3-8332-4353-8ef6-0a50ed4d206d" + }, + { + "routeId": "L500", + "platformId": "U7466Z2", + "id": "153366ff-9593-4e9f-a24b-30a28e58a849" + }, + { + "routeId": "L247", + "platformId": "U746Z1", + "id": "ce6f1f7b-e7e6-49d8-bdf4-a414fda175d8" + }, + { + "routeId": "L244", + "platformId": "U746Z1", + "id": "54c8ead6-d488-45b7-9d45-bbd5b8d5e20a" + }, + { + "routeId": "L246", + "platformId": "U746Z1", + "id": "aaf73f1d-3007-4b87-8d04-9704cd3af672" + }, + { + "routeId": "L247", + "platformId": "U746Z2", + "id": "727406b2-2807-4048-92c0-67a848cb7c85" + }, + { + "routeId": "L244", + "platformId": "U746Z2", + "id": "e3414071-db0b-41f9-95b7-b9eaa957c47a" + }, + { + "routeId": "L246", + "platformId": "U746Z2", + "id": "da913e5b-2bf7-48e1-8ad1-fad517437833" + }, + { + "routeId": "L2842", + "platformId": "U7470Z2", + "id": "7a1bfae0-9bb1-44b0-85ae-20f0ca209bc5" + }, + { + "routeId": "L2844", + "platformId": "U7470Z2", + "id": "cbe22c26-e122-419c-96a4-456e09b17168" + }, + { + "routeId": "L2842", + "platformId": "U7471Z1", + "id": "8c6f83b9-eb09-4332-8efb-a398cd0986d5" + }, + { + "routeId": "L2844", + "platformId": "U7471Z1", + "id": "b9c2c839-811d-4c92-bec7-a59d70eef3d4" + }, + { + "routeId": "L2842", + "platformId": "U7471Z2", + "id": "de73f209-aa7f-4896-976c-20353890758e" + }, + { + "routeId": "L2844", + "platformId": "U7471Z2", + "id": "60bc3ff3-1781-465e-bb43-3dc9d5783073" + }, + { + "routeId": "L2844", + "platformId": "U7472Z1", + "id": "0c474b25-4d6f-4b01-b0c9-84e232b3db40" + }, + { + "routeId": "L2844", + "platformId": "U7472Z2", + "id": "ec711548-9a64-4392-bafe-48f0b3fd3788" + }, + { + "routeId": "L2844", + "platformId": "U7474Z1", + "id": "dcea0c56-5ea1-448e-a34e-7afacdc69db8" + }, + { + "routeId": "L2844", + "platformId": "U7474Z2", + "id": "fdfc3af8-5b7e-4812-9089-63afa949c65f" + }, + { + "routeId": "L2844", + "platformId": "U7475Z1", + "id": "b16babcd-d139-4b67-b6fc-94e73458d996" + }, + { + "routeId": "L2844", + "platformId": "U7475Z2", + "id": "169ca986-633a-453e-b66a-4b952ca9c620" + }, + { + "routeId": "L2844", + "platformId": "U7476Z1", + "id": "adf3ed70-dd01-48f2-a5cc-8c31b2701232" + }, + { + "routeId": "L2844", + "platformId": "U7476Z2", + "id": "16656705-10c1-436e-8ef4-d13603284102" + }, + { + "routeId": "L482", + "platformId": "U7477Z1", + "id": "5084eafe-12c3-4f5b-83cd-e8fb64f50d00" + }, + { + "routeId": "L482", + "platformId": "U7477Z2", + "id": "9c72830c-e55e-4b64-ad02-c03020cd83ba" + }, + { + "routeId": "L754", + "platformId": "U7479Z1", + "id": "f0475702-63cb-4126-9059-a340d65db321" + }, + { + "routeId": "L754", + "platformId": "U7479Z2", + "id": "a87f9f9b-772b-4a9b-bd34-be7c32b8cfe9" + }, + { + "routeId": "L181", + "platformId": "U747Z1", + "id": "e9d01060-96bc-40af-badf-03da9352da10" + }, + { + "routeId": "L183", + "platformId": "U747Z1", + "id": "917bdab4-f083-425a-a7b2-19e512558670" + }, + { + "routeId": "L181", + "platformId": "U747Z2", + "id": "34cdaa5f-57f2-40ac-8753-2b22f684e497" + }, + { + "routeId": "L183", + "platformId": "U747Z2", + "id": "84cc0928-1477-4d32-bcd0-b8c31e925727" + }, + { + "routeId": "L754", + "platformId": "U7480Z1", + "id": "95be112d-cfc5-4c4d-81d3-aeeeed378818" + }, + { + "routeId": "L754", + "platformId": "U7480Z2", + "id": "5e6ada48-65e4-450f-8b65-fa7f097a0902" + }, + { + "routeId": "L514", + "platformId": "U7482Z1", + "id": "cac7c7c4-76c5-44aa-a01d-d25ff4b97fd1" + }, + { + "routeId": "L514", + "platformId": "U7482Z2", + "id": "1adda321-169f-4f03-89bd-ab1b16d4b698" + }, + { + "routeId": "L646", + "platformId": "U7484Z1", + "id": "721f4c55-79a7-4256-a982-d164135da077" + }, + { + "routeId": "L646", + "platformId": "U7484Z2", + "id": "1d2ccddd-13e3-4c9e-b0b5-531f59073cd8" + }, + { + "routeId": "L514", + "platformId": "U7485Z1", + "id": "84043456-9987-49d3-86de-edf5e6934e03" + }, + { + "routeId": "L514", + "platformId": "U7485Z2", + "id": "10a0753b-ca35-4763-8d06-d3360bbfb89a" + }, + { + "routeId": "L514", + "platformId": "U7486Z1", + "id": "9b2de75c-2c44-436c-893e-3f89e04bcf9c" + }, + { + "routeId": "L514", + "platformId": "U7486Z2", + "id": "3b9ec54d-57bc-4880-95d3-4d8fe9ed261c" + }, + { + "routeId": "L514", + "platformId": "U7487Z1", + "id": "16264395-266b-4dc2-b3b4-a36654b1a8b8" + }, + { + "routeId": "L514", + "platformId": "U7487Z2", + "id": "4046d660-168a-4771-b465-9a3265ad76ce" + }, + { + "routeId": "L191", + "platformId": "U748Z1", + "id": "b6e8ce14-5cef-46da-927a-c9bb4cbe8474" + }, + { + "routeId": "L910", + "platformId": "U748Z1", + "id": "6a73888d-36bb-4224-99cf-b3f29949bd7a" + }, + { + "routeId": "L191", + "platformId": "U748Z2", + "id": "b70154d6-6755-44a6-91c4-652a1f59af27" + }, + { + "routeId": "L910", + "platformId": "U748Z2", + "id": "a9633d5d-439c-4d10-9d85-3f69af2d6b23" + }, + { + "routeId": "L754", + "platformId": "U7493Z1", + "id": "affb5c2c-e816-48b2-8024-ac5f940a5a91" + }, + { + "routeId": "L754", + "platformId": "U7493Z2", + "id": "63777574-5707-46e1-a59b-89dedaf4cf33" + }, + { + "routeId": "L646", + "platformId": "U7494Z1", + "id": "d7542905-1179-460d-b44c-c7d2b81f69ed" + }, + { + "routeId": "L646", + "platformId": "U7494Z2", + "id": "d343900b-67a1-4f3f-9641-d3becffffc60" + }, + { + "routeId": "L754", + "platformId": "U7497Z1", + "id": "5b8f6198-a70c-4c6c-ab94-c110c7e11db6" + }, + { + "routeId": "L754", + "platformId": "U7497Z2", + "id": "0d033f86-d8f6-431a-b2b6-c5cf93b1d778" + }, + { + "routeId": "L754", + "platformId": "U7499Z1", + "id": "56cfbd2a-9fda-49cc-836d-108b28cc77c2" + }, + { + "routeId": "L754", + "platformId": "U7499Z2", + "id": "12a2803d-45bf-4e5f-b463-db442f4062e8" + }, + { + "routeId": "L113", + "platformId": "U749Z1", + "id": "3bac80dc-9a49-4102-8110-8a71375c6379" + }, + { + "routeId": "L215", + "platformId": "U749Z1", + "id": "8faeb6be-5d07-4d69-8970-29a5f71872ef" + }, + { + "routeId": "L189", + "platformId": "U749Z1", + "id": "4c3fd2d2-7b84-4522-ba7e-337acc686191" + }, + { + "routeId": "L904", + "platformId": "U749Z1", + "id": "42663b3f-6184-4777-afe4-e739772c3d59" + }, + { + "routeId": "L333", + "platformId": "U749Z1", + "id": "91d0d0b0-7486-42e5-9ded-18f6820a487c" + }, + { + "routeId": "L960", + "platformId": "U749Z1", + "id": "a7f50442-0fa2-420c-b994-adb605788f98" + }, + { + "routeId": "L113", + "platformId": "U749Z2", + "id": "a374ab70-4615-40aa-9a4c-a232b166988b" + }, + { + "routeId": "L189", + "platformId": "U749Z2", + "id": "d86c0809-8db1-4f71-9978-e6f058b0cf7b" + }, + { + "routeId": "L215", + "platformId": "U749Z2", + "id": "a12e8570-bfc7-4424-9c8b-87cfc74c4fef" + }, + { + "routeId": "L904", + "platformId": "U749Z2", + "id": "6c6c3276-54a5-45bc-9023-a3ee57f2a660" + }, + { + "routeId": "L333", + "platformId": "U749Z2", + "id": "0aec5e71-22e4-4430-a697-30d0d290f1d5" + }, + { + "routeId": "L960", + "platformId": "U749Z2", + "id": "5bec9200-952f-4555-b3e6-b8549022f140" + }, + { + "routeId": "L145", + "platformId": "U74Z1", + "id": "2b0dfca5-d344-4ee3-8c5c-0472e9d46349" + }, + { + "routeId": "L152", + "platformId": "U74Z1", + "id": "31124fb4-1beb-47a3-960b-a879bc0f75d3" + }, + { + "routeId": "L202", + "platformId": "U74Z1", + "id": "ee0b005b-65ac-4020-96c5-5f0a74ac3508" + }, + { + "routeId": "L905", + "platformId": "U74Z1", + "id": "8f1464c2-25c0-4963-bec1-a3390e553e3e" + }, + { + "routeId": "L145", + "platformId": "U74Z2", + "id": "89c682a1-87a1-4d40-9091-b384744430ff" + }, + { + "routeId": "L152", + "platformId": "U74Z2", + "id": "e1641429-eb15-4f30-8e22-15e2ce4368d1" + }, + { + "routeId": "L202", + "platformId": "U74Z2", + "id": "55af6e0c-cf36-45b4-9081-a38116141f1e" + }, + { + "routeId": "L905", + "platformId": "U74Z2", + "id": "32c72f5f-f513-4b83-a931-dc66345634f2" + }, + { + "routeId": "L2842", + "platformId": "U7501Z1", + "id": "f751d616-84a6-48de-8aec-7c87167acfbd" + }, + { + "routeId": "L495", + "platformId": "U7502Z1", + "id": "722e8918-8972-406d-b2f9-23a0d63858ef" + }, + { + "routeId": "L495", + "platformId": "U7502Z2", + "id": "7284d342-7617-4dcb-b160-bf21152fedb6" + }, + { + "routeId": "L495", + "platformId": "U7503Z1", + "id": "2183cd61-17f7-47ea-8bd1-1f592c04d11e" + }, + { + "routeId": "L495", + "platformId": "U7503Z2", + "id": "e570ca70-2bd9-4e3e-af21-c419d8c8a1e3" + }, + { + "routeId": "L482", + "platformId": "U7504Z1", + "id": "4e8b0670-8d3a-4f8e-bab4-4d66232c478e" + }, + { + "routeId": "L482", + "platformId": "U7504Z2", + "id": "eaf94c65-58d1-4790-a4f1-2841382b4c0b" + }, + { + "routeId": "L754", + "platformId": "U7509Z1", + "id": "fe2570b9-716b-4526-9ee0-191dffaa0f9a" + }, + { + "routeId": "L754", + "platformId": "U7509Z2", + "id": "4275b03b-c5d6-4a55-91f3-b3506d8643e2" + }, + { + "routeId": "L909", + "platformId": "U750Z1", + "id": "ccd02747-0edd-4fe7-96bf-ff2f21a62746" + }, + { + "routeId": "L171", + "platformId": "U750Z1", + "id": "0e239c87-bd50-4d15-8db3-ce8e927408b5" + }, + { + "routeId": "L909", + "platformId": "U750Z2", + "id": "4fd4204e-1dcf-4569-9f7f-d600fe300fac" + }, + { + "routeId": "L171", + "platformId": "U750Z2", + "id": "dfbb7675-fbdd-49b2-9773-4874afbc5248" + }, + { + "routeId": "L2260", + "platformId": "U7510Z401", + "id": "c7f08743-9bef-4649-83e4-51a0c3dbc40e" + }, + { + "routeId": "L2260", + "platformId": "U7510Z402", + "id": "38216ec0-3c7b-4e32-87e9-17dedb7f3bae" + }, + { + "routeId": "L795", + "platformId": "U7512Z1", + "id": "9e5b3963-cb37-4440-b3ac-1b086969c4c2" + }, + { + "routeId": "L795", + "platformId": "U7512Z2", + "id": "d5b0a355-2f80-4e05-8653-664238eddd82" + }, + { + "routeId": "L795", + "platformId": "U7513Z1", + "id": "3d66c88d-a2b3-477f-92d1-b8602090609d" + }, + { + "routeId": "L795", + "platformId": "U7513Z2", + "id": "198d0d16-2f1d-42ea-9703-384d6145edad" + }, + { + "routeId": "L11", + "platformId": "U751Z1", + "id": "480d463b-e0e0-410e-9931-52359c7d723d" + }, + { + "routeId": "L14", + "platformId": "U751Z1", + "id": "cb2756ea-bb20-48c4-906a-aeb7744ed5b3" + }, + { + "routeId": "L96", + "platformId": "U751Z1", + "id": "0a261ded-2e56-448e-8d42-b132190d9b91" + }, + { + "routeId": "L135", + "platformId": "U751Z1", + "id": "5447663c-de47-48da-a75c-3b13e92ff698" + }, + { + "routeId": "L136", + "platformId": "U751Z1", + "id": "fca5dd3e-a74a-4906-a10b-20cfbdfd056d" + }, + { + "routeId": "L213", + "platformId": "U751Z1", + "id": "eb652ff7-b19d-4b1b-afb3-1f17fd92eb79" + }, + { + "routeId": "L913", + "platformId": "U751Z1", + "id": "c9f5222f-1a77-48c0-a66e-cd49263a3ee3" + }, + { + "routeId": "L11", + "platformId": "U751Z2", + "id": "b2cefc3e-000a-4a07-9b37-64b4185daf44" + }, + { + "routeId": "L14", + "platformId": "U751Z2", + "id": "1432a1ef-d712-4d56-a23f-716a69c0a92b" + }, + { + "routeId": "L96", + "platformId": "U751Z2", + "id": "f9bc5695-189f-4c59-bbc6-5a0babebb3dd" + }, + { + "routeId": "L135", + "platformId": "U751Z2", + "id": "4e1f8e00-ee9c-4d7e-abf1-40c2cbfc9f6d" + }, + { + "routeId": "L136", + "platformId": "U751Z2", + "id": "548b20d5-0153-4bf4-9857-98202eb76da9" + }, + { + "routeId": "L213", + "platformId": "U751Z2", + "id": "0c2a91dd-c324-4bd1-b55c-3bc0dfd0deca" + }, + { + "routeId": "L913", + "platformId": "U751Z2", + "id": "22795fc4-b1a0-441d-a493-6e0df3c62cc9" + }, + { + "routeId": "L794", + "platformId": "U7525Z1", + "id": "a9405603-804f-4a01-8e87-bc4071f5ce11" + }, + { + "routeId": "L794", + "platformId": "U7525Z2", + "id": "25e06969-9335-40b2-a13a-888e6084ce73" + }, + { + "routeId": "L2849", + "platformId": "U7526Z1", + "id": "66896c04-1677-42cc-ae6e-331476cdbdcc" + }, + { + "routeId": "L2849", + "platformId": "U7526Z2", + "id": "c8a35726-fe34-42bb-8ae7-1c34c5c74c0b" + }, + { + "routeId": "L110", + "platformId": "U752Z1", + "id": "176a9034-a66c-423e-b4f1-9a35c913fef7" + }, + { + "routeId": "L170", + "platformId": "U753Z1", + "id": "7fd2e3e3-7fb0-4f4e-9234-6486caf0e766" + }, + { + "routeId": "L105", + "platformId": "U753Z2", + "id": "907cdb98-243e-437a-9395-d2b4c50231be" + }, + { + "routeId": "L170", + "platformId": "U753Z2", + "id": "36113253-c7e2-4ca2-b652-b6589b893547" + }, + { + "routeId": "L916", + "platformId": "U754Z1", + "id": "498dad23-4839-41eb-9e5c-c25e010fdfca" + }, + { + "routeId": "L58", + "platformId": "U754Z1", + "id": "80533e3a-02b4-4f26-9115-29f74c275a88" + }, + { + "routeId": "L916", + "platformId": "U754Z2", + "id": "7739f946-f744-42b2-ad47-9df88835700e" + }, + { + "routeId": "L58", + "platformId": "U754Z2", + "id": "f97058c9-e689-4b43-94d6-b7294b41d8b0" + }, + { + "routeId": "L7", + "platformId": "U755Z1", + "id": "f04a9a1c-6e9c-4216-8933-56b46d13cea0" + }, + { + "routeId": "L8", + "platformId": "U755Z1", + "id": "67896ee3-d376-401b-9bb8-0d70eee94496" + }, + { + "routeId": "L92", + "platformId": "U755Z1", + "id": "b2c1422a-df3e-4cf3-af99-3511cb8cfb21" + }, + { + "routeId": "L7", + "platformId": "U755Z2", + "id": "a4c526e0-bf4b-4305-9f76-6dc0e5d14b73" + }, + { + "routeId": "L8", + "platformId": "U755Z2", + "id": "df6160b2-1e4d-4cb7-b648-3b92a91801c3" + }, + { + "routeId": "L92", + "platformId": "U755Z2", + "id": "ffcea19e-815d-4849-8a3f-ab89d071c9b6" + }, + { + "routeId": "L663", + "platformId": "U7564Z1", + "id": "24031a70-a0ee-42e2-b758-e5d55e4fd731" + }, + { + "routeId": "L20", + "platformId": "U757Z1", + "id": "dc9b82c0-5c8c-46cb-8481-bbb40308b574" + }, + { + "routeId": "L26", + "platformId": "U757Z1", + "id": "bd21cddb-6b7a-454e-91f3-a4406dc48d0e" + }, + { + "routeId": "L91", + "platformId": "U757Z1", + "id": "a23745e1-2890-4f22-bbf6-87536c630594" + }, + { + "routeId": "L20", + "platformId": "U757Z2", + "id": "d6934dea-9beb-434d-9960-1d07fc0acd86" + }, + { + "routeId": "L26", + "platformId": "U757Z2", + "id": "e5c82773-db52-47aa-950d-9772f1c4a7de" + }, + { + "routeId": "L91", + "platformId": "U757Z2", + "id": "3b30e9bf-b2e9-4321-a172-687308287faa" + }, + { + "routeId": "L108", + "platformId": "U757Z3", + "id": "18439af7-5d9c-47b8-9bb4-c1d909a1a31b" + }, + { + "routeId": "L108", + "platformId": "U757Z4", + "id": "499911b3-2fda-41c7-acf1-2f37baf24a7c" + }, + { + "routeId": "L3", + "platformId": "U758Z1", + "id": "3a6d5039-6259-4dae-a1b6-3a7bc467377f" + }, + { + "routeId": "L8", + "platformId": "U758Z1", + "id": "684a0114-2788-4c6b-ad97-5b84688f21a9" + }, + { + "routeId": "L12", + "platformId": "U758Z1", + "id": "96b09725-53c4-431e-b1e5-c4043f599c52" + }, + { + "routeId": "L92", + "platformId": "U758Z1", + "id": "e85dbec6-17e4-4029-aa94-99b4cbc62e36" + }, + { + "routeId": "L94", + "platformId": "U758Z1", + "id": "44a67e5d-bcdc-4eed-8dc5-00cbcab88e32" + }, + { + "routeId": "L992", + "platformId": "U758Z101", + "id": "c8a0223e-b142-4f27-afde-8ed42e2b66a7" + }, + { + "routeId": "L992", + "platformId": "U758Z102", + "id": "4907919d-9961-4b2f-9044-6bb9f65a677b" + }, + { + "routeId": "L3", + "platformId": "U758Z2", + "id": "c12e2849-84af-4995-be41-fb9ebe426794" + }, + { + "routeId": "L8", + "platformId": "U758Z2", + "id": "769ca1f6-a02a-4899-a3b4-50c2b28cbe11" + }, + { + "routeId": "L12", + "platformId": "U758Z2", + "id": "33ddc6df-f89e-42c9-b325-a427660767fc" + }, + { + "routeId": "L92", + "platformId": "U758Z2", + "id": "cc9e915b-9001-4a6a-8cc9-45b916fd6c5d" + }, + { + "routeId": "L94", + "platformId": "U758Z2", + "id": "cc8ac371-1ff7-4c3d-9b0b-71b6e942e93a" + }, + { + "routeId": "L12", + "platformId": "U75Z1", + "id": "c7b2ffc8-61c1-4198-944c-5b518df140d9" + }, + { + "routeId": "L94", + "platformId": "U75Z1", + "id": "f134c272-b38e-4e27-9b26-8ec21b1f69f7" + }, + { + "routeId": "L992", + "platformId": "U75Z101", + "id": "0c427fe8-2f2c-4e10-9228-7fec33cadf5e" + }, + { + "routeId": "L992", + "platformId": "U75Z102", + "id": "ea262a90-ff71-4522-a8e9-3fa33f4028ad" + }, + { + "routeId": "L12", + "platformId": "U75Z2", + "id": "cb7a1e73-58c1-49bf-a57d-dc8c59ae7fc6" + }, + { + "routeId": "L94", + "platformId": "U75Z2", + "id": "24456181-4b46-42af-87b0-f31db89c8abb" + }, + { + "routeId": "L770", + "platformId": "U7603Z1", + "id": "2c3fe926-a810-4c49-9427-37a6dfb7e8c1" + }, + { + "routeId": "L770", + "platformId": "U7603Z2", + "id": "d902841e-93ed-4a5c-8fe3-374004152b20" + }, + { + "routeId": "L406", + "platformId": "U7607Z1", + "id": "9231b18e-81ee-498f-a89d-239a7fd64fca" + }, + { + "routeId": "L406", + "platformId": "U7607Z2", + "id": "df68712d-5238-4482-91e2-27c6b272e7fb" + }, + { + "routeId": "L406", + "platformId": "U7608Z1", + "id": "df9315d1-0cf0-425c-b157-8bf5226e459b" + }, + { + "routeId": "L406", + "platformId": "U7608Z2", + "id": "47938803-291a-47d7-bd67-4e17098b2d20" + }, + { + "routeId": "L406", + "platformId": "U7609Z1", + "id": "bfa587ef-66b4-44f6-88e2-17d347ed6460" + }, + { + "routeId": "L406", + "platformId": "U7609Z2", + "id": "701bb980-59d8-4e69-8ce2-22f946ced9e8" + }, + { + "routeId": "L101", + "platformId": "U760Z1", + "id": "12dc43f4-c848-48d8-85b7-14fabb971dbe" + }, + { + "routeId": "L138", + "platformId": "U760Z1", + "id": "0c963b93-380f-4df1-a607-f8a060042ff6" + }, + { + "routeId": "L154", + "platformId": "U760Z1", + "id": "5314dc62-eb7c-4d3d-84b4-59033b83613e" + }, + { + "routeId": "L901", + "platformId": "U760Z1", + "id": "c967a413-d36c-49dd-8ab9-4e635e01be00" + }, + { + "routeId": "L906", + "platformId": "U760Z1", + "id": "3421dd00-c499-4e49-85a1-6df414c2fc99" + }, + { + "routeId": "L101", + "platformId": "U760Z2", + "id": "b4c64530-c29d-42c5-8b48-8ddbd6e1400c" + }, + { + "routeId": "L138", + "platformId": "U760Z2", + "id": "be998d59-6204-4315-b31c-447a5c0c898a" + }, + { + "routeId": "L154", + "platformId": "U760Z2", + "id": "2e7354b3-9339-4334-93b3-997c9127f97f" + }, + { + "routeId": "L901", + "platformId": "U760Z2", + "id": "65786e84-85ce-4dfa-85a6-f3a026a4464f" + }, + { + "routeId": "L906", + "platformId": "U760Z2", + "id": "cc58394f-a7ac-4028-82c3-bfc64fefa391" + }, + { + "routeId": "L406", + "platformId": "U7610Z1", + "id": "ee650888-c80c-4270-906d-ea90dfa2ff1a" + }, + { + "routeId": "L406", + "platformId": "U7610Z2", + "id": "fce5c0a7-48c0-4e92-82c5-56741806d527" + }, + { + "routeId": "L482", + "platformId": "U7611Z1", + "id": "937a4496-3ac2-4231-a0f4-c91767d7de23" + }, + { + "routeId": "L482", + "platformId": "U7611Z2", + "id": "c2529f07-a71a-4ff8-b981-7ee6699a07db" + }, + { + "routeId": "L209", + "platformId": "U7612Z1", + "id": "5dedfa13-7646-4af2-91c9-4628b1726fb2" + }, + { + "routeId": "L221", + "platformId": "U7612Z1", + "id": "961467b2-0ce5-444c-8935-ac74ff88b3e4" + }, + { + "routeId": "L209", + "platformId": "U7612Z2", + "id": "aad1921d-bcd7-41d4-ac6f-6d811ad39a90" + }, + { + "routeId": "L221", + "platformId": "U7612Z2", + "id": "123f68ba-95ef-43e1-9c92-cbbb3dc2fd78" + }, + { + "routeId": "L482", + "platformId": "U7613Z1", + "id": "d1b2ff7a-f8e6-4aac-8227-d4793fb6f01e" + }, + { + "routeId": "L482", + "platformId": "U7613Z2", + "id": "8e3327f4-d2a6-4b69-92ae-b2629e0fcfe2" + }, + { + "routeId": "L500", + "platformId": "U7618Z1", + "id": "1ef61d3b-5cdf-4dd0-8b4b-c52845d65ed7" + }, + { + "routeId": "L111", + "platformId": "U761Z1", + "id": "e6a0fbf4-bdbe-4012-b981-afad4521276c" + }, + { + "routeId": "L329", + "platformId": "U761Z1", + "id": "c9c2abe1-e7bf-4270-a565-6e5437e3513a" + }, + { + "routeId": "L111", + "platformId": "U761Z2", + "id": "2af75a27-a848-41f3-b2c7-df46bd3edc87" + }, + { + "routeId": "L329", + "platformId": "U761Z2", + "id": "dce04e76-ca1e-436b-9c58-ab0aa77508a5" + }, + { + "routeId": "L500", + "platformId": "U7620Z1", + "id": "beee6f0f-1aea-4828-9e28-c9f8e80d5029" + }, + { + "routeId": "L500", + "platformId": "U7620Z2", + "id": "28f9ac70-8a37-43bf-a358-0aecc23714d1" + }, + { + "routeId": "L794", + "platformId": "U7621Z1", + "id": "ace21555-897c-4bc1-8c0d-972b62774c48" + }, + { + "routeId": "L794", + "platformId": "U7622Z1", + "id": "ff0ed166-ae37-4b3b-9b22-d5be924c7f62" + }, + { + "routeId": "L794", + "platformId": "U7622Z2", + "id": "3500869e-86a6-477b-bcc6-dfa265fc4b81" + }, + { + "routeId": "L454", + "platformId": "U7623Z1", + "id": "48964f4a-333b-4e3c-bedb-cabeb4513fa0" + }, + { + "routeId": "L454", + "platformId": "U7623Z2", + "id": "83b5c535-0205-44ed-87a1-824aad63b14b" + }, + { + "routeId": "L454", + "platformId": "U7624Z1", + "id": "865fcacc-7d14-4873-bbec-155c8d132490" + }, + { + "routeId": "L454", + "platformId": "U7624Z2", + "id": "58db368f-fb67-4a55-8e30-e5768e35ad80" + }, + { + "routeId": "L454", + "platformId": "U7625Z1", + "id": "4eb6ed63-d2d5-4e17-85c5-0cbc023e14dd" + }, + { + "routeId": "L454", + "platformId": "U7625Z2", + "id": "1fc45ff6-ca9f-4e07-8798-b9bcc85eb818" + }, + { + "routeId": "L201", + "platformId": "U762Z1", + "id": "084aeccc-d56a-418c-9952-0be8b2fd6817" + }, + { + "routeId": "L209", + "platformId": "U762Z1", + "id": "4322379a-cc6b-4f2a-a656-d9c7fadd9524" + }, + { + "routeId": "L376", + "platformId": "U762Z1", + "id": "370a05f6-891d-466c-83cd-83778f244e01" + }, + { + "routeId": "L201", + "platformId": "U762Z2", + "id": "53c3af58-70d6-4899-8377-d13a72e3fd8a" + }, + { + "routeId": "L209", + "platformId": "U762Z2", + "id": "bdcc3e28-8547-4cca-823f-42031cf8bc82" + }, + { + "routeId": "L376", + "platformId": "U762Z2", + "id": "36f1febf-e104-418b-a574-cdb1776661b8" + }, + { + "routeId": "L201", + "platformId": "U762Z4", + "id": "70c9b672-569a-4209-b96b-ead34e0fdf53" + }, + { + "routeId": "L953", + "platformId": "U762Z4", + "id": "56068f4d-e755-4a29-9889-8668944a6b25" + }, + { + "routeId": "L551", + "platformId": "U7631Z1", + "id": "a5b62fef-abca-4a1e-a918-6ae5f83a8801" + }, + { + "routeId": "L552", + "platformId": "U7631Z1", + "id": "8b75852b-a95c-449c-afe2-448d1beda16c" + }, + { + "routeId": "L420", + "platformId": "U7631Z1", + "id": "e04ece7e-1ba6-48ef-b841-67e0375b8f42" + }, + { + "routeId": "L520", + "platformId": "U7631Z1", + "id": "b9b5c74f-6df9-482a-b8aa-4a8b03ebe046" + }, + { + "routeId": "L500", + "platformId": "U7631Z1", + "id": "b3d7e7e9-91b6-4b29-895f-448647e71292" + }, + { + "routeId": "L551", + "platformId": "U7631Z2", + "id": "d156e69a-b5ee-4d6c-99ee-e3abad48b7d6" + }, + { + "routeId": "L552", + "platformId": "U7631Z2", + "id": "2b73d193-835c-44a8-a295-7d6ddf8b84dc" + }, + { + "routeId": "L420", + "platformId": "U7631Z2", + "id": "c91ffd38-5e0c-4b8f-842f-f3b2d2e84460" + }, + { + "routeId": "L520", + "platformId": "U7631Z2", + "id": "954d3324-ef37-442c-b314-47440bbb4a08" + }, + { + "routeId": "L500", + "platformId": "U7631Z2", + "id": "820f2bb4-49c7-4a68-aa9b-996f2690704b" + }, + { + "routeId": "L520", + "platformId": "U7632Z1", + "id": "51a2825b-8887-44ca-82d4-f8bb0b9ec250" + }, + { + "routeId": "L520", + "platformId": "U7632Z2", + "id": "3bfa2040-2697-4158-b23b-660a917c371f" + }, + { + "routeId": "L552", + "platformId": "U7634Z1", + "id": "83628884-f600-4421-87b7-00d176653099" + }, + { + "routeId": "L551", + "platformId": "U7634Z1", + "id": "d1b04483-1957-46f0-88d6-4e9adc011a63" + }, + { + "routeId": "L420", + "platformId": "U7634Z1", + "id": "ddd1b4c6-cf6e-45ac-b6ae-5c1aecf55547" + }, + { + "routeId": "L520", + "platformId": "U7634Z1", + "id": "7ea15913-2e6d-490d-b8df-92b0896ea029" + }, + { + "routeId": "L500", + "platformId": "U7634Z1", + "id": "433d1784-6e60-49d2-aa96-54c8efcb1a9c" + }, + { + "routeId": "L551", + "platformId": "U7634Z2", + "id": "a25ca5cd-161c-4b27-8e2f-9f4d80a88f50" + }, + { + "routeId": "L552", + "platformId": "U7634Z2", + "id": "f680c1b7-ba63-4f29-a069-532a3e7e3ae9" + }, + { + "routeId": "L420", + "platformId": "U7634Z2", + "id": "57e8ad51-2ed0-4964-b029-01da74733322" + }, + { + "routeId": "L520", + "platformId": "U7634Z2", + "id": "7f051722-5deb-4dce-b90b-4e13e9bcc105" + }, + { + "routeId": "L500", + "platformId": "U7634Z2", + "id": "e2782c0b-1013-441f-b246-d0185a730bfc" + }, + { + "routeId": "L520", + "platformId": "U7635Z1", + "id": "587d42a2-4821-47f4-beed-4b727cafb935" + }, + { + "routeId": "L520", + "platformId": "U7635Z2", + "id": "81e60e60-8c2b-439a-bda3-d26208c6bd0e" + }, + { + "routeId": "L520", + "platformId": "U7636Z1", + "id": "1ca089eb-109f-4057-8856-ecbc40110884" + }, + { + "routeId": "L520", + "platformId": "U7636Z2", + "id": "c6fcdddd-3c9b-4490-b228-c689ea514e58" + }, + { + "routeId": "L520", + "platformId": "U7637Z2", + "id": "d120b17d-a378-4a2b-9a1f-c871994ab789" + }, + { + "routeId": "L520", + "platformId": "U7637Z3", + "id": "8424013b-ed59-49d3-aecc-79d6a859468a" + }, + { + "routeId": "L2844", + "platformId": "U7638Z1", + "id": "5c019f66-17fb-4464-b273-931b8702d9aa" + }, + { + "routeId": "L2844", + "platformId": "U7638Z2", + "id": "1b17fe60-42c8-4b1e-8998-88d9c0fc743b" + }, + { + "routeId": "L2843", + "platformId": "U7638Z3", + "id": "5f3f27ad-076c-4ab7-a0fa-35a8ff0ca39a" + }, + { + "routeId": "L2843", + "platformId": "U7638Z4", + "id": "01afe95a-dec4-4c49-ba11-adedf8d67703" + }, + { + "routeId": "L2844", + "platformId": "U7639Z1", + "id": "ab1186c4-7837-4c88-bf81-959e117dc198" + }, + { + "routeId": "L2844", + "platformId": "U7639Z2", + "id": "cdf950cd-1648-4195-b99f-039da1a0a856" + }, + { + "routeId": "L136", + "platformId": "U763Z1", + "id": "ba8c4f4d-f0cc-4ede-abcf-c799cebeb2b1" + }, + { + "routeId": "L913", + "platformId": "U763Z1", + "id": "9ea60332-3768-4d86-b966-6cb90628a8b0" + }, + { + "routeId": "L136", + "platformId": "U763Z2", + "id": "89b8ab4e-3432-423e-be71-2040a1260a3d" + }, + { + "routeId": "L913", + "platformId": "U763Z2", + "id": "b0111fc9-6028-41b2-b1d7-55fad9367bff" + }, + { + "routeId": "L480", + "platformId": "U7640Z1", + "id": "bf21ad13-5aaf-4ade-a5aa-d9e7c85f9d85" + }, + { + "routeId": "L420", + "platformId": "U7642Z1", + "id": "ff5f8e75-2f67-48db-aaed-f8e8978e2a8f" + }, + { + "routeId": "L480", + "platformId": "U7642Z1", + "id": "210b04d6-623e-49bc-852d-d0929797a23c" + }, + { + "routeId": "L420", + "platformId": "U7642Z2", + "id": "c36cf124-cb4b-4fa8-95dc-f2a086ccf357" + }, + { + "routeId": "L480", + "platformId": "U7642Z2", + "id": "76010508-ee2d-4c4a-8b61-48e4e10eaf4b" + }, + { + "routeId": "L480", + "platformId": "U7644Z1", + "id": "ada6c480-4a88-4203-9083-1b85239931bd" + }, + { + "routeId": "L480", + "platformId": "U7644Z2", + "id": "4548ad18-6072-4d61-8d95-3567b4718951" + }, + { + "routeId": "L420", + "platformId": "U7645Z1", + "id": "01940b13-0337-4a76-b24d-1f149dcccca8" + }, + { + "routeId": "L480", + "platformId": "U7645Z1", + "id": "48185788-3bb5-46b5-be75-6b39c1d5115c" + }, + { + "routeId": "L420", + "platformId": "U7645Z2", + "id": "11869dda-6d6f-4e80-95be-b801ad31a535" + }, + { + "routeId": "L480", + "platformId": "U7645Z2", + "id": "e31e1a62-a002-48c6-90ef-309125ee6c67" + }, + { + "routeId": "L480", + "platformId": "U7646Z1", + "id": "2f53c455-f945-4630-85d5-8f2d19d24ae1" + }, + { + "routeId": "L480", + "platformId": "U7646Z2", + "id": "7ebe75d6-025a-44e0-8b57-555187c45902" + }, + { + "routeId": "L514", + "platformId": "U7648Z1", + "id": "51773e0f-8fba-4832-acde-e514c63fd3f3" + }, + { + "routeId": "L514", + "platformId": "U7648Z2", + "id": "4a43eef9-28ef-46c7-b108-b52404714cc4" + }, + { + "routeId": "L458", + "platformId": "U7649Z1", + "id": "c0107b79-8d9a-4eb7-8d81-ceeaf4b0bfe7" + }, + { + "routeId": "L2854", + "platformId": "U7649Z1", + "id": "62b48a81-e2fb-494b-a3bf-0d5ec14cd2c8" + }, + { + "routeId": "L458", + "platformId": "U7649Z2", + "id": "2ee31db4-cdac-44d5-83da-075f49cb479c" + }, + { + "routeId": "L2854", + "platformId": "U7649Z2", + "id": "360e338b-03af-4154-bc44-516510c346b7" + }, + { + "routeId": "L112", + "platformId": "U764Z1", + "id": "ee8e4231-998b-4453-920b-b937f6db7128" + }, + { + "routeId": "L234", + "platformId": "U764Z1", + "id": "61360a5e-1c13-439d-b771-64149893e4cd" + }, + { + "routeId": "L112", + "platformId": "U764Z2", + "id": "d1ca1b4c-b256-4629-b2db-2cd013ddbc0f" + }, + { + "routeId": "L234", + "platformId": "U764Z2", + "id": "11a97d26-2930-4f92-8e51-a1cf2680ac77" + }, + { + "routeId": "L458", + "platformId": "U7650Z1", + "id": "ec96be23-a44c-4ef2-ab10-f04b3fb24440" + }, + { + "routeId": "L2854", + "platformId": "U7650Z1", + "id": "ec0c9fab-03c7-4738-85ec-be84f4e0d971" + }, + { + "routeId": "L458", + "platformId": "U7650Z2", + "id": "a9776a62-5acf-4f88-b0b0-97c3c11937fe" + }, + { + "routeId": "L2854", + "platformId": "U7650Z2", + "id": "0ba325ae-3662-4659-8649-9a86c88251c7" + }, + { + "routeId": "L1", + "platformId": "U765Z1", + "id": "8dcf70e1-d1e2-45c4-9a4b-bcad1a1b4f38" + }, + { + "routeId": "L17", + "platformId": "U765Z1", + "id": "1fb6f901-d190-4ca7-a92f-6fef11e52eb5" + }, + { + "routeId": "L25", + "platformId": "U765Z1", + "id": "3d25686d-9b80-41ec-8a1d-e43f32c32e1a" + }, + { + "routeId": "L93", + "platformId": "U765Z1", + "id": "91c82c92-36ff-4fe9-a8ee-12777219400e" + }, + { + "routeId": "L112", + "platformId": "U765Z1", + "id": "81d57775-3b06-474d-b4a4-b51055b0576c" + }, + { + "routeId": "L234", + "platformId": "U765Z1", + "id": "059d66f6-ab5c-4d31-8ada-64d5eb7c4093" + }, + { + "routeId": "L1", + "platformId": "U765Z2", + "id": "2da97ab9-a61d-4288-9971-c6f214f0ae23" + }, + { + "routeId": "L17", + "platformId": "U765Z2", + "id": "c9c24f3f-caf9-405f-8bd9-f1a420344354" + }, + { + "routeId": "L25", + "platformId": "U765Z2", + "id": "cd3b7b57-9894-43ec-a949-3fea8e154155" + }, + { + "routeId": "L93", + "platformId": "U765Z2", + "id": "c4c38239-ed42-41d7-8b0f-2e2ff5303d76" + }, + { + "routeId": "L112", + "platformId": "U765Z3", + "id": "bd6b5770-4492-4b12-a1fa-6cd425831235" + }, + { + "routeId": "L234", + "platformId": "U765Z3", + "id": "e3c8182d-aa1b-4168-81f6-ce743960d576" + }, + { + "routeId": "L2260", + "platformId": "U7660Z401", + "id": "ae99434d-d1cd-4a42-85ee-23b430d5f564" + }, + { + "routeId": "L2260", + "platformId": "U7660Z402", + "id": "c111d3b5-3f39-45f6-b476-26990e72dc49" + }, + { + "routeId": "L770", + "platformId": "U7666Z1", + "id": "4faeb0e6-ec56-4b27-bcb4-0afe6db21b86" + }, + { + "routeId": "L770", + "platformId": "U7666Z2", + "id": "5f2ca186-2d23-4efc-8e82-7e7d662d6f01" + }, + { + "routeId": "L770", + "platformId": "U7667Z1", + "id": "ea942107-80e4-4fe1-b3d1-cc68dcefbb97" + }, + { + "routeId": "L770", + "platformId": "U7667Z2", + "id": "422047e0-9de1-4131-a5f9-999d024b9a08" + }, + { + "routeId": "L549", + "platformId": "U7669Z1", + "id": "ae9cc713-7142-4a67-bc97-4bc1f77e9e45" + }, + { + "routeId": "L551", + "platformId": "U7669Z1", + "id": "7389f536-4ed0-400f-b020-d9a121d42943" + }, + { + "routeId": "L420", + "platformId": "U7669Z1", + "id": "f59dad9f-b346-46db-8069-0dc2dc8e6187" + }, + { + "routeId": "L551", + "platformId": "U7669Z2", + "id": "4483917a-db15-4928-992a-5c5776af8c01" + }, + { + "routeId": "L549", + "platformId": "U7669Z2", + "id": "6a849384-b974-44dd-84da-1de873459647" + }, + { + "routeId": "L420", + "platformId": "U7669Z2", + "id": "bcbde388-8b3f-4eeb-9cf8-33d719bb0e83" + }, + { + "routeId": "L500", + "platformId": "U7669Z3", + "id": "b0f13638-4ecc-4c70-b63e-ff6db5534daa" + }, + { + "routeId": "L500", + "platformId": "U7669Z4", + "id": "2bc6e72a-c418-409c-a64e-dea6deb8ad0f" + }, + { + "routeId": "L136", + "platformId": "U766Z1", + "id": "f2a24713-61e6-471c-a47f-cf771a3b5db6" + }, + { + "routeId": "L158", + "platformId": "U766Z1", + "id": "d8ce2608-aed9-4ed1-9c5c-101d168286ab" + }, + { + "routeId": "L911", + "platformId": "U766Z1", + "id": "daa83720-d97d-4519-9319-041d5130e3d4" + }, + { + "routeId": "L110", + "platformId": "U766Z1", + "id": "fbcdd199-1d23-418e-941e-54951f27010c" + }, + { + "routeId": "L166", + "platformId": "U766Z1", + "id": "d68e700a-fd7c-4d82-8932-aa75e3ede7e9" + }, + { + "routeId": "L351", + "platformId": "U766Z1", + "id": "16510fed-6bb8-4155-9c4e-8b8b6a55fa2d" + }, + { + "routeId": "L377", + "platformId": "U766Z1", + "id": "8d0d9d0e-9e02-4cd5-85a2-b7a69931b4cc" + }, + { + "routeId": "L58", + "platformId": "U766Z1", + "id": "f8ed630f-90b0-49cf-937e-bae6f1771368" + }, + { + "routeId": "L136", + "platformId": "U766Z2", + "id": "d0e3cf5e-1daa-4c0d-a907-180e27cb3c49" + }, + { + "routeId": "L158", + "platformId": "U766Z2", + "id": "66d68f88-b7bf-4280-bfef-c7be45b9fa5d" + }, + { + "routeId": "L911", + "platformId": "U766Z2", + "id": "6140886f-3292-4cba-9ca0-71570fc4aea3" + }, + { + "routeId": "L110", + "platformId": "U766Z2", + "id": "b8f5d46c-e8d9-4bb5-8788-6fb2430d17b9" + }, + { + "routeId": "L166", + "platformId": "U766Z2", + "id": "56d03378-a2de-4512-9a1e-3a494688901f" + }, + { + "routeId": "L351", + "platformId": "U766Z2", + "id": "0a63503c-e6e0-4f61-b6f5-9fcc29a840ae" + }, + { + "routeId": "L377", + "platformId": "U766Z2", + "id": "9034a9c0-1d62-47e0-8340-127e21059cf2" + }, + { + "routeId": "L58", + "platformId": "U766Z2", + "id": "7fd50509-aea2-4066-ba8b-3c6efe7320f6" + }, + { + "routeId": "L551", + "platformId": "U7670Z1", + "id": "406aa7c7-ccaf-476b-a984-522bfa8443ba" + }, + { + "routeId": "L420", + "platformId": "U7670Z1", + "id": "d91a3f38-a813-4e8f-b670-8868d8e7888b" + }, + { + "routeId": "L500", + "platformId": "U7670Z1", + "id": "f045ee22-5347-405a-8fb5-0590dcfa3cbf" + }, + { + "routeId": "L551", + "platformId": "U7670Z2", + "id": "4ed5297f-0d0a-4814-aef8-b4628ac174fa" + }, + { + "routeId": "L420", + "platformId": "U7670Z2", + "id": "e62a3617-c3fc-43fa-a399-436f67e70130" + }, + { + "routeId": "L500", + "platformId": "U7670Z2", + "id": "40e480b0-6db2-4ef6-9f0c-4672c134c81b" + }, + { + "routeId": "L420", + "platformId": "U7672Z1", + "id": "7e6c8182-2163-47f6-bb73-b474cc73c329" + }, + { + "routeId": "L420", + "platformId": "U7672Z2", + "id": "07fa599f-01f4-4f26-a744-4fa9609704c7" + }, + { + "routeId": "L549", + "platformId": "U7673Z1", + "id": "e81c58f3-5c73-4536-b539-c8ec15d9cbc7" + }, + { + "routeId": "L549", + "platformId": "U7673Z2", + "id": "7372e294-b095-4e68-9b50-cb57af368640" + }, + { + "routeId": "L551", + "platformId": "U7676Z1", + "id": "c623e688-b302-4760-8697-0fa5db6c9011" + }, + { + "routeId": "L420", + "platformId": "U7676Z1", + "id": "0d427d73-2272-4414-97e0-e51dbb0dc525" + }, + { + "routeId": "L500", + "platformId": "U7676Z1", + "id": "db55cb85-7d8c-4443-8511-244cea16a41e" + }, + { + "routeId": "L551", + "platformId": "U7676Z2", + "id": "74ef3d31-5ab4-4fe1-9232-f0111af2334c" + }, + { + "routeId": "L420", + "platformId": "U7676Z2", + "id": "64dc909c-dae7-43fc-8eb6-6428fd62e327" + }, + { + "routeId": "L500", + "platformId": "U7676Z2", + "id": "bf7de2c4-0f77-442f-9242-bb5d88fdbe44" + }, + { + "routeId": "L551", + "platformId": "U7677Z1", + "id": "37ab6758-db2d-4862-8047-36a9d94df2e8" + }, + { + "routeId": "L420", + "platformId": "U7677Z1", + "id": "00e9433c-63d0-4277-85fc-3c9d6ce3d16e" + }, + { + "routeId": "L500", + "platformId": "U7677Z1", + "id": "c428e8ac-7c6c-48dc-a0f4-0c201cdfdc65" + }, + { + "routeId": "L551", + "platformId": "U7677Z2", + "id": "5ef9672b-ea07-4f21-bb1a-693b7c969a40" + }, + { + "routeId": "L420", + "platformId": "U7677Z2", + "id": "df15d9b2-bf13-4742-917c-1dd762a9b85c" + }, + { + "routeId": "L500", + "platformId": "U7677Z2", + "id": "f7478dde-5460-4298-b03f-f1445a5ee282" + }, + { + "routeId": "L420", + "platformId": "U7678Z1", + "id": "5dc3c069-0a1f-4691-9932-c3c4c4e18af2" + }, + { + "routeId": "L420", + "platformId": "U7678Z2", + "id": "6608b547-220c-4197-9093-ad47161f38bf" + }, + { + "routeId": "L133", + "platformId": "U767Z1", + "id": "2dc389d6-fcc2-49e7-a5f8-e9ab0b8eac8a" + }, + { + "routeId": "L908", + "platformId": "U767Z1", + "id": "78d266eb-6109-420d-8e39-041efbea5588" + }, + { + "routeId": "L909", + "platformId": "U767Z1", + "id": "0f5f19b3-4d6c-4ef1-8dce-988b1c71cee8" + }, + { + "routeId": "L146", + "platformId": "U767Z1", + "id": "72b480bd-e436-4779-a50d-1b9371ee2941" + }, + { + "routeId": "L155", + "platformId": "U767Z1", + "id": "7428a9ef-8228-4c47-b539-c4d13999d878" + }, + { + "routeId": "L133", + "platformId": "U767Z2", + "id": "2ea721f0-64d1-4354-9d20-fe965924335f" + }, + { + "routeId": "L908", + "platformId": "U767Z2", + "id": "82148ad4-b06b-4ac4-9905-5a5c12381c82" + }, + { + "routeId": "L909", + "platformId": "U767Z2", + "id": "7dadf912-d9ff-4674-ba43-38177a28cad9" + }, + { + "routeId": "L146", + "platformId": "U767Z2", + "id": "4c1a4220-7c9d-4233-9727-0e92645fae99" + }, + { + "routeId": "L155", + "platformId": "U767Z2", + "id": "48d25692-c342-48c0-bc75-b5a2fa5ec78e" + }, + { + "routeId": "L420", + "platformId": "U7681Z1", + "id": "1d6785d3-ed61-4f8a-a438-489d40696755" + }, + { + "routeId": "L420", + "platformId": "U7681Z2", + "id": "88ccc94b-da0c-4281-991e-f5afa4a3f52c" + }, + { + "routeId": "L549", + "platformId": "U7682Z1", + "id": "638d458d-a4bd-4a6e-a4ce-f9291a1e581f" + }, + { + "routeId": "L549", + "platformId": "U7682Z2", + "id": "d4426cdc-c13f-4a13-9525-5292dd67efc1" + }, + { + "routeId": "L754", + "platformId": "U7684Z1", + "id": "a86e146a-bb0d-4071-a848-f26cb1db7077" + }, + { + "routeId": "L754", + "platformId": "U7684Z2", + "id": "ec4a7199-84c1-4e9f-88b2-5c9e0b3bdc57" + }, + { + "routeId": "L2846", + "platformId": "U7685Z1", + "id": "80a0e1bd-5148-4f45-a2b5-31066f61086e" + }, + { + "routeId": "L2843", + "platformId": "U7685Z1", + "id": "22461fbf-3f91-4cad-9676-2a490b8df6ff" + }, + { + "routeId": "L2842", + "platformId": "U7685Z1", + "id": "7d6c5c72-84d5-4118-b1e7-871c6dc5e069" + }, + { + "routeId": "L2846", + "platformId": "U7685Z2", + "id": "84bbb787-1394-4fb8-8996-617c9f7c98f4" + }, + { + "routeId": "L2842", + "platformId": "U7685Z2", + "id": "d6bdac47-5f64-467f-a4ff-e9a842049f5f" + }, + { + "routeId": "L2843", + "platformId": "U7685Z2", + "id": "edc37e31-466b-4c20-b7d3-33d756076a26" + }, + { + "routeId": "L2846", + "platformId": "U7686Z1", + "id": "6e6d1e15-25b7-4782-ba4c-079d3faeb928" + }, + { + "routeId": "L2843", + "platformId": "U7686Z1", + "id": "63c41910-3bed-42ae-a142-d09914238ab1" + }, + { + "routeId": "L2846", + "platformId": "U7686Z2", + "id": "c9d3a80c-1e0c-4351-8504-70a0c4ca1f8f" + }, + { + "routeId": "L2843", + "platformId": "U7686Z2", + "id": "e6e43e0a-ec05-4c8c-b863-8eeea39d965d" + }, + { + "routeId": "L2842", + "platformId": "U7687Z1", + "id": "a84ce3c3-02de-4cd3-920f-f1105853526f" + }, + { + "routeId": "L2842", + "platformId": "U7687Z2", + "id": "e3a2b0b2-1450-4fb0-9b2f-588b9c1391fd" + }, + { + "routeId": "L2846", + "platformId": "U7688Z1", + "id": "bce16c62-5b57-42d8-ac57-e3f1f513a498" + }, + { + "routeId": "L2846", + "platformId": "U7688Z2", + "id": "191bf594-05e6-4536-ab1d-34deb7121885" + }, + { + "routeId": "L406", + "platformId": "U7689Z1", + "id": "8e44df05-311d-4c4e-a371-00190e0d3467" + }, + { + "routeId": "L2843", + "platformId": "U7689Z1", + "id": "f4665cf1-f6e7-4abf-acbc-f39ec8d37a90" + }, + { + "routeId": "L406", + "platformId": "U7689Z2", + "id": "49db087f-3815-43a3-ab2c-d104b102051a" + }, + { + "routeId": "L2843", + "platformId": "U7689Z2", + "id": "034ce779-6092-44d4-b8e3-9ec270ad9cbf" + }, + { + "routeId": "L174", + "platformId": "U768Z1", + "id": "a48e051e-4642-4a0e-a164-4b429bd38910" + }, + { + "routeId": "L902", + "platformId": "U768Z1", + "id": "3b2f19fd-c2ee-4b13-8a3f-a48064702604" + }, + { + "routeId": "L174", + "platformId": "U768Z2", + "id": "834d1316-53f7-4efc-aa9d-ba5493e261ef" + }, + { + "routeId": "L902", + "platformId": "U768Z2", + "id": "a427a8df-1eac-4b0f-9731-186999681977" + }, + { + "routeId": "L2843", + "platformId": "U7690Z1", + "id": "f5b3a3cb-f560-40a9-ac17-8fc88be00c20" + }, + { + "routeId": "L2843", + "platformId": "U7690Z2", + "id": "989695d6-508c-4386-8e17-b625f6758230" + }, + { + "routeId": "L350", + "platformId": "U7691Z1", + "id": "d51f9566-1c99-46eb-9b9e-13f3dd103bb8" + }, + { + "routeId": "L954", + "platformId": "U7691Z1", + "id": "c9cd2d69-9bbb-4f6d-98a9-73a9be4c3fb6" + }, + { + "routeId": "L350", + "platformId": "U7691Z2", + "id": "7c766969-7c04-4fad-ac9c-fd2a586fe29f" + }, + { + "routeId": "L521", + "platformId": "U7693Z1", + "id": "3119fb44-2a3e-4e94-83aa-674ec12a7228" + }, + { + "routeId": "L521", + "platformId": "U7693Z2", + "id": "43e7a89f-5473-451e-a868-289f620445be" + }, + { + "routeId": "L521", + "platformId": "U7694Z1", + "id": "ac709858-f274-468f-a603-84c783c3f14d" + }, + { + "routeId": "L521", + "platformId": "U7695Z1", + "id": "4df8c8d3-39fe-4716-92a3-8cc97741f3df" + }, + { + "routeId": "L521", + "platformId": "U7695Z2", + "id": "4213c0d0-41ef-4bff-b95f-95993796da0c" + }, + { + "routeId": "L521", + "platformId": "U7696Z1", + "id": "d0a4eeb7-b439-437b-9a90-c7a59e6ec84a" + }, + { + "routeId": "L521", + "platformId": "U7696Z2", + "id": "72d27f19-f2a4-428c-af3a-37bbb5cba3b7" + }, + { + "routeId": "L480", + "platformId": "U7698Z1", + "id": "d2c6a8f7-6626-4cd4-91e7-e34771ef9bfd" + }, + { + "routeId": "L480", + "platformId": "U7698Z2", + "id": "848cf6d4-9f37-4b08-be82-045ed293aa44" + }, + { + "routeId": "L790", + "platformId": "U7699Z1", + "id": "9c3ef5fb-7164-4fc1-a06d-b215a6732b32" + }, + { + "routeId": "L790", + "platformId": "U7699Z2", + "id": "1a00e240-b569-4719-8ffd-f83ce5aa82aa" + }, + { + "routeId": "L110", + "platformId": "U769Z1", + "id": "f78cd2a1-5906-4825-9d9b-fc7867e6c58f" + }, + { + "routeId": "L351", + "platformId": "U769Z1", + "id": "8bb42c0c-083d-4697-8d42-da7eecf3ae7e" + }, + { + "routeId": "L158", + "platformId": "U769Z2", + "id": "04e256f0-31fb-4f0b-b657-f68b6cbd9d75" + }, + { + "routeId": "L158", + "platformId": "U769Z3", + "id": "180d1206-8fcd-4e31-957e-c539cd260e7b" + }, + { + "routeId": "L110", + "platformId": "U769Z3", + "id": "3d6a6af1-683b-4d76-b512-8d93cb7c7915" + }, + { + "routeId": "L166", + "platformId": "U769Z3", + "id": "6b89b760-f3bb-4770-99eb-160266ff238e" + }, + { + "routeId": "L351", + "platformId": "U769Z3", + "id": "8a6a42cf-0fbc-4209-8f43-2a912946f1bb" + }, + { + "routeId": "L166", + "platformId": "U769Z4", + "id": "77770f9d-86c5-4631-b96c-0b55420296c4" + }, + { + "routeId": "L17", + "platformId": "U76Z1", + "id": "f374de15-b5b9-4dda-9bd8-8dacb49e8fe7" + }, + { + "routeId": "L27", + "platformId": "U76Z1", + "id": "6a3aa8ee-113c-48d0-b77d-3483e9e43c65" + }, + { + "routeId": "L92", + "platformId": "U76Z1", + "id": "a6683464-71d4-402e-a0df-e9eaa33f7b82" + }, + { + "routeId": "L17", + "platformId": "U76Z2", + "id": "8d547c0f-3dca-41f5-82ce-41fdf5992eb0" + }, + { + "routeId": "L27", + "platformId": "U76Z2", + "id": "cad8adff-7999-4bff-a4e8-6bd0f6a66994" + }, + { + "routeId": "L92", + "platformId": "U76Z2", + "id": "344b4f63-42c8-4cc7-bd41-3de9ecd0615a" + }, + { + "routeId": "L117", + "platformId": "U76Z3", + "id": "38d19c3a-9fba-4470-8258-a0f31b220a08" + }, + { + "routeId": "L117", + "platformId": "U76Z4", + "id": "ade43957-61a4-4750-8612-fa22ff704acc" + }, + { + "routeId": "L2846", + "platformId": "U7702Z1", + "id": "b49bd37f-c2cf-455e-80c2-4e9dd3eed923" + }, + { + "routeId": "L2846", + "platformId": "U7702Z2", + "id": "8c6aa580-bc53-4ff7-9a0b-d08d156ca93f" + }, + { + "routeId": "L2846", + "platformId": "U7703Z1", + "id": "1250e8c9-2d74-4177-b817-b10a5d4a77a4" + }, + { + "routeId": "L2846", + "platformId": "U7703Z2", + "id": "4b3ed688-b3c6-4bb0-bf88-d0196ee5f159" + }, + { + "routeId": "L2846", + "platformId": "U7704Z1", + "id": "c7ba0634-b287-43d5-a9b3-f542a626f72b" + }, + { + "routeId": "L2846", + "platformId": "U7704Z2", + "id": "65aca9fa-45b6-4d52-bc33-27f6a3096a19" + }, + { + "routeId": "L2844", + "platformId": "U7705Z1", + "id": "2f702edb-a3f0-4aca-95f8-f6b54605ee11" + }, + { + "routeId": "L2844", + "platformId": "U7705Z2", + "id": "6080b192-8c78-4fd7-a932-d28107e21d15" + }, + { + "routeId": "L2846", + "platformId": "U7706Z1", + "id": "01107a26-aa12-4a43-9f4d-73525c39e40a" + }, + { + "routeId": "L2846", + "platformId": "U7706Z2", + "id": "f3ccc533-1ef8-4cf0-aa10-2e6ff599ce72" + }, + { + "routeId": "L2844", + "platformId": "U7707Z1", + "id": "1a0a0397-d0ca-49c1-8885-e6b942bb1ee9" + }, + { + "routeId": "L2844", + "platformId": "U7707Z2", + "id": "6891d200-d929-4adb-b9c3-5cfd7c9e2735" + }, + { + "routeId": "L125", + "platformId": "U770Z1", + "id": "8a083d8f-1633-46f9-9e22-b423dac6de24" + }, + { + "routeId": "L911", + "platformId": "U770Z1", + "id": "38bc0907-e581-4ddb-b91e-cf809af297da" + }, + { + "routeId": "L204", + "platformId": "U770Z1", + "id": "303537d1-3c2b-42ba-a7b6-a8fbfec51db5" + }, + { + "routeId": "L240", + "platformId": "U770Z1", + "id": "bf3627b3-d5bc-4811-b678-0efbcc6a8391" + }, + { + "routeId": "L125", + "platformId": "U770Z2", + "id": "c7cbd1d9-5d4b-4bc7-a057-d9206ebf0d9d" + }, + { + "routeId": "L911", + "platformId": "U770Z2", + "id": "c74926c3-928b-42e3-924e-1aa8da02c5aa" + }, + { + "routeId": "L204", + "platformId": "U770Z2", + "id": "743d549e-febc-40f7-a839-60abfa9cbd82" + }, + { + "routeId": "L240", + "platformId": "U770Z2", + "id": "f2e840a4-aaf5-43ac-8b1e-2fc4863202d3" + }, + { + "routeId": "L2841", + "platformId": "U7711Z1", + "id": "3146351d-d7df-4bf5-870f-89de27b8c7cd" + }, + { + "routeId": "L480", + "platformId": "U7714Z1", + "id": "6b0ce8d0-1200-48bd-8ac3-741144d3789e" + }, + { + "routeId": "L480", + "platformId": "U7714Z2", + "id": "ca3f5781-6504-4802-96ee-0673853c6f98" + }, + { + "routeId": "L420", + "platformId": "U7715Z1", + "id": "65d4db7c-382d-4bff-934e-571b8544c190" + }, + { + "routeId": "L480", + "platformId": "U7715Z1", + "id": "bd9956cb-a5ac-4588-8e66-196080f62ffb" + }, + { + "routeId": "L420", + "platformId": "U7715Z2", + "id": "1f1468fb-fe05-4bd5-809b-9e53745a49c6" + }, + { + "routeId": "L480", + "platformId": "U7715Z2", + "id": "2bc727c2-89e7-4f29-afec-4ead33145593" + }, + { + "routeId": "L480", + "platformId": "U7716Z1", + "id": "9c4feede-2b87-4088-aefa-2348806a6ccf" + }, + { + "routeId": "L480", + "platformId": "U7716Z2", + "id": "92f0a118-a236-40d6-a373-b28f5c285dda" + }, + { + "routeId": "L480", + "platformId": "U7718Z1", + "id": "32d23a22-971e-4d54-8d09-ccdd0d95c0e7" + }, + { + "routeId": "L480", + "platformId": "U7718Z2", + "id": "07c6954b-544a-44fb-9c52-a8cdebf8d74d" + }, + { + "routeId": "L480", + "platformId": "U7719Z1", + "id": "6daf990d-aebd-4ea0-be64-5fb417069a6d" + }, + { + "routeId": "L480", + "platformId": "U7719Z2", + "id": "52c3335b-cc83-4eef-a963-ab3e6d5b2edd" + }, + { + "routeId": "L136", + "platformId": "U771Z1", + "id": "088a050a-cf81-4708-be21-585ef07d8caf" + }, + { + "routeId": "L201", + "platformId": "U771Z1", + "id": "ce1db71c-f7ce-4156-98ad-40788da886ca" + }, + { + "routeId": "L911", + "platformId": "U771Z1", + "id": "fb76430b-f4b6-486c-af20-fefc26e5573b" + }, + { + "routeId": "L110", + "platformId": "U771Z1", + "id": "542ceb06-b08a-48af-b060-296140e6a416" + }, + { + "routeId": "L351", + "platformId": "U771Z1", + "id": "1759cd5e-7d81-47df-b434-9b384aa9b681" + }, + { + "routeId": "L377", + "platformId": "U771Z1", + "id": "c7b3d779-3ce2-4c2b-9fc5-7a6a888f7119" + }, + { + "routeId": "L58", + "platformId": "U771Z1", + "id": "604e257f-8bf8-4c66-926b-a829810bf958" + }, + { + "routeId": "L136", + "platformId": "U771Z2", + "id": "5f7134ef-a745-469b-8715-00e54b95a356" + }, + { + "routeId": "L201", + "platformId": "U771Z2", + "id": "55ca4eb6-572d-4b5d-b846-1202b35f2c4a" + }, + { + "routeId": "L911", + "platformId": "U771Z2", + "id": "0b129fb3-7000-461b-ba0a-7f6a0ebe5701" + }, + { + "routeId": "L110", + "platformId": "U771Z2", + "id": "dfd9a49e-4f87-43ec-9c1a-e95f3137dc65" + }, + { + "routeId": "L351", + "platformId": "U771Z2", + "id": "8f99ed91-e628-41f3-b0d1-53c2b580a49c" + }, + { + "routeId": "L377", + "platformId": "U771Z2", + "id": "a72858b6-a489-444f-8d45-90352dcd8f54" + }, + { + "routeId": "L58", + "platformId": "U771Z2", + "id": "e0a2517a-930f-4d07-aeb8-b098fc73445d" + }, + { + "routeId": "L480", + "platformId": "U7721Z1", + "id": "508c8eab-8b90-4c1a-a18b-88b8327ce56e" + }, + { + "routeId": "L480", + "platformId": "U7721Z2", + "id": "b98cf1f4-5e32-4355-a0b0-a80367eedfbc" + }, + { + "routeId": "L2260", + "platformId": "U7724Z401", + "id": "17d928a9-9a32-470b-bcca-fb93063a77cf" + }, + { + "routeId": "L2260", + "platformId": "U7724Z402", + "id": "ddf9c3cc-b07f-41ad-9147-c22b92c25ec8" + }, + { + "routeId": "L500", + "platformId": "U7725Z1", + "id": "a247c6cc-0133-4384-bef6-05406a59619e" + }, + { + "routeId": "L500", + "platformId": "U7725Z2", + "id": "bd20694c-a549-4543-bd91-6268b9480ea4" + }, + { + "routeId": "L500", + "platformId": "U7726Z1", + "id": "4a280440-af33-4e24-896f-ed86179369fb" + }, + { + "routeId": "L500", + "platformId": "U7726Z2", + "id": "7c1270b1-278e-473c-8835-ff30d598173a" + }, + { + "routeId": "L480", + "platformId": "U7729Z1", + "id": "ab6f9a11-7ed7-4cc3-9f9a-4c919d855b46" + }, + { + "routeId": "L480", + "platformId": "U7729Z2", + "id": "cb1c3f15-5943-4030-a106-45cff44538d8" + }, + { + "routeId": "L117", + "platformId": "U772Z1", + "id": "7cc3c385-a28d-4d00-bd9e-087981c4282b" + }, + { + "routeId": "L117", + "platformId": "U772Z2", + "id": "dac83bca-5a15-4269-aa86-768e1b3fed1b" + }, + { + "routeId": "L480", + "platformId": "U7730Z1", + "id": "2f12b817-9b52-4bab-a069-6faae26c1ce6" + }, + { + "routeId": "L480", + "platformId": "U7730Z2", + "id": "2582ceaa-2ce1-4756-985e-d3a3d031d26d" + }, + { + "routeId": "L500", + "platformId": "U7731Z1", + "id": "5674b472-d23e-47c5-9e3f-30a104e96624" + }, + { + "routeId": "L500", + "platformId": "U7731Z2", + "id": "a1d238dc-7ab7-4e5d-9e6b-52aa414d96f8" + }, + { + "routeId": "L2849", + "platformId": "U7732Z1", + "id": "8acd93e8-8b34-4a88-b5a9-3faa7b32552a" + }, + { + "routeId": "L2849", + "platformId": "U7732Z2", + "id": "177d0715-6f4d-4042-93c2-a04356870a0d" + }, + { + "routeId": "L406", + "platformId": "U7733Z1", + "id": "0fd24582-f569-4ac0-82e9-04da41447b91" + }, + { + "routeId": "L2843", + "platformId": "U7733Z1", + "id": "3dd3eadc-9336-4502-b87b-33888d15a7d7" + }, + { + "routeId": "L2849", + "platformId": "U7733Z1", + "id": "da1fe0f2-6415-4998-8aab-f6a18476eb3d" + }, + { + "routeId": "L406", + "platformId": "U7733Z2", + "id": "23eda48e-b713-4385-996e-e67243065555" + }, + { + "routeId": "L2843", + "platformId": "U7733Z2", + "id": "e9cc0c93-fb08-435d-a9ad-29eb522df306" + }, + { + "routeId": "L2849", + "platformId": "U7733Z2", + "id": "ee2d4830-0111-4324-9b1d-e412bd686d5e" + }, + { + "routeId": "L2843", + "platformId": "U7734Z1", + "id": "e8cc87be-b292-4da8-b31b-1e4253b562ad" + }, + { + "routeId": "L2843", + "platformId": "U7734Z2", + "id": "d36702b0-a17a-49c0-b231-cd22361524c6" + }, + { + "routeId": "L482", + "platformId": "U7735Z1", + "id": "49a69244-92f3-4739-b2c0-351840c01be5" + }, + { + "routeId": "L482", + "platformId": "U7735Z2", + "id": "7c24d3a8-65a6-454c-a571-277809e761f0" + }, + { + "routeId": "L2854", + "platformId": "U7738Z1", + "id": "f02fccf1-d2d9-417b-8b89-5a6c17dc2030" + }, + { + "routeId": "L2854", + "platformId": "U7738Z2", + "id": "abf618b7-a521-407d-9b10-3aa553aab7d8" + }, + { + "routeId": "L2849", + "platformId": "U7738Z3", + "id": "344f3e68-5691-4296-8a72-0769c778a09a" + }, + { + "routeId": "L2849", + "platformId": "U7738Z4", + "id": "62b465a5-0bf9-4eab-8c32-4d59916ce777" + }, + { + "routeId": "L458", + "platformId": "U7738Z5", + "id": "4b35c604-c66a-4f2a-85be-fd3889ae9a9f" + }, + { + "routeId": "L2841", + "platformId": "U7738Z5", + "id": "5a26e28f-e0b5-4953-96a9-aba88c33dd0b" + }, + { + "routeId": "L458", + "platformId": "U7738Z6", + "id": "71d38a6b-ae9d-4795-b444-677da0b3d99a" + }, + { + "routeId": "L2841", + "platformId": "U7738Z6", + "id": "3a21cbcc-acc1-4a8e-9853-a61b67c4d7e5" + }, + { + "routeId": "L458", + "platformId": "U7739Z1", + "id": "62c7db31-9ebb-4bd1-8c38-49813192a376" + }, + { + "routeId": "L2841", + "platformId": "U7739Z1", + "id": "c8e04292-7a31-40ac-b3b0-b8e4b4bb2f06" + }, + { + "routeId": "L458", + "platformId": "U7739Z2", + "id": "24424905-bc06-497b-89f4-6f29928271f1" + }, + { + "routeId": "L2841", + "platformId": "U7739Z2", + "id": "144481a9-e76a-4f57-bc44-ca9f3117ae39" + }, + { + "routeId": "L458", + "platformId": "U7739Z3", + "id": "923c2a01-14e3-422d-8d6f-e1192c8498cf" + }, + { + "routeId": "L2854", + "platformId": "U7739Z3", + "id": "53b12fdb-27cc-4a69-a405-23d0e94c3a2a" + }, + { + "routeId": "L458", + "platformId": "U7739Z4", + "id": "50940102-d9bc-4edc-be79-e89ffacd7af2" + }, + { + "routeId": "L2854", + "platformId": "U7739Z4", + "id": "b98e710f-46ab-41ba-a998-1f2f29fe504c" + }, + { + "routeId": "L458", + "platformId": "U7740Z1", + "id": "8365a309-5f5a-462d-af60-9f7df67b5055" + }, + { + "routeId": "L458", + "platformId": "U7740Z2", + "id": "3c5fe58e-ecfb-48dc-8844-c582c27e0d47" + }, + { + "routeId": "L2854", + "platformId": "U7741Z1", + "id": "758da563-8424-42e4-964a-0c89996e47c7" + }, + { + "routeId": "L2854", + "platformId": "U7741Z2", + "id": "0982b5c8-060a-4b74-9173-3f2c26dd54a0" + }, + { + "routeId": "L2849", + "platformId": "U7742Z1", + "id": "508c188e-fda2-41e2-a00a-985c47dda08b" + }, + { + "routeId": "L2854", + "platformId": "U7742Z1", + "id": "62b5f9f3-91d6-4608-8e9f-026455763c18" + }, + { + "routeId": "L2849", + "platformId": "U7742Z2", + "id": "147b80a5-ec14-4e67-b7a2-7ba70c5d18ef" + }, + { + "routeId": "L2854", + "platformId": "U7742Z2", + "id": "a358d414-be60-456b-90a6-df611c2d5e46" + }, + { + "routeId": "L2854", + "platformId": "U7742Z3", + "id": "eda2af3c-4639-454a-811f-39b4ee45a3af" + }, + { + "routeId": "L2854", + "platformId": "U7742Z4", + "id": "41b7b3f0-38eb-439a-982d-d3ac96435c5f" + }, + { + "routeId": "L2854", + "platformId": "U7744Z1", + "id": "2498ecad-61c0-4e84-a05d-63ebc28c64d1" + }, + { + "routeId": "L2854", + "platformId": "U7744Z2", + "id": "92372a5f-a596-4b58-8952-fd9cbb6aa146" + }, + { + "routeId": "L458", + "platformId": "U7748Z1", + "id": "e7bb3f3b-0105-4b51-a091-79f69b14097d" + }, + { + "routeId": "L458", + "platformId": "U7748Z2", + "id": "bc13552a-8f50-4d11-b458-dcd3ca50ff7f" + }, + { + "routeId": "L177", + "platformId": "U774Z1", + "id": "f10046f4-90ba-4a69-8a0f-6686839330e8" + }, + { + "routeId": "L911", + "platformId": "U774Z1", + "id": "228d201f-4bc1-485b-8379-8e5e149ef485" + }, + { + "routeId": "L177", + "platformId": "U774Z2", + "id": "a11e08e8-8821-41a5-aec1-b0cfd55fa7cf" + }, + { + "routeId": "L911", + "platformId": "U774Z2", + "id": "334a04c5-fecf-42e1-b6aa-d2931b7c0017" + }, + { + "routeId": "L2854", + "platformId": "U7751Z1", + "id": "abf7ef36-10bf-4dc1-bdda-6a302d831d94" + }, + { + "routeId": "L2854", + "platformId": "U7751Z2", + "id": "2cb8fe86-ad5e-42f9-aed8-e5e2f3acd8ee" + }, + { + "routeId": "L520", + "platformId": "U7755Z3", + "id": "2abb856d-9cd4-4214-892a-3d5ecda83038" + }, + { + "routeId": "L520", + "platformId": "U7755Z4", + "id": "abcd7f57-6e49-498b-bff8-a8cdbcb807a5" + }, + { + "routeId": "L520", + "platformId": "U7757Z1", + "id": "142f22e6-8d81-46aa-8ab0-1eb815a27fea" + }, + { + "routeId": "L520", + "platformId": "U7757Z2", + "id": "38b315dd-de9c-4ca7-bccb-6dfd446064e8" + }, + { + "routeId": "L520", + "platformId": "U7758Z1", + "id": "1c651b42-eaa4-4cc6-88f8-3732860957c0" + }, + { + "routeId": "L520", + "platformId": "U7758Z2", + "id": "2ba17980-cd28-4bde-ad4e-c81fe20c8334" + }, + { + "routeId": "L7", + "platformId": "U775Z1", + "id": "4bf76f23-ffcc-4303-98cd-8d0c673f5fcd" + }, + { + "routeId": "L8", + "platformId": "U775Z1", + "id": "c1dee5ee-e358-48dd-8b75-5f7d4e4dffec" + }, + { + "routeId": "L92", + "platformId": "U775Z1", + "id": "89011e5a-8c4f-4fe0-9012-d96cb091c420" + }, + { + "routeId": "L7", + "platformId": "U775Z2", + "id": "acbf3a1b-bd0a-4b72-86d9-a3d1731a0b04" + }, + { + "routeId": "L8", + "platformId": "U775Z2", + "id": "06175ad2-ce38-4e3e-b462-d8558f3fb537" + }, + { + "routeId": "L92", + "platformId": "U775Z2", + "id": "088adbdc-1266-4a7f-a333-aede3533a35e" + }, + { + "routeId": "L520", + "platformId": "U7760Z1", + "id": "3fbd3c09-f0b8-49dd-826a-1d422d66f333" + }, + { + "routeId": "L520", + "platformId": "U7760Z2", + "id": "fd88d2bd-571e-4c09-a3af-0f63c559a359" + }, + { + "routeId": "L454", + "platformId": "U7763Z1", + "id": "9f948059-b372-4d13-be9b-e19de6f59c6f" + }, + { + "routeId": "L454", + "platformId": "U7763Z2", + "id": "a3f685d2-8689-43f0-b5f9-80175175cda2" + }, + { + "routeId": "L454", + "platformId": "U7767Z1", + "id": "2a637bb4-dd5b-4c01-ac6a-f2dd3340a251" + }, + { + "routeId": "L454", + "platformId": "U7767Z2", + "id": "82e5a893-be90-4c6e-85de-242fec7a75c4" + }, + { + "routeId": "L454", + "platformId": "U7768Z1", + "id": "d2a20bfa-b8f0-4998-91f8-a3e702082f7e" + }, + { + "routeId": "L454", + "platformId": "U7768Z2", + "id": "edfd26e8-6e2a-453c-b60c-025853bcc2d9" + }, + { + "routeId": "L100", + "platformId": "U776Z1", + "id": "cec351bf-68ad-47e7-a034-50a6636217fd" + }, + { + "routeId": "L191", + "platformId": "U776Z1", + "id": "7fd83f44-2756-47b8-9d89-3db07658bcae" + }, + { + "routeId": "L910", + "platformId": "U776Z1", + "id": "c41d53bc-5118-497c-906f-c83b18839e8a" + }, + { + "routeId": "L59", + "platformId": "U776Z1", + "id": "93b3a601-917c-449e-8038-ebe2dd17d38f" + }, + { + "routeId": "L100", + "platformId": "U776Z2", + "id": "4f9be24b-ade3-49de-a8cf-031cf54bf09b" + }, + { + "routeId": "L191", + "platformId": "U776Z2", + "id": "05444fd6-403f-46cb-99c7-953ca63ea0f7" + }, + { + "routeId": "L910", + "platformId": "U776Z2", + "id": "5249d8b1-979a-442e-98fe-00825cfbeaeb" + }, + { + "routeId": "L322", + "platformId": "U776Z2", + "id": "7f67f653-e4cc-4770-89ef-39a8c28e0266" + }, + { + "routeId": "L324", + "platformId": "U776Z2", + "id": "d33f397a-de4e-4852-9dfa-53a930db2a78" + }, + { + "routeId": "L342", + "platformId": "U776Z2", + "id": "430ac056-664d-4ebe-b850-70ad3b55a525" + }, + { + "routeId": "L388", + "platformId": "U776Z2", + "id": "77ab45e3-c627-4d3d-982c-a3bc586f3eb0" + }, + { + "routeId": "L429", + "platformId": "U776Z2", + "id": "4fddfc0a-7139-439f-9bb6-09b06c2d4b0a" + }, + { + "routeId": "L323", + "platformId": "U776Z2", + "id": "a3664af0-9316-4c45-9aa3-4e4f92959c0b" + }, + { + "routeId": "L59", + "platformId": "U776Z2", + "id": "16770f9c-49b4-47ba-a5ab-b454fcb5b8a6" + }, + { + "routeId": "L322", + "platformId": "U776Z3", + "id": "a6762fc1-94e5-4742-88de-68ec23c97bb8" + }, + { + "routeId": "L324", + "platformId": "U776Z3", + "id": "1ba02985-85e2-46b5-9399-c7119fc14fc0" + }, + { + "routeId": "L342", + "platformId": "U776Z3", + "id": "134cdb28-e87f-452c-bad7-c33e6284fdd9" + }, + { + "routeId": "L388", + "platformId": "U776Z3", + "id": "a3cecec3-a807-4ec0-9185-85c43a473e90" + }, + { + "routeId": "L429", + "platformId": "U776Z3", + "id": "8c93c52b-996a-46d9-a5c0-996e89b9a150" + }, + { + "routeId": "L323", + "platformId": "U776Z3", + "id": "b0e3a107-1162-49ee-8a66-47d3701c4988" + }, + { + "routeId": "L450", + "platformId": "U7770Z1", + "id": "7b4b63ff-65fc-4fee-bd9e-21d2e0aead9c" + }, + { + "routeId": "L450", + "platformId": "U7771Z1", + "id": "ccfa7d63-d780-4490-a89f-bbd5419346d6" + }, + { + "routeId": "L450", + "platformId": "U7771Z2", + "id": "f8165eb3-35ac-4d82-9573-c96746f8e4bd" + }, + { + "routeId": "L450", + "platformId": "U7773Z1", + "id": "eb07bbea-e401-4886-a7ef-aa5fb48cacac" + }, + { + "routeId": "L450", + "platformId": "U7775Z2", + "id": "2ddb3d9d-cc6a-4be7-b30e-cd9a6f9306c5" + }, + { + "routeId": "L450", + "platformId": "U7776Z2", + "id": "9753e3e6-d935-4d95-a406-f0ef2e63192a" + }, + { + "routeId": "L241", + "platformId": "U777Z1", + "id": "4240e16c-7d2c-4894-99d6-1a4dc7854d14" + }, + { + "routeId": "L917", + "platformId": "U777Z1", + "id": "a96def39-40db-418c-88a7-7b4d57798460" + }, + { + "routeId": "L241", + "platformId": "U777Z2", + "id": "e645cfc7-0151-4220-b335-c22c20936717" + }, + { + "routeId": "L917", + "platformId": "U777Z2", + "id": "e7315299-a9c9-4282-8b95-60dac53ae38b" + }, + { + "routeId": "L481", + "platformId": "U7782Z1", + "id": "cd49ed44-374c-45ae-ad94-91d0ebc1a75c" + }, + { + "routeId": "L481", + "platformId": "U7782Z2", + "id": "f8133de8-5e7a-422a-8ed1-ceb1e59e361c" + }, + { + "routeId": "L481", + "platformId": "U7783Z1", + "id": "dfe904af-bdb9-486f-af31-803a95f20d02" + }, + { + "routeId": "L481", + "platformId": "U7783Z2", + "id": "29b2e20c-2d46-4ada-8061-85944111f9af" + }, + { + "routeId": "L754", + "platformId": "U7784Z1", + "id": "c3ef668f-5cd2-4a97-8380-e93cf25ae447" + }, + { + "routeId": "L754", + "platformId": "U7784Z2", + "id": "9f7e7929-b316-4f45-a5dc-12662847f98a" + }, + { + "routeId": "L520", + "platformId": "U7784Z3", + "id": "6553be2d-83ef-4b23-9311-70a0239576db" + }, + { + "routeId": "L520", + "platformId": "U7784Z4", + "id": "1d6be8fb-e455-4607-9b71-c9b8f30a6871" + }, + { + "routeId": "L754", + "platformId": "U7785Z1", + "id": "10a58cc6-018b-4f28-b80f-b49ff9473c31" + }, + { + "routeId": "L754", + "platformId": "U7785Z2", + "id": "2e2cbdf7-3297-48e6-8414-af42ff15bb1d" + }, + { + "routeId": "L754", + "platformId": "U7786Z1", + "id": "ebc3fc7e-4c67-436a-a085-79dcd2dd1219" + }, + { + "routeId": "L754", + "platformId": "U7786Z2", + "id": "bd837dbb-8d44-4559-aa5a-71ffc47cd4f0" + }, + { + "routeId": "L520", + "platformId": "U7787Z1", + "id": "409c06d3-726e-4b01-99fc-a5cc9a31ce26" + }, + { + "routeId": "L754", + "platformId": "U7787Z1", + "id": "9d6a9a81-d754-4a26-9ec3-60a7deb88c65" + }, + { + "routeId": "L520", + "platformId": "U7787Z2", + "id": "2171a7a1-2747-43de-a562-8e1aae3717e2" + }, + { + "routeId": "L754", + "platformId": "U7787Z2", + "id": "cbea5508-be77-47ee-9eb8-c99b8c552fb6" + }, + { + "routeId": "L752", + "platformId": "U7789Z1", + "id": "8a1ee036-32e2-4ff8-a8e2-2b6f65521564" + }, + { + "routeId": "L752", + "platformId": "U7789Z2", + "id": "470b281a-5433-42b6-9a3a-c50631a6e6cd" + }, + { + "routeId": "L22", + "platformId": "U778Z1", + "id": "8293bc5a-bbac-46c4-9343-61c13b094b27" + }, + { + "routeId": "L25", + "platformId": "U778Z1", + "id": "fbfd607e-1f4b-42d6-b755-b5d4e9d51bb1" + }, + { + "routeId": "L97", + "platformId": "U778Z1", + "id": "5e8e7d68-5861-4115-a79a-e5c7ae88d8c8" + }, + { + "routeId": "L22", + "platformId": "U778Z2", + "id": "48a29529-52a4-4a54-b1ca-9b54a6559da5" + }, + { + "routeId": "L25", + "platformId": "U778Z2", + "id": "9397b1ed-05ee-44a1-90cb-0f530b3f0f0e" + }, + { + "routeId": "L97", + "platformId": "U778Z2", + "id": "2532dbf5-623c-4004-beb4-c20ba50e16e1" + }, + { + "routeId": "L754", + "platformId": "U7791Z1", + "id": "1f3ca9a5-2b65-4074-850d-2dde46ed0394" + }, + { + "routeId": "L754", + "platformId": "U7791Z2", + "id": "de828d11-2755-4654-96a6-54e6c49b6bad" + }, + { + "routeId": "L754", + "platformId": "U7792Z1", + "id": "be68baab-6c49-4b2d-b0d1-f4444244b019" + }, + { + "routeId": "L754", + "platformId": "U7792Z2", + "id": "84ffba12-9cfd-41d9-90a3-20c2545cb0f1" + }, + { + "routeId": "L754", + "platformId": "U7793Z1", + "id": "178c2613-253d-45b6-8b69-fff2b7cb8fc6" + }, + { + "routeId": "L754", + "platformId": "U7793Z2", + "id": "f2604efd-710a-4867-bc46-0dcb1a78e661" + }, + { + "routeId": "L770", + "platformId": "U7795Z1", + "id": "e1365f0a-7e23-4735-b6dd-4846cde85f3c" + }, + { + "routeId": "L770", + "platformId": "U7795Z2", + "id": "29766f36-37d7-4640-96a6-6b4b5104885d" + }, + { + "routeId": "L793", + "platformId": "U7796Z2", + "id": "5678f623-b762-4720-a028-ac6869f063d3" + }, + { + "routeId": "L420", + "platformId": "U7797Z1", + "id": "295c6645-1a29-4490-9858-6a44ebc0d126" + }, + { + "routeId": "L420", + "platformId": "U7797Z2", + "id": "382bd320-a83c-4547-b585-8b7b48894731" + }, + { + "routeId": "L420", + "platformId": "U7798Z1", + "id": "3631ca09-32ea-4fbe-9c0b-51c813193691" + }, + { + "routeId": "L420", + "platformId": "U7798Z2", + "id": "0759853e-0634-41d5-b99c-85ff5d781688" + }, + { + "routeId": "L3", + "platformId": "U779Z1", + "id": "f6e67cc3-8ce7-4e2f-93f8-15c5217ff861" + }, + { + "routeId": "L10", + "platformId": "U779Z1", + "id": "870ff4a5-f6e0-4060-b4f0-863abefc6741" + }, + { + "routeId": "L95", + "platformId": "U779Z1", + "id": "9aec6413-862c-48d1-854a-a5e207430308" + }, + { + "routeId": "L3", + "platformId": "U779Z2", + "id": "04b55ae2-004e-4550-b84c-2853bd1ec1f6" + }, + { + "routeId": "L10", + "platformId": "U779Z2", + "id": "ab9f5d1e-633c-420a-883e-0d69527bf5a1" + }, + { + "routeId": "L95", + "platformId": "U779Z2", + "id": "fd2430da-0530-4b6a-9f2c-0172c4fca577" + }, + { + "routeId": "L705", + "platformId": "U7801Z1", + "id": "8e52f3be-52cf-4ac4-9fe8-b403d7c36352" + }, + { + "routeId": "L480", + "platformId": "U7802Z1", + "id": "11cead47-3c39-40af-882c-af2266ec8c76" + }, + { + "routeId": "L480", + "platformId": "U7802Z2", + "id": "35f1e508-27c8-492d-8018-9ad767d0ca0f" + }, + { + "routeId": "L480", + "platformId": "U7804Z1", + "id": "ef756ebd-8fe3-438e-a73c-53d6da3d7e0e" + }, + { + "routeId": "L480", + "platformId": "U7804Z2", + "id": "e87b59b8-c241-4289-820d-9a267158eb4a" + }, + { + "routeId": "L480", + "platformId": "U7805Z1", + "id": "810e6211-a6f5-40f3-befe-f6a2fbbd1d5a" + }, + { + "routeId": "L480", + "platformId": "U7805Z2", + "id": "b2f3b02e-1976-4337-9c1d-95e75a855493" + }, + { + "routeId": "L305", + "platformId": "U7806Z1", + "id": "756e5122-93a8-44e1-9cbb-b0ff52653104" + }, + { + "routeId": "L305", + "platformId": "U7806Z2", + "id": "31104774-96dd-4beb-9cff-af9a826100f0" + }, + { + "routeId": "L770", + "platformId": "U7807Z1", + "id": "07c9d7fc-8e30-47ed-bcd7-393187545333" + }, + { + "routeId": "L770", + "platformId": "U7807Z2", + "id": "8ce1bb56-aa9e-4039-92f7-d744ed13613f" + }, + { + "routeId": "L770", + "platformId": "U7809Z1", + "id": "d9ddadb0-3a5a-430a-86be-e58e0968062c" + }, + { + "routeId": "L770", + "platformId": "U7809Z2", + "id": "fd3f5f7c-57dc-48c5-aac5-ab2f1b3b067d" + }, + { + "routeId": "L120", + "platformId": "U780Z1", + "id": "c8c4b98a-0c53-4990-8ac0-5f94cd3713be" + }, + { + "routeId": "L951", + "platformId": "U780Z1", + "id": "3ec070dd-d058-448d-829a-0fc421078fda" + }, + { + "routeId": "L120", + "platformId": "U780Z2", + "id": "8826ad4e-f91e-4a93-bab6-15e213597182" + }, + { + "routeId": "L951", + "platformId": "U780Z2", + "id": "fd36b58e-d4da-4f18-9d1d-5bfa0f9a15b5" + }, + { + "routeId": "L770", + "platformId": "U7810Z1", + "id": "656dad56-2c5b-46f3-b04e-e0817b05ea18" + }, + { + "routeId": "L770", + "platformId": "U7810Z2", + "id": "d2b3421c-4fe9-446c-aedd-1a6dd7396fff" + }, + { + "routeId": "L450", + "platformId": "U7811Z1", + "id": "39975b74-fd6c-43e3-a441-6bb77b3f35bb" + }, + { + "routeId": "L450", + "platformId": "U7813Z1", + "id": "6e2431b8-3297-4d97-a4fd-0fc36826bb87" + }, + { + "routeId": "L450", + "platformId": "U7815Z1", + "id": "c2ac08f7-befd-402a-b0fb-9b5bfb0238ab" + }, + { + "routeId": "L450", + "platformId": "U7815Z2", + "id": "cf5742b8-c7bb-4df6-a849-3d52de4eba5d" + }, + { + "routeId": "L450", + "platformId": "U7816Z1", + "id": "d817319c-e30d-4765-984a-f952bdffaec0" + }, + { + "routeId": "L450", + "platformId": "U7816Z2", + "id": "930093ef-565a-4cf2-87be-1a2369656e10" + }, + { + "routeId": "L191", + "platformId": "U781Z1", + "id": "6ed24371-9b2e-4eae-a733-238f66a7c4bc" + }, + { + "routeId": "L910", + "platformId": "U781Z1", + "id": "75867f80-6d89-4006-a1ef-98015d33baf3" + }, + { + "routeId": "L191", + "platformId": "U781Z2", + "id": "ccd83ff6-984b-4d81-a631-bcf0aa14a7c8" + }, + { + "routeId": "L910", + "platformId": "U781Z2", + "id": "813c3f8c-8e61-408a-9036-bad56f02f105" + }, + { + "routeId": "L450", + "platformId": "U7820Z1", + "id": "9bded7a5-8698-46a1-bc29-6fe0b589d768" + }, + { + "routeId": "L450", + "platformId": "U7820Z2", + "id": "4fd7b8d2-d925-4f75-8138-22a37ced812a" + }, + { + "routeId": "L450", + "platformId": "U7828Z1", + "id": "d10ecacf-85f3-4ef5-be57-9908029431fb" + }, + { + "routeId": "L450", + "platformId": "U7828Z2", + "id": "84c61713-f2c7-407d-9797-74c287136cfe" + }, + { + "routeId": "L123", + "platformId": "U782Z1", + "id": "34571b3b-022e-4c1f-9c83-d6b5c0558385" + }, + { + "routeId": "L123", + "platformId": "U782Z2", + "id": "d65769d5-cf07-439c-a38c-645e812a2044" + }, + { + "routeId": "L798", + "platformId": "U7831Z1", + "id": "386243ab-16e6-41f4-b4a4-8c9a9300545a" + }, + { + "routeId": "L406", + "platformId": "U7831Z1", + "id": "6c90e2d4-6ae7-4289-b2f8-695ff4ec5ba0" + }, + { + "routeId": "L791", + "platformId": "U7831Z1", + "id": "3876e67c-ce38-4916-a6a5-17b0b4aa2887" + }, + { + "routeId": "L455", + "platformId": "U7831Z1", + "id": "37be2aea-c24e-4f35-b961-f4404b5c4ae2" + }, + { + "routeId": "L798", + "platformId": "U7831Z2", + "id": "a8b538ba-a990-43e5-a91c-71f993a2507d" + }, + { + "routeId": "L406", + "platformId": "U7831Z2", + "id": "d448e016-b5b9-4ae0-90b3-fe57ddcd5421" + }, + { + "routeId": "L791", + "platformId": "U7831Z2", + "id": "fa879f9f-7509-4426-b888-4ef69c0cad41" + }, + { + "routeId": "L455", + "platformId": "U7831Z2", + "id": "4fceaa51-4b80-4795-b6c2-8c3c2525325c" + }, + { + "routeId": "L798", + "platformId": "U7836Z1", + "id": "3977f3e2-2b6b-4f81-88bc-465f85a80315" + }, + { + "routeId": "L406", + "platformId": "U7836Z1", + "id": "a93b1f39-650e-4fb3-968b-c1325bde8660" + }, + { + "routeId": "L791", + "platformId": "U7836Z1", + "id": "f93516ab-2622-4ed4-80ac-ac3a296621cf" + }, + { + "routeId": "L455", + "platformId": "U7836Z1", + "id": "fb529c24-87e6-471a-84ed-a7ffe5363250" + }, + { + "routeId": "L798", + "platformId": "U7836Z2", + "id": "89f524f7-4196-4de7-94ab-fd4a609c803f" + }, + { + "routeId": "L406", + "platformId": "U7836Z2", + "id": "fca96354-01eb-41f1-84ce-69cea98fe5e4" + }, + { + "routeId": "L791", + "platformId": "U7836Z2", + "id": "36dc892e-e4d0-47c8-a51a-5e4bfd68fd24" + }, + { + "routeId": "L455", + "platformId": "U7836Z2", + "id": "7970f835-d192-425e-bf39-85dc6f41da6a" + }, + { + "routeId": "L450", + "platformId": "U7838Z1", + "id": "cd191d6b-9afa-4941-9605-9ccbd8d86b6c" + }, + { + "routeId": "L450", + "platformId": "U7838Z2", + "id": "eaea4424-12c1-411b-83bc-449e71c8eadd" + }, + { + "routeId": "L450", + "platformId": "U7839Z2", + "id": "bf9cc641-623f-4976-bd57-332e1f1dabc3" + }, + { + "routeId": "L113", + "platformId": "U783Z1", + "id": "50e530d5-15f2-4c51-8c15-786392dc0210" + }, + { + "routeId": "L197", + "platformId": "U783Z1", + "id": "3bf25ee3-c889-4b7a-b4dd-981a3bc20375" + }, + { + "routeId": "L904", + "platformId": "U783Z1", + "id": "3e44ec92-8e05-43b3-a791-b5b5b701ab45" + }, + { + "routeId": "L913", + "platformId": "U783Z1", + "id": "a4aa84b8-d1f7-45da-9018-cd75f0fe29bb" + }, + { + "routeId": "L333", + "platformId": "U783Z1", + "id": "7c95c123-b885-4ce1-9c1b-d57874da09c9" + }, + { + "routeId": "L960", + "platformId": "U783Z1", + "id": "739a70f3-ea52-4f95-8f71-64c39b59a361" + }, + { + "routeId": "L113", + "platformId": "U783Z2", + "id": "9df33a00-eae0-4727-89d4-30f426cd62a9" + }, + { + "routeId": "L197", + "platformId": "U783Z2", + "id": "1178a79b-0c81-494e-af55-7c148d822d6e" + }, + { + "routeId": "L904", + "platformId": "U783Z2", + "id": "68796cfb-9e47-4450-8aab-c77ee8adae68" + }, + { + "routeId": "L913", + "platformId": "U783Z2", + "id": "835994de-e2d2-4119-a0bb-ed94df773c5c" + }, + { + "routeId": "L333", + "platformId": "U783Z2", + "id": "6fb8a2f8-f085-4f4a-893b-37e70ab88ec6" + }, + { + "routeId": "L960", + "platformId": "U783Z2", + "id": "89732ffc-c0fb-4671-88a0-3e07873ca8aa" + }, + { + "routeId": "L450", + "platformId": "U7840Z2", + "id": "87b1ac56-b396-4273-9994-541c97344713" + }, + { + "routeId": "L450", + "platformId": "U7841Z2", + "id": "7c3a8cdb-151c-4602-ad57-70ddfeb7448e" + }, + { + "routeId": "L450", + "platformId": "U7842Z1", + "id": "100cb307-aa5e-43b8-b54d-2fe5d9131d9e" + }, + { + "routeId": "L450", + "platformId": "U7842Z2", + "id": "ef612632-61e0-4c19-8c00-d3972ef7bc80" + }, + { + "routeId": "L101", + "platformId": "U784Z1", + "id": "344bbbea-c740-4a6e-a5c6-8868354e46e4" + }, + { + "routeId": "L101", + "platformId": "U784Z2", + "id": "82f045db-3375-4a52-98a8-79e74d2edf89" + }, + { + "routeId": "L138", + "platformId": "U784Z3", + "id": "75b5aa43-836d-4855-ab4b-cd3ccb36ed1b" + }, + { + "routeId": "L138", + "platformId": "U784Z4", + "id": "af57c485-b570-4a70-83a7-2100c84587de" + }, + { + "routeId": "L455", + "platformId": "U7850Z1", + "id": "4e60024b-e360-41dd-a153-461a82251ef4" + }, + { + "routeId": "L455", + "platformId": "U7850Z2", + "id": "11eaba0e-1a6b-4f3e-9220-8aabc8e7dd61" + }, + { + "routeId": "L455", + "platformId": "U7852Z1", + "id": "93f518dd-9831-4d0d-af9c-e5ec149de27a" + }, + { + "routeId": "L455", + "platformId": "U7852Z2", + "id": "7935d182-3e46-48c1-80a5-dd485b75dc7f" + }, + { + "routeId": "L406", + "platformId": "U7855Z1", + "id": "9d6c952f-cf63-4e51-a2b9-72ca3c897d27" + }, + { + "routeId": "L455", + "platformId": "U7855Z1", + "id": "01694a95-85e2-4f7a-8266-28c6266e7164" + }, + { + "routeId": "L406", + "platformId": "U7855Z2", + "id": "4fd1c682-3445-4c6d-bdd4-fa0d8fc43b25" + }, + { + "routeId": "L455", + "platformId": "U7855Z2", + "id": "b987775c-5b52-4570-99de-a7bb0b510b7d" + }, + { + "routeId": "L406", + "platformId": "U7856Z1", + "id": "1654edf9-38b8-4d4f-bd16-a806ed5c2e06" + }, + { + "routeId": "L406", + "platformId": "U7856Z2", + "id": "3626c7ed-ead8-4e94-937d-7580656040f5" + }, + { + "routeId": "L455", + "platformId": "U7857Z1", + "id": "8dff5776-4714-453c-8451-d0971f9b067e" + }, + { + "routeId": "L455", + "platformId": "U7857Z2", + "id": "eaff0a96-0745-4cd6-998b-33294e7ea7ce" + }, + { + "routeId": "L455", + "platformId": "U7859Z1", + "id": "7b985e03-9c33-4bce-b2fd-a53eaac22c25" + }, + { + "routeId": "L455", + "platformId": "U7859Z2", + "id": "a203f869-57a8-4754-a9c5-6b527f24f843" + }, + { + "routeId": "L246", + "platformId": "U785Z1", + "id": "e9c4b707-f7cd-4dc1-9f31-a0a1077b2459" + }, + { + "routeId": "L246", + "platformId": "U785Z2", + "id": "30cb3e48-d82a-403e-b5ae-9ece2a605869" + }, + { + "routeId": "L455", + "platformId": "U7865Z1", + "id": "80512d1c-24d8-4d01-a052-44a79107531c" + }, + { + "routeId": "L455", + "platformId": "U7865Z2", + "id": "451c9d39-9934-428c-be49-fbecea934d50" + }, + { + "routeId": "L2849", + "platformId": "U7866Z1", + "id": "f26a52a2-4c1c-4593-9584-ec0ce6ce3fde" + }, + { + "routeId": "L2848", + "platformId": "U7866Z1", + "id": "e3b398d0-aa41-4409-979c-801a3b9865b5" + }, + { + "routeId": "L2848", + "platformId": "U7867Z2", + "id": "efe4b558-6b64-48b8-98a2-acd4d238ed71" + }, + { + "routeId": "L2849", + "platformId": "U7868Z1", + "id": "5617cf10-845b-4f56-be99-bd035d038a8d" + }, + { + "routeId": "L2849", + "platformId": "U7868Z2", + "id": "eea2c5b1-1529-48d5-86c3-041acd63e3ea" + }, + { + "routeId": "L2849", + "platformId": "U7869Z1", + "id": "88f5da5f-a881-465a-9eb9-5d370361d32a" + }, + { + "routeId": "L2854", + "platformId": "U7869Z1", + "id": "8ed364b1-e2b9-4c9e-9b9f-d91be3e4d930" + }, + { + "routeId": "L2849", + "platformId": "U7869Z2", + "id": "29ad057b-38bb-442d-98d2-1ddae88cfc27" + }, + { + "routeId": "L2854", + "platformId": "U7869Z2", + "id": "c63d8347-cd8d-4ac2-ab6a-5b56088046f3" + }, + { + "routeId": "L149", + "platformId": "U786Z1", + "id": "53d49056-126e-42e4-865d-65eb239af314" + }, + { + "routeId": "L168", + "platformId": "U786Z1", + "id": "a405458d-3462-428d-8086-03e630b4a30a" + }, + { + "routeId": "L149", + "platformId": "U786Z2", + "id": "35878c03-b928-4b78-8281-a761f30c1781" + }, + { + "routeId": "L168", + "platformId": "U786Z2", + "id": "549a5170-7cc5-491c-8d22-6e96dec90074" + }, + { + "routeId": "L458", + "platformId": "U7870Z1", + "id": "7f541763-7e96-496f-a242-05ec349eac05" + }, + { + "routeId": "L2854", + "platformId": "U7870Z1", + "id": "1c988182-c4f4-4c71-a15e-b459f6adacf3" + }, + { + "routeId": "L458", + "platformId": "U7870Z2", + "id": "330b946a-6d62-4d07-9c8c-6a41ea332227" + }, + { + "routeId": "L2854", + "platformId": "U7870Z2", + "id": "dce1678d-0022-4444-a818-fdfd6846ec91" + }, + { + "routeId": "L458", + "platformId": "U7871Z1", + "id": "960b2f9c-1430-4888-956c-e324abfa9442" + }, + { + "routeId": "L2854", + "platformId": "U7871Z1", + "id": "86088a48-978d-45a0-85a1-ebb78698068e" + }, + { + "routeId": "L458", + "platformId": "U7871Z2", + "id": "03cf937f-3f4a-4c28-b0d7-5cd66eed1380" + }, + { + "routeId": "L2854", + "platformId": "U7871Z2", + "id": "f946400c-e5b6-4c8e-9202-f662f0657bc2" + }, + { + "routeId": "L2841", + "platformId": "U7872Z1", + "id": "9611ceac-e08a-40d1-8d5e-5c5c9bf33a0d" + }, + { + "routeId": "L2841", + "platformId": "U7872Z2", + "id": "e5c42753-c78d-4bb9-8c88-3b76f65a2236" + }, + { + "routeId": "L2849", + "platformId": "U7873Z1", + "id": "578ba4cb-36bd-4b36-ab99-5eb47dcc4c41" + }, + { + "routeId": "L2849", + "platformId": "U7873Z2", + "id": "faf6dd5a-3bd2-42c3-a79d-eff729f9c57b" + }, + { + "routeId": "L458", + "platformId": "U7874Z1", + "id": "0a8c9c20-6bfd-4411-b0bf-2294bc494fab" + }, + { + "routeId": "L2854", + "platformId": "U7874Z1", + "id": "f95f03ae-4962-4395-8a09-15ba8e1c412e" + }, + { + "routeId": "L458", + "platformId": "U7874Z2", + "id": "4d746bfb-0dcc-44c8-922c-66e8516049fc" + }, + { + "routeId": "L2854", + "platformId": "U7874Z2", + "id": "078c83ad-6249-462b-a7db-8843fbfae11f" + }, + { + "routeId": "L131", + "platformId": "U787Z1", + "id": "e007a47c-a6ba-4398-b479-376239ebc11d" + }, + { + "routeId": "L907", + "platformId": "U787Z1", + "id": "16df3ed4-3411-4d4d-a5d7-762e227addf8" + }, + { + "routeId": "L131", + "platformId": "U787Z2", + "id": "d08512cd-315d-4ad4-aa6b-16abc72bb980" + }, + { + "routeId": "L907", + "platformId": "U787Z2", + "id": "cdff7b1b-e7d1-43d6-96e0-7a32c62aee80" + }, + { + "routeId": "L796", + "platformId": "U7881Z1", + "id": "6f0a9455-1469-4680-b902-2b537507bd1c" + }, + { + "routeId": "L796", + "platformId": "U7881Z2", + "id": "ac1037a1-0112-474b-8235-84d0df334e1f" + }, + { + "routeId": "L796", + "platformId": "U7882Z1", + "id": "d4a84914-928f-4433-b7cc-659ade7b3306" + }, + { + "routeId": "L796", + "platformId": "U7882Z2", + "id": "56b6811f-80f9-47c5-aeb7-5f5fe65e6bf3" + }, + { + "routeId": "L796", + "platformId": "U7883Z1", + "id": "fc71dd11-e06c-43ee-b10f-349400b7a741" + }, + { + "routeId": "L796", + "platformId": "U7883Z2", + "id": "2e2eb199-6ca3-4d94-8e66-836b4b3b3189" + }, + { + "routeId": "L500", + "platformId": "U7884Z1", + "id": "8de6f3ca-a8e9-4ee2-9bcd-db1cbc8db7dd" + }, + { + "routeId": "L500", + "platformId": "U7884Z2", + "id": "7376e1aa-5989-4521-8fc1-f36696ee05bb" + }, + { + "routeId": "L500", + "platformId": "U7885Z1", + "id": "57ed22d2-034a-4e03-ad8f-cc7d0f8a9c0d" + }, + { + "routeId": "L500", + "platformId": "U7885Z2", + "id": "2470d8ec-f6cb-46a4-9b7c-d99dfd5439a3" + }, + { + "routeId": "L480", + "platformId": "U7886Z1", + "id": "ddd722b8-8800-4fd9-8a71-2d819dff363d" + }, + { + "routeId": "L480", + "platformId": "U7886Z2", + "id": "29ff80da-7f6e-4eda-87ed-7d1516b070fc" + }, + { + "routeId": "L480", + "platformId": "U7887Z1", + "id": "3330d1bb-b958-4a9c-a0fc-11f41609913f" + }, + { + "routeId": "L480", + "platformId": "U7887Z2", + "id": "5db14617-6c19-4ded-8628-2f50c0b6b57a" + }, + { + "routeId": "L500", + "platformId": "U7888Z1", + "id": "f6980ec0-c100-40d0-96f4-36afa0192193" + }, + { + "routeId": "L500", + "platformId": "U7888Z2", + "id": "a705b565-ee2a-4cef-b8f0-afe360bf1774" + }, + { + "routeId": "L754", + "platformId": "U7889Z1", + "id": "0aa6832e-5fe9-4631-a398-efad338b2cf1" + }, + { + "routeId": "L754", + "platformId": "U7889Z2", + "id": "3a609f2e-cfb1-4c9a-8713-a2246b0111d1" + }, + { + "routeId": "L149", + "platformId": "U788Z1", + "id": "daaf2457-8229-4920-bf65-1ff007a2b1db" + }, + { + "routeId": "L149", + "platformId": "U788Z2", + "id": "5cc6a648-3b5d-46e1-bc2f-8b35d195e6ba" + }, + { + "routeId": "L754", + "platformId": "U7890Z1", + "id": "0717ee5f-a119-44b0-a816-a733079fe606" + }, + { + "routeId": "L754", + "platformId": "U7890Z3", + "id": "722baf1b-83eb-41df-809d-1c6bf6441a2a" + }, + { + "routeId": "L500", + "platformId": "U7891Z1", + "id": "5927b145-2ac7-4e31-9357-b4abe1a133be" + }, + { + "routeId": "L500", + "platformId": "U7891Z2", + "id": "7adcc10a-dbcc-4a98-9265-270558410fd5" + }, + { + "routeId": "L500", + "platformId": "U7892Z1", + "id": "ab264bd1-a332-4df9-bd86-d7493c511a61" + }, + { + "routeId": "L500", + "platformId": "U7892Z2", + "id": "0db44253-b864-40c0-9f87-dd3643a6f247" + }, + { + "routeId": "L793", + "platformId": "U7893Z1", + "id": "bc053710-5052-4905-a4b6-77d6591e8a0f" + }, + { + "routeId": "L793", + "platformId": "U7893Z2", + "id": "ea3cdd56-c4d1-4072-8eeb-5eba227d08ce" + }, + { + "routeId": "L495", + "platformId": "U7899Z10", + "id": "10a02faa-e1a4-4e04-b343-0035a5e08937" + }, + { + "routeId": "L521", + "platformId": "U7899Z2", + "id": "3cca84b6-8459-4371-8adc-39224dc4d1c2" + }, + { + "routeId": "L523", + "platformId": "U7899Z3", + "id": "5be642d2-bcd2-4bd6-9513-7686bb2e7ebb" + }, + { + "routeId": "L521", + "platformId": "U7899Z9", + "id": "876d444f-ac01-4751-ad93-49ec1b8b60c6" + }, + { + "routeId": "L133", + "platformId": "U789Z1", + "id": "7bc311e0-bdee-48f8-8e0b-b22c14e1b339" + }, + { + "routeId": "L175", + "platformId": "U789Z1", + "id": "c2e33a04-d034-429e-86f0-9c5abd2afb90" + }, + { + "routeId": "L207", + "platformId": "U789Z1", + "id": "28a4ef38-f2b7-4a08-a578-a7498b128c58" + }, + { + "routeId": "L908", + "platformId": "U789Z1", + "id": "ec8b747b-4bfd-4a59-9692-ec807b30a1a2" + }, + { + "routeId": "L909", + "platformId": "U789Z1", + "id": "e168e3ea-8480-4d5c-815e-b9a9ba502ba6" + }, + { + "routeId": "L133", + "platformId": "U789Z2", + "id": "112d2959-e12d-414d-8b7c-a5c84a9c748c" + }, + { + "routeId": "L175", + "platformId": "U789Z2", + "id": "c4838c0a-d044-473b-9902-3e947db0d503" + }, + { + "routeId": "L207", + "platformId": "U789Z2", + "id": "dd674c11-3b20-4285-ac0e-21101eac72e4" + }, + { + "routeId": "L908", + "platformId": "U789Z2", + "id": "64633283-b73e-4092-9dfb-da0ffb0815cc" + }, + { + "routeId": "L909", + "platformId": "U789Z2", + "id": "efbff061-6eb7-4dbd-a4f8-babd436961cd" + }, + { + "routeId": "L10", + "platformId": "U78Z1", + "id": "fa7172b2-2825-4c48-81a3-d3981d989332" + }, + { + "routeId": "L93", + "platformId": "U78Z1", + "id": "63bd3479-a659-434e-a4c1-4621ba5e4d44" + }, + { + "routeId": "L993", + "platformId": "U78Z101", + "id": "114b7623-4624-4818-85e7-780acffe7f80" + }, + { + "routeId": "L993", + "platformId": "U78Z102", + "id": "1d789232-b5f5-452a-9ddc-2bc6588b3377" + }, + { + "routeId": "L10", + "platformId": "U78Z2", + "id": "b7a593b8-ed3f-4a1c-8f1a-ce2645e4878f" + }, + { + "routeId": "L93", + "platformId": "U78Z2", + "id": "69083572-ad65-46e5-9799-a478eeadadfc" + }, + { + "routeId": "L152", + "platformId": "U78Z3", + "id": "14437106-5511-40fb-bf57-e5468b286aea" + }, + { + "routeId": "L177", + "platformId": "U78Z3", + "id": "8e97d8bb-e943-4589-ba59-04eb41b09c31" + }, + { + "routeId": "L913", + "platformId": "U78Z3", + "id": "7aa3266a-e6a2-416f-bb0f-b192d895162a" + }, + { + "routeId": "L103", + "platformId": "U78Z3", + "id": "8597479b-6376-4d25-9007-de2e0a1e9ff9" + }, + { + "routeId": "L283", + "platformId": "U78Z3", + "id": "83996121-5373-4cb0-bbbd-f21f51efb9f5" + }, + { + "routeId": "L166", + "platformId": "U78Z3", + "id": "f492dc97-f078-48a2-ae11-4535b5ae1b22" + }, + { + "routeId": "L348", + "platformId": "U78Z3", + "id": "e50d44b5-6c09-4e4b-88ec-a131d50ba933" + }, + { + "routeId": "L369", + "platformId": "U78Z3", + "id": "ff75bc42-7f4f-4d60-9e8f-70f45939246d" + }, + { + "routeId": "L152", + "platformId": "U78Z4", + "id": "26f4ca90-de69-47eb-aa23-ae3327ad48c3" + }, + { + "routeId": "L177", + "platformId": "U78Z4", + "id": "a414343c-9d5c-4670-99cc-49fb7f7d7850" + }, + { + "routeId": "L913", + "platformId": "U78Z4", + "id": "50f13485-dc2e-4fc0-8ec1-237680fdb20d" + }, + { + "routeId": "L103", + "platformId": "U78Z4", + "id": "7744dc1d-08ba-4c18-9600-e14cf1368ea2" + }, + { + "routeId": "L283", + "platformId": "U78Z4", + "id": "e5ab717e-ed89-4016-b581-3ef00890b486" + }, + { + "routeId": "L166", + "platformId": "U78Z4", + "id": "a7143701-98d9-44a7-89df-988288baa28d" + }, + { + "routeId": "L348", + "platformId": "U78Z5", + "id": "48da7e0e-bcb2-4efe-8f29-940ebe6b9513" + }, + { + "routeId": "L369", + "platformId": "U78Z6", + "id": "d514b0f1-b3eb-465b-b689-c15bd2b9ca6d" + }, + { + "routeId": "L521", + "platformId": "U7900Z1", + "id": "fbff7b16-442a-4ee5-b0c1-44889d77da0f" + }, + { + "routeId": "L495", + "platformId": "U7900Z1", + "id": "c9630e0f-335d-4bcc-a897-2503986993d9" + }, + { + "routeId": "L521", + "platformId": "U7900Z2", + "id": "4b365407-4357-4888-9c97-cd28aea54ac1" + }, + { + "routeId": "L495", + "platformId": "U7900Z2", + "id": "266023b9-20b5-4194-bcc1-234c0d3b0549" + }, + { + "routeId": "L495", + "platformId": "U7901Z1", + "id": "11d6b84e-9208-4f25-86bb-d5d562c9ebdb" + }, + { + "routeId": "L495", + "platformId": "U7901Z2", + "id": "6e7e9c6a-30d5-4d83-92f0-857988ec6063" + }, + { + "routeId": "L495", + "platformId": "U7904Z1", + "id": "884742d3-4cb5-4664-af31-f65460b32f4d" + }, + { + "routeId": "L495", + "platformId": "U7904Z2", + "id": "a4b3d299-61da-47c2-bfc2-b5a437b20d0f" + }, + { + "routeId": "L495", + "platformId": "U7905Z1", + "id": "86677c84-ecd9-42b1-96b8-45a6d54d98f6" + }, + { + "routeId": "L495", + "platformId": "U7905Z2", + "id": "0bd8e52e-530b-4b53-9c99-b6a2d0a46ffa" + }, + { + "routeId": "L521", + "platformId": "U7906Z1", + "id": "b9ba8d4d-ca3d-4927-8d36-1de92f345aa0" + }, + { + "routeId": "L523", + "platformId": "U7906Z1", + "id": "a17beb54-a7bd-4ef0-9d0c-595620a1b812" + }, + { + "routeId": "L521", + "platformId": "U7906Z2", + "id": "f6eee3b8-d1f1-489a-8b1a-6b63346068ed" + }, + { + "routeId": "L523", + "platformId": "U7906Z2", + "id": "a47a6f02-0f11-4999-808c-e5231fc2f1a8" + }, + { + "routeId": "L151", + "platformId": "U790Z1", + "id": "dce0f7c0-c72e-418c-8fbf-f8d1e931204c" + }, + { + "routeId": "L151", + "platformId": "U790Z2", + "id": "85e056c2-841b-4fd2-825b-79722225a9a8" + }, + { + "routeId": "L514", + "platformId": "U7911Z1", + "id": "dcdd0e0a-c477-4482-b97f-a473e6936e9f" + }, + { + "routeId": "L514", + "platformId": "U7911Z2", + "id": "7fdaf01c-8b5b-400f-bfb7-bf04b50d2c04" + }, + { + "routeId": "L770", + "platformId": "U7915Z1", + "id": "b590bdb1-61b4-4414-bd43-216d9c28170a" + }, + { + "routeId": "L770", + "platformId": "U7915Z2", + "id": "3b8da46f-5367-4701-be92-a53d80c38a89" + }, + { + "routeId": "L770", + "platformId": "U7916Z1", + "id": "70a21dde-2874-469f-900d-cd040d868ce2" + }, + { + "routeId": "L770", + "platformId": "U7916Z2", + "id": "308eaa2e-4c27-48f0-8c47-f5cba079e20e" + }, + { + "routeId": "L136", + "platformId": "U791Z1", + "id": "6d23dc94-0ea4-4e62-a018-97bd5941f472" + }, + { + "routeId": "L911", + "platformId": "U791Z1", + "id": "aa37f793-a96f-45b5-bf9f-639e984c9935" + }, + { + "routeId": "L351", + "platformId": "U791Z1", + "id": "dc48e46d-c299-4c76-b386-aec3fa409c13" + }, + { + "routeId": "L377", + "platformId": "U791Z1", + "id": "2ec6c213-d590-42cf-8c7d-285846c4e97f" + }, + { + "routeId": "L136", + "platformId": "U791Z2", + "id": "c81ab200-0523-4b33-82e8-8697d15d1696" + }, + { + "routeId": "L911", + "platformId": "U791Z2", + "id": "cd45af55-0c49-4f41-aee1-c05a0620f0a0" + }, + { + "routeId": "L351", + "platformId": "U791Z2", + "id": "9c8e2390-734c-4b40-ba9e-e99faa1c06ff" + }, + { + "routeId": "L377", + "platformId": "U791Z2", + "id": "d0732f01-accb-46c2-b37b-24a013806d2f" + }, + { + "routeId": "L450", + "platformId": "U7924Z1", + "id": "37e50d48-a5ea-4d54-a1ef-3210225ab8d6" + }, + { + "routeId": "L549", + "platformId": "U7924Z1", + "id": "5c1f5c2d-3403-4baa-a903-b12fce030070" + }, + { + "routeId": "L552", + "platformId": "U7924Z1", + "id": "db2c45e5-01d4-4abf-9ffd-a0a324785503" + }, + { + "routeId": "L454", + "platformId": "U7924Z1", + "id": "09d20abd-ca13-4416-85fe-66361e45c52f" + }, + { + "routeId": "L552", + "platformId": "U7924Z2", + "id": "95d94d05-dbc6-403a-b9ba-eded9d013f3d" + }, + { + "routeId": "L549", + "platformId": "U7924Z2", + "id": "663a78fa-d2a5-4a1f-a33d-18a057d4fd7f" + }, + { + "routeId": "L454", + "platformId": "U7924Z2", + "id": "6d009dd8-5be8-46ec-9a03-a4cc94bdcaf7" + }, + { + "routeId": "L450", + "platformId": "U7924Z2", + "id": "ce041c62-b832-4783-82fa-31883e6d676f" + }, + { + "routeId": "L754", + "platformId": "U7925Z51", + "id": "706bb42c-8d24-4e83-ae0c-d09a9c903d61" + }, + { + "routeId": "L754", + "platformId": "U7925Z52", + "id": "7c3a19a1-28b7-4281-8c03-55b5a09730c9" + }, + { + "routeId": "L450", + "platformId": "U7926Z1", + "id": "a54742f9-26d1-494e-a556-fa42474bed80" + }, + { + "routeId": "L549", + "platformId": "U7926Z1", + "id": "a38e5ef9-5c25-4726-ad4a-61292ca67c88" + }, + { + "routeId": "L454", + "platformId": "U7926Z1", + "id": "2600dbcd-d3a6-44a6-8c2d-6f62324124ac" + }, + { + "routeId": "L549", + "platformId": "U7926Z2", + "id": "e8d354c0-20f3-497b-96db-b257725498f3" + }, + { + "routeId": "L454", + "platformId": "U7926Z2", + "id": "7ffa1667-4e74-490a-bc3c-2d021e3ceee1" + }, + { + "routeId": "L450", + "platformId": "U7926Z2", + "id": "f673c764-f1ce-410a-b1b7-6cabdaebd9eb" + }, + { + "routeId": "L111", + "platformId": "U792Z1", + "id": "a432d6a4-c265-4024-8647-06d5737001a9" + }, + { + "routeId": "L111", + "platformId": "U792Z2", + "id": "443eae7c-0010-40df-9b00-4876b72ad430" + }, + { + "routeId": "L908", + "platformId": "U792Z2", + "id": "d6a396da-ea84-4f35-b382-11408567d55d" + }, + { + "routeId": "L329", + "platformId": "U792Z2", + "id": "31d72589-c0ec-4a4d-9cf3-4cf960720734" + }, + { + "routeId": "L111", + "platformId": "U792Z3", + "id": "c322439e-adb6-479d-b3cf-73baeb71f8f5" + }, + { + "routeId": "L908", + "platformId": "U792Z3", + "id": "1c6f64b8-2b88-4f07-8514-a25fb1b46c46" + }, + { + "routeId": "L329", + "platformId": "U792Z3", + "id": "5568511a-6aa4-4011-89e5-00e84a73803c" + }, + { + "routeId": "L450", + "platformId": "U7930Z1", + "id": "a2094c76-49fe-4060-9a98-e54516bdb5d0" + }, + { + "routeId": "L549", + "platformId": "U7930Z1", + "id": "700671b7-46e6-4ee3-9398-88544197b17b" + }, + { + "routeId": "L454", + "platformId": "U7930Z1", + "id": "1477c680-f0c4-4ea7-a014-476de4656c9f" + }, + { + "routeId": "L549", + "platformId": "U7930Z2", + "id": "8ceb60d7-25af-4349-b324-e2400ec0206e" + }, + { + "routeId": "L454", + "platformId": "U7930Z2", + "id": "80f8d361-01a2-4e7a-bc8f-70ef48952af9" + }, + { + "routeId": "L450", + "platformId": "U7930Z2", + "id": "8c192bad-01ff-4807-b68f-b97c7f63f82c" + }, + { + "routeId": "L450", + "platformId": "U7932Z1", + "id": "eef2a816-24c9-4dfa-8695-c6f632d43728" + }, + { + "routeId": "L549", + "platformId": "U7932Z1", + "id": "47c6262d-15d6-4262-8987-e58c37515494" + }, + { + "routeId": "L549", + "platformId": "U7932Z2", + "id": "6bff6475-176e-4eda-b0f4-61500f0b0984" + }, + { + "routeId": "L450", + "platformId": "U7932Z2", + "id": "bf2d5c33-c67e-4e2c-8ce5-09a6aa51e3b1" + }, + { + "routeId": "L450", + "platformId": "U7933Z1", + "id": "7d7ae775-80e7-4672-a7a0-05055c503307" + }, + { + "routeId": "L549", + "platformId": "U7933Z1", + "id": "84744dd9-e3bf-4096-a7aa-08f26f73a144" + }, + { + "routeId": "L549", + "platformId": "U7933Z2", + "id": "b047b975-2b2d-4433-bebd-3576aaf07d0c" + }, + { + "routeId": "L450", + "platformId": "U7933Z2", + "id": "1fa428fe-3c03-4dab-a94f-a2a11e0a85bc" + }, + { + "routeId": "L454", + "platformId": "U7933Z3", + "id": "f98209c7-b954-49a8-a8e2-cb33e23482cb" + }, + { + "routeId": "L454", + "platformId": "U7933Z4", + "id": "88f442ee-a938-4bf5-be4c-65e647f3fcf5" + }, + { + "routeId": "L754", + "platformId": "U7935Z1", + "id": "4bc13597-5378-4b5a-b280-7088bd3d65a7" + }, + { + "routeId": "L754", + "platformId": "U7935Z2", + "id": "25c3693e-860b-4dd5-b44a-1f0855d55a61" + }, + { + "routeId": "L754", + "platformId": "U7938Z1", + "id": "bdfb0a9c-1d9d-4ebd-9867-471969f21efd" + }, + { + "routeId": "L754", + "platformId": "U7938Z2", + "id": "4c84ade8-62dd-476b-a193-fb00512e888c" + }, + { + "routeId": "L552", + "platformId": "U7939Z1", + "id": "8c63e2ca-451b-4497-bcd5-0f9b37ec4391" + }, + { + "routeId": "L552", + "platformId": "U7939Z2", + "id": "7a2597bb-6b27-45c2-bf88-59ff5cf86d72" + }, + { + "routeId": "L163", + "platformId": "U793Z1", + "id": "92fb245f-36e5-4dfc-ae76-2298091b8d24" + }, + { + "routeId": "L208", + "platformId": "U793Z1", + "id": "296868fe-5c49-4abe-9a49-a994ae864b8a" + }, + { + "routeId": "L204", + "platformId": "U793Z1", + "id": "70f7a161-a146-45e0-8826-3bd6f44336b2" + }, + { + "routeId": "L903", + "platformId": "U793Z1", + "id": "f6ec56e5-b9ff-446e-8a6e-0a2f58789154" + }, + { + "routeId": "L228", + "platformId": "U793Z1", + "id": "431bed90-127c-402d-ac39-1569d663de21" + }, + { + "routeId": "L163", + "platformId": "U793Z2", + "id": "0d193ab8-2b6d-4654-8f46-82f8e52b2d34" + }, + { + "routeId": "L208", + "platformId": "U793Z2", + "id": "06a2b2c5-28f0-4c56-8f93-70817df0010c" + }, + { + "routeId": "L204", + "platformId": "U793Z2", + "id": "e3457d80-f17c-42e2-beed-e22eafac5cdf" + }, + { + "routeId": "L903", + "platformId": "U793Z2", + "id": "9a3e4c64-8453-4cd9-b883-40090963163f" + }, + { + "routeId": "L228", + "platformId": "U793Z2", + "id": "a14bfc40-e73b-483f-bb6c-821ec898b2c6" + }, + { + "routeId": "L552", + "platformId": "U7942Z1", + "id": "d9ff9063-cbf3-4489-ab4a-2a6b863621a1" + }, + { + "routeId": "L552", + "platformId": "U7942Z2", + "id": "d2fcda2c-eb35-4f8b-a8fb-99b4abae527f" + }, + { + "routeId": "L552", + "platformId": "U7943Z1", + "id": "6ebfe9d9-e5df-4cfb-80cf-e22e49729bb9" + }, + { + "routeId": "L552", + "platformId": "U7943Z2", + "id": "e2916085-b85c-4864-84ca-d1d2637c54ac" + }, + { + "routeId": "L163", + "platformId": "U794Z1", + "id": "481dea28-a9ac-4308-bd71-d0a1d8998f17" + }, + { + "routeId": "L208", + "platformId": "U794Z1", + "id": "85f8c2ed-ffce-400a-abab-9da143203a71" + }, + { + "routeId": "L204", + "platformId": "U794Z1", + "id": "037730cc-597b-4cc2-a2bc-b721beadff83" + }, + { + "routeId": "L903", + "platformId": "U794Z1", + "id": "8e974345-89f0-49ee-96f0-4e3c762c920d" + }, + { + "routeId": "L228", + "platformId": "U794Z1", + "id": "c976908d-33df-4838-bdab-ac30e9f6a50f" + }, + { + "routeId": "L163", + "platformId": "U794Z2", + "id": "7631bee9-1779-4963-913d-27a234789ae1" + }, + { + "routeId": "L208", + "platformId": "U794Z2", + "id": "08f54e69-62d2-4e7e-ad5e-c5b678518f45" + }, + { + "routeId": "L204", + "platformId": "U794Z2", + "id": "7e5f39a3-5518-40ab-a2f3-208b3cfefae3" + }, + { + "routeId": "L903", + "platformId": "U794Z2", + "id": "d528b90c-d646-4f7e-a7a8-d9f34debbf0a" + }, + { + "routeId": "L228", + "platformId": "U794Z2", + "id": "fe55d478-0397-48c7-845f-15cc64bc8c5a" + }, + { + "routeId": "L454", + "platformId": "U7950Z1", + "id": "cc060ebd-fb7f-435f-b04b-b000abe98524" + }, + { + "routeId": "L454", + "platformId": "U7950Z2", + "id": "142544f2-d474-42bd-b1c4-be209bcbb37f" + }, + { + "routeId": "L454", + "platformId": "U7953Z1", + "id": "4ccff649-8a97-4781-bd41-40068de27e31" + }, + { + "routeId": "L454", + "platformId": "U7953Z2", + "id": "6ca77609-4a25-4563-8bbc-6aecf6ecd8ec" + }, + { + "routeId": "L454", + "platformId": "U7954Z1", + "id": "39cc3a96-801b-45b7-9095-79b05ceb6ce7" + }, + { + "routeId": "L454", + "platformId": "U7954Z2", + "id": "98c09e98-6ae4-4c66-9e68-9c20af2b3d72" + }, + { + "routeId": "L793", + "platformId": "U7956Z1", + "id": "bfaaf37e-9245-40b1-83e6-02c7d6b8b243" + }, + { + "routeId": "L793", + "platformId": "U7956Z2", + "id": "88a0935a-2957-405e-b434-fc09d2ef6e31" + }, + { + "routeId": "L793", + "platformId": "U7957Z1", + "id": "f8187f70-a78a-407a-9dd6-4de54674afe4" + }, + { + "routeId": "L793", + "platformId": "U7957Z2", + "id": "b6054f21-1532-4324-ac1a-e08a59d097b6" + }, + { + "routeId": "L202", + "platformId": "U795Z1", + "id": "cbfab52f-09d4-42ef-9a87-bcc11d71c8a0" + }, + { + "routeId": "L103", + "platformId": "U795Z1", + "id": "468a63ca-9fe9-406f-8468-cdcc7b85862c" + }, + { + "routeId": "L914", + "platformId": "U795Z1", + "id": "a09d5286-cc84-4342-b5d2-99a838aa4844" + }, + { + "routeId": "L202", + "platformId": "U795Z2", + "id": "184f0e1d-81c9-4a2c-bc4a-8408eae4c1ca" + }, + { + "routeId": "L103", + "platformId": "U795Z2", + "id": "a3d1b38f-af5a-4b2a-bafb-b52a88e9f0dd" + }, + { + "routeId": "L283", + "platformId": "U795Z2", + "id": "8f7c2497-187a-41a3-a575-69c6705a6942" + }, + { + "routeId": "L914", + "platformId": "U795Z2", + "id": "aa4d09a2-9d7b-410d-8708-22f5ef5afeef" + }, + { + "routeId": "L796", + "platformId": "U7961Z1", + "id": "41c01613-9751-4c28-a279-0184ad9e6c5f" + }, + { + "routeId": "L796", + "platformId": "U7961Z2", + "id": "56f7297e-e729-4976-90c6-46a1d36e0035" + }, + { + "routeId": "L796", + "platformId": "U7962Z1", + "id": "869b4681-9bbf-4a22-9f79-a76e9760ffc2" + }, + { + "routeId": "L796", + "platformId": "U7963Z1", + "id": "f842eaa8-4981-4481-8751-fb4c9c45ce12" + }, + { + "routeId": "L796", + "platformId": "U7963Z2", + "id": "034f0115-15c9-454a-8ead-ffabf77f6006" + }, + { + "routeId": "L796", + "platformId": "U7964Z1", + "id": "954542fb-26df-43c5-93ab-9fc02cedc7c3" + }, + { + "routeId": "L796", + "platformId": "U7964Z2", + "id": "d43f8c96-e592-48c7-9601-3c08ce1f049d" + }, + { + "routeId": "L796", + "platformId": "U7965Z1", + "id": "23965aca-b288-4a7c-be4c-1658f53dd66b" + }, + { + "routeId": "L796", + "platformId": "U7965Z2", + "id": "001fed79-2cba-45e5-80bd-76f7beede6a8" + }, + { + "routeId": "L480", + "platformId": "U7966Z51", + "id": "9cf9591f-1ef0-4826-97b2-ac300429d2c2" + }, + { + "routeId": "L480", + "platformId": "U7967Z1", + "id": "4804c734-9f62-486e-9174-80abcadb8270" + }, + { + "routeId": "L480", + "platformId": "U7967Z2", + "id": "c74e0dff-c0e6-47c0-8ed4-e6b041001c0c" + }, + { + "routeId": "L480", + "platformId": "U7968Z1", + "id": "55539325-242e-44b9-ad1f-00d4458c5024" + }, + { + "routeId": "L480", + "platformId": "U7968Z2", + "id": "a6f74d7c-1d53-465a-aa18-3e31a87b0379" + }, + { + "routeId": "L480", + "platformId": "U7969Z1", + "id": "81ebd394-6094-49f1-9a5f-dd42d1e67da9" + }, + { + "routeId": "L480", + "platformId": "U7969Z2", + "id": "64c64e44-0951-456d-90c5-b0de3ca0960e" + }, + { + "routeId": "L124", + "platformId": "U796Z1", + "id": "f66f0cbb-dffd-491e-b8d1-80201ec4b666" + }, + { + "routeId": "L134", + "platformId": "U796Z1", + "id": "f14388b8-e13f-44cd-8b3b-492f191d1f50" + }, + { + "routeId": "L124", + "platformId": "U796Z2", + "id": "895c6153-d8c9-4095-b89a-28fc1a66f049" + }, + { + "routeId": "L134", + "platformId": "U796Z2", + "id": "a771be06-3a08-4c09-baf4-e9356c17f32c" + }, + { + "routeId": "L795", + "platformId": "U7972Z1", + "id": "36100d20-4de4-4f1e-840a-62e01a4bf037" + }, + { + "routeId": "L795", + "platformId": "U7972Z2", + "id": "a4b468d0-d04f-4da2-bf6e-faf73d5fcea8" + }, + { + "routeId": "L2843", + "platformId": "U7974Z1", + "id": "53a36663-1b03-473e-9f80-0cf03f1dfeff" + }, + { + "routeId": "L2843", + "platformId": "U7974Z2", + "id": "b1ce6f82-048e-4706-a5b3-45b0ce068560" + }, + { + "routeId": "L2843", + "platformId": "U7975Z1", + "id": "55002b8e-9da4-49ec-bf69-98462562d873" + }, + { + "routeId": "L2843", + "platformId": "U7975Z2", + "id": "5c11bc6c-ffa5-475b-8e28-65072934e9f4" + }, + { + "routeId": "L791", + "platformId": "U7976Z1", + "id": "af88e58b-6bde-4d6a-921a-960528f86145" + }, + { + "routeId": "L791", + "platformId": "U7976Z2", + "id": "4d420a31-9fd1-4621-b8ce-96b026524116" + }, + { + "routeId": "L791", + "platformId": "U7979Z1", + "id": "812cd58b-cd69-4d21-958c-3b82bc56f838" + }, + { + "routeId": "L791", + "platformId": "U7979Z2", + "id": "8f4e4fcb-f7d2-4ffa-9095-33c592017191" + }, + { + "routeId": "L134", + "platformId": "U797Z1", + "id": "51001e21-e269-4e1c-80e1-e8db627c8fa8" + }, + { + "routeId": "L134", + "platformId": "U797Z2", + "id": "5deae8f9-ee04-4fc6-ba39-ea263ce2a55e" + }, + { + "routeId": "L798", + "platformId": "U7982Z1", + "id": "646c2ed7-7e4c-44ba-a2aa-3126656892fb" + }, + { + "routeId": "L406", + "platformId": "U7982Z1", + "id": "1bd9a12f-e90c-4a51-ac00-4da0b4070522" + }, + { + "routeId": "L791", + "platformId": "U7982Z1", + "id": "1779d72c-8771-4f34-86a3-1d129e01e151" + }, + { + "routeId": "L455", + "platformId": "U7982Z1", + "id": "410603e8-d8d3-41da-bde2-045b2234feb6" + }, + { + "routeId": "L798", + "platformId": "U7982Z2", + "id": "f16fc7a0-76c9-4705-b36a-80629e3a25d5" + }, + { + "routeId": "L406", + "platformId": "U7982Z2", + "id": "df341901-5dd7-4fcc-b5d0-ffb268542330" + }, + { + "routeId": "L791", + "platformId": "U7982Z2", + "id": "d6add662-3eb2-480a-b50b-7b91e68f58ab" + }, + { + "routeId": "L455", + "platformId": "U7982Z2", + "id": "a0bebaa3-e2c0-400c-a6ae-7ee19849de0e" + }, + { + "routeId": "L406", + "platformId": "U7983Z1", + "id": "52dcedbc-63ae-41e5-afd9-12bcade53002" + }, + { + "routeId": "L791", + "platformId": "U7983Z1", + "id": "afabf0d0-cf0d-482a-bc75-63692bd60b1a" + }, + { + "routeId": "L455", + "platformId": "U7983Z1", + "id": "e9ab5666-dc82-4da4-a20c-cc7b3a8ea039" + }, + { + "routeId": "L406", + "platformId": "U7983Z2", + "id": "14b6ab47-737f-4cf1-8cd7-93c388937e6a" + }, + { + "routeId": "L791", + "platformId": "U7983Z2", + "id": "2fdfc48c-2c96-4ca7-b809-efda853f6494" + }, + { + "routeId": "L455", + "platformId": "U7983Z2", + "id": "9decfa8f-13ee-40ab-84e2-2b5e814877cd" + }, + { + "routeId": "L798", + "platformId": "U7986Z1", + "id": "1b97dbe9-dd92-4cac-b455-5e7cba3db3c7" + }, + { + "routeId": "L798", + "platformId": "U7986Z2", + "id": "e51ac222-3264-431e-ad77-40015e5bb099" + }, + { + "routeId": "L798", + "platformId": "U7988Z1", + "id": "173bd79f-accf-4738-a4f6-73c7a8392862" + }, + { + "routeId": "L798", + "platformId": "U7988Z2", + "id": "38a2110f-6d45-4d4c-a3df-79b13edc15b0" + }, + { + "routeId": "L798", + "platformId": "U7989Z1", + "id": "fc5f5146-b411-4c2a-bb37-ba7fa2965c3f" + }, + { + "routeId": "L798", + "platformId": "U7989Z2", + "id": "d0a38f21-336e-4cec-ba7f-067c8317a3bf" + }, + { + "routeId": "L111", + "platformId": "U798Z1", + "id": "b0ba9702-52ad-42a5-8e45-b49ede177789" + }, + { + "routeId": "L329", + "platformId": "U798Z1", + "id": "4adec800-145a-4eb3-b515-549f8c7503b0" + }, + { + "routeId": "L111", + "platformId": "U798Z2", + "id": "9fd1e721-6415-48f1-99bf-350037aa8415" + }, + { + "routeId": "L329", + "platformId": "U798Z2", + "id": "84ddecb6-a9d0-404b-8bdb-8d65ba346c0e" + }, + { + "routeId": "L2842", + "platformId": "U7990Z1", + "id": "d3a1b504-c39d-43f8-a2d1-b348a7c3dde5" + }, + { + "routeId": "L2842", + "platformId": "U7990Z2", + "id": "61eb294c-f3fe-4578-83db-6ddd5a2fcdf7" + }, + { + "routeId": "L2842", + "platformId": "U7991Z1", + "id": "7dc95e1a-c046-4b9b-bfaf-bd1a03f7949a" + }, + { + "routeId": "L2842", + "platformId": "U7991Z2", + "id": "7c5a199e-ae1c-44ff-b128-1a5900b45433" + }, + { + "routeId": "L2842", + "platformId": "U7992Z1", + "id": "9f95b224-e201-4f45-a35f-dad4bb55e2d0" + }, + { + "routeId": "L2842", + "platformId": "U7992Z2", + "id": "d7bfaa08-ab46-4b50-b3cf-ae08790c4e39" + }, + { + "routeId": "L420", + "platformId": "U7993Z1", + "id": "f36ad68f-08e4-4d9b-a670-487115ea0eee" + }, + { + "routeId": "L520", + "platformId": "U7993Z1", + "id": "6729899d-74bb-49d4-b48a-afbbf7a74a6f" + }, + { + "routeId": "L520", + "platformId": "U7993Z2", + "id": "49ec4ba8-e3be-4ab8-b553-e0fcd48aa26f" + }, + { + "routeId": "L420", + "platformId": "U7993Z2", + "id": "56f416e6-1058-4cc8-b55b-c67094e62aea" + }, + { + "routeId": "L420", + "platformId": "U7994Z1", + "id": "806f8060-506d-43c7-9406-14cb83d33b70" + }, + { + "routeId": "L520", + "platformId": "U7994Z1", + "id": "35e4c1a3-f468-4708-be4c-fbd1a08bfc1e" + }, + { + "routeId": "L520", + "platformId": "U7994Z2", + "id": "c5452063-7f69-4cf1-953a-6b5ae3b61085" + }, + { + "routeId": "L420", + "platformId": "U7994Z2", + "id": "7554c358-c48d-4101-aa18-310105f73c87" + }, + { + "routeId": "L514", + "platformId": "U7995Z1", + "id": "5051da23-9f56-4b32-8b29-57c58862e4d6" + }, + { + "routeId": "L514", + "platformId": "U7995Z2", + "id": "4325a464-3df1-40bf-9652-aa53d0f4b8ce" + }, + { + "routeId": "L552", + "platformId": "U7996Z1", + "id": "cad00fde-ae78-4e4f-aa12-cbb86cc5ef35" + }, + { + "routeId": "L552", + "platformId": "U7996Z2", + "id": "4abebce0-71b9-4857-abea-57a7e3d0edfd" + }, + { + "routeId": "L552", + "platformId": "U7997Z1", + "id": "bb6860ae-25db-4798-aaac-f345e6ac1c1b" + }, + { + "routeId": "L552", + "platformId": "U7997Z2", + "id": "5a82cb3b-aaaf-41ee-9c7d-97e4dc336933" + }, + { + "routeId": "L154", + "platformId": "U799Z1", + "id": "e1e68356-5d09-4f5d-8a02-bac58e07dd4c" + }, + { + "routeId": "L193", + "platformId": "U799Z1", + "id": "0e082ae8-8b43-4970-99fc-d7986c091b7d" + }, + { + "routeId": "L901", + "platformId": "U799Z1", + "id": "6c450c64-7293-4f01-8885-19da6f72ebf4" + }, + { + "routeId": "L203", + "platformId": "U799Z1", + "id": "f525bcf4-a594-4a9c-a94c-d973dd6a1844" + }, + { + "routeId": "L154", + "platformId": "U799Z2", + "id": "e75fedaf-8377-4cad-b2da-22708262658e" + }, + { + "routeId": "L193", + "platformId": "U799Z2", + "id": "556943f0-b4cc-45ee-9072-364f69693d49" + }, + { + "routeId": "L901", + "platformId": "U799Z2", + "id": "16971cbd-4733-47ef-a704-d6c54dec8ee1" + }, + { + "routeId": "L203", + "platformId": "U799Z2", + "id": "a9c8a8fc-f4ee-40a2-8618-39ad538a6dbc" + }, + { + "routeId": "L332", + "platformId": "U799Z3", + "id": "67ba29bd-19e8-4964-b007-f40a8c4f3098" + }, + { + "routeId": "L956", + "platformId": "U799Z3", + "id": "2fdd0c6f-6079-4388-9553-7b68b5111fbf" + }, + { + "routeId": "L337", + "platformId": "U799Z3", + "id": "47580231-6b58-4186-b5e4-84eea88898a8" + }, + { + "routeId": "L335", + "platformId": "U799Z3", + "id": "c3caace2-36da-4516-a830-0dace9c6f619" + }, + { + "routeId": "L339", + "platformId": "U799Z3", + "id": "24af1741-4b94-4381-8984-55c088f1d2c2" + }, + { + "routeId": "L332", + "platformId": "U799Z4", + "id": "e4802ce5-90e3-4de9-b881-50138b754ebf" + }, + { + "routeId": "L956", + "platformId": "U799Z4", + "id": "241c13e6-69cd-4301-9a2c-5416c41f2596" + }, + { + "routeId": "L337", + "platformId": "U799Z4", + "id": "11ecaeab-83a1-493b-81ce-5d218a49e191" + }, + { + "routeId": "L335", + "platformId": "U799Z4", + "id": "5904c255-6fd5-4b3f-8475-b6fac4e71bc6" + }, + { + "routeId": "L339", + "platformId": "U799Z4", + "id": "2bff2a85-ac3e-4bfe-a542-5b5bd4239402" + }, + { + "routeId": "L118", + "platformId": "U79Z1", + "id": "a189abeb-a3eb-4e60-82b6-2999f24caddd" + }, + { + "routeId": "L170", + "platformId": "U79Z1", + "id": "f02b52c7-b11c-4488-b2b4-b560ad1da9cc" + }, + { + "routeId": "L138", + "platformId": "U79Z1", + "id": "f0ad2153-a675-4ad2-b4fe-0c8920a01b50" + }, + { + "routeId": "L905", + "platformId": "U79Z1", + "id": "3bc736a9-8ebb-4e08-a652-f3d53892e6c3" + }, + { + "routeId": "L118", + "platformId": "U79Z2", + "id": "d36f327e-10cf-4db1-b7e8-7d64c6ced9d9" + }, + { + "routeId": "L170", + "platformId": "U79Z2", + "id": "342fcf42-23c7-40bc-991c-5907eaf15fb3" + }, + { + "routeId": "L138", + "platformId": "U79Z2", + "id": "933ed5d5-632b-4b75-b17a-eaea4c6018b2" + }, + { + "routeId": "L905", + "platformId": "U79Z2", + "id": "5708e44b-65a9-4e28-b70a-84c6920e5978" + }, + { + "routeId": "L161", + "platformId": "U800Z1", + "id": "442a4699-8b19-4559-ad06-25ae5e601859" + }, + { + "routeId": "L907", + "platformId": "U800Z1", + "id": "8799391b-a2aa-4cea-b63c-777c2d40e94f" + }, + { + "routeId": "L312", + "platformId": "U800Z1", + "id": "5d82a43d-2b55-4cf0-b139-7e77fdbaa5f7" + }, + { + "routeId": "L161", + "platformId": "U800Z2", + "id": "7b883871-cbf1-4dd7-863a-3d6dad6d1491" + }, + { + "routeId": "L907", + "platformId": "U800Z2", + "id": "cbf74a3e-5ebf-43ba-b579-a7ae3540b6ce" + }, + { + "routeId": "L312", + "platformId": "U800Z2", + "id": "d609de06-b493-497d-b453-c22e2d0c69c4" + }, + { + "routeId": "L109", + "platformId": "U801Z1", + "id": "82746c3c-22a4-47f8-bcf7-57593d1dbde8" + }, + { + "routeId": "L909", + "platformId": "U801Z1", + "id": "6493e202-d0bd-47ae-bf3c-7623e67c9be9" + }, + { + "routeId": "L110", + "platformId": "U801Z1", + "id": "e4a41f48-db2c-413c-a931-8ab3844e2040" + }, + { + "routeId": "L208", + "platformId": "U801Z1", + "id": "7004b574-7c30-4a59-b676-9180c9810937" + }, + { + "routeId": "L109", + "platformId": "U801Z2", + "id": "83bb5803-6559-41bc-a6d4-538870cf6a67" + }, + { + "routeId": "L909", + "platformId": "U801Z2", + "id": "232c090e-dc8c-4bb6-b30c-1c118e366ffe" + }, + { + "routeId": "L110", + "platformId": "U801Z2", + "id": "8b2d2b49-0fbe-4b7c-93c2-ce527eb8653b" + }, + { + "routeId": "L208", + "platformId": "U801Z2", + "id": "e83b8639-1fa2-41cb-bb1f-599a1051b720" + }, + { + "routeId": "L1219", + "platformId": "U801Z301", + "id": "befbd9af-c216-42cb-87a1-5ef57cbb2ed4" + }, + { + "routeId": "L1218", + "platformId": "U801Z301", + "id": "591882b0-483f-4205-be3e-d7ff573115ec" + }, + { + "routeId": "L1210", + "platformId": "U801Z301", + "id": "ab54a68a-ed44-49cf-bb62-f5690f4e4b94" + }, + { + "routeId": "L1209", + "platformId": "U801Z301", + "id": "e866a17e-f48d-4e5b-b224-0aa94a09eb14" + }, + { + "routeId": "L1301", + "platformId": "U801Z301", + "id": "cb34169e-c983-499a-b992-712f5a2eb81c" + }, + { + "routeId": "L241", + "platformId": "U802Z1", + "id": "3cfad560-31d7-404d-b3c1-ff6cb0d9b34d" + }, + { + "routeId": "L129", + "platformId": "U802Z1", + "id": "df591d26-801a-493e-8eb2-97225b9c4f33" + }, + { + "routeId": "L247", + "platformId": "U802Z1", + "id": "be435a2f-fb77-404d-bfb8-2018dc85035c" + }, + { + "routeId": "L907", + "platformId": "U802Z1", + "id": "0f48ceb9-6ae1-4c19-a6dc-aaae07a1a4be" + }, + { + "routeId": "L318", + "platformId": "U802Z1", + "id": "6adc8704-09c1-4b5f-b976-bb70b92e8f39" + }, + { + "routeId": "L139", + "platformId": "U802Z2", + "id": "d181eb88-3542-4b10-abc3-9fe1fa23ea57" + }, + { + "routeId": "L241", + "platformId": "U802Z2", + "id": "4cf95ef7-9ee3-4bfc-95dc-5c098893807f" + }, + { + "routeId": "L129", + "platformId": "U802Z2", + "id": "95a3dd54-465f-4044-977a-f12f42be00a0" + }, + { + "routeId": "L247", + "platformId": "U802Z2", + "id": "aeb3f242-3a55-4b39-98fa-660653dd38fc" + }, + { + "routeId": "L907", + "platformId": "U802Z2", + "id": "20cdd91c-d03b-40cb-9b29-da1650acb8d7" + }, + { + "routeId": "L318", + "platformId": "U802Z2", + "id": "fb8f066e-0dad-4b7d-9379-9ebc05252d0c" + }, + { + "routeId": "L139", + "platformId": "U802Z3", + "id": "ec7516ef-ed04-45b3-8562-8299a2a6da2e" + }, + { + "routeId": "L159", + "platformId": "U803Z1", + "id": "150e6683-db43-4909-89d4-d541b98f422f" + }, + { + "routeId": "L185", + "platformId": "U803Z1", + "id": "f5a35284-85ad-423f-b8ba-bdf08a729973" + }, + { + "routeId": "L209", + "platformId": "U803Z1", + "id": "4b827f47-c714-4b5a-8fb7-eebdbb670147" + }, + { + "routeId": "L378", + "platformId": "U803Z1", + "id": "15e304a4-6ad4-4d3b-a7b2-dca4801d6e03" + }, + { + "routeId": "L302", + "platformId": "U803Z1", + "id": "0da0aa00-e750-4701-a4b3-a7279935e33b" + }, + { + "routeId": "L375", + "platformId": "U803Z1", + "id": "e77dfee7-6ee3-4ccb-8094-faf49b37b40e" + }, + { + "routeId": "L376", + "platformId": "U803Z1", + "id": "4e896f6d-c22a-4394-914e-b304a3346e70" + }, + { + "routeId": "L159", + "platformId": "U803Z2", + "id": "2fc1ca9f-7698-4325-a0e1-c38932335870" + }, + { + "routeId": "L185", + "platformId": "U803Z2", + "id": "30d3fede-c330-478b-8e31-0307c8e7faf6" + }, + { + "routeId": "L209", + "platformId": "U803Z2", + "id": "64351644-8c5f-4e46-8fb0-747ebc3d4d79" + }, + { + "routeId": "L378", + "platformId": "U803Z2", + "id": "a8a1effa-456a-402b-a12e-5e7578a3fc35" + }, + { + "routeId": "L302", + "platformId": "U803Z2", + "id": "6b08a44e-2d43-472d-b69c-97a667ad38a1" + }, + { + "routeId": "L375", + "platformId": "U803Z2", + "id": "493e75a4-11ee-4281-9eca-01833471b8f3" + }, + { + "routeId": "L376", + "platformId": "U803Z2", + "id": "6f55b65b-9c1e-41f0-9825-0e4273777adc" + }, + { + "routeId": "L113", + "platformId": "U804Z1", + "id": "049c0da0-a63b-43f8-a8a6-91b4879394b5" + }, + { + "routeId": "L913", + "platformId": "U804Z1", + "id": "f38b0895-f1d6-4a1f-ab96-b42b5b6d410f" + }, + { + "routeId": "L333", + "platformId": "U804Z1", + "id": "7b606fe4-bc44-4483-9a98-569e0e3e9316" + }, + { + "routeId": "L960", + "platformId": "U804Z1", + "id": "12c15cb3-c606-40d4-850a-75dc37c5c8c3" + }, + { + "routeId": "L113", + "platformId": "U804Z2", + "id": "ddefeadb-8404-4b35-88da-e34df6692dd1" + }, + { + "routeId": "L913", + "platformId": "U804Z2", + "id": "8ef1cf5f-4b13-4870-83ab-78e97334f8e2" + }, + { + "routeId": "L333", + "platformId": "U804Z2", + "id": "21701ca2-f38f-45a9-b51e-352f07bbb8f0" + }, + { + "routeId": "L960", + "platformId": "U804Z2", + "id": "b2f9f5b5-cc94-4749-845d-415fa31898bc" + }, + { + "routeId": "L9", + "platformId": "U805Z1", + "id": "2f74a9c6-e3d8-41b3-9ade-65b92eed7f28" + }, + { + "routeId": "L10", + "platformId": "U805Z1", + "id": "a7c43515-1d9e-4e3f-81f9-aaa030ca857b" + }, + { + "routeId": "L15", + "platformId": "U805Z1", + "id": "78493947-424c-41dc-b37f-c6913156bc5b" + }, + { + "routeId": "L16", + "platformId": "U805Z1", + "id": "1cd4e4ac-30f1-47b6-ae61-362dcbb00b71" + }, + { + "routeId": "L98", + "platformId": "U805Z1", + "id": "c9747b29-ba3b-4da0-9402-ce919d061fd0" + }, + { + "routeId": "L99", + "platformId": "U805Z1", + "id": "d4d6cb40-b0ed-41ed-901c-daaaae06c275" + }, + { + "routeId": "L9", + "platformId": "U805Z2", + "id": "075e5e9a-c8cb-4977-8f55-941441005bf5" + }, + { + "routeId": "L10", + "platformId": "U805Z2", + "id": "82cb638c-3a3a-4bae-af92-bb71d371d737" + }, + { + "routeId": "L15", + "platformId": "U805Z2", + "id": "43340f4f-06f3-49b8-8232-2ecb5e95561e" + }, + { + "routeId": "L16", + "platformId": "U805Z2", + "id": "0d92f89e-f24b-4d9e-b924-ec5ca5ac76f5" + }, + { + "routeId": "L98", + "platformId": "U805Z2", + "id": "1e906e61-e628-4441-b709-86204b40c7c6" + }, + { + "routeId": "L99", + "platformId": "U805Z2", + "id": "8e1136b3-042c-4c93-b956-ab720083bb1d" + }, + { + "routeId": "L153", + "platformId": "U805Z3", + "id": "039c61ca-2bae-437f-968e-0ac3ca2d7f98" + }, + { + "routeId": "L152", + "platformId": "U806Z1", + "id": "2f423ae8-78ab-4410-be54-19dff152f38c" + }, + { + "routeId": "L202", + "platformId": "U806Z1", + "id": "7a423c4f-ce47-4bfb-9dfa-50e61ac73657" + }, + { + "routeId": "L235", + "platformId": "U806Z1", + "id": "f7ef1506-c29b-413e-870e-a7fcf0b71137" + }, + { + "routeId": "L905", + "platformId": "U806Z1", + "id": "16e494c3-e912-4332-b495-a77ec865955d" + }, + { + "routeId": "L152", + "platformId": "U806Z2", + "id": "8666fe7d-6705-46d7-9004-e6830ee6f5cb" + }, + { + "routeId": "L202", + "platformId": "U806Z2", + "id": "45fa7d40-25d2-457c-a0fd-9a9a4690a9c5" + }, + { + "routeId": "L235", + "platformId": "U806Z2", + "id": "704cc4c5-cee4-4c93-bd02-488963fea73c" + }, + { + "routeId": "L905", + "platformId": "U806Z2", + "id": "846914e6-cc06-4186-958e-8bf048e47a4d" + }, + { + "routeId": "L95", + "platformId": "U807Z1", + "id": "8d490921-10ac-4562-aaaf-914453deb987" + }, + { + "routeId": "L95", + "platformId": "U807Z2", + "id": "a0243bf1-f8db-4d9d-a380-b831e4dc0803" + }, + { + "routeId": "L16", + "platformId": "U807Z3", + "id": "b20df85f-84d1-4370-a306-51865d2e11cb" + }, + { + "routeId": "L16", + "platformId": "U807Z4", + "id": "0cf35002-71fe-4f35-bc64-60f3f070298c" + }, + { + "routeId": "L229", + "platformId": "U808Z1", + "id": "221c7e6f-f4f2-4dfb-8f11-e24c256fb112" + }, + { + "routeId": "L209", + "platformId": "U808Z1", + "id": "af64c9e6-bd1c-4bd0-a75c-be5067e3138d" + }, + { + "routeId": "L226", + "platformId": "U808Z1", + "id": "0eca92d9-a566-4c18-b20a-a01e9127c0ac" + }, + { + "routeId": "L227", + "platformId": "U808Z1", + "id": "0691fca7-6186-42b2-9efd-10b403b77201" + }, + { + "routeId": "L903", + "platformId": "U808Z1", + "id": "c6dbc1d4-8a76-45a3-babe-1c7bd0809a79" + }, + { + "routeId": "L366", + "platformId": "U808Z1", + "id": "6d91c468-3d90-479b-860c-bf342a606b41" + }, + { + "routeId": "L364", + "platformId": "U808Z1", + "id": "64edec03-9ce2-4adb-9e6b-2942d3c34b59" + }, + { + "routeId": "L229", + "platformId": "U808Z2", + "id": "94bf1428-a1a7-4674-a8da-9ec8b8576049" + }, + { + "routeId": "L209", + "platformId": "U808Z2", + "id": "29847ea5-3ceb-41e0-bc76-d1c3e0783d97" + }, + { + "routeId": "L226", + "platformId": "U808Z2", + "id": "ce5199b6-d554-492b-84d0-e163530b0880" + }, + { + "routeId": "L227", + "platformId": "U808Z2", + "id": "3d2012d2-04fa-4820-bea8-f1e0d9f42553" + }, + { + "routeId": "L903", + "platformId": "U808Z2", + "id": "d93af9c4-5c75-4694-a113-0fe268086fb3" + }, + { + "routeId": "L366", + "platformId": "U808Z2", + "id": "0c10cba4-bac9-4ae9-b498-2405afe90b81" + }, + { + "routeId": "L364", + "platformId": "U808Z2", + "id": "c29132d5-c632-4e1d-9f94-34e7e7dc95c9" + }, + { + "routeId": "L381", + "platformId": "U808Z2", + "id": "a8fa2d72-e60b-4924-a936-ec68df2cfe7b" + }, + { + "routeId": "L387", + "platformId": "U808Z2", + "id": "3423e8e1-82a6-4a39-b477-f70a72204804" + }, + { + "routeId": "L382", + "platformId": "U808Z2", + "id": "90eaee08-f29f-4770-9e79-192fb69cab69" + }, + { + "routeId": "L383", + "platformId": "U808Z2", + "id": "57e1d9ea-470c-49d8-a211-d892dcfd3652" + }, + { + "routeId": "L959", + "platformId": "U808Z2", + "id": "2884f53c-e049-49fe-9c0d-6f3f3a424d69" + }, + { + "routeId": "L387", + "platformId": "U808Z5", + "id": "b581b755-5c27-4bf5-8cc3-07cb11959b0d" + }, + { + "routeId": "L381", + "platformId": "U808Z5", + "id": "fad089ff-8155-4a86-b1cd-12ce4ad9f086" + }, + { + "routeId": "L382", + "platformId": "U808Z5", + "id": "d67d3206-08ba-47ec-94bc-611eb68b035f" + }, + { + "routeId": "L383", + "platformId": "U808Z5", + "id": "8458b0b3-1b33-488c-8f44-082fbee1eeab" + }, + { + "routeId": "L959", + "platformId": "U808Z5", + "id": "063b1b5b-183c-442b-9ff6-0917651cec40" + }, + { + "routeId": "L12", + "platformId": "U809Z1", + "id": "74d02dc2-23eb-4046-878c-4d0af3c7db66" + }, + { + "routeId": "L15", + "platformId": "U809Z1", + "id": "5719fe17-445a-40af-bc31-56bed2622509" + }, + { + "routeId": "L20", + "platformId": "U809Z1", + "id": "e77faad1-8fd4-4a6a-8e5e-a1118afbaf7f" + }, + { + "routeId": "L22", + "platformId": "U809Z1", + "id": "03ef7a84-35be-48d8-827a-454bcd83fe08" + }, + { + "routeId": "L23", + "platformId": "U809Z1", + "id": "a9b748c4-a507-46d6-b3b2-7cc94b8fe94c" + }, + { + "routeId": "L97", + "platformId": "U809Z1", + "id": "f84f0ee5-adbb-4176-a9db-dd9bb46461ab" + }, + { + "routeId": "L9", + "platformId": "U809Z2", + "id": "15762fcc-1948-43ca-a014-f55cf1c9cdf4" + }, + { + "routeId": "L12", + "platformId": "U809Z2", + "id": "ef6611d0-2200-4bea-80fe-a7476ccd50f4" + }, + { + "routeId": "L15", + "platformId": "U809Z2", + "id": "fead10ea-7090-41a0-ae7b-bc1c2f3488fb" + }, + { + "routeId": "L20", + "platformId": "U809Z2", + "id": "a5a308a7-84c4-422b-afc5-018415d814f3" + }, + { + "routeId": "L98", + "platformId": "U809Z2", + "id": "82f2f516-f202-4eb0-b2e9-9a3b4ae71ca8" + }, + { + "routeId": "L99", + "platformId": "U809Z2", + "id": "044642f0-ced3-4c80-9052-e96083c8c225" + }, + { + "routeId": "L9", + "platformId": "U809Z4", + "id": "9db013b3-92b6-476e-87d3-d08fa0f68fcd" + }, + { + "routeId": "L12", + "platformId": "U809Z4", + "id": "6b87f1b3-12eb-468f-bc3f-45959c27e10f" + }, + { + "routeId": "L15", + "platformId": "U809Z4", + "id": "d62f8364-5c41-4b52-a0f2-efc7cab2b1e1" + }, + { + "routeId": "L20", + "platformId": "U809Z4", + "id": "4a218a45-e15f-4ecf-a991-9ceb029dda83" + }, + { + "routeId": "L22", + "platformId": "U809Z4", + "id": "c43c850c-3a86-4b5c-ab9e-779c69e6c268" + }, + { + "routeId": "L23", + "platformId": "U809Z4", + "id": "6f8b1ca8-f3ea-4ed0-ade3-07827168dabd" + }, + { + "routeId": "L97", + "platformId": "U809Z4", + "id": "92129f90-8c96-456c-a75d-0c937bed8954" + }, + { + "routeId": "L98", + "platformId": "U809Z4", + "id": "02c336ca-a154-4721-b614-6449ef9f2d3b" + }, + { + "routeId": "L99", + "platformId": "U809Z4", + "id": "91394422-b996-4a99-b66c-099eda00c9b7" + }, + { + "routeId": "L820", + "platformId": "U809Z54", + "id": "dc41e54d-05cb-4999-a4a5-71e99a5bffa1" + }, + { + "routeId": "L59", + "platformId": "U80Z1", + "id": "0f0062b8-ea7b-44cb-a36e-35c50749ac10" + }, + { + "routeId": "L59", + "platformId": "U80Z2", + "id": "46b7ab0c-0468-495b-a258-5c838844c481" + }, + { + "routeId": "L300", + "platformId": "U80Z3", + "id": "4d2c50cd-2827-4586-841c-edaa6450981a" + }, + { + "routeId": "L322", + "platformId": "U80Z3", + "id": "5441775b-971b-4354-9a5a-d6fa8ab68cf9" + }, + { + "routeId": "L342", + "platformId": "U80Z3", + "id": "26abcccf-7e22-4a66-ac6b-1ac80f76e677" + }, + { + "routeId": "L399", + "platformId": "U80Z3", + "id": "0553f386-ddc7-461c-8a27-475513e6836f" + }, + { + "routeId": "L388", + "platformId": "U80Z3", + "id": "001aa214-0d60-44e5-bf72-10541c5b2992" + }, + { + "routeId": "L389", + "platformId": "U80Z3", + "id": "29a1867f-8317-4c32-bce9-0782da19e264" + }, + { + "routeId": "L429", + "platformId": "U80Z3", + "id": "3831a75c-f0a2-42c6-8854-d3cad5cc98d4" + }, + { + "routeId": "L323", + "platformId": "U80Z3", + "id": "7216f2b6-917d-4c62-b197-77f5540482c7" + }, + { + "routeId": "L300", + "platformId": "U80Z4", + "id": "6defd683-67c2-4fec-9ca9-c88c944facd1" + }, + { + "routeId": "L322", + "platformId": "U80Z4", + "id": "2868467f-4dab-477a-b797-8db4bd988dc4" + }, + { + "routeId": "L342", + "platformId": "U80Z4", + "id": "c2134e37-4190-418f-a647-8b693f4001f2" + }, + { + "routeId": "L399", + "platformId": "U80Z4", + "id": "25e82727-674e-4dde-8b69-4d3a1345da5f" + }, + { + "routeId": "L388", + "platformId": "U80Z4", + "id": "b3a4d08f-81ae-4ded-be09-1ae8f800321d" + }, + { + "routeId": "L389", + "platformId": "U80Z4", + "id": "b7b93600-c0ee-4eb0-a8fc-b7a16eefb717" + }, + { + "routeId": "L429", + "platformId": "U80Z4", + "id": "46248688-755a-4c71-b0a8-b04fd7f888ef" + }, + { + "routeId": "L323", + "platformId": "U80Z4", + "id": "a6b58f7c-ed96-4d22-ab0a-d388027ce513" + }, + { + "routeId": "L363", + "platformId": "U810Z1", + "id": "1ed5385e-7d94-4d07-a5a4-1e49c9aa7c44" + }, + { + "routeId": "L363", + "platformId": "U810Z2", + "id": "0daff572-5db3-45a7-a1e0-05cf44cf0d94" + }, + { + "routeId": "L122", + "platformId": "U810Z3", + "id": "533cc106-883a-4a8f-862d-2ebf4a389c45" + }, + { + "routeId": "L250", + "platformId": "U811Z1", + "id": "26995480-297e-40e7-9ef8-798ea45f1f74" + }, + { + "routeId": "L909", + "platformId": "U811Z1", + "id": "bd0c6eaf-2d58-41cb-a168-658f3f45e705" + }, + { + "routeId": "L163", + "platformId": "U811Z1", + "id": "e36cfdd7-ae55-40fd-bc18-9c8da5b9731c" + }, + { + "routeId": "L211", + "platformId": "U811Z1", + "id": "c666e313-f124-4229-822c-46bf53332d77" + }, + { + "routeId": "L391", + "platformId": "U811Z1", + "id": "0d63e67a-bec8-4c9f-a294-d3f56439ffaf" + }, + { + "routeId": "L303", + "platformId": "U811Z1", + "id": "a6031cf6-3356-4a23-b45f-78517578c62e" + }, + { + "routeId": "L250", + "platformId": "U811Z2", + "id": "f3958b1d-317e-49ab-afe0-b8c506168d8a" + }, + { + "routeId": "L908", + "platformId": "U811Z2", + "id": "72d4a0f5-a30a-4a51-9b85-e92d3a988f85" + }, + { + "routeId": "L909", + "platformId": "U811Z2", + "id": "ffbc3805-0c5f-44c8-b541-527705c3f381" + }, + { + "routeId": "L163", + "platformId": "U811Z2", + "id": "0fcf74a4-431e-4d8d-989d-01fcc763c197" + }, + { + "routeId": "L221", + "platformId": "U811Z2", + "id": "7bfb98ed-e06d-46d7-96c7-85b16c17a5de" + }, + { + "routeId": "L122", + "platformId": "U812Z1", + "id": "19d7e2db-63e8-42cb-a856-55509c9630b2" + }, + { + "routeId": "L906", + "platformId": "U812Z1", + "id": "32233dcc-a46e-4076-b01a-8051e00814d5" + }, + { + "routeId": "L363", + "platformId": "U812Z1", + "id": "b31f2568-5bdb-4330-8e15-3696fa1b5211" + }, + { + "routeId": "L122", + "platformId": "U812Z2", + "id": "8f8ecc77-d07b-423c-95d2-c38e819952c9" + }, + { + "routeId": "L906", + "platformId": "U812Z2", + "id": "b4fe4adf-e7ea-46cd-84ec-07e64ffb6806" + }, + { + "routeId": "L363", + "platformId": "U812Z2", + "id": "0f3874a9-50b7-4cce-a5df-f44e402fbda9" + }, + { + "routeId": "L124", + "platformId": "U813Z1", + "id": "c01204e7-5a0c-499b-a3c1-72da59590f34" + }, + { + "routeId": "L139", + "platformId": "U813Z1", + "id": "7c7ff29e-1233-4ee6-90d5-8cc4580a704e" + }, + { + "routeId": "L124", + "platformId": "U813Z2", + "id": "8b9af26c-52fd-4896-ba8c-365cb6d9d0b4" + }, + { + "routeId": "L139", + "platformId": "U813Z2", + "id": "f187ec89-9bc2-4377-9f0a-f07312085197" + }, + { + "routeId": "L139", + "platformId": "U814Z1", + "id": "953fc2fd-25b7-440c-9d1d-ce710649de24" + }, + { + "routeId": "L241", + "platformId": "U814Z1", + "id": "0d80a51f-f484-4ecf-a43b-aebb97837596" + }, + { + "routeId": "L129", + "platformId": "U814Z1", + "id": "bec1e80f-95f1-443c-87ad-91ceaf6d25c7" + }, + { + "routeId": "L247", + "platformId": "U814Z1", + "id": "4e223a5f-14ab-46bd-9812-7367fd64da22" + }, + { + "routeId": "L907", + "platformId": "U814Z1", + "id": "38e42958-8039-4f46-a197-2c0482bd23d6" + }, + { + "routeId": "L318", + "platformId": "U814Z1", + "id": "e952592c-ee4e-433d-a2e8-240d824105a6" + }, + { + "routeId": "L137", + "platformId": "U815Z1", + "id": "f46cfecd-e453-44e3-9538-763b0e7c7925" + }, + { + "routeId": "L908", + "platformId": "U815Z1", + "id": "2aacf77c-8357-4d2f-8122-39027e6b9023" + }, + { + "routeId": "L137", + "platformId": "U815Z2", + "id": "ffc27a38-0797-45ee-bbe2-9a6c50a0b041" + }, + { + "routeId": "L908", + "platformId": "U815Z2", + "id": "4818468e-5f4e-41e2-9226-89b8ab3c24f2" + }, + { + "routeId": "L3", + "platformId": "U816Z1", + "id": "ca38df3c-66ea-4777-a486-8550f86f92fe" + }, + { + "routeId": "L8", + "platformId": "U816Z1", + "id": "eaffe63e-640e-47e0-8d5d-6e297ae0cf1a" + }, + { + "routeId": "L12", + "platformId": "U816Z1", + "id": "6462c282-7caf-4eab-baa5-35779e877433" + }, + { + "routeId": "L92", + "platformId": "U816Z1", + "id": "3ef1eb8c-717e-48c4-9d9a-9ad84d106f49" + }, + { + "routeId": "L94", + "platformId": "U816Z1", + "id": "65ea3220-99e9-46d0-bfe7-4dad6440e8c6" + }, + { + "routeId": "L3", + "platformId": "U816Z2", + "id": "ada7c336-908c-41d3-ad4e-23a94c1ae641" + }, + { + "routeId": "L8", + "platformId": "U816Z2", + "id": "c3097d74-47be-4349-bcc6-bb2c91ecbc67" + }, + { + "routeId": "L12", + "platformId": "U816Z2", + "id": "bce2676e-e7b5-4a09-8351-4d264ddbed8d" + }, + { + "routeId": "L92", + "platformId": "U816Z2", + "id": "c5fd7cd4-df8b-4c7b-9aae-a617a62abe54" + }, + { + "routeId": "L94", + "platformId": "U816Z2", + "id": "3083e21f-4de4-4301-bb72-a382c3d5e6d4" + }, + { + "routeId": "L120", + "platformId": "U817Z1", + "id": "14f2cd74-5785-4078-9ea3-a1441fa223e2" + }, + { + "routeId": "L231", + "platformId": "U817Z1", + "id": "2480c64d-8114-406c-9f7d-59e36685c1fd" + }, + { + "routeId": "L120", + "platformId": "U817Z2", + "id": "d221e322-faf4-45f2-992b-ccec3dbb7bbf" + }, + { + "routeId": "L181", + "platformId": "U818Z1", + "id": "f10105aa-35c8-4f03-91a3-fd84bcf02f3e" + }, + { + "routeId": "L201", + "platformId": "U818Z1", + "id": "e753fe02-3511-493d-8546-5f817881f416" + }, + { + "routeId": "L992", + "platformId": "U818Z101", + "id": "d8120c0e-3dd0-43d3-bb15-963f34e67a88" + }, + { + "routeId": "L992", + "platformId": "U818Z102", + "id": "ec2765bb-2c46-4f7e-b738-c4cd35f4045e" + }, + { + "routeId": "L181", + "platformId": "U818Z2", + "id": "e1731259-2e65-4dea-ac66-c69a92de8daf" + }, + { + "routeId": "L201", + "platformId": "U818Z2", + "id": "d432b895-c9e4-4760-9438-631f23093618" + }, + { + "routeId": "L1221", + "platformId": "U818Z301", + "id": "a7f8a04f-713a-43b9-8a1e-b85d54f7978d" + }, + { + "routeId": "L1302", + "platformId": "U818Z301", + "id": "7f001d1e-69da-47e1-aa56-6f3be237f020" + }, + { + "routeId": "L1322", + "platformId": "U818Z301", + "id": "a1f491a7-1f85-4432-8439-d1de2d1e1a83" + }, + { + "routeId": "L1303", + "platformId": "U818Z301", + "id": "725d5841-9f09-4c60-8dca-a8d644ca8365" + }, + { + "routeId": "L138", + "platformId": "U819Z1", + "id": "eda9a64a-0005-418d-86d1-7a3622f3267f" + }, + { + "routeId": "L193", + "platformId": "U819Z1", + "id": "716c049d-33bd-4991-83e7-654fb7f3e83d" + }, + { + "routeId": "L901", + "platformId": "U819Z1", + "id": "cdd416a1-b768-4d79-9192-cdb50ac68c76" + }, + { + "routeId": "L203", + "platformId": "U819Z1", + "id": "21149de8-30c6-449c-9e7a-5423b701af1a" + }, + { + "routeId": "L956", + "platformId": "U819Z1", + "id": "b1167e2b-d58a-4f17-9dfa-df08a05902e3" + }, + { + "routeId": "L335", + "platformId": "U819Z1", + "id": "08d9a8bc-7bd0-4b78-8c29-5b6c3b9ddd2d" + }, + { + "routeId": "L138", + "platformId": "U819Z2", + "id": "128827e0-92aa-4dae-a003-00ad2879e5c1" + }, + { + "routeId": "L193", + "platformId": "U819Z2", + "id": "4baf25bf-4ee7-46fd-9c88-3e7483f6c8a1" + }, + { + "routeId": "L901", + "platformId": "U819Z2", + "id": "3e1c2a22-18ae-4268-b36e-e51bb9bb47d1" + }, + { + "routeId": "L203", + "platformId": "U819Z2", + "id": "802caf79-4372-4df7-b147-624c1dc4caa6" + }, + { + "routeId": "L956", + "platformId": "U819Z2", + "id": "793caf48-a7d3-4cc6-9e7c-ba91b1e8aee6" + }, + { + "routeId": "L335", + "platformId": "U819Z2", + "id": "c42f2493-a70c-44ff-a08d-95fab3ccf3e6" + }, + { + "routeId": "L1", + "platformId": "U81Z1", + "id": "f672eec6-9782-4a39-a758-8385fe7689a5" + }, + { + "routeId": "L17", + "platformId": "U81Z1", + "id": "9deda6e2-8110-44bd-a30b-337fbcab14c5" + }, + { + "routeId": "L25", + "platformId": "U81Z1", + "id": "ea9e02c5-cc9c-46f9-971a-47feb77173af" + }, + { + "routeId": "L93", + "platformId": "U81Z1", + "id": "c027fa48-bcae-4881-b370-690dd84add83" + }, + { + "routeId": "L894", + "platformId": "U81Z1", + "id": "ad266e63-d0ba-452c-8374-430036da1627" + }, + { + "routeId": "L1", + "platformId": "U81Z2", + "id": "f2322241-b366-4901-9f7d-10154d02277a" + }, + { + "routeId": "L6", + "platformId": "U81Z2", + "id": "9508b6d3-fae5-4af1-94a2-5851f45aa764" + }, + { + "routeId": "L17", + "platformId": "U81Z2", + "id": "51069383-b988-4dde-b42e-ee9c4d239a3b" + }, + { + "routeId": "L27", + "platformId": "U81Z2", + "id": "b4cc8174-e5f6-4f8f-8cc8-23ef01432402" + }, + { + "routeId": "L25", + "platformId": "U81Z2", + "id": "4536b5f7-4e53-4995-baf7-cd43ff66a33b" + }, + { + "routeId": "L93", + "platformId": "U81Z2", + "id": "84d2afc8-0b06-4a5a-80f1-d5a66c5e8089" + }, + { + "routeId": "L1", + "platformId": "U81Z3", + "id": "673fe02c-a58b-47d9-881c-7b5c8f5377eb" + }, + { + "routeId": "L6", + "platformId": "U81Z3", + "id": "ed1dc7dd-631c-41ef-992c-252c2a1a749d" + }, + { + "routeId": "L17", + "platformId": "U81Z3", + "id": "b74a5227-4589-48a6-824b-750a0a3ae8aa" + }, + { + "routeId": "L27", + "platformId": "U81Z3", + "id": "20531923-a8ae-478c-bedb-04868c5fe2cb" + }, + { + "routeId": "L25", + "platformId": "U81Z3", + "id": "9556ad6a-0845-49dc-ab99-465a50f81606" + }, + { + "routeId": "L93", + "platformId": "U81Z3", + "id": "77cb3828-0b0c-4448-80ca-23013f3a0630" + }, + { + "routeId": "L163", + "platformId": "U820Z1", + "id": "f9b4aa72-e42a-41d4-8cfd-8194d2868729" + }, + { + "routeId": "L204", + "platformId": "U820Z1", + "id": "9a0f6342-d119-4f95-b101-854eb6289c05" + }, + { + "routeId": "L903", + "platformId": "U820Z1", + "id": "53587526-5543-41a6-8526-893fbe3bfdf5" + }, + { + "routeId": "L163", + "platformId": "U820Z2", + "id": "f21da269-a3ec-4122-98af-5ffe4a8ad414" + }, + { + "routeId": "L204", + "platformId": "U820Z2", + "id": "20f57e94-61a4-40f7-9438-7b63124241bc" + }, + { + "routeId": "L903", + "platformId": "U820Z2", + "id": "c13aef1c-effb-43f4-b76b-25966c8748ab" + }, + { + "routeId": "L135", + "platformId": "U821Z1", + "id": "3e75b13e-21e2-4e76-b569-52d48a4513a8" + }, + { + "routeId": "L135", + "platformId": "U821Z2", + "id": "21dbf859-9626-42b9-9071-8646f3b16c23" + }, + { + "routeId": "L101", + "platformId": "U821Z3", + "id": "9ed48dd2-33b0-4133-9c19-8a2b844c9e81" + }, + { + "routeId": "L134", + "platformId": "U822Z1", + "id": "04073ade-4dbf-49f8-968a-5bcb7123a175" + }, + { + "routeId": "L134", + "platformId": "U822Z2", + "id": "0f26fb08-8f6c-465a-a597-1965c8c7bf0e" + }, + { + "routeId": "L181", + "platformId": "U823Z1", + "id": "144f9df1-8adb-4b79-b544-c1128d7030ca" + }, + { + "routeId": "L181", + "platformId": "U823Z2", + "id": "b4acc629-bc51-4a2a-8112-488f4ebfc122" + }, + { + "routeId": "L111", + "platformId": "U824Z2", + "id": "141d4601-df11-4c58-b828-56971e5f0d37" + }, + { + "routeId": "L329", + "platformId": "U824Z2", + "id": "571a612f-9b85-4cb2-8131-20f5f9d47f96" + }, + { + "routeId": "L111", + "platformId": "U824Z4", + "id": "42047f37-feda-47ed-9773-90c8b34288c7" + }, + { + "routeId": "L329", + "platformId": "U824Z4", + "id": "0fc176eb-3b89-499e-b870-baea66970aa1" + }, + { + "routeId": "L101", + "platformId": "U825Z1", + "id": "e4082bb9-0576-488e-9a48-bcde6196edf7" + }, + { + "routeId": "L188", + "platformId": "U825Z1", + "id": "2cec2098-acbe-4c85-8c67-df01af0c010b" + }, + { + "routeId": "L101", + "platformId": "U825Z2", + "id": "74313cdc-c226-4225-8932-c8ccb366f04c" + }, + { + "routeId": "L188", + "platformId": "U825Z2", + "id": "ebfd0114-3f57-41a5-97d8-1136add3a9ad" + }, + { + "routeId": "L103", + "platformId": "U826Z1", + "id": "44c58287-58ff-4e6b-9cce-6d083ac8b41c" + }, + { + "routeId": "L914", + "platformId": "U826Z1", + "id": "6db8f893-1b03-4591-8744-aadec36677ed" + }, + { + "routeId": "L348", + "platformId": "U826Z1", + "id": "3b89303f-b377-4196-a3ce-cd8483d0cd9e" + }, + { + "routeId": "L369", + "platformId": "U826Z1", + "id": "fa94e0ec-56c3-418a-bf22-c61005c6274f" + }, + { + "routeId": "L103", + "platformId": "U826Z2", + "id": "6abf222e-60e9-42d0-a360-0aa4154cc459" + }, + { + "routeId": "L914", + "platformId": "U826Z2", + "id": "4a1de5ca-7504-4e9c-ada0-c7f1afa3e3d0" + }, + { + "routeId": "L348", + "platformId": "U826Z2", + "id": "6dbdc9bb-53d1-40e3-821c-4ee4fb8c9f65" + }, + { + "routeId": "L369", + "platformId": "U826Z2", + "id": "8a23f9c8-eacb-4ac6-8bc9-9ae28ce99b9c" + }, + { + "routeId": "L177", + "platformId": "U827Z1", + "id": "069f1adc-5afc-423d-9330-fed0aa57c127" + }, + { + "routeId": "L188", + "platformId": "U827Z1", + "id": "e662619f-a705-4857-bd43-7eaaca8e6a50" + }, + { + "routeId": "L195", + "platformId": "U827Z1", + "id": "9efda246-adab-4573-adb1-08ca3541a995" + }, + { + "routeId": "L908", + "platformId": "U827Z1", + "id": "07f6352b-4f69-428e-b4c2-747028acbab1" + }, + { + "routeId": "L909", + "platformId": "U827Z1", + "id": "d759329b-b390-4e86-9572-e57badba7921" + }, + { + "routeId": "L903", + "platformId": "U827Z1", + "id": "1daaea53-247c-4be6-acdd-071a99c6942e" + }, + { + "routeId": "L228", + "platformId": "U827Z1", + "id": "40378cbb-222b-4b1c-a7c7-cf7c52182784" + }, + { + "routeId": "L177", + "platformId": "U827Z2", + "id": "1d77a8e1-63c8-4410-b2c0-078f563bc215" + }, + { + "routeId": "L188", + "platformId": "U827Z2", + "id": "2899f9a9-8d12-499d-92de-417e44768a8c" + }, + { + "routeId": "L195", + "platformId": "U827Z2", + "id": "a2af2368-b4bc-4cce-bc83-eca4d45f7828" + }, + { + "routeId": "L908", + "platformId": "U827Z2", + "id": "263e28ae-a206-473e-9c3e-15a16f2d81d8" + }, + { + "routeId": "L909", + "platformId": "U827Z2", + "id": "1b6bd5c0-3a5f-4abc-83fa-ab60c44d24e1" + }, + { + "routeId": "L903", + "platformId": "U827Z2", + "id": "31c385c4-8701-4ae7-bac0-e027ffceab17" + }, + { + "routeId": "L228", + "platformId": "U827Z2", + "id": "b992476a-4829-4a66-88a5-5cdc2477ca74" + }, + { + "routeId": "L16", + "platformId": "U827Z3", + "id": "723d44f7-3663-4501-a918-4d5588eb37f9" + }, + { + "routeId": "L19", + "platformId": "U827Z3", + "id": "71e95624-0154-478c-bf4f-c2a4e8347d85" + }, + { + "routeId": "L95", + "platformId": "U827Z3", + "id": "201f7204-f981-42f8-af29-a01209b7f44e" + }, + { + "routeId": "L16", + "platformId": "U827Z4", + "id": "14d08514-7a70-42c2-9bfd-b13fd9229a09" + }, + { + "routeId": "L19", + "platformId": "U827Z4", + "id": "c03c5aba-80f5-4463-99ef-b0cb87d5ea16" + }, + { + "routeId": "L95", + "platformId": "U827Z4", + "id": "16649a37-77a1-4028-98d3-d1993189dc3e" + }, + { + "routeId": "L226", + "platformId": "U828Z1", + "id": "3c7915c9-5204-438b-8651-c21258203026" + }, + { + "routeId": "L227", + "platformId": "U828Z1", + "id": "cbaa08d7-049d-4258-8aa4-f96ddbcfd3b9" + }, + { + "routeId": "L226", + "platformId": "U828Z2", + "id": "85c3bf8a-a1fb-40e3-8e89-fb133d8fac2f" + }, + { + "routeId": "L227", + "platformId": "U828Z2", + "id": "3901c741-c3ec-406a-ad36-e45522157254" + }, + { + "routeId": "L175", + "platformId": "U829Z3", + "id": "7029b44f-479d-4ddb-b3bd-e154baa87169" + }, + { + "routeId": "L901", + "platformId": "U829Z3", + "id": "e879c9be-59fa-44fa-9b36-6685f2637554" + }, + { + "routeId": "L906", + "platformId": "U829Z3", + "id": "c40f41c3-ff57-46e6-abf4-407223306ae8" + }, + { + "routeId": "L175", + "platformId": "U829Z4", + "id": "c26076c6-53b4-4a10-83d7-2b3fa00c1a2e" + }, + { + "routeId": "L901", + "platformId": "U829Z4", + "id": "e9cb14a8-5514-4023-a25b-0bae1b99efe3" + }, + { + "routeId": "L906", + "platformId": "U829Z4", + "id": "5a90c369-86f7-4a06-9a6d-e4916daede9e" + }, + { + "routeId": "L162", + "platformId": "U82Z1", + "id": "ddfc6da4-323d-481f-b48f-74f870b62157" + }, + { + "routeId": "L913", + "platformId": "U82Z1", + "id": "d08188cd-8c45-4acd-88a0-17698f44d3aa" + }, + { + "routeId": "L162", + "platformId": "U82Z2", + "id": "af647f49-5d29-463f-9e4b-d51d23d95b8b" + }, + { + "routeId": "L913", + "platformId": "U82Z2", + "id": "4aadc01d-3f2a-4076-9896-9546b0f36166" + }, + { + "routeId": "L120", + "platformId": "U830Z1", + "id": "d34a1133-985c-4dda-8076-d7e898ffab4a" + }, + { + "routeId": "L246", + "platformId": "U830Z1", + "id": "198b40e9-dcf7-4e5f-b968-6ddef5b71a18" + }, + { + "routeId": "L951", + "platformId": "U830Z1", + "id": "a2bf13bc-a8eb-4b3d-b455-9d8f210b5a8b" + }, + { + "routeId": "L120", + "platformId": "U830Z2", + "id": "19238f37-e1c3-431e-a259-b8740a1f9412" + }, + { + "routeId": "L246", + "platformId": "U830Z2", + "id": "861a330a-b1ba-4ccb-8089-053752398348" + }, + { + "routeId": "L951", + "platformId": "U830Z2", + "id": "fbc0bbbc-ec92-4398-9e6e-1ce438a2e92a" + }, + { + "routeId": "L120", + "platformId": "U831Z1", + "id": "b3cf1588-98f6-49cb-92e3-38b6444719aa" + }, + { + "routeId": "L118", + "platformId": "U832Z1", + "id": "fda2f559-f08c-443f-abf3-e555795cbac5" + }, + { + "routeId": "L170", + "platformId": "U832Z1", + "id": "9ddcfa2b-0f1f-4559-a8c7-4a259d3c1fb1" + }, + { + "routeId": "L138", + "platformId": "U832Z1", + "id": "3d4743ca-0f2d-4296-adfb-bce0304f68c5" + }, + { + "routeId": "L905", + "platformId": "U832Z1", + "id": "e2cd94b7-924e-43c6-b6c4-4f02cfaa8587" + }, + { + "routeId": "L138", + "platformId": "U832Z2", + "id": "3fc59ab1-76ba-4490-a672-af6e732b15d3" + }, + { + "routeId": "L118", + "platformId": "U832Z3", + "id": "ed0d38f6-f531-4b0a-9792-65e5534b6fb5" + }, + { + "routeId": "L170", + "platformId": "U832Z3", + "id": "6b2b48ab-2aa7-4842-a41c-4899cbf8a257" + }, + { + "routeId": "L905", + "platformId": "U832Z3", + "id": "37b24cde-6a1e-4c65-a597-cc6e2d31bd12" + }, + { + "routeId": "L121", + "platformId": "U833Z1", + "id": "765a7a5e-35d8-47be-ab32-0edc708c3333" + }, + { + "routeId": "L121", + "platformId": "U833Z2", + "id": "d1896c4a-142c-4bdc-a246-c795de2eb967" + }, + { + "routeId": "L146", + "platformId": "U834Z1", + "id": "c3b62eaf-9e5c-4c2d-bd76-7486bad38e3f" + }, + { + "routeId": "L155", + "platformId": "U834Z1", + "id": "cc52b30f-5b52-44fd-8a3b-efae1f15340b" + }, + { + "routeId": "L146", + "platformId": "U834Z2", + "id": "4f600467-b800-4edc-920b-746ce44187c2" + }, + { + "routeId": "L155", + "platformId": "U834Z2", + "id": "ed0a14f6-f846-4bf9-bcad-b8e4ee470a50" + }, + { + "routeId": "L137", + "platformId": "U835Z1", + "id": "53b808e2-cd19-49c9-ae12-419f97402a8c" + }, + { + "routeId": "L908", + "platformId": "U835Z1", + "id": "f6699e35-02ff-4361-ab9a-f5876f1289e9" + }, + { + "routeId": "L153", + "platformId": "U835Z1", + "id": "ccbc2b3f-92e6-426f-aff8-dfe2011fc11e" + }, + { + "routeId": "L137", + "platformId": "U835Z2", + "id": "0bf20fbf-ad1e-4609-b667-a99bcd658ae4" + }, + { + "routeId": "L908", + "platformId": "U835Z2", + "id": "c13345a8-ab75-47e7-aeac-ad84a83166f9" + }, + { + "routeId": "L9", + "platformId": "U837Z1", + "id": "2b99419d-bf78-4f3a-951e-2b34d7b39061" + }, + { + "routeId": "L11", + "platformId": "U837Z1", + "id": "e80473a7-d924-4d9b-b4ba-7b962aac9827" + }, + { + "routeId": "L31", + "platformId": "U837Z1", + "id": "25e28fcd-dfb2-413a-a920-2760774cfb5f" + }, + { + "routeId": "L98", + "platformId": "U837Z1", + "id": "6be0ee9a-cbec-4bcc-8a22-710a3b146685" + }, + { + "routeId": "L5", + "platformId": "U837Z2", + "id": "592184ee-9399-4be1-8676-d94db00fe742" + }, + { + "routeId": "L9", + "platformId": "U837Z2", + "id": "5cc83068-a07f-4258-9758-fa022597b9a2" + }, + { + "routeId": "L11", + "platformId": "U837Z2", + "id": "51459f3c-ee9e-4fcd-a148-e183963a88b6" + }, + { + "routeId": "L31", + "platformId": "U837Z2", + "id": "c72c5fb0-457a-4ad1-a0a6-ada79b4e6901" + }, + { + "routeId": "L98", + "platformId": "U837Z2", + "id": "4838df7d-02b5-4675-8035-9e600182a942" + }, + { + "routeId": "L5", + "platformId": "U837Z3", + "id": "d277a602-fbe1-4704-b319-06c03cfdba85" + }, + { + "routeId": "L226", + "platformId": "U838Z1", + "id": "de5fd5f0-2bb6-4cc5-8a76-390b1ef71c21" + }, + { + "routeId": "L227", + "platformId": "U838Z1", + "id": "db0cabf5-eafc-4d61-b2f4-73012928e257" + }, + { + "routeId": "L226", + "platformId": "U838Z2", + "id": "0d00c62f-aa44-46fc-9f7b-da29e234e494" + }, + { + "routeId": "L227", + "platformId": "U838Z2", + "id": "fee099bf-de5a-48ec-9a98-addc39cb1bd5" + }, + { + "routeId": "L196", + "platformId": "U839Z1", + "id": "95d1cbdd-3a1f-41c2-8042-f103f82e61da" + }, + { + "routeId": "L197", + "platformId": "U839Z1", + "id": "e18bbc1f-8cda-4902-9fe8-5f324377a1ea" + }, + { + "routeId": "L901", + "platformId": "U839Z1", + "id": "ef742d9b-4199-4192-ac85-935e6745a448" + }, + { + "routeId": "L196", + "platformId": "U839Z2", + "id": "c9024b63-bf65-488f-96cb-e7119ffed59d" + }, + { + "routeId": "L197", + "platformId": "U839Z2", + "id": "e96b6ca1-c497-407a-a552-3898662160ea" + }, + { + "routeId": "L901", + "platformId": "U839Z2", + "id": "6b856915-eb2d-4f8c-add5-c66a3a89856d" + }, + { + "routeId": "L7", + "platformId": "U83Z1", + "id": "2ead8fcb-4080-4b32-9464-5911dfdfdbd0" + }, + { + "routeId": "L14", + "platformId": "U83Z1", + "id": "f21351ad-b175-4817-b9e1-6fa7176f858a" + }, + { + "routeId": "L18", + "platformId": "U83Z1", + "id": "00695c19-9881-434d-809e-4cad85391230" + }, + { + "routeId": "L93", + "platformId": "U83Z1", + "id": "510b82ed-b9d4-4c36-82bc-d4d59acf2f7b" + }, + { + "routeId": "L95", + "platformId": "U83Z1", + "id": "506e0eb9-93ff-4fa7-8567-c6e5be15fe68" + }, + { + "routeId": "L7", + "platformId": "U83Z2", + "id": "0d5d1ca2-725c-4932-b250-bfb6314c485d" + }, + { + "routeId": "L14", + "platformId": "U83Z2", + "id": "dfe1f18a-a3c9-4498-8fca-4a9e2f3596ae" + }, + { + "routeId": "L18", + "platformId": "U83Z2", + "id": "431bfc64-cda0-4e83-a33c-bad05585d00a" + }, + { + "routeId": "L93", + "platformId": "U83Z2", + "id": "8ec91d6d-90b2-4f49-a3f0-4d2bcd4915d8" + }, + { + "routeId": "L95", + "platformId": "U83Z2", + "id": "ee13586f-b39d-4790-9688-08f1589ab1a9" + }, + { + "routeId": "L174", + "platformId": "U840Z1", + "id": "7754a25b-acfe-4974-a2b7-6bef0890e34d" + }, + { + "routeId": "L902", + "platformId": "U840Z1", + "id": "9fcceb2f-d8dc-4074-8c47-afdde93fe567" + }, + { + "routeId": "L174", + "platformId": "U840Z2", + "id": "98e0cf84-69b7-42a2-a8a9-a02547cb3ef2" + }, + { + "routeId": "L902", + "platformId": "U840Z2", + "id": "21f77013-57d9-43de-95f7-da009e0755a4" + }, + { + "routeId": "L125", + "platformId": "U842Z1", + "id": "fe44acba-eb71-428e-812e-051dc020e875" + }, + { + "routeId": "L911", + "platformId": "U842Z1", + "id": "739a1e68-f39b-4789-b2c6-1b44d4d3ed04" + }, + { + "routeId": "L204", + "platformId": "U842Z1", + "id": "37da5a5b-2392-42d8-8d5f-c79c62248017" + }, + { + "routeId": "L240", + "platformId": "U842Z1", + "id": "9693c0af-7323-4441-aa26-3d7569565571" + }, + { + "routeId": "L125", + "platformId": "U842Z2", + "id": "d79b665b-3d8e-42e4-95df-4847768674f6" + }, + { + "routeId": "L911", + "platformId": "U842Z2", + "id": "65a9b223-5441-4872-ab3d-700d9b1bf4ca" + }, + { + "routeId": "L204", + "platformId": "U842Z2", + "id": "e055ce98-c180-47ad-80ec-d4b2fe17c7ae" + }, + { + "routeId": "L240", + "platformId": "U842Z2", + "id": "fbdd7149-a22e-4b20-8707-e8b8962755b1" + }, + { + "routeId": "L225", + "platformId": "U843Z1", + "id": "807bb562-bf1d-4ecc-a8df-c4973af77690" + }, + { + "routeId": "L164", + "platformId": "U843Z1", + "id": "5f9a96ae-1d96-4c1e-91da-c9578188fc4c" + }, + { + "routeId": "L214", + "platformId": "U843Z1", + "id": "ae33daa6-44f5-439c-ba9c-a8b007e7decf" + }, + { + "routeId": "L225", + "platformId": "U843Z2", + "id": "6ddf2272-1f6d-4427-862f-a9f6149ddf71" + }, + { + "routeId": "L164", + "platformId": "U843Z2", + "id": "27e61ec4-8f17-46d7-b4ad-7be0e1fb73ee" + }, + { + "routeId": "L214", + "platformId": "U843Z2", + "id": "c626b042-62bc-4ecb-96de-49b4b96eec92" + }, + { + "routeId": "L1", + "platformId": "U844Z1", + "id": "d67c1656-37bc-4ed7-8943-1b4de51115a1" + }, + { + "routeId": "L2", + "platformId": "U844Z1", + "id": "1fc4fe91-da14-4b07-b0dc-a3c159dc2444" + }, + { + "routeId": "L96", + "platformId": "U844Z1", + "id": "9ec25282-98a7-452b-a926-e0331851f53b" + }, + { + "routeId": "L1", + "platformId": "U844Z2", + "id": "475b35b7-46dd-4764-b007-52451cab6bc5" + }, + { + "routeId": "L2", + "platformId": "U844Z2", + "id": "dfb90917-0db5-4008-ae7b-23cec26ae573" + }, + { + "routeId": "L96", + "platformId": "U844Z2", + "id": "9eb00495-a2f3-474c-a5ae-e7a0fbbee241" + }, + { + "routeId": "L108", + "platformId": "U844Z3", + "id": "a38d83ab-4516-494f-9c50-52f14a4ce8b3" + }, + { + "routeId": "L168", + "platformId": "U844Z3", + "id": "9320133b-6b83-4bcc-8a50-54b0e18c6f73" + }, + { + "routeId": "L191", + "platformId": "U844Z3", + "id": "98822d3e-f007-4c8c-9b89-aaab58790812" + }, + { + "routeId": "L910", + "platformId": "U844Z3", + "id": "97d7d2f0-921b-4303-a0b1-50506070bdb8" + }, + { + "routeId": "L164", + "platformId": "U844Z3", + "id": "5d2b7f93-8c31-44d1-ba86-cc3a0b4da702" + }, + { + "routeId": "L108", + "platformId": "U844Z4", + "id": "5a18b4a8-a931-4e28-a319-68f102294348" + }, + { + "routeId": "L168", + "platformId": "U844Z4", + "id": "a576218a-5366-4dec-85d8-9b84b5949381" + }, + { + "routeId": "L191", + "platformId": "U844Z4", + "id": "6f7e4851-fdb7-41ab-96c8-843487eeece3" + }, + { + "routeId": "L910", + "platformId": "U844Z4", + "id": "809056b3-fae0-4267-bd3d-b92e3691dfb3" + }, + { + "routeId": "L164", + "platformId": "U844Z4", + "id": "8c0bf9ce-e80a-4bae-8fef-a5372d080300" + }, + { + "routeId": "L149", + "platformId": "U846Z1", + "id": "24523c42-a789-45e9-ad35-aff764e75f21" + }, + { + "routeId": "L149", + "platformId": "U846Z2", + "id": "6c84ddfd-0abe-4079-aa29-22d3128a2ad3" + }, + { + "routeId": "L7", + "platformId": "U848Z1", + "id": "d7b4aada-ccb1-4210-9e61-6c43f9382030" + }, + { + "routeId": "L19", + "platformId": "U848Z1", + "id": "fc0c0bc1-38f3-400c-93e2-dc28e5429ab9" + }, + { + "routeId": "L26", + "platformId": "U848Z1", + "id": "d6674e27-b111-4c76-aff9-8bfa8c3a9b8e" + }, + { + "routeId": "L91", + "platformId": "U848Z1", + "id": "b310e75b-50bc-42b7-b459-3f5873dec2b4" + }, + { + "routeId": "L95", + "platformId": "U848Z1", + "id": "974b400a-0a92-4162-a622-0087d59d255d" + }, + { + "routeId": "L7", + "platformId": "U848Z2", + "id": "456ea6da-2639-4ac1-b816-4f6d10c39be8" + }, + { + "routeId": "L19", + "platformId": "U848Z2", + "id": "3910a1e7-0bed-4e9c-bdc8-e166a64dbef3" + }, + { + "routeId": "L26", + "platformId": "U848Z2", + "id": "5999c494-78cb-428d-b41a-5546c45897d6" + }, + { + "routeId": "L91", + "platformId": "U848Z2", + "id": "3d4505a8-14aa-4311-b62d-3162dfbc98b5" + }, + { + "routeId": "L95", + "platformId": "U848Z2", + "id": "1dca0931-898a-4921-89a7-b77f1d87f450" + }, + { + "routeId": "L7", + "platformId": "U849Z1", + "id": "818336fe-cb6d-40a0-99c2-f97cf7adc5e8" + }, + { + "routeId": "L16", + "platformId": "U849Z1", + "id": "6beafe1b-37e8-4cdf-8cc5-538a0d177d32" + }, + { + "routeId": "L26", + "platformId": "U849Z1", + "id": "affd3f8b-b853-465a-8b18-68483a1c6145" + }, + { + "routeId": "L91", + "platformId": "U849Z1", + "id": "7539d29f-f86a-48de-9987-51ab1cc6bf7c" + }, + { + "routeId": "L7", + "platformId": "U849Z2", + "id": "68056384-7edc-4171-b76a-8dfa2d93b424" + }, + { + "routeId": "L16", + "platformId": "U849Z2", + "id": "4cb06bd5-93ae-4368-8a63-5d079109c832" + }, + { + "routeId": "L26", + "platformId": "U849Z2", + "id": "2ed672ef-c76d-40fe-86b1-f6e44201aad1" + }, + { + "routeId": "L91", + "platformId": "U849Z2", + "id": "3745b5df-0d96-45d3-8cf6-30af61ceb6e2" + }, + { + "routeId": "L231", + "platformId": "U84Z1", + "id": "4dd010a9-4469-4e0d-8211-7eb506c2d23b" + }, + { + "routeId": "L153", + "platformId": "U84Z2", + "id": "6616cf7c-ccd8-4b1f-ae5c-5f6f6bb96d76" + }, + { + "routeId": "L153", + "platformId": "U84Z3", + "id": "fadfd604-cc1f-4662-aa0c-1b27f1d127b8" + }, + { + "routeId": "L11", + "platformId": "U850Z1", + "id": "f185659a-600d-4a16-8441-9832448d85d7" + }, + { + "routeId": "L13", + "platformId": "U850Z1", + "id": "3ad1f827-eb28-4f59-82fe-0504b6746056" + }, + { + "routeId": "L11", + "platformId": "U850Z2", + "id": "91793e0e-175e-4b21-ad6a-e4ed13a1e4ac" + }, + { + "routeId": "L13", + "platformId": "U850Z2", + "id": "0d6da6c5-0920-4e31-b1fc-3c907d0088c5" + }, + { + "routeId": "L10", + "platformId": "U851Z1", + "id": "4c141e41-7d54-4d40-83ff-38d59e3e854c" + }, + { + "routeId": "L16", + "platformId": "U851Z1", + "id": "b40370cd-c075-4d9c-ab3e-c872cc46f03e" + }, + { + "routeId": "L91", + "platformId": "U851Z1", + "id": "b6841d39-a1af-4b49-b1a8-3df61699bc73" + }, + { + "routeId": "L101", + "platformId": "U851Z1", + "id": "0ac7bbdf-24cd-492f-94c0-80c02e14d85d" + }, + { + "routeId": "L10", + "platformId": "U851Z2", + "id": "9a0f714f-c643-46e1-b8a7-6a582468913e" + }, + { + "routeId": "L16", + "platformId": "U851Z2", + "id": "a78d15e4-e290-4d4c-a81f-17ee8e194092" + }, + { + "routeId": "L91", + "platformId": "U851Z2", + "id": "d1f96923-a861-41f4-a1b7-b44fd975e853" + }, + { + "routeId": "L159", + "platformId": "U852Z2", + "id": "34c7ab82-c4eb-4c8d-a371-956968b1dfb6" + }, + { + "routeId": "L378", + "platformId": "U852Z2", + "id": "8493ed97-21ed-48da-99c3-7138f60f638b" + }, + { + "routeId": "L375", + "platformId": "U852Z2", + "id": "f0af861d-04f2-475b-8b62-7994b069ff47" + }, + { + "routeId": "L953", + "platformId": "U852Z2", + "id": "e26700d2-a934-4bc8-a277-ef273e3258dc" + }, + { + "routeId": "L159", + "platformId": "U852Z3", + "id": "cb658047-f2ff-4712-beb2-9d8ad486c75f" + }, + { + "routeId": "L378", + "platformId": "U852Z3", + "id": "e3088007-a139-4854-91d8-2e2c470ad71b" + }, + { + "routeId": "L375", + "platformId": "U852Z3", + "id": "a75f5b1c-8906-41bf-9759-80fefae14ca4" + }, + { + "routeId": "L953", + "platformId": "U852Z3", + "id": "b4b43e11-9910-49d9-8865-53fa5cb9c2d7" + }, + { + "routeId": "L106", + "platformId": "U853Z1", + "id": "48cd3f29-6a32-47bd-91d0-f9bc51aae3ff" + }, + { + "routeId": "L106", + "platformId": "U853Z2", + "id": "ce35a70c-aff1-42a3-99e1-aa5474423a9f" + }, + { + "routeId": "L3", + "platformId": "U854Z1", + "id": "34e10eaf-c60a-4f8d-96ec-a6093a97629a" + }, + { + "routeId": "L8", + "platformId": "U854Z1", + "id": "94581a92-9b77-4fb2-8dea-221fe80dd79f" + }, + { + "routeId": "L12", + "platformId": "U854Z1", + "id": "a6224bc7-e86f-4b28-b2e7-71ff4413c9ab" + }, + { + "routeId": "L92", + "platformId": "U854Z1", + "id": "80cc6364-a326-4082-99eb-fd6c6e531e94" + }, + { + "routeId": "L94", + "platformId": "U854Z1", + "id": "9aebca75-71b0-477e-8838-3bbfdad047be" + }, + { + "routeId": "L3", + "platformId": "U854Z2", + "id": "511367d1-694c-4379-9104-f89ec5340fb9" + }, + { + "routeId": "L8", + "platformId": "U854Z2", + "id": "071098c8-e5ed-4f05-9493-5c378c66543d" + }, + { + "routeId": "L12", + "platformId": "U854Z2", + "id": "c3ab75f9-ae61-418d-90a8-1d2ab66df952" + }, + { + "routeId": "L92", + "platformId": "U854Z2", + "id": "490d4ed3-16d2-4fba-aadd-7e35588ddfe1" + }, + { + "routeId": "L94", + "platformId": "U854Z2", + "id": "84904e50-c84e-439a-a0cc-f36745a675ac" + }, + { + "routeId": "L136", + "platformId": "U855Z1", + "id": "2a73d7bf-4fde-47a9-9996-28e66a23cf89" + }, + { + "routeId": "L175", + "platformId": "U855Z1", + "id": "19731400-892d-46a8-afcf-67cceb440b5d" + }, + { + "routeId": "L913", + "platformId": "U855Z1", + "id": "95e348e3-02d0-4dc3-ae9b-dcd413e8c859" + }, + { + "routeId": "L136", + "platformId": "U855Z2", + "id": "9e2547ac-21b4-4058-ac88-717b19764ac5" + }, + { + "routeId": "L175", + "platformId": "U855Z2", + "id": "c89a80a2-d9f0-4dcd-8a7f-0817be1a8e01" + }, + { + "routeId": "L913", + "platformId": "U855Z2", + "id": "8392dac9-6a84-47c6-b387-878672b15cc9" + }, + { + "routeId": "L170", + "platformId": "U856Z1", + "id": "4b9d4dcf-eb02-40e8-91ff-384cc0cf540f" + }, + { + "routeId": "L170", + "platformId": "U856Z2", + "id": "6c5cfea8-81d9-4863-b68f-fb9a9260ea54" + }, + { + "routeId": "L913", + "platformId": "U857Z1", + "id": "099bb415-c4cb-433c-acd4-00ae577a4f32" + }, + { + "routeId": "L117", + "platformId": "U857Z1", + "id": "db20eb4a-f4d7-45df-8cf9-4cad12c69c30" + }, + { + "routeId": "L913", + "platformId": "U857Z2", + "id": "2b8bc058-40d7-4bb9-963f-a84aaf2d466b" + }, + { + "routeId": "L117", + "platformId": "U857Z2", + "id": "b883bfc0-b0c3-4225-b7c2-c70c53c1cdc7" + }, + { + "routeId": "L1", + "platformId": "U858Z1", + "id": "41fae886-6075-4422-8a20-743479d7ddad" + }, + { + "routeId": "L2", + "platformId": "U858Z1", + "id": "1d431f6b-effe-4fb7-a5be-b520be0a6620" + }, + { + "routeId": "L96", + "platformId": "U858Z1", + "id": "5a3162b9-9f8b-4238-af70-de7329a0b9db" + }, + { + "routeId": "L1", + "platformId": "U858Z2", + "id": "e19b9b11-4e18-4ea1-ad2c-13b967c031cd" + }, + { + "routeId": "L2", + "platformId": "U858Z2", + "id": "bc25a3bd-1b06-4e4c-b2d9-30d624692314" + }, + { + "routeId": "L96", + "platformId": "U858Z2", + "id": "55dbb4dd-81d6-4066-8b1c-573db0d34007" + }, + { + "routeId": "L108", + "platformId": "U858Z2", + "id": "ea310e67-81c1-45ee-a366-4a9125fb3cef" + }, + { + "routeId": "L108", + "platformId": "U858Z4", + "id": "cce7bc0b-3367-48ab-ad6b-1d76a8d59360" + }, + { + "routeId": "L141", + "platformId": "U859Z1", + "id": "146d4dcc-c5f7-499c-92cd-a8b63106fc89" + }, + { + "routeId": "L912", + "platformId": "U859Z1", + "id": "61a97ba1-db06-4828-ad7a-407ea7206f7a" + }, + { + "routeId": "L171", + "platformId": "U859Z1", + "id": "891efded-f1f6-4c8e-9804-eb0348fb00a3" + }, + { + "routeId": "L204", + "platformId": "U859Z1", + "id": "fe69fc3b-f906-423e-9e50-e3262cbc3e89" + }, + { + "routeId": "L223", + "platformId": "U859Z1", + "id": "052151e3-ca3b-415d-975d-3c48f49105ca" + }, + { + "routeId": "L224", + "platformId": "U859Z1", + "id": "8ac47138-559e-448a-9647-ccb2c52d88aa" + }, + { + "routeId": "L344", + "platformId": "U859Z1", + "id": "eabc1dbd-d6da-4d78-953f-fb82de7b0d7e" + }, + { + "routeId": "L303", + "platformId": "U859Z1", + "id": "0b964b35-1be9-45fb-8daa-9a46ac9a8b98" + }, + { + "routeId": "L353", + "platformId": "U859Z1", + "id": "b4e31821-d3a6-45a5-83db-637b45b59120" + }, + { + "routeId": "L354", + "platformId": "U859Z1", + "id": "9f6553b7-0d0a-4521-8c7c-6f6a37d590ba" + }, + { + "routeId": "L141", + "platformId": "U859Z2", + "id": "b82a788e-dc92-47b7-9443-550da93224a3" + }, + { + "routeId": "L912", + "platformId": "U859Z2", + "id": "6ca30016-d0e3-4390-bb5b-e5e4a0c7806f" + }, + { + "routeId": "L171", + "platformId": "U859Z2", + "id": "8abb0e5a-b03b-4be3-a151-bb8c86a36c2d" + }, + { + "routeId": "L344", + "platformId": "U859Z2", + "id": "0dd4272b-0aa9-4a71-b800-f88acf9053fd" + }, + { + "routeId": "L353", + "platformId": "U859Z2", + "id": "db851a9c-4fd3-402b-abb0-56ca59ae5056" + }, + { + "routeId": "L303", + "platformId": "U859Z2", + "id": "923755cc-0280-480f-8981-5029e9b43caf" + }, + { + "routeId": "L354", + "platformId": "U859Z2", + "id": "b2cb75ef-f78a-418c-a0ed-c8c884a8d723" + }, + { + "routeId": "L20", + "platformId": "U85Z1", + "id": "58c8755b-e3f4-4128-9969-bbdebc3cca92" + }, + { + "routeId": "L26", + "platformId": "U85Z1", + "id": "9928d69d-9fc8-49b0-b0b2-16cdc1897354" + }, + { + "routeId": "L108", + "platformId": "U85Z1", + "id": "225a3fa8-522b-4154-88a5-b3ec7ae7b0ce" + }, + { + "routeId": "L191", + "platformId": "U85Z1", + "id": "9078e342-b440-4584-9f6e-a6fd8eb7fc48" + }, + { + "routeId": "L910", + "platformId": "U85Z1", + "id": "9b9daf09-f0d4-43a0-8e85-a2f745051302" + }, + { + "routeId": "L300", + "platformId": "U85Z1", + "id": "380bbdee-1a8a-4b52-8667-6aa912e0880b" + }, + { + "routeId": "L322", + "platformId": "U85Z1", + "id": "3f6e5495-4d40-4462-bca1-ad8ece69b11f" + }, + { + "routeId": "L342", + "platformId": "U85Z1", + "id": "b7c1d340-d0aa-4226-8d4f-d8ff2942791c" + }, + { + "routeId": "L399", + "platformId": "U85Z1", + "id": "d9d2c805-a309-469d-9b45-b770099d342e" + }, + { + "routeId": "L388", + "platformId": "U85Z1", + "id": "660cb966-47e2-4494-96dc-e064c115dc30" + }, + { + "routeId": "L389", + "platformId": "U85Z1", + "id": "e8bb0ff0-8997-4af8-a958-0f7e26954d13" + }, + { + "routeId": "L414", + "platformId": "U85Z1", + "id": "2d960fcb-54a8-4261-b95a-aa5cf2fd8500" + }, + { + "routeId": "L429", + "platformId": "U85Z1", + "id": "ad8799be-b1fe-49d1-a126-a6c87ad32511" + }, + { + "routeId": "L323", + "platformId": "U85Z1", + "id": "1b7d5aa1-3bfe-4c5d-ab7b-825c43e9a01f" + }, + { + "routeId": "L59", + "platformId": "U85Z1", + "id": "98267ee5-5da3-4bab-bdb6-570302b29096" + }, + { + "routeId": "L20", + "platformId": "U85Z2", + "id": "7b271c43-cc41-44b7-bc80-0bd2e567b9f7" + }, + { + "routeId": "L26", + "platformId": "U85Z2", + "id": "8910b8b1-e631-48eb-ae10-35e741017705" + }, + { + "routeId": "L108", + "platformId": "U85Z2", + "id": "0d071fd1-0194-449e-8678-fed964e2dbad" + }, + { + "routeId": "L191", + "platformId": "U85Z2", + "id": "2396316a-32b3-4775-b9de-a248fed0a2c4" + }, + { + "routeId": "L910", + "platformId": "U85Z2", + "id": "dba310fe-d644-4ae0-9560-2861815fbd27" + }, + { + "routeId": "L59", + "platformId": "U85Z2", + "id": "fa100cc7-2584-4251-8e5b-18bc973d76b1" + }, + { + "routeId": "L91", + "platformId": "U85Z3", + "id": "fbab9bc2-4e15-4466-86f0-a6ac48929976" + }, + { + "routeId": "L91", + "platformId": "U85Z4", + "id": "5514c4a1-3fcb-4bce-8edf-6f03e9b72cb5" + }, + { + "routeId": "L108", + "platformId": "U85Z6", + "id": "ed99c89b-15d4-46f4-bc27-d5b3c5873400" + }, + { + "routeId": "L300", + "platformId": "U85Z9", + "id": "c881d12c-bbce-4344-b29b-9092a9dce757" + }, + { + "routeId": "L322", + "platformId": "U85Z9", + "id": "417f0be3-6442-425d-bf34-650d2041cae5" + }, + { + "routeId": "L342", + "platformId": "U85Z9", + "id": "e0d38c4a-7eec-4ce4-be5e-3be223c35863" + }, + { + "routeId": "L399", + "platformId": "U85Z9", + "id": "4d9e50e0-c04e-4fd7-b683-884fe4edf1a9" + }, + { + "routeId": "L388", + "platformId": "U85Z9", + "id": "15d67d73-9b62-4a97-b039-5de9b133edc5" + }, + { + "routeId": "L389", + "platformId": "U85Z9", + "id": "25cce953-0150-425c-9169-0822a5188310" + }, + { + "routeId": "L414", + "platformId": "U85Z9", + "id": "b89d474f-4a6f-4507-a802-4009407fcae2" + }, + { + "routeId": "L429", + "platformId": "U85Z9", + "id": "bdd980a7-d47f-4e0e-90cc-9df3877bfa93" + }, + { + "routeId": "L323", + "platformId": "U85Z9", + "id": "6ad4ffd2-015b-4498-acd0-34b6dc89d94a" + }, + { + "routeId": "L3", + "platformId": "U861Z1", + "id": "624cad90-16ce-4a43-b89a-00a45a4c57f4" + }, + { + "routeId": "L10", + "platformId": "U861Z1", + "id": "66a71d7d-d220-4977-bab4-48e66d9cf259" + }, + { + "routeId": "L95", + "platformId": "U861Z1", + "id": "bd6f40ff-9b93-49e5-b013-3fcec867007f" + }, + { + "routeId": "L3", + "platformId": "U861Z2", + "id": "ad08528f-2745-400c-92ca-45534e61226a" + }, + { + "routeId": "L10", + "platformId": "U861Z2", + "id": "4b50797f-4a02-4dad-b1fd-4d343a615ae9" + }, + { + "routeId": "L95", + "platformId": "U861Z2", + "id": "0b256c3d-5f83-49fe-b108-f626e5333c3a" + }, + { + "routeId": "L204", + "platformId": "U862Z1", + "id": "041b1718-5b29-4792-b1c2-7ac86d483a8a" + }, + { + "routeId": "L344", + "platformId": "U862Z1", + "id": "d89c2bf0-4bbc-49c8-838c-54b58509dd7c" + }, + { + "routeId": "L303", + "platformId": "U862Z1", + "id": "6f14b3c9-0126-4d11-9d39-89884704a58c" + }, + { + "routeId": "L353", + "platformId": "U862Z1", + "id": "40f005d0-d8d5-4798-b3e8-e990dd9184f6" + }, + { + "routeId": "L354", + "platformId": "U862Z1", + "id": "b87f0cbf-92d9-4785-af39-20a08d286669" + }, + { + "routeId": "L204", + "platformId": "U862Z2", + "id": "aafd9157-8078-4225-9c8f-1f3f1d213f9e" + }, + { + "routeId": "L344", + "platformId": "U862Z2", + "id": "7d89cd77-2eb4-4a72-b63d-b939e5e7f12a" + }, + { + "routeId": "L353", + "platformId": "U862Z2", + "id": "0db0955c-9881-4cd4-8fd4-2257b1727a4a" + }, + { + "routeId": "L303", + "platformId": "U862Z2", + "id": "19e68b16-6b3f-427e-90ea-75ebe7253666" + }, + { + "routeId": "L354", + "platformId": "U862Z2", + "id": "72e706be-f4a1-4cdb-bc3e-3f290c638957" + }, + { + "routeId": "L134", + "platformId": "U863Z1", + "id": "54677475-7e0d-464d-a097-b8b221c624cb" + }, + { + "routeId": "L134", + "platformId": "U863Z2", + "id": "a9defb62-9558-4622-86d7-c880341d4429" + }, + { + "routeId": "L17", + "platformId": "U864Z1", + "id": "bb5dbd78-b45c-465c-9f9c-668477216474" + }, + { + "routeId": "L95", + "platformId": "U864Z1", + "id": "1aacf61f-242a-491e-b73b-59cc09085050" + }, + { + "routeId": "L162", + "platformId": "U864Z11", + "id": "9dbf3d92-5e9f-41e4-b8f0-60415e7a2dc1" + }, + { + "routeId": "L145", + "platformId": "U864Z11", + "id": "601c8480-4794-4f28-981c-3cdeeed9e93a" + }, + { + "routeId": "L169", + "platformId": "U864Z11", + "id": "2acab148-b853-4941-9853-70b99045f8d4" + }, + { + "routeId": "L913", + "platformId": "U864Z11", + "id": "000c33c9-a8c4-41af-b5f4-2bea1419ed1a" + }, + { + "routeId": "L370", + "platformId": "U864Z11", + "id": "ac95299b-f74a-4ef5-8a4a-83a5d4caaab4" + }, + { + "routeId": "L371", + "platformId": "U864Z11", + "id": "7c0b3ff8-1359-42a6-851c-c4315b552df9" + }, + { + "routeId": "L374", + "platformId": "U864Z11", + "id": "0662ce58-086e-45f8-ae6f-d8c946cd7ea5" + }, + { + "routeId": "L373", + "platformId": "U864Z11", + "id": "c4fc2438-5bae-49f2-a6b9-85210cd485ef" + }, + { + "routeId": "L958", + "platformId": "U864Z11", + "id": "37358ea1-4cfa-4878-87e8-f72f09355b20" + }, + { + "routeId": "L17", + "platformId": "U864Z2", + "id": "f2b71244-de81-4e76-b466-7b14d6c9db1a" + }, + { + "routeId": "L95", + "platformId": "U864Z2", + "id": "f58a1b66-0805-4b7e-85f8-41e1490c5d77" + }, + { + "routeId": "L17", + "platformId": "U864Z5", + "id": "cfac27a9-7378-40dd-9af4-963fac2fca66" + }, + { + "routeId": "L95", + "platformId": "U864Z5", + "id": "9a4b4d51-9c75-435d-9ad7-c2364746baad" + }, + { + "routeId": "L183", + "platformId": "U864Z6", + "id": "886291d1-e795-4da8-a722-19abedc11511" + }, + { + "routeId": "L183", + "platformId": "U864Z7", + "id": "fa26bf00-abac-4917-99b4-9982eb933cd4" + }, + { + "routeId": "L162", + "platformId": "U864Z9", + "id": "3f2ab070-c103-4d12-8a8b-10e89050224e" + }, + { + "routeId": "L145", + "platformId": "U864Z9", + "id": "31d0868a-4ad8-41f6-8910-ea899d685de2" + }, + { + "routeId": "L169", + "platformId": "U864Z9", + "id": "dd843c91-d39b-46ca-b617-3eb66b05ce26" + }, + { + "routeId": "L183", + "platformId": "U864Z9", + "id": "011cd3d9-635c-4139-aa44-113620cb0ac6" + }, + { + "routeId": "L913", + "platformId": "U864Z9", + "id": "85080697-a20d-4ee3-8e72-25d1bf50bc49" + }, + { + "routeId": "L370", + "platformId": "U864Z9", + "id": "f3100255-78ca-4e80-936f-068afeadcfb2" + }, + { + "routeId": "L371", + "platformId": "U864Z9", + "id": "d3fe08c3-87d2-4b8d-a239-42bb8a25a8ae" + }, + { + "routeId": "L374", + "platformId": "U864Z9", + "id": "3fe15e26-9dc8-451a-9b6e-ecdeb5d5fa79" + }, + { + "routeId": "L373", + "platformId": "U864Z9", + "id": "f3a6745b-fcd9-418b-8225-bf00d6040a09" + }, + { + "routeId": "L958", + "platformId": "U864Z9", + "id": "5df6cb9b-fa4e-44fa-9271-8acadc47e6e5" + }, + { + "routeId": "L9", + "platformId": "U865Z1", + "id": "2e262e55-b917-4377-b400-4323a60ba6f1" + }, + { + "routeId": "L10", + "platformId": "U865Z1", + "id": "1dc04f1d-5e75-43f2-a192-bf3d5238f11e" + }, + { + "routeId": "L98", + "platformId": "U865Z1", + "id": "fd3336b9-c8b1-418d-aa32-59208a668777" + }, + { + "routeId": "L99", + "platformId": "U865Z1", + "id": "f8f5ac6d-f965-4145-a97c-5eaaa3b0b26e" + }, + { + "routeId": "L9", + "platformId": "U865Z2", + "id": "28e6faf9-aeb4-4fda-9cd7-c3033f75e970" + }, + { + "routeId": "L10", + "platformId": "U865Z2", + "id": "29e662ea-be4b-4424-a030-50614ee35f0d" + }, + { + "routeId": "L16", + "platformId": "U865Z2", + "id": "9b05c20d-f1b0-4a3a-ba33-25f68c7992eb" + }, + { + "routeId": "L98", + "platformId": "U865Z2", + "id": "8181fcf1-752f-4bac-9573-bd1b3b7c4228" + }, + { + "routeId": "L99", + "platformId": "U865Z2", + "id": "4e2c9f71-fc6d-4e36-8f34-b25827280733" + }, + { + "routeId": "L18", + "platformId": "U866Z1", + "id": "e2ee5a11-c16c-44a0-bd2d-a5fbfb66f9a3" + }, + { + "routeId": "L19", + "platformId": "U866Z1", + "id": "818e8313-fa59-482d-9e0d-42d27cc663fb" + }, + { + "routeId": "L93", + "platformId": "U866Z1", + "id": "03534d66-441b-4451-9670-86a7b75c0c8c" + }, + { + "routeId": "L18", + "platformId": "U866Z2", + "id": "2cda60d3-fb24-4205-ab75-26ceced52e53" + }, + { + "routeId": "L19", + "platformId": "U866Z4", + "id": "9de8b19f-2ba4-401e-bee6-10ccd0977457" + }, + { + "routeId": "L93", + "platformId": "U866Z4", + "id": "904cb542-39bd-48d0-9b3d-7e892ee1160a" + }, + { + "routeId": "L1", + "platformId": "U867Z1", + "id": "1a7b5628-c3a4-4def-a136-a506ccc0c699" + }, + { + "routeId": "L2", + "platformId": "U867Z1", + "id": "890dea1f-d1b6-4d1a-b767-36887d577f38" + }, + { + "routeId": "L25", + "platformId": "U867Z1", + "id": "165bf6c1-b27e-4785-803f-f45a0f153ed9" + }, + { + "routeId": "L96", + "platformId": "U867Z1", + "id": "b08010c0-d136-4fec-8213-39ff510a44a2" + }, + { + "routeId": "L97", + "platformId": "U867Z1", + "id": "ffca0ff1-fa14-4d61-8bbb-3f3b8a7e38ef" + }, + { + "routeId": "L143", + "platformId": "U867Z1", + "id": "f50ae517-3b59-4dd0-88d6-8c6b4473ab4a" + }, + { + "routeId": "L149", + "platformId": "U867Z1", + "id": "66073e11-bcfb-4c08-8df9-547f40b770f4" + }, + { + "routeId": "L180", + "platformId": "U867Z1", + "id": "abe261be-6c77-40ff-86b2-9120265de6b1" + }, + { + "routeId": "L902", + "platformId": "U867Z1", + "id": "a8a5fdb9-edda-470d-9cce-545c1ccebc67" + }, + { + "routeId": "L1", + "platformId": "U867Z2", + "id": "4813ccc5-2e69-489e-99c1-9bee7ab39c5c" + }, + { + "routeId": "L2", + "platformId": "U867Z2", + "id": "db1d5a54-44c9-4703-874e-aee50d680cec" + }, + { + "routeId": "L25", + "platformId": "U867Z2", + "id": "872d3413-435f-4bda-b49e-53a94ce5872c" + }, + { + "routeId": "L96", + "platformId": "U867Z2", + "id": "f71c3c95-bfbf-4499-8d4f-a59b5bea401c" + }, + { + "routeId": "L97", + "platformId": "U867Z2", + "id": "97a6281f-f4e3-4ab5-b193-fde34fe179b7" + }, + { + "routeId": "L143", + "platformId": "U867Z2", + "id": "7205b969-5d29-45c0-ab08-2bae94c7859c" + }, + { + "routeId": "L149", + "platformId": "U867Z2", + "id": "36e2b7ed-b4cc-48b3-9111-3910aaadad6b" + }, + { + "routeId": "L180", + "platformId": "U867Z2", + "id": "4f65d309-e9f6-4652-a7c6-056ae8a67b9a" + }, + { + "routeId": "L902", + "platformId": "U867Z2", + "id": "7e0e3bac-9a44-4dcd-90f8-3e9e919130da" + }, + { + "routeId": "L108", + "platformId": "U867Z5", + "id": "139f89bd-90c7-4a18-987e-c0e018e3a541" + }, + { + "routeId": "L108", + "platformId": "U867Z6", + "id": "c4aab5f3-d061-45cb-9cb9-98a578d88b24" + }, + { + "routeId": "L20", + "platformId": "U868Z1", + "id": "eb36e409-aedd-4857-812f-4148f42c1ba4" + }, + { + "routeId": "L26", + "platformId": "U868Z1", + "id": "991f5495-07d2-43d1-9e38-7ba33060aa06" + }, + { + "routeId": "L91", + "platformId": "U868Z1", + "id": "03140df6-6197-4591-8680-f89c4f9b343b" + }, + { + "routeId": "L20", + "platformId": "U868Z2", + "id": "3e0d0740-2ce9-4da7-810c-5132454b94ae" + }, + { + "routeId": "L26", + "platformId": "U868Z2", + "id": "7a7b6071-f7c1-45a5-843f-2940be953288" + }, + { + "routeId": "L91", + "platformId": "U868Z2", + "id": "2c9227ab-10d4-4f91-89ae-0bd9e4599762" + }, + { + "routeId": "L147", + "platformId": "U869Z1", + "id": "be0bae26-4e9b-4739-b4d5-77ab5ccdcc0e" + }, + { + "routeId": "L3", + "platformId": "U870Z1", + "id": "f0b94967-0ea0-4c31-a7d3-23de14332a9e" + }, + { + "routeId": "L10", + "platformId": "U870Z1", + "id": "f480a23f-f325-42a7-9555-a63a3d935fff" + }, + { + "routeId": "L95", + "platformId": "U870Z1", + "id": "c929a932-ad25-417a-9630-c6722c0e8987" + }, + { + "routeId": "L3", + "platformId": "U870Z2", + "id": "a0820734-c250-48f5-9c10-c28c83249107" + }, + { + "routeId": "L10", + "platformId": "U870Z2", + "id": "ac90ca90-24f2-4eeb-8937-9cb106257319" + }, + { + "routeId": "L95", + "platformId": "U870Z2", + "id": "6f06333c-683c-4438-8b04-2d7373583ccb" + }, + { + "routeId": "L201", + "platformId": "U870Z3", + "id": "6267c01f-f1e8-4cfb-a4c3-9adcc90ba66d" + }, + { + "routeId": "L905", + "platformId": "U870Z3", + "id": "706fc3cd-bd45-432f-8339-c9a6348b2e38" + }, + { + "routeId": "L911", + "platformId": "U870Z3", + "id": "3affe21c-192c-4208-9f1b-713605d57c13" + }, + { + "routeId": "L166", + "platformId": "U870Z3", + "id": "699d91cf-a4b5-4250-9f07-9aed55d413e8" + }, + { + "routeId": "L201", + "platformId": "U870Z4", + "id": "9438b950-731d-42c9-b30f-89662b17dc94" + }, + { + "routeId": "L911", + "platformId": "U870Z4", + "id": "64f34fb3-fbf1-40cc-ba6d-24dac859cc2f" + }, + { + "routeId": "L905", + "platformId": "U870Z5", + "id": "617e4e6c-d037-4795-8afa-d9bfafefe011" + }, + { + "routeId": "L113", + "platformId": "U871Z1", + "id": "b2242931-2dc4-47fe-accf-016ff049508c" + }, + { + "routeId": "L913", + "platformId": "U871Z1", + "id": "5dd97456-e87c-4c95-b5e9-9059ef00b802" + }, + { + "routeId": "L333", + "platformId": "U871Z1", + "id": "38353f53-0d5b-47d1-a577-c4401abf8089" + }, + { + "routeId": "L960", + "platformId": "U871Z1", + "id": "e6d5bcfa-4c7e-4e6f-82c8-8611744dfef4" + }, + { + "routeId": "L113", + "platformId": "U871Z2", + "id": "33fba3a8-045b-4075-b406-71875344f97b" + }, + { + "routeId": "L913", + "platformId": "U871Z2", + "id": "fbc80dee-56e6-473a-857d-115d6b3d6800" + }, + { + "routeId": "L333", + "platformId": "U871Z2", + "id": "47066276-7178-4b7e-82a6-1248b499baa4" + }, + { + "routeId": "L960", + "platformId": "U871Z2", + "id": "7537dbb4-8684-4d16-81ec-3ee7b221f630" + }, + { + "routeId": "L22", + "platformId": "U872Z1", + "id": "6bb98f93-d8b4-4791-a3d5-8601f1af9c6b" + }, + { + "routeId": "L25", + "platformId": "U872Z1", + "id": "01a95b58-4145-4a14-8bcd-1b29f9363a87" + }, + { + "routeId": "L97", + "platformId": "U872Z1", + "id": "b2c04b66-9262-46c0-a802-5bf3fba86dbe" + }, + { + "routeId": "L180", + "platformId": "U872Z1", + "id": "626ba34e-609d-4ae0-9857-35dd9219be7a" + }, + { + "routeId": "L191", + "platformId": "U872Z1", + "id": "6a46b0e3-efb2-4737-968a-93206004cf57" + }, + { + "routeId": "L902", + "platformId": "U872Z1", + "id": "4bf3fe94-63c3-4a46-b415-24ae299313b9" + }, + { + "routeId": "L910", + "platformId": "U872Z1", + "id": "ec0b27b0-f899-406b-9390-8b672d32fb37" + }, + { + "routeId": "L22", + "platformId": "U872Z2", + "id": "634e23a8-04e9-423f-8014-9e45aed6346a" + }, + { + "routeId": "L25", + "platformId": "U872Z2", + "id": "2d09f1db-dd85-431a-b963-91bb1dfeaaaa" + }, + { + "routeId": "L97", + "platformId": "U872Z2", + "id": "a15a1075-567b-4e04-b69f-c09404c289c0" + }, + { + "routeId": "L180", + "platformId": "U872Z2", + "id": "654aadf3-33a0-465d-a64b-9619e9e5d82c" + }, + { + "routeId": "L191", + "platformId": "U872Z2", + "id": "75afb5b1-d08f-4663-945b-98aa46ef6959" + }, + { + "routeId": "L902", + "platformId": "U872Z2", + "id": "129f974a-615e-461b-9b91-04d51d23d18e" + }, + { + "routeId": "L910", + "platformId": "U872Z2", + "id": "b6b4c7b0-1295-4bde-9f3e-4dea879f0018" + }, + { + "routeId": "L168", + "platformId": "U872Z6", + "id": "094af183-ce59-450a-a911-bacfd631dd49" + }, + { + "routeId": "L164", + "platformId": "U872Z6", + "id": "fa365a8e-7fbd-4ecd-8653-1c8dac8e8bb2" + }, + { + "routeId": "L168", + "platformId": "U872Z7", + "id": "a1d43221-45ef-4d43-9b62-acc93fdb87db" + }, + { + "routeId": "L174", + "platformId": "U872Z7", + "id": "de97c738-84f5-413f-b552-0c54f10cc2d6" + }, + { + "routeId": "L180", + "platformId": "U872Z7", + "id": "2d628b27-6fef-4aff-8e98-1d4e6b7f47f8" + }, + { + "routeId": "L184", + "platformId": "U872Z7", + "id": "ac095674-420d-4c1e-9673-e9ef7373bcd6" + }, + { + "routeId": "L304", + "platformId": "U872Z7", + "id": "62c859c2-2c9c-4e53-817d-bc60d8ba01bc" + }, + { + "routeId": "L365", + "platformId": "U872Z7", + "id": "bfa39432-0d60-48ab-a648-535143041f74" + }, + { + "routeId": "L380", + "platformId": "U872Z7", + "id": "800ddf4f-592e-4a61-91ad-1c3a9f4b62c5" + }, + { + "routeId": "L168", + "platformId": "U872Z8", + "id": "7d5e50b9-0f0c-4bc4-9f47-7a413fbf73e7" + }, + { + "routeId": "L174", + "platformId": "U872Z8", + "id": "ff4e5100-059c-44f1-be7b-632fca6ea308" + }, + { + "routeId": "L184", + "platformId": "U872Z8", + "id": "a533d5df-3a62-4034-b9be-0cc62929d58f" + }, + { + "routeId": "L191", + "platformId": "U872Z8", + "id": "967bcaf4-318b-4f13-8b7c-38ad89d1b4f4" + }, + { + "routeId": "L164", + "platformId": "U872Z8", + "id": "0a9d696c-eabe-4586-82c8-a2fb7a575b34" + }, + { + "routeId": "L304", + "platformId": "U872Z8", + "id": "9edcea06-c23b-4861-ac0e-82d8de18732c" + }, + { + "routeId": "L380", + "platformId": "U872Z8", + "id": "1d3708aa-ef94-42a4-b0bc-a347592d6951" + }, + { + "routeId": "L12", + "platformId": "U873Z1", + "id": "276c0ace-0133-4864-9a4a-24a60dadb3c2" + }, + { + "routeId": "L94", + "platformId": "U873Z1", + "id": "bfa48e83-d388-4c6a-97c2-abf0b325ed9d" + }, + { + "routeId": "L12", + "platformId": "U873Z2", + "id": "74aec440-353f-4598-866c-f56167ab27c1" + }, + { + "routeId": "L94", + "platformId": "U873Z2", + "id": "82a6f80b-d809-4900-be1c-e152b66caa0a" + }, + { + "routeId": "L107", + "platformId": "U874Z2", + "id": "f6f4afa3-0372-4d34-bb1e-b377553dbcdb" + }, + { + "routeId": "L147", + "platformId": "U874Z2", + "id": "dae1fa55-6889-4bf6-b209-de944dedb42f" + }, + { + "routeId": "L909", + "platformId": "U874Z2", + "id": "8bd9be38-5cac-43c4-aeda-18b3bca7030c" + }, + { + "routeId": "L147", + "platformId": "U874Z3", + "id": "fe554dd4-6904-4e32-b24e-1fe36a3db6d4" + }, + { + "routeId": "L107", + "platformId": "U874Z4", + "id": "ecb2489c-7dfe-4313-914c-af6091656286" + }, + { + "routeId": "L909", + "platformId": "U874Z4", + "id": "48a6df92-80fd-4111-8641-041bd254f768" + }, + { + "routeId": "L225", + "platformId": "U875Z1", + "id": "0d69e5db-5f1f-4771-b656-f9f59649d346" + }, + { + "routeId": "L904", + "platformId": "U875Z1", + "id": "b42785ba-c99b-40f1-98d3-a5dc98d9d214" + }, + { + "routeId": "L142", + "platformId": "U875Z2", + "id": "04d24f89-9f40-4d55-82ff-338989605877" + }, + { + "routeId": "L184", + "platformId": "U875Z2", + "id": "8082a264-5af3-48d9-9321-ecc67a5ff04c" + }, + { + "routeId": "L904", + "platformId": "U875Z2", + "id": "39064eef-bfb2-4cf0-a4e8-8bdef00511e2" + }, + { + "routeId": "L142", + "platformId": "U875Z3", + "id": "3d2cf081-de8a-4b42-b093-bcc6dd6ba2d5" + }, + { + "routeId": "L184", + "platformId": "U875Z3", + "id": "d847627b-67c0-44d3-a549-edeb8f702d24" + }, + { + "routeId": "L225", + "platformId": "U875Z3", + "id": "1bfb6969-37fa-479d-90e5-21b4a9c7019c" + }, + { + "routeId": "L904", + "platformId": "U875Z3", + "id": "736a7074-3478-4b23-aceb-4c9c8eb051dc" + }, + { + "routeId": "L7", + "platformId": "U876Z1", + "id": "6da2df80-f40f-44c0-ae80-2e17f874e921" + }, + { + "routeId": "L14", + "platformId": "U876Z1", + "id": "c3a5d294-6f53-40d4-b47c-9e03c433577a" + }, + { + "routeId": "L18", + "platformId": "U876Z1", + "id": "a487a209-281a-48a6-ae88-93af0886533c" + }, + { + "routeId": "L93", + "platformId": "U876Z1", + "id": "a77eeaf0-3206-43fd-8c4f-6252ba062ad1" + }, + { + "routeId": "L95", + "platformId": "U876Z1", + "id": "bc121386-8946-4772-916e-6ad96756a003" + }, + { + "routeId": "L14", + "platformId": "U876Z2", + "id": "51f54612-f3e5-4ff6-b0be-28066cc34de4" + }, + { + "routeId": "L18", + "platformId": "U876Z2", + "id": "6813fcad-1693-43f1-adf5-f9eb11943ba3" + }, + { + "routeId": "L93", + "platformId": "U876Z2", + "id": "4e58e94d-5627-4392-8fbc-74972032d3a3" + }, + { + "routeId": "L95", + "platformId": "U876Z2", + "id": "32fa908f-0a20-497a-ac6c-1967215e5b47" + }, + { + "routeId": "L7", + "platformId": "U876Z4", + "id": "66014313-e7fc-4189-81be-ac05d9d8af74" + }, + { + "routeId": "L2", + "platformId": "U878Z1", + "id": "0e1640c5-4ed0-4d1d-a17f-5240a46ce40b" + }, + { + "routeId": "L3", + "platformId": "U878Z1", + "id": "c8c905ec-ccb3-4535-b096-15bd530adc0d" + }, + { + "routeId": "L7", + "platformId": "U878Z1", + "id": "c1e771e0-c801-429a-b59a-9d7cae03d473" + }, + { + "routeId": "L17", + "platformId": "U878Z1", + "id": "74999504-c640-46dd-bcc9-846adcce93df" + }, + { + "routeId": "L27", + "platformId": "U878Z1", + "id": "55202980-2ace-49d7-9ed6-6ea5a9ae4bb3" + }, + { + "routeId": "L92", + "platformId": "U878Z1", + "id": "3fd7324f-f887-4b78-b374-ac3c5dc12f21" + }, + { + "routeId": "L1805", + "platformId": "U878Z11", + "id": "993f1189-e846-41f4-9c1d-d832aa0ef6bb" + }, + { + "routeId": "L2", + "platformId": "U878Z2", + "id": "a51103d0-d235-49d1-b30a-8b204b6708ec" + }, + { + "routeId": "L3", + "platformId": "U878Z2", + "id": "5e392283-5d3e-452c-b352-5f33113c691b" + }, + { + "routeId": "L7", + "platformId": "U878Z2", + "id": "3825e7b6-c3c9-424f-ab17-0328dab4e1a3" + }, + { + "routeId": "L17", + "platformId": "U878Z2", + "id": "a88bdaf4-28d4-4a8b-8d08-4f07c92f7ae0" + }, + { + "routeId": "L27", + "platformId": "U878Z2", + "id": "c1fb52fc-c604-4e8f-a9bf-ca274a036467" + }, + { + "routeId": "L92", + "platformId": "U878Z2", + "id": "c5cf2296-aa56-41d4-a38e-371a91f7be35" + }, + { + "routeId": "L106", + "platformId": "U879Z1", + "id": "61d4716f-2807-4d98-8297-fcf58a9a5979" + }, + { + "routeId": "L196", + "platformId": "U879Z1", + "id": "310a4f8c-37e9-409e-af95-60d2ec967bf4" + }, + { + "routeId": "L197", + "platformId": "U879Z1", + "id": "f8e7eed0-493a-43f8-986a-f44abaf40dfb" + }, + { + "routeId": "L901", + "platformId": "U879Z1", + "id": "5a96e241-7996-49cb-a07a-d7b4cac8ef09" + }, + { + "routeId": "L106", + "platformId": "U879Z2", + "id": "a53f28f2-3279-485f-ac68-cdd461b12b72" + }, + { + "routeId": "L196", + "platformId": "U879Z2", + "id": "8546ec47-9418-4d7f-beaa-346eb7253014" + }, + { + "routeId": "L197", + "platformId": "U879Z2", + "id": "1df73684-c929-4281-a254-64988ddba897" + }, + { + "routeId": "L901", + "platformId": "U879Z2", + "id": "307d3d5f-6f9b-4197-a065-d7dd792db028" + }, + { + "routeId": "L6", + "platformId": "U87Z1", + "id": "529549d6-36e0-42d4-ab64-4d7543f3c9b2" + }, + { + "routeId": "L8", + "platformId": "U87Z1", + "id": "28eb473b-b0d9-402c-bc1c-540ad5a1e12b" + }, + { + "routeId": "L15", + "platformId": "U87Z1", + "id": "fd5caae1-fd41-4b60-9128-e9734e8d9a62" + }, + { + "routeId": "L26", + "platformId": "U87Z1", + "id": "79867fad-139c-476b-ae3f-611e531a3493" + }, + { + "routeId": "L91", + "platformId": "U87Z1", + "id": "aa77ff18-1bf7-448b-b5bd-5d15b1396774" + }, + { + "routeId": "L96", + "platformId": "U87Z1", + "id": "05ad56f4-c35b-4ad9-affc-72b559beeba0" + }, + { + "routeId": "L207", + "platformId": "U87Z1", + "id": "626a2a43-e6f4-4440-895d-560c2fe6dba6" + }, + { + "routeId": "L905", + "platformId": "U87Z1", + "id": "9b15e04f-39a1-445a-bdfa-9b60f700fd3b" + }, + { + "routeId": "L907", + "platformId": "U87Z1", + "id": "4d974307-1fdc-4bc1-abd1-5d3d1fa21a28" + }, + { + "routeId": "L909", + "platformId": "U87Z1", + "id": "9e1f35e8-fdae-46c9-991c-dbde6c37ccd4" + }, + { + "routeId": "L911", + "platformId": "U87Z1", + "id": "45b0352d-749f-43cb-b2dc-0c966734ec16" + }, + { + "routeId": "L6", + "platformId": "U87Z2", + "id": "6a845085-d73f-45fb-9eaf-ca1b4f6c2d88" + }, + { + "routeId": "L8", + "platformId": "U87Z2", + "id": "179ac725-a7ba-4cca-9077-745fc5b74f92" + }, + { + "routeId": "L15", + "platformId": "U87Z2", + "id": "07cf77d5-0b9a-41b2-824a-1c9b71f32ffc" + }, + { + "routeId": "L26", + "platformId": "U87Z2", + "id": "f4f607fb-4f5e-4869-afac-0964b595640e" + }, + { + "routeId": "L91", + "platformId": "U87Z2", + "id": "8062ee38-118f-4b16-b7c4-d830f1707d0c" + }, + { + "routeId": "L96", + "platformId": "U87Z2", + "id": "e8c09836-5703-4a2f-be56-3163b2d11e31" + }, + { + "routeId": "L207", + "platformId": "U87Z2", + "id": "6dd31170-7906-44db-b930-6879b777fc59" + }, + { + "routeId": "L905", + "platformId": "U87Z2", + "id": "db6c4973-59d1-4922-b771-2bfe14523172" + }, + { + "routeId": "L907", + "platformId": "U87Z2", + "id": "2765d49d-8872-4b80-9346-33d4606d5d14" + }, + { + "routeId": "L909", + "platformId": "U87Z2", + "id": "b753e911-9c87-40e9-a6c8-839cd944e06a" + }, + { + "routeId": "L911", + "platformId": "U87Z2", + "id": "cf4650b5-487e-4dd6-87ab-d3ebaf57da47" + }, + { + "routeId": "L109", + "platformId": "U880Z1", + "id": "f9170bec-c184-4b50-b70a-abf52a4fce30" + }, + { + "routeId": "L109", + "platformId": "U880Z2", + "id": "5ba80ff9-2bc2-4aac-93ea-60410032ca33" + }, + { + "routeId": "L166", + "platformId": "U881Z1", + "id": "b1376639-afbb-43a1-ae9a-7a2eb5995a1c" + }, + { + "routeId": "L348", + "platformId": "U881Z1", + "id": "0824d09b-3cb3-4df4-906e-68050346d894" + }, + { + "routeId": "L166", + "platformId": "U881Z2", + "id": "49eac67d-a3fd-485c-a4bc-4f6a09098389" + }, + { + "routeId": "L348", + "platformId": "U881Z2", + "id": "bd86f3c6-dd51-456c-8aed-342baf4635b3" + }, + { + "routeId": "L139", + "platformId": "U882Z1", + "id": "6101b0de-0068-4525-a374-795974fbc11e" + }, + { + "routeId": "L246", + "platformId": "U882Z1", + "id": "4707286c-8f87-4c9a-84e9-0fbee0cb86cf" + }, + { + "routeId": "L917", + "platformId": "U882Z1", + "id": "2a5e1f1e-a0c9-42f9-a8fe-b85090f8dc9c" + }, + { + "routeId": "L139", + "platformId": "U882Z2", + "id": "d0dd0f83-03a0-46c7-ba1e-addb6473f463" + }, + { + "routeId": "L246", + "platformId": "U882Z2", + "id": "ab4a361a-10ca-4446-a76d-62fb7c425477" + }, + { + "routeId": "L917", + "platformId": "U882Z2", + "id": "829c39d3-a546-4538-89fe-7dd494664b99" + }, + { + "routeId": "L209", + "platformId": "U883Z1", + "id": "9c272f98-822f-49b4-a353-7edc64c93985" + }, + { + "routeId": "L209", + "platformId": "U883Z2", + "id": "94e37853-836e-470a-be0e-b53dccc2a8ea" + }, + { + "routeId": "L109", + "platformId": "U884Z1", + "id": "b2758e91-c229-4fef-aee8-9d992d4d9a80" + }, + { + "routeId": "L109", + "platformId": "U884Z2", + "id": "e9135b90-b6a4-49ef-a9c9-3502d7fdd13a" + }, + { + "routeId": "L181", + "platformId": "U884Z2", + "id": "dfb0ae99-97d6-47a4-bd27-1b3881e4e6b4" + }, + { + "routeId": "L183", + "platformId": "U884Z2", + "id": "b9092cd3-aafb-4645-9f03-adb1f042cd1f" + }, + { + "routeId": "L909", + "platformId": "U884Z2", + "id": "f7042254-bcdf-4c15-a889-965f0bda95c5" + }, + { + "routeId": "L171", + "platformId": "U884Z2", + "id": "c8bbd43e-01f0-47b2-bc67-dc2e72eddcd3" + }, + { + "routeId": "L181", + "platformId": "U884Z3", + "id": "740463f1-f690-4f4f-8d43-66054751f4fe" + }, + { + "routeId": "L909", + "platformId": "U884Z3", + "id": "fc5c35d7-669a-4615-bfbb-3cb91242e70d" + }, + { + "routeId": "L171", + "platformId": "U884Z3", + "id": "12e68212-486d-4897-9ceb-81e781c5787d" + }, + { + "routeId": "L120", + "platformId": "U885Z1", + "id": "fb17e85b-0339-4a5b-acce-b25dad48e3f8" + }, + { + "routeId": "L951", + "platformId": "U885Z1", + "id": "99172e53-e886-4468-b60b-81227573276c" + }, + { + "routeId": "L120", + "platformId": "U885Z2", + "id": "d121ec2d-c65a-495d-b07d-8709e32f9c9d" + }, + { + "routeId": "L951", + "platformId": "U885Z2", + "id": "de816598-acc3-4a7b-805b-1f31edd87bdf" + }, + { + "routeId": "L101", + "platformId": "U886Z1", + "id": "e1fb5604-7c60-48db-9cbd-d3de06ac6bb4" + }, + { + "routeId": "L188", + "platformId": "U886Z1", + "id": "9ffb17a5-8603-4822-a4e7-1ac3e6bbc188" + }, + { + "routeId": "L101", + "platformId": "U886Z2", + "id": "4231c739-3e36-43db-828b-f88bfdfb4139" + }, + { + "routeId": "L188", + "platformId": "U886Z2", + "id": "87864cd2-ce1b-420a-b496-567fe54bd875" + }, + { + "routeId": "L101", + "platformId": "U887Z1", + "id": "9a968758-dc6b-4067-b74c-a4f5cfd8223e" + }, + { + "routeId": "L138", + "platformId": "U887Z1", + "id": "a49db360-a35a-44b2-8427-aeec2ab965df" + }, + { + "routeId": "L101", + "platformId": "U887Z2", + "id": "8a03c03e-d762-4a75-9a44-fa6a8570b339" + }, + { + "routeId": "L138", + "platformId": "U887Z2", + "id": "3e932724-2f83-49cc-a8e2-fb83fcc66e26" + }, + { + "routeId": "L246", + "platformId": "U888Z1", + "id": "4a9d71d7-af3f-47df-ac48-b8ea6726b94c" + }, + { + "routeId": "L246", + "platformId": "U888Z2", + "id": "aa0bebbb-5797-485e-8d72-4bc1825e687d" + }, + { + "routeId": "L22", + "platformId": "U889Z1", + "id": "04e9d679-8e8a-4499-a2a4-e678ff38d1b2" + }, + { + "routeId": "L26", + "platformId": "U889Z1", + "id": "3b43e502-f739-4ff8-b660-398ab5ab4bf7" + }, + { + "routeId": "L97", + "platformId": "U889Z1", + "id": "72d3e2eb-047e-4cd9-b72d-72243a80c69b" + }, + { + "routeId": "L99", + "platformId": "U889Z1", + "id": "bff25a9d-8291-43dd-83bb-e76b91c4c10a" + }, + { + "routeId": "L101", + "platformId": "U889Z1", + "id": "b26f3538-2cba-48b8-8cbd-be46dd227e64" + }, + { + "routeId": "L138", + "platformId": "U889Z1", + "id": "a7efae84-2855-4174-8179-938fe037b112" + }, + { + "routeId": "L154", + "platformId": "U889Z1", + "id": "92f248a3-36df-4eaf-9411-a2b15f7b3c3c" + }, + { + "routeId": "L175", + "platformId": "U889Z1", + "id": "2c10b768-217c-434e-8468-549f947317ba" + }, + { + "routeId": "L177", + "platformId": "U889Z1", + "id": "a223df92-509c-4424-b08d-634f082df677" + }, + { + "routeId": "L188", + "platformId": "U889Z1", + "id": "24bb8afe-6810-4366-affa-9d1fb093b1f9" + }, + { + "routeId": "L195", + "platformId": "U889Z1", + "id": "024b0f6b-a18f-466d-b1f3-035ebbcbd4d3" + }, + { + "routeId": "L901", + "platformId": "U889Z1", + "id": "6e85fd05-4e28-40a2-8f15-86f08ee41972" + }, + { + "routeId": "L906", + "platformId": "U889Z1", + "id": "f0cfbed0-0849-4674-9af0-6354affaf94c" + }, + { + "routeId": "L22", + "platformId": "U889Z2", + "id": "c38c0f47-ef18-4a3e-a550-4b8fe0265d90" + }, + { + "routeId": "L26", + "platformId": "U889Z2", + "id": "8660430d-d9b0-4887-94f5-bba64dbe49c8" + }, + { + "routeId": "L97", + "platformId": "U889Z2", + "id": "6e0c0149-2be9-410d-ad6d-604875d676cd" + }, + { + "routeId": "L99", + "platformId": "U889Z2", + "id": "4501ee33-8110-4454-ad70-15e8fae40284" + }, + { + "routeId": "L101", + "platformId": "U889Z3", + "id": "49aced48-3b50-44cd-9a01-3a3cccf7efd7" + }, + { + "routeId": "L138", + "platformId": "U889Z3", + "id": "202dfe9d-b3e1-4776-b60c-825176b1199d" + }, + { + "routeId": "L154", + "platformId": "U889Z3", + "id": "c43e9a2a-e03a-49c7-9efc-4d7d7ffc6488" + }, + { + "routeId": "L175", + "platformId": "U889Z3", + "id": "c0a66246-8b0e-414e-a43b-dbd7fb4c51bd" + }, + { + "routeId": "L177", + "platformId": "U889Z3", + "id": "dd525a0b-838a-4556-82b8-10bbbf8ded55" + }, + { + "routeId": "L188", + "platformId": "U889Z3", + "id": "2bd5e840-fa90-4d78-9352-1d1d0bc8a8ec" + }, + { + "routeId": "L195", + "platformId": "U889Z3", + "id": "86380092-0670-4f5b-9eb5-e5c83dbc308b" + }, + { + "routeId": "L901", + "platformId": "U889Z3", + "id": "936a58d3-7208-4993-90f5-ab6d54cc721f" + }, + { + "routeId": "L906", + "platformId": "U889Z3", + "id": "2e18ec05-5b3d-4576-8213-3e353dab8570" + }, + { + "routeId": "L134", + "platformId": "U88Z1", + "id": "53f791dd-f9bb-480f-9ed6-4b950af2af40" + }, + { + "routeId": "L134", + "platformId": "U88Z2", + "id": "83398a6d-4e01-4fdd-9645-a03cd55f4b9b" + }, + { + "routeId": "L188", + "platformId": "U890Z1", + "id": "dd3903c9-19a4-49c6-9be7-13ccfa74a5f7" + }, + { + "routeId": "L195", + "platformId": "U890Z1", + "id": "117fcfeb-af6e-4f10-b4d8-a3df4289eee3" + }, + { + "routeId": "L101", + "platformId": "U890Z2", + "id": "62c5f0cd-b6b7-41a7-8587-a131fcd63787" + }, + { + "routeId": "L138", + "platformId": "U890Z2", + "id": "b59f3a05-9fcf-4755-a674-071857b9dcd2" + }, + { + "routeId": "L154", + "platformId": "U890Z2", + "id": "e5caa2f2-ebcb-452d-8be8-6fc3f0c6807a" + }, + { + "routeId": "L901", + "platformId": "U890Z2", + "id": "9baa1c94-3d50-4172-856b-00d3e8131030" + }, + { + "routeId": "L906", + "platformId": "U890Z2", + "id": "594324f9-0e45-40a1-aea3-c14f41c74b0c" + }, + { + "routeId": "L101", + "platformId": "U890Z3", + "id": "311ef438-f423-4ae7-88e8-31d65178d5d6" + }, + { + "routeId": "L138", + "platformId": "U890Z3", + "id": "18d420b5-5c13-4193-a392-4975b52d044b" + }, + { + "routeId": "L154", + "platformId": "U890Z3", + "id": "fe3ff14c-64f8-41ea-8e35-d544b31c6d04" + }, + { + "routeId": "L188", + "platformId": "U890Z3", + "id": "574238f8-c1a7-4c21-ad58-2c1596e974f1" + }, + { + "routeId": "L195", + "platformId": "U890Z3", + "id": "0397365f-2df9-4573-b623-5bf13b6600bc" + }, + { + "routeId": "L901", + "platformId": "U890Z3", + "id": "9b94a2ce-aa3d-4f60-a9c9-d4cc92e8a6c5" + }, + { + "routeId": "L906", + "platformId": "U890Z3", + "id": "434d82b5-2380-4e63-9ec5-a4dc00200c21" + }, + { + "routeId": "L244", + "platformId": "U891Z1", + "id": "565ff7c7-e025-408c-a037-ec238c876315" + }, + { + "routeId": "L244", + "platformId": "U891Z2", + "id": "c4991e92-6595-4639-b54c-fed89b39f666" + }, + { + "routeId": "L130", + "platformId": "U892Z1", + "id": "c3703260-10a8-4173-b289-ba94247cd57d" + }, + { + "routeId": "L246", + "platformId": "U892Z1", + "id": "0420364c-e91e-4393-b9a4-960ba700d6c1" + }, + { + "routeId": "L130", + "platformId": "U892Z2", + "id": "21616bf2-cd3a-4d33-9948-8f18967e9adb" + }, + { + "routeId": "L246", + "platformId": "U892Z2", + "id": "71bd647d-1dd5-4b3e-a738-d7acac26b6a7" + }, + { + "routeId": "L106", + "platformId": "U893Z1", + "id": "035bea1b-54cd-4bf7-9842-d54e050e8ee8" + }, + { + "routeId": "L139", + "platformId": "U893Z1", + "id": "84d427fe-ac2b-4e7a-932d-260e2346bd77" + }, + { + "routeId": "L150", + "platformId": "U893Z1", + "id": "36c42f39-3503-4d35-8d3d-d5ada5847de4" + }, + { + "routeId": "L196", + "platformId": "U893Z1", + "id": "a4595f68-81ae-4c36-bbef-3957b170354f" + }, + { + "routeId": "L901", + "platformId": "U893Z1", + "id": "c25bbc7f-6750-42f3-9304-322fadb2e6cc" + }, + { + "routeId": "L910", + "platformId": "U893Z1", + "id": "3c559c6d-3fa4-42cc-8e97-f63af0c0557d" + }, + { + "routeId": "L913", + "platformId": "U893Z1", + "id": "d2953650-d5b8-4eff-83f0-94d7d560f697" + }, + { + "routeId": "L117", + "platformId": "U893Z1", + "id": "1e4bcee3-56e0-4714-80b4-43a2188b03b6" + }, + { + "routeId": "L106", + "platformId": "U893Z2", + "id": "eda3dc77-187d-4ffd-8bf9-15e90319e77c" + }, + { + "routeId": "L121", + "platformId": "U893Z2", + "id": "a22d1196-c07a-4c08-8983-9c0dee616560" + }, + { + "routeId": "L139", + "platformId": "U893Z2", + "id": "d52652bb-dfc1-45fd-8f40-f052dc0adac6" + }, + { + "routeId": "L150", + "platformId": "U893Z2", + "id": "e9deb51c-523c-4246-afd8-36cd78218d64" + }, + { + "routeId": "L196", + "platformId": "U893Z2", + "id": "fbb0aa7e-50b9-4ddb-929b-718c72982939" + }, + { + "routeId": "L901", + "platformId": "U893Z2", + "id": "2bc24971-1484-40e2-b882-348553db1de7" + }, + { + "routeId": "L904", + "platformId": "U893Z2", + "id": "0e0d3231-011d-4a68-a3da-b53376b2c0da" + }, + { + "routeId": "L910", + "platformId": "U893Z2", + "id": "54347141-3199-4a49-bb65-2dbe8e532c2b" + }, + { + "routeId": "L913", + "platformId": "U893Z2", + "id": "fb09468c-9690-4dd0-8acb-d2438675dc0a" + }, + { + "routeId": "L117", + "platformId": "U893Z2", + "id": "44938c41-b712-428e-8523-4d42bbaa0e8e" + }, + { + "routeId": "L113", + "platformId": "U893Z3", + "id": "a856c637-1ec7-4247-ae73-ca0197d73c0f" + }, + { + "routeId": "L215", + "platformId": "U893Z3", + "id": "848791e5-e1d8-4c06-9d13-125442f3491c" + }, + { + "routeId": "L189", + "platformId": "U893Z3", + "id": "6383b08a-5340-4e95-a546-a8064f17a5b5" + }, + { + "routeId": "L904", + "platformId": "U893Z3", + "id": "d5fa0fdd-86f3-4264-be9b-d6bd35831066" + }, + { + "routeId": "L333", + "platformId": "U893Z3", + "id": "140fb15d-28f7-4218-bb31-317ed002f048" + }, + { + "routeId": "L960", + "platformId": "U893Z3", + "id": "fda4186c-11fc-4522-9467-032a7f144424" + }, + { + "routeId": "L113", + "platformId": "U893Z4", + "id": "b5a6f938-6e9c-442d-93c9-83cf4beb343a" + }, + { + "routeId": "L189", + "platformId": "U893Z4", + "id": "1a0afe69-b2f4-48d1-8d2d-93fc7cbee83d" + }, + { + "routeId": "L215", + "platformId": "U893Z4", + "id": "61649db4-d23f-4eef-9db2-008b11d0e126" + }, + { + "routeId": "L333", + "platformId": "U893Z4", + "id": "9a4fb0d8-1e19-4254-8609-b55a7d506545" + }, + { + "routeId": "L960", + "platformId": "U893Z4", + "id": "eeade9c9-91fc-4cad-8a27-fec78ee65d21" + }, + { + "routeId": "L121", + "platformId": "U893Z5", + "id": "f356b2dc-b4a3-463c-bb52-6cc4ae603f71" + }, + { + "routeId": "L121", + "platformId": "U893Z6", + "id": "fae87d66-7d4a-4c44-81c7-0781cbcca58e" + }, + { + "routeId": "L197", + "platformId": "U894Z1", + "id": "6d6f5e4d-9b04-4490-b48e-e74b39f3025d" + }, + { + "routeId": "L197", + "platformId": "U894Z2", + "id": "943a79c8-83b4-4633-ae21-074d3e1b4322" + }, + { + "routeId": "L106", + "platformId": "U895Z1", + "id": "f8284cb7-bb5f-4f2e-8d6c-ec314c590ba7" + }, + { + "routeId": "L106", + "platformId": "U895Z2", + "id": "855f1883-15a4-4959-a7ca-4a4bbcb48020" + }, + { + "routeId": "L139", + "platformId": "U896Z1", + "id": "6ccdb2c5-5d7b-4ab4-9044-b0627f6b50bf" + }, + { + "routeId": "L246", + "platformId": "U896Z1", + "id": "e0dab774-15de-4b83-876f-a63984eeb5d1" + }, + { + "routeId": "L917", + "platformId": "U896Z1", + "id": "852e10dd-03fb-4aff-87c5-a5cde64cf0c4" + }, + { + "routeId": "L139", + "platformId": "U896Z2", + "id": "a33d998a-74bd-41e4-a1a6-0e0a44096d73" + }, + { + "routeId": "L246", + "platformId": "U896Z2", + "id": "d9e10f08-2c83-4348-af29-b1f3a9eff9cd" + }, + { + "routeId": "L917", + "platformId": "U896Z2", + "id": "74272ca7-311a-480f-b167-dfdce60f7b79" + }, + { + "routeId": "L250", + "platformId": "U897Z1", + "id": "91757d48-d6a9-4eca-8fdb-7a30574065fc" + }, + { + "routeId": "L141", + "platformId": "U897Z1", + "id": "93d551a5-96bd-4b39-9f35-030206a85ad5" + }, + { + "routeId": "L181", + "platformId": "U897Z1", + "id": "b2e1d045-2335-4158-9379-5e02c6edf401" + }, + { + "routeId": "L201", + "platformId": "U897Z1", + "id": "4da5a3be-bd36-47da-be39-20c3c1350b51" + }, + { + "routeId": "L171", + "platformId": "U897Z1", + "id": "436c371d-1d3c-4915-bd16-7ca5e7ae5679" + }, + { + "routeId": "L220", + "platformId": "U897Z1", + "id": "587d17ab-afc7-4401-9350-17f37ca923c1" + }, + { + "routeId": "L221", + "platformId": "U897Z1", + "id": "a0a37d17-52a8-4481-a284-d844ccde24cd" + }, + { + "routeId": "L223", + "platformId": "U897Z1", + "id": "78ce8ea7-5be2-45b3-bc6a-69cc8e3aff4c" + }, + { + "routeId": "L240", + "platformId": "U897Z1", + "id": "65f698f4-e793-42ca-8533-9d9564ebf51f" + }, + { + "routeId": "L344", + "platformId": "U897Z1", + "id": "4e57b5f3-946e-4330-857a-61a14c7262ad" + }, + { + "routeId": "L353", + "platformId": "U897Z1", + "id": "0c424dea-db1b-4279-97cb-8c87c4a8f074" + }, + { + "routeId": "L303", + "platformId": "U897Z1", + "id": "6eb7de69-6cfa-48c2-8a13-81c7292fc0b2" + }, + { + "routeId": "L354", + "platformId": "U897Z1", + "id": "f2449ebe-371c-46c0-961f-2d3375933b56" + }, + { + "routeId": "L398", + "platformId": "U897Z1", + "id": "63f2a693-5ed3-4a53-b7bd-65988c4dea41" + }, + { + "routeId": "L912", + "platformId": "U897Z10", + "id": "267cb643-53b7-4a55-8129-c7a547739203" + }, + { + "routeId": "L224", + "platformId": "U897Z10", + "id": "872bd5e5-5018-4aa5-94c7-f75dfa6ae15e" + }, + { + "routeId": "L992", + "platformId": "U897Z101", + "id": "02becb32-4e1f-4e53-bd02-419c1e863f1c" + }, + { + "routeId": "L992", + "platformId": "U897Z102", + "id": "60ff4474-3374-4e91-85ba-409c0d3107f3" + }, + { + "routeId": "L250", + "platformId": "U897Z11", + "id": "b66cb097-c5d7-47b9-8c25-07e7a1ad59a5" + }, + { + "routeId": "L141", + "platformId": "U897Z11", + "id": "d8b79635-26f8-4f8c-9630-d7338c0f9783" + }, + { + "routeId": "L912", + "platformId": "U897Z11", + "id": "5fc2cd3e-31e5-4e74-a17d-b7c435655763" + }, + { + "routeId": "L171", + "platformId": "U897Z11", + "id": "7b5c3b47-0eaa-426d-8157-b7877f24c06d" + }, + { + "routeId": "L220", + "platformId": "U897Z11", + "id": "74bd1124-73f1-4fc3-86f7-affd779b3bdc" + }, + { + "routeId": "L221", + "platformId": "U897Z11", + "id": "43e14189-497a-4add-af55-434f81a2e0d9" + }, + { + "routeId": "L223", + "platformId": "U897Z11", + "id": "ed8e623f-f9e5-420e-90b9-5e9f66ea5a30" + }, + { + "routeId": "L240", + "platformId": "U897Z11", + "id": "225ff4a4-fd87-495b-90f5-8fb5c2b3b579" + }, + { + "routeId": "L344", + "platformId": "U897Z11", + "id": "7fbacc40-e31a-4b9a-be13-2918c8c3cd30" + }, + { + "routeId": "L353", + "platformId": "U897Z11", + "id": "aa423ee1-f845-4255-99bc-658202f7da55" + }, + { + "routeId": "L303", + "platformId": "U897Z11", + "id": "bfcb910a-e4ac-4f7a-8caa-850a2920883c" + }, + { + "routeId": "L354", + "platformId": "U897Z11", + "id": "6c07d5cd-4b59-4923-a79f-7887ef8fc356" + }, + { + "routeId": "L141", + "platformId": "U897Z2", + "id": "50eec4a8-9215-464d-8bee-5cafb31c5851" + }, + { + "routeId": "L171", + "platformId": "U897Z2", + "id": "7ca92c54-20c7-40de-bcfb-471b14fbbdb9" + }, + { + "routeId": "L223", + "platformId": "U897Z2", + "id": "f423dcc7-3622-4456-88f8-c734723b214b" + }, + { + "routeId": "L315", + "platformId": "U897Z21", + "id": "9acf920f-0354-42e5-986f-7398fc12fac1" + }, + { + "routeId": "L345", + "platformId": "U897Z21", + "id": "814f852f-fa64-446b-922f-ac07f35892d8" + }, + { + "routeId": "L412", + "platformId": "U897Z21", + "id": "07ac022c-5c2a-4499-ba23-feae4790bdbe" + }, + { + "routeId": "L367", + "platformId": "U897Z21", + "id": "04cea185-1d56-48e6-9cce-a229338f8219" + }, + { + "routeId": "L403", + "platformId": "U897Z21", + "id": "54fd3211-0e85-49aa-bb7a-9f658fd0b309" + }, + { + "routeId": "L700", + "platformId": "U897Z21", + "id": "7eda77c0-3266-462e-b33b-7a06983ca826" + }, + { + "routeId": "L730", + "platformId": "U897Z21", + "id": "95481cd7-b5f1-4753-a7ff-56a41ce89960" + }, + { + "routeId": "L720", + "platformId": "U897Z21", + "id": "be5e527e-8741-49a3-81a3-fd4a223c175a" + }, + { + "routeId": "L250", + "platformId": "U897Z3", + "id": "052acb7b-101f-4123-836e-284b9674ad13" + }, + { + "routeId": "L221", + "platformId": "U897Z3", + "id": "f41fae5e-85fd-4f5f-adf7-82b3f2530a19" + }, + { + "routeId": "L240", + "platformId": "U897Z3", + "id": "82b36787-be4a-41bb-b163-04620e17c450" + }, + { + "routeId": "L367", + "platformId": "U897Z31", + "id": "2aec70cc-196b-43c5-9c3d-6045ed302b57" + }, + { + "routeId": "L220", + "platformId": "U897Z4", + "id": "eeb8e151-e3e4-4a7f-8f39-1481e825ef12" + }, + { + "routeId": "L223", + "platformId": "U897Z4", + "id": "0d3555fd-3eb1-4871-a0aa-32241d6fcef5" + }, + { + "routeId": "L141", + "platformId": "U897Z5", + "id": "2e26f6d2-9c9b-4d6f-be95-bdf4096edd6e" + }, + { + "routeId": "L171", + "platformId": "U897Z5", + "id": "168d69f9-35dd-4315-9b3e-36af92f27c6e" + }, + { + "routeId": "L344", + "platformId": "U897Z5", + "id": "a8d944d5-779a-467f-84a0-1949da924441" + }, + { + "routeId": "L303", + "platformId": "U897Z5", + "id": "b4f95d28-2b05-428f-af7d-31049fb98cfb" + }, + { + "routeId": "L353", + "platformId": "U897Z5", + "id": "d4c98f90-7f34-4eb9-9a20-0a973381d9a1" + }, + { + "routeId": "L354", + "platformId": "U897Z5", + "id": "03a58f8b-0b08-47fe-9e33-f7af24dc091a" + }, + { + "routeId": "L398", + "platformId": "U897Z6", + "id": "395c0d46-fa52-4dad-ae63-3dc3f607f150" + }, + { + "routeId": "L345", + "platformId": "U897Z63", + "id": "d1369a9c-e402-4ffc-99a8-d1bb0bcf9b19" + }, + { + "routeId": "L412", + "platformId": "U897Z63", + "id": "addae80c-c059-461b-81b3-d5257badc961" + }, + { + "routeId": "L700", + "platformId": "U897Z63", + "id": "441db0dd-46d6-4b60-8a0d-9f87cd7600e6" + }, + { + "routeId": "L730", + "platformId": "U897Z63", + "id": "275683d3-f9e1-466b-930b-25868eb256ce" + }, + { + "routeId": "L720", + "platformId": "U897Z63", + "id": "0ca0c00a-6006-45ea-8888-4e2933cfbb74" + }, + { + "routeId": "L315", + "platformId": "U897Z65", + "id": "7a23c931-a9bc-48ff-aa56-bacc7dc6d2b4" + }, + { + "routeId": "L403", + "platformId": "U897Z65", + "id": "cc58bcd6-295d-49ce-8445-84f8e8faff27" + }, + { + "routeId": "L141", + "platformId": "U897Z7", + "id": "a003fcb0-db91-444d-82ef-28721941a2d8" + }, + { + "routeId": "L181", + "platformId": "U897Z7", + "id": "a9a2722b-6f43-4b19-a5a3-086a3a351e9f" + }, + { + "routeId": "L201", + "platformId": "U897Z7", + "id": "91aba40c-cde4-43fc-ab88-b4f165d8576d" + }, + { + "routeId": "L171", + "platformId": "U897Z7", + "id": "8598ac23-d3a9-40d8-a851-ec5acc7d3a9d" + }, + { + "routeId": "L223", + "platformId": "U897Z7", + "id": "e7cc758a-10f1-4233-8b34-e52f1084eb4c" + }, + { + "routeId": "L224", + "platformId": "U897Z7", + "id": "89cd49bd-520d-43fc-9aaf-60af7ab02e85" + }, + { + "routeId": "L367", + "platformId": "U897Z9", + "id": "017204d4-9034-4ed6-aa80-d082ef659e93" + }, + { + "routeId": "L145", + "platformId": "U898Z1", + "id": "e55c7276-8379-4489-a75e-29eac1f456d2" + }, + { + "routeId": "L145", + "platformId": "U898Z2", + "id": "4e9ddc36-7e9c-439d-b5c1-8b09821f329f" + }, + { + "routeId": "L158", + "platformId": "U899Z3", + "id": "13fc9f85-0ad6-4a72-a42d-125c44ece07c" + }, + { + "routeId": "L195", + "platformId": "U899Z3", + "id": "68108fd9-9db9-489f-8354-1ac08afe4d4e" + }, + { + "routeId": "L201", + "platformId": "U899Z3", + "id": "ee6709d2-dd14-443b-ba00-a86c15489444" + }, + { + "routeId": "L158", + "platformId": "U899Z4", + "id": "f9df38c6-1765-4e9f-bb90-d655a84f3529" + }, + { + "routeId": "L195", + "platformId": "U899Z4", + "id": "31449d65-51dc-42c3-b888-9bcc5683cd7e" + }, + { + "routeId": "L201", + "platformId": "U899Z4", + "id": "27c12b92-2f4f-4dc2-8e14-e891642b047c" + }, + { + "routeId": "L136", + "platformId": "U89Z1", + "id": "0d9b9fdd-c6f7-428d-92a6-03653969bbb8" + }, + { + "routeId": "L201", + "platformId": "U89Z1", + "id": "70c25e17-1b5a-45b4-ba2c-ece1210c08df" + }, + { + "routeId": "L911", + "platformId": "U89Z1", + "id": "850bb856-5bb4-4512-b54f-6bc0dd05e0d4" + }, + { + "routeId": "L110", + "platformId": "U89Z1", + "id": "e55364e3-5e95-4dd7-8bbf-cf02b5a5f6af" + }, + { + "routeId": "L351", + "platformId": "U89Z1", + "id": "429ba15b-950b-40fe-b5c4-122264469b3d" + }, + { + "routeId": "L377", + "platformId": "U89Z1", + "id": "ab26311a-a485-42f6-82dd-a0938e6038b7" + }, + { + "routeId": "L58", + "platformId": "U89Z1", + "id": "fa6a95ce-db7e-44d5-8992-272e7f2cf7f7" + }, + { + "routeId": "L136", + "platformId": "U89Z2", + "id": "169ed11f-cda7-4390-a121-12b286be5a22" + }, + { + "routeId": "L201", + "platformId": "U89Z2", + "id": "df245ed1-7ce9-4aac-8e4d-05f46bafb2b7" + }, + { + "routeId": "L911", + "platformId": "U89Z2", + "id": "11aa9342-7c67-4ef4-b205-0b4d89783bdb" + }, + { + "routeId": "L110", + "platformId": "U89Z2", + "id": "d20306b0-7632-4f7b-8e25-50d0ab80e2f6" + }, + { + "routeId": "L351", + "platformId": "U89Z2", + "id": "0545fb67-67e9-423a-8dc4-af333fed0f60" + }, + { + "routeId": "L377", + "platformId": "U89Z2", + "id": "3667c369-5751-40a9-a591-9157056c8603" + }, + { + "routeId": "L58", + "platformId": "U89Z2", + "id": "b98a2c96-a55c-431d-ade1-7548c513c8ff" + }, + { + "routeId": "L421", + "platformId": "U9000Z1", + "id": "e7584482-dcb2-4196-a9a3-47f0bfb0a190" + }, + { + "routeId": "L421", + "platformId": "U9000Z2", + "id": "16db0776-cf3f-415b-8fef-479a951aa5a8" + }, + { + "routeId": "L650", + "platformId": "U9004Z1", + "id": "984ff7d3-a819-49ca-a6fc-2a4a94bc4c67" + }, + { + "routeId": "L650", + "platformId": "U9004Z2", + "id": "7b769c4f-c90c-4274-8ab5-10e76a8d911d" + }, + { + "routeId": "L770", + "platformId": "U9005Z1", + "id": "0e15e6db-c736-4b09-8d8e-ee49377bc0f7" + }, + { + "routeId": "L421", + "platformId": "U9005Z1", + "id": "b57297e4-e43c-431f-988f-0506bac1e0fe" + }, + { + "routeId": "L770", + "platformId": "U9005Z2", + "id": "4e4957e5-63c4-4fc8-b3fd-a9c21e6a2cf5" + }, + { + "routeId": "L421", + "platformId": "U9005Z2", + "id": "b983d156-b508-49d5-9384-60fe0b939e00" + }, + { + "routeId": "L384", + "platformId": "U9006Z1", + "id": "871458c0-de91-474f-be5f-61a735cd913b" + }, + { + "routeId": "L384", + "platformId": "U9006Z2", + "id": "9f269570-befa-4081-8dba-f026239077ca" + }, + { + "routeId": "L384", + "platformId": "U9007Z1", + "id": "6ac5d421-8fca-492e-b15f-ddd7bab3cab7" + }, + { + "routeId": "L384", + "platformId": "U9007Z2", + "id": "c169a7d3-bc4e-459f-9ad0-e92f02315e32" + }, + { + "routeId": "L425", + "platformId": "U9008Z1", + "id": "5b1f2513-fe92-4913-bd9c-63ad669ffdbe" + }, + { + "routeId": "L425", + "platformId": "U9008Z2", + "id": "06fea8fd-b9db-4a87-8287-157b196fa686" + }, + { + "routeId": "L425", + "platformId": "U9009Z1", + "id": "1475ecfc-669a-4925-bca1-31dcd11d45b3" + }, + { + "routeId": "L425", + "platformId": "U9009Z2", + "id": "c4afa463-8d62-4d1f-a4c5-fa1ed77f1148" + }, + { + "routeId": "L16", + "platformId": "U900Z1", + "id": "9d5f9ea6-f37d-4e82-85c1-26382413f1e2" + }, + { + "routeId": "L19", + "platformId": "U900Z1", + "id": "8e721528-0fd2-43aa-b81c-268f769f8b0c" + }, + { + "routeId": "L95", + "platformId": "U900Z1", + "id": "32a2a951-0a8d-4edf-beb9-d5369bb28bca" + }, + { + "routeId": "L16", + "platformId": "U900Z2", + "id": "71d0b6ac-e0ad-4653-b54e-7d648ca24983" + }, + { + "routeId": "L19", + "platformId": "U900Z2", + "id": "1e671830-6f39-42d2-8df2-c41d91cc6401" + }, + { + "routeId": "L95", + "platformId": "U900Z2", + "id": "8026c157-10fe-4545-948f-de016cdbb003" + }, + { + "routeId": "L425", + "platformId": "U9010Z1", + "id": "af96fb0b-3e09-4ab1-9d56-b4cd54eba5a3" + }, + { + "routeId": "L631", + "platformId": "U9010Z1", + "id": "e8cf6735-3c88-405d-99c1-f6d75baa5159" + }, + { + "routeId": "L425", + "platformId": "U9010Z2", + "id": "be825abd-5880-4834-8bd7-6f2368d206e7" + }, + { + "routeId": "L631", + "platformId": "U9010Z2", + "id": "be9b127b-aca3-4f98-a7e4-ba7ab0d0100c" + }, + { + "routeId": "L631", + "platformId": "U9012Z1", + "id": "05d96d7d-f02e-48a9-b73d-fe203c7d795f" + }, + { + "routeId": "L631", + "platformId": "U9012Z2", + "id": "d9bc5be2-bd26-4285-b4d0-b9d705fb210e" + }, + { + "routeId": "L631", + "platformId": "U9013Z1", + "id": "7eb34a40-f49c-43c6-b934-22a961429d5d" + }, + { + "routeId": "L631", + "platformId": "U9013Z2", + "id": "ba2b4381-2200-4989-93dc-69064f27fca5" + }, + { + "routeId": "L631", + "platformId": "U9014Z1", + "id": "fd65ec5b-fb6f-4a9c-a390-ac94e91542be" + }, + { + "routeId": "L631", + "platformId": "U9014Z2", + "id": "a286c0cd-50b8-427c-9f61-fe315a47bbbc" + }, + { + "routeId": "L633", + "platformId": "U9015Z1", + "id": "153002c1-28a5-46a3-b02e-169e0b22fc2c" + }, + { + "routeId": "L633", + "platformId": "U9015Z2", + "id": "16622305-0d04-427c-baec-e6f1d0bffd7a" + }, + { + "routeId": "L633", + "platformId": "U9016Z1", + "id": "c2060dc0-cedb-4e68-8fa2-b93037aca147" + }, + { + "routeId": "L633", + "platformId": "U9016Z2", + "id": "a892362d-d954-426c-b0c1-333c4cb84883" + }, + { + "routeId": "L638", + "platformId": "U9017Z1", + "id": "8d33f296-db86-4762-a74e-90842cb41f8c" + }, + { + "routeId": "L637", + "platformId": "U9017Z1", + "id": "364fece8-b605-4073-b91b-cc0d77e570c5" + }, + { + "routeId": "L637", + "platformId": "U9017Z2", + "id": "cf875bdf-689d-46bc-a764-7bc4d9ddfc03" + }, + { + "routeId": "L638", + "platformId": "U9017Z2", + "id": "1fa90411-7dc3-4987-8d41-bff43281f9fa" + }, + { + "routeId": "L5", + "platformId": "U901Z1", + "id": "386f9500-98ac-4770-a0e2-1fd2b729b762" + }, + { + "routeId": "L7", + "platformId": "U901Z1", + "id": "2674ebd7-8d5b-42f5-8e37-650d3201e61b" + }, + { + "routeId": "L9", + "platformId": "U901Z1", + "id": "7eb1dd8d-e374-4876-a6a2-5c1cac544052" + }, + { + "routeId": "L10", + "platformId": "U901Z1", + "id": "e12800b4-fcf5-4f3e-bd04-f3224accc02c" + }, + { + "routeId": "L12", + "platformId": "U901Z1", + "id": "4f295d70-30f3-4842-96c2-49ab275e37b8" + }, + { + "routeId": "L15", + "platformId": "U901Z1", + "id": "03f7aa77-ea95-4cbe-9b36-e5b759b08026" + }, + { + "routeId": "L16", + "platformId": "U901Z1", + "id": "0529487e-8cd6-4918-9275-cd27f88f2be5" + }, + { + "routeId": "L20", + "platformId": "U901Z1", + "id": "dede3486-ba6c-4e11-a0b7-de91d1232f4d" + }, + { + "routeId": "L94", + "platformId": "U901Z1", + "id": "66b0651a-6bf5-46f4-96ef-4a16bfa013dd" + }, + { + "routeId": "L904", + "platformId": "U901Z1", + "id": "407fb741-f14d-4e91-a0d6-917606969fc3" + }, + { + "routeId": "L907", + "platformId": "U901Z1", + "id": "c6d6820b-9fe8-48ee-8cb2-43698f3306e0" + }, + { + "routeId": "L908", + "platformId": "U901Z1", + "id": "96cbe2c6-2669-4a6b-9714-2fea7bcd60dd" + }, + { + "routeId": "L5", + "platformId": "U901Z2", + "id": "ddb1e1e8-1609-40db-8bf7-e40d6b2f466a" + }, + { + "routeId": "L7", + "platformId": "U901Z2", + "id": "94531689-b76f-4646-baf8-4087a5358305" + }, + { + "routeId": "L9", + "platformId": "U901Z2", + "id": "1a497779-6d36-4613-a879-ccf756aa5711" + }, + { + "routeId": "L10", + "platformId": "U901Z2", + "id": "214b75b0-74bb-4bd3-a0a3-bea2dd234157" + }, + { + "routeId": "L12", + "platformId": "U901Z2", + "id": "6bbba91a-588d-4920-874b-b7ed63adf096" + }, + { + "routeId": "L15", + "platformId": "U901Z2", + "id": "bce07a80-876d-4add-8170-2dcab15552fc" + }, + { + "routeId": "L16", + "platformId": "U901Z2", + "id": "50462fd2-fc81-44fc-af3d-1bfd60b004d0" + }, + { + "routeId": "L20", + "platformId": "U901Z2", + "id": "93c34b1b-2a5b-42ef-837b-6234e680801c" + }, + { + "routeId": "L94", + "platformId": "U901Z2", + "id": "9ea5ae91-9f70-4ee2-ac57-4122eb40bda2" + }, + { + "routeId": "L904", + "platformId": "U901Z2", + "id": "c9972e79-e7b4-4084-b252-52cf9b08e4cd" + }, + { + "routeId": "L907", + "platformId": "U901Z2", + "id": "38807fa5-87fe-4f8b-bb3e-6d79633499ef" + }, + { + "routeId": "L908", + "platformId": "U901Z2", + "id": "7152772e-5e39-4c4a-bb8a-59838b89c04d" + }, + { + "routeId": "L820", + "platformId": "U901Z51", + "id": "7a7413bf-231b-4671-b6ab-0977d860993b" + }, + { + "routeId": "L637", + "platformId": "U9020Z1", + "id": "eb1f0ffd-3370-48fc-ac49-d021de07107d" + }, + { + "routeId": "L637", + "platformId": "U9020Z2", + "id": "e02961e6-5be9-4d32-842f-b9fab9fd62ee" + }, + { + "routeId": "L637", + "platformId": "U9023Z1", + "id": "6861bda7-a2be-45ec-896d-538b36bf0b1e" + }, + { + "routeId": "L637", + "platformId": "U9023Z3", + "id": "69a62065-220f-47c5-b3b3-4381dd576e98" + }, + { + "routeId": "L2276", + "platformId": "U9025Z401", + "id": "cbaf17a5-3aa2-4565-8846-7738627d330c" + }, + { + "routeId": "L2276", + "platformId": "U9025Z402", + "id": "974fa9ea-d8c8-47e8-b2ab-828b4013211f" + }, + { + "routeId": "L637", + "platformId": "U9028Z1", + "id": "ab41fa5c-a073-4093-8b83-9cdd1e3dd474" + }, + { + "routeId": "L637", + "platformId": "U9028Z2", + "id": "78782a69-a485-421e-8ff9-6a82275237c8" + }, + { + "routeId": "L2276", + "platformId": "U9028Z401", + "id": "11a53a78-ea82-4f27-a6c3-c8b55b14d4e6" + }, + { + "routeId": "L637", + "platformId": "U9029Z1", + "id": "35159364-bf4d-448d-9910-800f128aa748" + }, + { + "routeId": "L637", + "platformId": "U9029Z2", + "id": "a1a901ed-4cab-4afa-97e5-07b5f1307503" + }, + { + "routeId": "L139", + "platformId": "U902Z1", + "id": "454fe8e2-adcd-445f-bd65-28ffe2e2630d" + }, + { + "routeId": "L246", + "platformId": "U902Z1", + "id": "3234a431-1798-4c9f-9755-c3f5f6d30d00" + }, + { + "routeId": "L917", + "platformId": "U902Z1", + "id": "cca5ba9f-5d6a-49ba-9dc9-8af2930edfba" + }, + { + "routeId": "L314", + "platformId": "U902Z1", + "id": "9372048f-dc40-4e6c-8570-e599f3b79904" + }, + { + "routeId": "L360", + "platformId": "U902Z1", + "id": "f827f580-ab5b-454c-8d78-4579fcd93c2e" + }, + { + "routeId": "L361", + "platformId": "U902Z1", + "id": "3647dca3-2512-41f0-bb01-580e02b80ede" + }, + { + "routeId": "L390", + "platformId": "U902Z1", + "id": "37048aa6-2495-4979-9174-a99dfa5f0b92" + }, + { + "routeId": "L139", + "platformId": "U902Z2", + "id": "fd1920dd-b62a-4417-9297-0ea46caf71fa" + }, + { + "routeId": "L917", + "platformId": "U902Z2", + "id": "b81757bf-95c0-488a-9e5b-8bd5bb20e4d3" + }, + { + "routeId": "L241", + "platformId": "U902Z3", + "id": "f5fd877a-b310-424f-8fa7-a6dd0b290af9" + }, + { + "routeId": "L129", + "platformId": "U902Z3", + "id": "08f550b4-3d9f-4002-9ff4-51079495b79a" + }, + { + "routeId": "L247", + "platformId": "U902Z3", + "id": "24e11d6d-8061-4677-b429-85c79981b2cc" + }, + { + "routeId": "L907", + "platformId": "U902Z3", + "id": "59553b1e-10c7-4c22-80ed-9499649cc560" + }, + { + "routeId": "L318", + "platformId": "U902Z3", + "id": "1c009cff-e01e-4940-93c6-8ef54f69b680" + }, + { + "routeId": "L241", + "platformId": "U902Z4", + "id": "076b6da3-1e66-4f35-92b5-909db4b9b49c" + }, + { + "routeId": "L129", + "platformId": "U902Z4", + "id": "604e890b-6539-4cc8-83fe-2c757b2a1576" + }, + { + "routeId": "L247", + "platformId": "U902Z4", + "id": "76eb1cfb-e4da-4d4b-82f2-4a04b2a994b8" + }, + { + "routeId": "L246", + "platformId": "U902Z4", + "id": "d90fbf74-da8d-40f9-8511-3ea92ce87d39" + }, + { + "routeId": "L907", + "platformId": "U902Z4", + "id": "5aa72c89-02a6-4209-99a3-cb517483aa0a" + }, + { + "routeId": "L318", + "platformId": "U902Z4", + "id": "0888afba-6f70-42d3-9286-e9a2f89f1327" + }, + { + "routeId": "L314", + "platformId": "U902Z4", + "id": "287c3c35-c9ee-4fd1-9845-bb849f9a53cd" + }, + { + "routeId": "L360", + "platformId": "U902Z4", + "id": "6ee25412-96aa-4af4-8554-bfd9b0142745" + }, + { + "routeId": "L361", + "platformId": "U902Z4", + "id": "96d7401b-07d9-44dd-afea-d52812ddfaca" + }, + { + "routeId": "L390", + "platformId": "U902Z4", + "id": "3dfd15ea-9504-45cb-888c-8e523be3487a" + }, + { + "routeId": "L637", + "platformId": "U9030Z1", + "id": "16823d32-4800-4b51-9d34-0714336052eb" + }, + { + "routeId": "L637", + "platformId": "U9030Z2", + "id": "8ba67f5a-799f-49ed-853e-2f70225e03c5" + }, + { + "routeId": "L632", + "platformId": "U9031Z1", + "id": "b4c195dc-7513-4379-881c-8bddfbd2c158" + }, + { + "routeId": "L632", + "platformId": "U9031Z2", + "id": "7fb4df83-3d30-4ada-8212-0260d1e5cfe5" + }, + { + "routeId": "L632", + "platformId": "U9032Z1", + "id": "c4f89c4b-27dd-438c-9854-47cede1bb904" + }, + { + "routeId": "L632", + "platformId": "U9032Z2", + "id": "8a8dbdba-a812-4e84-b405-ceb7cfc7c4ad" + }, + { + "routeId": "L637", + "platformId": "U9032Z3", + "id": "5e11e2ba-bdab-4b1f-8e83-0175653ab960" + }, + { + "routeId": "L637", + "platformId": "U9032Z4", + "id": "1fb7d5f5-e3b7-4804-8b9a-d17bd8604ea7" + }, + { + "routeId": "L637", + "platformId": "U9033Z1", + "id": "280a6cec-f428-4675-b30f-1fcf8e20bdf7" + }, + { + "routeId": "L632", + "platformId": "U9033Z1", + "id": "e575b825-4778-4753-b5e5-5bdb48ab8257" + }, + { + "routeId": "L637", + "platformId": "U9033Z2", + "id": "f72b0361-f50f-413b-9db9-431fb4c1141b" + }, + { + "routeId": "L632", + "platformId": "U9033Z2", + "id": "98ffbdfd-3863-4fe8-84a3-9ec3440a882a" + }, + { + "routeId": "L637", + "platformId": "U9034Z1", + "id": "2e3310fe-0e92-42bd-9f40-547630d52a5b" + }, + { + "routeId": "L632", + "platformId": "U9034Z1", + "id": "4e7bd30c-e25c-4a03-aa1b-997ceb848149" + }, + { + "routeId": "L637", + "platformId": "U9034Z2", + "id": "05d88c14-13af-4af3-a82c-a4f7e3ef8f8d" + }, + { + "routeId": "L632", + "platformId": "U9034Z2", + "id": "2d7aa7df-8c85-4e62-a7a4-d1a1ec1d02b1" + }, + { + "routeId": "L637", + "platformId": "U9035Z1", + "id": "f9b2e189-884a-4c07-a4e4-e7d4454e51a7" + }, + { + "routeId": "L632", + "platformId": "U9035Z1", + "id": "5eb98942-7fca-483f-8016-2bbd730806d0" + }, + { + "routeId": "L637", + "platformId": "U9035Z2", + "id": "cb949ae8-e817-4602-986b-3194cd05ce8c" + }, + { + "routeId": "L632", + "platformId": "U9035Z2", + "id": "e5853339-94bf-482f-b7e9-4e81021db17f" + }, + { + "routeId": "L632", + "platformId": "U9036Z1", + "id": "747df14e-4b52-45ac-a015-7e88f528acdd" + }, + { + "routeId": "L632", + "platformId": "U9036Z2", + "id": "40f907cb-646c-426a-a801-a3e618923563" + }, + { + "routeId": "L632", + "platformId": "U9037Z1", + "id": "b317ebc6-a9b7-412b-b44e-0af258d36cc3" + }, + { + "routeId": "L632", + "platformId": "U9037Z2", + "id": "e21135fd-341a-48f7-8f20-4938d0364f5c" + }, + { + "routeId": "L250", + "platformId": "U903Z1", + "id": "ba17a5bd-2739-476f-a699-1b115a108064" + }, + { + "routeId": "L909", + "platformId": "U903Z1", + "id": "0fecb8b4-d3c9-43e4-9a77-f133952fa912" + }, + { + "routeId": "L163", + "platformId": "U903Z1", + "id": "25d988c4-7acd-4c91-96db-e39134406fd8" + }, + { + "routeId": "L211", + "platformId": "U903Z1", + "id": "bd5547ef-40c8-4147-8f94-d09c96f146b8" + }, + { + "routeId": "L391", + "platformId": "U903Z1", + "id": "5f4ba468-c2df-44a8-805c-5658ec749572" + }, + { + "routeId": "L250", + "platformId": "U903Z2", + "id": "f0615b82-4ebe-46e5-8f83-247adaac380f" + }, + { + "routeId": "L909", + "platformId": "U903Z2", + "id": "a11502d4-f758-457e-8bd6-ba118d6ac0ae" + }, + { + "routeId": "L163", + "platformId": "U903Z2", + "id": "c1b6acf9-9d4a-4ed3-94b1-a8ff6738006e" + }, + { + "routeId": "L211", + "platformId": "U903Z2", + "id": "981ab4e5-3880-461b-bf62-ed91cfc1541c" + }, + { + "routeId": "L391", + "platformId": "U903Z2", + "id": "21805cb0-7d54-4f4b-914d-2cd94137952b" + }, + { + "routeId": "L632", + "platformId": "U9040Z1", + "id": "e31ff47c-2150-432c-b16b-8cdf2bbb2761" + }, + { + "routeId": "L632", + "platformId": "U9040Z2", + "id": "65a4ce34-d235-4f0a-a0fd-11c74ca03602" + }, + { + "routeId": "L632", + "platformId": "U9041Z1", + "id": "4ae2c5c1-ee81-4db9-b15f-9b4b30b6a63b" + }, + { + "routeId": "L632", + "platformId": "U9041Z2", + "id": "8777e452-7d2c-453f-8911-30aea98f9533" + }, + { + "routeId": "L2276", + "platformId": "U9041Z401", + "id": "ed0c000a-c65d-4c65-84b6-c1ac910d9e87" + }, + { + "routeId": "L2276", + "platformId": "U9041Z402", + "id": "32e00f0f-71d5-4da8-b449-5567985e2415" + }, + { + "routeId": "L632", + "platformId": "U9042Z3", + "id": "e4a24520-4a75-4f3e-9813-14ebebe96986" + }, + { + "routeId": "L632", + "platformId": "U9042Z4", + "id": "821b7b7d-3e97-4526-be51-0c43e0d2cbcf" + }, + { + "routeId": "L631", + "platformId": "U9045Z1", + "id": "698d3bc8-3dcf-433d-afec-577a9bfebe08" + }, + { + "routeId": "L631", + "platformId": "U9045Z2", + "id": "ad6541f8-2c8e-4560-b693-69470d45d6d5" + }, + { + "routeId": "L631", + "platformId": "U9046Z1", + "id": "461d85ab-0419-4c07-bc41-9e4dcbf4a9b9" + }, + { + "routeId": "L631", + "platformId": "U9046Z2", + "id": "825fa368-7b77-4e90-9308-a63ef902908f" + }, + { + "routeId": "L631", + "platformId": "U9047Z2", + "id": "8b4940d8-60ec-414b-bbea-dc7920d89b69" + }, + { + "routeId": "L631", + "platformId": "U9047Z3", + "id": "2b6996c2-0d34-4ea5-900b-0e40860370fb" + }, + { + "routeId": "L631", + "platformId": "U9047Z4", + "id": "0af9d977-0055-4c46-8094-466f1dfcbcdc" + }, + { + "routeId": "L120", + "platformId": "U904Z1", + "id": "a3a3b048-33ac-4744-b7c5-6667d7b3a2fc" + }, + { + "routeId": "L120", + "platformId": "U904Z2", + "id": "2dc3afe3-ef44-49b6-9210-7be5580ea8be" + }, + { + "routeId": "L313", + "platformId": "U9050Z1", + "id": "5ffa7a4f-c3d7-4dea-bfce-74d82baf621c" + }, + { + "routeId": "L313", + "platformId": "U9050Z2", + "id": "001893f9-2f50-4637-8f5e-ead1914adc03" + }, + { + "routeId": "L633", + "platformId": "U9052Z3", + "id": "248314c7-b6f5-4d0e-9a8e-ff54d07d19ce" + }, + { + "routeId": "L638", + "platformId": "U9052Z3", + "id": "3bac849c-a4aa-4877-8609-6750b6080eae" + }, + { + "routeId": "L638", + "platformId": "U9053Z1", + "id": "34c2cf6b-cc93-4fb6-89bc-31f707a51cd6" + }, + { + "routeId": "L637", + "platformId": "U9053Z1", + "id": "f75e4717-81f0-4e9b-b2fb-ed5df7d36092" + }, + { + "routeId": "L633", + "platformId": "U9053Z2", + "id": "2dc5f1f1-4fc8-4bc2-a57f-b911aa787d18" + }, + { + "routeId": "L637", + "platformId": "U9053Z2", + "id": "2745400d-74b7-4270-866e-5ea69e9486fc" + }, + { + "routeId": "L638", + "platformId": "U9053Z2", + "id": "4db3786b-a2c4-40f3-9627-b8a67b99be26" + }, + { + "routeId": "L638", + "platformId": "U9054Z1", + "id": "dd167d18-28f3-485c-b479-dcaec9f83d28" + }, + { + "routeId": "L637", + "platformId": "U9054Z1", + "id": "584df0e5-f108-4a58-aff4-76df744e065f" + }, + { + "routeId": "L633", + "platformId": "U9054Z2", + "id": "80bd890c-c208-4d5c-bfab-49add944f262" + }, + { + "routeId": "L637", + "platformId": "U9054Z2", + "id": "99fd46b3-56d9-4c41-a65e-e64784f02e51" + }, + { + "routeId": "L638", + "platformId": "U9054Z2", + "id": "049ff689-c265-4c98-a2c3-8a8ed374de26" + }, + { + "routeId": "L631", + "platformId": "U9057Z1", + "id": "c92ba0bd-c9a7-42c1-ae62-e87c030c1da9" + }, + { + "routeId": "L631", + "platformId": "U9057Z2", + "id": "42bc7171-ceb5-4d3e-9c96-16727bc2d2fc" + }, + { + "routeId": "L631", + "platformId": "U9058Z1", + "id": "93444d41-2c10-45ab-ab39-82c7387f18fc" + }, + { + "routeId": "L631", + "platformId": "U9058Z2", + "id": "da553e57-c2f6-4b6c-8c3e-3083f87af42a" + }, + { + "routeId": "L161", + "platformId": "U905Z1", + "id": "bd8253e3-335e-453c-8c5d-ef6d391abf45" + }, + { + "routeId": "L907", + "platformId": "U905Z1", + "id": "61a2160f-7ec5-419e-a12c-93949d1cd4e7" + }, + { + "routeId": "L312", + "platformId": "U905Z1", + "id": "a7ae0b24-2017-42a7-95cb-297621ad31c9" + }, + { + "routeId": "L161", + "platformId": "U905Z2", + "id": "49202b1b-851c-4a19-b31c-cd8f7e507167" + }, + { + "routeId": "L907", + "platformId": "U905Z2", + "id": "2c886f15-65ef-4c56-9cf9-188894899616" + }, + { + "routeId": "L312", + "platformId": "U905Z2", + "id": "057d42d1-7e2f-43e5-aecf-b835966c7193" + }, + { + "routeId": "L631", + "platformId": "U9061Z1", + "id": "32bc25f2-099a-4f9b-939d-db01a8e67135" + }, + { + "routeId": "L631", + "platformId": "U9061Z2", + "id": "df0af5fd-27bd-41b5-9dfe-d84bee5869b5" + }, + { + "routeId": "L631", + "platformId": "U9062Z1", + "id": "ce841e91-0113-47a1-8073-c31c54e4545b" + }, + { + "routeId": "L631", + "platformId": "U9062Z2", + "id": "d9b6eef5-a627-4c00-99a6-9b26eab79ff3" + }, + { + "routeId": "L637", + "platformId": "U9063Z1", + "id": "30afa0fa-9603-4e86-8f69-19cca9c8c788" + }, + { + "routeId": "L637", + "platformId": "U9063Z2", + "id": "5e8a2717-4fbe-4cde-abd9-136c87a506c7" + }, + { + "routeId": "L637", + "platformId": "U9064Z1", + "id": "406265ca-7978-4c4d-b0af-0abfea66bc91" + }, + { + "routeId": "L637", + "platformId": "U9064Z2", + "id": "655ef57e-77dd-4c8d-8abc-6ffbcf5bc97c" + }, + { + "routeId": "L637", + "platformId": "U9065Z1", + "id": "aeb6cd29-f9c9-4f25-ba01-87eef8bb7e02" + }, + { + "routeId": "L637", + "platformId": "U9065Z2", + "id": "ca00d93c-1c43-40b6-bfa3-196d4054e7d3" + }, + { + "routeId": "L637", + "platformId": "U9068Z1", + "id": "2511038a-cca9-4327-a6f3-09e99d1fabf5" + }, + { + "routeId": "L637", + "platformId": "U9068Z2", + "id": "df8af6d6-0f67-4a07-a7d7-19f950b5ad90" + }, + { + "routeId": "L637", + "platformId": "U9069Z1", + "id": "7cf1b3ca-7ab1-4b6c-b6ef-6d56da85ec92" + }, + { + "routeId": "L637", + "platformId": "U9069Z2", + "id": "3d2824af-f815-46fc-90a7-06a76ea52d74" + }, + { + "routeId": "L108", + "platformId": "U906Z1", + "id": "1d8a65f2-26ea-4cbd-9957-c6b8f15bc14e" + }, + { + "routeId": "L131", + "platformId": "U906Z1", + "id": "3d640e74-cf0d-468e-ac51-fb4332322ef3" + }, + { + "routeId": "L907", + "platformId": "U906Z1", + "id": "33838ada-9c4a-4436-83e5-8e7b96a6d0a7" + }, + { + "routeId": "L108", + "platformId": "U906Z2", + "id": "1c641015-c6fd-4784-93aa-ae6124ac5861" + }, + { + "routeId": "L131", + "platformId": "U906Z2", + "id": "350692b2-77f1-4a79-838c-ef282204d7b6" + }, + { + "routeId": "L907", + "platformId": "U906Z2", + "id": "646ed0da-5f05-4529-b6de-2dc61a2a08b0" + }, + { + "routeId": "L8", + "platformId": "U906Z3", + "id": "90317ccd-eddd-4e28-ad24-d7edca75239f" + }, + { + "routeId": "L18", + "platformId": "U906Z3", + "id": "ba4f3442-4d14-41d9-8497-2025e9c5ebe2" + }, + { + "routeId": "L8", + "platformId": "U906Z4", + "id": "c6d0e810-312c-4ed9-8253-4e96d1723ac1" + }, + { + "routeId": "L18", + "platformId": "U906Z4", + "id": "87ef0639-2488-4fd5-9d2b-85a3ddc7d137" + }, + { + "routeId": "L637", + "platformId": "U9070Z1", + "id": "c5919022-9d35-4349-aadb-cca8658bd3d2" + }, + { + "routeId": "L637", + "platformId": "U9070Z2", + "id": "8787a71a-8a2f-4827-83e1-855450c2c038" + }, + { + "routeId": "L637", + "platformId": "U9071Z1", + "id": "50a084a4-0218-423c-b592-b7e1a2dd1e08" + }, + { + "routeId": "L637", + "platformId": "U9071Z2", + "id": "ee6cab5b-ad86-43ad-ad59-318312efa721" + }, + { + "routeId": "L637", + "platformId": "U9072Z3", + "id": "01292eee-721b-483b-9f26-bb43024ffdc4" + }, + { + "routeId": "L637", + "platformId": "U9072Z4", + "id": "98c4ac16-993a-44b4-b436-00e796de13e7" + }, + { + "routeId": "L637", + "platformId": "U9073Z1", + "id": "3521d31a-c966-4ec4-942b-f911d95cd469" + }, + { + "routeId": "L637", + "platformId": "U9073Z2", + "id": "8d4cf029-d640-472c-90a8-38cf72a3bbcb" + }, + { + "routeId": "L637", + "platformId": "U9074Z1", + "id": "06d4801d-9b9d-4fea-ad5b-567bc35ece42" + }, + { + "routeId": "L637", + "platformId": "U9074Z2", + "id": "39afb11d-ad3c-4c04-b74d-d3fad6049f9e" + }, + { + "routeId": "L637", + "platformId": "U9075Z1", + "id": "097f20a1-fe13-4835-b720-9b3aa55fa0e6" + }, + { + "routeId": "L637", + "platformId": "U9075Z2", + "id": "1382912f-d472-4767-80ce-47fac1abe5e6" + }, + { + "routeId": "L637", + "platformId": "U9077Z1", + "id": "4dc32e64-9665-4ead-bb2a-7c7def3e78ce" + }, + { + "routeId": "L637", + "platformId": "U9077Z2", + "id": "11076cb1-f026-473a-a342-c4c915cfa468" + }, + { + "routeId": "L638", + "platformId": "U9078Z1", + "id": "81fca710-78ff-448c-93f3-5f7d967ea965" + }, + { + "routeId": "L528", + "platformId": "U9078Z1", + "id": "7bafe170-951a-41e9-b3b5-531f46d65d5d" + }, + { + "routeId": "L637", + "platformId": "U9078Z1", + "id": "c9134106-d999-46a3-9e4b-49832ca47bd4" + }, + { + "routeId": "L638", + "platformId": "U9078Z2", + "id": "5657be0c-1875-41ff-95c7-dc1af342d780" + }, + { + "routeId": "L528", + "platformId": "U9078Z2", + "id": "4a2222b9-23c9-4603-9acf-79f305a4c30d" + }, + { + "routeId": "L637", + "platformId": "U9078Z2", + "id": "9aaf59cf-b951-47d8-87c9-27eb07c90017" + }, + { + "routeId": "L638", + "platformId": "U9079Z1", + "id": "13d07e82-c354-476b-92d1-6a9a06d0c578" + }, + { + "routeId": "L528", + "platformId": "U9079Z1", + "id": "fc008f01-345a-46ee-811a-261ce49b9a7b" + }, + { + "routeId": "L637", + "platformId": "U9079Z1", + "id": "d98fe4b4-d831-415e-bb62-569195ba72d2" + }, + { + "routeId": "L638", + "platformId": "U9079Z2", + "id": "7bd39e7e-2219-4340-a3cc-0dde5be6e3a9" + }, + { + "routeId": "L528", + "platformId": "U9079Z2", + "id": "174844f9-4ed8-4208-ae48-7bf69b2fcf22" + }, + { + "routeId": "L637", + "platformId": "U9079Z2", + "id": "6a4bce8a-d1ec-42bd-9cd4-a2d886b816f3" + }, + { + "routeId": "L134", + "platformId": "U907Z1", + "id": "c21d5f29-e03f-46cb-8e25-1a8312aee27d" + }, + { + "routeId": "L905", + "platformId": "U907Z1", + "id": "fd8be176-0c46-4b1f-941e-a2863a7486e2" + }, + { + "routeId": "L910", + "platformId": "U907Z1", + "id": "c42b9951-8618-469a-a9a4-2c2dcb945eeb" + }, + { + "routeId": "L134", + "platformId": "U907Z2", + "id": "eb423df0-b5c4-4e79-957f-4eb86a360364" + }, + { + "routeId": "L905", + "platformId": "U907Z2", + "id": "b1170a43-db19-4189-bb7b-b9b20dc0ea3c" + }, + { + "routeId": "L910", + "platformId": "U907Z2", + "id": "f609dc20-574b-4bb4-ae3b-c033153cf76e" + }, + { + "routeId": "L638", + "platformId": "U9080Z1", + "id": "403d2061-337d-4e9a-90d9-8d962a8b217c" + }, + { + "routeId": "L638", + "platformId": "U9080Z2", + "id": "fe5633bb-ee2c-4810-9e53-f7ee447a5f11" + }, + { + "routeId": "L638", + "platformId": "U9081Z1", + "id": "cba35440-6b2b-4e72-885f-620894e66449" + }, + { + "routeId": "L638", + "platformId": "U9081Z2", + "id": "0c2dc737-d1c7-4a5c-9617-57ee0a9a1996" + }, + { + "routeId": "L638", + "platformId": "U9082Z1", + "id": "f3fa5f9f-f2a2-4b45-bc68-1d33f37b8e65" + }, + { + "routeId": "L638", + "platformId": "U9082Z2", + "id": "73519c45-7956-48d5-9c58-4c05fbbedf0f" + }, + { + "routeId": "L638", + "platformId": "U9083Z1", + "id": "92affe12-549a-4e6f-a5ae-190b22922923" + }, + { + "routeId": "L638", + "platformId": "U9083Z2", + "id": "8c385698-5985-434c-bb7b-b2c79a641d65" + }, + { + "routeId": "L638", + "platformId": "U9084Z1", + "id": "4eb0d3ee-cfb8-4732-92ac-750b8a08e9b4" + }, + { + "routeId": "L528", + "platformId": "U9084Z1", + "id": "f94af5e0-4e38-48f6-821a-612e735ef9cd" + }, + { + "routeId": "L637", + "platformId": "U9084Z1", + "id": "42ed3d11-a22a-4448-963f-18a634d9ae3b" + }, + { + "routeId": "L638", + "platformId": "U9084Z2", + "id": "93f9aa92-b04d-49a6-b9eb-c67c0b8933c0" + }, + { + "routeId": "L528", + "platformId": "U9084Z2", + "id": "14a88cee-70f5-4778-bec4-d1895d9878d9" + }, + { + "routeId": "L637", + "platformId": "U9084Z2", + "id": "de8541d9-3cdf-4b20-851f-3cb9c2e14f1d" + }, + { + "routeId": "L638", + "platformId": "U9085Z1", + "id": "83705e47-681d-4aee-978c-80ad8205a20e" + }, + { + "routeId": "L528", + "platformId": "U9085Z1", + "id": "307328eb-7a2e-4ef0-9c8a-5ef9347d84a7" + }, + { + "routeId": "L637", + "platformId": "U9085Z1", + "id": "f95b138a-cd7f-4f7a-9ad7-76437a9791ba" + }, + { + "routeId": "L638", + "platformId": "U9085Z2", + "id": "9dc6743d-6078-4198-810c-b4a4a688c0a8" + }, + { + "routeId": "L528", + "platformId": "U9085Z2", + "id": "e0d1ac88-0764-4f46-a27f-d26e2f62bd3c" + }, + { + "routeId": "L637", + "platformId": "U9085Z2", + "id": "9733fbaa-9dd1-429e-92d6-08a4fc1b6b9d" + }, + { + "routeId": "L638", + "platformId": "U9086Z1", + "id": "c0e19f16-5e68-4f9a-9272-01821d5dce30" + }, + { + "routeId": "L528", + "platformId": "U9086Z1", + "id": "faa7a740-af5a-4db8-a40e-6d8d1cfa1479" + }, + { + "routeId": "L637", + "platformId": "U9086Z1", + "id": "71055815-04e3-4161-92fd-51d29dadb9ee" + }, + { + "routeId": "L638", + "platformId": "U9086Z2", + "id": "f64d160f-dac4-4b59-b753-b3d6014f19cc" + }, + { + "routeId": "L528", + "platformId": "U9086Z2", + "id": "51112e84-76c5-44d1-9a2b-5737c1dd524e" + }, + { + "routeId": "L637", + "platformId": "U9086Z2", + "id": "281a6aa8-82f9-423c-b777-fd30aab8d13d" + }, + { + "routeId": "L638", + "platformId": "U9087Z1", + "id": "7db056eb-500e-411a-b1fe-b3c4875d4afd" + }, + { + "routeId": "L638", + "platformId": "U9087Z2", + "id": "e415aaec-50a3-40e1-a581-e55c8e54b232" + }, + { + "routeId": "L638", + "platformId": "U9088Z1", + "id": "79281386-1763-4859-adbc-c106107da0e4" + }, + { + "routeId": "L638", + "platformId": "U9088Z2", + "id": "770e8008-defc-4061-8bcb-ff489f692a51" + }, + { + "routeId": "L638", + "platformId": "U9089Z1", + "id": "f9c3b106-ccf2-42ed-ba08-227ae2966b5e" + }, + { + "routeId": "L638", + "platformId": "U9089Z2", + "id": "42fa3fda-f640-45c5-b0bb-7497c74953da" + }, + { + "routeId": "L138", + "platformId": "U908Z1", + "id": "c0d23faa-8fe9-4625-abbe-a919ba361b4d" + }, + { + "routeId": "L193", + "platformId": "U908Z1", + "id": "a006e0f2-1dd5-42eb-8755-0398b81d1682" + }, + { + "routeId": "L901", + "platformId": "U908Z1", + "id": "3335bec9-f486-44d6-8154-1b59a2f2ad2f" + }, + { + "routeId": "L203", + "platformId": "U908Z1", + "id": "e23cdda1-c190-4538-b156-82c650eba37c" + }, + { + "routeId": "L332", + "platformId": "U908Z1", + "id": "f90fe422-9428-4778-b808-7da2cc68bc28" + }, + { + "routeId": "L956", + "platformId": "U908Z1", + "id": "e97bd30a-29d6-486d-97d1-a59f32d32421" + }, + { + "routeId": "L337", + "platformId": "U908Z1", + "id": "2ab7c28f-4ae6-4219-9d71-9ce7ce6af784" + }, + { + "routeId": "L335", + "platformId": "U908Z1", + "id": "a90c561c-9222-4829-8295-c16e782b2432" + }, + { + "routeId": "L339", + "platformId": "U908Z1", + "id": "bd8bea02-c6a2-40d6-9217-fc32a3fa2e76" + }, + { + "routeId": "L138", + "platformId": "U908Z2", + "id": "983251be-e767-48b1-ac88-4af022b2bab9" + }, + { + "routeId": "L193", + "platformId": "U908Z2", + "id": "a668a2e1-3e90-4690-95ec-e9f4bca2dce5" + }, + { + "routeId": "L901", + "platformId": "U908Z2", + "id": "521d7aa7-5937-4507-a8eb-4c42dce6df4f" + }, + { + "routeId": "L203", + "platformId": "U908Z2", + "id": "c47b2609-fb78-4c1b-a643-1bde98f6b4af" + }, + { + "routeId": "L332", + "platformId": "U908Z2", + "id": "1186853b-10d0-4998-bd67-db41bf473d45" + }, + { + "routeId": "L956", + "platformId": "U908Z2", + "id": "0dd5f8c5-8273-481c-bbe6-5d815bdfb6d5" + }, + { + "routeId": "L337", + "platformId": "U908Z2", + "id": "4166fd21-f0e2-4409-968e-31906d3b315f" + }, + { + "routeId": "L335", + "platformId": "U908Z2", + "id": "2c609d7f-a06b-4ab7-af37-62730ccfac80" + }, + { + "routeId": "L339", + "platformId": "U908Z2", + "id": "cf5355ff-4fcc-4ec9-8614-44789609d841" + }, + { + "routeId": "L638", + "platformId": "U9090Z1", + "id": "1c8d27fc-a44d-4101-a4a8-f46ad9bb3f09" + }, + { + "routeId": "L638", + "platformId": "U9090Z2", + "id": "8d55d458-8604-42a1-a0f2-6dc91a7f39c2" + }, + { + "routeId": "L638", + "platformId": "U9091Z1", + "id": "70640ee1-9320-4043-a812-62f4e47143ed" + }, + { + "routeId": "L638", + "platformId": "U9091Z2", + "id": "149f6dce-49f6-4bb9-882d-1e88b5fc3d9a" + }, + { + "routeId": "L638", + "platformId": "U9092Z1", + "id": "16bbac75-daab-48fb-8322-6213efd0ce3e" + }, + { + "routeId": "L638", + "platformId": "U9092Z2", + "id": "da171f12-615a-4b1d-9a01-eab7e52b7c83" + }, + { + "routeId": "L638", + "platformId": "U9093Z1", + "id": "e9534bcf-6f54-42de-bae6-5eed2a5f8740" + }, + { + "routeId": "L638", + "platformId": "U9093Z2", + "id": "e08cb757-d678-4700-aad6-24f044bd0a4a" + }, + { + "routeId": "L576", + "platformId": "U9094Z1", + "id": "5103f0a8-2ac5-4139-b313-c8197ca89a14" + }, + { + "routeId": "L638", + "platformId": "U9094Z1", + "id": "090c98d0-9667-4823-920a-db80a4ffba1a" + }, + { + "routeId": "L555", + "platformId": "U9095Z1", + "id": "d6c92857-5383-401a-b263-5bfb1f4ed50c" + }, + { + "routeId": "L555", + "platformId": "U9095Z2", + "id": "31026fc0-8cb7-4de2-85b9-97678e4bab94" + }, + { + "routeId": "L555", + "platformId": "U9096Z1", + "id": "21b129ba-55f1-4685-874b-1854846845fb" + }, + { + "routeId": "L555", + "platformId": "U9096Z2", + "id": "2824f4ce-cb08-4a9c-9f4c-a9984277f315" + }, + { + "routeId": "L555", + "platformId": "U9097Z1", + "id": "01dbb1d4-a818-4848-b911-f597ec702680" + }, + { + "routeId": "L555", + "platformId": "U9097Z2", + "id": "d8898c0a-a5d4-48f6-948f-969bf0d4fe5b" + }, + { + "routeId": "L555", + "platformId": "U9098Z1", + "id": "043556d1-363b-4819-b212-a75caca708fb" + }, + { + "routeId": "L555", + "platformId": "U9098Z2", + "id": "bf7816f0-8945-4478-ad21-102d8a501e29" + }, + { + "routeId": "L555", + "platformId": "U9099Z1", + "id": "a5ed86d9-c0ba-44f7-bb32-5c338d3fe280" + }, + { + "routeId": "L555", + "platformId": "U9099Z2", + "id": "0d561b56-8226-4ca7-899a-73816b73d94c" + }, + { + "routeId": "L193", + "platformId": "U909Z1", + "id": "596f9076-8e4f-46bb-b009-83f165ecddc1" + }, + { + "routeId": "L901", + "platformId": "U909Z1", + "id": "d31e38e1-3d67-48a1-8777-bd594bf56e19" + }, + { + "routeId": "L203", + "platformId": "U909Z1", + "id": "b0e8574d-d462-4b3c-8c3f-6d0bb9916436" + }, + { + "routeId": "L956", + "platformId": "U909Z1", + "id": "14cd79a0-fe08-41b4-8556-f4a5c1e953d3" + }, + { + "routeId": "L335", + "platformId": "U909Z1", + "id": "a4bcbf98-3bca-45d5-90dd-54a3580b8a9a" + }, + { + "routeId": "L193", + "platformId": "U909Z2", + "id": "0cb84ded-bedc-4edb-ae7e-91bc4b00a842" + }, + { + "routeId": "L901", + "platformId": "U909Z2", + "id": "8c9f91d3-c9bf-4bf0-bb16-ea2bbcd06245" + }, + { + "routeId": "L203", + "platformId": "U909Z2", + "id": "ba43a18f-b6e6-436e-8704-7c6246d7f857" + }, + { + "routeId": "L956", + "platformId": "U909Z2", + "id": "d8641ca8-8405-49e6-8c3c-32dc87a3e19b" + }, + { + "routeId": "L335", + "platformId": "U909Z2", + "id": "0f496155-5ad8-47b0-9370-6528236539a1" + }, + { + "routeId": "L188", + "platformId": "U90Z1", + "id": "cde8ccce-ddda-4f22-8b02-56699b4130bb" + }, + { + "routeId": "L188", + "platformId": "U90Z2", + "id": "935c06e7-5e0a-4689-9815-a119fd9282e0" + }, + { + "routeId": "L555", + "platformId": "U9100Z1", + "id": "1b00da66-2d73-477c-82fe-4cfa5c636441" + }, + { + "routeId": "L555", + "platformId": "U9100Z2", + "id": "a5de4c92-36de-4aeb-a18d-1c60f02f1e6e" + }, + { + "routeId": "L555", + "platformId": "U9101Z1", + "id": "6d335995-8b3e-45a3-9c42-28652c626f54" + }, + { + "routeId": "L555", + "platformId": "U9101Z2", + "id": "17228f61-ef72-40fb-bcf5-14e082ba8fec" + }, + { + "routeId": "L555", + "platformId": "U9102Z1", + "id": "c6c74c3e-ac95-4938-8a49-e12a2edf1e15" + }, + { + "routeId": "L555", + "platformId": "U9102Z2", + "id": "d8278820-30c1-44da-a72c-dfdaf88cf84b" + }, + { + "routeId": "L324", + "platformId": "U9104Z1", + "id": "f3a887b5-a9f0-4956-b341-adaa7d019b08" + }, + { + "routeId": "L590", + "platformId": "U9104Z1", + "id": "203f60bb-6926-4f4a-a7f7-747c11fdfe46" + }, + { + "routeId": "L324", + "platformId": "U9104Z2", + "id": "3cfdc268-8bae-433b-adca-333b5a82875d" + }, + { + "routeId": "L590", + "platformId": "U9104Z2", + "id": "a8d32ca1-76ec-48a7-ae15-a1bff45dd89d" + }, + { + "routeId": "L384", + "platformId": "U9105Z1", + "id": "4bff3ef3-2cc7-4571-9e92-f996e306fabc" + }, + { + "routeId": "L641", + "platformId": "U9105Z1", + "id": "b57ac21b-f714-4a61-828b-d408236dbed2" + }, + { + "routeId": "L384", + "platformId": "U9105Z2", + "id": "8e13544b-d585-41f9-95df-55d07e9ed67e" + }, + { + "routeId": "L641", + "platformId": "U9105Z2", + "id": "aecb28ac-58b3-41cf-b629-12e79adc5308" + }, + { + "routeId": "L526", + "platformId": "U9105Z2", + "id": "334989aa-e8c4-47bf-9180-9f925d8b5cf6" + }, + { + "routeId": "L526", + "platformId": "U9109Z1", + "id": "a07a02f9-ed4a-4b3f-bfb8-a47b03745f46" + }, + { + "routeId": "L526", + "platformId": "U9109Z2", + "id": "b6e8e0c1-19ed-4894-9fb3-e222d00d3f14" + }, + { + "routeId": "L124", + "platformId": "U910Z1", + "id": "0ab17b13-7771-4b08-942a-f02a0acac749" + }, + { + "routeId": "L124", + "platformId": "U910Z2", + "id": "ea7d953c-1838-44a0-bad4-f244ad091239" + }, + { + "routeId": "L134", + "platformId": "U910Z2", + "id": "f2cebfb4-6147-4189-92e4-597281cf0a9b" + }, + { + "routeId": "L526", + "platformId": "U9110Z1", + "id": "fcbbda6b-b409-45be-8108-5499cd518f8d" + }, + { + "routeId": "L526", + "platformId": "U9110Z2", + "id": "fa649ac2-cda5-452c-8503-1e1d963b8686" + }, + { + "routeId": "L590", + "platformId": "U9113Z1", + "id": "d330b757-a20f-4e60-9673-ef720a332669" + }, + { + "routeId": "L590", + "platformId": "U9113Z2", + "id": "f4dfe11b-8596-4f82-b699-90615962e24e" + }, + { + "routeId": "L590", + "platformId": "U9114Z1", + "id": "01ebea40-2feb-4862-ac48-634c0bcb9c53" + }, + { + "routeId": "L590", + "platformId": "U9114Z2", + "id": "16f38f1f-c48b-4af4-bca3-408417d49469" + }, + { + "routeId": "L590", + "platformId": "U9116Z1", + "id": "cc161bcf-4f49-4c90-8ab8-bcc3fefefb8e" + }, + { + "routeId": "L590", + "platformId": "U9116Z2", + "id": "3d946122-11f7-4026-ac0e-03d1ae0f63f4" + }, + { + "routeId": "L590", + "platformId": "U9117Z1", + "id": "15db9fea-c424-4c28-b192-fcaca5a0af38" + }, + { + "routeId": "L590", + "platformId": "U9117Z2", + "id": "5493ce35-bbf2-439b-8470-99905dc3f25f" + }, + { + "routeId": "L590", + "platformId": "U9119Z1", + "id": "0d4ad33b-9e6b-4271-ad57-75ee66a59dd0" + }, + { + "routeId": "L134", + "platformId": "U911Z1", + "id": "c6c05e25-5266-4f70-9fdf-8fd6b682bbf5" + }, + { + "routeId": "L134", + "platformId": "U911Z2", + "id": "204e8691-7100-4aed-9c81-4f42b3e659ca" + }, + { + "routeId": "L595", + "platformId": "U9121Z1", + "id": "3662ee10-c732-4681-b813-bb8a04087704" + }, + { + "routeId": "L595", + "platformId": "U9121Z2", + "id": "d080134f-51af-49ce-a287-ba2f38968093" + }, + { + "routeId": "L595", + "platformId": "U9123Z1", + "id": "5cc1141f-83d2-4ad3-a804-1bff44dbeeaf" + }, + { + "routeId": "L650", + "platformId": "U9123Z1", + "id": "0dcdffef-26e2-4c1a-9215-969bc8632173" + }, + { + "routeId": "L595", + "platformId": "U9123Z2", + "id": "ab6f330a-c176-4035-9c86-3e89dfbe3e33" + }, + { + "routeId": "L650", + "platformId": "U9123Z2", + "id": "74334661-669b-4597-bced-6ccf9302373d" + }, + { + "routeId": "L595", + "platformId": "U9124Z1", + "id": "d25de03b-9f75-4cf3-a7c7-684b25cfc465" + }, + { + "routeId": "L595", + "platformId": "U9124Z2", + "id": "d659f4a7-cb8e-493b-9aa8-a93e2c5f4920" + }, + { + "routeId": "L595", + "platformId": "U9125Z1", + "id": "9c247b67-a4b1-43c9-8733-54de568ae8b1" + }, + { + "routeId": "L650", + "platformId": "U9125Z1", + "id": "81516094-9122-4e87-87bf-83ba644175bc" + }, + { + "routeId": "L595", + "platformId": "U9125Z2", + "id": "0fa7dbd0-7e41-4c91-8cec-80ad2c2af53d" + }, + { + "routeId": "L650", + "platformId": "U9125Z2", + "id": "98b70ad0-ce80-4f14-90f6-659e7f9bec38" + }, + { + "routeId": "L595", + "platformId": "U9126Z1", + "id": "694e50f8-75f3-46e9-828d-c860ac76918e" + }, + { + "routeId": "L595", + "platformId": "U9126Z2", + "id": "5577dfc7-963c-4839-a2c8-97c71f5559dd" + }, + { + "routeId": "L595", + "platformId": "U9127Z1", + "id": "4777e43c-0c6f-4b36-991c-dcfacab7f1bb" + }, + { + "routeId": "L650", + "platformId": "U9127Z1", + "id": "2a51fa9e-9045-4039-81bb-f31fa8130138" + }, + { + "routeId": "L595", + "platformId": "U9127Z2", + "id": "6f25c2ed-b407-49fb-b029-0b8e7a3ccf79" + }, + { + "routeId": "L650", + "platformId": "U9127Z2", + "id": "3c9b08a4-01de-42c4-9539-c2b6062e20c7" + }, + { + "routeId": "L595", + "platformId": "U9128Z1", + "id": "92b2f383-0b9b-4133-a4a6-5e5b480aa581" + }, + { + "routeId": "L595", + "platformId": "U9128Z2", + "id": "ad686e96-05bb-4281-b2ea-ffb7b2e53ef0" + }, + { + "routeId": "L200", + "platformId": "U912Z1", + "id": "502d3b75-c426-4057-bd3f-497ee93298af" + }, + { + "routeId": "L200", + "platformId": "U912Z2", + "id": "1b03090c-983a-4510-9f3c-5dd57a6c8e4c" + }, + { + "routeId": "L102", + "platformId": "U912Z3", + "id": "d0a13ca4-993e-4d7f-999e-23487d36e355" + }, + { + "routeId": "L177", + "platformId": "U912Z3", + "id": "b185ad04-aa44-45b2-ba89-262c9d27258e" + }, + { + "routeId": "L202", + "platformId": "U912Z3", + "id": "5412b371-94af-4768-a363-8d028e928247" + }, + { + "routeId": "L235", + "platformId": "U912Z3", + "id": "997ed4b1-8424-4450-8955-8d8ac67a47d2" + }, + { + "routeId": "L236", + "platformId": "U912Z3", + "id": "93c490c1-a50c-4d7b-a161-5b37d9807932" + }, + { + "routeId": "L905", + "platformId": "U912Z3", + "id": "2a4b2660-a649-4642-a0ac-67fc100b598f" + }, + { + "routeId": "L102", + "platformId": "U912Z4", + "id": "1f760339-3cd1-4fb1-be29-68949520ac75" + }, + { + "routeId": "L177", + "platformId": "U912Z4", + "id": "c9bb165f-96a1-492b-bca6-dc8c63eb3dba" + }, + { + "routeId": "L202", + "platformId": "U912Z4", + "id": "a761f63a-83b2-45c2-8f56-4e799692a4cf" + }, + { + "routeId": "L235", + "platformId": "U912Z4", + "id": "deb184db-614e-4c53-8233-764d7013989c" + }, + { + "routeId": "L236", + "platformId": "U912Z4", + "id": "4216d7c8-3597-433e-80d2-6c3abed76e1e" + }, + { + "routeId": "L905", + "platformId": "U912Z4", + "id": "d44bebe0-b271-4815-b960-b5f5f2271bc4" + }, + { + "routeId": "L595", + "platformId": "U9131Z1", + "id": "1bf131bb-82cc-461d-9371-f921f4ea3f11" + }, + { + "routeId": "L595", + "platformId": "U9131Z2", + "id": "a5a6abf2-28fe-4a7b-bfb9-a38e53ea0e5b" + }, + { + "routeId": "L595", + "platformId": "U9133Z1", + "id": "ef8634f9-33a3-47b7-b0e8-2a43ca167977" + }, + { + "routeId": "L595", + "platformId": "U9133Z2", + "id": "22d5893e-d743-4e96-ab85-6fd7f5cd296a" + }, + { + "routeId": "L595", + "platformId": "U9135Z1", + "id": "fa1d7e49-3c79-4d8d-aac8-1a3282ef1aa4" + }, + { + "routeId": "L595", + "platformId": "U9135Z2", + "id": "6a847fe8-f042-4ed4-9901-b3744ceef5ce" + }, + { + "routeId": "L180", + "platformId": "U913Z1", + "id": "fcb4d7c5-ea1a-4e3c-b693-17781edbfc72" + }, + { + "routeId": "L904", + "platformId": "U913Z1", + "id": "595a0039-66e7-4957-bf9c-20d56d0ec30f" + }, + { + "routeId": "L306", + "platformId": "U913Z1", + "id": "711813d7-7752-4678-9c7c-9775b9bd0a47" + }, + { + "routeId": "L957", + "platformId": "U913Z1", + "id": "c50841d9-aaa9-4785-a31a-7ed08157285c" + }, + { + "routeId": "L952", + "platformId": "U913Z1", + "id": "856cd53f-10ba-48f2-8ff3-ca708bbf28b6" + }, + { + "routeId": "L180", + "platformId": "U913Z2", + "id": "e750a39b-4990-476c-8d80-fcf040582079" + }, + { + "routeId": "L904", + "platformId": "U913Z2", + "id": "ae59aa04-c640-4520-8bb2-dd6468cb2cf5" + }, + { + "routeId": "L306", + "platformId": "U913Z2", + "id": "cbd04c17-4f93-45d8-80da-f739af868753" + }, + { + "routeId": "L957", + "platformId": "U913Z2", + "id": "c40a89ac-33ab-4d49-b081-27b8b070f29b" + }, + { + "routeId": "L952", + "platformId": "U913Z2", + "id": "56be7dd8-1734-4df9-8843-4b520b509682" + }, + { + "routeId": "L214", + "platformId": "U913Z3", + "id": "98978c09-a398-420a-ab8e-475737951bb8" + }, + { + "routeId": "L214", + "platformId": "U913Z4", + "id": "b63ffdf3-9c5e-468c-bc0e-6db160b3f63a" + }, + { + "routeId": "L617", + "platformId": "U9142Z1", + "id": "67cfd897-1d6f-426b-909e-3603212d4baf" + }, + { + "routeId": "L617", + "platformId": "U9142Z2", + "id": "13308230-5fd4-4431-ae27-68689d9f8631" + }, + { + "routeId": "L617", + "platformId": "U9144Z1", + "id": "df4579d8-c191-460c-b4c9-14741d5cde52" + }, + { + "routeId": "L617", + "platformId": "U9144Z2", + "id": "848d206b-8ea3-47e4-9fff-7428e8a6a74a" + }, + { + "routeId": "L617", + "platformId": "U9145Z1", + "id": "43d5fc4c-3744-40c1-8c83-c1070f9a96cf" + }, + { + "routeId": "L617", + "platformId": "U9145Z2", + "id": "506bbbee-84e6-49ca-b5cb-72b5708dfe66" + }, + { + "routeId": "L617", + "platformId": "U9146Z1", + "id": "6c72f7f1-c553-4996-8e04-ee4bddad0dec" + }, + { + "routeId": "L617", + "platformId": "U9146Z2", + "id": "11417504-6012-41ca-a944-dd3346530541" + }, + { + "routeId": "L617", + "platformId": "U9149Z1", + "id": "9fe2c293-d0de-44bf-9b12-791ea3233ec2" + }, + { + "routeId": "L617", + "platformId": "U9149Z2", + "id": "cd187605-ec78-4f4d-8fa1-41ea01380e1b" + }, + { + "routeId": "L5", + "platformId": "U914Z1", + "id": "5c5e803d-01af-4d08-87da-3ede63b3c61c" + }, + { + "routeId": "L12", + "platformId": "U914Z1", + "id": "20da76ef-cbf9-44d2-b73c-eecf862d68eb" + }, + { + "routeId": "L20", + "platformId": "U914Z1", + "id": "7f1a52d9-1eb5-4aa7-ada5-79a1eccc1d52" + }, + { + "routeId": "L94", + "platformId": "U914Z1", + "id": "3ea5f60d-3604-43fa-ab8f-ae178cc9ec16" + }, + { + "routeId": "L120", + "platformId": "U914Z1", + "id": "5ae4575b-31c4-4856-bd69-810b1855371b" + }, + { + "routeId": "L5", + "platformId": "U914Z2", + "id": "d5f45ff2-ddd1-4abe-b904-63c4537109aa" + }, + { + "routeId": "L12", + "platformId": "U914Z2", + "id": "4c4d5a81-0e51-4992-af2c-c78730a8f464" + }, + { + "routeId": "L20", + "platformId": "U914Z2", + "id": "a03e937c-c035-42b2-96f6-54463d1bed15" + }, + { + "routeId": "L94", + "platformId": "U914Z2", + "id": "375237bd-bc3c-467f-874f-c79846ee386c" + }, + { + "routeId": "L120", + "platformId": "U914Z2", + "id": "267cb4a8-6125-4165-80bf-14ac0fe76465" + }, + { + "routeId": "L128", + "platformId": "U914Z3", + "id": "c86d1dde-1cfa-4ef0-80e0-4cea4c188aff" + }, + { + "routeId": "L617", + "platformId": "U9158Z1", + "id": "636f7a38-3250-43b3-9484-de016783847b" + }, + { + "routeId": "L617", + "platformId": "U9158Z2", + "id": "ab21bffd-8b69-45f6-90cd-dcb60e2b5fe2" + }, + { + "routeId": "L617", + "platformId": "U9159Z1", + "id": "64e94ec2-391b-42db-805b-dde44e570b65" + }, + { + "routeId": "L617", + "platformId": "U9159Z2", + "id": "4937b3d2-0953-403f-bf69-1b14fb13693f" + }, + { + "routeId": "L246", + "platformId": "U915Z1", + "id": "b09e3f73-069e-43bf-a1c8-e0101aad646d" + }, + { + "routeId": "L246", + "platformId": "U915Z2", + "id": "ecd11611-9590-4177-a18e-810962626e3b" + }, + { + "routeId": "L617", + "platformId": "U9161Z1", + "id": "af065187-a564-4c97-9263-3a81163036b8" + }, + { + "routeId": "L617", + "platformId": "U9161Z2", + "id": "d52e6ea6-0d34-4d2e-b305-22cc14cc8abd" + }, + { + "routeId": "L2260", + "platformId": "U9162Z401", + "id": "5c09b041-b26e-4a3a-85c7-b92d26a7fdbe" + }, + { + "routeId": "L2260", + "platformId": "U9162Z402", + "id": "895b342a-c4ae-4cf8-8ee9-4f4ab9112d7a" + }, + { + "routeId": "L467", + "platformId": "U9164Z1", + "id": "43c9eee5-2ab0-4efd-b17b-aaf8cb418a0c" + }, + { + "routeId": "L467", + "platformId": "U9164Z2", + "id": "586d55ea-c06f-4246-83b7-55fe9c4d7910" + }, + { + "routeId": "L467", + "platformId": "U9165Z1", + "id": "d06d5ad9-c330-423a-8fbd-0f2acb92305e" + }, + { + "routeId": "L467", + "platformId": "U9165Z2", + "id": "f564ac46-a6c2-47ed-94b2-9b585fa05b22" + }, + { + "routeId": "L467", + "platformId": "U9166Z1", + "id": "8d2dc6ca-bbf4-49df-bc38-260d5e2babc2" + }, + { + "routeId": "L668", + "platformId": "U9166Z1", + "id": "a04effb5-da58-44cc-81a0-b19ae20401ee" + }, + { + "routeId": "L747", + "platformId": "U9166Z1", + "id": "167be5c3-8964-461d-b518-b37b71731d91" + }, + { + "routeId": "L467", + "platformId": "U9166Z2", + "id": "3e1f7404-b947-4691-b931-0064ac89f6f9" + }, + { + "routeId": "L747", + "platformId": "U9166Z2", + "id": "b10fd198-13e4-4687-8609-f9bacdfbcc70" + }, + { + "routeId": "L668", + "platformId": "U9166Z2", + "id": "2b5ba0b5-8a5a-460d-87a2-39ff78ead7bf" + }, + { + "routeId": "L747", + "platformId": "U9169Z1", + "id": "603dbf3c-844d-4930-b89f-62d0e4e2e690" + }, + { + "routeId": "L747", + "platformId": "U9169Z2", + "id": "02f0d2d9-04e8-4217-af80-8aa6c32e3148" + }, + { + "routeId": "L136", + "platformId": "U916Z1", + "id": "b54c2bb4-796b-4cdf-9af7-551c04c7c674" + }, + { + "routeId": "L213", + "platformId": "U916Z1", + "id": "edd80e83-7541-47d8-94a9-5c5545fa41ea" + }, + { + "routeId": "L911", + "platformId": "U916Z1", + "id": "30ef3bc3-d9ce-4ccf-a76d-5483d79a8cb1" + }, + { + "routeId": "L136", + "platformId": "U916Z2", + "id": "1d37ba9f-ba1e-4911-8403-c24de17e7b77" + }, + { + "routeId": "L213", + "platformId": "U916Z2", + "id": "385387b0-5d0f-4789-b466-f17cf99f4e29" + }, + { + "routeId": "L911", + "platformId": "U916Z2", + "id": "a7e6fb9e-c6d6-412a-ab03-20d5e3032920" + }, + { + "routeId": "L122", + "platformId": "U916Z3", + "id": "dc1d0aba-c0f7-4456-828e-9b87bf14ceb2" + }, + { + "routeId": "L906", + "platformId": "U916Z3", + "id": "fd29e320-396d-461d-8153-a0eac6a6b5e5" + }, + { + "routeId": "L363", + "platformId": "U916Z3", + "id": "6cee5ec1-ae3f-46ce-8522-ddf479f089d0" + }, + { + "routeId": "L122", + "platformId": "U916Z4", + "id": "191964f9-ae27-477f-ae39-db90dc6554fe" + }, + { + "routeId": "L906", + "platformId": "U916Z4", + "id": "89d18b50-9d53-4097-900e-7fa466a047ae" + }, + { + "routeId": "L363", + "platformId": "U916Z4", + "id": "fa808f46-e1b7-4119-8bcf-dad8c0821e62" + }, + { + "routeId": "L467", + "platformId": "U9174Z1", + "id": "36017b4a-99cd-4d74-bccb-9e9aa1337bac" + }, + { + "routeId": "L668", + "platformId": "U9174Z1", + "id": "eb14906a-3dda-484a-a21e-34204fe90593" + }, + { + "routeId": "L467", + "platformId": "U9174Z2", + "id": "849e3143-9c26-40af-8e23-e15ae6f4221c" + }, + { + "routeId": "L668", + "platformId": "U9174Z2", + "id": "2777c14b-ec3e-46d8-a5d8-f0002de0e120" + }, + { + "routeId": "L467", + "platformId": "U9175Z1", + "id": "269fa3a7-42c8-4544-8348-abc8a2396094" + }, + { + "routeId": "L668", + "platformId": "U9175Z1", + "id": "ed110693-0357-4687-9cb2-8a1429b6c5fb" + }, + { + "routeId": "L467", + "platformId": "U9175Z2", + "id": "b153ada5-a65c-4f7d-a2bc-3a4df97282c8" + }, + { + "routeId": "L668", + "platformId": "U9175Z2", + "id": "3c29c011-00ab-4683-a6d3-8ede07ad893e" + }, + { + "routeId": "L467", + "platformId": "U9176Z1", + "id": "4abeadfc-f99b-4d06-906a-e93fd90e5194" + }, + { + "routeId": "L668", + "platformId": "U9176Z1", + "id": "c7ee2cd4-285a-4dda-b3d8-0387f2a9207f" + }, + { + "routeId": "L467", + "platformId": "U9176Z2", + "id": "58a260dd-8afd-4630-8369-d987176fb8a3" + }, + { + "routeId": "L668", + "platformId": "U9176Z2", + "id": "e499b622-7c13-482b-bf58-fb94cae430eb" + }, + { + "routeId": "L668", + "platformId": "U9177Z1", + "id": "753b63d0-e9e3-42cb-bb0f-3b9687d09f89" + }, + { + "routeId": "L668", + "platformId": "U9177Z2", + "id": "4e2b53c7-83e9-4bf7-80a2-a9f8e831d111" + }, + { + "routeId": "L668", + "platformId": "U9178Z1", + "id": "9054b2ab-303c-492d-a756-c064ffc85f8f" + }, + { + "routeId": "L668", + "platformId": "U9179Z1", + "id": "d5dab757-d5be-48c3-9904-46d3cda3dda5" + }, + { + "routeId": "L241", + "platformId": "U917Z1", + "id": "67ead563-425d-44ca-a204-555f8911cc7a" + }, + { + "routeId": "L129", + "platformId": "U917Z1", + "id": "29a083e0-f5e0-45d1-b00f-afa5f0dafe3e" + }, + { + "routeId": "L247", + "platformId": "U917Z1", + "id": "262f3206-8375-4682-b659-17a07d820899" + }, + { + "routeId": "L907", + "platformId": "U917Z1", + "id": "a8eade71-be78-4865-aa6e-4125704846a5" + }, + { + "routeId": "L318", + "platformId": "U917Z1", + "id": "1bc41b92-4ead-4ffc-b095-f6153fa4ad83" + }, + { + "routeId": "L241", + "platformId": "U917Z2", + "id": "16a26990-367d-4ec3-b506-e136f531d6f8" + }, + { + "routeId": "L129", + "platformId": "U917Z2", + "id": "f09a69ac-71ad-4ffd-a5c3-8ccbaba6bacd" + }, + { + "routeId": "L247", + "platformId": "U917Z2", + "id": "67cc754c-8ec8-4684-862b-f1494591a3a0" + }, + { + "routeId": "L907", + "platformId": "U917Z2", + "id": "20e55af5-ed38-4448-b139-d4848f1955b4" + }, + { + "routeId": "L318", + "platformId": "U917Z2", + "id": "227a577e-7b27-433c-b52c-57f530f259ee" + }, + { + "routeId": "L668", + "platformId": "U9180Z1", + "id": "1c3cf9dc-34cf-4156-856a-c57463f012b4" + }, + { + "routeId": "L696", + "platformId": "U9180Z1", + "id": "97ce0e9d-1a36-43f4-aecf-9402a6dc388d" + }, + { + "routeId": "L668", + "platformId": "U9180Z2", + "id": "ecc070f1-fac1-48f7-95dd-eb6d39f4fc82" + }, + { + "routeId": "L696", + "platformId": "U9180Z2", + "id": "aafe3a68-2e0b-4731-87e5-d339f47d2b4c" + }, + { + "routeId": "L668", + "platformId": "U9181Z1", + "id": "d41016ce-ed99-4c96-a9f1-5e9bafca329d" + }, + { + "routeId": "L696", + "platformId": "U9181Z1", + "id": "d8dda2e4-8ba0-411a-8516-cf93ccfe9a3e" + }, + { + "routeId": "L668", + "platformId": "U9182Z1", + "id": "09408ea8-1269-4ba7-8a69-2739588b8fbe" + }, + { + "routeId": "L695", + "platformId": "U9182Z1", + "id": "add214e3-49aa-4ab2-a452-553e38b45fc7" + }, + { + "routeId": "L696", + "platformId": "U9182Z1", + "id": "112c3465-bc3f-4b9b-abee-2e8132535198" + }, + { + "routeId": "L668", + "platformId": "U9183Z1", + "id": "9758015a-b71f-4b71-8137-3808545e8fd0" + }, + { + "routeId": "L696", + "platformId": "U9183Z1", + "id": "a9aa523f-2957-492b-b3d5-6ef736de798f" + }, + { + "routeId": "L668", + "platformId": "U9183Z2", + "id": "857a9bc6-13c3-44ec-b853-4c3de6f50ed7" + }, + { + "routeId": "L696", + "platformId": "U9183Z2", + "id": "a9fbda16-5940-4044-8623-766368675c79" + }, + { + "routeId": "L474", + "platformId": "U9184Z1", + "id": "4f69d70e-fcde-41b0-b3e4-48e7a5c2c90d" + }, + { + "routeId": "L474", + "platformId": "U9184Z2", + "id": "27c36ed6-404a-4f1d-9136-7261a293d0f1" + }, + { + "routeId": "L474", + "platformId": "U9185Z1", + "id": "d0977127-50e3-470f-ae46-9fe340137c75" + }, + { + "routeId": "L474", + "platformId": "U9185Z2", + "id": "f82dfa67-fe30-4656-bd58-370aa540d37e" + }, + { + "routeId": "L474", + "platformId": "U9186Z1", + "id": "c7d5f735-bbe9-44a3-8217-a6751f242ed2" + }, + { + "routeId": "L474", + "platformId": "U9186Z2", + "id": "d971a54d-4ce9-4244-856b-5ef5666a83e1" + }, + { + "routeId": "L474", + "platformId": "U9187Z1", + "id": "4e9a2fa7-95b1-4a1d-b25f-f0c75edf3a34" + }, + { + "routeId": "L474", + "platformId": "U9187Z2", + "id": "0cd4014b-2b11-4e2c-a13b-b9e99eb9616f" + }, + { + "routeId": "L474", + "platformId": "U9188Z1", + "id": "1141a628-14c6-4986-9650-9e603094c040" + }, + { + "routeId": "L474", + "platformId": "U9188Z2", + "id": "0c7f4c75-106e-41ad-b669-414f406420d4" + }, + { + "routeId": "L160", + "platformId": "U918Z1", + "id": "e3fa2c62-3914-4cbf-8b99-4ed9e7acffab" + }, + { + "routeId": "L902", + "platformId": "U918Z1", + "id": "f3126358-701c-4a6a-9138-8f1757ebc349" + }, + { + "routeId": "L355", + "platformId": "U918Z1", + "id": "3f3ad92a-5f5a-4a2b-9846-518cf72111e8" + }, + { + "routeId": "L160", + "platformId": "U918Z2", + "id": "f94f3f9a-ba55-4b60-8535-f591cb9c33ef" + }, + { + "routeId": "L902", + "platformId": "U918Z2", + "id": "24241873-9b47-4934-9f4d-17f1b38f0a6d" + }, + { + "routeId": "L355", + "platformId": "U918Z2", + "id": "300bbb3a-a7c7-462a-9875-21a02c8c7d9d" + }, + { + "routeId": "L474", + "platformId": "U9192Z1", + "id": "7531c561-2238-418f-8995-3af52ed7e114" + }, + { + "routeId": "L474", + "platformId": "U9192Z2", + "id": "af97ee1e-e1f7-46e3-9f45-9787c720c8a7" + }, + { + "routeId": "L474", + "platformId": "U9193Z1", + "id": "f206af56-8e9b-4f85-b2c3-3245fce7c970" + }, + { + "routeId": "L474", + "platformId": "U9193Z2", + "id": "0deecca8-2685-4a5a-92ff-2c930428608c" + }, + { + "routeId": "L474", + "platformId": "U9194Z1", + "id": "738c3ab4-73ed-4b09-9417-ebbe14a7cfbf" + }, + { + "routeId": "L474", + "platformId": "U9194Z2", + "id": "60884e7b-494b-4de1-b9b8-98fa6efa4a66" + }, + { + "routeId": "L474", + "platformId": "U9195Z1", + "id": "ab98fb27-1e6d-46ad-9f16-3eaf84b8133a" + }, + { + "routeId": "L474", + "platformId": "U9195Z2", + "id": "87b9b60d-e487-44c7-a6cc-abb958e40871" + }, + { + "routeId": "L474", + "platformId": "U9196Z1", + "id": "feeb96b3-f75e-4428-b301-9c7988973a69" + }, + { + "routeId": "L474", + "platformId": "U9196Z2", + "id": "84e06f53-b272-4193-bb24-3cfe93e1b3e1" + }, + { + "routeId": "L617", + "platformId": "U9197Z1", + "id": "6631ed33-02c4-4caf-ac4f-fa20f0b84d38" + }, + { + "routeId": "L617", + "platformId": "U9197Z2", + "id": "937b2a25-2167-4e41-9352-9d9521445770" + }, + { + "routeId": "L617", + "platformId": "U9198Z1", + "id": "da540ad7-ed2c-4ca7-9a30-f59de23b87ca" + }, + { + "routeId": "L617", + "platformId": "U9198Z2", + "id": "75c7de59-539c-40eb-bdac-e58222baa87f" + }, + { + "routeId": "L590", + "platformId": "U9199Z1", + "id": "7f959099-4d45-4103-aef4-fbb7d5305803" + }, + { + "routeId": "L590", + "platformId": "U9199Z2", + "id": "bc94983a-6d4d-46f4-b3fa-a5469996159d" + }, + { + "routeId": "L126", + "platformId": "U919Z1", + "id": "57c9d703-df5b-4027-bf83-991e83d4e8a9" + }, + { + "routeId": "L906", + "platformId": "U919Z1", + "id": "6f8ec2fa-98ab-44e6-b06c-5780c6658c9e" + }, + { + "routeId": "L126", + "platformId": "U919Z2", + "id": "1fd5b020-8b29-4a98-af91-a5dfe9b32af7" + }, + { + "routeId": "L906", + "platformId": "U919Z2", + "id": "a5bde905-9d2c-45e0-8051-1e4a290cf908" + }, + { + "routeId": "L154", + "platformId": "U91Z1", + "id": "3fbba92a-074a-437c-901c-90879d4587ae" + }, + { + "routeId": "L154", + "platformId": "U91Z2", + "id": "702c370a-79ce-4d0c-8999-8dbb8712eae4" + }, + { + "routeId": "L650", + "platformId": "U9200Z1", + "id": "b5777775-3bbd-4ac5-aa6a-e4341ff4af47" + }, + { + "routeId": "L650", + "platformId": "U9200Z2", + "id": "7f37e15a-edf4-478e-90a1-ae193a09a7f7" + }, + { + "routeId": "L590", + "platformId": "U9201Z1", + "id": "1e60f183-78e0-4141-a044-b7c578a6aaf9" + }, + { + "routeId": "L590", + "platformId": "U9201Z2", + "id": "5ad74cb7-44ad-41c4-bd0e-ce71532fa2a8" + }, + { + "routeId": "L650", + "platformId": "U9202Z1", + "id": "38612557-5917-490e-be4d-2d9ed7d93f86" + }, + { + "routeId": "L650", + "platformId": "U9202Z2", + "id": "6a19d72d-fa57-4d4b-a0bb-25f7043a8b16" + }, + { + "routeId": "L590", + "platformId": "U9202Z3", + "id": "0d4f8c55-500e-4673-93a1-8b74a38e2ea3" + }, + { + "routeId": "L590", + "platformId": "U9202Z4", + "id": "4595828e-df42-4cc9-bb2f-d60db7ce613e" + }, + { + "routeId": "L590", + "platformId": "U9203Z1", + "id": "6f910a2b-68cf-4b5e-a7c5-99c50e60eab6" + }, + { + "routeId": "L590", + "platformId": "U9203Z2", + "id": "b86d819d-6827-402e-a2d1-d9b1c4d42665" + }, + { + "routeId": "L590", + "platformId": "U9207Z1", + "id": "cbe0e656-2e37-4ffe-9d1e-e02e13ebfbba" + }, + { + "routeId": "L590", + "platformId": "U9207Z2", + "id": "eea2c73b-e186-462f-93fe-5d54b240e9e5" + }, + { + "routeId": "L590", + "platformId": "U9209Z1", + "id": "a3ec8de8-8ebd-45fa-befe-59ef34572fa2" + }, + { + "routeId": "L590", + "platformId": "U9209Z2", + "id": "67ea715c-c223-458d-90fc-0523c7db494c" + }, + { + "routeId": "L590", + "platformId": "U9211Z51", + "id": "c4ce1814-69bc-46ea-8fd0-38ba5114badb" + }, + { + "routeId": "L590", + "platformId": "U9211Z52", + "id": "60a03b0b-8d9b-4fb1-b7a3-eaec5d4feb15" + }, + { + "routeId": "L311", + "platformId": "U9217Z1", + "id": "a8115fae-8ca3-48e8-968c-7ae0d7813a5c" + }, + { + "routeId": "L311", + "platformId": "U9217Z2", + "id": "4f0bf553-23e4-47f4-8a6c-e4bf29eabd2b" + }, + { + "routeId": "L7", + "platformId": "U921Z1", + "id": "edba40e6-3906-4e0c-bcf7-3597d1a400ac" + }, + { + "routeId": "L16", + "platformId": "U921Z1", + "id": "a0b84cc0-8c0c-49c0-a923-ef9b50ca74f4" + }, + { + "routeId": "L26", + "platformId": "U921Z1", + "id": "8949af65-c624-4739-93f6-e90198c8dff6" + }, + { + "routeId": "L91", + "platformId": "U921Z1", + "id": "74d25dcd-72da-41c7-9575-85a9d9aba0cc" + }, + { + "routeId": "L124", + "platformId": "U921Z1", + "id": "a15f722d-3926-4925-86d9-d2ecd013d989" + }, + { + "routeId": "L139", + "platformId": "U921Z1", + "id": "45fd911b-623e-4014-a337-9ff8ba17d0d4" + }, + { + "routeId": "L150", + "platformId": "U921Z1", + "id": "5808abf4-1873-4817-a725-32940e2f0f12" + }, + { + "routeId": "L213", + "platformId": "U921Z1", + "id": "bc735d0c-f1a4-452e-b801-010631951fdb" + }, + { + "routeId": "L124", + "platformId": "U921Z10", + "id": "8fc43af6-82f8-4f7b-99ea-c6f6de32cfda" + }, + { + "routeId": "L139", + "platformId": "U921Z10", + "id": "c5029d37-6291-438c-b790-f56947c0a7d0" + }, + { + "routeId": "L150", + "platformId": "U921Z10", + "id": "450d52cb-70f3-4a81-af9f-1acc3932ffaa" + }, + { + "routeId": "L213", + "platformId": "U921Z10", + "id": "5cfaea0b-ee57-4b49-920e-6c0f47561e03" + }, + { + "routeId": "L991", + "platformId": "U921Z101", + "id": "035d7f30-b017-4fcb-9c91-673ccc6423a5" + }, + { + "routeId": "L991", + "platformId": "U921Z102", + "id": "4c7555c3-657d-4f32-87d4-0de64a4193aa" + }, + { + "routeId": "L7", + "platformId": "U921Z12", + "id": "2c791aee-6ebb-427f-aa59-8d6b3891361d" + }, + { + "routeId": "L10", + "platformId": "U921Z12", + "id": "c9f08528-bcb5-467f-b0fd-52a0b457cd25" + }, + { + "routeId": "L11", + "platformId": "U921Z12", + "id": "5d20b067-a514-467b-a17c-bb590c39825a" + }, + { + "routeId": "L26", + "platformId": "U921Z12", + "id": "7f99378a-18ee-44b8-b661-4a51951db695" + }, + { + "routeId": "L98", + "platformId": "U921Z12", + "id": "aa99a3d3-bb62-4789-8796-e8db35f21e8a" + }, + { + "routeId": "L7", + "platformId": "U921Z2", + "id": "5a28f076-a96c-438b-b8dc-8d53ce1d605a" + }, + { + "routeId": "L16", + "platformId": "U921Z2", + "id": "94698bd4-f723-4c1a-968d-570d3f7c523c" + }, + { + "routeId": "L26", + "platformId": "U921Z2", + "id": "3e97e105-2544-45cf-9e13-44a63d68a401" + }, + { + "routeId": "L91", + "platformId": "U921Z2", + "id": "4b53e511-ec9b-450f-bff7-7db0b395a820" + }, + { + "routeId": "L10", + "platformId": "U921Z3", + "id": "c63188e3-8903-4865-ab2f-df8e807ff34c" + }, + { + "routeId": "L11", + "platformId": "U921Z3", + "id": "b9e8cedb-ce5d-4097-97a3-c7c261a70cce" + }, + { + "routeId": "L16", + "platformId": "U921Z3", + "id": "1ae485dc-356f-4266-8052-876cbcb61149" + }, + { + "routeId": "L91", + "platformId": "U921Z3", + "id": "5d399587-3458-4bec-befd-e9c4aeffbcdc" + }, + { + "routeId": "L98", + "platformId": "U921Z3", + "id": "61b82460-41a2-4e03-92b5-99581c6b5ae4" + }, + { + "routeId": "L10", + "platformId": "U921Z4", + "id": "99807b23-d69b-41af-b63f-cde0923fb742" + }, + { + "routeId": "L11", + "platformId": "U921Z4", + "id": "126090d7-3635-457c-8ce9-4604f9076150" + }, + { + "routeId": "L16", + "platformId": "U921Z4", + "id": "fb303873-f447-4ad9-9adb-8b9f7992c40c" + }, + { + "routeId": "L91", + "platformId": "U921Z4", + "id": "f946fdf8-f0d8-4a00-afb8-56e74c936d78" + }, + { + "routeId": "L98", + "platformId": "U921Z4", + "id": "85582cda-aadd-4d57-a50e-8236fd91167e" + }, + { + "routeId": "L199", + "platformId": "U921Z5", + "id": "05a866b3-a8e1-4bc1-83af-bc9c129cdf07" + }, + { + "routeId": "L199", + "platformId": "U921Z6", + "id": "86fb1996-cd94-4d2a-805e-e0836cde3077" + }, + { + "routeId": "L188", + "platformId": "U921Z6", + "id": "4b0013f0-e9a9-4766-a70f-b8d388d23da4" + }, + { + "routeId": "L146", + "platformId": "U921Z6", + "id": "6a08130f-20c1-4422-9dbd-05d30e49fef7" + }, + { + "routeId": "L155", + "platformId": "U921Z6", + "id": "6255dd41-ac77-4c2f-a539-ee41bda98803" + }, + { + "routeId": "L124", + "platformId": "U921Z7", + "id": "ba2419d9-91cc-400b-82db-b7cc72c7150f" + }, + { + "routeId": "L139", + "platformId": "U921Z7", + "id": "aac2b107-6fa5-45ad-9ab1-197614275eb0" + }, + { + "routeId": "L150", + "platformId": "U921Z7", + "id": "66ff97bb-de82-4708-a31d-37c97eae311d" + }, + { + "routeId": "L213", + "platformId": "U921Z7", + "id": "26fef435-453f-40f8-b709-22a09d200e35" + }, + { + "routeId": "L199", + "platformId": "U921Z9", + "id": "148a9498-9f24-4cc0-804a-f8a2d7a13457" + }, + { + "routeId": "L188", + "platformId": "U921Z9", + "id": "b2ded1c9-abee-4500-8d15-cbb7627d9428" + }, + { + "routeId": "L146", + "platformId": "U921Z9", + "id": "25946937-d444-4f7c-9c72-18c3637a1ffb" + }, + { + "routeId": "L155", + "platformId": "U921Z9", + "id": "56ff6d48-966d-47eb-8188-f812da2a87be" + }, + { + "routeId": "L389", + "platformId": "U9225Z1", + "id": "f18d82b5-c7a3-402b-8dfd-e01955f8203a" + }, + { + "routeId": "L389", + "platformId": "U9225Z2", + "id": "ac7a9dcc-524c-4075-97c5-e1a1e2ebb635" + }, + { + "routeId": "L389", + "platformId": "U9226Z1", + "id": "b398675e-0aad-4040-9078-992a70f5e4d5" + }, + { + "routeId": "L389", + "platformId": "U9226Z2", + "id": "845fc163-12cb-4bed-8fcf-35830e057992" + }, + { + "routeId": "L389", + "platformId": "U9227Z1", + "id": "2517167d-63d6-4804-8d74-1dad1a18a396" + }, + { + "routeId": "L389", + "platformId": "U9227Z2", + "id": "17c9e357-aa7b-4c76-98fa-209db18680aa" + }, + { + "routeId": "L389", + "platformId": "U9229Z1", + "id": "47d4d3ae-7332-40a1-9ce9-2173ed85f045" + }, + { + "routeId": "L389", + "platformId": "U9229Z2", + "id": "fa468d70-ceda-48e2-80ac-e13d8198f83e" + }, + { + "routeId": "L137", + "platformId": "U922Z3", + "id": "ed8b53eb-ac99-4529-b2f1-1eb42e7b17c4" + }, + { + "routeId": "L908", + "platformId": "U922Z3", + "id": "39d481fd-3d27-41de-b24d-4c1f15f44a47" + }, + { + "routeId": "L389", + "platformId": "U9231Z1", + "id": "c3da4157-f1b9-451d-a6a6-8a1aff2a81df" + }, + { + "routeId": "L389", + "platformId": "U9231Z2", + "id": "e1b59350-4ece-4a53-816f-9ad13b74bf92" + }, + { + "routeId": "L389", + "platformId": "U9232Z1", + "id": "892bac29-03c9-4e01-aec8-d97fa9baca6b" + }, + { + "routeId": "L389", + "platformId": "U9232Z2", + "id": "17f3d853-4198-41c2-be35-d47f0b06d63a" + }, + { + "routeId": "L389", + "platformId": "U9233Z1", + "id": "44f50b09-f177-4d0f-bc02-7dc46270867b" + }, + { + "routeId": "L389", + "platformId": "U9233Z2", + "id": "a19db3a6-d4d8-40bb-a404-5e13db8081e4" + }, + { + "routeId": "L116", + "platformId": "U923Z1", + "id": "7b4a7610-29ac-49fd-9ba5-382177dc7dc7" + }, + { + "routeId": "L116", + "platformId": "U923Z2", + "id": "4054c9b7-e0b6-4e16-b3a7-53e3875c293f" + }, + { + "routeId": "L580", + "platformId": "U9244Z1", + "id": "8fe1c645-395d-4947-9350-3d539806cb05" + }, + { + "routeId": "L580", + "platformId": "U9244Z2", + "id": "93866a6e-3f90-4310-bdfb-81dded782c9e" + }, + { + "routeId": "L580", + "platformId": "U9246Z1", + "id": "2ad2fd46-e41a-4391-8518-ca5fdf3aaba5" + }, + { + "routeId": "L580", + "platformId": "U9246Z2", + "id": "862d2ac6-2894-4ca5-bbfc-9150b96ac742" + }, + { + "routeId": "L580", + "platformId": "U9248Z1", + "id": "58ec4fe6-81bf-4a0b-86ce-5fc00637618d" + }, + { + "routeId": "L580", + "platformId": "U9248Z2", + "id": "114c8433-042a-4bd9-8aa4-67ca59141fe0" + }, + { + "routeId": "L580", + "platformId": "U9249Z1", + "id": "74cfc871-78a0-4d34-aabb-737bf91df6b9" + }, + { + "routeId": "L580", + "platformId": "U9249Z2", + "id": "26507443-3a7e-4624-801f-e8c4fdbcce69" + }, + { + "routeId": "L102", + "platformId": "U924Z1", + "id": "6ed0778c-13a4-48d0-9efb-d81bfc5e17c7" + }, + { + "routeId": "L144", + "platformId": "U924Z1", + "id": "a8c66eb6-1d62-450e-8901-e9716c9b44aa" + }, + { + "routeId": "L905", + "platformId": "U924Z1", + "id": "4849711d-61ce-47b3-abb3-dbc49b7258f3" + }, + { + "routeId": "L102", + "platformId": "U924Z2", + "id": "d8cc1785-30cb-45bb-98b0-fbfe57385f03" + }, + { + "routeId": "L144", + "platformId": "U924Z2", + "id": "30eee16f-7533-4932-821c-c6050b178c98" + }, + { + "routeId": "L905", + "platformId": "U924Z2", + "id": "7ca2a832-3835-4f2e-b576-9599d2dbe47a" + }, + { + "routeId": "L580", + "platformId": "U9250Z1", + "id": "5bef9d89-a856-4918-952d-b9944fe39fa6" + }, + { + "routeId": "L580", + "platformId": "U9250Z2", + "id": "cdabbf65-1786-4ab6-bbc6-3dcf6a00806f" + }, + { + "routeId": "L580", + "platformId": "U9252Z1", + "id": "e170b339-7663-4184-a341-d9c573ce6ceb" + }, + { + "routeId": "L580", + "platformId": "U9252Z2", + "id": "ebceb54c-b169-43e9-9ca3-8653018928ac" + }, + { + "routeId": "L587", + "platformId": "U9252Z2", + "id": "e7026dd0-6c97-4ecb-8714-d311e7c83c37" + }, + { + "routeId": "L587", + "platformId": "U9253Z1", + "id": "035d3472-e342-417b-83d7-71e1f9175847" + }, + { + "routeId": "L580", + "platformId": "U9254Z1", + "id": "45f7e292-e599-4a63-a44b-b2a161d00813" + }, + { + "routeId": "L580", + "platformId": "U9254Z2", + "id": "22f8b73c-210c-4595-ae72-e8d3233dbb48" + }, + { + "routeId": "L580", + "platformId": "U9256Z1", + "id": "963a24da-f88b-4c90-87e7-0705ee9d695a" + }, + { + "routeId": "L580", + "platformId": "U9256Z2", + "id": "4fb282d1-9777-4f3e-9abc-25ecc6d01090" + }, + { + "routeId": "L587", + "platformId": "U9256Z2", + "id": "6d439f30-16d0-4106-a9d1-4b28b315de5f" + }, + { + "routeId": "L580", + "platformId": "U9257Z1", + "id": "182bc7dd-dc8f-48f3-82c8-5552ddd78013" + }, + { + "routeId": "L580", + "platformId": "U9257Z2", + "id": "000e0935-86ae-484f-803a-ab5601f80c3b" + }, + { + "routeId": "L580", + "platformId": "U9258Z1", + "id": "17c6caea-91b2-462b-b679-b1393b8c3891" + }, + { + "routeId": "L580", + "platformId": "U9258Z2", + "id": "f5ec7948-1c8c-4325-9c42-193bbbdb054f" + }, + { + "routeId": "L587", + "platformId": "U9259Z1", + "id": "41f6a532-87a8-42d1-90d8-11931e00a745" + }, + { + "routeId": "L102", + "platformId": "U925Z1", + "id": "ee04fe07-537b-42a7-961b-5254ed87fa9b" + }, + { + "routeId": "L144", + "platformId": "U925Z1", + "id": "9e5057b7-0009-44c1-90b2-8ee96cabd2b1" + }, + { + "routeId": "L905", + "platformId": "U925Z1", + "id": "4d095cb3-c9f0-4b06-b9f2-f06ccf865386" + }, + { + "routeId": "L102", + "platformId": "U925Z2", + "id": "076994e7-eb11-4aff-8f31-b6dd300a92d4" + }, + { + "routeId": "L144", + "platformId": "U925Z2", + "id": "9ad94c50-7824-4289-b39c-ef1ba9b7a84c" + }, + { + "routeId": "L905", + "platformId": "U925Z2", + "id": "01fe8e72-c23e-46c8-9ba8-cda2cf4e5496" + }, + { + "routeId": "L590", + "platformId": "U9265Z1", + "id": "fcfe9d1b-9cf2-4310-a234-129067c9de00" + }, + { + "routeId": "L590", + "platformId": "U9265Z2", + "id": "4d02da09-b53a-442c-a40a-7cc8b498c714" + }, + { + "routeId": "L590", + "platformId": "U9266Z1", + "id": "b08df1a2-ea68-4365-939e-ac3bd5e0b652" + }, + { + "routeId": "L590", + "platformId": "U9266Z2", + "id": "3a4fb301-fc55-4934-b5eb-3a87a41e0825" + }, + { + "routeId": "L590", + "platformId": "U9267Z1", + "id": "20039c59-d6c3-43ea-83a6-5dfee99b4be1" + }, + { + "routeId": "L590", + "platformId": "U9267Z2", + "id": "a548c616-2a87-4431-98c3-9ab4444c3058" + }, + { + "routeId": "L650", + "platformId": "U9268Z1", + "id": "c71df42f-c0c5-4809-b1ed-1b6d50464aca" + }, + { + "routeId": "L650", + "platformId": "U9268Z2", + "id": "7bbe4919-259b-416e-bef9-817dfe6a0e28" + }, + { + "routeId": "L590", + "platformId": "U9269Z1", + "id": "7f886767-7bd9-4beb-bb68-af62ac7fe970" + }, + { + "routeId": "L650", + "platformId": "U9269Z1", + "id": "67c323e4-1c0b-4120-b3ee-fad15b5ca8df" + }, + { + "routeId": "L590", + "platformId": "U9269Z2", + "id": "22b11e72-af02-43fb-afdc-94f6519e1f34" + }, + { + "routeId": "L650", + "platformId": "U9269Z2", + "id": "623409d0-a708-4f0f-ab30-924893f54576" + }, + { + "routeId": "L209", + "platformId": "U926Z1", + "id": "833fc88a-e344-46a0-b143-a4c57725157b" + }, + { + "routeId": "L221", + "platformId": "U926Z1", + "id": "4c181436-d04b-440f-a430-dfa27146549d" + }, + { + "routeId": "L209", + "platformId": "U926Z2", + "id": "23f97c59-7205-4229-9e12-255c933e0add" + }, + { + "routeId": "L221", + "platformId": "U926Z2", + "id": "f06995bc-d54b-4cbb-8767-a1a89807d3fe" + }, + { + "routeId": "L650", + "platformId": "U9272Z1", + "id": "9990dffc-4c58-4a61-ba46-b914f7f4f40c" + }, + { + "routeId": "L650", + "platformId": "U9272Z2", + "id": "2452a996-79ea-4b2e-b05f-4459bebc3117" + }, + { + "routeId": "L590", + "platformId": "U9274Z1", + "id": "9e644b94-0fdf-4757-a426-ddb795dab206" + }, + { + "routeId": "L590", + "platformId": "U9274Z2", + "id": "5edbda28-696d-4a87-8e2f-1365ee4cbcd5" + }, + { + "routeId": "L627", + "platformId": "U9275Z1", + "id": "fb079fea-4731-468e-9d2f-a94eb060ab78" + }, + { + "routeId": "L627", + "platformId": "U9275Z2", + "id": "2dafeaec-f742-40b2-9b09-95ce02c7cefd" + }, + { + "routeId": "L627", + "platformId": "U9276Z1", + "id": "3b91d0fe-8b2c-4282-9d7e-955963198d6a" + }, + { + "routeId": "L627", + "platformId": "U9276Z2", + "id": "0f93e91b-fc86-4553-9f4b-af7c402546c7" + }, + { + "routeId": "L580", + "platformId": "U9279Z1", + "id": "e4b3abfe-728a-4792-b1e2-07c0310b3539" + }, + { + "routeId": "L580", + "platformId": "U9279Z2", + "id": "66780973-2e78-4281-bd17-4516a1f896e6" + }, + { + "routeId": "L139", + "platformId": "U927Z1", + "id": "a9bde0b3-16d8-4722-a746-d6aeb986abdd" + }, + { + "routeId": "L150", + "platformId": "U927Z1", + "id": "d2d0a9a7-74a6-4ca3-88db-87ec0cac6824" + }, + { + "routeId": "L190", + "platformId": "U927Z1", + "id": "37f99602-86cf-4aeb-84e1-788468eb82ea" + }, + { + "routeId": "L910", + "platformId": "U927Z1", + "id": "619da615-f559-472d-b15b-44a1d74e50d8" + }, + { + "routeId": "L139", + "platformId": "U927Z2", + "id": "3a4554b1-5b8c-4e41-ad5b-884703bf6c3b" + }, + { + "routeId": "L150", + "platformId": "U927Z2", + "id": "97446b34-e83b-4d13-8cb8-7afc84d6b3a4" + }, + { + "routeId": "L190", + "platformId": "U927Z2", + "id": "8541c7d9-c631-4823-a405-a0bd7acc123c" + }, + { + "routeId": "L910", + "platformId": "U927Z2", + "id": "0553974e-bfe3-4acb-b0cf-821ba8974683" + }, + { + "routeId": "L117", + "platformId": "U927Z2", + "id": "6f42798e-b7c4-46c7-8142-25659bac1faa" + }, + { + "routeId": "L627", + "platformId": "U9280Z1", + "id": "b7e41042-9275-4188-8b66-f74fcd3608a4" + }, + { + "routeId": "L627", + "platformId": "U9280Z2", + "id": "72475983-a5bd-4096-943d-43308e7ca90a" + }, + { + "routeId": "L627", + "platformId": "U9281Z1", + "id": "2b74f4be-2e58-4eec-8b7c-ac0005614644" + }, + { + "routeId": "L627", + "platformId": "U9281Z2", + "id": "b1174b91-fe83-4f46-bccf-e5eef3810af9" + }, + { + "routeId": "L627", + "platformId": "U9282Z1", + "id": "843db4f3-d82c-4b5a-9c53-7946399a347b" + }, + { + "routeId": "L627", + "platformId": "U9282Z2", + "id": "3df2092e-0ef2-4a75-8f4a-01ad3174c80b" + }, + { + "routeId": "L627", + "platformId": "U9283Z1", + "id": "16f7aec4-8d76-4685-9f3f-bde43c46e250" + }, + { + "routeId": "L627", + "platformId": "U9283Z2", + "id": "c47080e6-d1b0-42e5-97c9-cccd5885a3d5" + }, + { + "routeId": "L627", + "platformId": "U9286Z1", + "id": "9044a1ab-1062-42fd-9701-83cfd8e02958" + }, + { + "routeId": "L627", + "platformId": "U9286Z2", + "id": "359bef13-60de-43c3-b819-eaaeddfe895d" + }, + { + "routeId": "L627", + "platformId": "U9287Z1", + "id": "12436772-f968-400f-8bd0-396aadcc9fa0" + }, + { + "routeId": "L618", + "platformId": "U9288Z1", + "id": "30391258-e8d3-42a6-87cd-2a468fca9a74" + }, + { + "routeId": "L590", + "platformId": "U9288Z1", + "id": "50178b51-315e-43eb-81dd-6f34bc49b57f" + }, + { + "routeId": "L618", + "platformId": "U9288Z2", + "id": "507d627e-984e-484c-b508-e402fafabe02" + }, + { + "routeId": "L590", + "platformId": "U9288Z2", + "id": "1272ac4b-59f2-40e4-8935-c1108a541a2c" + }, + { + "routeId": "L618", + "platformId": "U9289Z1", + "id": "5feefac4-b81e-4318-8321-bfe6eeebb0ce" + }, + { + "routeId": "L590", + "platformId": "U9289Z1", + "id": "d86a81b9-1b1f-4e74-a0de-617fa6835f20" + }, + { + "routeId": "L618", + "platformId": "U9289Z2", + "id": "3457d91a-efff-416b-844f-69758e65876f" + }, + { + "routeId": "L590", + "platformId": "U9289Z2", + "id": "e1167768-e45f-4a21-ad71-0982842c2b39" + }, + { + "routeId": "L139", + "platformId": "U928Z1", + "id": "4d7ba27f-e039-480e-afe3-c17b81b2d3f5" + }, + { + "routeId": "L150", + "platformId": "U928Z1", + "id": "c0432932-a3f7-4f68-8123-717873324f31" + }, + { + "routeId": "L190", + "platformId": "U928Z1", + "id": "b809336b-c102-4064-861e-364c74f2e3a1" + }, + { + "routeId": "L910", + "platformId": "U928Z1", + "id": "fbe76de6-8a13-40a4-ac32-89424ecf686f" + }, + { + "routeId": "L139", + "platformId": "U928Z2", + "id": "75d3d15f-35b7-4af6-8a27-4e71bc1c506b" + }, + { + "routeId": "L150", + "platformId": "U928Z2", + "id": "b5368df3-674c-4f91-a02f-953aae0aa49c" + }, + { + "routeId": "L190", + "platformId": "U928Z2", + "id": "cd209595-548d-4df9-8e64-e6c4bc8f91ef" + }, + { + "routeId": "L910", + "platformId": "U928Z2", + "id": "410423bd-8e5b-4bfc-9cbb-70f88fe82bef" + }, + { + "routeId": "L417", + "platformId": "U9290Z1", + "id": "07b12629-9ff9-4f48-be2b-c6463b09375b" + }, + { + "routeId": "L618", + "platformId": "U9290Z2", + "id": "d962bd5a-dc1e-4178-a11c-646c1dbdd020" + }, + { + "routeId": "L365", + "platformId": "U9290Z2", + "id": "7b7888cc-cda0-4ed0-9c66-13040d4ebd75" + }, + { + "routeId": "L618", + "platformId": "U9291Z1", + "id": "bd21a687-ecdc-4988-8f9e-71590d7ba350" + }, + { + "routeId": "L365", + "platformId": "U9291Z1", + "id": "14112dba-b343-4ed7-94dd-a8192a0918e9" + }, + { + "routeId": "L600", + "platformId": "U9291Z1", + "id": "ac0b7be9-ffac-4458-814b-66a79b9bf807" + }, + { + "routeId": "L619", + "platformId": "U9291Z1", + "id": "1ce9af97-85e4-47de-916b-ec13e2e03334" + }, + { + "routeId": "L417", + "platformId": "U9291Z1", + "id": "2395bd08-0b2e-466e-8172-2fb50d0fcea4" + }, + { + "routeId": "L417", + "platformId": "U9291Z2", + "id": "7e0b46cc-aa9e-4d24-856c-6c1dd214d51a" + }, + { + "routeId": "L618", + "platformId": "U9291Z2", + "id": "55b0155f-bf52-4ace-b78c-d9c23ba104ea" + }, + { + "routeId": "L365", + "platformId": "U9291Z2", + "id": "896745b9-87da-48a5-aab4-7cc5c66287a2" + }, + { + "routeId": "L600", + "platformId": "U9291Z2", + "id": "23071cd7-71e5-4d86-9543-8842ee93a306" + }, + { + "routeId": "L619", + "platformId": "U9291Z2", + "id": "2be35ded-9f05-4f94-880f-328bdda1414b" + }, + { + "routeId": "L619", + "platformId": "U9291Z3", + "id": "004b30d1-56b7-4a5c-9567-4a7bd4633737" + }, + { + "routeId": "L415", + "platformId": "U9291Z3", + "id": "20c973f7-4fe4-4f31-bcfd-15e21d99f0ee" + }, + { + "routeId": "L590", + "platformId": "U9291Z3", + "id": "e989c979-c1ee-4494-bc7f-18b30f27a830" + }, + { + "routeId": "L619", + "platformId": "U9291Z4", + "id": "4c237884-02a2-4d0f-8c28-67445249d4c5" + }, + { + "routeId": "L415", + "platformId": "U9291Z4", + "id": "54dba3c7-3f9d-44de-a7be-4ee164115b39" + }, + { + "routeId": "L590", + "platformId": "U9291Z4", + "id": "31778b2b-9a94-45e0-a24f-8fb7b2ea54d9" + }, + { + "routeId": "L304", + "platformId": "U9291Z5", + "id": "282cd5da-a054-4a96-b475-1a26707d95cf" + }, + { + "routeId": "L305", + "platformId": "U9291Z5", + "id": "13a18d15-d276-4ec2-9843-4b0f8487c755" + }, + { + "routeId": "L577", + "platformId": "U9291Z5", + "id": "3aaafd42-2535-4fab-adb2-76ac65f72a30" + }, + { + "routeId": "L305", + "platformId": "U9291Z6", + "id": "6ba1c056-8bd5-42f4-be0b-c011f94fdc52" + }, + { + "routeId": "L304", + "platformId": "U9291Z6", + "id": "7a36794a-ab8b-445b-9ee3-928393520fed" + }, + { + "routeId": "L577", + "platformId": "U9291Z6", + "id": "96ef924d-2994-4ed1-8eb3-b915a4b8f4e0" + }, + { + "routeId": "L618", + "platformId": "U9292Z1", + "id": "28ada4b4-bdf4-4501-b738-cd5103bc0490" + }, + { + "routeId": "L365", + "platformId": "U9292Z1", + "id": "70e3678b-e740-49a3-a36b-2d5180e0b124" + }, + { + "routeId": "L590", + "platformId": "U9292Z1", + "id": "b787a95b-9e1b-4782-a01d-409e1cd60ee7" + }, + { + "routeId": "L417", + "platformId": "U9292Z2", + "id": "64a0f5fb-d2a7-4694-8339-29689250dac8" + }, + { + "routeId": "L618", + "platformId": "U9292Z2", + "id": "2e119bdf-9080-46af-a937-6d1094dc82e9" + }, + { + "routeId": "L365", + "platformId": "U9292Z2", + "id": "5c8c58e4-2638-496b-a6aa-f6405a063ec9" + }, + { + "routeId": "L590", + "platformId": "U9292Z2", + "id": "75580098-25c2-43b3-a801-bf2253d41424" + }, + { + "routeId": "L618", + "platformId": "U9293Z1", + "id": "b535e754-5129-4d18-8b41-94502b857410" + }, + { + "routeId": "L365", + "platformId": "U9293Z1", + "id": "de84ffbf-5460-4ea1-abc3-c7320102871e" + }, + { + "routeId": "L417", + "platformId": "U9293Z1", + "id": "34e7b31c-7331-4fd4-b3dc-f0d4d7936723" + }, + { + "routeId": "L590", + "platformId": "U9293Z1", + "id": "3ade6219-bf53-4e38-a7f3-af065087a558" + }, + { + "routeId": "L417", + "platformId": "U9293Z2", + "id": "acff7c0e-caa5-43d0-88bf-9ec68ec8c38a" + }, + { + "routeId": "L618", + "platformId": "U9293Z2", + "id": "518c91d7-6836-4e0e-adbb-344d75f7d8ab" + }, + { + "routeId": "L365", + "platformId": "U9293Z2", + "id": "0a305c29-f1d4-41a4-b8a4-dcc5f06868e3" + }, + { + "routeId": "L590", + "platformId": "U9293Z2", + "id": "a75e27e5-1da0-4b99-a540-a15dd58d7808" + }, + { + "routeId": "L467", + "platformId": "U9295Z1", + "id": "c5b4c117-46a1-4b79-818f-dd0b2718e414" + }, + { + "routeId": "L467", + "platformId": "U9295Z2", + "id": "85da71d8-6927-41a6-9d34-c574eecca8f6" + }, + { + "routeId": "L467", + "platformId": "U9296Z1", + "id": "bff6912c-7f27-40a0-9756-aab5430df551" + }, + { + "routeId": "L467", + "platformId": "U9296Z2", + "id": "46cf03d9-1525-4378-8e07-655e675c77af" + }, + { + "routeId": "L467", + "platformId": "U9297Z1", + "id": "50a272ba-a620-4de0-9ced-8bc9284d0b5d" + }, + { + "routeId": "L467", + "platformId": "U9297Z2", + "id": "3103f958-1e3b-4c75-a2aa-804379a46f03" + }, + { + "routeId": "L467", + "platformId": "U9298Z1", + "id": "c1b7714e-cc69-4f16-8661-89eddd368855" + }, + { + "routeId": "L467", + "platformId": "U9298Z2", + "id": "8f4727c6-8742-49e1-8a7f-cc6e58e5d5f9" + }, + { + "routeId": "L731", + "platformId": "U9299Z1", + "id": "6d72430a-5a8f-4977-8aba-fe9dffcfdf7f" + }, + { + "routeId": "L467", + "platformId": "U9299Z1", + "id": "e3077886-7ee3-4051-92f1-8cea93af6767" + }, + { + "routeId": "L731", + "platformId": "U9299Z2", + "id": "c8af60d9-b7e3-4d88-80ed-8cfc246f95f0" + }, + { + "routeId": "L467", + "platformId": "U9299Z2", + "id": "4758a15b-c869-4d84-865e-09b9ef330b45" + }, + { + "routeId": "L17", + "platformId": "U929Z1", + "id": "5e0c403e-b638-4646-8609-2bf028e0f8ba" + }, + { + "routeId": "L27", + "platformId": "U929Z1", + "id": "69de8de2-7a8c-4c97-bfec-90c4ce1cc382" + }, + { + "routeId": "L92", + "platformId": "U929Z1", + "id": "2c6bde78-fc67-445f-b9fe-71444b2057b7" + }, + { + "routeId": "L17", + "platformId": "U929Z2", + "id": "996c2652-433f-4618-ab2b-3c71cfc90d96" + }, + { + "routeId": "L27", + "platformId": "U929Z2", + "id": "1bbee1d6-69d8-4720-905e-78b823ab9d49" + }, + { + "routeId": "L92", + "platformId": "U929Z2", + "id": "06cd5ad0-2b32-4b6e-8ae4-3c8ced3a2c89" + }, + { + "routeId": "L150", + "platformId": "U929Z4", + "id": "7c5a12fa-3b28-4d02-9142-914be832d189" + }, + { + "routeId": "L190", + "platformId": "U929Z4", + "id": "9b064cfe-3bf6-4e22-a7b8-4b84a33da238" + }, + { + "routeId": "L246", + "platformId": "U929Z4", + "id": "96a2e675-6ae4-4a1d-86fa-fe38fe9fda03" + }, + { + "routeId": "L910", + "platformId": "U929Z4", + "id": "a7a73f95-decd-4c3b-9b63-f642e03efaa5" + }, + { + "routeId": "L117", + "platformId": "U929Z4", + "id": "4efe59e2-828c-4b33-9a78-dc09ec08e856" + }, + { + "routeId": "L150", + "platformId": "U929Z5", + "id": "5c0678f0-7d67-40f3-a17e-eb6edb0f0a3d" + }, + { + "routeId": "L190", + "platformId": "U929Z5", + "id": "595ce86a-6a0d-4722-ad32-aae927be3837" + }, + { + "routeId": "L246", + "platformId": "U929Z5", + "id": "d55f9866-e6df-4c17-b22c-42368d4d4b93" + }, + { + "routeId": "L910", + "platformId": "U929Z5", + "id": "2f0b2ed5-302c-442b-8a2a-9fe6387952d2" + }, + { + "routeId": "L117", + "platformId": "U929Z5", + "id": "e61518c2-d5b0-4602-92a0-31aa59df75b0" + }, + { + "routeId": "L162", + "platformId": "U92Z1", + "id": "92d8ca27-9576-44b9-962b-0977a3ff31d3" + }, + { + "routeId": "L169", + "platformId": "U92Z1", + "id": "d812e523-73b0-48b1-883e-386a27dbdfe6" + }, + { + "routeId": "L913", + "platformId": "U92Z1", + "id": "7410c198-bfa5-4184-ac8e-5c6cf2b2c136" + }, + { + "routeId": "L370", + "platformId": "U92Z1", + "id": "0fb17b1d-7ca8-4aa6-8a5b-76169e94a02d" + }, + { + "routeId": "L371", + "platformId": "U92Z1", + "id": "30811a5f-ff13-454d-be7b-4407915c35f6" + }, + { + "routeId": "L374", + "platformId": "U92Z1", + "id": "ca5e80ad-1d63-4e5a-927c-97e57ea8a847" + }, + { + "routeId": "L373", + "platformId": "U92Z1", + "id": "25a74b3c-d1b3-4bc4-a4f4-db974d68945f" + }, + { + "routeId": "L958", + "platformId": "U92Z1", + "id": "b240320c-635c-4311-9b51-c38239846d4e" + }, + { + "routeId": "L162", + "platformId": "U92Z2", + "id": "582cf809-412a-4d46-8166-292b05c618cb" + }, + { + "routeId": "L169", + "platformId": "U92Z2", + "id": "0cee06ea-f8cf-409e-9b10-8d4db2a4f67a" + }, + { + "routeId": "L913", + "platformId": "U92Z2", + "id": "2aa600be-8cdd-4246-8cd9-5106fa3dbb6f" + }, + { + "routeId": "L370", + "platformId": "U92Z2", + "id": "95a039f9-266a-421d-a4f2-531572d6a546" + }, + { + "routeId": "L371", + "platformId": "U92Z2", + "id": "d08a5b43-5336-402f-a03a-955cb84cae05" + }, + { + "routeId": "L374", + "platformId": "U92Z2", + "id": "29833270-516a-472f-a1c7-06f4ed43bbf8" + }, + { + "routeId": "L373", + "platformId": "U92Z2", + "id": "efd02421-aa52-45fa-835a-0cb0f934d58b" + }, + { + "routeId": "L958", + "platformId": "U92Z2", + "id": "2c435db2-35a5-48f3-9e64-3c1850221c48" + }, + { + "routeId": "L731", + "platformId": "U9300Z1", + "id": "42aa6805-6a50-4f40-8ffa-b5197341982f" + }, + { + "routeId": "L467", + "platformId": "U9300Z1", + "id": "830c54a8-bc46-4a0f-a8f1-e63aebd01f2a" + }, + { + "routeId": "L731", + "platformId": "U9300Z2", + "id": "86f4bb7c-517d-42e7-8e28-faa195c5d78f" + }, + { + "routeId": "L467", + "platformId": "U9300Z2", + "id": "e476ddae-cbae-4b5c-a706-5a5f5b2c6f0f" + }, + { + "routeId": "L627", + "platformId": "U9301Z1", + "id": "a77579cd-9e6a-4502-841e-fd9d10517564" + }, + { + "routeId": "L627", + "platformId": "U9301Z2", + "id": "a36a2255-69c2-4c2b-9d40-cfb9ae2cf30f" + }, + { + "routeId": "L577", + "platformId": "U9302Z1", + "id": "2012b19e-4ccf-4b52-ac17-74133705036e" + }, + { + "routeId": "L619", + "platformId": "U9302Z1", + "id": "d7790fd4-1c1d-4469-8872-138b83b081a4" + }, + { + "routeId": "L577", + "platformId": "U9302Z2", + "id": "eac5811e-1dea-49c6-8de7-4b81c973b13e" + }, + { + "routeId": "L619", + "platformId": "U9302Z2", + "id": "9b4f86db-037d-4847-8abb-1b0687171a56" + }, + { + "routeId": "L577", + "platformId": "U9303Z1", + "id": "7cb7f048-1f83-44eb-be52-2801b5d17688" + }, + { + "routeId": "L619", + "platformId": "U9303Z1", + "id": "e5856fe4-81f6-46a4-8bd3-7a50b1a34fb0" + }, + { + "routeId": "L577", + "platformId": "U9304Z1", + "id": "19edbbd8-4d56-4876-9fac-387e1e0b8a8a" + }, + { + "routeId": "L577", + "platformId": "U9304Z2", + "id": "b9752702-a522-4a80-9952-eaf0b8807056" + }, + { + "routeId": "L577", + "platformId": "U9305Z1", + "id": "14d30616-d9f4-4744-9ea9-5bb090eac7bf" + }, + { + "routeId": "L417", + "platformId": "U9305Z1", + "id": "49647732-7e61-43c4-93c3-f0e402a23577" + }, + { + "routeId": "L415", + "platformId": "U9305Z1", + "id": "506bf58e-5d68-4fb2-8e17-f0c950d29120" + }, + { + "routeId": "L590", + "platformId": "U9305Z1", + "id": "ecb8f00c-c888-4296-9ad6-693e5091d29b" + }, + { + "routeId": "L577", + "platformId": "U9305Z2", + "id": "25487972-727d-4f5d-94e9-60f8f33ed54b" + }, + { + "routeId": "L417", + "platformId": "U9305Z2", + "id": "a443aa75-83aa-419e-9d4e-162edbf937fc" + }, + { + "routeId": "L415", + "platformId": "U9305Z2", + "id": "c97b8a3d-eaa5-40dd-8c9d-9ca1d58fcba7" + }, + { + "routeId": "L590", + "platformId": "U9305Z2", + "id": "59932bf3-a2fc-4de3-bcb0-161af4f5a30a" + }, + { + "routeId": "L577", + "platformId": "U9306Z1", + "id": "c5185d2a-dcce-4e72-84a8-245181652ae4" + }, + { + "routeId": "L619", + "platformId": "U9306Z1", + "id": "d119235b-c84e-4edf-8eb7-15776125bd28" + }, + { + "routeId": "L417", + "platformId": "U9306Z1", + "id": "551670b1-a4ec-4639-a2b9-efc7b0eda3af" + }, + { + "routeId": "L415", + "platformId": "U9306Z1", + "id": "d0400a4f-3dde-4773-a40a-32980f2415d9" + }, + { + "routeId": "L590", + "platformId": "U9306Z1", + "id": "c78509ca-9f0e-4e18-aecc-e6ba35d2c0bb" + }, + { + "routeId": "L577", + "platformId": "U9306Z2", + "id": "62f0d487-fe9a-41cd-8a12-59a792dd8619" + }, + { + "routeId": "L417", + "platformId": "U9306Z2", + "id": "df699e15-2e74-40fa-bb0d-53ebd8e8a265" + }, + { + "routeId": "L619", + "platformId": "U9306Z2", + "id": "eebfc17f-e125-4df3-ada1-62f04bad6925" + }, + { + "routeId": "L415", + "platformId": "U9306Z2", + "id": "330d4aa7-b75e-41e1-9cc9-4806dd2430fb" + }, + { + "routeId": "L590", + "platformId": "U9306Z2", + "id": "6dbbc502-10ea-4ebb-b99e-4784a0f31d09" + }, + { + "routeId": "L577", + "platformId": "U9307Z1", + "id": "768e3e65-7072-411e-b896-e378b43358cc" + }, + { + "routeId": "L577", + "platformId": "U9307Z2", + "id": "405a0416-0a9b-4d85-bc5b-431395e6bacd" + }, + { + "routeId": "L619", + "platformId": "U9309Z1", + "id": "cdf62f94-a2f2-4e81-8c11-8ee218783ed3" + }, + { + "routeId": "L417", + "platformId": "U9309Z1", + "id": "991b7393-6a3c-4a27-b105-8d0dc2b46a84" + }, + { + "routeId": "L415", + "platformId": "U9309Z1", + "id": "e01f73d6-c591-4e2e-bc81-bd9a2282dee8" + }, + { + "routeId": "L590", + "platformId": "U9309Z1", + "id": "f89212b2-1397-40da-9b21-2b4d0db54720" + }, + { + "routeId": "L417", + "platformId": "U9309Z2", + "id": "3f26c0de-ae03-4302-a4e9-6d1dfd1bdb4e" + }, + { + "routeId": "L619", + "platformId": "U9309Z2", + "id": "b1345a82-8649-42fa-9386-59996d74eb06" + }, + { + "routeId": "L415", + "platformId": "U9309Z2", + "id": "de76da8a-3410-4c2e-8f20-6e88251e9721" + }, + { + "routeId": "L590", + "platformId": "U9309Z2", + "id": "dd7a1bea-398e-4207-9dc4-228c64f12243" + }, + { + "routeId": "L176", + "platformId": "U930Z1", + "id": "9fa46759-aa38-4590-801d-5a31a4aaaa62" + }, + { + "routeId": "L910", + "platformId": "U930Z1", + "id": "dcce1328-5845-40e2-b7bf-0f612f5d7cc3" + }, + { + "routeId": "L176", + "platformId": "U930Z2", + "id": "55576dd6-ac42-4a37-8e06-0b403665a263" + }, + { + "routeId": "L910", + "platformId": "U930Z2", + "id": "4650d865-81e8-4885-9e27-95792c0dacd0" + }, + { + "routeId": "L305", + "platformId": "U9312Z1", + "id": "1b329892-f338-4825-b338-cb9df6b5c4e1" + }, + { + "routeId": "L304", + "platformId": "U9312Z1", + "id": "fea45600-6fcc-413d-8b02-c00d5b354a3d" + }, + { + "routeId": "L625", + "platformId": "U9312Z1", + "id": "54371413-fdbd-43ef-8fa7-196ed0ddc2de" + }, + { + "routeId": "L600", + "platformId": "U9312Z1", + "id": "ce21196c-de86-4ca3-a9ef-ba09e67a1fd9" + }, + { + "routeId": "L619", + "platformId": "U9312Z1", + "id": "fabec354-275a-45f4-b2d4-9ab63f740820" + }, + { + "routeId": "L415", + "platformId": "U9312Z1", + "id": "fcf0b47f-b3eb-4bda-a7fa-a4efd0749690" + }, + { + "routeId": "L304", + "platformId": "U9312Z2", + "id": "053f0b48-18f0-4b9d-81ca-2df443e0d3c4" + }, + { + "routeId": "L305", + "platformId": "U9312Z2", + "id": "e9e074dc-b9b0-40cf-8753-50d9afc47b85" + }, + { + "routeId": "L625", + "platformId": "U9312Z2", + "id": "de6ebf03-57ae-4a78-a1f1-25227266f730" + }, + { + "routeId": "L600", + "platformId": "U9312Z2", + "id": "924f9937-8dae-424c-8c32-74c1f3210b59" + }, + { + "routeId": "L619", + "platformId": "U9312Z2", + "id": "1d266e34-d896-4ab6-9ee4-0aecb200de8a" + }, + { + "routeId": "L415", + "platformId": "U9312Z2", + "id": "43f95f7c-30b6-4d3e-92cc-aa58fbfd1e78" + }, + { + "routeId": "L305", + "platformId": "U9316Z1", + "id": "fb18aa07-67b2-4464-8ebe-391e1335febc" + }, + { + "routeId": "L304", + "platformId": "U9316Z1", + "id": "59d94518-13d9-484a-ad14-709ddcee6c46" + }, + { + "routeId": "L600", + "platformId": "U9316Z1", + "id": "f558a8e9-83a1-44a3-8957-d41efffd6122" + }, + { + "routeId": "L619", + "platformId": "U9316Z1", + "id": "9a9c1482-f5a0-4766-8710-b7e36841e1c5" + }, + { + "routeId": "L417", + "platformId": "U9316Z1", + "id": "b3e074c5-d7fe-45bf-ade7-ca55fadd5d9d" + }, + { + "routeId": "L415", + "platformId": "U9316Z1", + "id": "5511ed49-bab0-47b7-888a-7f4593230835" + }, + { + "routeId": "L590", + "platformId": "U9316Z1", + "id": "ee4f398b-33bf-4887-8d17-134979b18673" + }, + { + "routeId": "L304", + "platformId": "U9316Z2", + "id": "8d711e83-d2cc-497d-9dff-a2544df52a90" + }, + { + "routeId": "L305", + "platformId": "U9316Z2", + "id": "07382dda-3f98-4c98-976f-6f0b96445dbf" + }, + { + "routeId": "L417", + "platformId": "U9316Z2", + "id": "9c3915e8-c957-4c09-bcc8-664eace63d2d" + }, + { + "routeId": "L600", + "platformId": "U9316Z2", + "id": "42a45e14-93d8-42ea-8a30-76cf28ccb74a" + }, + { + "routeId": "L619", + "platformId": "U9316Z2", + "id": "46c52689-1691-47c2-8d47-efc7d95bfdd0" + }, + { + "routeId": "L415", + "platformId": "U9316Z2", + "id": "0014635d-04c3-4186-80a5-92e9775a016a" + }, + { + "routeId": "L590", + "platformId": "U9316Z2", + "id": "bc652f23-ffad-4cef-9b9d-e61f6fe65384" + }, + { + "routeId": "L619", + "platformId": "U9317Z1", + "id": "abb7d308-a9ac-4aad-8194-030e79bf746c" + }, + { + "routeId": "L580", + "platformId": "U9317Z1", + "id": "315d3854-f30e-4104-a848-af2d116a7ba0" + }, + { + "routeId": "L619", + "platformId": "U9317Z2", + "id": "e2cbc92a-700e-4072-8585-30476d3f3021" + }, + { + "routeId": "L580", + "platformId": "U9317Z2", + "id": "32dd203e-7481-498d-a5e5-6505cb22ad1d" + }, + { + "routeId": "L619", + "platformId": "U9318Z1", + "id": "2cf5e912-cde3-4af8-94ac-a502bd052388" + }, + { + "routeId": "L619", + "platformId": "U9318Z2", + "id": "ce06982b-8a05-4fd4-a8e1-f63dd1b77d7f" + }, + { + "routeId": "L619", + "platformId": "U9319Z1", + "id": "d3be1fa6-6a23-4718-b8ed-e4f6ee7507ee" + }, + { + "routeId": "L580", + "platformId": "U9319Z1", + "id": "a18d7010-64d3-41d8-9f5d-d8103f1b3a38" + }, + { + "routeId": "L619", + "platformId": "U9319Z2", + "id": "ca31bb0e-890d-48cf-bc2b-fdf13afa6f8c" + }, + { + "routeId": "L580", + "platformId": "U9319Z2", + "id": "afed9960-4f5c-4609-90d7-53827855b3b3" + }, + { + "routeId": "L906", + "platformId": "U931Z1", + "id": "1c2cacc0-24c5-4f1a-8ce5-919679b204bc" + }, + { + "routeId": "L906", + "platformId": "U931Z2", + "id": "53ea72d7-ba70-442b-a325-4b5749a60951" + }, + { + "routeId": "L619", + "platformId": "U9320Z1", + "id": "d3e42a26-8490-4e0d-9f65-4000b15b89ae" + }, + { + "routeId": "L580", + "platformId": "U9320Z1", + "id": "49250765-c5b9-4a7d-badc-3c9481c650c0" + }, + { + "routeId": "L619", + "platformId": "U9320Z2", + "id": "4c398b00-cea8-43ac-89c0-be423b7e9acf" + }, + { + "routeId": "L580", + "platformId": "U9320Z2", + "id": "adb07bed-67db-4522-b20e-6e2e34b2d004" + }, + { + "routeId": "L580", + "platformId": "U9322Z1", + "id": "52cc3cec-08fd-4f73-ae36-0055c0eb0338" + }, + { + "routeId": "L908", + "platformId": "U932Z1", + "id": "04b6c0b8-e5f3-4332-ad81-6cb1f8c2d768" + }, + { + "routeId": "L221", + "platformId": "U932Z1", + "id": "1aac0d3f-6919-45fe-b7c6-be70525b8f5a" + }, + { + "routeId": "L908", + "platformId": "U932Z2", + "id": "a76b647f-8ade-4dd0-9562-13480beebc55" + }, + { + "routeId": "L221", + "platformId": "U932Z2", + "id": "9f1c3d86-3c95-485a-a24f-1b1ec0157022" + }, + { + "routeId": "L600", + "platformId": "U9330Z1", + "id": "54e4136f-4772-488b-af45-b0f999775d1b" + }, + { + "routeId": "L619", + "platformId": "U9330Z1", + "id": "2f4d1e95-f527-4f6d-9a68-194f98a167f5" + }, + { + "routeId": "L580", + "platformId": "U9330Z1", + "id": "d2183a04-b5ff-4395-817b-91492db9a265" + }, + { + "routeId": "L600", + "platformId": "U9330Z2", + "id": "9d99c034-cdb6-4b44-b7b0-9794092327a8" + }, + { + "routeId": "L619", + "platformId": "U9330Z2", + "id": "ae5fb324-ee55-4772-a9cd-d0b65389e53f" + }, + { + "routeId": "L580", + "platformId": "U9330Z2", + "id": "a5804bf5-0ab8-4cc4-a3f6-578042f81906" + }, + { + "routeId": "L305", + "platformId": "U9331Z1", + "id": "0f7fcc4c-f11a-485d-899d-323381a17571" + }, + { + "routeId": "L600", + "platformId": "U9331Z1", + "id": "09d40118-6e76-41a4-a1b0-facb610d5146" + }, + { + "routeId": "L619", + "platformId": "U9331Z1", + "id": "d721806b-9e2e-415a-88e2-b9504007cd30" + }, + { + "routeId": "L415", + "platformId": "U9331Z1", + "id": "c48f93c3-fe88-4bb6-9f67-8def0aa140ea" + }, + { + "routeId": "L580", + "platformId": "U9331Z1", + "id": "2fa54c87-e114-447c-821f-8235fc7b7db7" + }, + { + "routeId": "L305", + "platformId": "U9331Z2", + "id": "f950170a-ca58-4c3a-9ac0-3e5931bb1c86" + }, + { + "routeId": "L600", + "platformId": "U9331Z2", + "id": "c0e43957-7571-4e56-a261-9ed517bceb64" + }, + { + "routeId": "L619", + "platformId": "U9331Z2", + "id": "ac34b75d-7714-4da5-9ed1-57d875fac2f1" + }, + { + "routeId": "L415", + "platformId": "U9331Z2", + "id": "defea288-cc2a-4b95-972e-7006274caa90" + }, + { + "routeId": "L580", + "platformId": "U9331Z2", + "id": "87d8444c-5f9a-45df-8516-98af94a18a54" + }, + { + "routeId": "L600", + "platformId": "U9331Z3", + "id": "28143268-3d8a-4982-90ec-9d6c76b8c8ca" + }, + { + "routeId": "L600", + "platformId": "U9331Z4", + "id": "0acc1fea-4872-4341-b34e-7f78bc8f6be0" + }, + { + "routeId": "L600", + "platformId": "U9332Z1", + "id": "7cf6e1f4-6552-48e4-82e7-927ef82fe80e" + }, + { + "routeId": "L619", + "platformId": "U9332Z1", + "id": "8e7cd358-bc51-44f7-9d98-a05b55bdd3f3" + }, + { + "routeId": "L580", + "platformId": "U9332Z1", + "id": "f577b29a-89e5-4b68-94b0-4af1e12ba66b" + }, + { + "routeId": "L600", + "platformId": "U9332Z2", + "id": "08174bda-2291-42be-9578-98f24efc7a77" + }, + { + "routeId": "L619", + "platformId": "U9332Z2", + "id": "4eeb18ba-a6e5-4d4b-9219-532ec41e9223" + }, + { + "routeId": "L580", + "platformId": "U9332Z2", + "id": "445707a6-0644-4de9-b35f-5700eaae6494" + }, + { + "routeId": "L148", + "platformId": "U933Z1", + "id": "cf86557d-261c-4317-80d2-08a2e8274743" + }, + { + "routeId": "L711", + "platformId": "U9343Z11", + "id": "1fdef18b-068b-4a31-88cb-7c36a9c73de3" + }, + { + "routeId": "L600", + "platformId": "U9343Z15", + "id": "2ac59ba8-f8a0-4817-96f1-13e2a17bb030" + }, + { + "routeId": "L389", + "platformId": "U9343Z15", + "id": "dd6141d7-7ba9-4d17-95b0-be286ffdca4a" + }, + { + "routeId": "L711", + "platformId": "U9343Z17", + "id": "bf0d6f0d-114b-4aaf-93b9-2edb550e34e9" + }, + { + "routeId": "L1011", + "platformId": "U9343Z301", + "id": "f3110dbc-c866-48f0-9b81-e560cb8e7e18" + }, + { + "routeId": "L1012", + "platformId": "U9343Z301", + "id": "9cd2b481-104e-432a-aec7-a6f4156ac6f1" + }, + { + "routeId": "L1011", + "platformId": "U9344Z301", + "id": "d4044e73-87dd-463a-8bf7-bfd2c4ecd716" + }, + { + "routeId": "L1012", + "platformId": "U9344Z301", + "id": "a83574a3-47a3-4661-966e-573be0c883de" + }, + { + "routeId": "L1011", + "platformId": "U9345Z301", + "id": "486477fd-3fe2-4679-af43-c7d562b68fca" + }, + { + "routeId": "L1011", + "platformId": "U9346Z301", + "id": "78b3faa1-f6c0-463f-9d46-bccc0cc992f8" + }, + { + "routeId": "L1221", + "platformId": "U9349Z301", + "id": "ca545eac-2267-49bb-a38a-7176996dfe4a" + }, + { + "routeId": "L1222", + "platformId": "U9349Z301", + "id": "3e8ffbe4-1798-4803-bab5-3513f013085c" + }, + { + "routeId": "L1034", + "platformId": "U9349Z301", + "id": "1ac5625e-8164-4125-b952-beda7ae98661" + }, + { + "routeId": "L1330", + "platformId": "U9349Z301", + "id": "d5707aa8-68e3-4816-aed1-d6bf2b7a98f6" + }, + { + "routeId": "L158", + "platformId": "U934Z1", + "id": "7295cec8-bd08-4c98-b380-75a460c07174" + }, + { + "routeId": "L202", + "platformId": "U934Z1", + "id": "85513a43-7b96-434d-9d01-f5e560844ce0" + }, + { + "routeId": "L915", + "platformId": "U934Z1", + "id": "4b8e3b89-20e4-43ce-a3e7-04fc342fb95d" + }, + { + "routeId": "L166", + "platformId": "U934Z1", + "id": "02308be5-431e-4d92-9618-6fac28d7dd8f" + }, + { + "routeId": "L158", + "platformId": "U934Z2", + "id": "431af1ba-c49b-4773-bc85-8cbfc5696313" + }, + { + "routeId": "L202", + "platformId": "U934Z2", + "id": "ffc43255-70fe-42a9-94c6-84e56c7c23c1" + }, + { + "routeId": "L915", + "platformId": "U934Z2", + "id": "4ec1de46-e5ea-404d-8f6d-cb0dd26d2bcf" + }, + { + "routeId": "L166", + "platformId": "U934Z2", + "id": "bea46bc7-ba6d-4faa-bf69-3f76c139d48d" + }, + { + "routeId": "L1221", + "platformId": "U9350Z301", + "id": "26c4ab94-8419-4db0-8e2e-f426f6ee311d" + }, + { + "routeId": "L1222", + "platformId": "U9350Z301", + "id": "587de172-cbfe-46a9-af7b-d8dd4effb09f" + }, + { + "routeId": "L1034", + "platformId": "U9350Z301", + "id": "402d1c5b-a5d3-4e7e-bdfd-4b18c693c122" + }, + { + "routeId": "L1330", + "platformId": "U9350Z301", + "id": "d53af2b6-5e71-419b-91f8-1dff5f405e1c" + }, + { + "routeId": "L1333", + "platformId": "U9351Z301", + "id": "170792d7-0f73-4b94-9f25-b7e3e3162ffb" + }, + { + "routeId": "L1333", + "platformId": "U9352Z301", + "id": "c3d33fdf-c94e-40ea-8ba7-11f28c1fafa0" + }, + { + "routeId": "L1333", + "platformId": "U9353Z301", + "id": "f3c3153d-b85b-4ab8-a29c-41927cfab987" + }, + { + "routeId": "L1333", + "platformId": "U9354Z301", + "id": "c4553678-074f-4508-8d6a-4fb6c1d44765" + }, + { + "routeId": "L1333", + "platformId": "U9355Z301", + "id": "84e2c684-20cd-47dc-9234-9d03c09ea76f" + }, + { + "routeId": "L1333", + "platformId": "U9356Z301", + "id": "920df727-a8f9-4ce4-978b-7c08080e8dd1" + }, + { + "routeId": "L1333", + "platformId": "U9357Z301", + "id": "63389d8c-9ef4-4f2a-9bd7-735b923e521f" + }, + { + "routeId": "L1333", + "platformId": "U9358Z301", + "id": "ef0ee2e7-ad78-4e0a-b4b8-7229b0c87ab7" + }, + { + "routeId": "L412", + "platformId": "U9359Z1", + "id": "37ac25ce-5832-4087-af2e-460c2210efa4" + }, + { + "routeId": "L713", + "platformId": "U9359Z1", + "id": "de28e1c3-753a-4ff3-bc4f-a73d3b554cce" + }, + { + "routeId": "L725", + "platformId": "U9359Z1", + "id": "3480c166-551d-4e7c-8bf2-9415c23384f4" + }, + { + "routeId": "L723", + "platformId": "U9359Z1", + "id": "0d0e5e38-7fff-49ff-be45-b71421e2c33d" + }, + { + "routeId": "L724", + "platformId": "U9359Z1", + "id": "ad7a3061-b910-4048-86d8-7d4ca6735883" + }, + { + "routeId": "L412", + "platformId": "U9359Z2", + "id": "46c97ac4-a800-48f5-bfec-4b5cd5ddd7c8" + }, + { + "routeId": "L713", + "platformId": "U9359Z2", + "id": "827faac0-97f2-4789-9909-d2da1cc73c46" + }, + { + "routeId": "L725", + "platformId": "U9359Z2", + "id": "0f083dc8-dc96-463a-a593-122e2c700063" + }, + { + "routeId": "L723", + "platformId": "U9359Z2", + "id": "4b89bcfc-f810-4c44-a029-1eaa3671b2dc" + }, + { + "routeId": "L724", + "platformId": "U9359Z2", + "id": "86b633a6-5d4c-4ac6-a26d-1c99bdb6cbb0" + }, + { + "routeId": "L121", + "platformId": "U935Z1", + "id": "323097b5-3166-4b44-b3ae-5b018e4ab74a" + }, + { + "routeId": "L121", + "platformId": "U935Z2", + "id": "25fa9229-d240-4e0b-827d-367328d815e2" + }, + { + "routeId": "L1209", + "platformId": "U9360Z301", + "id": "35f76e13-81d1-4aad-ab49-79e154d44dac" + }, + { + "routeId": "L1320", + "platformId": "U9360Z301", + "id": "126f15e1-e4eb-4f44-bdda-0b8332320239" + }, + { + "routeId": "L424", + "platformId": "U9362Z1", + "id": "97860d3e-9e67-4177-9cb8-6522f90908dd" + }, + { + "routeId": "L424", + "platformId": "U9362Z2", + "id": "9b528eba-3960-4d14-a38f-18c9af0088cf" + }, + { + "routeId": "L364", + "platformId": "U9364Z1", + "id": "0d070c34-11eb-4a38-85a7-375534e3884e" + }, + { + "routeId": "L435", + "platformId": "U9364Z1", + "id": "81db46db-0b84-4e42-9b3d-8e90c6f638ac" + }, + { + "routeId": "L686", + "platformId": "U9364Z1", + "id": "5043a755-06ae-432a-819d-5c8ac16fec1c" + }, + { + "routeId": "L686", + "platformId": "U9364Z2", + "id": "3477cb3d-3b3e-4ba7-abaa-14cb5f9e8ca1" + }, + { + "routeId": "L533", + "platformId": "U9365Z1", + "id": "cc2b32f0-dae0-4849-9407-32819bda770d" + }, + { + "routeId": "L533", + "platformId": "U9365Z2", + "id": "f32fb200-cda3-4564-ad32-e1dc7793855f" + }, + { + "routeId": "L1219", + "platformId": "U9365Z301", + "id": "5cec97a0-9661-4fc5-a7d5-d97882d05959" + }, + { + "routeId": "L1218", + "platformId": "U9365Z301", + "id": "617e55b3-714f-4e8e-94fe-7c50afd5c09d" + }, + { + "routeId": "L1310", + "platformId": "U9365Z301", + "id": "6ded22c8-2c99-43ce-bb37-f254d9bff23a" + }, + { + "routeId": "L1209", + "platformId": "U9366Z301", + "id": "0b75e752-ae40-4d4e-b931-e9513984ad08" + }, + { + "routeId": "L1320", + "platformId": "U9366Z301", + "id": "8a097187-16da-4750-ae8e-a0331d65f682" + }, + { + "routeId": "L381", + "platformId": "U9367Z1", + "id": "1d4e1f8a-b30d-44ba-8670-a8b559518208" + }, + { + "routeId": "L481", + "platformId": "U9367Z1", + "id": "27799242-bb55-441d-a3a5-2440ca04b4ee" + }, + { + "routeId": "L533", + "platformId": "U9367Z1", + "id": "30802ab0-36dd-413c-bae7-7a87e7520b0f" + }, + { + "routeId": "L2801", + "platformId": "U9367Z1", + "id": "7fb7edca-5079-45cf-a5d6-0ebffa533c12" + }, + { + "routeId": "L381", + "platformId": "U9367Z2", + "id": "9a9113c2-b924-491f-b5b4-cbddb838315f" + }, + { + "routeId": "L481", + "platformId": "U9367Z2", + "id": "3e484121-82b6-46cd-ab1b-99ee2d2a4f6e" + }, + { + "routeId": "L533", + "platformId": "U9367Z2", + "id": "4818134d-4299-4d87-a438-28685dc643f2" + }, + { + "routeId": "L2801", + "platformId": "U9367Z2", + "id": "7c6fd9ac-3b16-4d93-95a8-b5f834a5fe9e" + }, + { + "routeId": "L1209", + "platformId": "U9367Z301", + "id": "9136cbcf-52b9-4697-99bc-5f7a42dda45a" + }, + { + "routeId": "L1328", + "platformId": "U9367Z301", + "id": "f0422a90-90f6-433b-bd1d-e3eb69c18586" + }, + { + "routeId": "L1320", + "platformId": "U9367Z301", + "id": "74526664-c8e2-46bc-b32e-2193b2c466a9" + }, + { + "routeId": "L481", + "platformId": "U9368Z1", + "id": "7862d2c5-9ef5-49e7-8bda-afb16c470aec" + }, + { + "routeId": "L481", + "platformId": "U9368Z2", + "id": "b2e00d48-317e-47a9-b0b9-5e68c8eb311a" + }, + { + "routeId": "L1209", + "platformId": "U9368Z301", + "id": "bfd783b9-12c8-4f9f-aa82-9efb01f7b20f" + }, + { + "routeId": "L1320", + "platformId": "U9368Z301", + "id": "34302f6c-d8e5-4e68-a255-c2eddc9f5770" + }, + { + "routeId": "L1209", + "platformId": "U9369Z301", + "id": "2fddff9f-504b-444c-a90d-827024ae8916" + }, + { + "routeId": "L1320", + "platformId": "U9369Z301", + "id": "97bccd33-09db-4555-a898-8394fb549723" + }, + { + "routeId": "L170", + "platformId": "U936Z1", + "id": "c14e1112-09bf-4ba9-b678-ae3769b96829" + }, + { + "routeId": "L170", + "platformId": "U936Z2", + "id": "36e1b903-d5d2-4b35-8d52-2368ed36881c" + }, + { + "routeId": "L402", + "platformId": "U9370Z1", + "id": "3895ac7f-746c-4d82-905f-5f7563ece91b" + }, + { + "routeId": "L743", + "platformId": "U9370Z1", + "id": "be8861a5-df04-4b81-86ea-be8428124b5a" + }, + { + "routeId": "L402", + "platformId": "U9370Z2", + "id": "277bcb87-8f30-4ea9-90b1-cad84c1f0048" + }, + { + "routeId": "L743", + "platformId": "U9370Z2", + "id": "fcdbefe5-d032-4473-9eca-4751d31fbdc7" + }, + { + "routeId": "L1209", + "platformId": "U9370Z301", + "id": "89ad071e-36ec-439c-8a14-5529dc8c1259" + }, + { + "routeId": "L1320", + "platformId": "U9370Z301", + "id": "1265e2a9-91b2-4d05-9c3b-b41d21b8d492" + }, + { + "routeId": "L1327", + "platformId": "U9370Z301", + "id": "d904bd20-bcc1-458e-b8c4-b2f8ec2ec8fa" + }, + { + "routeId": "L556", + "platformId": "U9373Z1", + "id": "0454b12a-a9ef-4c4c-a534-7f9e7a51b9ff" + }, + { + "routeId": "L451", + "platformId": "U9373Z1", + "id": "7015596d-81f1-44bb-8d94-f5569d52eeb7" + }, + { + "routeId": "L550", + "platformId": "U9373Z1", + "id": "f07d33f7-ff2b-4326-9af3-d1f9066c142e" + }, + { + "routeId": "L451", + "platformId": "U9373Z2", + "id": "ab6e8e48-65eb-42aa-a426-0dc9bb627a9e" + }, + { + "routeId": "L550", + "platformId": "U9373Z2", + "id": "5ea1187c-6b0e-4e88-8cc7-e90e29a3d349" + }, + { + "routeId": "L1217", + "platformId": "U9373Z301", + "id": "eb44515c-33c9-485f-80f6-7cc23850d7cc" + }, + { + "routeId": "L1390", + "platformId": "U9373Z301", + "id": "b8ac8f96-eae6-4a79-8e67-15892301561e" + }, + { + "routeId": "L451", + "platformId": "U9374Z1", + "id": "0db2caed-2b5f-47b8-9391-61ea17ef8050" + }, + { + "routeId": "L556", + "platformId": "U9374Z1", + "id": "61370630-048f-4170-8d11-889bd89802f5" + }, + { + "routeId": "L451", + "platformId": "U9374Z2", + "id": "73427907-f7aa-4850-aa36-22431796f706" + }, + { + "routeId": "L556", + "platformId": "U9374Z2", + "id": "8695dcf5-c9d2-4c32-9f24-85604d84e195" + }, + { + "routeId": "L1217", + "platformId": "U9374Z301", + "id": "e4b09182-2d42-4ab7-8717-48261a72f443" + }, + { + "routeId": "L1390", + "platformId": "U9374Z301", + "id": "5b8e8efd-15e6-4463-8bf3-44a51e66565a" + }, + { + "routeId": "L1398", + "platformId": "U9377Z301", + "id": "c96d019a-e96b-4c3d-85dc-9424aabff428" + }, + { + "routeId": "L1398", + "platformId": "U9378Z301", + "id": "612a266f-a9bf-4312-aeb7-ffc564580b9e" + }, + { + "routeId": "L1398", + "platformId": "U9379Z301", + "id": "e4a81e29-db28-4786-b600-55045fa5836f" + }, + { + "routeId": "L117", + "platformId": "U937Z1", + "id": "848b656d-3830-450b-80f1-e4c29c4a70f0" + }, + { + "routeId": "L203", + "platformId": "U937Z1", + "id": "c1f61ad6-7ae1-4201-bad9-fb0225cd4da2" + }, + { + "routeId": "L117", + "platformId": "U937Z2", + "id": "f4d2ad73-7341-4107-a64d-9eb463fc3624" + }, + { + "routeId": "L203", + "platformId": "U937Z2", + "id": "feb003ff-35da-4be1-9111-09f016d3dc5e" + }, + { + "routeId": "L1398", + "platformId": "U9380Z301", + "id": "d3c89a65-4e1a-4f72-9fa8-fc40c8638fa5" + }, + { + "routeId": "L1398", + "platformId": "U9381Z301", + "id": "1133830c-4470-4313-946e-da11073aee57" + }, + { + "routeId": "L1398", + "platformId": "U9382Z301", + "id": "3ffb98f6-9cf9-443e-8fd3-6767497cb887" + }, + { + "routeId": "L1399", + "platformId": "U9383Z301", + "id": "bf0d0ff0-309c-40ad-acf6-9ef256bdd97c" + }, + { + "routeId": "L406", + "platformId": "U9384Z1", + "id": "7ca096ea-df73-402c-a06b-80e153f16f28" + }, + { + "routeId": "L455", + "platformId": "U9384Z1", + "id": "b278d958-4676-418a-a689-61899cddb47a" + }, + { + "routeId": "L406", + "platformId": "U9384Z2", + "id": "37e8cc51-ca9a-4431-8e0e-3865934ff541" + }, + { + "routeId": "L455", + "platformId": "U9384Z2", + "id": "357579a4-b77f-41f3-b64d-02c66d7509db" + }, + { + "routeId": "L791", + "platformId": "U9384Z3", + "id": "57bb58ef-a482-4f7e-8c51-13e0878e3983" + }, + { + "routeId": "L1399", + "platformId": "U9384Z301", + "id": "61019a04-edff-4391-b34a-ad2bbdcc9445" + }, + { + "routeId": "L791", + "platformId": "U9384Z4", + "id": "0ef26911-8da4-4bdb-9248-b75edf1c0613" + }, + { + "routeId": "L1399", + "platformId": "U9385Z301", + "id": "53805074-6fc8-4995-95c7-0018a4731806" + }, + { + "routeId": "L455", + "platformId": "U9386Z1", + "id": "eff50a35-0c5d-4032-849f-caea887ac6b9" + }, + { + "routeId": "L455", + "platformId": "U9386Z2", + "id": "408de56b-c565-4f0b-acae-441a611192e8" + }, + { + "routeId": "L1399", + "platformId": "U9386Z301", + "id": "c4aefde2-3778-4487-97c8-2dd30f727381" + }, + { + "routeId": "L1399", + "platformId": "U9387Z301", + "id": "23d3462f-3fa5-4a42-aba9-4a07bbb0f9fa" + }, + { + "routeId": "L1399", + "platformId": "U9388Z301", + "id": "9306ba60-ef5a-404d-a26a-7c2c50440147" + }, + { + "routeId": "L406", + "platformId": "U9389Z1", + "id": "7332b4d1-a1aa-4675-8405-128987b5a220" + }, + { + "routeId": "L406", + "platformId": "U9389Z2", + "id": "012826db-7031-4515-b6af-b492be7ea7b8" + }, + { + "routeId": "L1399", + "platformId": "U9389Z301", + "id": "8d8acbba-8993-45c4-b2b4-81ffe262aeb2" + }, + { + "routeId": "L117", + "platformId": "U938Z1", + "id": "f64e15c5-4331-440d-b47e-0cea0e74c5c4" + }, + { + "routeId": "L203", + "platformId": "U938Z1", + "id": "97496d0a-19f7-462a-963b-7b9c8c3a9589" + }, + { + "routeId": "L117", + "platformId": "U938Z2", + "id": "0c285285-029d-4da2-b1a7-5f9b5fcfe563" + }, + { + "routeId": "L203", + "platformId": "U938Z2", + "id": "ca0b1df9-6b42-4c88-b9da-12057ece3a66" + }, + { + "routeId": "L1399", + "platformId": "U9390Z301", + "id": "a9d7d0b6-3e58-4294-ae85-efdd20fca935" + }, + { + "routeId": "L458", + "platformId": "U9391Z1", + "id": "8562f7b5-df1c-4264-a146-9df787d05330" + }, + { + "routeId": "L550", + "platformId": "U9391Z1", + "id": "15f3cb26-a925-4f82-aa75-51f9a2e2b515" + }, + { + "routeId": "L1760", + "platformId": "U9391Z1", + "id": "e65a32a4-ba53-442f-8c25-ae72e85206f6" + }, + { + "routeId": "L2843", + "platformId": "U9391Z10", + "id": "ea3fffe6-ea0f-4c38-b721-b10c5ab36737" + }, + { + "routeId": "L793", + "platformId": "U9391Z13", + "id": "392b24af-c198-4320-974a-792b6b6fc008" + }, + { + "routeId": "L790", + "platformId": "U9391Z13", + "id": "0d805d5e-2f50-466b-b31c-af3251f28a9e" + }, + { + "routeId": "L550", + "platformId": "U9391Z15", + "id": "a4aecd76-65e2-4f1c-8de4-24e448428f2c" + }, + { + "routeId": "L453", + "platformId": "U9391Z15", + "id": "779fd1ad-ddf5-4e5d-a58d-761e1a58e4e0" + }, + { + "routeId": "L406", + "platformId": "U9391Z2", + "id": "214a3bf4-9002-4ba5-b4c1-dd621d9bd7f6" + }, + { + "routeId": "L792", + "platformId": "U9391Z2", + "id": "b3a4ff2c-e0e0-4e69-bc22-75730efe5b00" + }, + { + "routeId": "L2854", + "platformId": "U9391Z2", + "id": "f9d4cda3-7760-4dfa-920a-97df816e4092" + }, + { + "routeId": "L487", + "platformId": "U9391Z3", + "id": "dc124b02-6e86-422e-b476-32b4314b0831" + }, + { + "routeId": "L794", + "platformId": "U9391Z3", + "id": "7200f8bb-0978-4c29-a9c0-95c978a46786" + }, + { + "routeId": "L795", + "platformId": "U9391Z3", + "id": "b9c3c819-d4cc-4d9d-b135-a592618c410b" + }, + { + "routeId": "L1399", + "platformId": "U9391Z301", + "id": "849e6b25-43cd-4aca-a562-baa6310266e5" + }, + { + "routeId": "L790", + "platformId": "U9391Z4", + "id": "b73b7e82-1125-4d87-9fb7-cc81617e331f" + }, + { + "routeId": "L793", + "platformId": "U9391Z4", + "id": "5b2b814e-d118-4625-a9dd-abee1bf5e949" + }, + { + "routeId": "L795", + "platformId": "U9391Z4", + "id": "906f8424-c335-4a47-b7a0-3df1d53cc456" + }, + { + "routeId": "L792", + "platformId": "U9391Z4", + "id": "cef80e33-464b-449d-831e-376d8423ad2d" + }, + { + "routeId": "L794", + "platformId": "U9391Z4", + "id": "75b454e6-9f92-4ed4-920c-f8cdeafb3903" + }, + { + "routeId": "L2849", + "platformId": "U9391Z5", + "id": "8068e104-71b5-4197-8c42-a1e56088f752" + }, + { + "routeId": "L458", + "platformId": "U9391Z6", + "id": "bcd3677f-ef69-4f30-95a9-57b27a6a7d76" + }, + { + "routeId": "L487", + "platformId": "U9391Z6", + "id": "b1604e29-ca46-407e-a6f3-e74049123119" + }, + { + "routeId": "L2844", + "platformId": "U9391Z6", + "id": "db51f80a-88b6-4dbd-a3e0-0f3f8cc048c2" + }, + { + "routeId": "L2848", + "platformId": "U9391Z6", + "id": "759c53c0-8b48-4114-8f3e-164c955f9ac1" + }, + { + "routeId": "L2854", + "platformId": "U9391Z6", + "id": "53f463e9-0fa2-4f62-aabb-5274e6eb3088" + }, + { + "routeId": "L406", + "platformId": "U9391Z7", + "id": "c70d5c53-aed6-4d58-97bc-e554cd97db82" + }, + { + "routeId": "L2843", + "platformId": "U9391Z7", + "id": "736d51aa-fc5d-450b-9194-e6ea0eb5f9fb" + }, + { + "routeId": "L1760", + "platformId": "U9391Z7", + "id": "4f5fe5f0-c8bc-40d4-b3aa-7ef1b39432be" + }, + { + "routeId": "L458", + "platformId": "U9391Z8", + "id": "5e8b3431-d0e1-4619-8f97-3c0c0980db30" + }, + { + "routeId": "L453", + "platformId": "U9391Z8", + "id": "31b58f93-9e81-4af5-bda0-aae8c0039a74" + }, + { + "routeId": "L2844", + "platformId": "U9391Z9", + "id": "a19bac1a-9558-477f-8717-078aac8002fb" + }, + { + "routeId": "L406", + "platformId": "U9393Z1", + "id": "bbc560a0-9e3e-486f-8d76-0447e755ff13" + }, + { + "routeId": "L2843", + "platformId": "U9393Z1", + "id": "e1f176df-6d1b-4e6b-a3a7-a8f03f0aba8f" + }, + { + "routeId": "L2849", + "platformId": "U9393Z1", + "id": "d5d9368b-33d4-4b63-96d1-b2a3301e0b46" + }, + { + "routeId": "L406", + "platformId": "U9393Z2", + "id": "dac1d9bc-eb6d-4673-a321-c9f0dbd4dad7" + }, + { + "routeId": "L2843", + "platformId": "U9393Z2", + "id": "345ddaa0-2c6f-4b07-b278-3362475b3486" + }, + { + "routeId": "L2849", + "platformId": "U9393Z2", + "id": "5d0f70bd-a355-4fe1-811b-7bf659f19017" + }, + { + "routeId": "L794", + "platformId": "U9395Z1", + "id": "22ae3313-62b4-43a3-8de3-c9e4f1372b9b" + }, + { + "routeId": "L794", + "platformId": "U9395Z2", + "id": "2e2fb6db-1a31-4304-b87a-1f655a124400" + }, + { + "routeId": "L1318", + "platformId": "U9396Z301", + "id": "13345a08-f008-41e7-a3fd-735f9fc43de7" + }, + { + "routeId": "L1380", + "platformId": "U9396Z303", + "id": "b9d334d8-8540-43cc-a7b0-fda9b9c9e517" + }, + { + "routeId": "L1380", + "platformId": "U9397Z301", + "id": "2d3b15b9-6da4-44d8-ae24-eb9bf440164a" + }, + { + "routeId": "L1318", + "platformId": "U9398Z301", + "id": "469c2f85-c143-4abd-82b9-3434856e3515" + }, + { + "routeId": "L1380", + "platformId": "U9399Z301", + "id": "a20ffd17-e654-445b-891e-80ca93c9b229" + }, + { + "routeId": "L139", + "platformId": "U939Z1", + "id": "aeba173b-705f-45ef-8b99-f5c0ef1884ee" + }, + { + "routeId": "L246", + "platformId": "U939Z1", + "id": "7a27fb2b-c467-49af-b5da-5a2acb3e3449" + }, + { + "routeId": "L117", + "platformId": "U939Z1", + "id": "3c218f74-dc11-45ae-90c8-40b95e76e243" + }, + { + "routeId": "L139", + "platformId": "U939Z2", + "id": "ef6f8da4-ab3a-4226-84ae-2485d90e95cb" + }, + { + "routeId": "L246", + "platformId": "U939Z2", + "id": "17414071-d4e5-4a89-b180-a5d4cd7e2a1d" + }, + { + "routeId": "L117", + "platformId": "U939Z2", + "id": "c96cf914-97fd-4a80-8f0c-6cd05b8fd98b" + }, + { + "routeId": "L162", + "platformId": "U93Z1", + "id": "134f1765-84f4-4214-b18a-ae15499d93a4" + }, + { + "routeId": "L913", + "platformId": "U93Z1", + "id": "2426d91a-7028-42f5-b4c4-59760a90257f" + }, + { + "routeId": "L162", + "platformId": "U93Z2", + "id": "2d85e884-29fd-4b4c-b0c0-ed932b9f28e8" + }, + { + "routeId": "L913", + "platformId": "U93Z2", + "id": "752f4e4f-446b-4d53-907f-90e1a8a160b5" + }, + { + "routeId": "L1380", + "platformId": "U9400Z301", + "id": "c2b629c8-5ebc-42f4-a41b-eb4dd6575ea2" + }, + { + "routeId": "L1380", + "platformId": "U9401Z301", + "id": "8fa96ea1-9cb3-447a-9f40-ed2d2ae588ec" + }, + { + "routeId": "L1380", + "platformId": "U9402Z301", + "id": "40262e6f-390b-4c39-8a58-f10965b7fd66" + }, + { + "routeId": "L1380", + "platformId": "U9403Z301", + "id": "30158049-e030-4d8f-9b38-b550c93c374f" + }, + { + "routeId": "L487", + "platformId": "U9404Z1", + "id": "4c8abe24-cad5-4b47-993f-584c1cb11a30" + }, + { + "routeId": "L487", + "platformId": "U9404Z2", + "id": "394feaaa-d2c0-4943-8a2f-3b152fce9f34" + }, + { + "routeId": "L1380", + "platformId": "U9404Z301", + "id": "45688541-100d-41e2-af47-fb6243d70624" + }, + { + "routeId": "L1380", + "platformId": "U9405Z301", + "id": "65e24baf-77b6-4a45-9089-7cf41a302bf3" + }, + { + "routeId": "L1380", + "platformId": "U9406Z301", + "id": "67366a88-dc3f-4496-8d2a-e6ec572be73b" + }, + { + "routeId": "L1380", + "platformId": "U9407Z301", + "id": "61108073-3e7c-497c-937b-3ea8ec5dd257" + }, + { + "routeId": "L1380", + "platformId": "U9408Z301", + "id": "befb951d-a54e-43c2-8fb5-2f660aaff25a" + }, + { + "routeId": "L402", + "platformId": "U9409Z1", + "id": "ed6933d2-4dc5-4746-8b1c-004ff734ba94" + }, + { + "routeId": "L795", + "platformId": "U9409Z2", + "id": "13e85145-c083-48a9-b714-ed5de695f678" + }, + { + "routeId": "L1380", + "platformId": "U9409Z301", + "id": "d60fa1e5-4131-4c18-bede-da9e4f7a9a6d" + }, + { + "routeId": "L787", + "platformId": "U9409Z4", + "id": "ba9c5174-ec78-4c31-84e4-14a4951a05b6" + }, + { + "routeId": "L1380", + "platformId": "U9410Z301", + "id": "71c452c6-8b7b-41d1-a499-319efab28ba8" + }, + { + "routeId": "L1328", + "platformId": "U9410Z301", + "id": "caa7349b-0ac9-4699-94fd-8600020866bf" + }, + { + "routeId": "L702", + "platformId": "U9411Z1", + "id": "dba095cf-fb69-4270-a61b-ba34b8a20cca" + }, + { + "routeId": "L702", + "platformId": "U9411Z2", + "id": "e69a86b8-ecea-44f6-a0e1-8303d1d87b70" + }, + { + "routeId": "L1318", + "platformId": "U9411Z301", + "id": "b22e2786-423c-4108-a971-ec380ebbef18" + }, + { + "routeId": "L702", + "platformId": "U9412Z1", + "id": "35713e32-8288-4f21-8e47-3dcc4f20c038" + }, + { + "routeId": "L702", + "platformId": "U9412Z2", + "id": "3eb2385c-bc7a-439d-bb59-9faf7896e23a" + }, + { + "routeId": "L1318", + "platformId": "U9412Z301", + "id": "a39c4b28-3167-4b11-8e9f-0604994b40cc" + }, + { + "routeId": "L705", + "platformId": "U9413Z1", + "id": "258b2790-750c-40fc-8cfa-2f6db15061ee" + }, + { + "routeId": "L705", + "platformId": "U9413Z2", + "id": "8ca1aff9-44f8-43ae-b649-4169c5d9d736" + }, + { + "routeId": "L1318", + "platformId": "U9413Z301", + "id": "db947830-3ba9-4195-8721-f912243b38f9" + }, + { + "routeId": "L681", + "platformId": "U9414Z1", + "id": "2320ec0b-6a84-456f-b17c-f24263cd39a8" + }, + { + "routeId": "L681", + "platformId": "U9414Z2", + "id": "3df49cff-1e55-434d-8259-eb8258160844" + }, + { + "routeId": "L1318", + "platformId": "U9414Z301", + "id": "0b1ca9e7-fe86-4e25-96f2-365337f5a288" + }, + { + "routeId": "L487", + "platformId": "U9415Z1", + "id": "56a7489b-95a9-4280-86ac-c0f226ea45e6" + }, + { + "routeId": "L706", + "platformId": "U9415Z1", + "id": "b299a6d4-3fdd-449f-b720-778d7688acb3" + }, + { + "routeId": "L487", + "platformId": "U9415Z2", + "id": "d5fc8fc6-aa0c-4a4b-b48e-4d4d0291f69a" + }, + { + "routeId": "L706", + "platformId": "U9415Z2", + "id": "c9e96e58-608c-4cb7-b16f-a053991349c6" + }, + { + "routeId": "L1318", + "platformId": "U9415Z301", + "id": "e0eebe0c-ff2f-4c94-8cd8-7ef27b3ed9e7" + }, + { + "routeId": "L706", + "platformId": "U9416Z1", + "id": "77ddf915-7725-4cac-a41c-835acf2fcef2" + }, + { + "routeId": "L706", + "platformId": "U9416Z2", + "id": "09051881-cb92-4ccb-8e5d-88fc5016a0d0" + }, + { + "routeId": "L1318", + "platformId": "U9416Z301", + "id": "c378b282-45cb-48b7-8656-12109de6257e" + }, + { + "routeId": "L706", + "platformId": "U9417Z1", + "id": "37b6a8c8-614f-44f2-9164-c3339904972f" + }, + { + "routeId": "L706", + "platformId": "U9417Z2", + "id": "e5fe90e1-f57a-4b3b-83ab-9908924cf012" + }, + { + "routeId": "L1318", + "platformId": "U9417Z301", + "id": "3c28f10d-78f5-40c7-9018-8da4f297a231" + }, + { + "routeId": "L487", + "platformId": "U9418Z1", + "id": "8e71bdaa-52b2-4972-8be7-10ccab8be659" + }, + { + "routeId": "L487", + "platformId": "U9418Z2", + "id": "9399f862-a8f7-4561-a16e-2bc920ae3fda" + }, + { + "routeId": "L1318", + "platformId": "U9418Z301", + "id": "f3b999c0-301f-4280-8690-b4e53600c1c8" + }, + { + "routeId": "L1318", + "platformId": "U9419Z301", + "id": "6e151c23-69e9-41f2-9fbc-2de0215bc2bc" + }, + { + "routeId": "L246", + "platformId": "U941Z1", + "id": "a0990f66-85ad-4ff6-817f-7e7fd3733508" + }, + { + "routeId": "L246", + "platformId": "U941Z2", + "id": "c3e0f309-7f7b-47a9-8034-813dbef4adbd" + }, + { + "routeId": "L1318", + "platformId": "U9420Z301", + "id": "ec711d64-93ee-4aa5-828c-3c220045d5b6" + }, + { + "routeId": "L1318", + "platformId": "U9421Z301", + "id": "266cd50e-1ea6-41c7-b713-f2697c06f4b7" + }, + { + "routeId": "L487", + "platformId": "U9422Z1", + "id": "9a6bab25-4aa6-4b74-9e82-25832aab65e1" + }, + { + "routeId": "L487", + "platformId": "U9422Z2", + "id": "c9452845-6136-49d2-9cd4-6b76d4cc0fa4" + }, + { + "routeId": "L1318", + "platformId": "U9422Z301", + "id": "3136d132-d115-46ab-baf5-d345ff5561d8" + }, + { + "routeId": "L1318", + "platformId": "U9423Z301", + "id": "f3350d12-9528-4840-baf5-618a318c02e2" + }, + { + "routeId": "L381", + "platformId": "U9424Z1", + "id": "43a10355-ed10-4d63-b148-a90f284f8bc5" + }, + { + "routeId": "L481", + "platformId": "U9424Z1", + "id": "df8cf124-7297-4e99-9dc0-326160be46e4" + }, + { + "routeId": "L533", + "platformId": "U9424Z1", + "id": "9d150570-a088-40a7-a743-1f869aec6c05" + }, + { + "routeId": "L2801", + "platformId": "U9424Z1", + "id": "20db1884-93f5-48e4-8a5e-fbc7fbd40ff2" + }, + { + "routeId": "L381", + "platformId": "U9424Z2", + "id": "9d0cf5e8-2eab-40fe-b491-99a149ca34e7" + }, + { + "routeId": "L481", + "platformId": "U9424Z2", + "id": "8518943c-3991-4374-966d-d358e77e4f33" + }, + { + "routeId": "L533", + "platformId": "U9424Z2", + "id": "d85c6028-41fa-44dd-85f7-7e2d2d546d06" + }, + { + "routeId": "L2801", + "platformId": "U9424Z2", + "id": "d3c6916d-1194-4f6d-9764-a64b3766080b" + }, + { + "routeId": "L1328", + "platformId": "U9424Z301", + "id": "31df5a11-df54-4f43-afa2-a60bb3043b43" + }, + { + "routeId": "L2801", + "platformId": "U9425Z1", + "id": "3c167237-1cfa-48cd-bbe6-ec48e4af1a04" + }, + { + "routeId": "L1328", + "platformId": "U9425Z301", + "id": "de12a1b9-6819-4f30-9081-c654ac2cbbad" + }, + { + "routeId": "L1328", + "platformId": "U9426Z301", + "id": "9624af12-f1be-44f9-8823-8d5e149c3a51" + }, + { + "routeId": "L1328", + "platformId": "U9427Z301", + "id": "c64e61d1-64a9-4047-ac70-0038d779db6c" + }, + { + "routeId": "L1328", + "platformId": "U9428Z301", + "id": "12a7ae7f-b361-4ad5-a710-c1ea2975ae26" + }, + { + "routeId": "L1328", + "platformId": "U9429Z301", + "id": "fc18d4c7-025c-486a-b7b6-7664306dc95c" + }, + { + "routeId": "L1328", + "platformId": "U9430Z301", + "id": "9ad87085-33d9-44c6-9f73-c687b8c2a0c1" + }, + { + "routeId": "L1328", + "platformId": "U9431Z301", + "id": "6d01f0f6-acab-4833-87c8-09ec46607f85" + }, + { + "routeId": "L2805", + "platformId": "U9432Z1", + "id": "9ce08faf-46a7-48ff-b43c-39b6789dc0e0" + }, + { + "routeId": "L2805", + "platformId": "U9432Z2", + "id": "3ba67eec-6ca4-4695-94ad-5a21b19ea799" + }, + { + "routeId": "L1328", + "platformId": "U9432Z301", + "id": "73cd9315-2ae8-497f-af1d-7df4fe3442b6" + }, + { + "routeId": "L1328", + "platformId": "U9433Z301", + "id": "b461d237-0752-48d4-96f6-2f30093f13f0" + }, + { + "routeId": "L1328", + "platformId": "U9434Z301", + "id": "e20300b6-be20-4512-9a40-5317674a9e2c" + }, + { + "routeId": "L1328", + "platformId": "U9435Z301", + "id": "be55ed03-2e8c-45c6-9dd6-b26a631726d2" + }, + { + "routeId": "L402", + "platformId": "U9436Z1", + "id": "814d8d13-0436-4dbf-8936-6d8259d0e4d5" + }, + { + "routeId": "L402", + "platformId": "U9436Z2", + "id": "89e8ac27-0830-43c4-9740-c0d84de29db3" + }, + { + "routeId": "L1328", + "platformId": "U9436Z301", + "id": "7247d885-60d8-41b7-8c30-8dfaa4953a24" + }, + { + "routeId": "L1328", + "platformId": "U9437Z301", + "id": "9c77b005-0516-451d-b745-a4478f102b3b" + }, + { + "routeId": "L1328", + "platformId": "U9438Z301", + "id": "186d4b67-9aed-4185-b6d4-5bb696ffa6db" + }, + { + "routeId": "L402", + "platformId": "U9439Z1", + "id": "3855d50e-c9bb-4108-bf82-66675596ef75" + }, + { + "routeId": "L402", + "platformId": "U9439Z2", + "id": "0c3f0e3e-eaed-47b6-bf27-6f7c921aaf37" + }, + { + "routeId": "L1328", + "platformId": "U9439Z301", + "id": "c49e313d-47ec-49a3-ad95-e2c438f59460" + }, + { + "routeId": "L20", + "platformId": "U943Z1", + "id": "b7e34c9b-20dc-4f24-a072-e077e4036cfb" + }, + { + "routeId": "L26", + "platformId": "U943Z1", + "id": "6d575bf9-c81c-4a6f-9f67-cd02f1bad6b4" + }, + { + "routeId": "L91", + "platformId": "U943Z1", + "id": "ae2a75e6-2c9a-4937-8d78-32672dc2f517" + }, + { + "routeId": "L20", + "platformId": "U943Z2", + "id": "dea1560b-05e4-45a1-be66-21e74c422914" + }, + { + "routeId": "L26", + "platformId": "U943Z2", + "id": "d79aaeab-875c-478c-b5e3-96c474fb64b9" + }, + { + "routeId": "L91", + "platformId": "U943Z2", + "id": "c5d51589-9ab7-4894-8b18-d9ff9a23b5e9" + }, + { + "routeId": "L733", + "platformId": "U9440Z3", + "id": "7f7fa099-1f5d-4e5d-b237-53c9b8104df1" + }, + { + "routeId": "L345", + "platformId": "U9440Z3", + "id": "c977422a-60b4-4e11-be87-22ac509ed759" + }, + { + "routeId": "L1221", + "platformId": "U9440Z301", + "id": "69537c25-9572-4ab2-a6be-b2b35b409a2c" + }, + { + "routeId": "L1330", + "platformId": "U9440Z301", + "id": "bfb7773f-6fbd-482d-8aa3-12fc7a93778b" + }, + { + "routeId": "L733", + "platformId": "U9440Z4", + "id": "9ac4efd8-4b23-4f8e-93a9-8d1a1d65dafa" + }, + { + "routeId": "L345", + "platformId": "U9440Z4", + "id": "bdc3bb87-a469-42e1-b128-404de8476ed5" + }, + { + "routeId": "L345", + "platformId": "U9441Z1", + "id": "448601bf-854f-4bb1-9791-febf423c033a" + }, + { + "routeId": "L345", + "platformId": "U9441Z2", + "id": "fa72fae4-9b1d-431f-9a37-acfd9b87ccb2" + }, + { + "routeId": "L1221", + "platformId": "U9441Z301", + "id": "9420158e-5ee4-4d2c-b003-ecbd0a9fd52a" + }, + { + "routeId": "L1330", + "platformId": "U9441Z301", + "id": "66210d2d-6974-4d7d-ae74-7419c7247778" + }, + { + "routeId": "L720", + "platformId": "U9442Z2", + "id": "769ed064-1f3c-4e48-a6e7-2bbd66827141" + }, + { + "routeId": "L1221", + "platformId": "U9442Z301", + "id": "a4a130bc-86f3-4452-a4cb-226c84f1d5de" + }, + { + "routeId": "L1330", + "platformId": "U9442Z301", + "id": "924deea5-4e2f-4378-b1f2-9bdc8bc51a5d" + }, + { + "routeId": "L345", + "platformId": "U9443Z3", + "id": "08754e9e-604e-432e-a559-bd618f4f30c0" + }, + { + "routeId": "L700", + "platformId": "U9443Z3", + "id": "fe67231f-0f11-41c8-8302-9159a2a0df49" + }, + { + "routeId": "L730", + "platformId": "U9443Z3", + "id": "c4e292c5-8ecd-4d36-a5fd-2b10eb8357f1" + }, + { + "routeId": "L720", + "platformId": "U9443Z3", + "id": "27969134-b1bf-43f8-8344-be88c64a3715" + }, + { + "routeId": "L1221", + "platformId": "U9443Z301", + "id": "f2bef249-c2ca-4b05-9bee-8017d71d3b39" + }, + { + "routeId": "L1050", + "platformId": "U9443Z301", + "id": "66461b11-5549-4fd7-8871-e6133721db08" + }, + { + "routeId": "L1330", + "platformId": "U9443Z301", + "id": "15bf9334-6788-4e9c-88f3-6a63912a2630" + }, + { + "routeId": "L700", + "platformId": "U9443Z4", + "id": "98c67c2e-017c-4822-a4da-db1792a6097f" + }, + { + "routeId": "L730", + "platformId": "U9443Z4", + "id": "aa28c08b-284d-4d61-97c4-85103bd55bce" + }, + { + "routeId": "L720", + "platformId": "U9443Z4", + "id": "14a36b7c-15ae-41c9-8283-2548a6948b81" + }, + { + "routeId": "L345", + "platformId": "U9443Z6", + "id": "1de9540f-fb1c-4fa5-8e38-6bf0c32e6d9a" + }, + { + "routeId": "L1222", + "platformId": "U9444Z301", + "id": "37824207-a18f-4508-8531-4e67eb99b36f" + }, + { + "routeId": "L1034", + "platformId": "U9444Z301", + "id": "ccecf477-0e81-4d5c-b090-57bb0ffad075" + }, + { + "routeId": "L1222", + "platformId": "U9445Z301", + "id": "e46ba693-42e1-461f-9a83-c8c5d708e7f9" + }, + { + "routeId": "L1034", + "platformId": "U9445Z301", + "id": "0532259d-0ed2-43c8-b76e-7219f696d8d5" + }, + { + "routeId": "L1222", + "platformId": "U9446Z301", + "id": "42a2dd05-36c7-47ce-acff-6e4033ad7ad9" + }, + { + "routeId": "L1034", + "platformId": "U9446Z301", + "id": "64ca8f32-6c63-4e99-ab51-86f8c4f828dc" + }, + { + "routeId": "L1222", + "platformId": "U9447Z301", + "id": "865d03a0-da69-4500-8ff6-3acc936a0d9f" + }, + { + "routeId": "L1034", + "platformId": "U9447Z301", + "id": "2e7869a0-7e83-41eb-8d2f-e1f4e7f141d0" + }, + { + "routeId": "L1222", + "platformId": "U9448Z301", + "id": "0a64bd77-52c7-4222-9d7a-a4ac4669ecb2" + }, + { + "routeId": "L1034", + "platformId": "U9448Z301", + "id": "ec57cbe9-7586-4eac-bd96-81f6a2133174" + }, + { + "routeId": "L1222", + "platformId": "U9449Z301", + "id": "54289445-3967-4a6a-a62f-c0468951d7a5" + }, + { + "routeId": "L1034", + "platformId": "U9449Z301", + "id": "43a03026-a124-4b9f-940e-7d799db3c489" + }, + { + "routeId": "L104", + "platformId": "U944Z1", + "id": "04b53acd-cea6-450b-97be-be728edb98e0" + }, + { + "routeId": "L120", + "platformId": "U944Z1", + "id": "d09b3005-fea1-41fc-a93d-7a9d6c33538e" + }, + { + "routeId": "L130", + "platformId": "U944Z1", + "id": "cf324852-ab08-4fa4-8db2-628cc28046f8" + }, + { + "routeId": "L104", + "platformId": "U944Z2", + "id": "9681c0a7-2a7e-4a65-9183-ca40bb4122a3" + }, + { + "routeId": "L120", + "platformId": "U944Z2", + "id": "df3cbfad-a8a1-4e1d-a576-6f5b419dfce0" + }, + { + "routeId": "L130", + "platformId": "U944Z2", + "id": "0d84fe0a-9c40-44ef-8bd2-6492cda21631" + }, + { + "routeId": "L410", + "platformId": "U9450Z1", + "id": "e3ea1aca-fc18-469f-8490-f63823ebfc35" + }, + { + "routeId": "L410", + "platformId": "U9450Z2", + "id": "a1466e78-b4af-4e57-a306-605094145ecb" + }, + { + "routeId": "L1222", + "platformId": "U9450Z301", + "id": "094bd724-f415-4e90-9eaf-37988d04fd75" + }, + { + "routeId": "L1034", + "platformId": "U9450Z301", + "id": "705de856-01fe-4d12-a261-bd027f41e5f1" + }, + { + "routeId": "L714", + "platformId": "U9452Z1", + "id": "77965ef3-7e4f-4e09-a3c9-07425f9cb797" + }, + { + "routeId": "L714", + "platformId": "U9452Z2", + "id": "dbcd6acc-8583-4c02-8145-e1ce2f569d9a" + }, + { + "routeId": "L713", + "platformId": "U9454Z1", + "id": "69663d71-d02c-4a09-8a01-026d8b273891" + }, + { + "routeId": "L725", + "platformId": "U9454Z1", + "id": "60b95923-bc21-4ad8-845a-f4f6cb281ada" + }, + { + "routeId": "L713", + "platformId": "U9454Z2", + "id": "73dbc40c-bc3b-4d56-81e6-fcf289a65609" + }, + { + "routeId": "L725", + "platformId": "U9454Z2", + "id": "2a674727-a1cc-48ee-92d2-77085232f4db" + }, + { + "routeId": "L499", + "platformId": "U9455Z2", + "id": "556514c1-5c97-4e4e-bcb3-49c30ccf63e0" + }, + { + "routeId": "L713", + "platformId": "U9456Z1", + "id": "7dc2e34b-9266-4bf8-93c9-5535a0091ebd" + }, + { + "routeId": "L725", + "platformId": "U9456Z1", + "id": "d59a8995-a9c2-4b68-a599-1af38e6b5dc7" + }, + { + "routeId": "L724", + "platformId": "U9456Z1", + "id": "16aee158-0f79-4c67-b5dd-e0c6bc5aa5f6" + }, + { + "routeId": "L713", + "platformId": "U9456Z2", + "id": "ed294da7-5b5c-4e67-a9ec-068e4ec5d427" + }, + { + "routeId": "L725", + "platformId": "U9456Z2", + "id": "ad5b9c45-6efc-4832-a368-b33ed3c1a7dd" + }, + { + "routeId": "L724", + "platformId": "U9456Z2", + "id": "ca073618-3b0f-4b91-bfb0-c09fc73cee23" + }, + { + "routeId": "L724", + "platformId": "U9457Z1", + "id": "60399fca-5076-4fa5-b8d0-aed541be8af2" + }, + { + "routeId": "L724", + "platformId": "U9457Z2", + "id": "beece795-e3e9-4bb6-884f-d59ec8f4c505" + }, + { + "routeId": "L725", + "platformId": "U9458Z1", + "id": "5780890a-d64e-4d36-a78a-1af88d564c01" + }, + { + "routeId": "L725", + "platformId": "U9459Z1", + "id": "eca13404-4a9d-451d-8354-b39bf3bacb63" + }, + { + "routeId": "L17", + "platformId": "U945Z1", + "id": "742d7273-4e73-4196-9d1a-073ccea7b3c5" + }, + { + "routeId": "L27", + "platformId": "U945Z1", + "id": "1354c281-124a-422a-a6fc-86d04e2a8fa7" + }, + { + "routeId": "L92", + "platformId": "U945Z1", + "id": "4d0167a2-6189-469e-81c4-bd207abc637c" + }, + { + "routeId": "L713", + "platformId": "U9461Z1", + "id": "923f1fd1-979d-46f7-9f00-1b812fc19b5b" + }, + { + "routeId": "L713", + "platformId": "U9461Z2", + "id": "5364f7d2-e415-4adb-a8ef-dc4b3b4cd844" + }, + { + "routeId": "L1327", + "platformId": "U9465Z301", + "id": "22500a51-457a-4b11-af8d-c686ccc55c81" + }, + { + "routeId": "L1327", + "platformId": "U9466Z301", + "id": "abfd3cdc-8367-4786-8613-0d69c1957833" + }, + { + "routeId": "L1327", + "platformId": "U9467Z301", + "id": "d79104b0-ba10-4661-b1d3-cb58cc06b786" + }, + { + "routeId": "L1327", + "platformId": "U9468Z301", + "id": "564f6df2-209f-4dda-879f-2d359dfaa14d" + }, + { + "routeId": "L1327", + "platformId": "U9469Z301", + "id": "9003c30b-30d4-49b1-b608-078418ff81a8" + }, + { + "routeId": "L17", + "platformId": "U946Z1", + "id": "84e75ed9-c340-4f7b-8d5a-e5bc9abc73e1" + }, + { + "routeId": "L27", + "platformId": "U946Z1", + "id": "db9323e3-0fbe-4c03-b00d-8861a50254bd" + }, + { + "routeId": "L92", + "platformId": "U946Z1", + "id": "65d5622b-c530-4e03-916c-bf9fd61af0dc" + }, + { + "routeId": "L17", + "platformId": "U946Z2", + "id": "c067d83e-1d01-4758-818f-e99b9a1a851b" + }, + { + "routeId": "L27", + "platformId": "U946Z2", + "id": "87894fc8-ae9d-4531-b837-9785d3dc2f51" + }, + { + "routeId": "L92", + "platformId": "U946Z2", + "id": "017869d2-7193-452f-a6b9-e903fb6fd48f" + }, + { + "routeId": "L1327", + "platformId": "U9470Z301", + "id": "40783318-fee5-451f-9929-2b3ee200cc11" + }, + { + "routeId": "L1327", + "platformId": "U9471Z301", + "id": "61c2a5b3-6259-44ef-8bce-0f0f5a059498" + }, + { + "routeId": "L1327", + "platformId": "U9472Z301", + "id": "ba603086-7141-4745-b7dd-d2863f8b6fe6" + }, + { + "routeId": "L1327", + "platformId": "U9473Z301", + "id": "dcbb1e09-d922-4c32-9877-1848a9e92d05" + }, + { + "routeId": "L1209", + "platformId": "U9474Z301", + "id": "7a7a911f-d9cb-45a2-ae73-8f1c1f40e3b4" + }, + { + "routeId": "L1320", + "platformId": "U9474Z301", + "id": "c7905bb5-ba31-454f-b378-b8d1cc1b65ff" + }, + { + "routeId": "L315", + "platformId": "U9475Z1", + "id": "de70bcff-4de1-47b6-bfd2-db31bfcdfaa2" + }, + { + "routeId": "L315", + "platformId": "U9475Z2", + "id": "2dbb8c1a-65cc-47bb-85e2-59b7094c5855" + }, + { + "routeId": "L1221", + "platformId": "U9475Z301", + "id": "0ecde081-0b47-43ed-ad79-dcaf09b87eb7" + }, + { + "routeId": "L1330", + "platformId": "U9475Z301", + "id": "314769d3-5e50-4b9d-8b08-13e57d464713" + }, + { + "routeId": "L315", + "platformId": "U9478Z1", + "id": "6767f4aa-b340-4d99-9e87-a6f309e73f6f" + }, + { + "routeId": "L315", + "platformId": "U9478Z2", + "id": "944689c8-039b-45a0-b514-595ae58c2d0c" + }, + { + "routeId": "L1221", + "platformId": "U9478Z301", + "id": "57a9d0e8-6a89-457d-b9ea-1e22952e7971" + }, + { + "routeId": "L1330", + "platformId": "U9478Z301", + "id": "ae0246f2-ea1a-4300-9785-f767653af94e" + }, + { + "routeId": "L722", + "platformId": "U9478Z6", + "id": "a4303ac3-fb16-4f77-a108-e58e196db66d" + }, + { + "routeId": "L427", + "platformId": "U9478Z6", + "id": "409fcdf6-b818-45f8-b58d-6219c3f719b9" + }, + { + "routeId": "L1209", + "platformId": "U9479Z301", + "id": "40a22900-0f0e-480f-a4e9-ed14cfb83056" + }, + { + "routeId": "L1320", + "platformId": "U9479Z301", + "id": "05100454-2051-49f1-913f-d76cb3db2c95" + }, + { + "routeId": "L17", + "platformId": "U947Z1", + "id": "4e51a72c-6c47-4f6b-9ea5-558216e54b93" + }, + { + "routeId": "L27", + "platformId": "U947Z1", + "id": "44426cf0-8a17-497f-a06d-b9f8757864dc" + }, + { + "routeId": "L92", + "platformId": "U947Z1", + "id": "703362db-6c5e-4486-ab4f-481bbb442f20" + }, + { + "routeId": "L17", + "platformId": "U947Z2", + "id": "f0203da3-2f3e-4e23-a2e0-ebcb48d8a1a7" + }, + { + "routeId": "L27", + "platformId": "U947Z2", + "id": "bdc615c1-3292-4151-bc13-a5691d02681a" + }, + { + "routeId": "L92", + "platformId": "U947Z2", + "id": "e6f91ada-e9fe-45d3-8d1c-2a63c4183b36" + }, + { + "routeId": "L1209", + "platformId": "U9480Z301", + "id": "c6329995-ac8e-4328-94a7-9e35f09eb40c" + }, + { + "routeId": "L1320", + "platformId": "U9480Z301", + "id": "fad8f5a9-972d-482b-84eb-9daa747b13d1" + }, + { + "routeId": "L1209", + "platformId": "U9481Z301", + "id": "261c3b54-40b4-4775-8dce-24cfea9766dd" + }, + { + "routeId": "L1320", + "platformId": "U9481Z301", + "id": "6840545a-b069-4a4a-9676-3c834aae59c7" + }, + { + "routeId": "L1209", + "platformId": "U9482Z301", + "id": "efe65a86-5d09-41fa-a851-e90262a859e1" + }, + { + "routeId": "L1320", + "platformId": "U9482Z301", + "id": "1e9326eb-b8c6-45a5-bcbf-adc803c89ef7" + }, + { + "routeId": "L1209", + "platformId": "U9483Z301", + "id": "fa7d40f9-fc6e-494f-b53c-f202fdc03565" + }, + { + "routeId": "L1320", + "platformId": "U9483Z301", + "id": "0af41c24-ebef-422f-bb4d-90fef6861770" + }, + { + "routeId": "L1209", + "platformId": "U9484Z301", + "id": "785627b1-4473-4d75-835d-c75a73612e25" + }, + { + "routeId": "L1320", + "platformId": "U9484Z301", + "id": "be98ba9b-9032-4b80-97c8-16a26b3fa952" + }, + { + "routeId": "L1209", + "platformId": "U9485Z301", + "id": "d699b73d-f41b-4dfb-9e2d-b55ce1ecc332" + }, + { + "routeId": "L1320", + "platformId": "U9485Z301", + "id": "5fdb3e63-7af9-4550-9e71-e2ca0a71c4dc" + }, + { + "routeId": "L1382", + "platformId": "U9485Z301", + "id": "0ad727a5-82f9-4522-b2c8-5ad4bef69011" + }, + { + "routeId": "L17", + "platformId": "U948Z1", + "id": "6d02d53f-e5a8-490b-aa90-1757c1cb2ee6" + }, + { + "routeId": "L27", + "platformId": "U948Z1", + "id": "c6fbc404-84c1-4bee-a41d-231f6f86dd2b" + }, + { + "routeId": "L92", + "platformId": "U948Z1", + "id": "70b04181-f768-4ddd-b789-97832fd7104b" + }, + { + "routeId": "L17", + "platformId": "U948Z2", + "id": "8a950e14-6dae-46e6-9dd7-6e3622219c4f" + }, + { + "routeId": "L27", + "platformId": "U948Z2", + "id": "b338c85a-06ae-405d-9fe8-7013589a6d8e" + }, + { + "routeId": "L92", + "platformId": "U948Z2", + "id": "e856cb1f-6571-4ebc-8bbe-e997eb6de3de" + }, + { + "routeId": "L1382", + "platformId": "U9492Z301", + "id": "56cb53b3-9003-47dc-b7d8-df2c9b6cfa31" + }, + { + "routeId": "L1382", + "platformId": "U9493Z301", + "id": "29cf6abe-f64c-48cc-8ccf-6ffd3c7706bc" + }, + { + "routeId": "L1382", + "platformId": "U9494Z301", + "id": "3d6dc163-8fe4-43d7-b7cf-d127ed5df4ef" + }, + { + "routeId": "L1382", + "platformId": "U9495Z301", + "id": "4af49ec9-f480-49a3-b650-e133269ad7a1" + }, + { + "routeId": "L1382", + "platformId": "U9496Z301", + "id": "e50f897b-0cda-4a3a-a805-b8a43e19e948" + }, + { + "routeId": "L1382", + "platformId": "U9497Z301", + "id": "36abff21-885a-466e-a8dc-717c8848e1a7" + }, + { + "routeId": "L1382", + "platformId": "U9498Z301", + "id": "2233c35d-a5df-4c03-aec6-16022e7a99a3" + }, + { + "routeId": "L1382", + "platformId": "U9499Z301", + "id": "af07e75b-213b-4c78-ac51-0d9483989eff" + }, + { + "routeId": "L145", + "platformId": "U949Z1", + "id": "3e30d549-effd-47da-a9e2-7b66c6744fc6" + }, + { + "routeId": "L152", + "platformId": "U949Z1", + "id": "d1db4248-03a1-45ad-b85c-c50c1f1c99ff" + }, + { + "routeId": "L202", + "platformId": "U949Z1", + "id": "df800b73-05e4-4c00-a54e-96c1e12f6a07" + }, + { + "routeId": "L905", + "platformId": "U949Z1", + "id": "e381db49-1e63-409c-97df-79fa436ca72e" + }, + { + "routeId": "L145", + "platformId": "U949Z2", + "id": "36c4768b-6d7b-4ad4-9b04-8d17a109a082" + }, + { + "routeId": "L169", + "platformId": "U949Z2", + "id": "a319eea5-3105-46d3-8dfc-81b29af82b64" + }, + { + "routeId": "L152", + "platformId": "U949Z2", + "id": "989497c6-ca8a-41fe-b27e-eb10b4ab1889" + }, + { + "routeId": "L905", + "platformId": "U949Z2", + "id": "8bda6b15-6e9d-402f-a233-9433d974d467" + }, + { + "routeId": "L145", + "platformId": "U949Z3", + "id": "444ef9bf-88e0-4ab7-8665-d6b90677cc50" + }, + { + "routeId": "L169", + "platformId": "U949Z3", + "id": "8714b3c6-80f8-4295-9314-468c02738069" + }, + { + "routeId": "L152", + "platformId": "U949Z3", + "id": "d8e91a78-c4bb-470a-92b1-ec4baf3b9723" + }, + { + "routeId": "L202", + "platformId": "U949Z3", + "id": "824d91b0-4bcf-4cd7-bde2-f4b004f0bd2f" + }, + { + "routeId": "L905", + "platformId": "U949Z3", + "id": "e940068e-9a81-4d1f-bcd0-6c16427ff205" + }, + { + "routeId": "L162", + "platformId": "U94Z1", + "id": "ae99823f-f210-40bc-9123-9b72823a6c06" + }, + { + "routeId": "L169", + "platformId": "U94Z1", + "id": "39a13748-658a-4e8a-b195-9c0807005f48" + }, + { + "routeId": "L202", + "platformId": "U94Z1", + "id": "1c488f0a-8f0c-44f9-8986-942730772e07" + }, + { + "routeId": "L913", + "platformId": "U94Z1", + "id": "a41d10e3-7e95-466e-be27-2f974cf3e462" + }, + { + "routeId": "L169", + "platformId": "U94Z3", + "id": "0067e994-c631-4000-925c-d186647f5a70" + }, + { + "routeId": "L202", + "platformId": "U94Z3", + "id": "03640c86-fdbc-4301-a6eb-df48d05ab9d7" + }, + { + "routeId": "L1217", + "platformId": "U9500Z301", + "id": "ff469017-372b-41fd-a2ef-24bfaeb3baca" + }, + { + "routeId": "L1390", + "platformId": "U9500Z301", + "id": "4b107a5d-2c48-40b7-b712-30b0fdc03489" + }, + { + "routeId": "L1217", + "platformId": "U9501Z301", + "id": "0b279752-0155-4c87-a2a0-a830f1a329fe" + }, + { + "routeId": "L1390", + "platformId": "U9501Z301", + "id": "4db206be-6937-42ce-a04b-5a69b010eb55" + }, + { + "routeId": "L401", + "platformId": "U9503Z1", + "id": "3578e043-a43d-4a3d-9d7a-0fb3d179f3b4" + }, + { + "routeId": "L1217", + "platformId": "U9504Z301", + "id": "34b2ada6-b0ba-455a-adc9-044f18aa99e1" + }, + { + "routeId": "L1390", + "platformId": "U9504Z301", + "id": "d894a79f-085d-40de-8005-59328f0c6e6e" + }, + { + "routeId": "L1217", + "platformId": "U9505Z301", + "id": "ad1a75d1-f8ba-4191-8022-eda160b092ee" + }, + { + "routeId": "L1390", + "platformId": "U9505Z301", + "id": "736cae5a-a964-44c0-913c-fe758248dc45" + }, + { + "routeId": "L495", + "platformId": "U9506Z1", + "id": "1899338c-6cdd-43af-9985-25da5dc5c607" + }, + { + "routeId": "L495", + "platformId": "U9506Z2", + "id": "7afb2321-7a0c-48b7-a992-114f0e6efb9f" + }, + { + "routeId": "L121", + "platformId": "U950Z1", + "id": "56c6a247-d1ec-4c74-b829-20c772aa7ed9" + }, + { + "routeId": "L124", + "platformId": "U950Z1", + "id": "f7bcacaf-f7f1-4bbf-91e3-7e649ef7b224" + }, + { + "routeId": "L134", + "platformId": "U950Z1", + "id": "42b28da1-d92a-4a5b-b874-2b942679643f" + }, + { + "routeId": "L170", + "platformId": "U950Z1", + "id": "13252bad-6b59-4991-a255-1b9a1c79aa01" + }, + { + "routeId": "L121", + "platformId": "U950Z2", + "id": "bc6450cf-6328-4f78-959a-c02ae207378e" + }, + { + "routeId": "L124", + "platformId": "U950Z2", + "id": "21b3ebd4-eb65-4919-88ed-7ea19d0a4995" + }, + { + "routeId": "L134", + "platformId": "U950Z2", + "id": "2c3bb1fd-f852-4bb3-951b-cedf218a829f" + }, + { + "routeId": "L170", + "platformId": "U950Z2", + "id": "ef9e1092-a00b-4e39-9f0a-bb922226c336" + }, + { + "routeId": "L1360", + "platformId": "U9510Z301", + "id": "663d1732-88c4-4657-bf9a-8017a3de3afe" + }, + { + "routeId": "L1360", + "platformId": "U9511Z301", + "id": "531965b9-3a9a-4db0-858e-80746a04183c" + }, + { + "routeId": "L1360", + "platformId": "U9512Z301", + "id": "2ce46fea-8d04-4661-91d1-0c7ab9067fb8" + }, + { + "routeId": "L2260", + "platformId": "U9512Z401", + "id": "29620151-97ba-47ba-85ad-f3e04241f943" + }, + { + "routeId": "L2260", + "platformId": "U9512Z402", + "id": "0a384961-8713-4f98-bd8a-e008e4e302f6" + }, + { + "routeId": "L1360", + "platformId": "U9513Z301", + "id": "82a6d91c-1410-4521-9afd-408450baffef" + }, + { + "routeId": "L1360", + "platformId": "U9514Z301", + "id": "63de43db-a5f7-432e-9fc8-1f4f274f5cee" + }, + { + "routeId": "L482", + "platformId": "U9515Z2", + "id": "1b091753-930a-4fae-adc2-350a27de082f" + }, + { + "routeId": "L1360", + "platformId": "U9515Z301", + "id": "87566b56-b2c2-4a67-aa00-5982181484b1" + }, + { + "routeId": "L482", + "platformId": "U9515Z4", + "id": "f9f0d93f-8b88-49ce-a56b-ea386cecec03" + }, + { + "routeId": "L2260", + "platformId": "U9515Z405", + "id": "450da755-f2f6-4fc4-8632-c7213103f9b2" + }, + { + "routeId": "L1014", + "platformId": "U9516Z301", + "id": "d5ce6009-5b22-42d3-bb3c-eb292b77537b" + }, + { + "routeId": "L1014", + "platformId": "U9517Z301", + "id": "4145a260-c53b-40bf-ac29-1036b800fa69" + }, + { + "routeId": "L1014", + "platformId": "U9518Z301", + "id": "7714d0aa-3d03-47b4-bdaf-40d837e1fcea" + }, + { + "routeId": "L1014", + "platformId": "U9519Z301", + "id": "6afd0bda-5b78-4300-93f0-4ef68d506c40" + }, + { + "routeId": "L1012", + "platformId": "U9520Z301", + "id": "261432d6-2650-4a76-a228-157e40096339" + }, + { + "routeId": "L1012", + "platformId": "U9521Z301", + "id": "72fe4869-72c4-4e07-b631-56bc4f540501" + }, + { + "routeId": "L1012", + "platformId": "U9522Z301", + "id": "5e7a7b8f-96cf-4c80-be30-25c979f9ab44" + }, + { + "routeId": "L1012", + "platformId": "U9523Z301", + "id": "7ca6e1c5-e47f-4c43-a6b2-e228988b1163" + }, + { + "routeId": "L1012", + "platformId": "U9524Z301", + "id": "c69b32f3-1f89-478d-b044-b9434196a789" + }, + { + "routeId": "L1012", + "platformId": "U9525Z301", + "id": "828faa29-c3df-4ed3-8101-eacc89c8806f" + }, + { + "routeId": "L1012", + "platformId": "U9526Z301", + "id": "882ecaf2-995c-46ae-934d-7bb3ece88244" + }, + { + "routeId": "L1012", + "platformId": "U9527Z301", + "id": "d44d7181-5e88-450c-8f3c-0bb6781a4ed1" + }, + { + "routeId": "L1012", + "platformId": "U9528Z301", + "id": "adb402ab-0e91-455d-b49f-66a712ce7046" + }, + { + "routeId": "L1012", + "platformId": "U9529Z301", + "id": "989ede8d-8c8a-4cf2-b97f-412ac430b324" + }, + { + "routeId": "L12", + "platformId": "U952Z1", + "id": "9844e3fa-5028-4ccb-a0db-53ee12d38fb9" + }, + { + "routeId": "L14", + "platformId": "U952Z1", + "id": "99c1de85-260e-44cd-866a-2d17a00a8083" + }, + { + "routeId": "L12", + "platformId": "U952Z2", + "id": "783266b8-ff5a-44c1-adfe-1567076e463b" + }, + { + "routeId": "L14", + "platformId": "U952Z2", + "id": "5cab6bc0-8f9b-454a-8791-8105804fe86d" + }, + { + "routeId": "L1012", + "platformId": "U9530Z301", + "id": "77e5a37b-0760-4298-ab57-f068adbeaf72" + }, + { + "routeId": "L1012", + "platformId": "U9531Z301", + "id": "0f6dc94d-f57d-4c15-9024-d0fd3c39019c" + }, + { + "routeId": "L1358", + "platformId": "U9532Z301", + "id": "fa7b43ca-8b2b-4c62-8c28-d2b89ea26293" + }, + { + "routeId": "L404", + "platformId": "U9533Z1", + "id": "29e85691-9bbe-4bf2-bef3-fdbbd777fe98" + }, + { + "routeId": "L404", + "platformId": "U9533Z2", + "id": "60786a4e-7a1c-4720-bf2b-a55253336404" + }, + { + "routeId": "L1358", + "platformId": "U9533Z301", + "id": "270a2ad0-77d1-4996-934f-ade4dcac13b4" + }, + { + "routeId": "L404", + "platformId": "U9534Z1", + "id": "62819aef-b4f5-4840-b26e-29df9187648d" + }, + { + "routeId": "L404", + "platformId": "U9534Z2", + "id": "89c1ca8a-1857-4800-b344-c689cc4813a0" + }, + { + "routeId": "L1358", + "platformId": "U9534Z301", + "id": "9ca4652a-32b1-4100-a70e-c240bde469b8" + }, + { + "routeId": "L1358", + "platformId": "U9535Z301", + "id": "59d2dae2-992b-48ac-892a-f8751890b623" + }, + { + "routeId": "L1358", + "platformId": "U9536Z301", + "id": "d64faae2-d521-4465-a23e-5954b8951543" + }, + { + "routeId": "L1358", + "platformId": "U9537Z301", + "id": "77e8a8e4-4d0d-435d-9d09-bd8cef534185" + }, + { + "routeId": "L404", + "platformId": "U9538Z1", + "id": "dffd727d-a649-4086-899c-84578fe89fe8" + }, + { + "routeId": "L404", + "platformId": "U9538Z2", + "id": "7eec2797-a07a-44d9-ae41-9f6283f3c463" + }, + { + "routeId": "L1358", + "platformId": "U9538Z301", + "id": "bd260c71-e439-47b7-839e-6365c34c065f" + }, + { + "routeId": "L1358", + "platformId": "U9539Z301", + "id": "581ce3dc-ea2b-4e82-8eef-8ec94a3922b0" + }, + { + "routeId": "L101", + "platformId": "U953Z1", + "id": "cffca2bb-37ef-4bcc-8a9c-6b9a638a60ad" + }, + { + "routeId": "L138", + "platformId": "U953Z1", + "id": "65b3c7b8-600c-4cf3-99fc-d23511a2a92a" + }, + { + "routeId": "L175", + "platformId": "U953Z1", + "id": "058a059f-6603-4f93-9d81-a16a69452d74" + }, + { + "routeId": "L177", + "platformId": "U953Z1", + "id": "3a866dd2-b31e-4876-9343-233e411688dd" + }, + { + "routeId": "L195", + "platformId": "U953Z1", + "id": "1ba67751-382c-495c-bfc3-99a85153ef47" + }, + { + "routeId": "L906", + "platformId": "U953Z1", + "id": "801d1c55-4415-4882-95da-8cea1e911df0" + }, + { + "routeId": "L991", + "platformId": "U953Z101", + "id": "1d550d78-6d01-4c05-b589-095d14268b0f" + }, + { + "routeId": "L991", + "platformId": "U953Z102", + "id": "6b1b7913-cdc6-4d87-b1a8-6930bb31ef64" + }, + { + "routeId": "L111", + "platformId": "U953Z2", + "id": "5890cab6-542b-45e4-905a-189fdf89cc58" + }, + { + "routeId": "L125", + "platformId": "U953Z2", + "id": "450ac8dc-25d6-4f68-a32c-39aa9ac09d7a" + }, + { + "routeId": "L175", + "platformId": "U953Z2", + "id": "f5ee6b58-48a7-4ce6-84fd-e8702fd01cba" + }, + { + "routeId": "L901", + "platformId": "U953Z2", + "id": "ba988e9f-e152-4ee1-86fe-d6f2e0a63174" + }, + { + "routeId": "L329", + "platformId": "U953Z2", + "id": "30f3940e-a8c9-4e5d-86ba-c2c5082c1f85" + }, + { + "routeId": "L101", + "platformId": "U953Z3", + "id": "fe35022b-c563-4217-95ed-813665e9660b" + }, + { + "routeId": "L138", + "platformId": "U953Z3", + "id": "f46c477f-74fb-457b-ba87-c5a09fc0db88" + }, + { + "routeId": "L177", + "platformId": "U953Z3", + "id": "2eb1b56b-5d52-4105-a903-7019764af578" + }, + { + "routeId": "L175", + "platformId": "U953Z7", + "id": "2cc93b15-3b98-461c-91f9-2d37aa52c95d" + }, + { + "routeId": "L177", + "platformId": "U953Z7", + "id": "c6015db7-773c-4cce-bf1c-b18b204caab1" + }, + { + "routeId": "L195", + "platformId": "U953Z7", + "id": "fe30a5cd-28e7-4658-bc02-41710eeee4e9" + }, + { + "routeId": "L901", + "platformId": "U953Z7", + "id": "566c15ea-7282-4853-bcc6-54a3eb2c1370" + }, + { + "routeId": "L906", + "platformId": "U953Z7", + "id": "ba9a487b-633e-4190-87bc-d4e3230818a2" + }, + { + "routeId": "L101", + "platformId": "U953Z8", + "id": "bff63731-8c9c-423d-9fb9-ce986fcfb845" + }, + { + "routeId": "L111", + "platformId": "U953Z8", + "id": "4422936b-d28a-48ac-994a-7f2ea71e757b" + }, + { + "routeId": "L125", + "platformId": "U953Z8", + "id": "837c20bf-80fa-4160-a683-a9d42c0609ff" + }, + { + "routeId": "L138", + "platformId": "U953Z8", + "id": "7acfc7b7-7e84-4ab6-ad3a-a65d9b945911" + }, + { + "routeId": "L329", + "platformId": "U953Z8", + "id": "84043edd-269e-4c05-ab18-bed31ea69051" + }, + { + "routeId": "L1357", + "platformId": "U9540Z301", + "id": "af0623da-f2ce-4d24-8dec-eb2c1279c1a4" + }, + { + "routeId": "L1357", + "platformId": "U9541Z301", + "id": "879f78b5-8bf0-4159-a0fe-2e8d0d1ea81d" + }, + { + "routeId": "L1357", + "platformId": "U9542Z301", + "id": "446c1b28-2e78-42d4-8fca-62badbcb9d7c" + }, + { + "routeId": "L1357", + "platformId": "U9543Z301", + "id": "6bd6ad1c-2619-495e-950f-128829fa768d" + }, + { + "routeId": "L1357", + "platformId": "U9544Z301", + "id": "8070382c-580a-421c-9892-49cd613b7e3a" + }, + { + "routeId": "L1357", + "platformId": "U9545Z301", + "id": "c90697c3-db12-496e-8647-ba3157c15c46" + }, + { + "routeId": "L1357", + "platformId": "U9546Z301", + "id": "fbf81f09-f1e3-411d-be0a-295b06d0b9f7" + }, + { + "routeId": "L1357", + "platformId": "U9547Z301", + "id": "b0d2c5bb-897f-42df-9692-d8258714964d" + }, + { + "routeId": "L1357", + "platformId": "U9548Z301", + "id": "a41a716c-4091-4cb8-a9ac-9ddb308571b4" + }, + { + "routeId": "L916", + "platformId": "U9549Z1", + "id": "e4978eb7-f67d-4145-a973-78346cc50080" + }, + { + "routeId": "L378", + "platformId": "U9549Z1", + "id": "94d78fdb-51a8-443a-9d9b-631315ca824b" + }, + { + "routeId": "L302", + "platformId": "U9549Z1", + "id": "6a8a883e-4fbd-4ba1-a2e2-8498da78dae1" + }, + { + "routeId": "L375", + "platformId": "U9549Z1", + "id": "f1108426-0dcc-4c7b-b631-4faf579cdfc9" + }, + { + "routeId": "L953", + "platformId": "U9549Z1", + "id": "f1d859d2-e220-47a7-802c-c859878985c3" + }, + { + "routeId": "L916", + "platformId": "U9549Z2", + "id": "21f4b561-edd3-49db-bdeb-e0381ef43e1f" + }, + { + "routeId": "L378", + "platformId": "U9549Z2", + "id": "ad75dca6-4a9c-467f-ac0c-df2f2b13efc1" + }, + { + "routeId": "L302", + "platformId": "U9549Z2", + "id": "c101c714-3aeb-4124-8de0-7bb17d5b47f3" + }, + { + "routeId": "L375", + "platformId": "U9549Z2", + "id": "a9212925-c2f3-4721-91c7-fe330e53fa46" + }, + { + "routeId": "L953", + "platformId": "U9549Z2", + "id": "1e9714a6-aa7a-40a6-a6f3-fc2f1fa88ce1" + }, + { + "routeId": "L333", + "platformId": "U9551Z1", + "id": "0e6015c1-9a1d-4a59-b577-3a71c48fabb2" + }, + { + "routeId": "L960", + "platformId": "U9551Z1", + "id": "14103234-e5ba-41e9-9b2b-4ad7323653a7" + }, + { + "routeId": "L333", + "platformId": "U9551Z2", + "id": "d666f4f2-93df-4c2c-a4bf-4460c43af7ad" + }, + { + "routeId": "L673", + "platformId": "U9556Z3", + "id": "b97a170d-b317-4efc-bb85-46142615e4f7" + }, + { + "routeId": "L673", + "platformId": "U9556Z4", + "id": "a297c8bc-c93a-44fe-9965-b8e30fb31bde" + }, + { + "routeId": "L673", + "platformId": "U9558Z1", + "id": "dd40f3ba-c091-42f0-829e-6f85e9a7b6ae" + }, + { + "routeId": "L673", + "platformId": "U9558Z2", + "id": "56704e26-89da-4a7f-9382-99ebaf5c79e0" + }, + { + "routeId": "L148", + "platformId": "U955Z1", + "id": "730fc741-96ad-4cce-9231-f54fdb959229" + }, + { + "routeId": "L673", + "platformId": "U9561Z2", + "id": "9cd69a76-0965-4429-997a-0a8f4ea1d7d2" + }, + { + "routeId": "L673", + "platformId": "U9562Z1", + "id": "255b3c25-8689-4625-a1d9-52e89ab4c87d" + }, + { + "routeId": "L673", + "platformId": "U9562Z2", + "id": "d6bc1134-b1fd-47bf-a411-020ed476ff52" + }, + { + "routeId": "L538", + "platformId": "U9569Z1", + "id": "d46c8287-76ab-428b-87c9-3a25f5caf230" + }, + { + "routeId": "L148", + "platformId": "U956Z1", + "id": "8e95f487-d29d-4e02-8196-73622d40305f" + }, + { + "routeId": "L148", + "platformId": "U956Z2", + "id": "e65ce598-31b8-4d87-8aa0-95f4c6d508f1" + }, + { + "routeId": "L1321", + "platformId": "U9574Z301", + "id": "3621794e-5aee-43ba-9c24-9de88b53d3cf" + }, + { + "routeId": "L904", + "platformId": "U957Z1", + "id": "ad11b406-cd5f-4f9f-ba7a-934079f61dd4" + }, + { + "routeId": "L153", + "platformId": "U957Z1", + "id": "b6bc129a-ea44-4d09-85f4-7c77685f122d" + }, + { + "routeId": "L992", + "platformId": "U957Z101", + "id": "f543bbdb-9592-46a4-8894-0a6c8e02aa63" + }, + { + "routeId": "L904", + "platformId": "U957Z2", + "id": "9c46133c-8944-41a8-b074-fe1d1ca6fd84" + }, + { + "routeId": "L153", + "platformId": "U957Z2", + "id": "43f5ba64-7009-43eb-8e04-1488161c5588" + }, + { + "routeId": "L7", + "platformId": "U957Z3", + "id": "9868574d-57cf-4fa0-b426-b9d2ef4bc2f0" + }, + { + "routeId": "L7", + "platformId": "U957Z4", + "id": "3230be68-ff39-4cbb-af25-9e523ef219e0" + }, + { + "routeId": "L487", + "platformId": "U9584Z1", + "id": "2985c112-4bc2-4928-be56-5f30ba28ac4e" + }, + { + "routeId": "L487", + "platformId": "U9584Z2", + "id": "719e6bd9-a2dc-49be-bf02-f54f13f76606" + }, + { + "routeId": "L148", + "platformId": "U958Z1", + "id": "d3c9b702-c087-4ead-a0c7-838683b81c4e" + }, + { + "routeId": "L679", + "platformId": "U9590Z1", + "id": "7cb18554-b21e-40ac-9746-74efa9415b59" + }, + { + "routeId": "L679", + "platformId": "U9595Z1", + "id": "9ec64ced-13ae-4459-b1dd-a3c235bcfcc2" + }, + { + "routeId": "L679", + "platformId": "U9595Z2", + "id": "fbe1233b-d564-4c94-b0dd-6a2cc54cf956" + }, + { + "routeId": "L679", + "platformId": "U9596Z1", + "id": "0526c5be-7aa0-480e-8875-0b769345c1cf" + }, + { + "routeId": "L679", + "platformId": "U9596Z2", + "id": "4dfd4f73-c9bb-402b-9b4d-34eb39006cdd" + }, + { + "routeId": "L679", + "platformId": "U9597Z1", + "id": "c5c3b04d-6dd6-4422-98fc-d7ff2df2db04" + }, + { + "routeId": "L679", + "platformId": "U9597Z2", + "id": "be77920c-0983-4d52-a2a5-1f2ec401f2e3" + }, + { + "routeId": "L679", + "platformId": "U9598Z1", + "id": "640ff4c9-4127-408b-b69c-3cef5c37d105" + }, + { + "routeId": "L679", + "platformId": "U9598Z2", + "id": "c0a7836b-9729-4534-91f0-6b638838fc8a" + }, + { + "routeId": "L148", + "platformId": "U959Z1", + "id": "74198371-439e-4892-968a-4df771305b9a" + }, + { + "routeId": "L148", + "platformId": "U959Z2", + "id": "8d13dd97-fd80-4181-a5b0-619b0a86c3b4" + }, + { + "routeId": "L679", + "platformId": "U9600Z1", + "id": "6910a567-af75-46ab-a081-0c7db929c9ca" + }, + { + "routeId": "L679", + "platformId": "U9600Z2", + "id": "3cc8ebc6-0adb-447a-8779-35e60c62c5a3" + }, + { + "routeId": "L679", + "platformId": "U9601Z1", + "id": "8cc66291-c315-4692-8fbd-91e03b2d41ee" + }, + { + "routeId": "L679", + "platformId": "U9601Z3", + "id": "d2192c6f-8afb-4d58-ab8f-77f7fe17cb78" + }, + { + "routeId": "L679", + "platformId": "U9602Z1", + "id": "96082706-3ed6-4de2-8a9c-9367be77ca85" + }, + { + "routeId": "L679", + "platformId": "U9602Z2", + "id": "50a78ac3-ce6f-4384-92c7-0be42b4ef503" + }, + { + "routeId": "L679", + "platformId": "U9604Z1", + "id": "ce933b84-4c9a-4cd9-9375-d863b204c7ab" + }, + { + "routeId": "L679", + "platformId": "U9605Z1", + "id": "465121e9-f2ac-4cf1-ae06-9a752a098b0e" + }, + { + "routeId": "L679", + "platformId": "U9605Z2", + "id": "f697872a-72ec-4279-b11f-df4c683267a5" + }, + { + "routeId": "L679", + "platformId": "U9606Z1", + "id": "7429eea5-eb1e-4ae6-b8c1-c38e642ce0ed" + }, + { + "routeId": "L679", + "platformId": "U9606Z2", + "id": "f888916c-df13-47c8-a938-02c919ecea17" + }, + { + "routeId": "L679", + "platformId": "U9607Z1", + "id": "8dee4cdd-eef6-4a4c-a234-c81e4846ff01" + }, + { + "routeId": "L679", + "platformId": "U9607Z2", + "id": "aaeb8646-4193-4fed-b0c2-83ca7096fc0d" + }, + { + "routeId": "L491", + "platformId": "U9608Z1", + "id": "bb6f2cba-f58a-4085-a97f-5be417c98dac" + }, + { + "routeId": "L491", + "platformId": "U9608Z2", + "id": "764522e3-0889-4241-a81f-34a7f2611896" + }, + { + "routeId": "L491", + "platformId": "U9609Z1", + "id": "95c5f6c7-2c24-4f1c-adb2-a7c5521895ae" + }, + { + "routeId": "L491", + "platformId": "U9609Z2", + "id": "679939f7-c885-4743-96a9-629cf1f08c44" + }, + { + "routeId": "L126", + "platformId": "U960Z1", + "id": "77d48174-c16c-421f-9337-167b20b646f6" + }, + { + "routeId": "L170", + "platformId": "U960Z1", + "id": "217400cf-a385-49fd-8dc7-182239c0e0f4" + }, + { + "routeId": "L126", + "platformId": "U960Z2", + "id": "3ab841c2-ff5e-47b2-9a23-6ce936062723" + }, + { + "routeId": "L170", + "platformId": "U960Z2", + "id": "65c3bb49-454d-4e00-bd7f-3481496f4f39" + }, + { + "routeId": "L528", + "platformId": "U9611Z1", + "id": "5e9c8aae-21c2-43a5-aab9-3584bad02b44" + }, + { + "routeId": "L528", + "platformId": "U9611Z2", + "id": "ce9487f8-7329-4697-b252-125c1f6bef6a" + }, + { + "routeId": "L384", + "platformId": "U9612Z1", + "id": "9c253969-0a9e-444f-9397-da133ec098bb" + }, + { + "routeId": "L528", + "platformId": "U9612Z1", + "id": "654d7711-b79b-4bb1-a3fa-c831c0bc76b6" + }, + { + "routeId": "L384", + "platformId": "U9612Z2", + "id": "b6e38573-df41-4b43-ba3d-077a16bbed9e" + }, + { + "routeId": "L528", + "platformId": "U9612Z2", + "id": "2996cebc-ccd2-4597-b7ed-fd899a9973ca" + }, + { + "routeId": "L384", + "platformId": "U9613Z1", + "id": "44ca3bd6-bee4-45f0-a20b-b54915279aee" + }, + { + "routeId": "L528", + "platformId": "U9613Z1", + "id": "2bf4f3ad-d9c3-4484-993f-48a9359f9cc7" + }, + { + "routeId": "L384", + "platformId": "U9613Z2", + "id": "2e8343c5-2849-4673-9a1b-65e89b9d0c95" + }, + { + "routeId": "L528", + "platformId": "U9613Z2", + "id": "b4063e35-924a-4cd4-8cf4-64150c1c1ccf" + }, + { + "routeId": "L384", + "platformId": "U9614Z1", + "id": "10d66dbf-a07c-46c0-8667-8529a90c5bde" + }, + { + "routeId": "L528", + "platformId": "U9614Z1", + "id": "4c50a389-7f92-44d4-afd4-b827f8caca2e" + }, + { + "routeId": "L548", + "platformId": "U9614Z1", + "id": "eeef2ecf-f13d-4dce-a0ff-87c1253452fe" + }, + { + "routeId": "L384", + "platformId": "U9614Z2", + "id": "556a6d36-015a-4cc0-8301-80439342b925" + }, + { + "routeId": "L528", + "platformId": "U9614Z2", + "id": "bf9ed3cc-8004-4472-aa4d-fb9ed4cbd4e9" + }, + { + "routeId": "L384", + "platformId": "U9615Z3", + "id": "14ff1462-ff7f-441c-bce3-4687b258875b" + }, + { + "routeId": "L528", + "platformId": "U9615Z3", + "id": "75d19001-47c4-4f0e-81cf-b4cf1f6c36df" + }, + { + "routeId": "L548", + "platformId": "U9615Z3", + "id": "15ddd63e-738c-4747-bc55-a39a1307829f" + }, + { + "routeId": "L384", + "platformId": "U9615Z4", + "id": "d003468d-8bb0-4924-bb17-bdf8dc8e7381" + }, + { + "routeId": "L528", + "platformId": "U9615Z4", + "id": "68b9b707-a4fd-45da-940f-a24922b89160" + }, + { + "routeId": "L548", + "platformId": "U9615Z4", + "id": "0dab277a-20ef-4495-942f-07d568dbd382" + }, + { + "routeId": "L531", + "platformId": "U9616Z1", + "id": "d038f844-b331-4100-a5f2-105463e56239" + }, + { + "routeId": "L548", + "platformId": "U9616Z1", + "id": "b78ca9ae-84da-417d-b3c4-211e16793306" + }, + { + "routeId": "L639", + "platformId": "U9616Z1", + "id": "1873a118-7a78-4bac-9e71-c73a0f05a746" + }, + { + "routeId": "L384", + "platformId": "U9616Z2", + "id": "dcc58fb6-3305-477a-88ac-3add8456a5bb" + }, + { + "routeId": "L528", + "platformId": "U9616Z2", + "id": "b29d60f1-ee77-4f29-a096-df2aff88ba7b" + }, + { + "routeId": "L548", + "platformId": "U9616Z2", + "id": "112a4331-84fd-417a-8784-c85c47e44ab2" + }, + { + "routeId": "L545", + "platformId": "U9616Z3", + "id": "f899f135-f04f-4571-b3db-c2b647df34e0" + }, + { + "routeId": "L546", + "platformId": "U9616Z3", + "id": "83e6a6cf-45f3-4a0f-bcd8-10b0aac88018" + }, + { + "routeId": "L641", + "platformId": "U9616Z4", + "id": "8d43a7f4-6a4f-4ea0-9712-6ba03b505f01" + }, + { + "routeId": "L384", + "platformId": "U9616Z5", + "id": "274d42df-5d07-49f7-9e32-dbaa62d3d5c5" + }, + { + "routeId": "L528", + "platformId": "U9616Z5", + "id": "0ab0c556-e798-4a1e-94a3-2971923f3bf8" + }, + { + "routeId": "L545", + "platformId": "U9616Z5", + "id": "f29a1def-7e84-4bb4-830b-fd2a48da7b2d" + }, + { + "routeId": "L546", + "platformId": "U9616Z5", + "id": "4f90ea3a-ebd0-4d0e-bb03-93787b6f3207" + }, + { + "routeId": "L531", + "platformId": "U9616Z6", + "id": "f82b5bd9-03b4-4c2d-831c-b6810692c255" + }, + { + "routeId": "L639", + "platformId": "U9616Z6", + "id": "338e8184-e9b8-40c2-9b7d-0e828e71d64b" + }, + { + "routeId": "L641", + "platformId": "U9616Z7", + "id": "5795741c-e6ff-4424-878b-3bba794c8ca4" + }, + { + "routeId": "L548", + "platformId": "U9616Z7", + "id": "ab2c8fc1-a1b8-4b6f-9df3-513db681a830" + }, + { + "routeId": "L384", + "platformId": "U9617Z1", + "id": "fe9269f2-9e71-429f-b21e-bbb4b0587b54" + }, + { + "routeId": "L641", + "platformId": "U9617Z1", + "id": "de80c150-f6ec-45b9-929a-73649c2baad9" + }, + { + "routeId": "L531", + "platformId": "U9617Z1", + "id": "64194061-274e-4ff6-9a64-3f34f6b34bfe" + }, + { + "routeId": "L528", + "platformId": "U9617Z1", + "id": "ecd9ef4d-0d12-4048-afab-797f64413785" + }, + { + "routeId": "L548", + "platformId": "U9617Z1", + "id": "a87213aa-30a1-41c1-b960-5eb5ce7db13a" + }, + { + "routeId": "L545", + "platformId": "U9617Z1", + "id": "75acc993-21ed-4ca7-aa17-dc69681a652a" + }, + { + "routeId": "L546", + "platformId": "U9617Z1", + "id": "74bf42ab-a01f-45cb-9aa8-e0a945810f7d" + }, + { + "routeId": "L639", + "platformId": "U9617Z1", + "id": "26e3ccd1-856b-490f-8bc4-b2d70547cd1e" + }, + { + "routeId": "L384", + "platformId": "U9617Z2", + "id": "daa69ee5-0b83-4dbe-877f-d38ae0d89f44" + }, + { + "routeId": "L641", + "platformId": "U9617Z2", + "id": "6cd5953c-3310-4f58-af9f-b225eda44f02" + }, + { + "routeId": "L528", + "platformId": "U9617Z2", + "id": "b84c6182-d6d1-4bee-a41e-40c14ce51c3a" + }, + { + "routeId": "L531", + "platformId": "U9617Z2", + "id": "64661595-83b0-4628-aef2-3471ff5d63a6" + }, + { + "routeId": "L548", + "platformId": "U9617Z2", + "id": "60ca40f4-2fee-4a1c-9390-817dfc0aebfb" + }, + { + "routeId": "L545", + "platformId": "U9617Z2", + "id": "e20a837f-303d-4679-995d-3ad42d965723" + }, + { + "routeId": "L546", + "platformId": "U9617Z2", + "id": "e6e402d2-cbdd-44db-b6e0-f0458bdb898f" + }, + { + "routeId": "L639", + "platformId": "U9617Z2", + "id": "d004b390-94fd-4e77-af55-7f0600975c50" + }, + { + "routeId": "L643", + "platformId": "U9618Z1", + "id": "e24f6ba7-3cac-4c7a-9efd-240cf045e006" + }, + { + "routeId": "L528", + "platformId": "U9618Z2", + "id": "ba92a976-6319-40f0-bf5b-f99c9dde14c3" + }, + { + "routeId": "L548", + "platformId": "U9618Z3", + "id": "6d48e994-b884-41eb-abd3-399b8f1d284e" + }, + { + "routeId": "L545", + "platformId": "U9618Z4", + "id": "a1db62fc-c61b-4894-9cd3-7dc249203e70" + }, + { + "routeId": "L546", + "platformId": "U9618Z4", + "id": "ac12b739-ef73-4495-9dbf-d27c4e7ce8d2" + }, + { + "routeId": "L531", + "platformId": "U9618Z5", + "id": "76b7202f-0173-4edc-8ac7-65ec4d47d7e5" + }, + { + "routeId": "L639", + "platformId": "U9618Z5", + "id": "7b0b7f74-1db9-4226-a2a8-51f401936f2d" + }, + { + "routeId": "L641", + "platformId": "U9618Z6", + "id": "72a389f7-4fc8-45ff-a81e-eaa74ede5bd5" + }, + { + "routeId": "L641", + "platformId": "U9618Z7", + "id": "e866c031-8d2f-4955-b3a3-1e5338d6bb17" + }, + { + "routeId": "L384", + "platformId": "U9618Z8", + "id": "1d72e32b-96d2-46ee-83f8-f4d20ba1f2ca" + }, + { + "routeId": "L384", + "platformId": "U9618Z9", + "id": "d4fc8417-db2c-45ca-9ad0-809db7aa3479" + }, + { + "routeId": "L528", + "platformId": "U9618Z9", + "id": "0ab43992-0fab-4776-a163-61c30d2b6077" + }, + { + "routeId": "L548", + "platformId": "U9618Z9", + "id": "579915f5-c083-498f-8e94-5ba4276a4e56" + }, + { + "routeId": "L545", + "platformId": "U9618Z9", + "id": "43074429-25a3-411e-8ec0-b84d121bc7fe" + }, + { + "routeId": "L546", + "platformId": "U9618Z9", + "id": "69fb954b-5787-40f8-9ffc-c62b63b6a004" + }, + { + "routeId": "L643", + "platformId": "U9618Z9", + "id": "7296a214-a424-4ffb-91f8-a7be502a556d" + }, + { + "routeId": "L490", + "platformId": "U9619Z1", + "id": "ea38ad24-aa3b-43a2-8bf7-b3b593099d8b" + }, + { + "routeId": "L490", + "platformId": "U9619Z2", + "id": "313efb1d-c515-411a-a62b-9b46dbff3047" + }, + { + "routeId": "L170", + "platformId": "U961Z1", + "id": "795a7b3e-d61d-4dd0-8c8f-6dd94e6ac929" + }, + { + "routeId": "L170", + "platformId": "U961Z2", + "id": "8131d694-bf5c-4f87-887d-9a0ca7884055" + }, + { + "routeId": "L395", + "platformId": "U9621Z1", + "id": "180e6a50-fb76-4e80-a3ff-dc5fb77e4803" + }, + { + "routeId": "L420", + "platformId": "U9621Z1", + "id": "792d10f2-6a84-4c6f-90a9-ec791b6fe437" + }, + { + "routeId": "L520", + "platformId": "U9621Z1", + "id": "6013f067-ddcc-4d55-b0b8-7275810be10a" + }, + { + "routeId": "L517", + "platformId": "U9621Z1", + "id": "76684131-3273-4f7e-acb3-eb9d098d6386" + }, + { + "routeId": "L395", + "platformId": "U9621Z2", + "id": "95fa70e9-a96c-4ae3-ad3e-5a27066313dc" + }, + { + "routeId": "L520", + "platformId": "U9621Z2", + "id": "4ba051ca-596e-4d21-87b2-bfc332587ccd" + }, + { + "routeId": "L420", + "platformId": "U9621Z2", + "id": "258aea46-e8b4-4376-b9ac-a336de084575" + }, + { + "routeId": "L517", + "platformId": "U9621Z2", + "id": "80570ba8-c340-4640-9f77-55ffedd06db0" + }, + { + "routeId": "L392", + "platformId": "U9622Z1", + "id": "a30f09d1-7a3e-4ae2-8f7d-50460abf4774" + }, + { + "routeId": "L392", + "platformId": "U9622Z2", + "id": "258a7b6e-4588-4524-9e4f-448038f64a62" + }, + { + "routeId": "L392", + "platformId": "U9623Z1", + "id": "1307e62b-5261-4c70-957d-a0f8ee3f959c" + }, + { + "routeId": "L392", + "platformId": "U9623Z2", + "id": "e02f4737-e322-407e-ba25-36cde3a09b0d" + }, + { + "routeId": "L521", + "platformId": "U9624Z1", + "id": "3c30d16a-2ed2-44da-a982-2a314200d1c6" + }, + { + "routeId": "L521", + "platformId": "U9624Z2", + "id": "2d11ba1b-256f-409d-8497-e721ec938202" + }, + { + "routeId": "L392", + "platformId": "U9625Z1", + "id": "f18b24fd-6efa-4e93-9021-955db0531df8" + }, + { + "routeId": "L392", + "platformId": "U9625Z2", + "id": "cfde4a35-9495-40dc-a7fe-d61d01c55673" + }, + { + "routeId": "L392", + "platformId": "U9626Z1", + "id": "0b1f14bb-e194-4f8e-963a-43e2ae448251" + }, + { + "routeId": "L392", + "platformId": "U9627Z1", + "id": "d8d679c6-e6bd-4e33-9e9e-eef680ce8d80" + }, + { + "routeId": "L392", + "platformId": "U9627Z2", + "id": "40109eb3-f8a6-4d78-883e-1ac708ffe22f" + }, + { + "routeId": "L392", + "platformId": "U9628Z1", + "id": "79a63a49-d857-4e1a-b399-ec44dd67135d" + }, + { + "routeId": "L392", + "platformId": "U9628Z2", + "id": "94025212-1395-4ba3-870a-bae51f3f2755" + }, + { + "routeId": "L392", + "platformId": "U9629Z1", + "id": "c73179b1-e224-41f6-a079-a3a70ae750e3" + }, + { + "routeId": "L392", + "platformId": "U9629Z2", + "id": "fba7b823-7053-4cbf-a415-cca3b992e87c" + }, + { + "routeId": "L103", + "platformId": "U962Z1", + "id": "47eda336-928e-4e84-8f06-854730b26e09" + }, + { + "routeId": "L914", + "platformId": "U962Z1", + "id": "314c5d09-fc00-4a1f-9f67-fbbbd88a36a1" + }, + { + "routeId": "L103", + "platformId": "U962Z2", + "id": "1be93de2-eabd-4c40-8c8b-3cdf5bc7328e" + }, + { + "routeId": "L914", + "platformId": "U962Z2", + "id": "f0ae1a49-3551-4a57-a109-9fc9add16b53" + }, + { + "routeId": "L392", + "platformId": "U9630Z1", + "id": "43ecd709-08d1-49fa-9d68-29b316897ce9" + }, + { + "routeId": "L392", + "platformId": "U9630Z2", + "id": "d6144d3c-ab4f-4ba0-b7a9-0f8160421365" + }, + { + "routeId": "L392", + "platformId": "U9631Z1", + "id": "dd1304f3-2bd6-4d8e-8dc3-3407b6d63c33" + }, + { + "routeId": "L392", + "platformId": "U9631Z2", + "id": "8df707d7-81c0-4d46-9b40-7b55b7364671" + }, + { + "routeId": "L392", + "platformId": "U9632Z1", + "id": "160c217f-0474-4d31-a6f4-cba10cb4103b" + }, + { + "routeId": "L392", + "platformId": "U9632Z2", + "id": "933ebba5-617b-4501-bfbf-602d1d75fd7f" + }, + { + "routeId": "L392", + "platformId": "U9633Z1", + "id": "70b56749-59f8-4a10-8f89-d1fdb10d5bf9" + }, + { + "routeId": "L392", + "platformId": "U9633Z2", + "id": "b5b986c6-9540-4a6b-833c-8beb47bd05ac" + }, + { + "routeId": "L392", + "platformId": "U9636Z1", + "id": "4edf57cb-7c18-41b6-bddc-938ec5a034fb" + }, + { + "routeId": "L392", + "platformId": "U9636Z2", + "id": "fd302a32-3e1f-40a7-be87-2896c9355dcb" + }, + { + "routeId": "L392", + "platformId": "U9637Z1", + "id": "4a955823-06b1-41c6-8aa7-5e3ed994a8ef" + }, + { + "routeId": "L392", + "platformId": "U9637Z2", + "id": "7ed8abaa-5d74-43d1-891f-b64a1ecb058f" + }, + { + "routeId": "L392", + "platformId": "U9638Z1", + "id": "f3cd8814-24c4-4104-a62c-83f0b5338375" + }, + { + "routeId": "L392", + "platformId": "U9638Z2", + "id": "a0993fb4-a73c-4854-b16e-fd922325e509" + }, + { + "routeId": "L392", + "platformId": "U9639Z1", + "id": "2e900853-8a73-41aa-8ac1-5adf5a83f2fa" + }, + { + "routeId": "L392", + "platformId": "U9639Z2", + "id": "b623b2c0-abc6-43e8-8021-ba2b773b3793" + }, + { + "routeId": "L125", + "platformId": "U963Z1", + "id": "00ee0cc3-5469-40ed-bda4-13e91c5c0cc7" + }, + { + "routeId": "L911", + "platformId": "U963Z1", + "id": "3148867b-c3d1-47c1-a94d-088639459793" + }, + { + "routeId": "L204", + "platformId": "U963Z1", + "id": "1c867c9e-dd56-4e38-8d82-a6243fb96c06" + }, + { + "routeId": "L240", + "platformId": "U963Z1", + "id": "d56ad943-be00-4685-8996-f516dbd46147" + }, + { + "routeId": "L392", + "platformId": "U9640Z1", + "id": "7e66c855-2eaf-4f97-aaee-b9c8112b8ab2" + }, + { + "routeId": "L392", + "platformId": "U9640Z2", + "id": "7c6d875a-b027-46ba-acee-148d88f58789" + }, + { + "routeId": "L517", + "platformId": "U9641Z1", + "id": "255ad3e1-f955-42da-8886-4310424b00e2" + }, + { + "routeId": "L517", + "platformId": "U9641Z2", + "id": "3a234bf8-0565-4ffd-a57e-55f8cfed69ec" + }, + { + "routeId": "L517", + "platformId": "U9642Z1", + "id": "bbd2ed60-1155-4d4a-a23b-7ddaf42dee4a" + }, + { + "routeId": "L517", + "platformId": "U9642Z2", + "id": "1e79100c-2c0a-46de-8787-4e27565e56de" + }, + { + "routeId": "L517", + "platformId": "U9643Z1", + "id": "547238ca-502d-43ff-bfda-9d0f91442171" + }, + { + "routeId": "L517", + "platformId": "U9643Z2", + "id": "96adadb0-9864-4ca2-b755-896f83aedfba" + }, + { + "routeId": "L517", + "platformId": "U9644Z1", + "id": "dd31f680-292d-455a-a700-a4a0e559dfee" + }, + { + "routeId": "L517", + "platformId": "U9644Z2", + "id": "a21d760e-224f-498d-aa22-82f6c6092065" + }, + { + "routeId": "L517", + "platformId": "U9645Z1", + "id": "6cd18fc5-44f6-4308-91ee-ef6bec0318cb" + }, + { + "routeId": "L517", + "platformId": "U9645Z2", + "id": "f20c22c1-e8e1-4954-bf02-700aaca0c06b" + }, + { + "routeId": "L395", + "platformId": "U9646Z1", + "id": "157309f4-dd70-42b2-ad6b-458ee588f986" + }, + { + "routeId": "L395", + "platformId": "U9646Z2", + "id": "74507d41-5cbe-4326-bda0-ea7e65d8ed09" + }, + { + "routeId": "L517", + "platformId": "U9646Z3", + "id": "b9ebfae9-32a8-4857-a603-47727510c590" + }, + { + "routeId": "L517", + "platformId": "U9646Z4", + "id": "6e2a3671-508b-49dc-bc8e-500774ff7c73" + }, + { + "routeId": "L754", + "platformId": "U9646Z5", + "id": "55055709-4979-41b8-ac4d-be357bf837a9" + }, + { + "routeId": "L754", + "platformId": "U9646Z6", + "id": "f17ff0d5-2d75-485c-beba-794aba090820" + }, + { + "routeId": "L395", + "platformId": "U9647Z1", + "id": "54616b9d-b520-4090-b6ad-553eb480a7f1" + }, + { + "routeId": "L754", + "platformId": "U9647Z1", + "id": "e2c4f663-b08b-422d-a52c-e8faa5e6b26b" + }, + { + "routeId": "L395", + "platformId": "U9647Z2", + "id": "b4fff7f7-e584-4c4a-a7a7-f36d4c81cbe0" + }, + { + "routeId": "L754", + "platformId": "U9647Z2", + "id": "a9035e3b-1e5d-4960-a3f2-c03af89d0f66" + }, + { + "routeId": "L395", + "platformId": "U9648Z1", + "id": "46408e93-a857-4b13-83d3-ae0f4a1dd0b7" + }, + { + "routeId": "L754", + "platformId": "U9648Z1", + "id": "7e386ae5-6409-4d4e-9b23-dadb90e727bb" + }, + { + "routeId": "L501", + "platformId": "U9649Z1", + "id": "c77a80d5-e5a7-43d7-b190-04a9c7b933b8" + }, + { + "routeId": "L501", + "platformId": "U9649Z2", + "id": "4d21a33b-f2dd-4d5a-b045-c94cc34cd7d1" + }, + { + "routeId": "L148", + "platformId": "U964Z1", + "id": "6055bd6e-9c0a-4416-9f8b-c0662bc5bdb2" + }, + { + "routeId": "L148", + "platformId": "U964Z2", + "id": "495e1be1-6185-4346-a905-b609bf1c0fb4" + }, + { + "routeId": "L431", + "platformId": "U9650Z1", + "id": "9f437a1c-137f-4701-a505-da9c17a92fd7" + }, + { + "routeId": "L442", + "platformId": "U9650Z1", + "id": "b03a1e77-9176-425c-9730-d78060095331" + }, + { + "routeId": "L431", + "platformId": "U9650Z2", + "id": "6f32bc38-5fcf-4bda-9d3c-1df48418e6d0" + }, + { + "routeId": "L442", + "platformId": "U9650Z2", + "id": "9b63075a-cea0-4add-8fbb-1f3962fe770b" + }, + { + "routeId": "L517", + "platformId": "U9652Z1", + "id": "bddb80cd-c4d7-4117-be82-a1cbe91fa3e4" + }, + { + "routeId": "L517", + "platformId": "U9655Z1", + "id": "fc9a34c3-fa95-44fc-9714-4b669950c3f8" + }, + { + "routeId": "L517", + "platformId": "U9655Z2", + "id": "dcc27ffe-9496-417c-8215-b3b03765696b" + }, + { + "routeId": "L517", + "platformId": "U9657Z1", + "id": "f36ecb35-83f8-49c5-bdcc-79eeb0e2cc04" + }, + { + "routeId": "L517", + "platformId": "U9657Z2", + "id": "7cd41347-15ae-4fcc-abf8-24ab199e9cd7" + }, + { + "routeId": "L517", + "platformId": "U9658Z1", + "id": "9944abfa-1165-4516-96c8-db955cffcdc9" + }, + { + "routeId": "L517", + "platformId": "U9659Z1", + "id": "cc98fb22-9637-485b-9f23-8c6a54564aaa" + }, + { + "routeId": "L517", + "platformId": "U9659Z2", + "id": "1d142f29-4bb5-4779-ab74-0c154b210f28" + }, + { + "routeId": "L231", + "platformId": "U965Z1", + "id": "40532121-fcfd-4022-b632-426cd424eeec" + }, + { + "routeId": "L517", + "platformId": "U9660Z1", + "id": "bdfcfb67-758b-4c5d-a128-e745638e634d" + }, + { + "routeId": "L395", + "platformId": "U9661Z1", + "id": "56d98b88-e601-4f7e-af62-51e30d5e8fd2" + }, + { + "routeId": "L501", + "platformId": "U9661Z1", + "id": "bf61d450-b678-498d-9a8b-5318e4f89cdd" + }, + { + "routeId": "L754", + "platformId": "U9661Z1", + "id": "5b3fb09f-299b-4c0f-8b40-86b7d0bb96cc" + }, + { + "routeId": "L395", + "platformId": "U9661Z2", + "id": "058a7aa8-5528-4066-9f4a-3d19381ef252" + }, + { + "routeId": "L501", + "platformId": "U9661Z2", + "id": "12060c7e-5f92-4c89-86ec-8a49edcb1b12" + }, + { + "routeId": "L754", + "platformId": "U9661Z2", + "id": "f9785e8b-f472-405b-838c-208262cce069" + }, + { + "routeId": "L501", + "platformId": "U9662Z1", + "id": "c0b7b865-c693-414f-a168-595e4d76654b" + }, + { + "routeId": "L501", + "platformId": "U9662Z2", + "id": "47ab4b85-06c9-48fa-aeaf-3781ed733935" + }, + { + "routeId": "L392", + "platformId": "U9663Z1", + "id": "851f4c5c-5b33-4054-a7ea-c9a6ecfdca81" + }, + { + "routeId": "L531", + "platformId": "U9663Z1", + "id": "8fc9bdf9-2069-4a41-87a9-19b4c3c39254" + }, + { + "routeId": "L392", + "platformId": "U9663Z2", + "id": "1be4a648-4b7f-4b85-a3d7-a5bfec743cb0" + }, + { + "routeId": "L531", + "platformId": "U9663Z2", + "id": "10ad8725-0b77-4d9f-b240-1f0320b0ee52" + }, + { + "routeId": "L506", + "platformId": "U9665Z2", + "id": "47d1cf0f-b647-44e3-b708-b1891a7e4821" + }, + { + "routeId": "L531", + "platformId": "U9666Z1", + "id": "ccfbd9d6-dac4-4a1a-bad5-787c23f4b515" + }, + { + "routeId": "L531", + "platformId": "U9666Z2", + "id": "ddd41232-39a5-4862-92d6-1ab69fe047a6" + }, + { + "routeId": "L531", + "platformId": "U9669Z1", + "id": "69b0ae2d-d79a-48c1-9aaf-2cc502d4d8c9" + }, + { + "routeId": "L531", + "platformId": "U9669Z2", + "id": "827835c9-2bd6-446f-a002-13e7da65fbe2" + }, + { + "routeId": "L174", + "platformId": "U966Z1", + "id": "7d076f6b-e000-43ac-bea7-2f7f83e61c75" + }, + { + "routeId": "L184", + "platformId": "U966Z1", + "id": "6d409133-938c-4731-8e27-555a8aba4a29" + }, + { + "routeId": "L902", + "platformId": "U966Z1", + "id": "3400b732-4b33-41fc-aad4-6dd23272e463" + }, + { + "routeId": "L174", + "platformId": "U966Z2", + "id": "a1a87dda-3ad4-4c53-b734-e3e11ba13eb5" + }, + { + "routeId": "L184", + "platformId": "U966Z2", + "id": "8290f87b-77b1-44f1-8736-b426eaf61495" + }, + { + "routeId": "L902", + "platformId": "U966Z2", + "id": "473880be-3e11-41ae-9967-f429361fa959" + }, + { + "routeId": "L168", + "platformId": "U966Z3", + "id": "4ffc3960-7820-46e2-9dec-2cdcb684a16e" + }, + { + "routeId": "L168", + "platformId": "U966Z4", + "id": "091c2f99-9169-46b9-8264-3aae4ee14458" + }, + { + "routeId": "L531", + "platformId": "U9670Z1", + "id": "3524ed27-93cc-4369-ab16-a2bea78d298e" + }, + { + "routeId": "L531", + "platformId": "U9670Z2", + "id": "2a49ae85-76de-44c5-9b1c-217ca85244e5" + }, + { + "routeId": "L531", + "platformId": "U9671Z1", + "id": "8423a49c-c4b9-497e-8e7c-b44433158de6" + }, + { + "routeId": "L531", + "platformId": "U9671Z2", + "id": "33b128fb-3f75-4f99-ac67-5d6391af8295" + }, + { + "routeId": "L531", + "platformId": "U9672Z1", + "id": "b46bc4ed-c34c-4d3a-8476-116cc2293d05" + }, + { + "routeId": "L531", + "platformId": "U9672Z2", + "id": "ff4a924e-ff3c-4350-a2f2-4c4c18e6c033" + }, + { + "routeId": "L531", + "platformId": "U9673Z1", + "id": "7c6447cb-6ca7-464b-a597-f19c9f903424" + }, + { + "routeId": "L531", + "platformId": "U9673Z2", + "id": "24aa0c4b-7f75-4f18-94b5-c9086d060553" + }, + { + "routeId": "L2260", + "platformId": "U9675Z401", + "id": "0ca971ff-46d2-4757-8776-ca9d6ba8439f" + }, + { + "routeId": "L504", + "platformId": "U9676Z1", + "id": "364d5fc9-637f-4dff-9719-8bf5020f32d6" + }, + { + "routeId": "L512", + "platformId": "U9676Z1", + "id": "df35d6b3-2b96-43dd-b841-7c192c492bc5" + }, + { + "routeId": "L512", + "platformId": "U9676Z2", + "id": "8b39ec19-00bb-40d2-8c55-28c4b275834e" + }, + { + "routeId": "L504", + "platformId": "U9676Z2", + "id": "d07cdf10-fa2a-4992-98f6-cf0275be7b14" + }, + { + "routeId": "L504", + "platformId": "U9677Z1", + "id": "e06bcf83-db96-4c27-8ae0-9468723223be" + }, + { + "routeId": "L512", + "platformId": "U9677Z1", + "id": "7ce42296-e632-493a-a3aa-2f00c0cb511c" + }, + { + "routeId": "L512", + "platformId": "U9677Z2", + "id": "eca84a36-5e62-44d1-bf50-4100e8793fe0" + }, + { + "routeId": "L504", + "platformId": "U9677Z2", + "id": "cb0708f4-b4db-4da5-9a4e-4a8216475172" + }, + { + "routeId": "L504", + "platformId": "U9678Z1", + "id": "ea516a15-6fa7-4620-904d-d0f45b6850e1" + }, + { + "routeId": "L512", + "platformId": "U9678Z1", + "id": "383002fb-b544-46d8-b632-f09aef36cde0" + }, + { + "routeId": "L512", + "platformId": "U9678Z2", + "id": "8a93cef3-6a14-4ff0-b2cd-d7ea72231baa" + }, + { + "routeId": "L504", + "platformId": "U9678Z2", + "id": "ef0931d6-aee7-4445-8a01-dbf57607a987" + }, + { + "routeId": "L504", + "platformId": "U9679Z1", + "id": "15995381-8c06-4450-bca0-9fb8d3524b10" + }, + { + "routeId": "L512", + "platformId": "U9679Z1", + "id": "777761c3-9d4c-423b-a0ec-d63ac8c18658" + }, + { + "routeId": "L512", + "platformId": "U9679Z2", + "id": "14b5d716-ef42-4658-9670-c466fb2363fc" + }, + { + "routeId": "L504", + "platformId": "U9679Z2", + "id": "c9a6c14c-e03c-46df-8529-9c43d85fbd4f" + }, + { + "routeId": "L154", + "platformId": "U967Z1", + "id": "f2b78f29-3ccd-466d-8f4b-fb54817e4d85" + }, + { + "routeId": "L175", + "platformId": "U967Z1", + "id": "f856d2a7-746d-4532-8d9c-a31b34304ef5" + }, + { + "routeId": "L183", + "platformId": "U967Z1", + "id": "5c180763-8a74-42e4-9bdc-c6705e23ffbf" + }, + { + "routeId": "L227", + "platformId": "U967Z1", + "id": "7ddd92b9-e265-4f34-9972-afc2ace70b5f" + }, + { + "routeId": "L226", + "platformId": "U967Z1", + "id": "3769c4fd-642c-4e0c-93c2-c833e553651f" + }, + { + "routeId": "L387", + "platformId": "U967Z1", + "id": "60ad840a-9ee6-473b-9d72-ee05be37dbd4" + }, + { + "routeId": "L381", + "platformId": "U967Z1", + "id": "9938eb64-6b1e-40db-8961-3b71fd3a3cc9" + }, + { + "routeId": "L382", + "platformId": "U967Z1", + "id": "7626fb76-23e5-40c4-874e-c3cb01d36199" + }, + { + "routeId": "L383", + "platformId": "U967Z1", + "id": "f9ab00a3-74be-478a-9976-ee138e77c317" + }, + { + "routeId": "L959", + "platformId": "U967Z1", + "id": "5e5a9374-cb0d-44cf-b1c7-cf5cddf378f7" + }, + { + "routeId": "L154", + "platformId": "U967Z2", + "id": "71576472-3000-4d79-b07c-d5d6437bdf50" + }, + { + "routeId": "L175", + "platformId": "U967Z2", + "id": "62d4c51a-5851-4971-bf9b-43b85b69b262" + }, + { + "routeId": "L183", + "platformId": "U967Z2", + "id": "5f7e2aa2-fed8-443f-b224-06f3b4047be7" + }, + { + "routeId": "L226", + "platformId": "U967Z2", + "id": "6ed023c2-eaa1-41d6-9fed-9ea026360029" + }, + { + "routeId": "L227", + "platformId": "U967Z2", + "id": "1f38821f-1174-470b-8d01-4bf52988572a" + }, + { + "routeId": "L381", + "platformId": "U967Z2", + "id": "b42154c8-1b0c-4fe3-97da-cc46cf38c645" + }, + { + "routeId": "L387", + "platformId": "U967Z2", + "id": "d356a3bc-915a-4bd5-8e0c-fee3469c2acd" + }, + { + "routeId": "L382", + "platformId": "U967Z2", + "id": "77a69f23-db0f-4b40-9f03-885117845357" + }, + { + "routeId": "L383", + "platformId": "U967Z2", + "id": "37d907a9-d87b-439e-b676-9a91ce4854f3" + }, + { + "routeId": "L959", + "platformId": "U967Z2", + "id": "2faddf1e-b3e6-4de6-8129-0ed440bc7873" + }, + { + "routeId": "L125", + "platformId": "U967Z3", + "id": "4330e24e-93f4-4dbe-a940-32c92db804b2" + }, + { + "routeId": "L154", + "platformId": "U967Z3", + "id": "a0796cd7-9eb4-4eb4-9f84-1c1fbd7f9e70" + }, + { + "routeId": "L911", + "platformId": "U967Z3", + "id": "e1a58e1d-7506-4aa6-9298-87b4b0f671d7" + }, + { + "routeId": "L204", + "platformId": "U967Z3", + "id": "95658fd5-a0c3-4a43-b701-d5c19e800c7b" + }, + { + "routeId": "L125", + "platformId": "U967Z4", + "id": "797d3a17-9f28-44e6-b1fb-0db709c83dd9" + }, + { + "routeId": "L154", + "platformId": "U967Z4", + "id": "b8c3f416-a448-468a-878e-687142c2e665" + }, + { + "routeId": "L911", + "platformId": "U967Z4", + "id": "0d149e9b-73cd-4aae-89e2-848b217929e3" + }, + { + "routeId": "L204", + "platformId": "U967Z4", + "id": "1ff6fffc-00d9-4f96-918d-5d107b815bd4" + }, + { + "routeId": "L504", + "platformId": "U9680Z1", + "id": "8ee85bff-53f4-41b6-9e1f-6b43ada399c5" + }, + { + "routeId": "L504", + "platformId": "U9680Z2", + "id": "6b1ec0c5-cf4d-418d-a8dc-e65d4744b40c" + }, + { + "routeId": "L512", + "platformId": "U9680Z3", + "id": "e73dd461-efa0-4cc6-8f9c-c576a1667f54" + }, + { + "routeId": "L512", + "platformId": "U9680Z4", + "id": "b8314ee4-7728-4658-959e-4521138d7b67" + }, + { + "routeId": "L504", + "platformId": "U9681Z1", + "id": "fc633fb0-b316-46c3-a7b7-147366197a0e" + }, + { + "routeId": "L504", + "platformId": "U9681Z2", + "id": "f6e006b3-002d-44d4-846a-fda47a9e31ca" + }, + { + "routeId": "L512", + "platformId": "U9682Z1", + "id": "5e26e424-f44f-4086-af45-6d1804b6dacc" + }, + { + "routeId": "L512", + "platformId": "U9682Z2", + "id": "a3ed51fe-bd8b-4745-9732-d4051de736d6" + }, + { + "routeId": "L512", + "platformId": "U9683Z1", + "id": "96c46f27-b3da-4d2c-93bd-f04aa1c1b75d" + }, + { + "routeId": "L512", + "platformId": "U9683Z2", + "id": "1ee8efdb-83f4-42b6-9219-7a9d8ab97223" + }, + { + "routeId": "L512", + "platformId": "U9684Z1", + "id": "9bc33a4d-25a7-4d40-b4c9-84f54b66bdd6" + }, + { + "routeId": "L512", + "platformId": "U9684Z2", + "id": "90001887-1bc3-4286-8864-bf340e5772e8" + }, + { + "routeId": "L512", + "platformId": "U9685Z1", + "id": "e0b7a6ea-efc4-4337-b1c2-66777ac83c62" + }, + { + "routeId": "L512", + "platformId": "U9685Z2", + "id": "30b51b38-490d-447e-870d-1f5eaf350a5c" + }, + { + "routeId": "L512", + "platformId": "U9686Z1", + "id": "18282418-bc72-4abb-b670-220e2a159204" + }, + { + "routeId": "L512", + "platformId": "U9686Z2", + "id": "f53c996d-fbc5-49a2-ba20-676dce5ce1a3" + }, + { + "routeId": "L512", + "platformId": "U9687Z1", + "id": "a2656998-92c2-4f71-80a5-dcb8baefd9a4" + }, + { + "routeId": "L512", + "platformId": "U9687Z2", + "id": "567c9f69-c6ad-46df-9ba5-9872f630e032" + }, + { + "routeId": "L512", + "platformId": "U9688Z1", + "id": "66f12f44-ae47-4009-9d2c-c6a7e705b707" + }, + { + "routeId": "L512", + "platformId": "U9688Z2", + "id": "f0ce4eb7-2cdf-4438-a0ec-8c25a2b1a3a6" + }, + { + "routeId": "L512", + "platformId": "U9689Z1", + "id": "d090e78d-def8-4172-ad0d-1bc21e2498a3" + }, + { + "routeId": "L512", + "platformId": "U9689Z2", + "id": "4024d997-32aa-4253-a115-33b1db8dc728" + }, + { + "routeId": "L149", + "platformId": "U968Z1", + "id": "19eed4c1-2f43-48f4-a4c8-608e90c8881e" + }, + { + "routeId": "L184", + "platformId": "U968Z1", + "id": "f2477796-54cd-4765-8413-97a40d3fab67" + }, + { + "routeId": "L904", + "platformId": "U968Z1", + "id": "7c49ef72-b112-4271-9e8a-8886e07dbcc1" + }, + { + "routeId": "L149", + "platformId": "U968Z2", + "id": "18597969-8f07-4722-9ec8-900d81b25032" + }, + { + "routeId": "L184", + "platformId": "U968Z2", + "id": "aaa2699d-4018-48c0-8055-9f5c67d27c8a" + }, + { + "routeId": "L904", + "platformId": "U968Z2", + "id": "e31043d9-4cfc-463b-aba8-13e94df11f87" + }, + { + "routeId": "L228", + "platformId": "U9690Z1", + "id": "7dbd81c3-79fd-4b6e-bca9-e9a0554e7e51" + }, + { + "routeId": "L228", + "platformId": "U9691Z1", + "id": "633493c4-6371-40b2-96d1-cff1b35d9eab" + }, + { + "routeId": "L228", + "platformId": "U9691Z2", + "id": "9f6551dd-0300-41cd-bc61-aa6536d5dc8e" + }, + { + "routeId": "L228", + "platformId": "U9692Z1", + "id": "c691a01d-0bd0-4d9d-8265-778b6642801b" + }, + { + "routeId": "L228", + "platformId": "U9692Z2", + "id": "38e44d81-a6ff-47ba-a369-bbf8be495b55" + }, + { + "routeId": "L228", + "platformId": "U9694Z1", + "id": "0ffd6ac6-7d15-44de-bf26-706910ce8ec2" + }, + { + "routeId": "L228", + "platformId": "U9694Z2", + "id": "274c45e9-5258-4ab9-937f-6f229f60401e" + }, + { + "routeId": "L503", + "platformId": "U9696Z1", + "id": "eff5445a-cf49-422b-b251-6d6064d9d7f6" + }, + { + "routeId": "L508", + "platformId": "U9696Z2", + "id": "8dd16628-7319-4843-8d90-2d3c2e28c96a" + }, + { + "routeId": "L506", + "platformId": "U9697Z1", + "id": "27fe24cf-7ca7-4c06-9883-9448f54f27bf" + }, + { + "routeId": "L503", + "platformId": "U9698Z1", + "id": "3399dbf4-7c60-4985-8bc7-ecc23ea51afb" + }, + { + "routeId": "L512", + "platformId": "U9698Z1", + "id": "6bab4c30-b34a-486b-b29d-818e3fc2d956" + }, + { + "routeId": "L508", + "platformId": "U9698Z2", + "id": "298eabff-c49c-4d3a-9be3-72bf39e286a7" + }, + { + "routeId": "L512", + "platformId": "U9698Z2", + "id": "68e0105d-fc65-4cd7-98ec-1309654fb9c9" + }, + { + "routeId": "L395", + "platformId": "U9699Z1", + "id": "d34472eb-5ea0-4758-8bda-270a52794703" + }, + { + "routeId": "L501", + "platformId": "U9699Z1", + "id": "e64892b9-a639-48ba-8274-779a161766a0" + }, + { + "routeId": "L754", + "platformId": "U9699Z1", + "id": "4911adb4-8d1e-4e22-a2c8-84112a363c72" + }, + { + "routeId": "L395", + "platformId": "U9699Z2", + "id": "db44f348-964c-40b8-b6f4-3649aacb516e" + }, + { + "routeId": "L506", + "platformId": "U9699Z2", + "id": "423d74fe-8108-464d-8a29-246b0d25e001" + }, + { + "routeId": "L501", + "platformId": "U9699Z2", + "id": "7e6ae940-339f-4281-a7a6-017a23b0b1a0" + }, + { + "routeId": "L754", + "platformId": "U9699Z2", + "id": "92216776-703b-47ca-a18a-6839e5770afd" + }, + { + "routeId": "L506", + "platformId": "U9699Z3", + "id": "94a3e6e7-d019-401c-9ee4-c36b293f0c81" + }, + { + "routeId": "L126", + "platformId": "U969Z1", + "id": "c436ed48-70f2-48f1-a6f9-24cf60603f19" + }, + { + "routeId": "L197", + "platformId": "U969Z1", + "id": "4a2c814a-569e-4b34-9444-739a557734fe" + }, + { + "routeId": "L126", + "platformId": "U969Z2", + "id": "9d3bc4b4-3016-45e1-bc11-2723c23e6a97" + }, + { + "routeId": "L197", + "platformId": "U969Z2", + "id": "d6094c11-6845-4c13-9bcd-30d197b136db" + }, + { + "routeId": "L229", + "platformId": "U96Z1", + "id": "e5d3cf81-1960-473d-98ab-8db07e4c13ef" + }, + { + "routeId": "L908", + "platformId": "U96Z1", + "id": "fbbf30e6-2850-4578-94aa-51bd0007d991" + }, + { + "routeId": "L204", + "platformId": "U96Z1", + "id": "55a53021-b7a2-4290-8ace-3379d2d8f6df" + }, + { + "routeId": "L903", + "platformId": "U96Z1", + "id": "78b1cbc4-6409-4e31-ba8e-cb5d8f148213" + }, + { + "routeId": "L366", + "platformId": "U96Z1", + "id": "16fe629d-1a00-4d4e-8a0e-2e8bff2bcc50" + }, + { + "routeId": "L364", + "platformId": "U96Z1", + "id": "2c5fe98b-ef56-4ede-9ae1-41275ed782c5" + }, + { + "routeId": "L229", + "platformId": "U96Z2", + "id": "8d5e35d6-33a9-40a1-a5b9-84c8bb2b37d1" + }, + { + "routeId": "L908", + "platformId": "U96Z2", + "id": "8a96a7f9-b889-45bb-9361-c7569475b33b" + }, + { + "routeId": "L204", + "platformId": "U96Z2", + "id": "a403adc8-ebf7-46e9-8ca5-a0cc3cb93774" + }, + { + "routeId": "L903", + "platformId": "U96Z2", + "id": "d4446f31-cb02-471e-800b-9462ffc57806" + }, + { + "routeId": "L366", + "platformId": "U96Z2", + "id": "51cbbb1f-f2d6-4430-b282-9b351bf4c27a" + }, + { + "routeId": "L364", + "platformId": "U96Z2", + "id": "b8f5d9bb-1558-457f-8300-14a7a014e675" + }, + { + "routeId": "L111", + "platformId": "U96Z3", + "id": "429312d9-b697-450b-b732-d03abcd78f32" + }, + { + "routeId": "L329", + "platformId": "U96Z3", + "id": "cad0716b-6950-43a1-854d-78f77f8891cc" + }, + { + "routeId": "L111", + "platformId": "U96Z4", + "id": "69aa2b22-16fe-4b14-a47c-72f44e2853b6" + }, + { + "routeId": "L329", + "platformId": "U96Z4", + "id": "d7f43984-7e47-4618-897c-48c14ed1f786" + }, + { + "routeId": "L512", + "platformId": "U9700Z1", + "id": "eb8cd9d7-e6a0-4747-876f-acd8762d8398" + }, + { + "routeId": "L512", + "platformId": "U9700Z2", + "id": "036d7aa8-6de2-4648-ad16-ec464a3a1d58" + }, + { + "routeId": "L504", + "platformId": "U9701Z1", + "id": "bcf6dd15-bbbf-4622-9eed-7689438f3cd3" + }, + { + "routeId": "L504", + "platformId": "U9701Z2", + "id": "465e550a-c7d7-4885-938c-8cd162ca1269" + }, + { + "routeId": "L504", + "platformId": "U9702Z1", + "id": "ac8f1815-d0c8-45a6-ad20-f535ba24af25" + }, + { + "routeId": "L504", + "platformId": "U9702Z2", + "id": "44e2141f-f60e-4151-aa4e-2ecca4a8a972" + }, + { + "routeId": "L504", + "platformId": "U9704Z1", + "id": "eb5368a5-5243-4922-8be5-27b42e6fdae7" + }, + { + "routeId": "L504", + "platformId": "U9704Z2", + "id": "54a47cb9-facf-4f1c-8e96-5d738d2781c0" + }, + { + "routeId": "L504", + "platformId": "U9705Z1", + "id": "8471fb20-78ff-4391-97b3-37c4f84ef9ed" + }, + { + "routeId": "L504", + "platformId": "U9705Z2", + "id": "b991e1f2-94f1-49f7-aaff-4ec1d2be3ce9" + }, + { + "routeId": "L504", + "platformId": "U9706Z1", + "id": "f3e2f807-e242-48ce-b3eb-c67025a2c7e0" + }, + { + "routeId": "L504", + "platformId": "U9706Z2", + "id": "5346b033-46a3-441f-bcd0-f5668eb71b12" + }, + { + "routeId": "L395", + "platformId": "U9707Z1", + "id": "8368885b-7def-47a0-83f3-e1ab14882551" + }, + { + "routeId": "L506", + "platformId": "U9707Z1", + "id": "e5535e70-daec-4679-b6e4-a4f88f850410" + }, + { + "routeId": "L501", + "platformId": "U9707Z1", + "id": "e061e9c1-1d78-465a-8b18-f175388b5ac5" + }, + { + "routeId": "L754", + "platformId": "U9707Z1", + "id": "dfc8b7f5-d576-47ac-ba2f-9e1474e1251d" + }, + { + "routeId": "L506", + "platformId": "U9707Z2", + "id": "ae453dc1-c6cc-4654-a516-370acfad9ea3" + }, + { + "routeId": "L502", + "platformId": "U9707Z2", + "id": "98296fb6-a37f-4a16-9510-579e576fc9cf" + }, + { + "routeId": "L503", + "platformId": "U9707Z2", + "id": "fb07b65d-08ac-4979-be60-0251682419fa" + }, + { + "routeId": "L517", + "platformId": "U9707Z2", + "id": "d5fb59d3-1152-4953-89ba-f57a64bc2810" + }, + { + "routeId": "L506", + "platformId": "U9708Z1", + "id": "b28e59e7-8861-4cd0-a245-cf18c71b6200" + }, + { + "routeId": "L502", + "platformId": "U9708Z1", + "id": "301d5975-4736-4d0f-8711-4f47b151c465" + }, + { + "routeId": "L508", + "platformId": "U9708Z1", + "id": "ded75679-743b-4206-b0fa-a4e4c09bb091" + }, + { + "routeId": "L501", + "platformId": "U9708Z1", + "id": "80bb9385-ca9f-4254-9817-0fb546888594" + }, + { + "routeId": "L517", + "platformId": "U9708Z1", + "id": "6ecf9e0f-ff53-41b9-b3df-b4d958b51a02" + }, + { + "routeId": "L506", + "platformId": "U9708Z2", + "id": "8f31e446-3838-4205-b548-5547633ca2d3" + }, + { + "routeId": "L502", + "platformId": "U9708Z2", + "id": "c86276d9-57f4-42fd-bbc7-69b68fcd5c0d" + }, + { + "routeId": "L503", + "platformId": "U9708Z2", + "id": "dc0ee8f1-f7e4-4f55-baa1-d25991426ba9" + }, + { + "routeId": "L517", + "platformId": "U9708Z2", + "id": "2a57c4f4-363f-452f-b801-937e641b666d" + }, + { + "routeId": "L506", + "platformId": "U9709Z1", + "id": "baa3d259-702e-4cc8-be6a-998a33e95589" + }, + { + "routeId": "L506", + "platformId": "U9709Z2", + "id": "1f5da1c4-04a8-4b7b-8de5-a7b34117b35e" + }, + { + "routeId": "L141", + "platformId": "U970Z1", + "id": "c8fa3299-f98d-43aa-a6fa-a0ee7c277649" + }, + { + "routeId": "L110", + "platformId": "U970Z1", + "id": "7e071bc0-3754-45d7-b760-8a9e28405556" + }, + { + "routeId": "L141", + "platformId": "U970Z2", + "id": "dc929de9-1f0e-4b2a-8fb5-e3054ec5a584" + }, + { + "routeId": "L110", + "platformId": "U970Z2", + "id": "0a4b4b93-9855-4f96-bd65-e162db7c5b16" + }, + { + "routeId": "L506", + "platformId": "U9710Z1", + "id": "770b5923-3684-450f-b0d7-58e8218c551f" + }, + { + "routeId": "L506", + "platformId": "U9710Z2", + "id": "bb185c82-c56e-4a70-b22d-8ec06e7079ef" + }, + { + "routeId": "L506", + "platformId": "U9711Z1", + "id": "1904cbb7-63b9-4cfe-b9cf-78d16943c9e8" + }, + { + "routeId": "L506", + "platformId": "U9711Z2", + "id": "d0a6d13b-8478-43e1-8f0c-8e1a7a389f86" + }, + { + "routeId": "L395", + "platformId": "U9712Z1", + "id": "e1c3e345-6255-4415-90fd-618bb1b59040" + }, + { + "routeId": "L531", + "platformId": "U9712Z1", + "id": "40bdb290-f0cd-494b-b441-3fdd1b282c60" + }, + { + "routeId": "L395", + "platformId": "U9712Z2", + "id": "ccc3def9-9f01-4b1e-8554-87aa2f2d0368" + }, + { + "routeId": "L392", + "platformId": "U9712Z3", + "id": "6a5305c3-895a-42c3-ab2c-8ed0de31089f" + }, + { + "routeId": "L517", + "platformId": "U9712Z3", + "id": "e4990de2-594b-4865-9f56-970e04583cdf" + }, + { + "routeId": "L754", + "platformId": "U9712Z3", + "id": "8385fe59-4d8c-47c2-aa0e-aca752ea04b9" + }, + { + "routeId": "L506", + "platformId": "U9712Z4", + "id": "2759afeb-6308-4780-8daf-67195afe81c8" + }, + { + "routeId": "L502", + "platformId": "U9712Z4", + "id": "e083d30b-3d16-49bc-a709-905ca2d490b6" + }, + { + "routeId": "L501", + "platformId": "U9712Z4", + "id": "ac875f9b-9719-45e5-bc36-986e9ca82d35" + }, + { + "routeId": "L503", + "platformId": "U9712Z4", + "id": "0ac61996-0eb1-4178-b35d-0e55fb5334c2" + }, + { + "routeId": "L392", + "platformId": "U9712Z5", + "id": "ec03f49d-bc89-4d12-94b6-8bbff98d1b9d" + }, + { + "routeId": "L517", + "platformId": "U9712Z5", + "id": "b49d23c2-b273-409a-b70c-ec1707a3d66e" + }, + { + "routeId": "L531", + "platformId": "U9712Z5", + "id": "ad9779d2-d27f-4b36-b3eb-13d3c67743af" + }, + { + "routeId": "L754", + "platformId": "U9712Z5", + "id": "e28b315e-a288-4268-b092-48fcfd284358" + }, + { + "routeId": "L506", + "platformId": "U9712Z6", + "id": "7fa431ea-ae09-4ca4-937e-2380e962a028" + }, + { + "routeId": "L502", + "platformId": "U9712Z6", + "id": "f5dca6ba-7d40-4c9e-9770-82064bdd22fd" + }, + { + "routeId": "L508", + "platformId": "U9712Z6", + "id": "55c1b867-c737-40cd-a03d-ead49b661ca2" + }, + { + "routeId": "L501", + "platformId": "U9712Z6", + "id": "b25262f7-b2e4-4086-a14a-22e62aef1fe8" + }, + { + "routeId": "L506", + "platformId": "U9716Z1", + "id": "08ca0187-a79d-49da-920d-f64d00032cdc" + }, + { + "routeId": "L502", + "platformId": "U9717Z1", + "id": "ebdd77f1-2f18-4a33-84f4-91a7199aafa7" + }, + { + "routeId": "L508", + "platformId": "U9717Z1", + "id": "9f263c2d-f182-4170-95dc-b6b137048c85" + }, + { + "routeId": "L502", + "platformId": "U9717Z2", + "id": "4d135589-ce59-4533-bf37-1f0d290264db" + }, + { + "routeId": "L501", + "platformId": "U9717Z2", + "id": "87801d50-c75a-45d8-99f5-9561de62f7a2" + }, + { + "routeId": "L503", + "platformId": "U9717Z2", + "id": "2223a2fa-74fc-4923-88b3-b79ea798d238" + }, + { + "routeId": "L501", + "platformId": "U9717Z3", + "id": "5ddc265b-fbad-42d9-b76b-8bf998b20264" + }, + { + "routeId": "L500", + "platformId": "U9718Z1", + "id": "927dbedb-d0da-47cc-aaa3-2da7aabd2c0f" + }, + { + "routeId": "L501", + "platformId": "U9718Z1", + "id": "7e21c9b5-6923-4c86-ae18-7ea6275966a6" + }, + { + "routeId": "L500", + "platformId": "U9718Z2", + "id": "6e76ba28-6ceb-46a0-9ac4-d10d3b2217f6" + }, + { + "routeId": "L501", + "platformId": "U9718Z2", + "id": "2d9a5e42-5388-4981-a822-3ae9986f6c33" + }, + { + "routeId": "L501", + "platformId": "U9719Z1", + "id": "9091a320-e6df-4ebd-92f4-36b5af64e39a" + }, + { + "routeId": "L500", + "platformId": "U9719Z2", + "id": "329ba066-5629-472a-9127-5eb4109a6791" + }, + { + "routeId": "L501", + "platformId": "U9719Z2", + "id": "ab390c95-57c9-4a98-990f-f978ecf0ff02" + }, + { + "routeId": "L500", + "platformId": "U9719Z3", + "id": "3d4709dd-241f-4bdf-ad56-07980b962075" + }, + { + "routeId": "L501", + "platformId": "U9719Z3", + "id": "8a649748-aed6-4827-a30e-4e702a108ff8" + }, + { + "routeId": "L196", + "platformId": "U971Z1", + "id": "778f7e5f-35aa-4e94-9b1e-f0fe2f5ae6af" + }, + { + "routeId": "L197", + "platformId": "U971Z1", + "id": "674b0bbb-56b1-4e3c-909f-99c8f76fcbef" + }, + { + "routeId": "L901", + "platformId": "U971Z1", + "id": "bca203ea-b67f-4343-b406-392cf391201c" + }, + { + "routeId": "L501", + "platformId": "U9720Z1", + "id": "21d36493-f03b-4020-9e85-f0bdff670baf" + }, + { + "routeId": "L501", + "platformId": "U9720Z2", + "id": "816310a3-b035-4e2d-9be8-47556b286862" + }, + { + "routeId": "L501", + "platformId": "U9721Z1", + "id": "9a6c379a-aa8b-42a4-8d14-7ab6f02c5f62" + }, + { + "routeId": "L500", + "platformId": "U9722Z1", + "id": "1a0d9f04-3176-4125-847b-a7ae36bb996f" + }, + { + "routeId": "L501", + "platformId": "U9722Z1", + "id": "a741feea-4c3f-4fb1-a77c-1305d72ca646" + }, + { + "routeId": "L500", + "platformId": "U9722Z2", + "id": "be45c2b8-b167-4dff-b1f5-d9cdaf6a1888" + }, + { + "routeId": "L501", + "platformId": "U9722Z2", + "id": "ddb801f5-2576-4dbf-94c3-ed9ce8bac06c" + }, + { + "routeId": "L500", + "platformId": "U9723Z1", + "id": "bdcf0717-b2f2-44d4-bc80-c02ca048cf34" + }, + { + "routeId": "L501", + "platformId": "U9723Z1", + "id": "db3cd225-2206-49b7-9717-78d4151d6140" + }, + { + "routeId": "L504", + "platformId": "U9726Z1", + "id": "29a191fe-01bf-4509-bf9d-d68e4d6d011b" + }, + { + "routeId": "L504", + "platformId": "U9726Z2", + "id": "51e089fe-c1ac-4fa0-9186-930558a1d1fd" + }, + { + "routeId": "L504", + "platformId": "U9727Z1", + "id": "3d89e7ec-e5aa-4aa6-abe2-90722b90f856" + }, + { + "routeId": "L504", + "platformId": "U9727Z2", + "id": "25d746a7-d647-4b0c-8879-a7634593a61d" + }, + { + "routeId": "L220", + "platformId": "U9728Z1", + "id": "09b6f2c0-92f1-4427-bcb1-e2ae2c337cf7" + }, + { + "routeId": "L177", + "platformId": "U972Z1", + "id": "d2db3e7a-abf1-47f1-a9ff-91976ca11794" + }, + { + "routeId": "L911", + "platformId": "U972Z1", + "id": "87fcb065-527f-4c85-8f8d-b3a2b66a436a" + }, + { + "routeId": "L203", + "platformId": "U972Z1", + "id": "3cdf5fc3-1ccd-4dad-b173-7f1bd53f2171" + }, + { + "routeId": "L177", + "platformId": "U972Z2", + "id": "6ad00533-5e48-4565-85c2-eaa81b020bfe" + }, + { + "routeId": "L911", + "platformId": "U972Z2", + "id": "de01dcd5-0ded-42b4-b87d-ca53a3d47c94" + }, + { + "routeId": "L203", + "platformId": "U972Z2", + "id": "df1b04be-90f9-4610-9af2-66d00d868cd0" + }, + { + "routeId": "L395", + "platformId": "U9730Z1", + "id": "073b6e99-2da6-440c-a867-266d03b38605" + }, + { + "routeId": "L521", + "platformId": "U9730Z1", + "id": "b1d33f61-be76-436a-a0d1-c4a99b835e40" + }, + { + "routeId": "L482", + "platformId": "U9730Z1", + "id": "10d99ceb-ff63-4b10-8196-531a09181659" + }, + { + "routeId": "L480", + "platformId": "U9730Z1", + "id": "63426056-34ad-4a1d-8965-c9dba619e626" + }, + { + "routeId": "L506", + "platformId": "U9730Z1", + "id": "980f0343-7ef4-41af-85be-b2d768a8153d" + }, + { + "routeId": "L502", + "platformId": "U9730Z1", + "id": "80e7a443-3ab0-46cf-97d1-a288dfa6aebf" + }, + { + "routeId": "L531", + "platformId": "U9730Z1", + "id": "24a0baf6-4377-422a-8a05-96293f7a1fc2" + }, + { + "routeId": "L395", + "platformId": "U9730Z2", + "id": "b0f3d113-be5e-4a7c-b4bb-f8eb5b1e912c" + }, + { + "routeId": "L521", + "platformId": "U9730Z2", + "id": "23543ce2-0971-453c-a336-f094164b405c" + }, + { + "routeId": "L480", + "platformId": "U9730Z2", + "id": "c0a03455-78f0-41ad-a65b-ec7939e8ebb4" + }, + { + "routeId": "L506", + "platformId": "U9730Z2", + "id": "47ff5dbc-9b2c-46de-af43-037c7c60acc8" + }, + { + "routeId": "L502", + "platformId": "U9730Z2", + "id": "8660cadd-f932-4332-a6b4-b3a2091498d7" + }, + { + "routeId": "L482", + "platformId": "U9730Z2", + "id": "dbc8c2ad-88ac-405d-9263-cd9b922a99c9" + }, + { + "routeId": "L531", + "platformId": "U9730Z2", + "id": "0eeac042-47ec-4ec8-9d67-b76756629df8" + }, + { + "routeId": "L521", + "platformId": "U9731Z1", + "id": "759a19b6-4136-4a1a-98e7-50efd3f53208" + }, + { + "routeId": "L482", + "platformId": "U9731Z1", + "id": "fb66a29a-8fd8-4d29-bc09-62ae983362e5" + }, + { + "routeId": "L480", + "platformId": "U9731Z1", + "id": "33ce6d6c-911d-44fc-9197-98ae81df9474" + }, + { + "routeId": "L506", + "platformId": "U9731Z1", + "id": "44e540bb-0dab-45d9-a45e-28a3e5d4dbb0" + }, + { + "routeId": "L502", + "platformId": "U9731Z1", + "id": "ddc68a64-54e0-4e83-b4c1-483f9b20c39c" + }, + { + "routeId": "L531", + "platformId": "U9731Z1", + "id": "d04bdcbf-6d3c-4448-8567-4f95f8ec63d6" + }, + { + "routeId": "L521", + "platformId": "U9731Z2", + "id": "24a47c68-7e71-4a4f-bc64-859b1af84b68" + }, + { + "routeId": "L480", + "platformId": "U9731Z2", + "id": "dfa238ed-0caf-4328-a3a1-e42fb93f753a" + }, + { + "routeId": "L506", + "platformId": "U9731Z2", + "id": "79432df9-7e29-400f-88f7-0a9a50c6add0" + }, + { + "routeId": "L502", + "platformId": "U9731Z2", + "id": "5a342d41-b742-4cb1-a9a3-988f8a76925b" + }, + { + "routeId": "L482", + "platformId": "U9731Z2", + "id": "3c83cffb-21df-456e-af91-c20e6f37f790" + }, + { + "routeId": "L531", + "platformId": "U9731Z2", + "id": "5efb06a3-deec-408a-997e-7c58333cac19" + }, + { + "routeId": "L508", + "platformId": "U9732Z1", + "id": "23917c4d-d4d3-439b-82a1-e901a04517fc" + }, + { + "routeId": "L503", + "platformId": "U9732Z2", + "id": "70fd8fed-2d06-4342-85a3-ec43a5e07b20" + }, + { + "routeId": "L395", + "platformId": "U9734Z1", + "id": "1c767292-4b11-4de7-b32a-b100e8f8685b" + }, + { + "routeId": "L521", + "platformId": "U9734Z1", + "id": "6b21cc91-0004-4b91-a0fb-e352fc8c310e" + }, + { + "routeId": "L482", + "platformId": "U9734Z1", + "id": "c1a29a7c-468f-4038-9c76-ce8ff983a148" + }, + { + "routeId": "L480", + "platformId": "U9734Z1", + "id": "6ddfd36a-3e66-4df4-a176-78c04a459277" + }, + { + "routeId": "L531", + "platformId": "U9734Z1", + "id": "d0efbdc9-c795-4569-98d8-3700e936e20a" + }, + { + "routeId": "L395", + "platformId": "U9734Z2", + "id": "1ca6cd20-c598-4ca9-9cc3-9f050eab1b58" + }, + { + "routeId": "L521", + "platformId": "U9734Z2", + "id": "c64f7948-c7de-4e26-bb43-57e19e609960" + }, + { + "routeId": "L521", + "platformId": "U9734Z3", + "id": "9eddad85-67dc-4fd7-aede-f1ce3b845590" + }, + { + "routeId": "L480", + "platformId": "U9734Z3", + "id": "7956d58b-6b60-4034-a754-f6a4452ea0ca" + }, + { + "routeId": "L482", + "platformId": "U9734Z3", + "id": "e0446096-37b6-48d0-a18a-1e4e87044249" + }, + { + "routeId": "L531", + "platformId": "U9734Z3", + "id": "0e4b5710-aebf-4c32-9f45-f77ca526b6be" + }, + { + "routeId": "L506", + "platformId": "U9734Z4", + "id": "4852a404-f097-492a-bc0f-176e9a2fb367" + }, + { + "routeId": "L502", + "platformId": "U9734Z4", + "id": "7eb67781-a938-45ec-88e8-e04b81ec56c4" + }, + { + "routeId": "L506", + "platformId": "U9734Z5", + "id": "db0ed0cc-575e-44ab-917b-70ac2fab6bbc" + }, + { + "routeId": "L502", + "platformId": "U9734Z5", + "id": "e1668d8a-6761-414f-af14-101f67f284c3" + }, + { + "routeId": "L521", + "platformId": "U9735Z1", + "id": "c0f18c36-452e-4e41-81d3-cd2bde15da01" + }, + { + "routeId": "L502", + "platformId": "U9735Z1", + "id": "786ecc7d-1610-4460-b299-f0527a0fda41" + }, + { + "routeId": "L521", + "platformId": "U9735Z2", + "id": "88dc694d-5bb6-4500-a5c3-913596480c34" + }, + { + "routeId": "L502", + "platformId": "U9735Z2", + "id": "7b59920e-e64a-40db-99b9-0fb50c8e3728" + }, + { + "routeId": "L521", + "platformId": "U9736Z1", + "id": "2456ce9b-6eba-456f-b3a4-0071b66e4834" + }, + { + "routeId": "L502", + "platformId": "U9736Z1", + "id": "8c6ede1b-c58c-48c2-8173-0b2f4f030ff5" + }, + { + "routeId": "L521", + "platformId": "U9736Z2", + "id": "4bf69f2f-4725-4924-a042-99c58e193b66" + }, + { + "routeId": "L502", + "platformId": "U9736Z2", + "id": "e072c1b1-4ae1-4133-b49d-ca1d272bf08b" + }, + { + "routeId": "L521", + "platformId": "U9737Z1", + "id": "2a45b148-d13a-477b-af6f-c5c6c35057c7" + }, + { + "routeId": "L395", + "platformId": "U9738Z1", + "id": "9399bbfd-7173-4e01-acde-c8c46d87ad3e" + }, + { + "routeId": "L521", + "platformId": "U9738Z1", + "id": "53a4ba19-d5fa-4820-b012-38242d963298" + }, + { + "routeId": "L508", + "platformId": "U9738Z1", + "id": "1650b5fd-278d-4a5d-9779-c3f4f87dbbac" + }, + { + "routeId": "L395", + "platformId": "U9738Z2", + "id": "d303af01-1ec4-4b5c-ab54-3837b37816f0" + }, + { + "routeId": "L503", + "platformId": "U9738Z2", + "id": "abf1ded7-2462-4197-a11a-b8d841193ad4" + }, + { + "routeId": "L508", + "platformId": "U9739Z1", + "id": "edfe49ab-fce6-47ec-bb60-a46ddc611244" + }, + { + "routeId": "L503", + "platformId": "U9739Z2", + "id": "f2c4195c-6bb9-4ae4-80f5-27afc1c43921" + }, + { + "routeId": "L503", + "platformId": "U9739Z3", + "id": "68d92838-09f2-4d8e-a1c2-0fb2b02404ea" + }, + { + "routeId": "L125", + "platformId": "U973Z1", + "id": "31f72071-2916-4e47-834f-c71d8e678e77" + }, + { + "routeId": "L175", + "platformId": "U973Z1", + "id": "fb305c7b-229b-428e-ab55-20e90b415fcf" + }, + { + "routeId": "L911", + "platformId": "U973Z1", + "id": "e2f00dd1-7272-4e12-bdde-c5ca46256f38" + }, + { + "routeId": "L204", + "platformId": "U973Z1", + "id": "48e134c5-5122-4f55-81d4-1848f2abb3a7" + }, + { + "routeId": "L240", + "platformId": "U973Z1", + "id": "3faf546c-d094-4cf2-824d-2d754da30892" + }, + { + "routeId": "L125", + "platformId": "U973Z2", + "id": "12f984cb-96d9-40e3-bbc7-44e058e1287c" + }, + { + "routeId": "L175", + "platformId": "U973Z2", + "id": "376138ec-2597-495e-b213-5e01fb83231f" + }, + { + "routeId": "L911", + "platformId": "U973Z2", + "id": "8d963d4c-5d4a-43bd-bd21-6915d8ac5f10" + }, + { + "routeId": "L204", + "platformId": "U973Z2", + "id": "3d741aea-14ba-4612-b5ae-ad254ca39a84" + }, + { + "routeId": "L240", + "platformId": "U973Z2", + "id": "ef276806-5d1d-49a1-b841-a85dec8e8eca" + }, + { + "routeId": "L508", + "platformId": "U9740Z1", + "id": "a5adf843-bc0c-4893-b5fa-c1d612e89e86" + }, + { + "routeId": "L503", + "platformId": "U9740Z2", + "id": "7becda14-d5db-4234-b096-b02a5bbd62e8" + }, + { + "routeId": "L521", + "platformId": "U9741Z1", + "id": "ab6229ae-35a3-4e76-908a-52a34bc4a1a3" + }, + { + "routeId": "L508", + "platformId": "U9741Z1", + "id": "b8fc963e-0ea0-4090-a66a-fb087b14d16f" + }, + { + "routeId": "L521", + "platformId": "U9741Z2", + "id": "8f9551eb-bb0c-46f2-857c-04f9639013fc" + }, + { + "routeId": "L503", + "platformId": "U9741Z2", + "id": "c2caec53-eb30-4fef-b35c-5891bbecde89" + }, + { + "routeId": "L508", + "platformId": "U9745Z1", + "id": "8b579043-8bef-4eae-8760-938ab1400f12" + }, + { + "routeId": "L501", + "platformId": "U9745Z1", + "id": "1218360c-4da7-4948-ab1b-8d3830a1af8f" + }, + { + "routeId": "L501", + "platformId": "U9746Z1", + "id": "d82bdc31-5602-4a5b-b544-11ea8bab48ba" + }, + { + "routeId": "L395", + "platformId": "U9747Z1", + "id": "11cf52f0-e815-4c77-bd74-53c3845bcb31" + }, + { + "routeId": "L501", + "platformId": "U9747Z1", + "id": "2a38d239-48ce-4070-b79e-83f271033a36" + }, + { + "routeId": "L503", + "platformId": "U9747Z1", + "id": "1d537e0a-424f-45f9-a012-28d5e42f0bfb" + }, + { + "routeId": "L395", + "platformId": "U9747Z2", + "id": "589bc3d1-f5b8-4644-937f-543ed90a00e2" + }, + { + "routeId": "L501", + "platformId": "U9747Z2", + "id": "5673451e-ca25-442e-8dbf-85fd40305ff0" + }, + { + "routeId": "L395", + "platformId": "U9748Z1", + "id": "c332e1e9-9269-4653-84c1-c0b3b957a50f" + }, + { + "routeId": "L501", + "platformId": "U9748Z1", + "id": "bf929cc5-34fb-462d-8fda-34b7f1764a7f" + }, + { + "routeId": "L395", + "platformId": "U9748Z2", + "id": "1be99bac-d75c-4a77-a0ab-51298b9d0e2a" + }, + { + "routeId": "L501", + "platformId": "U9748Z2", + "id": "dde4550a-f2d8-4221-bec7-f97531af88d1" + }, + { + "routeId": "L506", + "platformId": "U9749Z1", + "id": "ed0355f3-acfd-4b41-a246-1a972b63012e" + }, + { + "routeId": "L501", + "platformId": "U9749Z1", + "id": "880f4749-f5cd-455f-8b68-ecf82f92fe10" + }, + { + "routeId": "L531", + "platformId": "U9749Z1", + "id": "ea4d0708-97d3-4c56-a245-77466afbb6ac" + }, + { + "routeId": "L506", + "platformId": "U9749Z2", + "id": "2bac475e-f495-47dd-80e7-105e13cbf12d" + }, + { + "routeId": "L501", + "platformId": "U9749Z2", + "id": "6a343fdb-0d71-4150-9a55-0cbc972220b0" + }, + { + "routeId": "L531", + "platformId": "U9749Z2", + "id": "a0a4b4b7-d094-46e5-adee-253691482c39" + }, + { + "routeId": "L351", + "platformId": "U974Z1", + "id": "e2012382-d855-4733-9d6a-b802587cd4cd" + }, + { + "routeId": "L351", + "platformId": "U974Z2", + "id": "f30315cf-35ce-498b-8d1e-5c9a83a4a33e" + }, + { + "routeId": "L501", + "platformId": "U9750Z1", + "id": "438b3651-a00c-4e7a-8d43-3e7b0adfe953" + }, + { + "routeId": "L501", + "platformId": "U9750Z2", + "id": "70bc5e34-1b26-48dd-bc28-3dfc45acf027" + }, + { + "routeId": "L395", + "platformId": "U9751Z1", + "id": "cf6b974e-0c68-4525-b45a-4c4e3e7cbe2f" + }, + { + "routeId": "L482", + "platformId": "U9751Z1", + "id": "955df282-acb6-4dbc-8ce4-303ac9b082a9" + }, + { + "routeId": "L480", + "platformId": "U9751Z1", + "id": "8233d9de-da01-4365-aa40-ea7096bd6c23" + }, + { + "routeId": "L506", + "platformId": "U9751Z1", + "id": "8358a7da-e93d-4085-8db9-ce864b4fee92" + }, + { + "routeId": "L531", + "platformId": "U9751Z1", + "id": "3d9995dc-de38-4af6-8304-b11785bd952e" + }, + { + "routeId": "L395", + "platformId": "U9751Z2", + "id": "7ab3561e-ca79-4fa2-8ed0-0beaeef48138" + }, + { + "routeId": "L480", + "platformId": "U9751Z2", + "id": "2a9d147b-3892-4a02-a51f-15d4eecce4fe" + }, + { + "routeId": "L506", + "platformId": "U9751Z2", + "id": "2de119b9-5532-4a96-ae9d-b540f6e44116" + }, + { + "routeId": "L482", + "platformId": "U9751Z2", + "id": "9ddbf32c-3a1e-4e94-8973-35e98b41b4f2" + }, + { + "routeId": "L531", + "platformId": "U9751Z2", + "id": "bad5c6ed-ccfd-4a8e-9801-43ed91e03457" + }, + { + "routeId": "L2260", + "platformId": "U9751Z401", + "id": "01b5ed5c-33e3-4730-bff0-54dd3cb37291" + }, + { + "routeId": "L2260", + "platformId": "U9751Z402", + "id": "8e9a018e-a418-4403-a964-934fe28ee6ac" + }, + { + "routeId": "L506", + "platformId": "U9753Z1", + "id": "acb41bd2-b3d7-415c-ae3a-8c5f054b0b1e" + }, + { + "routeId": "L502", + "platformId": "U9753Z1", + "id": "c30c2b7f-8ed6-4703-965c-79bf3db27070" + }, + { + "routeId": "L531", + "platformId": "U9753Z1", + "id": "0d764ddc-8ee3-4970-8da4-1b67c5c46859" + }, + { + "routeId": "L506", + "platformId": "U9753Z2", + "id": "6d8366ae-806e-4b99-9653-11d512cf8e7c" + }, + { + "routeId": "L502", + "platformId": "U9753Z2", + "id": "04d9f3ac-b099-4d30-86af-a0b69b7547d5" + }, + { + "routeId": "L531", + "platformId": "U9753Z2", + "id": "9d0ab897-66ac-4423-96a0-ffd8e2fb82e0" + }, + { + "routeId": "L395", + "platformId": "U9753Z3", + "id": "6c837217-c14b-4d72-8b23-49f8bae7a3ac" + }, + { + "routeId": "L482", + "platformId": "U9753Z3", + "id": "dd2acf42-3b98-4c45-b61e-af961b7ba131" + }, + { + "routeId": "L480", + "platformId": "U9753Z3", + "id": "c5c8cb1b-3b55-46d7-906a-7c0b29b897b5" + }, + { + "routeId": "L395", + "platformId": "U9753Z4", + "id": "c852da63-c8ae-4be9-b450-6c65f7c33107" + }, + { + "routeId": "L480", + "platformId": "U9753Z4", + "id": "f6b888c6-d8a4-4401-99dc-afd8acea8f37" + }, + { + "routeId": "L482", + "platformId": "U9753Z4", + "id": "1c0f9b69-d8bb-4e85-b38d-ab946d7da9af" + }, + { + "routeId": "L395", + "platformId": "U9754Z1", + "id": "3d4b713c-6ce4-4add-8346-731bfdf46000" + }, + { + "routeId": "L506", + "platformId": "U9754Z1", + "id": "35692264-6866-4689-84ba-bf4c6aac0f0d" + }, + { + "routeId": "L502", + "platformId": "U9754Z1", + "id": "27193d9c-259e-47a8-9fc3-a2fb78e21355" + }, + { + "routeId": "L531", + "platformId": "U9754Z1", + "id": "3c12e134-55ba-46a0-a014-7010228496f5" + }, + { + "routeId": "L395", + "platformId": "U9754Z2", + "id": "6aac65d5-ea4d-4300-a4f8-ff65fc27a32a" + }, + { + "routeId": "L506", + "platformId": "U9754Z2", + "id": "b808f42d-8d0b-467e-84b6-b023441ec5bb" + }, + { + "routeId": "L502", + "platformId": "U9754Z2", + "id": "6e9284f7-ff0a-4cf9-aa39-067c6fb5dbf1" + }, + { + "routeId": "L531", + "platformId": "U9754Z2", + "id": "6be44c6e-d051-49e9-b9f0-6f2f13b18547" + }, + { + "routeId": "L480", + "platformId": "U9755Z1", + "id": "792e2f39-6ea7-40ef-9874-58fb1a60e638" + }, + { + "routeId": "L502", + "platformId": "U9755Z1", + "id": "c2cf9c87-74c9-4d15-a10e-5279f080170f" + }, + { + "routeId": "L480", + "platformId": "U9755Z2", + "id": "0cdd318b-cfce-4124-8bef-8c028c355251" + }, + { + "routeId": "L502", + "platformId": "U9755Z2", + "id": "1c2dbedc-3957-4404-97a9-bb47d6dd871e" + }, + { + "routeId": "L506", + "platformId": "U9756Z1", + "id": "4f63f743-f178-490b-b3b3-6bcf7e3e4b74" + }, + { + "routeId": "L502", + "platformId": "U9757Z1", + "id": "1b2eb766-69ef-42ce-a2cb-d5d14271db47" + }, + { + "routeId": "L502", + "platformId": "U9757Z2", + "id": "5078bcc3-2e09-4199-8762-c8a6c96e642a" + }, + { + "routeId": "L482", + "platformId": "U9758Z1", + "id": "dfb39845-a1a9-47ab-9c92-1a8f9e506555" + }, + { + "routeId": "L506", + "platformId": "U9758Z1", + "id": "aecd1549-8fe0-4b77-a2d1-7a021a72df5f" + }, + { + "routeId": "L506", + "platformId": "U9758Z2", + "id": "59472523-1921-4b19-acb5-99469e513f42" + }, + { + "routeId": "L482", + "platformId": "U9758Z2", + "id": "fed2c09c-0bdc-4453-882b-aa3db6df5805" + }, + { + "routeId": "L482", + "platformId": "U9759Z1", + "id": "6c19ef1e-82e6-4b76-9ca0-6063273a1b9c" + }, + { + "routeId": "L506", + "platformId": "U9759Z1", + "id": "1253e5b8-f9ee-43ed-bc36-b48043b355c4" + }, + { + "routeId": "L506", + "platformId": "U9759Z2", + "id": "7f13cddb-37ec-4e87-ac2d-f4774337867f" + }, + { + "routeId": "L482", + "platformId": "U9759Z2", + "id": "9053de4f-76c8-4ce8-8095-e73e5affea54" + }, + { + "routeId": "L181", + "platformId": "U975Z1", + "id": "7529a0a7-d37b-43c9-ab2f-de708a195cf2" + }, + { + "routeId": "L183", + "platformId": "U975Z1", + "id": "7f7806e7-76ba-4352-b161-14c556496d15" + }, + { + "routeId": "L908", + "platformId": "U975Z1", + "id": "eb7b14fe-ba0a-4ad5-b0e6-81a864f696ae" + }, + { + "routeId": "L181", + "platformId": "U975Z2", + "id": "e85aac93-85dd-4d4d-86ed-0cb2c1fe09f3" + }, + { + "routeId": "L183", + "platformId": "U975Z2", + "id": "29dd1c26-3b4c-4a82-9dd3-60884f2fc1d1" + }, + { + "routeId": "L908", + "platformId": "U975Z2", + "id": "b2293d55-0783-40c3-bf1d-1e20c7749da1" + }, + { + "routeId": "L506", + "platformId": "U9760Z1", + "id": "8e350077-b273-484f-aa73-2fdbd35440e8" + }, + { + "routeId": "L502", + "platformId": "U9761Z1", + "id": "63b39245-7f0b-4d36-8d96-1577723db1a8" + }, + { + "routeId": "L502", + "platformId": "U9761Z2", + "id": "f4401a1a-fe60-4214-9217-51760531d750" + }, + { + "routeId": "L502", + "platformId": "U9762Z1", + "id": "e3fe39d4-1b9a-4f0c-bf78-caf3bdf4bdcd" + }, + { + "routeId": "L502", + "platformId": "U9762Z2", + "id": "b0bb3198-00ff-4ccc-b409-b786172c1417" + }, + { + "routeId": "L502", + "platformId": "U9763Z1", + "id": "42a20a0f-d170-4095-931f-1edc43d0c2f9" + }, + { + "routeId": "L521", + "platformId": "U9764Z1", + "id": "1909226c-847e-43e0-925a-18c4e8b39b9f" + }, + { + "routeId": "L521", + "platformId": "U9764Z2", + "id": "4fdf0788-b517-4e52-96bd-acb8bf5a9c02" + }, + { + "routeId": "L521", + "platformId": "U9765Z1", + "id": "cc2056ee-e5fb-4d90-a3f5-11509bd68367" + }, + { + "routeId": "L521", + "platformId": "U9765Z2", + "id": "0e050595-6f64-48e4-b0bb-1dff2221e046" + }, + { + "routeId": "L521", + "platformId": "U9767Z1", + "id": "f8d048e0-b6c6-400b-92e4-ab887c19bef8" + }, + { + "routeId": "L521", + "platformId": "U9767Z2", + "id": "c424f41e-ffa1-4559-be90-f9c0083d1f20" + }, + { + "routeId": "L521", + "platformId": "U9768Z1", + "id": "c22e47e0-c4e6-4e1c-b78e-143c4fe4176e" + }, + { + "routeId": "L521", + "platformId": "U9768Z2", + "id": "14f1028e-2884-416f-a9e1-e4b1d295ffc2" + }, + { + "routeId": "L244", + "platformId": "U976Z1", + "id": "d8b6b22d-b959-401d-87e1-56de0f506dc4" + }, + { + "routeId": "L244", + "platformId": "U976Z2", + "id": "479aa6a6-281a-4579-8893-e0cdeb186bcc" + }, + { + "routeId": "L1307", + "platformId": "U976Z301", + "id": "30a03b1c-bf7c-4c0a-ac26-a1861a9ec171" + }, + { + "routeId": "L631", + "platformId": "U9773Z1", + "id": "aed10c8d-2b27-4d8a-b1fe-f7a42cdce002" + }, + { + "routeId": "L631", + "platformId": "U9773Z2", + "id": "33790ec0-dfb9-4484-aee5-b6ffc4db6e9a" + }, + { + "routeId": "L631", + "platformId": "U9774Z1", + "id": "2888ce81-e7c1-4756-a62a-b73a83c2c614" + }, + { + "routeId": "L631", + "platformId": "U9774Z2", + "id": "d7e10ade-c575-4f61-9f47-057eea962d1c" + }, + { + "routeId": "L631", + "platformId": "U9775Z1", + "id": "b6998c7a-768b-4295-abf4-a515e0ae2134" + }, + { + "routeId": "L631", + "platformId": "U9775Z2", + "id": "af3e3a52-3856-4751-86cc-6134a570a64f" + }, + { + "routeId": "L631", + "platformId": "U9776Z1", + "id": "7ff40d7b-2bea-49ae-80fa-1799aed84e50" + }, + { + "routeId": "L631", + "platformId": "U9776Z2", + "id": "7f11d136-d5a9-43b4-81f6-480613f7fc5a" + }, + { + "routeId": "L531", + "platformId": "U9779Z1", + "id": "f8e4c68e-756d-4342-b2dc-95b125624c54" + }, + { + "routeId": "L548", + "platformId": "U9779Z1", + "id": "ed3cb729-86f9-448d-9bff-15bb4d7ce506" + }, + { + "routeId": "L545", + "platformId": "U9779Z1", + "id": "d6b3e86a-4f33-40b6-9d83-fb26b9fd52c6" + }, + { + "routeId": "L546", + "platformId": "U9779Z1", + "id": "d3d7778b-8439-4202-9d4e-8bfd650f7659" + }, + { + "routeId": "L639", + "platformId": "U9779Z1", + "id": "a7b5b119-7bf1-49a8-8056-e3ef3d9c6d2d" + }, + { + "routeId": "L641", + "platformId": "U9779Z2", + "id": "5d719899-7b82-425a-af42-c378cf37be28" + }, + { + "routeId": "L641", + "platformId": "U9779Z3", + "id": "53c43111-014c-4d48-b729-72e29e4dd87b" + }, + { + "routeId": "L351", + "platformId": "U977Z1", + "id": "ace3ae67-5e47-48bd-a47a-b04f966ba5fe" + }, + { + "routeId": "L351", + "platformId": "U977Z2", + "id": "208eeaab-b04f-4c4e-a599-f8758bc813a2" + }, + { + "routeId": "L641", + "platformId": "U9781Z1", + "id": "6e215ae9-2fe1-43a4-aa3c-2505d7a6d54c" + }, + { + "routeId": "L641", + "platformId": "U9781Z2", + "id": "482e4218-baa6-46ff-8330-85a24acf49c0" + }, + { + "routeId": "L531", + "platformId": "U9782Z1", + "id": "2dee1b04-da5f-4fab-ae01-354de1f47dc2" + }, + { + "routeId": "L639", + "platformId": "U9782Z1", + "id": "7fc9a3e1-7d33-4eb9-afea-1e88a8c879c5" + }, + { + "routeId": "L531", + "platformId": "U9782Z2", + "id": "c7b7359c-1a25-4703-8170-fa9ebd1fb78c" + }, + { + "routeId": "L639", + "platformId": "U9782Z2", + "id": "676ef9fc-5ca8-4f5b-a326-a28649ad67f2" + }, + { + "routeId": "L731", + "platformId": "U9783Z1", + "id": "cdbf1d3c-bbe6-4c9f-b655-4f4b7552b3c8" + }, + { + "routeId": "L731", + "platformId": "U9783Z2", + "id": "8eb2f02e-12dd-4d88-b48e-39de68c47207" + }, + { + "routeId": "L531", + "platformId": "U9784Z1", + "id": "b63022f9-861e-4ccb-84ad-ccda9b5b3133" + }, + { + "routeId": "L639", + "platformId": "U9784Z1", + "id": "aa0e3e1d-4c5f-486d-87d0-f44e4e9be4d0" + }, + { + "routeId": "L531", + "platformId": "U9784Z2", + "id": "d8d040a7-3911-4cfa-a064-8b317dd3800e" + }, + { + "routeId": "L639", + "platformId": "U9784Z2", + "id": "de13af95-595a-4988-921c-a0dd69388615" + }, + { + "routeId": "L643", + "platformId": "U9785Z1", + "id": "efd871fa-361a-4e70-b195-dab967458a23" + }, + { + "routeId": "L643", + "platformId": "U9785Z2", + "id": "b3529f9a-128d-449b-ba86-0563c111c53a" + }, + { + "routeId": "L545", + "platformId": "U9787Z1", + "id": "c2c97ff1-4ade-472b-8348-9f674063b275" + }, + { + "routeId": "L546", + "platformId": "U9787Z1", + "id": "a36c65d6-450f-4ab7-932b-27efc4b66c89" + }, + { + "routeId": "L545", + "platformId": "U9787Z2", + "id": "286ffa83-9f6f-4649-8143-ec2a463e975c" + }, + { + "routeId": "L546", + "platformId": "U9787Z2", + "id": "48aa3017-4016-4f89-a6fe-0cb62f4e8ca0" + }, + { + "routeId": "L548", + "platformId": "U9788Z1", + "id": "2d7131bd-d065-4d0e-9d36-989c500ba888" + }, + { + "routeId": "L548", + "platformId": "U9788Z2", + "id": "4d34aa63-601b-4b9e-892f-e0dd7be7ddeb" + }, + { + "routeId": "L643", + "platformId": "U9789Z1", + "id": "307d9b5d-a033-4a78-8854-dd788f02db66" + }, + { + "routeId": "L643", + "platformId": "U9789Z2", + "id": "8c201d95-fdf7-4c59-b2e4-636754eb3828" + }, + { + "routeId": "L125", + "platformId": "U978Z2", + "id": "4720d101-4fc7-49ad-b61a-ad2a2db7ea2d" + }, + { + "routeId": "L911", + "platformId": "U978Z2", + "id": "8bfbdca7-50df-4ec7-a679-1660aaeb3bfe" + }, + { + "routeId": "L204", + "platformId": "U978Z2", + "id": "9a7b8e8d-e1bb-47d2-8a20-acda0d55063a" + }, + { + "routeId": "L240", + "platformId": "U978Z2", + "id": "e88676af-b988-4173-b778-f5e07e9768e6" + }, + { + "routeId": "L643", + "platformId": "U9790Z1", + "id": "cd6a46db-1ef3-4cf9-9748-2f3445f579b8" + }, + { + "routeId": "L531", + "platformId": "U9794Z1", + "id": "93bec464-1623-4a68-8224-f88b28fbd4d8" + }, + { + "routeId": "L531", + "platformId": "U9794Z2", + "id": "464a9c7d-88ca-4875-8f5b-cc710d60e973" + }, + { + "routeId": "L531", + "platformId": "U9795Z1", + "id": "5db187ed-d482-4bf2-a325-b55ca5d46b3f" + }, + { + "routeId": "L531", + "platformId": "U9795Z2", + "id": "8bd97261-03b9-4e4d-a57b-601901523db1" + }, + { + "routeId": "L531", + "platformId": "U9796Z1", + "id": "76b6cf41-a259-4492-98f6-5fe8fab2c734" + }, + { + "routeId": "L531", + "platformId": "U9796Z2", + "id": "9d891245-0b9a-430a-a7aa-b2bae8a2e757" + }, + { + "routeId": "L531", + "platformId": "U9797Z1", + "id": "81f84817-57d9-44c6-afea-a3ecf0c945a6" + }, + { + "routeId": "L531", + "platformId": "U9797Z2", + "id": "60d252f6-96e2-4999-902a-7899ebb415b9" + }, + { + "routeId": "L531", + "platformId": "U9798Z1", + "id": "86e3b6a4-00f3-46ad-84dd-2cf16aefc9e2" + }, + { + "routeId": "L531", + "platformId": "U9798Z2", + "id": "4688808a-9c8b-4e34-9051-3ce84c29dbb5" + }, + { + "routeId": "L2260", + "platformId": "U9798Z401", + "id": "3f642f1a-073e-4059-bd37-01ca472cd5bf" + }, + { + "routeId": "L2260", + "platformId": "U9798Z402", + "id": "1bed9ffb-de8f-40f2-b9a2-1ed56894f462" + }, + { + "routeId": "L531", + "platformId": "U9799Z1", + "id": "103acfb1-bad7-4a0c-b120-53f8a2a16c1a" + }, + { + "routeId": "L531", + "platformId": "U9799Z2", + "id": "73619f49-6a88-4c80-86ba-2d89e6c591dd" + }, + { + "routeId": "L225", + "platformId": "U979Z1", + "id": "496f631b-0182-4ae4-8722-87796c9db6bd" + }, + { + "routeId": "L130", + "platformId": "U979Z1", + "id": "6e8633a3-0ef6-4fae-bf1d-d01954c1f5e1" + }, + { + "routeId": "L246", + "platformId": "U979Z1", + "id": "da3c7f7c-62cd-4403-8869-c7e62c79c756" + }, + { + "routeId": "L904", + "platformId": "U979Z1", + "id": "4d6f0f61-b7a8-4e20-8af5-93f25e0898d4" + }, + { + "routeId": "L225", + "platformId": "U979Z2", + "id": "ab0b9bfa-1003-48f8-bd0a-be5561eabeff" + }, + { + "routeId": "L130", + "platformId": "U979Z2", + "id": "3d652733-db73-4e8d-9736-70b9a9624d08" + }, + { + "routeId": "L246", + "platformId": "U979Z2", + "id": "d88b9ea3-1c7e-4acf-b81e-e22bacbb8aaa" + }, + { + "routeId": "L904", + "platformId": "U979Z2", + "id": "122f5272-fdd6-4ee1-bc79-a6e06c8b3673" + }, + { + "routeId": "L109", + "platformId": "U97Z1", + "id": "170b3684-beca-42c7-9c60-eec733747596" + }, + { + "routeId": "L909", + "platformId": "U97Z1", + "id": "51bec941-31a5-4c13-ad63-4f8c78d4c3e6" + }, + { + "routeId": "L110", + "platformId": "U97Z1", + "id": "ffa9832e-df0f-495a-ad82-c45864033c1c" + }, + { + "routeId": "L208", + "platformId": "U97Z1", + "id": "50ee8dfd-ce92-45c4-8b22-ac542a83831c" + }, + { + "routeId": "L224", + "platformId": "U97Z1", + "id": "a7048410-a457-412a-a9a3-9ab080132b75" + }, + { + "routeId": "L109", + "platformId": "U97Z2", + "id": "2e192955-6db8-42f9-bd71-81b83419f3c1" + }, + { + "routeId": "L909", + "platformId": "U97Z2", + "id": "c3a0f2cb-e941-40a3-810f-29a17c8078c5" + }, + { + "routeId": "L163", + "platformId": "U97Z2", + "id": "fb3317d0-e48d-4fcd-a303-e1b68a2008cd" + }, + { + "routeId": "L109", + "platformId": "U97Z3", + "id": "cf91b60b-9e0a-44cc-bd8d-a437e5fd6851" + }, + { + "routeId": "L909", + "platformId": "U97Z3", + "id": "feeda770-3cfe-4655-865b-6aa6a331af5b" + }, + { + "routeId": "L110", + "platformId": "U97Z3", + "id": "0fde329a-414a-44cc-8b3f-898262283f1e" + }, + { + "routeId": "L163", + "platformId": "U97Z3", + "id": "85fab0a2-88ae-4ff0-b4da-bea0cb7f3d45" + }, + { + "routeId": "L224", + "platformId": "U97Z3", + "id": "b0c30952-96ba-47d5-ab9e-829cd0d56c3d" + }, + { + "routeId": "L531", + "platformId": "U9802Z1", + "id": "32811310-c295-436f-9bf5-7bd037b13892" + }, + { + "routeId": "L531", + "platformId": "U9802Z2", + "id": "1fa294e8-e0b0-4c40-bbd6-f7552181fffb" + }, + { + "routeId": "L531", + "platformId": "U9804Z1", + "id": "cbf294b2-77ed-4998-aca1-c26046f4da06" + }, + { + "routeId": "L531", + "platformId": "U9804Z2", + "id": "386c55c4-d166-4ea3-b68d-bffe3c7d61aa" + }, + { + "routeId": "L531", + "platformId": "U9805Z1", + "id": "65218206-cb51-439f-85a3-20c62ab66ff4" + }, + { + "routeId": "L531", + "platformId": "U9805Z2", + "id": "8340a1a8-e39a-4593-924c-717daa42b1d9" + }, + { + "routeId": "L531", + "platformId": "U9806Z1", + "id": "fc8a10b8-1153-4f78-888a-781354eea98e" + }, + { + "routeId": "L531", + "platformId": "U9806Z2", + "id": "16f034cc-5a8d-4391-888b-cd22c7348ac7" + }, + { + "routeId": "L131", + "platformId": "U980Z1", + "id": "f2d87c9f-bdb1-4d88-9c85-32b4bce78d01" + }, + { + "routeId": "L907", + "platformId": "U980Z1", + "id": "e5cdb812-d2fe-43d3-8e15-aad8a8998738" + }, + { + "routeId": "L131", + "platformId": "U980Z2", + "id": "d81472dc-f970-4553-a035-6f9f1b0c6ece" + }, + { + "routeId": "L907", + "platformId": "U980Z2", + "id": "fda65162-6819-4ece-969d-ccd79082d184" + }, + { + "routeId": "L639", + "platformId": "U9811Z1", + "id": "631c8a08-7ca5-4c1e-a297-45cf61ca5c1f" + }, + { + "routeId": "L632", + "platformId": "U9811Z1", + "id": "8b10d222-3372-44cf-9b14-8de432fc9e33" + }, + { + "routeId": "L2276", + "platformId": "U9811Z401", + "id": "50311c97-e515-4871-80ba-0dbd3b00d6ec" + }, + { + "routeId": "L2276", + "platformId": "U9811Z402", + "id": "daba4f6a-6af6-42a8-b06b-db24e8a30d9f" + }, + { + "routeId": "L639", + "platformId": "U9812Z1", + "id": "61949b31-5b11-4ca5-80d1-b6a5effba5bf" + }, + { + "routeId": "L639", + "platformId": "U9812Z2", + "id": "5bb80c6b-e352-46f1-a635-43c917111406" + }, + { + "routeId": "L639", + "platformId": "U9813Z1", + "id": "94ce2b63-db8b-4cb2-90a5-91f26aaaed31" + }, + { + "routeId": "L639", + "platformId": "U9813Z2", + "id": "be51db9d-dae5-4bbc-be03-c40d03f120f2" + }, + { + "routeId": "L632", + "platformId": "U9814Z1", + "id": "8b862649-be14-4b17-b494-278287ebc425" + }, + { + "routeId": "L632", + "platformId": "U9814Z2", + "id": "10bff639-d854-4eaf-9e98-dc446652b811" + }, + { + "routeId": "L528", + "platformId": "U9817Z1", + "id": "8b713097-ab49-42fe-9413-7e625f7abcd8" + }, + { + "routeId": "L528", + "platformId": "U9817Z2", + "id": "b09026c2-e0a4-44b8-8b35-096230a65336" + }, + { + "routeId": "L528", + "platformId": "U9818Z1", + "id": "b3858808-ff72-458f-8bc0-e48ed4d95e02" + }, + { + "routeId": "L528", + "platformId": "U9818Z2", + "id": "fe16b5b6-d7e6-4171-b1dd-34a26d642b51" + }, + { + "routeId": "L528", + "platformId": "U9819Z1", + "id": "3ae1fb79-1931-4527-869d-8028f8473a8d" + }, + { + "routeId": "L528", + "platformId": "U9819Z2", + "id": "d8f19c99-1573-44fc-94ff-fec9bf832633" + }, + { + "routeId": "L143", + "platformId": "U981Z1", + "id": "8b077aec-620d-4edc-b245-db91578a474b" + }, + { + "routeId": "L149", + "platformId": "U981Z1", + "id": "7f5ea8c7-0a1a-4b46-9fa4-79931ba556d5" + }, + { + "routeId": "L143", + "platformId": "U981Z2", + "id": "524b3468-9a9b-4f47-b0ad-12a026677521" + }, + { + "routeId": "L149", + "platformId": "U981Z2", + "id": "96dcf7da-7153-4ecb-ad59-a1d1d8344199" + }, + { + "routeId": "L528", + "platformId": "U9820Z1", + "id": "84d87c3a-3c65-4c2b-863a-09fc47650887" + }, + { + "routeId": "L528", + "platformId": "U9820Z2", + "id": "b01d03f2-d2f8-4691-a128-39235414d8cc" + }, + { + "routeId": "L528", + "platformId": "U9821Z1", + "id": "e3617a96-9d99-4ea1-85f6-5ed9384d69bb" + }, + { + "routeId": "L528", + "platformId": "U9821Z2", + "id": "7b53bc6c-9c62-4b37-92f3-7119ff61abc1" + }, + { + "routeId": "L548", + "platformId": "U9823Z3", + "id": "82cbf376-a74b-45b5-8f2b-5588c7f6ac32" + }, + { + "routeId": "L548", + "platformId": "U9823Z4", + "id": "38930325-1e76-4204-b4fe-15050d674dd3" + }, + { + "routeId": "L548", + "platformId": "U9824Z1", + "id": "482547ed-87ea-43bd-a865-64f9863ed7a9" + }, + { + "routeId": "L548", + "platformId": "U9824Z2", + "id": "b10caa0a-04d1-4843-806d-00ba59cb2d38" + }, + { + "routeId": "L545", + "platformId": "U9826Z1", + "id": "b72fd5ec-34b9-4df6-86b4-9fde6e0ec460" + }, + { + "routeId": "L546", + "platformId": "U9826Z1", + "id": "f2a2cc6b-e285-4bf7-ba75-baa2db418e16" + }, + { + "routeId": "L545", + "platformId": "U9826Z2", + "id": "a25c3820-fb80-4979-a132-4274893287dc" + }, + { + "routeId": "L546", + "platformId": "U9826Z2", + "id": "aadce7bc-4a07-4491-9a4d-b5a3082624ba" + }, + { + "routeId": "L545", + "platformId": "U9827Z1", + "id": "b9ca2eb3-e9c9-420e-9a9a-2e36ff4dba74" + }, + { + "routeId": "L546", + "platformId": "U9827Z1", + "id": "88b9f668-8b2d-41cf-9d14-495db925e663" + }, + { + "routeId": "L545", + "platformId": "U9827Z2", + "id": "7d687900-d100-40cb-8aee-0c5cc427ae65" + }, + { + "routeId": "L546", + "platformId": "U9827Z2", + "id": "0827a9ce-9943-4daf-8819-fe0158996e20" + }, + { + "routeId": "L545", + "platformId": "U9829Z1", + "id": "f824448b-81d5-47d8-96bc-7560c97a5f82" + }, + { + "routeId": "L546", + "platformId": "U9829Z1", + "id": "54fee750-a52c-4342-a2df-8d4a4b8e3e1c" + }, + { + "routeId": "L545", + "platformId": "U9829Z2", + "id": "845345cc-56d9-46a6-ab55-34f37dd7280c" + }, + { + "routeId": "L546", + "platformId": "U9829Z2", + "id": "d9335b6f-aaa2-4f37-91bf-740c962337cc" + }, + { + "routeId": "L177", + "platformId": "U982Z1", + "id": "51b55c00-5375-427c-aaff-e5210bbd639e" + }, + { + "routeId": "L911", + "platformId": "U982Z1", + "id": "7277ad10-2261-443c-a7bf-72cfc18f703d" + }, + { + "routeId": "L203", + "platformId": "U982Z1", + "id": "838e7c50-33d2-49ee-ac4e-b73a6a5014a6" + }, + { + "routeId": "L177", + "platformId": "U982Z2", + "id": "445d6134-16b4-4bd0-9180-ba9ea7414e95" + }, + { + "routeId": "L911", + "platformId": "U982Z2", + "id": "2a92de27-14db-480d-90e1-ed45e2970598" + }, + { + "routeId": "L203", + "platformId": "U982Z2", + "id": "a5116249-81c6-4f7e-88fc-cb9a25548c92" + }, + { + "routeId": "L177", + "platformId": "U982Z3", + "id": "6018a22a-404a-408a-8eab-60e9e70eb955" + }, + { + "routeId": "L545", + "platformId": "U9830Z1", + "id": "07d6196a-3178-41f7-bffd-7cf6740428c3" + }, + { + "routeId": "L546", + "platformId": "U9830Z1", + "id": "1c0bb884-d5b2-4fca-ade3-a5c4264eedab" + }, + { + "routeId": "L545", + "platformId": "U9830Z2", + "id": "ab878b7c-5a26-49e8-a9e5-699f84863c5a" + }, + { + "routeId": "L546", + "platformId": "U9830Z2", + "id": "232896df-2669-44e5-8aef-2ce3a93044f6" + }, + { + "routeId": "L12", + "platformId": "U983Z1", + "id": "d94b1a3d-0546-41d8-b976-18f89c08e41c" + }, + { + "routeId": "L14", + "platformId": "U983Z1", + "id": "c0805743-5118-4924-ac6e-96ff3f0b004b" + }, + { + "routeId": "L12", + "platformId": "U983Z2", + "id": "649f2964-a265-434e-b9d3-a3d191943051" + }, + { + "routeId": "L14", + "platformId": "U983Z2", + "id": "782800c3-78af-430d-832d-acaaa1b8c77a" + }, + { + "routeId": "L639", + "platformId": "U9841Z1", + "id": "ec571c6a-a0dc-4a78-82fc-083c8352f698" + }, + { + "routeId": "L639", + "platformId": "U9841Z2", + "id": "f723251a-9de7-4abb-b38a-07046f9d3915" + }, + { + "routeId": "L639", + "platformId": "U9842Z1", + "id": "6c96a81f-b227-4868-8813-0a79a4a133e6" + }, + { + "routeId": "L639", + "platformId": "U9842Z2", + "id": "83d9f9b2-4781-4bb0-af0d-11e46342889b" + }, + { + "routeId": "L639", + "platformId": "U9844Z1", + "id": "ba2b4788-675c-4ac3-9f99-34dcca1e2252" + }, + { + "routeId": "L639", + "platformId": "U9844Z2", + "id": "04320c4a-8e23-4d4d-99e9-ca779782676d" + }, + { + "routeId": "L639", + "platformId": "U9847Z1", + "id": "b79a0bf3-f4c2-4319-9371-df1875ba5335" + }, + { + "routeId": "L639", + "platformId": "U9847Z2", + "id": "4faefb88-f724-45aa-af3d-2945a009f73a" + }, + { + "routeId": "L106", + "platformId": "U984Z1", + "id": "f680311e-191d-49e5-a03e-a28823be7690" + }, + { + "routeId": "L121", + "platformId": "U984Z1", + "id": "5a75d31f-8d97-410d-94ec-ee65ffe00b26" + }, + { + "routeId": "L106", + "platformId": "U984Z2", + "id": "231478a3-f9d9-4d56-8c97-b6fdd20a9293" + }, + { + "routeId": "L121", + "platformId": "U984Z2", + "id": "828c9812-30e2-4931-9e66-2e01d7826d69" + }, + { + "routeId": "L639", + "platformId": "U9850Z1", + "id": "62f58369-0025-48ed-970e-2d457009cd6c" + }, + { + "routeId": "L2260", + "platformId": "U9851Z401", + "id": "45ee5aca-56a4-487b-8d38-721e92b5b957" + }, + { + "routeId": "L2260", + "platformId": "U9851Z402", + "id": "4167e7c1-f268-4417-97a7-435cfa3f0b40" + }, + { + "routeId": "L631", + "platformId": "U9853Z1", + "id": "be8fe0fa-dd49-4691-b8bc-7e41ac35a34a" + }, + { + "routeId": "L641", + "platformId": "U9855Z1", + "id": "ad71ee2c-76a4-4287-82b3-fd5754881314" + }, + { + "routeId": "L641", + "platformId": "U9855Z2", + "id": "7b4192e8-8532-4e11-9ae8-5540c49d6aba" + }, + { + "routeId": "L641", + "platformId": "U9856Z1", + "id": "d4ae8337-1434-4e3a-962e-714d7ce34dcc" + }, + { + "routeId": "L641", + "platformId": "U9856Z2", + "id": "05da612f-4358-42c6-98a4-3c2a566e3e11" + }, + { + "routeId": "L641", + "platformId": "U9857Z1", + "id": "0990d970-1555-4cde-ba06-221113ffe02d" + }, + { + "routeId": "L641", + "platformId": "U9857Z2", + "id": "91567392-9416-44a3-8371-8bc63172ec9e" + }, + { + "routeId": "L166", + "platformId": "U985Z1", + "id": "6d86542a-03fc-4e62-98c7-a57539e600a2" + }, + { + "routeId": "L348", + "platformId": "U985Z1", + "id": "c3725a6e-6767-4c3e-b806-1a503c9b667c" + }, + { + "routeId": "L166", + "platformId": "U985Z2", + "id": "a9ab12f6-8563-471b-9551-2b308c72bc50" + }, + { + "routeId": "L348", + "platformId": "U985Z2", + "id": "e7e47667-fcbb-4a5b-9bff-7a575fafb353" + }, + { + "routeId": "L641", + "platformId": "U9860Z1", + "id": "3ad151cb-871b-42c0-9e73-c385a41649c3" + }, + { + "routeId": "L641", + "platformId": "U9860Z2", + "id": "2843b32c-6e6c-422d-9f63-11e334c8c13e" + }, + { + "routeId": "L545", + "platformId": "U9861Z1", + "id": "d2822d0a-80f6-4ff8-9a13-21ce201e25f7" + }, + { + "routeId": "L545", + "platformId": "U9861Z2", + "id": "c637effa-0d02-4fc2-a4a3-80eebf632fd9" + }, + { + "routeId": "L545", + "platformId": "U9862Z1", + "id": "9f51f7b0-dbd9-4041-a896-23ac7304504f" + }, + { + "routeId": "L545", + "platformId": "U9862Z2", + "id": "56461374-3ba8-4c9c-b1c4-b831d58320d9" + }, + { + "routeId": "L545", + "platformId": "U9863Z1", + "id": "23eb0cc7-245c-44a8-81d5-150eff1d0e14" + }, + { + "routeId": "L545", + "platformId": "U9863Z2", + "id": "d2719aab-2b28-4d62-9dc4-42adeb4d0927" + }, + { + "routeId": "L546", + "platformId": "U9867Z1", + "id": "9b0857b1-43e3-4502-a6e4-b94a63fb5fbb" + }, + { + "routeId": "L546", + "platformId": "U9867Z2", + "id": "22dd8d0f-c6a3-4801-98a2-e0af85d1534d" + }, + { + "routeId": "L546", + "platformId": "U9868Z1", + "id": "a0966e83-56d2-4bdb-b796-224a3c6df4f0" + }, + { + "routeId": "L546", + "platformId": "U9868Z2", + "id": "38f7f1ea-0951-49b2-b15c-4aa84f126d76" + }, + { + "routeId": "L545", + "platformId": "U9869Z1", + "id": "a8ffbfc3-8acb-40b0-a7bb-373635460f76" + }, + { + "routeId": "L545", + "platformId": "U9869Z2", + "id": "abd33cdb-b56f-48d0-b0ae-b0db1eba0c4a" + }, + { + "routeId": "L204", + "platformId": "U986Z1", + "id": "277630b9-e5ee-4189-be9b-e68c5a82c897" + }, + { + "routeId": "L221", + "platformId": "U986Z1", + "id": "a4ade015-68ea-411d-82a3-18745ae4ccbb" + }, + { + "routeId": "L204", + "platformId": "U986Z2", + "id": "00a5ed5c-e83d-4275-ba2b-435e8a5626de" + }, + { + "routeId": "L221", + "platformId": "U986Z2", + "id": "62ca7192-7a49-4a15-8b2c-2e08a298fffb" + }, + { + "routeId": "L461", + "platformId": "U9873Z2", + "id": "136c5feb-ee44-468c-9bd2-db37127d5906" + }, + { + "routeId": "L461", + "platformId": "U9873Z3", + "id": "aa351541-cfce-4beb-878e-adc54ca76188" + }, + { + "routeId": "L467", + "platformId": "U9876Z1", + "id": "6f79a04f-d2cd-4200-8323-496f2e41b328" + }, + { + "routeId": "L467", + "platformId": "U9876Z2", + "id": "b60e1056-aef4-4f8b-baeb-05dbc78829ec" + }, + { + "routeId": "L467", + "platformId": "U9877Z1", + "id": "6343f224-3294-41c4-b0b4-24b10ecb549f" + }, + { + "routeId": "L467", + "platformId": "U9877Z2", + "id": "d9fbe5ab-bde5-4cb7-98ef-282f380576c0" + }, + { + "routeId": "L467", + "platformId": "U9878Z1", + "id": "cee22806-0fe8-4ded-a065-8a99214648b6" + }, + { + "routeId": "L467", + "platformId": "U9878Z2", + "id": "bb389798-38b7-42d1-8e36-5fc92b7d43d5" + }, + { + "routeId": "L467", + "platformId": "U9879Z1", + "id": "ed40c301-b4fe-427d-bbe1-80d7fc5efccb" + }, + { + "routeId": "L190", + "platformId": "U987Z1", + "id": "1a53290e-5f90-4e5b-941e-9b8fe7be65aa" + }, + { + "routeId": "L190", + "platformId": "U987Z2", + "id": "46b93540-b958-4d41-882d-7a815baf232b" + }, + { + "routeId": "L224", + "platformId": "U9880Z1", + "id": "82e0bff3-5971-43f2-b9f6-5c61440b607b" + }, + { + "routeId": "L224", + "platformId": "U9880Z2", + "id": "2cedcbce-4d16-4e0f-a6a8-720f7b42bc5e" + }, + { + "routeId": "L461", + "platformId": "U9881Z1", + "id": "999dc2d2-1e3e-4d2e-bc68-4e44522bfdf9" + }, + { + "routeId": "L461", + "platformId": "U9881Z2", + "id": "748ea1dc-a520-4531-90f0-a2e890a2dfd3" + }, + { + "routeId": "L361", + "platformId": "U9882Z1", + "id": "a58d94bc-c22c-43c3-9dca-c592b9b98d8e" + }, + { + "routeId": "L361", + "platformId": "U9882Z2", + "id": "64c5049a-3a92-4448-9c39-5aef9143b72e" + }, + { + "routeId": "L631", + "platformId": "U9883Z1", + "id": "8402a698-7457-4b6f-b9fb-392f45a67fd8" + }, + { + "routeId": "L631", + "platformId": "U9883Z2", + "id": "53ff9570-9952-47fd-80cc-9f150c9cdf6c" + }, + { + "routeId": "L351", + "platformId": "U988Z1", + "id": "794b05d5-88e6-4e7f-82c0-b567de2732f0" + }, + { + "routeId": "L351", + "platformId": "U988Z2", + "id": "ee12c0c6-6256-4afd-95d7-f455810018f7" + }, + { + "routeId": "L517", + "platformId": "U9894Z1", + "id": "188c393b-978f-4c76-8cff-6f735541aba3" + }, + { + "routeId": "L304", + "platformId": "U9895Z1", + "id": "e6fd509c-b3fe-4705-a894-60e77f0d9a44" + }, + { + "routeId": "L577", + "platformId": "U9895Z1", + "id": "6de4f3d7-8691-409c-a422-bb0bd70b9fa5" + }, + { + "routeId": "L404", + "platformId": "U9895Z1", + "id": "5c53f9d8-dd3c-423c-a487-1070b8a079dc" + }, + { + "routeId": "L304", + "platformId": "U9895Z2", + "id": "97523675-8983-4ec7-903b-71ea9ab2f87f" + }, + { + "routeId": "L577", + "platformId": "U9895Z2", + "id": "46a3c76e-3692-4058-adf0-5bc28cbe0400" + }, + { + "routeId": "L404", + "platformId": "U9895Z2", + "id": "171223b2-5133-408a-ac6e-422cb1b47aa9" + }, + { + "routeId": "L304", + "platformId": "U9897Z1", + "id": "c6102fdc-bd41-419e-a5ad-fa7c8c5131cb" + }, + { + "routeId": "L404", + "platformId": "U9897Z1", + "id": "fd5c9557-bd19-4eea-8bd3-55345bf8fc6b" + }, + { + "routeId": "L304", + "platformId": "U9897Z2", + "id": "5ffa8f19-b97e-4919-9f15-402c8416d7ac" + }, + { + "routeId": "L404", + "platformId": "U9897Z2", + "id": "a7ebc869-0ca8-48a8-b253-af15fe98e78d" + }, + { + "routeId": "L304", + "platformId": "U9898Z1", + "id": "37ff63ea-d8c7-493d-8119-e307765e0886" + }, + { + "routeId": "L304", + "platformId": "U9898Z2", + "id": "511fa0b6-a87b-40dd-956d-a165a035e97e" + }, + { + "routeId": "L304", + "platformId": "U9899Z2", + "id": "740758e2-59fe-4fec-b87b-6cd9ea01e3ad" + }, + { + "routeId": "L625", + "platformId": "U9899Z2", + "id": "5303f766-9b1e-4f49-8513-78c728478c4f" + }, + { + "routeId": "L126", + "platformId": "U989Z1", + "id": "68e6d57f-dc0d-4b11-af5f-677f52d0a47a" + }, + { + "routeId": "L197", + "platformId": "U989Z1", + "id": "f610b7dd-caf0-4418-ae44-c6cce2bc1226" + }, + { + "routeId": "L126", + "platformId": "U989Z2", + "id": "cdd29748-eebe-401a-887d-f3e1c3ad4675" + }, + { + "routeId": "L197", + "platformId": "U989Z2", + "id": "65d33831-9892-4fc2-a37a-e86123dcef41" + }, + { + "routeId": "L134", + "platformId": "U98Z1", + "id": "17a737ff-dc0a-45eb-9caa-666cc36507e5" + }, + { + "routeId": "L134", + "platformId": "U98Z2", + "id": "6b129c3b-6b8e-478d-8a3a-7277c2c261ad" + }, + { + "routeId": "L304", + "platformId": "U9900Z1", + "id": "9fbb8b8a-c692-4197-94c1-3f87d99909b3" + }, + { + "routeId": "L625", + "platformId": "U9900Z1", + "id": "cc1b0a67-5919-4d5c-b8c3-acbca1b3b8e5" + }, + { + "routeId": "L304", + "platformId": "U9900Z2", + "id": "fd670046-cc24-4b80-a219-528f642648a9" + }, + { + "routeId": "L625", + "platformId": "U9900Z2", + "id": "f335ac00-040a-48e9-8170-c868e7817112" + }, + { + "routeId": "L304", + "platformId": "U9901Z1", + "id": "8dec2020-950f-465e-ab05-d30939162e72" + }, + { + "routeId": "L625", + "platformId": "U9901Z1", + "id": "06d58de1-9242-44f2-97eb-fbfc65d42092" + }, + { + "routeId": "L304", + "platformId": "U9901Z2", + "id": "fe09c3a0-c29e-4d88-998c-4cf66a63be54" + }, + { + "routeId": "L625", + "platformId": "U9901Z2", + "id": "d63f72ab-739d-418e-aacd-d21f59fef8dc" + }, + { + "routeId": "L304", + "platformId": "U9902Z1", + "id": "1fa2f183-402a-42a0-8168-11f5e5032272" + }, + { + "routeId": "L404", + "platformId": "U9902Z1", + "id": "b4a8a669-f4fc-48b7-9fd0-ac31ea0a2c69" + }, + { + "routeId": "L625", + "platformId": "U9902Z1", + "id": "d2e45ec0-e42d-4cc6-95a7-0b3153b660b1" + }, + { + "routeId": "L304", + "platformId": "U9902Z2", + "id": "23a72495-0478-4b48-a807-9473ac6f3e2a" + }, + { + "routeId": "L404", + "platformId": "U9902Z2", + "id": "a2927f2a-84d9-44a0-aacc-4088b845c01b" + }, + { + "routeId": "L625", + "platformId": "U9902Z2", + "id": "cc405eed-0e6d-493d-bfff-b06c34c1ed27" + }, + { + "routeId": "L467", + "platformId": "U9903Z1", + "id": "db45b5fc-69cb-4e34-a233-b35479752289" + }, + { + "routeId": "L467", + "platformId": "U9903Z2", + "id": "df043bf1-b4b5-4d4c-ab9d-fc21dd6c6e39" + }, + { + "routeId": "L577", + "platformId": "U9906Z1", + "id": "99af943b-e858-4c68-8ddc-f0c51e28d4db" + }, + { + "routeId": "L577", + "platformId": "U9906Z2", + "id": "31a3f8e3-3a51-4920-837a-ff2fd0d62ee5" + }, + { + "routeId": "L577", + "platformId": "U9907Z1", + "id": "c1a44bd5-5c34-45b3-86fa-1a9fad4e3f76" + }, + { + "routeId": "L577", + "platformId": "U9907Z2", + "id": "bb040d38-7e35-4343-b5d7-8f9307667211" + }, + { + "routeId": "L577", + "platformId": "U9908Z1", + "id": "00865245-e87e-4257-9159-c6b40d30c3bf" + }, + { + "routeId": "L577", + "platformId": "U9908Z2", + "id": "494b7382-8f54-4cb1-bccb-051a591078f3" + }, + { + "routeId": "L625", + "platformId": "U9909Z1", + "id": "a9653b50-4c1a-48b2-8a46-86b805342131" + }, + { + "routeId": "L151", + "platformId": "U990Z1", + "id": "ce2abe01-46d6-4ab3-bbb4-06da69ee0d6a" + }, + { + "routeId": "L201", + "platformId": "U990Z1", + "id": "b6feed74-3101-4ee1-8292-a2f6103b133d" + }, + { + "routeId": "L911", + "platformId": "U990Z1", + "id": "caa70bad-b348-47e4-a112-f33f1e7ed9f9" + }, + { + "routeId": "L166", + "platformId": "U990Z1", + "id": "66902fc5-732e-4792-a1a6-f72270879170" + }, + { + "routeId": "L151", + "platformId": "U990Z2", + "id": "a1238ea5-2de7-4ab6-a9dc-947f5faa3513" + }, + { + "routeId": "L201", + "platformId": "U990Z2", + "id": "34cf1a36-bf49-4499-b948-76c14e83c413" + }, + { + "routeId": "L911", + "platformId": "U990Z2", + "id": "ed8e569f-cc6d-43fd-9fe6-e3f8cadbd41d" + }, + { + "routeId": "L166", + "platformId": "U990Z2", + "id": "b20dca8f-ec95-44fa-86ee-b75e47092f73" + }, + { + "routeId": "L625", + "platformId": "U9911Z1", + "id": "c89909de-0738-4d94-bea8-8865c61ee445" + }, + { + "routeId": "L625", + "platformId": "U9911Z2", + "id": "7a58454d-2f02-4a88-8cd3-df2d48b7b736" + }, + { + "routeId": "L577", + "platformId": "U9914Z1", + "id": "1e202e30-7619-4d85-a888-7849f5d7d99c" + }, + { + "routeId": "L577", + "platformId": "U9914Z2", + "id": "b9b82348-4d55-41b7-bd35-11569b9a7a44" + }, + { + "routeId": "L577", + "platformId": "U9916Z1", + "id": "43842664-47b9-470e-b751-d9376e83c995" + }, + { + "routeId": "L577", + "platformId": "U9916Z2", + "id": "164644e5-0d3a-41c7-bd1e-1d1818bacad0" + }, + { + "routeId": "L577", + "platformId": "U9917Z1", + "id": "5ae12265-47f4-4eec-a1ea-0594e2a026ac" + }, + { + "routeId": "L577", + "platformId": "U9917Z2", + "id": "d010083a-f50b-49f7-847e-f17df2428873" + }, + { + "routeId": "L577", + "platformId": "U9918Z1", + "id": "3b3eb785-99bd-481a-a7b7-8351ec539df1" + }, + { + "routeId": "L577", + "platformId": "U9918Z2", + "id": "e9c81d82-6a06-40be-a2dd-091a14759857" + }, + { + "routeId": "L625", + "platformId": "U9919Z1", + "id": "6dea671d-8739-4615-b439-3196e121f699" + }, + { + "routeId": "L625", + "platformId": "U9919Z2", + "id": "0d3d405e-6c38-4fb2-b2b7-63da22db36ef" + }, + { + "routeId": "L117", + "platformId": "U991Z1", + "id": "68dc683f-1141-46cc-9eb8-7f7cc497651f" + }, + { + "routeId": "L917", + "platformId": "U991Z1", + "id": "e55d79bd-bb79-41e9-9053-3e066217ff3b" + }, + { + "routeId": "L117", + "platformId": "U991Z2", + "id": "b070bd9c-efe6-42d9-93ee-c1581f15d0ce" + }, + { + "routeId": "L917", + "platformId": "U991Z2", + "id": "a3418946-587e-4732-bbde-009315b5218d" + }, + { + "routeId": "L618", + "platformId": "U9920Z1", + "id": "3f49822b-b6d1-4903-93e8-63d6e152c975" + }, + { + "routeId": "L365", + "platformId": "U9920Z1", + "id": "3b0cb41f-698a-41b5-83e2-10ad042ca078" + }, + { + "routeId": "L600", + "platformId": "U9920Z1", + "id": "12ea9df2-0d4d-4bec-a2ec-61ceaf5b03ce" + }, + { + "routeId": "L619", + "platformId": "U9920Z1", + "id": "03094572-caa1-4a6c-94cb-c05df5e44d5d" + }, + { + "routeId": "L417", + "platformId": "U9920Z1", + "id": "299414bb-7fbf-41ca-8462-88a81d535ee4" + }, + { + "routeId": "L417", + "platformId": "U9920Z2", + "id": "330b6bab-3daa-4e74-8698-d83f7e8a4c20" + }, + { + "routeId": "L618", + "platformId": "U9920Z2", + "id": "17a81a9e-d6f1-4602-ab90-8cf1a868763c" + }, + { + "routeId": "L365", + "platformId": "U9920Z2", + "id": "f9913cee-429d-4b90-8205-fdd06ca989d8" + }, + { + "routeId": "L600", + "platformId": "U9920Z2", + "id": "19d1b7a4-c935-4cff-930b-b1bd52107aca" + }, + { + "routeId": "L619", + "platformId": "U9920Z2", + "id": "ec68a500-c190-40e4-94b4-13d6d6ed3c3f" + }, + { + "routeId": "L787", + "platformId": "U9921Z1", + "id": "1c6fb524-8d85-4d84-823a-955f22993870" + }, + { + "routeId": "L787", + "platformId": "U9921Z2", + "id": "02171b67-4cb0-4a09-a51e-ea399847335b" + }, + { + "routeId": "L365", + "platformId": "U9922Z1", + "id": "931c6065-2a38-45d3-9051-81c15942f5f1" + }, + { + "routeId": "L600", + "platformId": "U9922Z1", + "id": "7a346a8d-43a8-4723-8c46-2ae08ea3e459" + }, + { + "routeId": "L619", + "platformId": "U9922Z1", + "id": "00124659-a9e7-4a40-b815-ba26c3a529de" + }, + { + "routeId": "L417", + "platformId": "U9922Z1", + "id": "6e5d0c01-1210-40f0-8da8-25c3ad7e6cf6" + }, + { + "routeId": "L417", + "platformId": "U9922Z2", + "id": "be8f3ba4-59fe-4318-bd7d-e2320bb99741" + }, + { + "routeId": "L365", + "platformId": "U9922Z2", + "id": "d447d370-235b-4900-be47-4d7b543dc625" + }, + { + "routeId": "L600", + "platformId": "U9922Z2", + "id": "50e8912b-fe7b-4a37-922a-3f02020c0463" + }, + { + "routeId": "L619", + "platformId": "U9922Z2", + "id": "0fb3435a-4ae6-4fca-b18e-4e2be05a86ef" + }, + { + "routeId": "L365", + "platformId": "U9923Z1", + "id": "4d31b79d-3a51-469a-a741-2ab72153f773" + }, + { + "routeId": "L600", + "platformId": "U9923Z1", + "id": "84d10116-fc7c-4d15-97ba-232e3f2fc8fa" + }, + { + "routeId": "L619", + "platformId": "U9923Z1", + "id": "92403799-32f1-40a9-8174-5772fd77495f" + }, + { + "routeId": "L417", + "platformId": "U9923Z1", + "id": "baffa634-4ce4-43f2-9645-f4fc452f0655" + }, + { + "routeId": "L555", + "platformId": "U9923Z1", + "id": "ddba650e-d054-44d1-9cca-1025b2787625" + }, + { + "routeId": "L417", + "platformId": "U9923Z2", + "id": "1a502db5-4359-4545-8aff-33f8c99551bb" + }, + { + "routeId": "L365", + "platformId": "U9923Z2", + "id": "5e3e85d2-bcb0-4741-8789-59e6ecb9eb73" + }, + { + "routeId": "L600", + "platformId": "U9923Z2", + "id": "e36403ae-929f-4829-888f-bd0b3e447810" + }, + { + "routeId": "L619", + "platformId": "U9923Z2", + "id": "1971751c-6f21-4539-9fb9-976452385cd0" + }, + { + "routeId": "L555", + "platformId": "U9923Z2", + "id": "de3c5030-aeee-4e45-a177-a49264edd8fb" + }, + { + "routeId": "L365", + "platformId": "U9924Z1", + "id": "8862681b-da13-40c5-8d16-aeb009f24882" + }, + { + "routeId": "L600", + "platformId": "U9924Z1", + "id": "44eec5ef-f2a4-4d4c-b453-60a9a96a3479" + }, + { + "routeId": "L619", + "platformId": "U9924Z1", + "id": "51391043-4e41-47d1-924b-3217d0ad402e" + }, + { + "routeId": "L417", + "platformId": "U9924Z1", + "id": "93a3b604-5ef0-4d2a-93ef-d7f8918940fc" + }, + { + "routeId": "L555", + "platformId": "U9924Z1", + "id": "482151b9-50f7-4158-8aa0-283fb2d1bcbc" + }, + { + "routeId": "L417", + "platformId": "U9924Z2", + "id": "429fcdc7-6943-4c47-9a2c-23bc60212538" + }, + { + "routeId": "L365", + "platformId": "U9924Z2", + "id": "c72b8488-ca52-42e3-89ab-a27880aef514" + }, + { + "routeId": "L600", + "platformId": "U9924Z2", + "id": "8fd73972-313c-44a4-85b3-f3d89950440e" + }, + { + "routeId": "L619", + "platformId": "U9924Z2", + "id": "fdd52648-420d-494a-9e09-0289b7dd3b09" + }, + { + "routeId": "L555", + "platformId": "U9924Z2", + "id": "83a78e8a-07d8-4f60-9e0f-089ac6484dae" + }, + { + "routeId": "L365", + "platformId": "U9926Z1", + "id": "919d7d44-adf2-4734-98f1-3212f0d9b2ca" + }, + { + "routeId": "L417", + "platformId": "U9926Z1", + "id": "a9529983-c1d5-41ab-8a04-ca249d5cc559" + }, + { + "routeId": "L629", + "platformId": "U9926Z1", + "id": "7b74b211-7c5f-4b7c-81c8-2bd511832ad2" + }, + { + "routeId": "L417", + "platformId": "U9926Z2", + "id": "8e55b630-4dd6-4238-a023-d186e0ba0a95" + }, + { + "routeId": "L365", + "platformId": "U9926Z2", + "id": "e4ce1fb0-0f18-46d1-abc0-0b3466481f74" + }, + { + "routeId": "L629", + "platformId": "U9926Z2", + "id": "53e47142-1c58-4713-924d-04d65b858320" + }, + { + "routeId": "L365", + "platformId": "U9927Z1", + "id": "c9d8a897-e990-4773-b56c-44272f55ed6b" + }, + { + "routeId": "L417", + "platformId": "U9927Z1", + "id": "aea08782-dbe4-44e7-b71e-78f209863d69" + }, + { + "routeId": "L629", + "platformId": "U9927Z1", + "id": "0b27460f-3f6b-4e26-a18d-a7ed12088573" + }, + { + "routeId": "L417", + "platformId": "U9927Z2", + "id": "37668b0c-4d88-4e50-9678-ca3d163f4d38" + }, + { + "routeId": "L365", + "platformId": "U9927Z2", + "id": "6fc9425e-045a-4604-b5d1-5b47012aa1d6" + }, + { + "routeId": "L629", + "platformId": "U9927Z2", + "id": "5d4ada3c-5900-4bb8-8279-ba7e8fefa9ec" + }, + { + "routeId": "L471", + "platformId": "U9929Z1", + "id": "7b28574e-dc0b-4984-a1df-c2a4b209b0dd" + }, + { + "routeId": "L471", + "platformId": "U9929Z2", + "id": "f5406e69-90ca-4dc1-885b-b98573153c1d" + }, + { + "routeId": "L1221", + "platformId": "U9929Z301", + "id": "485fbf74-40ac-4e48-b8f9-e90e59f494aa" + }, + { + "routeId": "L1303", + "platformId": "U9929Z301", + "id": "2b617a44-b877-4a61-aac6-efeaa029d265" + }, + { + "routeId": "L149", + "platformId": "U992Z1", + "id": "baf0e294-a0ec-4e13-b522-d5bec433c8a5" + }, + { + "routeId": "L149", + "platformId": "U992Z2", + "id": "061152ec-857e-4d23-b829-4085640790c2" + }, + { + "routeId": "L538", + "platformId": "U9930Z1", + "id": "e7313812-6388-460e-948e-b5d80ecddd06" + }, + { + "routeId": "L538", + "platformId": "U9930Z2", + "id": "2f87e82a-3307-41ea-baa6-f6d162612335" + }, + { + "routeId": "L487", + "platformId": "U9933Z1", + "id": "2f18e773-0c5e-4be6-b820-3741f69c5a7d" + }, + { + "routeId": "L487", + "platformId": "U9933Z2", + "id": "0fba013c-629f-4434-9359-eb52648906df" + }, + { + "routeId": "L487", + "platformId": "U9934Z1", + "id": "476914cb-4ac9-424e-9343-e9972a2d8bc6" + }, + { + "routeId": "L487", + "platformId": "U9934Z2", + "id": "fe725418-69b7-4080-b242-92b51bc920aa" + }, + { + "routeId": "L681", + "platformId": "U9935Z1", + "id": "9c9e1020-57da-49a2-8767-ca008f591a03" + }, + { + "routeId": "L487", + "platformId": "U9935Z1", + "id": "e2c40275-3816-4a23-85b4-511fc3e7fc4e" + }, + { + "routeId": "L681", + "platformId": "U9935Z2", + "id": "44399508-7030-4c8d-a29f-9587f1329280" + }, + { + "routeId": "L487", + "platformId": "U9935Z2", + "id": "463ca707-94e4-47ac-b6a2-6b9d9cbe5b28" + }, + { + "routeId": "L681", + "platformId": "U9936Z1", + "id": "1e7c2fcb-126c-4c40-9b39-9f37ebf86d56" + }, + { + "routeId": "L681", + "platformId": "U9936Z2", + "id": "c10eb26d-66c0-4324-b297-f350da36c59c" + }, + { + "routeId": "L681", + "platformId": "U9937Z1", + "id": "cad6dcf8-3ae2-4a39-a3f1-d6e53ad79804" + }, + { + "routeId": "L681", + "platformId": "U9937Z2", + "id": "2e0781da-f477-469a-85ad-42603fb4dce6" + }, + { + "routeId": "L681", + "platformId": "U9938Z1", + "id": "534d4f49-b43d-4ecb-bedf-d53b2ba091e2" + }, + { + "routeId": "L681", + "platformId": "U9938Z2", + "id": "c156853d-623f-43e4-bfd5-f090e70daf9b" + }, + { + "routeId": "L681", + "platformId": "U9939Z1", + "id": "9cc8818d-7971-41a0-8778-b13fdf6f9390" + }, + { + "routeId": "L487", + "platformId": "U9939Z1", + "id": "f68182c6-ec58-46f2-b055-5c462a8c4608" + }, + { + "routeId": "L681", + "platformId": "U9939Z2", + "id": "e2a5aca4-6385-4d80-82f5-b8da84ce1913" + }, + { + "routeId": "L487", + "platformId": "U9939Z2", + "id": "ca5a2e1e-a607-4477-b367-1e73ab78a9b7" + }, + { + "routeId": "L201", + "platformId": "U993Z1", + "id": "471bcc2e-a67b-414a-a7f3-2afd8c74df22" + }, + { + "routeId": "L911", + "platformId": "U993Z1", + "id": "e2d57564-6383-4243-9822-5ff734ea48f5" + }, + { + "routeId": "L166", + "platformId": "U993Z1", + "id": "03b19363-f3f7-4622-9a55-40530c6bb57c" + }, + { + "routeId": "L201", + "platformId": "U993Z2", + "id": "3854efc9-3474-4916-8745-9105fac388ee" + }, + { + "routeId": "L911", + "platformId": "U993Z2", + "id": "511b924c-6d70-41ef-a517-7c4fc21fca29" + }, + { + "routeId": "L166", + "platformId": "U993Z2", + "id": "1b5bd509-e2c3-4846-a92f-6abdb75a585a" + }, + { + "routeId": "L681", + "platformId": "U9940Z1", + "id": "fc0a0075-dc03-444c-a576-ba72db15c1b9" + }, + { + "routeId": "L487", + "platformId": "U9940Z1", + "id": "3a34440a-ecaf-4761-a718-003db5fccb58" + }, + { + "routeId": "L681", + "platformId": "U9940Z2", + "id": "a57d9655-9200-4f19-8044-5f35376a592d" + }, + { + "routeId": "L487", + "platformId": "U9940Z2", + "id": "7a6177c2-5c8f-4270-9503-c42f965c96d4" + }, + { + "routeId": "L681", + "platformId": "U9941Z51", + "id": "4af6214a-e591-402e-bbb7-0d1a41c70025" + }, + { + "routeId": "L681", + "platformId": "U9941Z52", + "id": "8d510f8a-f6c8-4799-9e6f-61fcaaf45c64" + }, + { + "routeId": "L681", + "platformId": "U9943Z1", + "id": "04982c22-9d00-47f7-ab8c-58bbf0fdcd27" + }, + { + "routeId": "L681", + "platformId": "U9943Z2", + "id": "edcde1c3-9409-44f5-80c2-1712e4a63764" + }, + { + "routeId": "L487", + "platformId": "U9944Z1", + "id": "71fc53e8-3dd3-4737-b297-6329d3fde270" + }, + { + "routeId": "L487", + "platformId": "U9944Z2", + "id": "f693055a-3367-4988-8a29-65c9603167af" + }, + { + "routeId": "L770", + "platformId": "U9945Z1", + "id": "f43113df-2e88-4f24-a0d0-b62775ff00f7" + }, + { + "routeId": "L770", + "platformId": "U9945Z2", + "id": "0495899e-dc4e-4e41-959f-d9b7aa3131b0" + }, + { + "routeId": "L487", + "platformId": "U9946Z1", + "id": "2358a492-88bf-488d-a7b7-2a72950f0852" + }, + { + "routeId": "L487", + "platformId": "U9946Z2", + "id": "d1878348-8588-4338-8a44-ad4439efbf30" + }, + { + "routeId": "L487", + "platformId": "U9947Z1", + "id": "7e4058de-d2df-43f6-9255-99cbca883756" + }, + { + "routeId": "L487", + "platformId": "U9947Z2", + "id": "b4ab79f8-53c9-4036-867b-daf358c52201" + }, + { + "routeId": "L487", + "platformId": "U9948Z1", + "id": "d467ed8d-54c7-43d7-b9f4-1bc7cd137e30" + }, + { + "routeId": "L487", + "platformId": "U9948Z2", + "id": "1c18d2b7-407a-4dcc-b69b-b8442712b6fc" + }, + { + "routeId": "L487", + "platformId": "U9949Z1", + "id": "27214814-e3dd-47ea-936e-cd034f0e51de" + }, + { + "routeId": "L487", + "platformId": "U9949Z2", + "id": "2605ef8f-57bb-4010-8868-7032040b07d6" + }, + { + "routeId": "L22", + "platformId": "U994Z1", + "id": "1ef4d431-4d32-44a8-82c6-7b7828a0c026" + }, + { + "routeId": "L25", + "platformId": "U994Z1", + "id": "54f6f549-a863-4e22-9fd4-45a2fe131e21" + }, + { + "routeId": "L97", + "platformId": "U994Z1", + "id": "11443be1-9f5c-4c42-ab99-c5715e92fc31" + }, + { + "routeId": "L22", + "platformId": "U994Z2", + "id": "51a7c78c-2166-488e-aa67-cbac3e7edaea" + }, + { + "routeId": "L25", + "platformId": "U994Z2", + "id": "d0a2b511-cce6-4a01-ba2d-274937749642" + }, + { + "routeId": "L97", + "platformId": "U994Z2", + "id": "0ba8b175-992c-439b-bf7e-c2966a3f9501" + }, + { + "routeId": "L117", + "platformId": "U995Z1", + "id": "1d62141a-1925-4447-be92-58ec591ee68a" + }, + { + "routeId": "L770", + "platformId": "U9968Z1", + "id": "e3c43bb4-cb72-406d-a53b-19b9d0c38f01" + }, + { + "routeId": "L770", + "platformId": "U9968Z2", + "id": "38ec2559-2829-4939-a54b-78613e5c03f8" + }, + { + "routeId": "L221", + "platformId": "U996Z1", + "id": "d3bd27fc-2094-460e-8979-e6e19e3dd619" + }, + { + "routeId": "L221", + "platformId": "U996Z2", + "id": "ba7e9445-1954-47a2-910e-51077c8842f9" + }, + { + "routeId": "L706", + "platformId": "U9978Z1", + "id": "01aae3b2-4194-4501-a124-ad0bf477cb2d" + }, + { + "routeId": "L706", + "platformId": "U9978Z2", + "id": "7014dc5e-88f5-4b92-a84b-79936537888c" + }, + { + "routeId": "L706", + "platformId": "U9979Z1", + "id": "4d4e8799-2b82-431c-8769-ecd56a1e5ee4" + }, + { + "routeId": "L706", + "platformId": "U9979Z2", + "id": "49692d88-2ed4-44f7-b4d1-72717a1f98e4" + }, + { + "routeId": "L3", + "platformId": "U997Z1", + "id": "a50dead8-152c-4b3b-8eb7-cfc62e0fa2e4" + }, + { + "routeId": "L5", + "platformId": "U997Z1", + "id": "01a1f053-9d08-4288-b250-9e5e29e2b1ce" + }, + { + "routeId": "L6", + "platformId": "U997Z1", + "id": "f6d4a004-afca-4f7f-9816-83ed22c92017" + }, + { + "routeId": "L9", + "platformId": "U997Z1", + "id": "6390d785-7ce5-4715-8115-2dafcab59b61" + }, + { + "routeId": "L14", + "platformId": "U997Z1", + "id": "2a16de85-ca67-4973-b9a7-6e9d9765019a" + }, + { + "routeId": "L91", + "platformId": "U997Z1", + "id": "1db29f45-b1a9-40e9-ba24-37e796859d6c" + }, + { + "routeId": "L92", + "platformId": "U997Z1", + "id": "e73603cb-7426-4c37-b2b7-5a829fcdf0f7" + }, + { + "routeId": "L94", + "platformId": "U997Z1", + "id": "4af83d41-2e0c-494b-88d2-023ecf855150" + }, + { + "routeId": "L95", + "platformId": "U997Z1", + "id": "d735c83c-e7a1-44b3-8481-dac590ec2344" + }, + { + "routeId": "L96", + "platformId": "U997Z1", + "id": "535cb561-7548-4780-a674-ccaeb4dc5a3e" + }, + { + "routeId": "L98", + "platformId": "U997Z1", + "id": "44e1c322-0489-4e99-af41-ff8d61f453f6" + }, + { + "routeId": "L3", + "platformId": "U997Z2", + "id": "bb5b91eb-cc92-426e-ba65-479c7b4c2273" + }, + { + "routeId": "L5", + "platformId": "U997Z2", + "id": "0a0d128d-15ca-4c8d-9c2f-05872c31e9f3" + }, + { + "routeId": "L6", + "platformId": "U997Z2", + "id": "4747dc64-e91a-4cc4-9925-74e75004a13f" + }, + { + "routeId": "L9", + "platformId": "U997Z2", + "id": "30091a3d-5f4e-43b0-890e-d449f2375c5c" + }, + { + "routeId": "L14", + "platformId": "U997Z2", + "id": "df4bcae4-8182-48df-8ac3-2476e0548552" + }, + { + "routeId": "L91", + "platformId": "U997Z2", + "id": "734abee3-b5d7-47ee-b292-044d1b8e3999" + }, + { + "routeId": "L92", + "platformId": "U997Z2", + "id": "3a803273-9c88-40c1-b1e3-e6738e1b824e" + }, + { + "routeId": "L94", + "platformId": "U997Z2", + "id": "7f3eee51-a024-4798-9c81-3ae2a33b6c58" + }, + { + "routeId": "L95", + "platformId": "U997Z2", + "id": "359f0d14-8ae1-4c36-afec-4c2b08621b64" + }, + { + "routeId": "L96", + "platformId": "U997Z2", + "id": "52457c01-28be-4ade-b588-68640764fa62" + }, + { + "routeId": "L98", + "platformId": "U997Z2", + "id": "9bf4d39d-225d-43d2-b8f6-1defdafab96f" + }, + { + "routeId": "L93", + "platformId": "U997Z3", + "id": "a5a43de8-2321-4e81-94db-af780f824d63" + }, + { + "routeId": "L97", + "platformId": "U997Z3", + "id": "53ace388-fa67-464c-8d12-28d204a69edf" + }, + { + "routeId": "L98", + "platformId": "U997Z3", + "id": "28bd6394-0936-4fc9-80fd-5a7134c297df" + }, + { + "routeId": "L99", + "platformId": "U997Z3", + "id": "a09ece5f-1966-40e9-8c08-3b3aa69018c7" + }, + { + "routeId": "L93", + "platformId": "U997Z4", + "id": "9be12c59-0b22-4518-9b85-f1f401d76603" + }, + { + "routeId": "L97", + "platformId": "U997Z4", + "id": "2a18982c-5d4c-4a84-b716-c3d8f626bb50" + }, + { + "routeId": "L98", + "platformId": "U997Z4", + "id": "f0325c52-00c8-4e6d-b51c-43b8406a11fe" + }, + { + "routeId": "L99", + "platformId": "U997Z4", + "id": "811c0a6e-b796-4883-859a-0d17c6123273" + }, + { + "routeId": "L487", + "platformId": "U9980Z1", + "id": "30a0e14e-90a5-49a8-b54e-ac237962bf3d" + }, + { + "routeId": "L706", + "platformId": "U9980Z1", + "id": "d8164b11-dabb-42fd-87d0-d2cee8ff4187" + }, + { + "routeId": "L487", + "platformId": "U9980Z2", + "id": "3f012fe3-aeb8-427a-985a-3883c68ef53b" + }, + { + "routeId": "L706", + "platformId": "U9980Z2", + "id": "e493fa42-fe65-4526-9728-8358992da4d8" + }, + { + "routeId": "L487", + "platformId": "U9981Z1", + "id": "ce57840b-b684-4a73-bcd1-a2b8252880bd" + }, + { + "routeId": "L706", + "platformId": "U9982Z1", + "id": "a5aaa511-d9e6-417f-a833-4364046cd1a8" + }, + { + "routeId": "L706", + "platformId": "U9982Z2", + "id": "ce222a7b-0146-4a95-ba8f-b72af6598712" + }, + { + "routeId": "L705", + "platformId": "U9983Z1", + "id": "bbb4db42-3e74-489a-a3c8-8f1300c1fc03" + }, + { + "routeId": "L681", + "platformId": "U9983Z1", + "id": "a2fab778-a798-4772-a670-588dede6a5a2" + }, + { + "routeId": "L487", + "platformId": "U9983Z1", + "id": "c4989ca9-749b-44b4-bf35-df531c027141" + }, + { + "routeId": "L706", + "platformId": "U9983Z1", + "id": "8db8f5f6-3360-4931-a58b-235e9bbeaf26" + }, + { + "routeId": "L705", + "platformId": "U9983Z2", + "id": "5b9bac31-06a0-4fe8-a1f7-bb3bba19b810" + }, + { + "routeId": "L681", + "platformId": "U9983Z2", + "id": "5881db85-1490-4c5c-bebc-d7dee1082107" + }, + { + "routeId": "L487", + "platformId": "U9983Z2", + "id": "04054a6d-1982-4370-af5a-fa2f7f02f8ac" + }, + { + "routeId": "L706", + "platformId": "U9983Z2", + "id": "392a07f0-ee49-40d1-acca-c1ad624d22ac" + }, + { + "routeId": "L681", + "platformId": "U9984Z1", + "id": "95fff50b-7818-48a6-9813-fb17852ee3e2" + }, + { + "routeId": "L681", + "platformId": "U9984Z2", + "id": "ed3d68a6-2e7d-4af5-928a-a1ad85fbfa88" + }, + { + "routeId": "L681", + "platformId": "U9985Z1", + "id": "3d4e588c-b14e-4229-b4c5-16b3c55c2b4f" + }, + { + "routeId": "L681", + "platformId": "U9985Z2", + "id": "5ba12d1c-1eb2-4a0f-901a-0bd8396e9d5c" + }, + { + "routeId": "L681", + "platformId": "U9986Z1", + "id": "9074f903-b6cb-4e6d-9f66-3eb14daa7132" + }, + { + "routeId": "L681", + "platformId": "U9986Z2", + "id": "ddcad46b-0a2a-4654-ae13-07067cf210a6" + }, + { + "routeId": "L681", + "platformId": "U9987Z1", + "id": "2be8b4f6-8b15-4463-8e2b-fee313360a2c" + }, + { + "routeId": "L681", + "platformId": "U9987Z2", + "id": "8e809678-2e96-4a7c-9bbf-3915bd239459" + }, + { + "routeId": "L354", + "platformId": "U9988Z1", + "id": "fe4bd29c-10d1-4ddc-8dd0-e538e3784527" + }, + { + "routeId": "L354", + "platformId": "U9988Z2", + "id": "0a9c8c1b-fe94-436e-b84c-73b9dc18a983" + }, + { + "routeId": "L245", + "platformId": "U998Z1", + "id": "005a4fca-d757-442a-9c4f-73f372fa49eb" + }, + { + "routeId": "L487", + "platformId": "U9997Z1", + "id": "1a50cd3c-dc7d-4717-b87f-25e00013c4b2" + }, + { + "routeId": "L487", + "platformId": "U9997Z2", + "id": "83f6259c-9830-4c68-9678-083504ceeb21" + }, + { + "routeId": "L487", + "platformId": "U9998Z1", + "id": "13fd979a-3716-4ff6-9c44-a1904623d8d0" + }, + { + "routeId": "L487", + "platformId": "U9998Z2", + "id": "841a810c-972c-4006-bb22-2725be508ad6" + }, + { + "routeId": "L149", + "platformId": "U999Z1", + "id": "7925a632-c353-44e0-9d80-a64620da1fe6" + }, + { + "routeId": "L149", + "platformId": "U999Z2", + "id": "c2658bff-cd9d-4986-a977-3fa790f6bf57" + }, + { + "routeId": "L126", + "platformId": "U99Z1", + "id": "3cc90ac4-39f2-4bd7-bcb5-93cad845bd60" + }, + { + "routeId": "L170", + "platformId": "U99Z1", + "id": "8bc8ab1c-5cf5-4b96-af0f-2818641e2155" + }, + { + "routeId": "L177", + "platformId": "U99Z1", + "id": "209ddd9b-4772-4cd9-af66-02d8ed738adf" + }, + { + "routeId": "L181", + "platformId": "U99Z1", + "id": "12661057-2983-492c-8741-d44d644ad743" + }, + { + "routeId": "L901", + "platformId": "U99Z1", + "id": "b11f314a-018a-4947-8a9a-a353344989fc" + }, + { + "routeId": "L906", + "platformId": "U99Z1", + "id": "0b24ff91-1475-47ea-9564-3d498fd223ff" + }, + { + "routeId": "L126", + "platformId": "U99Z2", + "id": "74dff672-d28e-4596-8fc7-393031014db7" + }, + { + "routeId": "L170", + "platformId": "U99Z2", + "id": "c90a0dc1-d84a-4c90-b162-f3f45c99fbb1" + }, + { + "routeId": "L177", + "platformId": "U99Z2", + "id": "def8d604-98fb-4af7-9f34-c96165aa5b01" + }, + { + "routeId": "L181", + "platformId": "U99Z2", + "id": "6dd870c0-2c88-4416-a075-709dc2a34225" + }, + { + "routeId": "L901", + "platformId": "U99Z2", + "id": "52284a4d-3db0-4453-a032-f5fa3ac75daf" + }, + { + "routeId": "L906", + "platformId": "U99Z2", + "id": "4ec3ce5e-3c89-4d27-801e-89acc8ed626d" + }, + { + "routeId": "L341", + "platformId": "U9Z1", + "id": "9ffe9ea6-6e80-4b4a-b062-e96e81c48f9c" + }, + { + "routeId": "L341", + "platformId": "U9Z2", + "id": "c79140a9-623c-4b0b-960d-9d70d5475490" + } +] diff --git a/apps/backend/prisma/seeds/platforms.json b/apps/backend/prisma/seeds/platforms.json new file mode 100644 index 00000000..be0af9c8 --- /dev/null +++ b/apps/backend/prisma/seeds/platforms.json @@ -0,0 +1,92930 @@ +[ + { + "id": "U1000Z1", + "name": "Letňany", + "isMetro": false, + "latitude": 14.516783, + "longitude": 50.125965, + "stopId": "U1000" + }, + { + "id": "U1000Z10", + "name": "Letňany", + "isMetro": false, + "latitude": 14.51575, + "longitude": 50.125565, + "stopId": "U1000" + }, + { + "id": "U1000Z101", + "name": "Letňany", + "isMetro": true, + "latitude": 14.51627, + "longitude": 50.12415, + "stopId": "U1000" + }, + { + "id": "U1000Z102", + "name": "Letňany", + "isMetro": true, + "latitude": 14.51607, + "longitude": 50.12416, + "stopId": "U1000" + }, + { + "id": "U1000Z11", + "name": "Letňany", + "isMetro": false, + "latitude": 14.515283, + "longitude": 50.125851, + "stopId": "U1000" + }, + { + "id": "U1000Z12", + "name": "Letňany", + "isMetro": false, + "latitude": 14.516767, + "longitude": 50.125648, + "stopId": "U1000" + }, + { + "id": "U1000Z15", + "name": "Letňany", + "isMetro": false, + "latitude": 14.515668, + "longitude": 50.125729, + "stopId": "U1000" + }, + { + "id": "U1000Z2", + "name": "Letňany", + "isMetro": false, + "latitude": 14.516399, + "longitude": 50.124516, + "stopId": "U1000" + }, + { + "id": "U1000Z3", + "name": "Letňany", + "isMetro": false, + "latitude": 14.516517, + "longitude": 50.125614, + "stopId": "U1000" + }, + { + "id": "U1000Z4", + "name": "Letňany", + "isMetro": false, + "latitude": 14.516498, + "longitude": 50.125271, + "stopId": "U1000" + }, + { + "id": "U1000Z5", + "name": "Letňany", + "isMetro": false, + "latitude": 14.515183, + "longitude": 50.125149, + "stopId": "U1000" + }, + { + "id": "U1000Z6", + "name": "Letňany", + "isMetro": false, + "latitude": 14.516133, + "longitude": 50.125584, + "stopId": "U1000" + }, + { + "id": "U1001Z1", + "name": "Na Křečku", + "isMetro": false, + "latitude": 14.567, + "longitude": 50.043968, + "stopId": "U1001" + }, + { + "id": "U1001Z2", + "name": "Na Křečku", + "isMetro": false, + "latitude": 14.567218, + "longitude": 50.044399, + "stopId": "U1001" + }, + { + "id": "U1002Z1", + "name": "Pod Lahovskou", + "isMetro": false, + "latitude": 14.36562, + "longitude": 49.991455, + "stopId": "U1002" + }, + { + "id": "U1004Z1", + "name": "Nad Dvorem", + "isMetro": false, + "latitude": 14.633468, + "longitude": 50.009632, + "stopId": "U1004" + }, + { + "id": "U1004Z2", + "name": "Nad Dvorem", + "isMetro": false, + "latitude": 14.632701, + "longitude": 50.009819, + "stopId": "U1004" + }, + { + "id": "U1006Z1", + "name": "Čechova čtvrť", + "isMetro": false, + "latitude": 14.409697, + "longitude": 50.002239, + "stopId": "U1006" + }, + { + "id": "U1006Z2", + "name": "Čechova čtvrť", + "isMetro": false, + "latitude": 14.410583, + "longitude": 50.002201, + "stopId": "U1006" + }, + { + "id": "U1006Z51", + "name": "Čechova čtvrť", + "isMetro": false, + "latitude": 14.409771, + "longitude": 50.002323, + "stopId": "U1006" + }, + { + "id": "U1006Z52", + "name": "Čechova čtvrť", + "isMetro": false, + "latitude": 14.410659, + "longitude": 50.002079, + "stopId": "U1006" + }, + { + "id": "U1007Z1", + "name": "Luka", + "isMetro": false, + "latitude": 14.321067, + "longitude": 50.045502, + "stopId": "U1007" + }, + { + "id": "U1007Z101", + "name": "Luka", + "isMetro": true, + "latitude": 14.321439, + "longitude": 50.045726, + "stopId": "U1007" + }, + { + "id": "U1007Z102", + "name": "Luka", + "isMetro": true, + "latitude": 14.321307, + "longitude": 50.04562, + "stopId": "U1007" + }, + { + "id": "U1007Z2", + "name": "Luka", + "isMetro": false, + "latitude": 14.321433, + "longitude": 50.045235, + "stopId": "U1007" + }, + { + "id": "U1007Z71", + "name": "Luka", + "isMetro": false, + "latitude": 14.321067, + "longitude": 50.045502, + "stopId": "U1007" + }, + { + "id": "U1007Z72", + "name": "Luka", + "isMetro": false, + "latitude": 14.321433, + "longitude": 50.045235, + "stopId": "U1007" + }, + { + "id": "U1007Z73", + "name": "Luka", + "isMetro": false, + "latitude": 14.321433, + "longitude": 50.045235, + "stopId": "U1007" + }, + { + "id": "U1008Z1", + "name": "Klášterecká", + "isMetro": false, + "latitude": 14.455812, + "longitude": 50.145962, + "stopId": "U1008" + }, + { + "id": "U1008Z2", + "name": "Klášterecká", + "isMetro": false, + "latitude": 14.455901, + "longitude": 50.146065, + "stopId": "U1008" + }, + { + "id": "U1009Z1", + "name": "Jirčanská", + "isMetro": false, + "latitude": 14.459352, + "longitude": 50.005962, + "stopId": "U1009" + }, + { + "id": "U1009Z2", + "name": "Jirčanská", + "isMetro": false, + "latitude": 14.458709, + "longitude": 50.005997, + "stopId": "U1009" + }, + { + "id": "U100Z1", + "name": "Vltavská", + "isMetro": false, + "latitude": 14.438122, + "longitude": 50.099228, + "stopId": "U100" + }, + { + "id": "U100Z101", + "name": "Vltavská", + "isMetro": true, + "latitude": 14.438596, + "longitude": 50.100229, + "stopId": "U100" + }, + { + "id": "U100Z102", + "name": "Vltavská", + "isMetro": true, + "latitude": 14.438395, + "longitude": 50.100227, + "stopId": "U100" + }, + { + "id": "U100Z11", + "name": "Bubenská", + "isMetro": false, + "latitude": 14.436589, + "longitude": 50.098103, + "stopId": "U100" + }, + { + "id": "U100Z2", + "name": "Vltavská", + "isMetro": false, + "latitude": 14.438766, + "longitude": 50.098812, + "stopId": "U100" + }, + { + "id": "U100Z3", + "name": "Vltavská", + "isMetro": false, + "latitude": 14.437243, + "longitude": 50.098469, + "stopId": "U100" + }, + { + "id": "U100Z301", + "name": "Praha-Bubny", + "isMetro": false, + "latitude": 14.438852, + "longitude": 50.102303, + "stopId": "U100" + }, + { + "id": "U100Z4", + "name": "Vltavská", + "isMetro": false, + "latitude": 14.437513, + "longitude": 50.099022, + "stopId": "U100" + }, + { + "id": "U100Z5", + "name": "Vltavská", + "isMetro": false, + "latitude": 14.43881, + "longitude": 50.09811, + "stopId": "U100" + }, + { + "id": "U100Z6", + "name": "Vltavská", + "isMetro": false, + "latitude": 14.438747, + "longitude": 50.098335, + "stopId": "U100" + }, + { + "id": "U1010Z1", + "name": "Hornocholupická", + "isMetro": false, + "latitude": 14.425167, + "longitude": 49.997467, + "stopId": "U1010" + }, + { + "id": "U1010Z2", + "name": "Hornocholupická", + "isMetro": false, + "latitude": 14.424701, + "longitude": 49.997482, + "stopId": "U1010" + }, + { + "id": "U1011Z1", + "name": "Mirovická", + "isMetro": false, + "latitude": 14.452784, + "longitude": 50.131435, + "stopId": "U1011" + }, + { + "id": "U1011Z2", + "name": "Mirovická", + "isMetro": false, + "latitude": 14.452084, + "longitude": 50.130333, + "stopId": "U1011" + }, + { + "id": "U1012Z1", + "name": "Morseova", + "isMetro": false, + "latitude": 14.558836, + "longitude": 50.035149, + "stopId": "U1012" + }, + { + "id": "U1012Z2", + "name": "Morseova", + "isMetro": false, + "latitude": 14.558968, + "longitude": 50.035069, + "stopId": "U1012" + }, + { + "id": "U1013Z1", + "name": "Janovská", + "isMetro": false, + "latitude": 14.566801, + "longitude": 50.040516, + "stopId": "U1013" + }, + { + "id": "U1013Z2", + "name": "Janovská", + "isMetro": false, + "latitude": 14.567097, + "longitude": 50.041454, + "stopId": "U1013" + }, + { + "id": "U1014Z1", + "name": "Obchodní centrum Štěrboholy", + "isMetro": false, + "latitude": 14.543001, + "longitude": 50.072243, + "stopId": "U1014" + }, + { + "id": "U1014Z2", + "name": "Obchodní centrum Štěrboholy", + "isMetro": false, + "latitude": 14.542482, + "longitude": 50.072098, + "stopId": "U1014" + }, + { + "id": "U1015Z1", + "name": "Okořská", + "isMetro": false, + "latitude": 14.431482, + "longitude": 50.135906, + "stopId": "U1015" + }, + { + "id": "U1016Z1", + "name": "Sídliště Rohožník", + "isMetro": false, + "latitude": 14.681551, + "longitude": 50.072617, + "stopId": "U1016" + }, + { + "id": "U1016Z2", + "name": "Sídliště Rohožník", + "isMetro": false, + "latitude": 14.682067, + "longitude": 50.072643, + "stopId": "U1016" + }, + { + "id": "U1017Z1", + "name": "Živcová", + "isMetro": false, + "latitude": 14.368361, + "longitude": 49.990799, + "stopId": "U1017" + }, + { + "id": "U1018Z1", + "name": "Rektorská", + "isMetro": false, + "latitude": 14.506801, + "longitude": 50.087551, + "stopId": "U1018" + }, + { + "id": "U1018Z2", + "name": "Rektorská", + "isMetro": false, + "latitude": 14.506834, + "longitude": 50.087418, + "stopId": "U1018" + }, + { + "id": "U1019Z1", + "name": "Sídliště Barrandov", + "isMetro": false, + "latitude": 14.368482, + "longitude": 50.031502, + "stopId": "U1019" + }, + { + "id": "U1019Z2", + "name": "Sídliště Barrandov", + "isMetro": false, + "latitude": 14.367771, + "longitude": 50.031509, + "stopId": "U1019" + }, + { + "id": "U1020Z1", + "name": "Poliklinika Háje", + "isMetro": false, + "latitude": 14.527301, + "longitude": 50.033768, + "stopId": "U1020" + }, + { + "id": "U1020Z2", + "name": "Poliklinika Háje", + "isMetro": false, + "latitude": 14.527651, + "longitude": 50.033936, + "stopId": "U1020" + }, + { + "id": "U1021Z1", + "name": "Kazínská", + "isMetro": false, + "latitude": 14.386353, + "longitude": 50.011665, + "stopId": "U1021" + }, + { + "id": "U1022Z1", + "name": "Českobrodská", + "isMetro": false, + "latitude": 14.532964, + "longitude": 50.091812, + "stopId": "U1022" + }, + { + "id": "U1023Z1", + "name": "Zátišská", + "isMetro": false, + "latitude": 14.411151, + "longitude": 50.016685, + "stopId": "U1023" + }, + { + "id": "U1023Z2", + "name": "Zátišská", + "isMetro": false, + "latitude": 14.410701, + "longitude": 50.01675, + "stopId": "U1023" + }, + { + "id": "U1024Z1", + "name": "Za Nadjezdem", + "isMetro": false, + "latitude": 14.548596, + "longitude": 50.056778, + "stopId": "U1024" + }, + { + "id": "U1024Z2", + "name": "Za Nadjezdem", + "isMetro": false, + "latitude": 14.5486, + "longitude": 50.056973, + "stopId": "U1024" + }, + { + "id": "U1026Z1", + "name": "U Kestřánků", + "isMetro": false, + "latitude": 14.356814, + "longitude": 49.986935, + "stopId": "U1026" + }, + { + "id": "U1027Z1", + "name": "Zadní Jiviny", + "isMetro": false, + "latitude": 14.298637, + "longitude": 50.077042, + "stopId": "U1027" + }, + { + "id": "U1029Z1", + "name": "Amforová", + "isMetro": false, + "latitude": 14.327284, + "longitude": 50.041851, + "stopId": "U1029" + }, + { + "id": "U1029Z2", + "name": "Amforová", + "isMetro": false, + "latitude": 14.327312, + "longitude": 50.041706, + "stopId": "U1029" + }, + { + "id": "U102Z1", + "name": "Dostihová", + "isMetro": false, + "latitude": 14.393909, + "longitude": 50.012527, + "stopId": "U102" + }, + { + "id": "U102Z11", + "name": "Dostihová", + "isMetro": false, + "latitude": 14.396682, + "longitude": 50.012375, + "stopId": "U102" + }, + { + "id": "U102Z2", + "name": "Dostihová", + "isMetro": false, + "latitude": 14.394329, + "longitude": 50.012951, + "stopId": "U102" + }, + { + "id": "U1030Z1", + "name": "Poliklinika Barrandov", + "isMetro": false, + "latitude": 14.374547, + "longitude": 50.03405, + "stopId": "U1030" + }, + { + "id": "U1030Z2", + "name": "Poliklinika Barrandov", + "isMetro": false, + "latitude": 14.373788, + "longitude": 50.03368, + "stopId": "U1030" + }, + { + "id": "U1030Z3", + "name": "Poliklinika Barrandov", + "isMetro": false, + "latitude": 14.373361, + "longitude": 50.033211, + "stopId": "U1030" + }, + { + "id": "U1030Z4", + "name": "Poliklinika Barrandov", + "isMetro": false, + "latitude": 14.374548, + "longitude": 50.03373, + "stopId": "U1030" + }, + { + "id": "U1031Z1", + "name": "Lukavecká", + "isMetro": false, + "latitude": 14.61732, + "longitude": 50.116032, + "stopId": "U1031" + }, + { + "id": "U1031Z2", + "name": "Lukavecká", + "isMetro": false, + "latitude": 14.617801, + "longitude": 50.116302, + "stopId": "U1031" + }, + { + "id": "U1032Z1", + "name": "Dědinova", + "isMetro": false, + "latitude": 14.483684, + "longitude": 50.033749, + "stopId": "U1032" + }, + { + "id": "U1032Z2", + "name": "Dědinova", + "isMetro": false, + "latitude": 14.483367, + "longitude": 50.034069, + "stopId": "U1032" + }, + { + "id": "U1033Z1", + "name": "V Nových domcích", + "isMetro": false, + "latitude": 14.534134, + "longitude": 50.056435, + "stopId": "U1033" + }, + { + "id": "U1033Z2", + "name": "V Nových domcích", + "isMetro": false, + "latitude": 14.5337, + "longitude": 50.05658, + "stopId": "U1033" + }, + { + "id": "U1034Z1", + "name": "Za Tratí", + "isMetro": false, + "latitude": 14.519011, + "longitude": 50.167164, + "stopId": "U1034" + }, + { + "id": "U1034Z2", + "name": "Za Tratí", + "isMetro": false, + "latitude": 14.5192, + "longitude": 50.167049, + "stopId": "U1034" + }, + { + "id": "U1035Z1", + "name": "Platónova", + "isMetro": false, + "latitude": 14.416634, + "longitude": 49.998634, + "stopId": "U1035" + }, + { + "id": "U1035Z2", + "name": "Platónova", + "isMetro": false, + "latitude": 14.416884, + "longitude": 49.998951, + "stopId": "U1035" + }, + { + "id": "U1036Z1", + "name": "Petržílova", + "isMetro": false, + "latitude": 14.423734, + "longitude": 49.999119, + "stopId": "U1036" + }, + { + "id": "U1036Z2", + "name": "Petržílova", + "isMetro": false, + "latitude": 14.4227, + "longitude": 49.998966, + "stopId": "U1036" + }, + { + "id": "U1037Z1", + "name": "Pavelkova", + "isMetro": false, + "latitude": 14.427934, + "longitude": 50, + "stopId": "U1037" + }, + { + "id": "U1037Z2", + "name": "Pavelkova", + "isMetro": false, + "latitude": 14.426767, + "longitude": 50, + "stopId": "U1037" + }, + { + "id": "U1038Z1", + "name": "Pod Vsí", + "isMetro": false, + "latitude": 14.514318, + "longitude": 50.011269, + "stopId": "U1038" + }, + { + "id": "U1038Z2", + "name": "Pod Vsí", + "isMetro": false, + "latitude": 14.5144, + "longitude": 50.011333, + "stopId": "U1038" + }, + { + "id": "U1039Z1", + "name": "Zbraslav", + "isMetro": false, + "latitude": 14.382688, + "longitude": 49.959148, + "stopId": "U1039" + }, + { + "id": "U1039Z2", + "name": "Zbraslav", + "isMetro": false, + "latitude": 14.382904, + "longitude": 49.958942, + "stopId": "U1039" + }, + { + "id": "U103Z1", + "name": "Drinopol", + "isMetro": false, + "latitude": 14.370667, + "longitude": 50.083908, + "stopId": "U103" + }, + { + "id": "U103Z2", + "name": "Drinopol", + "isMetro": false, + "latitude": 14.371602, + "longitude": 50.083969, + "stopId": "U103" + }, + { + "id": "U1040Z1", + "name": "Anděl", + "isMetro": false, + "latitude": 14.403631, + "longitude": 50.07193, + "stopId": "U1040" + }, + { + "id": "U1040Z101", + "name": "Anděl", + "isMetro": true, + "latitude": 14.40367, + "longitude": 50.070026, + "stopId": "U1040" + }, + { + "id": "U1040Z102", + "name": "Anděl", + "isMetro": true, + "latitude": 14.403957, + "longitude": 50.070001, + "stopId": "U1040" + }, + { + "id": "U1040Z11", + "name": "Anděl", + "isMetro": false, + "latitude": 14.401952, + "longitude": 50.071735, + "stopId": "U1040" + }, + { + "id": "U1040Z12", + "name": "Anděl", + "isMetro": false, + "latitude": 14.402929, + "longitude": 50.071499, + "stopId": "U1040" + }, + { + "id": "U1040Z14", + "name": "Anděl", + "isMetro": false, + "latitude": 14.40265, + "longitude": 50.071518, + "stopId": "U1040" + }, + { + "id": "U1040Z16", + "name": "Na Knížecí", + "isMetro": false, + "latitude": 14.405263, + "longitude": 50.069199, + "stopId": "U1040" + }, + { + "id": "U1040Z18", + "name": "Na Knížecí", + "isMetro": false, + "latitude": 14.404408, + "longitude": 50.068867, + "stopId": "U1040" + }, + { + "id": "U1040Z19", + "name": "Na Knížecí", + "isMetro": false, + "latitude": 14.404152, + "longitude": 50.068737, + "stopId": "U1040" + }, + { + "id": "U1040Z2", + "name": "Anděl", + "isMetro": false, + "latitude": 14.402808, + "longitude": 50.071953, + "stopId": "U1040" + }, + { + "id": "U1040Z21", + "name": "Na Knížecí", + "isMetro": false, + "latitude": 14.404253, + "longitude": 50.068611, + "stopId": "U1040" + }, + { + "id": "U1040Z3", + "name": "Anděl", + "isMetro": false, + "latitude": 14.404228, + "longitude": 50.071804, + "stopId": "U1040" + }, + { + "id": "U1040Z4", + "name": "Anděl", + "isMetro": false, + "latitude": 14.404552, + "longitude": 50.070976, + "stopId": "U1040" + }, + { + "id": "U1040Z5", + "name": "Na Knížecí", + "isMetro": false, + "latitude": 14.406499, + "longitude": 50.06852, + "stopId": "U1040" + }, + { + "id": "U1040Z6", + "name": "Na Knížecí", + "isMetro": false, + "latitude": 14.406961, + "longitude": 50.067467, + "stopId": "U1040" + }, + { + "id": "U1041Z1", + "name": "Ve Žlíbku", + "isMetro": false, + "latitude": 14.624385, + "longitude": 50.111195, + "stopId": "U1041" + }, + { + "id": "U1041Z13", + "name": "Ve Žlíbku", + "isMetro": false, + "latitude": 14.624434, + "longitude": 50.110401, + "stopId": "U1041" + }, + { + "id": "U1041Z14", + "name": "Ve Žlíbku", + "isMetro": false, + "latitude": 14.624551, + "longitude": 50.110386, + "stopId": "U1041" + }, + { + "id": "U1041Z2", + "name": "Ve Žlíbku", + "isMetro": false, + "latitude": 14.624651, + "longitude": 50.111118, + "stopId": "U1041" + }, + { + "id": "U1042Z1", + "name": "Vrážská", + "isMetro": false, + "latitude": 14.369551, + "longitude": 49.98975, + "stopId": "U1042" + }, + { + "id": "U1042Z2", + "name": "Vrážská", + "isMetro": false, + "latitude": 14.370464, + "longitude": 49.990177, + "stopId": "U1042" + }, + { + "id": "U1043Z1", + "name": "Přístav Radotín", + "isMetro": false, + "latitude": 14.393131, + "longitude": 49.994385, + "stopId": "U1043" + }, + { + "id": "U1043Z2", + "name": "Přístav Radotín", + "isMetro": false, + "latitude": 14.393847, + "longitude": 49.99445, + "stopId": "U1043" + }, + { + "id": "U1044Z1", + "name": "Braunova", + "isMetro": false, + "latitude": 14.402539, + "longitude": 50.061882, + "stopId": "U1044" + }, + { + "id": "U1044Z2", + "name": "Braunova", + "isMetro": false, + "latitude": 14.4012, + "longitude": 50.061745, + "stopId": "U1044" + }, + { + "id": "U1046Z1", + "name": "Vlastina", + "isMetro": false, + "latitude": 14.31736, + "longitude": 50.091305, + "stopId": "U1046" + }, + { + "id": "U1046Z2", + "name": "Vlastina", + "isMetro": false, + "latitude": 14.316519, + "longitude": 50.091217, + "stopId": "U1046" + }, + { + "id": "U1047Z1", + "name": "Na Mlýnici", + "isMetro": false, + "latitude": 14.320167, + "longitude": 50.114216, + "stopId": "U1047" + }, + { + "id": "U1047Z2", + "name": "Na Mlýnici", + "isMetro": false, + "latitude": 14.321234, + "longitude": 50.114132, + "stopId": "U1047" + }, + { + "id": "U1048Z1", + "name": "Nádraží Krč", + "isMetro": false, + "latitude": 14.443583, + "longitude": 50.035484, + "stopId": "U1048" + }, + { + "id": "U1048Z2", + "name": "Nádraží Krč", + "isMetro": false, + "latitude": 14.443894, + "longitude": 50.034695, + "stopId": "U1048" + }, + { + "id": "U1048Z301", + "name": "Praha-Krč", + "isMetro": false, + "latitude": 14.445969, + "longitude": 50.03418, + "stopId": "U1048" + }, + { + "id": "U1049Z1", + "name": "Högerova", + "isMetro": false, + "latitude": 14.3806, + "longitude": 50.03455, + "stopId": "U1049" + }, + { + "id": "U1049Z2", + "name": "Högerova", + "isMetro": false, + "latitude": 14.381317, + "longitude": 50.034199, + "stopId": "U1049" + }, + { + "id": "U1049Z3", + "name": "K Barrandovu", + "isMetro": false, + "latitude": 14.38343, + "longitude": 50.035473, + "stopId": "U1049" + }, + { + "id": "U1049Z4", + "name": "K Barrandovu", + "isMetro": false, + "latitude": 14.382728, + "longitude": 50.03508, + "stopId": "U1049" + }, + { + "id": "U104Z1", + "name": "Jiviny", + "isMetro": false, + "latitude": 14.304969, + "longitude": 50.077778, + "stopId": "U104" + }, + { + "id": "U104Z4", + "name": "Jiviny", + "isMetro": false, + "latitude": 14.302446, + "longitude": 50.076813, + "stopId": "U104" + }, + { + "id": "U1050Z1", + "name": "Chaplinovo náměstí", + "isMetro": false, + "latitude": 14.377425, + "longitude": 50.035297, + "stopId": "U1050" + }, + { + "id": "U1050Z2", + "name": "Chaplinovo náměstí", + "isMetro": false, + "latitude": 14.377058, + "longitude": 50.035206, + "stopId": "U1050" + }, + { + "id": "U1050Z3", + "name": "Chaplinovo náměstí", + "isMetro": false, + "latitude": 14.377971, + "longitude": 50.034916, + "stopId": "U1050" + }, + { + "id": "U1050Z4", + "name": "Chaplinovo náměstí", + "isMetro": false, + "latitude": 14.37722, + "longitude": 50.035179, + "stopId": "U1050" + }, + { + "id": "U1051Z1", + "name": "Nádraží Kyje", + "isMetro": false, + "latitude": 14.542941, + "longitude": 50.097363, + "stopId": "U1051" + }, + { + "id": "U1051Z2", + "name": "Nádraží Kyje", + "isMetro": false, + "latitude": 14.542534, + "longitude": 50.097485, + "stopId": "U1051" + }, + { + "id": "U1051Z301", + "name": "Praha-Kyje", + "isMetro": false, + "latitude": 14.543174, + "longitude": 50.097561, + "stopId": "U1051" + }, + { + "id": "U1052Z1", + "name": "Špitálská", + "isMetro": false, + "latitude": 14.504627, + "longitude": 50.111122, + "stopId": "U1052" + }, + { + "id": "U1052Z2", + "name": "Špitálská", + "isMetro": false, + "latitude": 14.505411, + "longitude": 50.110897, + "stopId": "U1052" + }, + { + "id": "U1053Z1", + "name": "Vozovna Hloubětín", + "isMetro": false, + "latitude": 14.528401, + "longitude": 50.10788, + "stopId": "U1053" + }, + { + "id": "U1053Z2", + "name": "Vozovna Hloubětín", + "isMetro": false, + "latitude": 14.528331, + "longitude": 50.107471, + "stopId": "U1053" + }, + { + "id": "U1054Z1", + "name": "Pánkova", + "isMetro": false, + "latitude": 14.649434, + "longitude": 50.018116, + "stopId": "U1054" + }, + { + "id": "U1054Z2", + "name": "Pánkova", + "isMetro": false, + "latitude": 14.649135, + "longitude": 50.018299, + "stopId": "U1054" + }, + { + "id": "U1055Z1", + "name": "Milevská", + "isMetro": false, + "latitude": 14.430271, + "longitude": 50.048615, + "stopId": "U1055" + }, + { + "id": "U1056Z1", + "name": "Poliklinika Černý Most", + "isMetro": false, + "latitude": 14.572384, + "longitude": 50.107834, + "stopId": "U1056" + }, + { + "id": "U1056Z2", + "name": "Poliklinika Černý Most", + "isMetro": false, + "latitude": 14.572651, + "longitude": 50.107418, + "stopId": "U1056" + }, + { + "id": "U1057Z1", + "name": "Kapitána Stránského", + "isMetro": false, + "latitude": 14.576176, + "longitude": 50.103325, + "stopId": "U1057" + }, + { + "id": "U1057Z2", + "name": "Kapitána Stránského", + "isMetro": false, + "latitude": 14.57575, + "longitude": 50.103519, + "stopId": "U1057" + }, + { + "id": "U1058Z1", + "name": "Ve Vilkách", + "isMetro": false, + "latitude": 14.539631, + "longitude": 50.015511, + "stopId": "U1058" + }, + { + "id": "U1058Z2", + "name": "Ve Vilkách", + "isMetro": false, + "latitude": 14.540227, + "longitude": 50.015415, + "stopId": "U1058" + }, + { + "id": "U1059Z1", + "name": "Lázeňka", + "isMetro": false, + "latitude": 14.586018, + "longitude": 50.059216, + "stopId": "U1059" + }, + { + "id": "U1059Z2", + "name": "Lázeňka", + "isMetro": false, + "latitude": 14.583467, + "longitude": 50.057552, + "stopId": "U1059" + }, + { + "id": "U1060Z1", + "name": "Tálínská", + "isMetro": false, + "latitude": 14.544631, + "longitude": 50.100483, + "stopId": "U1060" + }, + { + "id": "U1060Z2", + "name": "Tálínská", + "isMetro": false, + "latitude": 14.547503, + "longitude": 50.10133, + "stopId": "U1060" + }, + { + "id": "U1061Z1", + "name": "Doležalova", + "isMetro": false, + "latitude": 14.570651, + "longitude": 50.101917, + "stopId": "U1061" + }, + { + "id": "U1061Z2", + "name": "Doležalova", + "isMetro": false, + "latitude": 14.569757, + "longitude": 50.10178, + "stopId": "U1061" + }, + { + "id": "U1062Z1", + "name": "Římská", + "isMetro": false, + "latitude": 14.435419, + "longitude": 50.076973, + "stopId": "U1062" + }, + { + "id": "U1062Z2", + "name": "Římská", + "isMetro": false, + "latitude": 14.435394, + "longitude": 50.076561, + "stopId": "U1062" + }, + { + "id": "U1063Z1", + "name": "Za Slánskou silnicí", + "isMetro": false, + "latitude": 14.305934, + "longitude": 50.071083, + "stopId": "U1063" + }, + { + "id": "U1063Z2", + "name": "Za Slánskou silnicí", + "isMetro": false, + "latitude": 14.306973, + "longitude": 50.070984, + "stopId": "U1063" + }, + { + "id": "U1064Z1", + "name": "Olgy Havlové", + "isMetro": false, + "latitude": 14.480074, + "longitude": 50.087353, + "stopId": "U1064" + }, + { + "id": "U1064Z2", + "name": "Olgy Havlové", + "isMetro": false, + "latitude": 14.477654, + "longitude": 50.087524, + "stopId": "U1064" + }, + { + "id": "U1065Z1", + "name": "Na Hůrce", + "isMetro": false, + "latitude": 14.292028, + "longitude": 50.078007, + "stopId": "U1065" + }, + { + "id": "U1065Z2", + "name": "Na Hůrce", + "isMetro": false, + "latitude": 14.292721, + "longitude": 50.077782, + "stopId": "U1065" + }, + { + "id": "U1066Z1", + "name": "Mokřanská", + "isMetro": false, + "latitude": 14.526849, + "longitude": 50.063091, + "stopId": "U1066" + }, + { + "id": "U1066Z2", + "name": "Mokřanská", + "isMetro": false, + "latitude": 14.526602, + "longitude": 50.063793, + "stopId": "U1066" + }, + { + "id": "U1067Z1", + "name": "Slovinská", + "isMetro": false, + "latitude": 14.460072, + "longitude": 50.070591, + "stopId": "U1067" + }, + { + "id": "U1067Z2", + "name": "Slovinská", + "isMetro": false, + "latitude": 14.458217, + "longitude": 50.070969, + "stopId": "U1067" + }, + { + "id": "U1068Z1", + "name": "Plošná", + "isMetro": false, + "latitude": 14.518161, + "longitude": 50.068317, + "stopId": "U1068" + }, + { + "id": "U1068Z2", + "name": "Plošná", + "isMetro": false, + "latitude": 14.516904, + "longitude": 50.068615, + "stopId": "U1068" + }, + { + "id": "U1069Z1", + "name": "Nádraží Horní Měcholupy", + "isMetro": false, + "latitude": 14.565084, + "longitude": 50.047832, + "stopId": "U1069" + }, + { + "id": "U1069Z2", + "name": "Nádraží Horní Měcholupy", + "isMetro": false, + "latitude": 14.564721, + "longitude": 50.048172, + "stopId": "U1069" + }, + { + "id": "U1069Z3", + "name": "Nádraží Horní Měcholupy", + "isMetro": false, + "latitude": 14.564962, + "longitude": 50.04932, + "stopId": "U1069" + }, + { + "id": "U1069Z301", + "name": "Praha-Horní Měcholupy", + "isMetro": false, + "latitude": 14.56557, + "longitude": 50.048023, + "stopId": "U1069" + }, + { + "id": "U1069Z4", + "name": "Nádraží Horní Měcholupy", + "isMetro": false, + "latitude": 14.564723, + "longitude": 50.049316, + "stopId": "U1069" + }, + { + "id": "U106Z1", + "name": "Opatov", + "isMetro": false, + "latitude": 14.508024, + "longitude": 50.026882, + "stopId": "U106" + }, + { + "id": "U106Z101", + "name": "Opatov", + "isMetro": true, + "latitude": 14.509173, + "longitude": 50.02795, + "stopId": "U106" + }, + { + "id": "U106Z102", + "name": "Opatov", + "isMetro": true, + "latitude": 14.509208, + "longitude": 50.027829, + "stopId": "U106" + }, + { + "id": "U106Z2", + "name": "Opatov", + "isMetro": false, + "latitude": 14.507668, + "longitude": 50.02766, + "stopId": "U106" + }, + { + "id": "U106Z4", + "name": "Opatov", + "isMetro": false, + "latitude": 14.508279, + "longitude": 50.027615, + "stopId": "U106" + }, + { + "id": "U106Z6", + "name": "Opatov", + "isMetro": false, + "latitude": 14.508051, + "longitude": 50.028233, + "stopId": "U106" + }, + { + "id": "U1070Z1", + "name": "Generála Janouška", + "isMetro": false, + "latitude": 14.563951, + "longitude": 50.102486, + "stopId": "U1070" + }, + { + "id": "U1070Z2", + "name": "Generála Janouška", + "isMetro": false, + "latitude": 14.563901, + "longitude": 50.102783, + "stopId": "U1070" + }, + { + "id": "U1071Z10", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.516944, + "longitude": 50.07637, + "stopId": "U1071" + }, + { + "id": "U1071Z101", + "name": "Depo Hostivař", + "isMetro": true, + "latitude": 14.515252, + "longitude": 50.075085, + "stopId": "U1071" + }, + { + "id": "U1071Z102", + "name": "Depo Hostivař", + "isMetro": true, + "latitude": 14.51511, + "longitude": 50.075106, + "stopId": "U1071" + }, + { + "id": "U1071Z11", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.516312, + "longitude": 50.077682, + "stopId": "U1071" + }, + { + "id": "U1071Z12", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.518378, + "longitude": 50.077503, + "stopId": "U1071" + }, + { + "id": "U1071Z2", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.516683, + "longitude": 50.0765, + "stopId": "U1071" + }, + { + "id": "U1071Z3", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.516969, + "longitude": 50.076443, + "stopId": "U1071" + }, + { + "id": "U1071Z4", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.517226, + "longitude": 50.076389, + "stopId": "U1071" + }, + { + "id": "U1071Z6", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.517945, + "longitude": 50.077415, + "stopId": "U1071" + }, + { + "id": "U1071Z7", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.516369, + "longitude": 50.077759, + "stopId": "U1071" + }, + { + "id": "U1071Z8", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.516887, + "longitude": 50.076252, + "stopId": "U1071" + }, + { + "id": "U1071Z9", + "name": "Depo Hostivař", + "isMetro": false, + "latitude": 14.516915, + "longitude": 50.076309, + "stopId": "U1071" + }, + { + "id": "U1072Z1", + "name": "Václavské náměstí", + "isMetro": false, + "latitude": 14.425279, + "longitude": 50.081669, + "stopId": "U1072" + }, + { + "id": "U1072Z101", + "name": "Můstek", + "isMetro": true, + "latitude": 14.42447, + "longitude": 50.083499, + "stopId": "U1072" + }, + { + "id": "U1072Z102", + "name": "Můstek", + "isMetro": true, + "latitude": 14.424639, + "longitude": 50.083581, + "stopId": "U1072" + }, + { + "id": "U1072Z121", + "name": "Můstek", + "isMetro": true, + "latitude": 14.423275, + "longitude": 50.08347, + "stopId": "U1072" + }, + { + "id": "U1072Z122", + "name": "Můstek", + "isMetro": true, + "latitude": 14.423408, + "longitude": 50.083349, + "stopId": "U1072" + }, + { + "id": "U1072Z2", + "name": "Václavské náměstí", + "isMetro": false, + "latitude": 14.425733, + "longitude": 50.081963, + "stopId": "U1072" + }, + { + "id": "U1073Z1", + "name": "Malá Ohrada", + "isMetro": false, + "latitude": 14.339996, + "longitude": 50.040272, + "stopId": "U1073" + }, + { + "id": "U1073Z2", + "name": "Malá Ohrada", + "isMetro": false, + "latitude": 14.340303, + "longitude": 50.040298, + "stopId": "U1073" + }, + { + "id": "U1074Z1", + "name": "Krejcárek", + "isMetro": false, + "latitude": 14.475099, + "longitude": 50.095135, + "stopId": "U1074" + }, + { + "id": "U1074Z2", + "name": "Krejcárek", + "isMetro": false, + "latitude": 14.474444, + "longitude": 50.094891, + "stopId": "U1074" + }, + { + "id": "U1074Z3", + "name": "Krejcárek", + "isMetro": false, + "latitude": 14.476725, + "longitude": 50.095749, + "stopId": "U1074" + }, + { + "id": "U1074Z4", + "name": "Krejcárek", + "isMetro": false, + "latitude": 14.476245, + "longitude": 50.095695, + "stopId": "U1074" + }, + { + "id": "U1075Z1", + "name": "Ocelářská", + "isMetro": false, + "latitude": 14.488072, + "longitude": 50.103649, + "stopId": "U1075" + }, + { + "id": "U1075Z2", + "name": "Ocelářská", + "isMetro": false, + "latitude": 14.48877, + "longitude": 50.103439, + "stopId": "U1075" + }, + { + "id": "U1076Z1", + "name": "Michelangelova", + "isMetro": false, + "latitude": 14.509822, + "longitude": 50.070072, + "stopId": "U1076" + }, + { + "id": "U1076Z2", + "name": "Michelangelova", + "isMetro": false, + "latitude": 14.509403, + "longitude": 50.070377, + "stopId": "U1076" + }, + { + "id": "U1077Z1", + "name": "Nad Markétou", + "isMetro": false, + "latitude": 14.347637, + "longitude": 50.084198, + "stopId": "U1077" + }, + { + "id": "U1077Z2", + "name": "Nad Markétou", + "isMetro": false, + "latitude": 14.346251, + "longitude": 50.082832, + "stopId": "U1077" + }, + { + "id": "U107Z1", + "name": "Škola Dubeč", + "isMetro": false, + "latitude": 14.591401, + "longitude": 50.063251, + "stopId": "U107" + }, + { + "id": "U107Z2", + "name": "Škola Dubeč", + "isMetro": false, + "latitude": 14.590551, + "longitude": 50.062584, + "stopId": "U107" + }, + { + "id": "U1081Z1", + "name": "U Kundratky", + "isMetro": false, + "latitude": 14.488025, + "longitude": 50.117821, + "stopId": "U1081" + }, + { + "id": "U1081Z2", + "name": "U Kundratky", + "isMetro": false, + "latitude": 14.487487, + "longitude": 50.117817, + "stopId": "U1081" + }, + { + "id": "U1083Z1", + "name": "Oderská", + "isMetro": false, + "latitude": 14.530681, + "longitude": 50.146763, + "stopId": "U1083" + }, + { + "id": "U1083Z2", + "name": "Oderská", + "isMetro": false, + "latitude": 14.529835, + "longitude": 50.147091, + "stopId": "U1083" + }, + { + "id": "U1084Z2", + "name": "Hovorčovice,U Kostela", + "isMetro": false, + "latitude": 14.517534, + "longitude": 50.179428, + "stopId": "U1084" + }, + { + "id": "U1084Z3", + "name": "Hovorčovice,U Kostela", + "isMetro": false, + "latitude": 14.517693, + "longitude": 50.179539, + "stopId": "U1084" + }, + { + "id": "U1085Z1", + "name": "Nádraží Řeporyje", + "isMetro": false, + "latitude": 14.309179, + "longitude": 50.031776, + "stopId": "U1085" + }, + { + "id": "U1085Z2", + "name": "Nádraží Řeporyje", + "isMetro": false, + "latitude": 14.30934, + "longitude": 50.031639, + "stopId": "U1085" + }, + { + "id": "U1085Z301", + "name": "Praha-Řeporyje", + "isMetro": false, + "latitude": 14.308306, + "longitude": 50.032513, + "stopId": "U1085" + }, + { + "id": "U1086Z1", + "name": "Ořech", + "isMetro": false, + "latitude": 14.296917, + "longitude": 50.021366, + "stopId": "U1086" + }, + { + "id": "U1086Z2", + "name": "Ořech", + "isMetro": false, + "latitude": 14.296933, + "longitude": 50.021683, + "stopId": "U1086" + }, + { + "id": "U1087Z1", + "name": "Jitřní", + "isMetro": false, + "latitude": 14.41307, + "longitude": 50.024021, + "stopId": "U1087" + }, + { + "id": "U1087Z2", + "name": "Jitřní", + "isMetro": false, + "latitude": 14.41317, + "longitude": 50.024509, + "stopId": "U1087" + }, + { + "id": "U1089Z1", + "name": "Ořešská", + "isMetro": false, + "latitude": 14.30505, + "longitude": 50.030449, + "stopId": "U1089" + }, + { + "id": "U1089Z2", + "name": "Ořešská", + "isMetro": false, + "latitude": 14.304867, + "longitude": 50.030384, + "stopId": "U1089" + }, + { + "id": "U108Z1", + "name": "Dubeček", + "isMetro": false, + "latitude": 14.580068, + "longitude": 50.056019, + "stopId": "U108" + }, + { + "id": "U108Z2", + "name": "Dubeček", + "isMetro": false, + "latitude": 14.579818, + "longitude": 50.055969, + "stopId": "U108" + }, + { + "id": "U1090Z1", + "name": "Letiště", + "isMetro": false, + "latitude": 14.271953, + "longitude": 50.106087, + "stopId": "U1090" + }, + { + "id": "U1090Z3", + "name": "Schengenská", + "isMetro": false, + "latitude": 14.272376, + "longitude": 50.105827, + "stopId": "U1090" + }, + { + "id": "U1091Z1", + "name": "Bryksova", + "isMetro": false, + "latitude": 14.579042, + "longitude": 50.102283, + "stopId": "U1091" + }, + { + "id": "U1091Z2", + "name": "Bryksova", + "isMetro": false, + "latitude": 14.578852, + "longitude": 50.102146, + "stopId": "U1091" + }, + { + "id": "U1092Z1", + "name": "Bohdalecká", + "isMetro": false, + "latitude": 14.473801, + "longitude": 50.056618, + "stopId": "U1092" + }, + { + "id": "U1092Z2", + "name": "Bohdalecká", + "isMetro": false, + "latitude": 14.472701, + "longitude": 50.05695, + "stopId": "U1092" + }, + { + "id": "U1093Z301", + "name": "Zeleneč", + "isMetro": false, + "latitude": 14.664923, + "longitude": 50.130238, + "stopId": "U1093" + }, + { + "id": "U1094Z1", + "name": "Nemocnice Na Homolce", + "isMetro": false, + "latitude": 14.354584, + "longitude": 50.075649, + "stopId": "U1094" + }, + { + "id": "U1094Z2", + "name": "Nemocnice Na Homolce", + "isMetro": false, + "latitude": 14.354267, + "longitude": 50.075699, + "stopId": "U1094" + }, + { + "id": "U1095Z1", + "name": "Podolanka", + "isMetro": false, + "latitude": 14.599101, + "longitude": 50.156868, + "stopId": "U1095" + }, + { + "id": "U1095Z2", + "name": "Podolanka", + "isMetro": false, + "latitude": 14.598527, + "longitude": 50.15675, + "stopId": "U1095" + }, + { + "id": "U1096Z1", + "name": "V Lískách", + "isMetro": false, + "latitude": 14.4638, + "longitude": 50.019783, + "stopId": "U1096" + }, + { + "id": "U1099Z1", + "name": "Dolní Měcholupy", + "isMetro": false, + "latitude": 14.562084, + "longitude": 50.056499, + "stopId": "U1099" + }, + { + "id": "U1099Z2", + "name": "Dolní Měcholupy", + "isMetro": false, + "latitude": 14.561684, + "longitude": 50.057236, + "stopId": "U1099" + }, + { + "id": "U109Z1", + "name": "Důstojnické domy", + "isMetro": false, + "latitude": 14.531975, + "longitude": 50.124271, + "stopId": "U109" + }, + { + "id": "U109Z2", + "name": "Důstojnické domy", + "isMetro": false, + "latitude": 14.532351, + "longitude": 50.124702, + "stopId": "U109" + }, + { + "id": "U10Z1", + "name": "Baba II", + "isMetro": false, + "latitude": 14.41526, + "longitude": 49.999592, + "stopId": "U10" + }, + { + "id": "U10Z2", + "name": "Baba II", + "isMetro": false, + "latitude": 14.414884, + "longitude": 49.999565, + "stopId": "U10" + }, + { + "id": "U1100Z1", + "name": "Na Šafránce", + "isMetro": false, + "latitude": 14.347484, + "longitude": 50.0755, + "stopId": "U1100" + }, + { + "id": "U1100Z2", + "name": "Na Šafránce", + "isMetro": false, + "latitude": 14.346717, + "longitude": 50.075584, + "stopId": "U1100" + }, + { + "id": "U1102Z1", + "name": "Sídliště Čakovice", + "isMetro": false, + "latitude": 14.520086, + "longitude": 50.157764, + "stopId": "U1102" + }, + { + "id": "U1102Z2", + "name": "Sídliště Čakovice", + "isMetro": false, + "latitude": 14.520513, + "longitude": 50.157558, + "stopId": "U1102" + }, + { + "id": "U1103Z1", + "name": "Sovenická", + "isMetro": false, + "latitude": 14.547068, + "longitude": 50.13765, + "stopId": "U1103" + }, + { + "id": "U1103Z2", + "name": "Sovenická", + "isMetro": false, + "latitude": 14.546968, + "longitude": 50.136749, + "stopId": "U1103" + }, + { + "id": "U1104Z2", + "name": "Kbelský hřbitov", + "isMetro": false, + "latitude": 14.5467, + "longitude": 50.143551, + "stopId": "U1104" + }, + { + "id": "U1104Z3", + "name": "Kbelský hřbitov", + "isMetro": false, + "latitude": 14.546523, + "longitude": 50.144379, + "stopId": "U1104" + }, + { + "id": "U1105Z1", + "name": "Ctěnický zámek", + "isMetro": false, + "latitude": 14.562417, + "longitude": 50.148273, + "stopId": "U1105" + }, + { + "id": "U1105Z2", + "name": "Ctěnický zámek", + "isMetro": false, + "latitude": 14.562216, + "longitude": 50.148285, + "stopId": "U1105" + }, + { + "id": "U1105Z3", + "name": "Ctěnice", + "isMetro": false, + "latitude": 14.557533, + "longitude": 50.145775, + "stopId": "U1105" + }, + { + "id": "U1105Z4", + "name": "Ctěnice", + "isMetro": false, + "latitude": 14.557004, + "longitude": 50.145378, + "stopId": "U1105" + }, + { + "id": "U1107Z1", + "name": "Rousínovská", + "isMetro": false, + "latitude": 14.572459, + "longitude": 50.145897, + "stopId": "U1107" + }, + { + "id": "U1107Z2", + "name": "Rousínovská", + "isMetro": false, + "latitude": 14.570317, + "longitude": 50.146549, + "stopId": "U1107" + }, + { + "id": "U1108Z1", + "name": "Vinice", + "isMetro": false, + "latitude": 14.487597, + "longitude": 50.077026, + "stopId": "U1108" + }, + { + "id": "U1108Z2", + "name": "Vinice", + "isMetro": false, + "latitude": 14.490484, + "longitude": 50.076675, + "stopId": "U1108" + }, + { + "id": "U110Z1", + "name": "Dvorce", + "isMetro": false, + "latitude": 14.414384, + "longitude": 50.047726, + "stopId": "U110" + }, + { + "id": "U110Z11", + "name": "Dvorce", + "isMetro": false, + "latitude": 14.412725, + "longitude": 50.047832, + "stopId": "U110" + }, + { + "id": "U110Z2", + "name": "Dvorce", + "isMetro": false, + "latitude": 14.413954, + "longitude": 50.047184, + "stopId": "U110" + }, + { + "id": "U110Z5", + "name": "Dvorce", + "isMetro": false, + "latitude": 14.415039, + "longitude": 50.047138, + "stopId": "U110" + }, + { + "id": "U110Z6", + "name": "Dvorce", + "isMetro": false, + "latitude": 14.414905, + "longitude": 50.046898, + "stopId": "U110" + }, + { + "id": "U110Z7", + "name": "Dvorce", + "isMetro": false, + "latitude": 14.415036, + "longitude": 50.046543, + "stopId": "U110" + }, + { + "id": "U110Z8", + "name": "Dvorce", + "isMetro": false, + "latitude": 14.41537, + "longitude": 50.046661, + "stopId": "U110" + }, + { + "id": "U1111Z1", + "name": "Zamašská", + "isMetro": false, + "latitude": 14.547047, + "longitude": 50.140553, + "stopId": "U1111" + }, + { + "id": "U1111Z2", + "name": "Zamašská", + "isMetro": false, + "latitude": 14.54676, + "longitude": 50.140308, + "stopId": "U1111" + }, + { + "id": "U1114Z1", + "name": "Velká Ohrada", + "isMetro": false, + "latitude": 14.335876, + "longitude": 50.035374, + "stopId": "U1114" + }, + { + "id": "U1114Z2", + "name": "Velká Ohrada", + "isMetro": false, + "latitude": 14.33606, + "longitude": 50.035572, + "stopId": "U1114" + }, + { + "id": "U1115Z1", + "name": "Za Pavilonem", + "isMetro": false, + "latitude": 14.588501, + "longitude": 50.060883, + "stopId": "U1115" + }, + { + "id": "U1115Z2", + "name": "Za Pavilonem", + "isMetro": false, + "latitude": 14.588323, + "longitude": 50.060993, + "stopId": "U1115" + }, + { + "id": "U1116Z2", + "name": "Petýrkova", + "isMetro": false, + "latitude": 14.487736, + "longitude": 50.030365, + "stopId": "U1116" + }, + { + "id": "U1116Z3", + "name": "Petýrkova", + "isMetro": false, + "latitude": 14.487551, + "longitude": 50.030727, + "stopId": "U1116" + }, + { + "id": "U111Z1", + "name": "Výhledské náměstí", + "isMetro": false, + "latitude": 14.373318, + "longitude": 50.13509, + "stopId": "U111" + }, + { + "id": "U111Z2", + "name": "Výhledské náměstí", + "isMetro": false, + "latitude": 14.373234, + "longitude": 50.134983, + "stopId": "U111" + }, + { + "id": "U1120Z1", + "name": "Nymburská", + "isMetro": false, + "latitude": 14.558156, + "longitude": 50.126858, + "stopId": "U1120" + }, + { + "id": "U1120Z2", + "name": "Nymburská", + "isMetro": false, + "latitude": 14.55881, + "longitude": 50.126633, + "stopId": "U1120" + }, + { + "id": "U1121Z1", + "name": "Zvonařka", + "isMetro": false, + "latitude": 14.434173, + "longitude": 50.070686, + "stopId": "U1121" + }, + { + "id": "U1121Z2", + "name": "Zvonařka", + "isMetro": false, + "latitude": 14.434822, + "longitude": 50.071148, + "stopId": "U1121" + }, + { + "id": "U1122Z1", + "name": "U Průhonu", + "isMetro": false, + "latitude": 14.450027, + "longitude": 50.104923, + "stopId": "U1122" + }, + { + "id": "U1123Z2", + "name": "Zahradníčkova", + "isMetro": false, + "latitude": 14.336514, + "longitude": 50.069508, + "stopId": "U1123" + }, + { + "id": "U1124Z1", + "name": "Červeňanského", + "isMetro": false, + "latitude": 14.335083, + "longitude": 50.039188, + "stopId": "U1124" + }, + { + "id": "U1124Z2", + "name": "Červeňanského", + "isMetro": false, + "latitude": 14.335337, + "longitude": 50.038731, + "stopId": "U1124" + }, + { + "id": "U1125Z1", + "name": "Štěpařská", + "isMetro": false, + "latitude": 14.373484, + "longitude": 50.032032, + "stopId": "U1125" + }, + { + "id": "U1125Z2", + "name": "Štěpařská", + "isMetro": false, + "latitude": 14.373301, + "longitude": 50.032516, + "stopId": "U1125" + }, + { + "id": "U1126Z1", + "name": "Záhorského", + "isMetro": false, + "latitude": 14.370267, + "longitude": 50.030285, + "stopId": "U1126" + }, + { + "id": "U1126Z2", + "name": "Záhorského", + "isMetro": false, + "latitude": 14.371497, + "longitude": 50.030445, + "stopId": "U1126" + }, + { + "id": "U1127Z1", + "name": "V Remízku", + "isMetro": false, + "latitude": 14.36858, + "longitude": 50.026146, + "stopId": "U1127" + }, + { + "id": "U1128Z1", + "name": "Grussova", + "isMetro": false, + "latitude": 14.370461, + "longitude": 50.03455, + "stopId": "U1128" + }, + { + "id": "U1128Z2", + "name": "Grussova", + "isMetro": false, + "latitude": 14.37096, + "longitude": 50.034199, + "stopId": "U1128" + }, + { + "id": "U1129Z1", + "name": "Breitcetlova", + "isMetro": false, + "latitude": 14.574916, + "longitude": 50.10606, + "stopId": "U1129" + }, + { + "id": "U1129Z2", + "name": "Breitcetlova", + "isMetro": false, + "latitude": 14.574136, + "longitude": 50.106224, + "stopId": "U1129" + }, + { + "id": "U112Z1", + "name": "Dyrinka", + "isMetro": false, + "latitude": 14.374467, + "longitude": 50.107651, + "stopId": "U112" + }, + { + "id": "U112Z2", + "name": "Dyrinka", + "isMetro": false, + "latitude": 14.37495, + "longitude": 50.108246, + "stopId": "U112" + }, + { + "id": "U1130Z1", + "name": "Bucharova", + "isMetro": false, + "latitude": 14.339211, + "longitude": 50.054165, + "stopId": "U1130" + }, + { + "id": "U1130Z2", + "name": "Bucharova", + "isMetro": false, + "latitude": 14.338841, + "longitude": 50.053871, + "stopId": "U1130" + }, + { + "id": "U1131Z1", + "name": "Pod Chodovem", + "isMetro": false, + "latitude": 14.49369, + "longitude": 50.035542, + "stopId": "U1131" + }, + { + "id": "U1131Z2", + "name": "Pod Chodovem", + "isMetro": false, + "latitude": 14.494167, + "longitude": 50.035683, + "stopId": "U1131" + }, + { + "id": "U1132Z1", + "name": "Městský archiv Chodovec", + "isMetro": false, + "latitude": 14.495254, + "longitude": 50.041077, + "stopId": "U1132" + }, + { + "id": "U1133Z1", + "name": "U Drahaně", + "isMetro": false, + "latitude": 14.416162, + "longitude": 50.135372, + "stopId": "U1133" + }, + { + "id": "U1133Z2", + "name": "U Drahaně", + "isMetro": false, + "latitude": 14.415837, + "longitude": 50.135433, + "stopId": "U1133" + }, + { + "id": "U1134Z1", + "name": "Bohnické údolí", + "isMetro": false, + "latitude": 14.412033, + "longitude": 50.135723, + "stopId": "U1134" + }, + { + "id": "U1134Z2", + "name": "Bohnické údolí", + "isMetro": false, + "latitude": 14.412001, + "longitude": 50.135616, + "stopId": "U1134" + }, + { + "id": "U1136Z1", + "name": "Horoměřice", + "isMetro": false, + "latitude": 14.339133, + "longitude": 50.131767, + "stopId": "U1136" + }, + { + "id": "U1136Z2", + "name": "Horoměřice", + "isMetro": false, + "latitude": 14.340301, + "longitude": 50.131119, + "stopId": "U1136" + }, + { + "id": "U1137Z1", + "name": "Horoměřice,V Lipkách", + "isMetro": false, + "latitude": 14.33635, + "longitude": 50.135883, + "stopId": "U1137" + }, + { + "id": "U1137Z2", + "name": "Horoměřice,V Lipkách", + "isMetro": false, + "latitude": 14.336323, + "longitude": 50.135548, + "stopId": "U1137" + }, + { + "id": "U1138Z1", + "name": "Únětice,Na Parcelách", + "isMetro": false, + "latitude": 14.355683, + "longitude": 50.148685, + "stopId": "U1138" + }, + { + "id": "U1138Z2", + "name": "Únětice,Na Parcelách", + "isMetro": false, + "latitude": 14.355184, + "longitude": 50.148617, + "stopId": "U1138" + }, + { + "id": "U1139Z1", + "name": "Únětice,Obecní úřad", + "isMetro": false, + "latitude": 14.3549, + "longitude": 50.150352, + "stopId": "U1139" + }, + { + "id": "U1139Z2", + "name": "Únětice,Obecní úřad", + "isMetro": false, + "latitude": 14.35475, + "longitude": 50.150352, + "stopId": "U1139" + }, + { + "id": "U113Z1", + "name": "Hlušičkova", + "isMetro": false, + "latitude": 14.31641, + "longitude": 50.064014, + "stopId": "U113" + }, + { + "id": "U113Z2", + "name": "Hlušičkova", + "isMetro": false, + "latitude": 14.315658, + "longitude": 50.063713, + "stopId": "U113" + }, + { + "id": "U113Z3", + "name": "Hlušičkova", + "isMetro": false, + "latitude": 14.315872, + "longitude": 50.063915, + "stopId": "U113" + }, + { + "id": "U113Z4", + "name": "Hlušičkova", + "isMetro": false, + "latitude": 14.3165, + "longitude": 50.06395, + "stopId": "U113" + }, + { + "id": "U1140Z1", + "name": "Stodůlky", + "isMetro": false, + "latitude": 14.308017, + "longitude": 50.046535, + "stopId": "U1140" + }, + { + "id": "U1140Z101", + "name": "Stodůlky", + "isMetro": true, + "latitude": 14.30626, + "longitude": 50.046749, + "stopId": "U1140" + }, + { + "id": "U1140Z102", + "name": "Stodůlky", + "isMetro": true, + "latitude": 14.306295, + "longitude": 50.046618, + "stopId": "U1140" + }, + { + "id": "U1140Z2", + "name": "Stodůlky", + "isMetro": false, + "latitude": 14.307496, + "longitude": 50.046627, + "stopId": "U1140" + }, + { + "id": "U1141Z1", + "name": "Zličín", + "isMetro": false, + "latitude": 14.290429, + "longitude": 50.054237, + "stopId": "U1141" + }, + { + "id": "U1141Z10", + "name": "Zličín", + "isMetro": false, + "latitude": 14.287701, + "longitude": 50.055946, + "stopId": "U1141" + }, + { + "id": "U1141Z101", + "name": "Zličín", + "isMetro": true, + "latitude": 14.291211, + "longitude": 50.053284, + "stopId": "U1141" + }, + { + "id": "U1141Z102", + "name": "Zličín", + "isMetro": true, + "latitude": 14.29106, + "longitude": 50.05324, + "stopId": "U1141" + }, + { + "id": "U1141Z14", + "name": "Zličín", + "isMetro": false, + "latitude": 14.290538, + "longitude": 50.054981, + "stopId": "U1141" + }, + { + "id": "U1141Z16", + "name": "Zličín", + "isMetro": false, + "latitude": 14.290207, + "longitude": 50.055115, + "stopId": "U1141" + }, + { + "id": "U1141Z2", + "name": "Zličín", + "isMetro": false, + "latitude": 14.290406, + "longitude": 50.054867, + "stopId": "U1141" + }, + { + "id": "U1141Z3", + "name": "Zličín", + "isMetro": false, + "latitude": 14.291057, + "longitude": 50.054211, + "stopId": "U1141" + }, + { + "id": "U1141Z5", + "name": "Zličín", + "isMetro": false, + "latitude": 14.290716, + "longitude": 50.054775, + "stopId": "U1141" + }, + { + "id": "U1141Z6", + "name": "Zličín", + "isMetro": false, + "latitude": 14.289979, + "longitude": 50.055336, + "stopId": "U1141" + }, + { + "id": "U1141Z71", + "name": "Zličín", + "isMetro": false, + "latitude": 14.290429, + "longitude": 50.054237, + "stopId": "U1141" + }, + { + "id": "U1141Z9", + "name": "Zličín", + "isMetro": false, + "latitude": 14.288173, + "longitude": 50.055874, + "stopId": "U1141" + }, + { + "id": "U1142Z1", + "name": "Depo Zličín", + "isMetro": false, + "latitude": 14.277577, + "longitude": 50.053326, + "stopId": "U1142" + }, + { + "id": "U1142Z2", + "name": "Depo Zličín", + "isMetro": false, + "latitude": 14.27792, + "longitude": 50.053268, + "stopId": "U1142" + }, + { + "id": "U1143Z1", + "name": "Hostivice,Na Pískách", + "isMetro": false, + "latitude": 14.257592, + "longitude": 50.076023, + "stopId": "U1143" + }, + { + "id": "U1143Z2", + "name": "Hostivice,Na Pískách", + "isMetro": false, + "latitude": 14.257205, + "longitude": 50.075741, + "stopId": "U1143" + }, + { + "id": "U1144Z1", + "name": "Hostivice,centrum", + "isMetro": false, + "latitude": 14.255105, + "longitude": 50.08131, + "stopId": "U1144" + }, + { + "id": "U1144Z4", + "name": "Hostivice,centrum", + "isMetro": false, + "latitude": 14.254059, + "longitude": 50.081177, + "stopId": "U1144" + }, + { + "id": "U1145Z1", + "name": "Hostivice,Jeneček", + "isMetro": false, + "latitude": 14.240149, + "longitude": 50.0821, + "stopId": "U1145" + }, + { + "id": "U1145Z2", + "name": "Hostivice,Jeneček", + "isMetro": false, + "latitude": 14.240303, + "longitude": 50.082428, + "stopId": "U1145" + }, + { + "id": "U1145Z3", + "name": "Hostivice,Jeneček", + "isMetro": false, + "latitude": 14.239768, + "longitude": 50.082752, + "stopId": "U1145" + }, + { + "id": "U1145Z4", + "name": "Hostivice,Jeneček", + "isMetro": false, + "latitude": 14.239805, + "longitude": 50.08268, + "stopId": "U1145" + }, + { + "id": "U1146Z1", + "name": "Hostivice,Litovice", + "isMetro": false, + "latitude": 14.245109, + "longitude": 50.07962, + "stopId": "U1146" + }, + { + "id": "U1146Z2", + "name": "Hostivice,Litovice", + "isMetro": false, + "latitude": 14.245562, + "longitude": 50.079563, + "stopId": "U1146" + }, + { + "id": "U1147Z1", + "name": "Hostivice,Stadion", + "isMetro": false, + "latitude": 14.248735, + "longitude": 50.080685, + "stopId": "U1147" + }, + { + "id": "U1147Z2", + "name": "Hostivice,Stadion", + "isMetro": false, + "latitude": 14.249704, + "longitude": 50.081032, + "stopId": "U1147" + }, + { + "id": "U1148Z1", + "name": "Valtická", + "isMetro": false, + "latitude": 14.265936, + "longitude": 50.06646, + "stopId": "U1148" + }, + { + "id": "U1148Z2", + "name": "Valtická", + "isMetro": false, + "latitude": 14.266545, + "longitude": 50.065796, + "stopId": "U1148" + }, + { + "id": "U1149Z1", + "name": "Bártlova", + "isMetro": false, + "latitude": 14.632891, + "longitude": 50.119015, + "stopId": "U1149" + }, + { + "id": "U1149Z2", + "name": "Bártlova", + "isMetro": false, + "latitude": 14.632351, + "longitude": 50.118851, + "stopId": "U1149" + }, + { + "id": "U114Z1", + "name": "Krystalová", + "isMetro": false, + "latitude": 14.522528, + "longitude": 50.15596, + "stopId": "U114" + }, + { + "id": "U114Z3", + "name": "Krystalová", + "isMetro": false, + "latitude": 14.522334, + "longitude": 50.154758, + "stopId": "U114" + }, + { + "id": "U1150Z1", + "name": "Čertousy", + "isMetro": false, + "latitude": 14.635189, + "longitude": 50.122395, + "stopId": "U1150" + }, + { + "id": "U1150Z2", + "name": "Čertousy", + "isMetro": false, + "latitude": 14.635396, + "longitude": 50.122746, + "stopId": "U1150" + }, + { + "id": "U1150Z3", + "name": "Čertousy", + "isMetro": false, + "latitude": 14.635188, + "longitude": 50.122486, + "stopId": "U1150" + }, + { + "id": "U1151Z1", + "name": "Starý Prosek", + "isMetro": false, + "latitude": 14.491384, + "longitude": 50.117851, + "stopId": "U1151" + }, + { + "id": "U1151Z2", + "name": "Starý Prosek", + "isMetro": false, + "latitude": 14.490901, + "longitude": 50.117413, + "stopId": "U1151" + }, + { + "id": "U1151Z3", + "name": "Starý Prosek", + "isMetro": false, + "latitude": 14.490559, + "longitude": 50.118515, + "stopId": "U1151" + }, + { + "id": "U1151Z4", + "name": "Starý Prosek", + "isMetro": false, + "latitude": 14.491079, + "longitude": 50.118282, + "stopId": "U1151" + }, + { + "id": "U1152Z1", + "name": "Nad Zlíchovem", + "isMetro": false, + "latitude": 14.404222, + "longitude": 50.045265, + "stopId": "U1152" + }, + { + "id": "U1152Z2", + "name": "Nad Zlíchovem", + "isMetro": false, + "latitude": 14.404713, + "longitude": 50.045208, + "stopId": "U1152" + }, + { + "id": "U1153Z1", + "name": "Nádraží Žvahov - Prosluněná", + "isMetro": false, + "latitude": 14.402256, + "longitude": 50.044903, + "stopId": "U1153" + }, + { + "id": "U1154Z1", + "name": "Hůrka", + "isMetro": false, + "latitude": 14.340384, + "longitude": 50.047951, + "stopId": "U1154" + }, + { + "id": "U1154Z101", + "name": "Hůrka", + "isMetro": true, + "latitude": 14.34281, + "longitude": 50.050073, + "stopId": "U1154" + }, + { + "id": "U1154Z102", + "name": "Hůrka", + "isMetro": true, + "latitude": 14.342838, + "longitude": 50.04996, + "stopId": "U1154" + }, + { + "id": "U1154Z2", + "name": "Hůrka", + "isMetro": false, + "latitude": 14.340467, + "longitude": 50.048267, + "stopId": "U1154" + }, + { + "id": "U1154Z3", + "name": "Hůrka", + "isMetro": false, + "latitude": 14.341537, + "longitude": 50.05085, + "stopId": "U1154" + }, + { + "id": "U1154Z4", + "name": "Hůrka", + "isMetro": false, + "latitude": 14.341914, + "longitude": 50.050747, + "stopId": "U1154" + }, + { + "id": "U1155Z1", + "name": "Žvahov", + "isMetro": false, + "latitude": 14.401451, + "longitude": 50.043987, + "stopId": "U1155" + }, + { + "id": "U1156Z1", + "name": "Pod Žvahovem", + "isMetro": false, + "latitude": 14.403092, + "longitude": 50.043495, + "stopId": "U1156" + }, + { + "id": "U1157Z1", + "name": "Písková", + "isMetro": false, + "latitude": 14.417517, + "longitude": 50.002934, + "stopId": "U1157" + }, + { + "id": "U1157Z2", + "name": "Písková", + "isMetro": false, + "latitude": 14.417634, + "longitude": 50.003235, + "stopId": "U1157" + }, + { + "id": "U1158Z1", + "name": "Obchodní náměstí", + "isMetro": false, + "latitude": 14.404514, + "longitude": 50.004604, + "stopId": "U1158" + }, + { + "id": "U1158Z2", + "name": "Obchodní náměstí", + "isMetro": false, + "latitude": 14.404733, + "longitude": 50.004856, + "stopId": "U1158" + }, + { + "id": "U1158Z82", + "name": "Obchodní náměstí", + "isMetro": false, + "latitude": 14.404733, + "longitude": 50.004856, + "stopId": "U1158" + }, + { + "id": "U1159Z1", + "name": "Nádraží Žvahov - V Násypu", + "isMetro": false, + "latitude": 14.402629, + "longitude": 50.04467, + "stopId": "U1159" + }, + { + "id": "U115Z1", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.43753, + "longitude": 50.109669, + "stopId": "U115" + }, + { + "id": "U115Z101", + "name": "Nádraží Holešovice", + "isMetro": true, + "latitude": 14.440167, + "longitude": 50.109027, + "stopId": "U115" + }, + { + "id": "U115Z102", + "name": "Nádraží Holešovice", + "isMetro": true, + "latitude": 14.439976, + "longitude": 50.108964, + "stopId": "U115" + }, + { + "id": "U115Z11", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.437736, + "longitude": 50.110004, + "stopId": "U115" + }, + { + "id": "U115Z2", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.437341, + "longitude": 50.110294, + "stopId": "U115" + }, + { + "id": "U115Z3", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.439998, + "longitude": 50.108181, + "stopId": "U115" + }, + { + "id": "U115Z301", + "name": "Praha-Holešovice", + "isMetro": false, + "latitude": 14.439771, + "longitude": 50.110531, + "stopId": "U115" + }, + { + "id": "U115Z305", + "name": "Praha-Holešovice zast.", + "isMetro": false, + "latitude": 14.437323, + "longitude": 50.106106, + "stopId": "U115" + }, + { + "id": "U115Z4", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.440874, + "longitude": 50.108082, + "stopId": "U115" + }, + { + "id": "U115Z51", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.437235, + "longitude": 50.109837, + "stopId": "U115" + }, + { + "id": "U115Z6", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.439855, + "longitude": 50.108814, + "stopId": "U115" + }, + { + "id": "U115Z8", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.440871, + "longitude": 50.108662, + "stopId": "U115" + }, + { + "id": "U115Z9", + "name": "Nádraží Holešovice", + "isMetro": false, + "latitude": 14.440919, + "longitude": 50.10844, + "stopId": "U115" + }, + { + "id": "U1160Z1", + "name": "Univerzitní", + "isMetro": false, + "latitude": 14.501694, + "longitude": 50.085392, + "stopId": "U1160" + }, + { + "id": "U1160Z2", + "name": "Univerzitní", + "isMetro": false, + "latitude": 14.503273, + "longitude": 50.08506, + "stopId": "U1160" + }, + { + "id": "U1161Z1", + "name": "Rtyňská", + "isMetro": false, + "latitude": 14.572406, + "longitude": 50.081699, + "stopId": "U1161" + }, + { + "id": "U1161Z2", + "name": "Rtyňská", + "isMetro": false, + "latitude": 14.570657, + "longitude": 50.081062, + "stopId": "U1161" + }, + { + "id": "U1162Z1", + "name": "Stará obec", + "isMetro": false, + "latitude": 14.577839, + "longitude": 50.088676, + "stopId": "U1162" + }, + { + "id": "U1163Z1", + "name": "Škola Dolní Počernice", + "isMetro": false, + "latitude": 14.581164, + "longitude": 50.088505, + "stopId": "U1163" + }, + { + "id": "U1163Z2", + "name": "Škola Dolní Počernice", + "isMetro": false, + "latitude": 14.581468, + "longitude": 50.08865, + "stopId": "U1163" + }, + { + "id": "U1164Z1", + "name": "U Počernického rybníka", + "isMetro": false, + "latitude": 14.592314, + "longitude": 50.08493, + "stopId": "U1164" + }, + { + "id": "U1164Z2", + "name": "U Počernického rybníka", + "isMetro": false, + "latitude": 14.595168, + "longitude": 50.084801, + "stopId": "U1164" + }, + { + "id": "U1165Z1", + "name": "Vinice Dolní Počernice", + "isMetro": false, + "latitude": 14.601051, + "longitude": 50.08585, + "stopId": "U1165" + }, + { + "id": "U1165Z2", + "name": "Vinice Dolní Počernice", + "isMetro": false, + "latitude": 14.601284, + "longitude": 50.085835, + "stopId": "U1165" + }, + { + "id": "U1166Z1", + "name": "Nádraží Ruzyně", + "isMetro": false, + "latitude": 14.30842, + "longitude": 50.085621, + "stopId": "U1166" + }, + { + "id": "U1166Z3", + "name": "Nádraží Ruzyně", + "isMetro": false, + "latitude": 14.307684, + "longitude": 50.085629, + "stopId": "U1166" + }, + { + "id": "U1166Z301", + "name": "Praha-Ruzyně", + "isMetro": false, + "latitude": 14.312161, + "longitude": 50.084225, + "stopId": "U1166" + }, + { + "id": "U1166Z4", + "name": "Nádraží Ruzyně", + "isMetro": false, + "latitude": 14.308246, + "longitude": 50.085396, + "stopId": "U1166" + }, + { + "id": "U1167Z1", + "name": "Brodecká", + "isMetro": false, + "latitude": 14.323389, + "longitude": 50.088764, + "stopId": "U1167" + }, + { + "id": "U1167Z2", + "name": "Brodecká", + "isMetro": false, + "latitude": 14.323855, + "longitude": 50.088852, + "stopId": "U1167" + }, + { + "id": "U1168Z1", + "name": "U Prioru", + "isMetro": false, + "latitude": 14.318845, + "longitude": 50.087093, + "stopId": "U1168" + }, + { + "id": "U1168Z2", + "name": "U Prioru", + "isMetro": false, + "latitude": 14.31935, + "longitude": 50.086784, + "stopId": "U1168" + }, + { + "id": "U1169Z1", + "name": "Ruzyňský velkoobchod", + "isMetro": false, + "latitude": 14.314582, + "longitude": 50.086563, + "stopId": "U1169" + }, + { + "id": "U1169Z2", + "name": "Ruzyňský velkoobchod", + "isMetro": false, + "latitude": 14.312789, + "longitude": 50.086113, + "stopId": "U1169" + }, + { + "id": "U116Z12", + "name": "Farkáň", + "isMetro": false, + "latitude": 14.382746, + "longitude": 50.061596, + "stopId": "U116" + }, + { + "id": "U116Z2", + "name": "Farkáň", + "isMetro": false, + "latitude": 14.382746, + "longitude": 50.061596, + "stopId": "U116" + }, + { + "id": "U1170Z1", + "name": "Českolipská", + "isMetro": false, + "latitude": 14.501594, + "longitude": 50.126537, + "stopId": "U1170" + }, + { + "id": "U1170Z2", + "name": "Českolipská", + "isMetro": false, + "latitude": 14.501584, + "longitude": 50.126835, + "stopId": "U1170" + }, + { + "id": "U1171Z1", + "name": "Dobrovice,aut.st.", + "isMetro": false, + "latitude": 14.963701, + "longitude": 50.368629, + "stopId": "U1171" + }, + { + "id": "U1171Z2", + "name": "Dobrovice,aut.st.", + "isMetro": false, + "latitude": 14.963671, + "longitude": 50.36895, + "stopId": "U1171" + }, + { + "id": "U1172Z1", + "name": "Modletice,Kaufland", + "isMetro": false, + "latitude": 14.601478, + "longitude": 49.974545, + "stopId": "U1172" + }, + { + "id": "U1172Z2", + "name": "Modletice,Kaufland", + "isMetro": false, + "latitude": 14.600656, + "longitude": 49.974911, + "stopId": "U1172" + }, + { + "id": "U1173Z1", + "name": "Dobrovice,v hájku", + "isMetro": false, + "latitude": 14.969215, + "longitude": 50.37458, + "stopId": "U1173" + }, + { + "id": "U1173Z2", + "name": "Dobrovice,v hájku", + "isMetro": false, + "latitude": 14.969299, + "longitude": 50.374508, + "stopId": "U1173" + }, + { + "id": "U1174Z1", + "name": "Dobrovice,Bojetice", + "isMetro": false, + "latitude": 14.967837, + "longitude": 50.379063, + "stopId": "U1174" + }, + { + "id": "U1174Z2", + "name": "Dobrovice,Bojetice", + "isMetro": false, + "latitude": 14.967727, + "longitude": 50.379189, + "stopId": "U1174" + }, + { + "id": "U1175Z301", + "name": "Praha-Kolovraty", + "isMetro": false, + "latitude": 14.62579, + "longitude": 50.013954, + "stopId": "U1175" + }, + { + "id": "U1176Z1", + "name": "Hostivice,Břve", + "isMetro": false, + "latitude": 14.242518, + "longitude": 50.069607, + "stopId": "U1176" + }, + { + "id": "U1176Z2", + "name": "Hostivice,Břve", + "isMetro": false, + "latitude": 14.242544, + "longitude": 50.069519, + "stopId": "U1176" + }, + { + "id": "U1177Z1", + "name": "Chýně,Pivovarský dvůr", + "isMetro": false, + "latitude": 14.232547, + "longitude": 50.06263, + "stopId": "U1177" + }, + { + "id": "U1177Z2", + "name": "Chýně,Pivovarský dvůr", + "isMetro": false, + "latitude": 14.232445, + "longitude": 50.062496, + "stopId": "U1177" + }, + { + "id": "U1178Z1", + "name": "Chýně", + "isMetro": false, + "latitude": 14.229341, + "longitude": 50.061111, + "stopId": "U1178" + }, + { + "id": "U1178Z2", + "name": "Chýně", + "isMetro": false, + "latitude": 14.228648, + "longitude": 50.06086, + "stopId": "U1178" + }, + { + "id": "U1179Z1", + "name": "Hostivice,Břve,Sportovní hala", + "isMetro": false, + "latitude": 14.24707, + "longitude": 50.068695, + "stopId": "U1179" + }, + { + "id": "U117Z1", + "name": "Filmové ateliéry Barrandov", + "isMetro": false, + "latitude": 14.392292, + "longitude": 50.031197, + "stopId": "U117" + }, + { + "id": "U117Z2", + "name": "Filmové ateliéry Barrandov", + "isMetro": false, + "latitude": 14.392295, + "longitude": 50.030918, + "stopId": "U117" + }, + { + "id": "U117Z3", + "name": "Filmové ateliéry Barrandov", + "isMetro": false, + "latitude": 14.391694, + "longitude": 50.031021, + "stopId": "U117" + }, + { + "id": "U1180Z1", + "name": "Chýně,Háje", + "isMetro": false, + "latitude": 14.21996, + "longitude": 50.058739, + "stopId": "U1180" + }, + { + "id": "U1180Z2", + "name": "Chýně,Háje", + "isMetro": false, + "latitude": 14.22037, + "longitude": 50.058666, + "stopId": "U1180" + }, + { + "id": "U1181Z1", + "name": "Plánická", + "isMetro": false, + "latitude": 14.365441, + "longitude": 49.992046, + "stopId": "U1181" + }, + { + "id": "U1182Z1", + "name": "Lahovská", + "isMetro": false, + "latitude": 14.36703, + "longitude": 49.998276, + "stopId": "U1182" + }, + { + "id": "U1183Z1", + "name": "Starolázeňská", + "isMetro": false, + "latitude": 14.389595, + "longitude": 50.016384, + "stopId": "U1183" + }, + { + "id": "U1183Z2", + "name": "Starolázeňská", + "isMetro": false, + "latitude": 14.389593, + "longitude": 50.0158, + "stopId": "U1183" + }, + { + "id": "U1184Z1", + "name": "Solná", + "isMetro": false, + "latitude": 14.366285, + "longitude": 49.996555, + "stopId": "U1184" + }, + { + "id": "U1185Z1", + "name": "Ořech,u sokolovny", + "isMetro": false, + "latitude": 14.294833, + "longitude": 50.020802, + "stopId": "U1185" + }, + { + "id": "U1185Z2", + "name": "Ořech,u sokolovny", + "isMetro": false, + "latitude": 14.294884, + "longitude": 50.02087, + "stopId": "U1185" + }, + { + "id": "U1186Z1", + "name": "Zbuzany,Obecní úřad", + "isMetro": false, + "latitude": 14.28614, + "longitude": 50.023346, + "stopId": "U1186" + }, + { + "id": "U1186Z2", + "name": "Zbuzany,Obecní úřad", + "isMetro": false, + "latitude": 14.286541, + "longitude": 50.023094, + "stopId": "U1186" + }, + { + "id": "U1187Z1", + "name": "Zbuzany,Nádraží", + "isMetro": false, + "latitude": 14.281783, + "longitude": 50.025848, + "stopId": "U1187" + }, + { + "id": "U1187Z2", + "name": "Zbuzany,Nádraží", + "isMetro": false, + "latitude": 14.282101, + "longitude": 50.025734, + "stopId": "U1187" + }, + { + "id": "U1187Z301", + "name": "Zbuzany", + "isMetro": false, + "latitude": 14.28062, + "longitude": 50.026302, + "stopId": "U1187" + }, + { + "id": "U1188Z1", + "name": "Jinočany,Hlavní", + "isMetro": false, + "latitude": 14.272667, + "longitude": 50.031284, + "stopId": "U1188" + }, + { + "id": "U1188Z2", + "name": "Jinočany,Hlavní", + "isMetro": false, + "latitude": 14.272024, + "longitude": 50.031734, + "stopId": "U1188" + }, + { + "id": "U1189Z1", + "name": "Jinočany,náměstí", + "isMetro": false, + "latitude": 14.267734, + "longitude": 50.032684, + "stopId": "U1189" + }, + { + "id": "U1189Z2", + "name": "Jinočany,náměstí", + "isMetro": false, + "latitude": 14.267467, + "longitude": 50.0327, + "stopId": "U1189" + }, + { + "id": "U1189Z3", + "name": "Jinočany,náměstí", + "isMetro": false, + "latitude": 14.268122, + "longitude": 50.032692, + "stopId": "U1189" + }, + { + "id": "U118Z1", + "name": "Flora", + "isMetro": false, + "latitude": 14.461516, + "longitude": 50.077919, + "stopId": "U118" + }, + { + "id": "U118Z101", + "name": "Flora", + "isMetro": true, + "latitude": 14.462219, + "longitude": 50.078126, + "stopId": "U118" + }, + { + "id": "U118Z102", + "name": "Flora", + "isMetro": true, + "latitude": 14.462142, + "longitude": 50.078327, + "stopId": "U118" + }, + { + "id": "U118Z2", + "name": "Flora", + "isMetro": false, + "latitude": 14.462435, + "longitude": 50.077881, + "stopId": "U118" + }, + { + "id": "U118Z3", + "name": "Flora", + "isMetro": false, + "latitude": 14.460897, + "longitude": 50.078342, + "stopId": "U118" + }, + { + "id": "U118Z4", + "name": "Flora", + "isMetro": false, + "latitude": 14.460634, + "longitude": 50.07832, + "stopId": "U118" + }, + { + "id": "U1190Z1", + "name": "Chrášťany", + "isMetro": false, + "latitude": 14.259064, + "longitude": 50.044804, + "stopId": "U1190" + }, + { + "id": "U1190Z2", + "name": "Chrášťany", + "isMetro": false, + "latitude": 14.259153, + "longitude": 50.044781, + "stopId": "U1190" + }, + { + "id": "U1191Z1", + "name": "Dreyerova", + "isMetro": false, + "latitude": 14.382833, + "longitude": 50.036316, + "stopId": "U1191" + }, + { + "id": "U1191Z2", + "name": "Dreyerova", + "isMetro": false, + "latitude": 14.383183, + "longitude": 50.036469, + "stopId": "U1191" + }, + { + "id": "U1192Z1", + "name": "Únětice", + "isMetro": false, + "latitude": 14.354934, + "longitude": 50.151817, + "stopId": "U1192" + }, + { + "id": "U1193Z1", + "name": "Zeleneč", + "isMetro": false, + "latitude": 14.660609, + "longitude": 50.133179, + "stopId": "U1193" + }, + { + "id": "U1193Z2", + "name": "Zeleneč", + "isMetro": false, + "latitude": 14.660717, + "longitude": 50.133354, + "stopId": "U1193" + }, + { + "id": "U1194Z1", + "name": "Zeleneč,U Hřiště", + "isMetro": false, + "latitude": 14.656845, + "longitude": 50.130119, + "stopId": "U1194" + }, + { + "id": "U1194Z2", + "name": "Zeleneč,U Hřiště", + "isMetro": false, + "latitude": 14.656083, + "longitude": 50.130005, + "stopId": "U1194" + }, + { + "id": "U1195Z1", + "name": "Zeleneč,Bezručova", + "isMetro": false, + "latitude": 14.660351, + "longitude": 50.132221, + "stopId": "U1195" + }, + { + "id": "U1196Z1", + "name": "Zeleneč,Obora", + "isMetro": false, + "latitude": 14.659822, + "longitude": 50.137337, + "stopId": "U1196" + }, + { + "id": "U1197Z1", + "name": "Vajgarská", + "isMetro": false, + "latitude": 14.554567, + "longitude": 50.102085, + "stopId": "U1197" + }, + { + "id": "U1197Z2", + "name": "Vajgarská", + "isMetro": false, + "latitude": 14.554551, + "longitude": 50.101852, + "stopId": "U1197" + }, + { + "id": "U1198Z1", + "name": "Litovický potok", + "isMetro": false, + "latitude": 14.326399, + "longitude": 50.088707, + "stopId": "U1198" + }, + { + "id": "U1198Z2", + "name": "Litovický potok", + "isMetro": false, + "latitude": 14.327117, + "longitude": 50.088585, + "stopId": "U1198" + }, + { + "id": "U1199Z1", + "name": "Chýnice,Pod Radnicí", + "isMetro": false, + "latitude": 14.264245, + "longitude": 49.995876, + "stopId": "U1199" + }, + { + "id": "U1199Z2", + "name": "Chýnice,Pod Radnicí", + "isMetro": false, + "latitude": 14.263883, + "longitude": 49.996002, + "stopId": "U1199" + }, + { + "id": "U1200Z1", + "name": "Chýnice", + "isMetro": false, + "latitude": 14.264418, + "longitude": 49.994144, + "stopId": "U1200" + }, + { + "id": "U1200Z2", + "name": "Chýnice", + "isMetro": false, + "latitude": 14.264664, + "longitude": 49.994377, + "stopId": "U1200" + }, + { + "id": "U1201Z1", + "name": "Statenice,Černý Vůl,Hospoda", + "isMetro": false, + "latitude": 14.333412, + "longitude": 50.146671, + "stopId": "U1201" + }, + { + "id": "U1201Z2", + "name": "Statenice,Černý Vůl,Hospoda", + "isMetro": false, + "latitude": 14.332767, + "longitude": 50.146732, + "stopId": "U1201" + }, + { + "id": "U1202Z1", + "name": "Statenice,Černý Vůl", + "isMetro": false, + "latitude": 14.329121, + "longitude": 50.148602, + "stopId": "U1202" + }, + { + "id": "U1202Z2", + "name": "Statenice,Černý Vůl", + "isMetro": false, + "latitude": 14.327716, + "longitude": 50.148857, + "stopId": "U1202" + }, + { + "id": "U1203Z1", + "name": "Radnice Řepy", + "isMetro": false, + "latitude": 14.307613, + "longitude": 50.072849, + "stopId": "U1203" + }, + { + "id": "U1203Z2", + "name": "Radnice Řepy", + "isMetro": false, + "latitude": 14.306184, + "longitude": 50.072632, + "stopId": "U1203" + }, + { + "id": "U1204Z1", + "name": "Ořech,K Ovčínu", + "isMetro": false, + "latitude": 14.29233, + "longitude": 50.01606, + "stopId": "U1204" + }, + { + "id": "U1204Z2", + "name": "Ořech,K Ovčínu", + "isMetro": false, + "latitude": 14.292449, + "longitude": 50.015682, + "stopId": "U1204" + }, + { + "id": "U1205Z1", + "name": "Ořech,u školy", + "isMetro": false, + "latitude": 14.296317, + "longitude": 50.019783, + "stopId": "U1205" + }, + { + "id": "U1205Z2", + "name": "Ořech,u školy", + "isMetro": false, + "latitude": 14.29635, + "longitude": 50.019817, + "stopId": "U1205" + }, + { + "id": "U1206Z1", + "name": "Vestec,U vodárny", + "isMetro": false, + "latitude": 14.515924, + "longitude": 49.986374, + "stopId": "U1206" + }, + { + "id": "U1206Z2", + "name": "Vestec,U vodárny", + "isMetro": false, + "latitude": 14.515557, + "longitude": 49.986176, + "stopId": "U1206" + }, + { + "id": "U1207Z1", + "name": "Vestec,U Klimešů", + "isMetro": false, + "latitude": 14.507986, + "longitude": 49.980919, + "stopId": "U1207" + }, + { + "id": "U1207Z2", + "name": "Vestec,U Klimešů", + "isMetro": false, + "latitude": 14.50716, + "longitude": 49.980759, + "stopId": "U1207" + }, + { + "id": "U1208Z1", + "name": "Vestec,Obecní úřad", + "isMetro": false, + "latitude": 14.500411, + "longitude": 49.979912, + "stopId": "U1208" + }, + { + "id": "U1208Z2", + "name": "Vestec,Obecní úřad", + "isMetro": false, + "latitude": 14.50088, + "longitude": 49.979931, + "stopId": "U1208" + }, + { + "id": "U1209Z1", + "name": "Starý Zličín", + "isMetro": false, + "latitude": 14.280684, + "longitude": 50.061852, + "stopId": "U1209" + }, + { + "id": "U1209Z2", + "name": "Starý Zličín", + "isMetro": false, + "latitude": 14.280219, + "longitude": 50.061596, + "stopId": "U1209" + }, + { + "id": "U120Z1", + "name": "Frančíkova", + "isMetro": false, + "latitude": 14.356817, + "longitude": 50.010834, + "stopId": "U120" + }, + { + "id": "U120Z2", + "name": "Frančíkova", + "isMetro": false, + "latitude": 14.356934, + "longitude": 50.010349, + "stopId": "U120" + }, + { + "id": "U1210Z1", + "name": "K Hájům", + "isMetro": false, + "latitude": 14.324045, + "longitude": 50.054955, + "stopId": "U1210" + }, + { + "id": "U1210Z2", + "name": "K Hájům", + "isMetro": false, + "latitude": 14.326282, + "longitude": 50.055233, + "stopId": "U1210" + }, + { + "id": "U1211Z1", + "name": "Raichlova", + "isMetro": false, + "latitude": 14.32821, + "longitude": 50.039173, + "stopId": "U1211" + }, + { + "id": "U1211Z2", + "name": "Raichlova", + "isMetro": false, + "latitude": 14.328451, + "longitude": 50.039093, + "stopId": "U1211" + }, + { + "id": "U1212Z1", + "name": "Statenice,U Kovárny", + "isMetro": false, + "latitude": 14.323331, + "longitude": 50.143677, + "stopId": "U1212" + }, + { + "id": "U1212Z2", + "name": "Statenice,U Kovárny", + "isMetro": false, + "latitude": 14.322495, + "longitude": 50.143463, + "stopId": "U1212" + }, + { + "id": "U1213Z1", + "name": "Statenice", + "isMetro": false, + "latitude": 14.318417, + "longitude": 50.141685, + "stopId": "U1213" + }, + { + "id": "U1214Z1", + "name": "Pučálka", + "isMetro": false, + "latitude": 14.358026, + "longitude": 50.112267, + "stopId": "U1214" + }, + { + "id": "U1214Z2", + "name": "Pučálka", + "isMetro": false, + "latitude": 14.358184, + "longitude": 50.112518, + "stopId": "U1214" + }, + { + "id": "U1215Z1", + "name": "Jeneč", + "isMetro": false, + "latitude": 14.216071, + "longitude": 50.087273, + "stopId": "U1215" + }, + { + "id": "U1215Z2", + "name": "Jeneč", + "isMetro": false, + "latitude": 14.214498, + "longitude": 50.087391, + "stopId": "U1215" + }, + { + "id": "U1215Z401", + "name": "Jeneč", + "isMetro": false, + "latitude": 14.216071, + "longitude": 50.087273, + "stopId": "U1215" + }, + { + "id": "U1215Z402", + "name": "Jeneč", + "isMetro": false, + "latitude": 14.214498, + "longitude": 50.087391, + "stopId": "U1215" + }, + { + "id": "U1216Z1", + "name": "Jeneč,Lidická", + "isMetro": false, + "latitude": 14.214396, + "longitude": 50.089394, + "stopId": "U1216" + }, + { + "id": "U1217Z1", + "name": "Hostivice,Staré Litovice", + "isMetro": false, + "latitude": 14.238533, + "longitude": 50.07645, + "stopId": "U1217" + }, + { + "id": "U1217Z2", + "name": "Hostivice,Staré Litovice", + "isMetro": false, + "latitude": 14.238963, + "longitude": 50.076488, + "stopId": "U1217" + }, + { + "id": "U1218Z1", + "name": "Hostivice,Sportovců", + "isMetro": false, + "latitude": 14.241885, + "longitude": 50.079262, + "stopId": "U1218" + }, + { + "id": "U1218Z2", + "name": "Hostivice,Sportovců", + "isMetro": false, + "latitude": 14.242567, + "longitude": 50.078659, + "stopId": "U1218" + }, + { + "id": "U1219Z1", + "name": "Průhonský háj", + "isMetro": false, + "latitude": 14.340816, + "longitude": 50.11005, + "stopId": "U1219" + }, + { + "id": "U1219Z2", + "name": "Průhonský háj", + "isMetro": false, + "latitude": 14.341766, + "longitude": 50.109863, + "stopId": "U1219" + }, + { + "id": "U121Z1", + "name": "Franty Kocourka", + "isMetro": false, + "latitude": 14.403367, + "longitude": 50.06065, + "stopId": "U121" + }, + { + "id": "U1220Z1", + "name": "Dobrovice,Týnec", + "isMetro": false, + "latitude": 14.978807, + "longitude": 50.374641, + "stopId": "U1220" + }, + { + "id": "U1220Z2", + "name": "Dobrovice,Týnec", + "isMetro": false, + "latitude": 14.979699, + "longitude": 50.374813, + "stopId": "U1220" + }, + { + "id": "U1221Z1", + "name": "Choceradská", + "isMetro": false, + "latitude": 14.490264, + "longitude": 50.043144, + "stopId": "U1221" + }, + { + "id": "U1222Z1", + "name": "Donatellova", + "isMetro": false, + "latitude": 14.508259, + "longitude": 50.072655, + "stopId": "U1222" + }, + { + "id": "U1222Z2", + "name": "Donatellova", + "isMetro": false, + "latitude": 14.507984, + "longitude": 50.072399, + "stopId": "U1222" + }, + { + "id": "U1224Z1", + "name": "Sídliště Na Groši", + "isMetro": false, + "latitude": 14.521427, + "longitude": 50.057606, + "stopId": "U1224" + }, + { + "id": "U1224Z2", + "name": "Sídliště Na Groši", + "isMetro": false, + "latitude": 14.521319, + "longitude": 50.058311, + "stopId": "U1224" + }, + { + "id": "U1225Z1", + "name": "Lipence", + "isMetro": false, + "latitude": 14.352609, + "longitude": 49.959759, + "stopId": "U1225" + }, + { + "id": "U1225Z2", + "name": "Lipence", + "isMetro": false, + "latitude": 14.353238, + "longitude": 49.959591, + "stopId": "U1225" + }, + { + "id": "U1226Z1", + "name": "U Průseku", + "isMetro": false, + "latitude": 14.517505, + "longitude": 50.059021, + "stopId": "U1226" + }, + { + "id": "U1226Z2", + "name": "U Průseku", + "isMetro": false, + "latitude": 14.516422, + "longitude": 50.059208, + "stopId": "U1226" + }, + { + "id": "U1227Z1", + "name": "Průhonice,hájovna", + "isMetro": false, + "latitude": 14.544802, + "longitude": 49.994694, + "stopId": "U1227" + }, + { + "id": "U1227Z2", + "name": "Průhonice,hájovna", + "isMetro": false, + "latitude": 14.544217, + "longitude": 49.994518, + "stopId": "U1227" + }, + { + "id": "U1228Z1", + "name": "Bazén Hloubětín", + "isMetro": false, + "latitude": 14.535791, + "longitude": 50.104519, + "stopId": "U1228" + }, + { + "id": "U1228Z2", + "name": "Bazén Hloubětín", + "isMetro": false, + "latitude": 14.535361, + "longitude": 50.104431, + "stopId": "U1228" + }, + { + "id": "U1229Z1", + "name": "Bavoryně,rozc.", + "isMetro": false, + "latitude": 13.961116, + "longitude": 49.900478, + "stopId": "U1229" + }, + { + "id": "U1229Z2", + "name": "Bavoryně,rozc.", + "isMetro": false, + "latitude": 13.960611, + "longitude": 49.899971, + "stopId": "U1229" + }, + { + "id": "U122Z1", + "name": "Náměstí U Lva", + "isMetro": false, + "latitude": 14.315799, + "longitude": 50.035419, + "stopId": "U122" + }, + { + "id": "U122Z2", + "name": "Náměstí U Lva", + "isMetro": false, + "latitude": 14.315555, + "longitude": 50.035187, + "stopId": "U122" + }, + { + "id": "U1230Z1", + "name": "Žebrák,nám.", + "isMetro": false, + "latitude": 13.896619, + "longitude": 49.875805, + "stopId": "U1230" + }, + { + "id": "U1230Z2", + "name": "Žebrák,nám.", + "isMetro": false, + "latitude": 13.896104, + "longitude": 49.875847, + "stopId": "U1230" + }, + { + "id": "U1230Z3", + "name": "Žebrák,Sokolská", + "isMetro": false, + "latitude": 13.894149, + "longitude": 49.87492, + "stopId": "U1230" + }, + { + "id": "U1230Z4", + "name": "Žebrák,Sokolská", + "isMetro": false, + "latitude": 13.894354, + "longitude": 49.875072, + "stopId": "U1230" + }, + { + "id": "U1231Z1", + "name": "Žebrák,INTOS", + "isMetro": false, + "latitude": 13.893873, + "longitude": 49.87175, + "stopId": "U1231" + }, + { + "id": "U1231Z2", + "name": "Žebrák,INTOS", + "isMetro": false, + "latitude": 13.894201, + "longitude": 49.871708, + "stopId": "U1231" + }, + { + "id": "U1232Z1", + "name": "Bašteckého", + "isMetro": false, + "latitude": 14.336379, + "longitude": 50.039913, + "stopId": "U1232" + }, + { + "id": "U1232Z2", + "name": "Bašteckého", + "isMetro": false, + "latitude": 14.335911, + "longitude": 50.039967, + "stopId": "U1232" + }, + { + "id": "U1233Z1", + "name": "K Netlukám", + "isMetro": false, + "latitude": 14.609724, + "longitude": 50.033489, + "stopId": "U1233" + }, + { + "id": "U1233Z2", + "name": "K Netlukám", + "isMetro": false, + "latitude": 14.608954, + "longitude": 50.03286, + "stopId": "U1233" + }, + { + "id": "U1235Z1", + "name": "Obchodní centrum Černý Most", + "isMetro": false, + "latitude": 14.587249, + "longitude": 50.108143, + "stopId": "U1235" + }, + { + "id": "U1235Z2", + "name": "Obchodní centrum Černý Most", + "isMetro": false, + "latitude": 14.587529, + "longitude": 50.108318, + "stopId": "U1235" + }, + { + "id": "U1237Z1", + "name": "Veleň", + "isMetro": false, + "latitude": 14.552968, + "longitude": 50.172817, + "stopId": "U1237" + }, + { + "id": "U1237Z2", + "name": "Veleň", + "isMetro": false, + "latitude": 14.552668, + "longitude": 50.172867, + "stopId": "U1237" + }, + { + "id": "U1239Z1", + "name": "Brázdim,Nový Brázdim", + "isMetro": false, + "latitude": 14.585301, + "longitude": 50.182785, + "stopId": "U1239" + }, + { + "id": "U1239Z2", + "name": "Brázdim,Nový Brázdim", + "isMetro": false, + "latitude": 14.585717, + "longitude": 50.182266, + "stopId": "U1239" + }, + { + "id": "U123Z1", + "name": "Fruta", + "isMetro": false, + "latitude": 14.582101, + "longitude": 50.043068, + "stopId": "U123" + }, + { + "id": "U123Z2", + "name": "Fruta", + "isMetro": false, + "latitude": 14.580935, + "longitude": 50.0439, + "stopId": "U123" + }, + { + "id": "U1240Z1", + "name": "Sluhy,Rozc.Brázdim", + "isMetro": false, + "latitude": 14.558742, + "longitude": 50.195618, + "stopId": "U1240" + }, + { + "id": "U1240Z2", + "name": "Sluhy,Rozc.Brázdim", + "isMetro": false, + "latitude": 14.558667, + "longitude": 50.195553, + "stopId": "U1240" + }, + { + "id": "U1241Z1", + "name": "Mratín", + "isMetro": false, + "latitude": 14.553368, + "longitude": 50.203369, + "stopId": "U1241" + }, + { + "id": "U1241Z2", + "name": "Mratín", + "isMetro": false, + "latitude": 14.553584, + "longitude": 50.203186, + "stopId": "U1241" + }, + { + "id": "U1242Z1", + "name": "Kostelec n.L.,Nám.", + "isMetro": false, + "latitude": 14.58824, + "longitude": 50.230698, + "stopId": "U1242" + }, + { + "id": "U1243Z1", + "name": "Veleň,Mírovice", + "isMetro": false, + "latitude": 14.542784, + "longitude": 50.168083, + "stopId": "U1243" + }, + { + "id": "U1243Z2", + "name": "Veleň,Mírovice", + "isMetro": false, + "latitude": 14.543801, + "longitude": 50.168686, + "stopId": "U1243" + }, + { + "id": "U1244Z1", + "name": "Brázdim,Rozc.Veliký Brázdim", + "isMetro": false, + "latitude": 14.582718, + "longitude": 50.191032, + "stopId": "U1244" + }, + { + "id": "U1244Z2", + "name": "Brázdim,Rozc.Veliký Brázdim", + "isMetro": false, + "latitude": 14.582615, + "longitude": 50.190914, + "stopId": "U1244" + }, + { + "id": "U1246Z1", + "name": "Kostelec n.L.,Žel.st.", + "isMetro": false, + "latitude": 14.582535, + "longitude": 50.222, + "stopId": "U1246" + }, + { + "id": "U1246Z2", + "name": "Kostelec n.L.,Žel.st.", + "isMetro": false, + "latitude": 14.581967, + "longitude": 50.221367, + "stopId": "U1246" + }, + { + "id": "U1246Z401", + "name": "Kostelec n.L.,Žel.st.", + "isMetro": false, + "latitude": 14.582535, + "longitude": 50.222, + "stopId": "U1246" + }, + { + "id": "U1246Z402", + "name": "Kostelec n.L.,Žel.st.", + "isMetro": false, + "latitude": 14.581967, + "longitude": 50.221367, + "stopId": "U1246" + }, + { + "id": "U1247Z1", + "name": "Sluhy", + "isMetro": false, + "latitude": 14.557618, + "longitude": 50.19239, + "stopId": "U1247" + }, + { + "id": "U1247Z2", + "name": "Sluhy", + "isMetro": false, + "latitude": 14.558263, + "longitude": 50.19101, + "stopId": "U1247" + }, + { + "id": "U1248Z1", + "name": "Kostelec n.L.,Na Růžku", + "isMetro": false, + "latitude": 14.584417, + "longitude": 50.224602, + "stopId": "U1248" + }, + { + "id": "U1248Z2", + "name": "Kostelec n.L.,Na Růžku", + "isMetro": false, + "latitude": 14.583876, + "longitude": 50.224117, + "stopId": "U1248" + }, + { + "id": "U1248Z3", + "name": "Kostelec n.L.,Na Růžku", + "isMetro": false, + "latitude": 14.585352, + "longitude": 50.224663, + "stopId": "U1248" + }, + { + "id": "U1248Z4", + "name": "Kostelec n.L.,Na Růžku", + "isMetro": false, + "latitude": 14.585883, + "longitude": 50.224575, + "stopId": "U1248" + }, + { + "id": "U1248Z401", + "name": "Kostelec n.L.,Na Růžku", + "isMetro": false, + "latitude": 14.584417, + "longitude": 50.224602, + "stopId": "U1248" + }, + { + "id": "U1248Z402", + "name": "Kostelec n.L.,Na Růžku", + "isMetro": false, + "latitude": 14.583876, + "longitude": 50.224117, + "stopId": "U1248" + }, + { + "id": "U1249Z1", + "name": "Sluhy,Nad Hájem", + "isMetro": false, + "latitude": 14.569521, + "longitude": 50.192558, + "stopId": "U1249" + }, + { + "id": "U1249Z2", + "name": "Sluhy,Nad Hájem", + "isMetro": false, + "latitude": 14.569338, + "longitude": 50.192577, + "stopId": "U1249" + }, + { + "id": "U124Z1", + "name": "Filosofská", + "isMetro": false, + "latitude": 14.428267, + "longitude": 50.021999, + "stopId": "U124" + }, + { + "id": "U124Z2", + "name": "Filosofská", + "isMetro": false, + "latitude": 14.428134, + "longitude": 50.021835, + "stopId": "U124" + }, + { + "id": "U1252Z1", + "name": "Sibřina,Stupice", + "isMetro": false, + "latitude": 14.647861, + "longitude": 50.053181, + "stopId": "U1252" + }, + { + "id": "U1252Z2", + "name": "Sibřina,Stupice", + "isMetro": false, + "latitude": 14.64784, + "longitude": 50.05336, + "stopId": "U1252" + }, + { + "id": "U1253Z1", + "name": "Sibřina,Na Paloučku", + "isMetro": false, + "latitude": 14.66854, + "longitude": 50.057449, + "stopId": "U1253" + }, + { + "id": "U1253Z2", + "name": "Sibřina", + "isMetro": false, + "latitude": 14.669868, + "longitude": 50.056267, + "stopId": "U1253" + }, + { + "id": "U1253Z3", + "name": "Sibřina", + "isMetro": false, + "latitude": 14.670086, + "longitude": 50.056221, + "stopId": "U1253" + }, + { + "id": "U1255Z1", + "name": "Zlatá", + "isMetro": false, + "latitude": 14.710533, + "longitude": 50.04039, + "stopId": "U1255" + }, + { + "id": "U1255Z2", + "name": "Zlatá", + "isMetro": false, + "latitude": 14.710291, + "longitude": 50.040459, + "stopId": "U1255" + }, + { + "id": "U1256Z1", + "name": "Škvorec,Třebohostice,škola", + "isMetro": false, + "latitude": 14.72056, + "longitude": 50.038761, + "stopId": "U1256" + }, + { + "id": "U1257Z1", + "name": "Škvorec,Třebohostice", + "isMetro": false, + "latitude": 14.720325, + "longitude": 50.037415, + "stopId": "U1257" + }, + { + "id": "U1258Z1", + "name": "Škvorec,nám.", + "isMetro": false, + "latitude": 14.730858, + "longitude": 50.046646, + "stopId": "U1258" + }, + { + "id": "U125Z1", + "name": "Fryčovická", + "isMetro": false, + "latitude": 14.505138, + "longitude": 50.139416, + "stopId": "U125" + }, + { + "id": "U125Z2", + "name": "Fryčovická", + "isMetro": false, + "latitude": 14.504693, + "longitude": 50.139141, + "stopId": "U125" + }, + { + "id": "U1260Z1", + "name": "Barrandovská", + "isMetro": false, + "latitude": 14.395894, + "longitude": 50.031528, + "stopId": "U1260" + }, + { + "id": "U1262Z1", + "name": "Dobřejovice,Čestlická", + "isMetro": false, + "latitude": 14.585555, + "longitude": 49.983841, + "stopId": "U1262" + }, + { + "id": "U1262Z2", + "name": "Dobřejovice,Čestlická", + "isMetro": false, + "latitude": 14.58555, + "longitude": 49.983799, + "stopId": "U1262" + }, + { + "id": "U1263Z4", + "name": "Dobřejovice,Na návsi", + "isMetro": false, + "latitude": 14.579589, + "longitude": 49.982002, + "stopId": "U1263" + }, + { + "id": "U1263Z5", + "name": "Dobřejovice,Na návsi", + "isMetro": false, + "latitude": 14.579123, + "longitude": 49.981743, + "stopId": "U1263" + }, + { + "id": "U1265Z1", + "name": "Obchodní centrum Sárská", + "isMetro": false, + "latitude": 14.297089, + "longitude": 50.053699, + "stopId": "U1265" + }, + { + "id": "U1265Z2", + "name": "Obchodní centrum Sárská", + "isMetro": false, + "latitude": 14.297306, + "longitude": 50.053776, + "stopId": "U1265" + }, + { + "id": "U1269Z1", + "name": "Tuháňská", + "isMetro": false, + "latitude": 14.54275, + "longitude": 50.158253, + "stopId": "U1269" + }, + { + "id": "U1269Z2", + "name": "Tuháňská", + "isMetro": false, + "latitude": 14.542601, + "longitude": 50.158436, + "stopId": "U1269" + }, + { + "id": "U126Z1", + "name": "Nádraží Podbaba", + "isMetro": false, + "latitude": 14.394159, + "longitude": 50.112328, + "stopId": "U126" + }, + { + "id": "U126Z2", + "name": "Nádraží Podbaba", + "isMetro": false, + "latitude": 14.394086, + "longitude": 50.111187, + "stopId": "U126" + }, + { + "id": "U126Z3", + "name": "Nádraží Podbaba", + "isMetro": false, + "latitude": 14.394122, + "longitude": 50.111931, + "stopId": "U126" + }, + { + "id": "U126Z301", + "name": "Praha-Podbaba", + "isMetro": false, + "latitude": 14.394747, + "longitude": 50.112808, + "stopId": "U126" + }, + { + "id": "U1272Z1", + "name": "Pod Hradem", + "isMetro": false, + "latitude": 14.637884, + "longitude": 50.038166, + "stopId": "U1272" + }, + { + "id": "U1272Z2", + "name": "Pod Hradem", + "isMetro": false, + "latitude": 14.63749, + "longitude": 50.038307, + "stopId": "U1272" + }, + { + "id": "U1274Z1", + "name": "Ametystová", + "isMetro": false, + "latitude": 14.362217, + "longitude": 49.988201, + "stopId": "U1274" + }, + { + "id": "U1276Z1", + "name": "Dřevařská", + "isMetro": false, + "latitude": 14.56448, + "longitude": 50.12632, + "stopId": "U1276" + }, + { + "id": "U1276Z2", + "name": "Dřevařská", + "isMetro": false, + "latitude": 14.564879, + "longitude": 50.126167, + "stopId": "U1276" + }, + { + "id": "U1278Z1", + "name": "Mochov", + "isMetro": false, + "latitude": 14.794695, + "longitude": 50.142063, + "stopId": "U1278" + }, + { + "id": "U1278Z2", + "name": "Mochov", + "isMetro": false, + "latitude": 14.794607, + "longitude": 50.142147, + "stopId": "U1278" + }, + { + "id": "U1278Z3", + "name": "Mochov", + "isMetro": false, + "latitude": 14.794754, + "longitude": 50.141731, + "stopId": "U1278" + }, + { + "id": "U127Z1", + "name": "Na Staré cestě", + "isMetro": false, + "latitude": 14.44199, + "longitude": 50.038338, + "stopId": "U127" + }, + { + "id": "U127Z2", + "name": "Na Staré cestě", + "isMetro": false, + "latitude": 14.441196, + "longitude": 50.038773, + "stopId": "U127" + }, + { + "id": "U1281Z1", + "name": "Vyšehořovice", + "isMetro": false, + "latitude": 14.773138, + "longitude": 50.118362, + "stopId": "U1281" + }, + { + "id": "U1281Z2", + "name": "Vyšehořovice", + "isMetro": false, + "latitude": 14.773084, + "longitude": 50.1185, + "stopId": "U1281" + }, + { + "id": "U1282Z1", + "name": "Vyšehořovice,Kozovazy", + "isMetro": false, + "latitude": 14.779902, + "longitude": 50.126549, + "stopId": "U1282" + }, + { + "id": "U1282Z2", + "name": "Vyšehořovice,Kozovazy", + "isMetro": false, + "latitude": 14.780049, + "longitude": 50.126556, + "stopId": "U1282" + }, + { + "id": "U1284Z1", + "name": "Průhonice,Komárov", + "isMetro": false, + "latitude": 14.548695, + "longitude": 50.001984, + "stopId": "U1284" + }, + { + "id": "U1284Z2", + "name": "Průhonice,Komárov", + "isMetro": false, + "latitude": 14.548178, + "longitude": 50.00444, + "stopId": "U1284" + }, + { + "id": "U1285Z1", + "name": "Práčská", + "isMetro": false, + "latitude": 14.510742, + "longitude": 50.053692, + "stopId": "U1285" + }, + { + "id": "U1285Z2", + "name": "Práčská", + "isMetro": false, + "latitude": 14.509512, + "longitude": 50.053623, + "stopId": "U1285" + }, + { + "id": "U1288Z1", + "name": "U Tabulky", + "isMetro": false, + "latitude": 14.601978, + "longitude": 50.11771, + "stopId": "U1288" + }, + { + "id": "U1288Z2", + "name": "U Tabulky", + "isMetro": false, + "latitude": 14.601506, + "longitude": 50.117489, + "stopId": "U1288" + }, + { + "id": "U128Z1", + "name": "Habrová", + "isMetro": false, + "latitude": 14.491486, + "longitude": 50.08794, + "stopId": "U128" + }, + { + "id": "U128Z2", + "name": "Habrová", + "isMetro": false, + "latitude": 14.490669, + "longitude": 50.087814, + "stopId": "U128" + }, + { + "id": "U128Z3", + "name": "Habrová", + "isMetro": false, + "latitude": 14.490422, + "longitude": 50.087894, + "stopId": "U128" + }, + { + "id": "U1290Z1", + "name": "Moravanská", + "isMetro": false, + "latitude": 14.578418, + "longitude": 50.147816, + "stopId": "U1290" + }, + { + "id": "U1290Z2", + "name": "Moravanská", + "isMetro": false, + "latitude": 14.578471, + "longitude": 50.148384, + "stopId": "U1290" + }, + { + "id": "U1291Z1", + "name": "Stavební zóna Horní Počernice", + "isMetro": false, + "latitude": 14.599371, + "longitude": 50.116432, + "stopId": "U1291" + }, + { + "id": "U1292Z1", + "name": "Kostelec n.L.,Na Cihelně", + "isMetro": false, + "latitude": 14.597816, + "longitude": 50.219822, + "stopId": "U1292" + }, + { + "id": "U1292Z2", + "name": "Kostelec n.L.,Na Cihelně", + "isMetro": false, + "latitude": 14.599743, + "longitude": 50.219002, + "stopId": "U1292" + }, + { + "id": "U1293Z1", + "name": "Radonice,Penny Market", + "isMetro": false, + "latitude": 14.619645, + "longitude": 50.132835, + "stopId": "U1293" + }, + { + "id": "U1294Z1", + "name": "K Říčanům", + "isMetro": false, + "latitude": 14.632201, + "longitude": 50.01535, + "stopId": "U1294" + }, + { + "id": "U1294Z2", + "name": "K Říčanům", + "isMetro": false, + "latitude": 14.632343, + "longitude": 50.015503, + "stopId": "U1294" + }, + { + "id": "U1295Z1", + "name": "Obchodní centrum Ruzyně", + "isMetro": false, + "latitude": 14.2923, + "longitude": 50.093285, + "stopId": "U1295" + }, + { + "id": "U1295Z2", + "name": "Obchodní centrum Ruzyně", + "isMetro": false, + "latitude": 14.292223, + "longitude": 50.092834, + "stopId": "U1295" + }, + { + "id": "U1296Z1", + "name": "Butovická", + "isMetro": false, + "latitude": 14.362631, + "longitude": 50.051552, + "stopId": "U1296" + }, + { + "id": "U1297Z1", + "name": "Pod Lochkovem", + "isMetro": false, + "latitude": 14.350277, + "longitude": 50.002705, + "stopId": "U1297" + }, + { + "id": "U1297Z2", + "name": "Pod Lochkovem", + "isMetro": false, + "latitude": 14.3508, + "longitude": 50.00296, + "stopId": "U1297" + }, + { + "id": "U129Z1", + "name": "Hadovitá", + "isMetro": false, + "latitude": 14.456737, + "longitude": 50.051556, + "stopId": "U129" + }, + { + "id": "U129Z2", + "name": "Hadovitá", + "isMetro": false, + "latitude": 14.457562, + "longitude": 50.051506, + "stopId": "U129" + }, + { + "id": "U12Z1", + "name": "Balabenka", + "isMetro": false, + "latitude": 14.482805, + "longitude": 50.104755, + "stopId": "U12" + }, + { + "id": "U12Z2", + "name": "Balabenka", + "isMetro": false, + "latitude": 14.481877, + "longitude": 50.104343, + "stopId": "U12" + }, + { + "id": "U12Z3", + "name": "Balabenka", + "isMetro": false, + "latitude": 14.482921, + "longitude": 50.104233, + "stopId": "U12" + }, + { + "id": "U12Z6", + "name": "Balabenka", + "isMetro": false, + "latitude": 14.482788, + "longitude": 50.103462, + "stopId": "U12" + }, + { + "id": "U12Z7", + "name": "Balabenka", + "isMetro": false, + "latitude": 14.482548, + "longitude": 50.103317, + "stopId": "U12" + }, + { + "id": "U1300Z1", + "name": "Nová Ves", + "isMetro": false, + "latitude": 14.534217, + "longitude": 50.219135, + "stopId": "U1300" + }, + { + "id": "U1300Z2", + "name": "Nová Ves", + "isMetro": false, + "latitude": 14.533817, + "longitude": 50.218784, + "stopId": "U1300" + }, + { + "id": "U1301Z1", + "name": "Čakovičky", + "isMetro": false, + "latitude": 14.529798, + "longitude": 50.231861, + "stopId": "U1301" + }, + { + "id": "U1302Z1", + "name": "Kojetice", + "isMetro": false, + "latitude": 14.508351, + "longitude": 50.238033, + "stopId": "U1302" + }, + { + "id": "U1302Z2", + "name": "Kojetice", + "isMetro": false, + "latitude": 14.507884, + "longitude": 50.237984, + "stopId": "U1302" + }, + { + "id": "U1303Z1", + "name": "Neratovice,Kojetická", + "isMetro": false, + "latitude": 14.519906, + "longitude": 50.25322, + "stopId": "U1303" + }, + { + "id": "U1303Z2", + "name": "Neratovice,Kojetická", + "isMetro": false, + "latitude": 14.519361, + "longitude": 50.252556, + "stopId": "U1303" + }, + { + "id": "U1304Z1", + "name": "Neratovice,Nám.Republiky", + "isMetro": false, + "latitude": 14.516962, + "longitude": 50.2598, + "stopId": "U1304" + }, + { + "id": "U1304Z2", + "name": "Neratovice,Nám.Republiky", + "isMetro": false, + "latitude": 14.517681, + "longitude": 50.258831, + "stopId": "U1304" + }, + { + "id": "U1304Z401", + "name": "Neratovice,Nám.Republiky", + "isMetro": false, + "latitude": 14.516962, + "longitude": 50.2598, + "stopId": "U1304" + }, + { + "id": "U1304Z402", + "name": "Neratovice,Nám.Republiky", + "isMetro": false, + "latitude": 14.517681, + "longitude": 50.258831, + "stopId": "U1304" + }, + { + "id": "U1305Z1", + "name": "Neratovice,Žel.st.", + "isMetro": false, + "latitude": 14.517155, + "longitude": 50.262043, + "stopId": "U1305" + }, + { + "id": "U1305Z301", + "name": "Neratovice", + "isMetro": false, + "latitude": 14.517514, + "longitude": 50.262676, + "stopId": "U1305" + }, + { + "id": "U1305Z401", + "name": "Neratovice,Žel.st.", + "isMetro": false, + "latitude": 14.517155, + "longitude": 50.262043, + "stopId": "U1305" + }, + { + "id": "U1305Z461", + "name": "Neratovice,Žel.st.", + "isMetro": false, + "latitude": 14.517454, + "longitude": 50.26231, + "stopId": "U1305" + }, + { + "id": "U1306Z1", + "name": "Libiš,Spolana 3", + "isMetro": false, + "latitude": 14.51395, + "longitude": 50.270485, + "stopId": "U1306" + }, + { + "id": "U1306Z2", + "name": "Libiš,Spolana 3", + "isMetro": false, + "latitude": 14.513817, + "longitude": 50.270218, + "stopId": "U1306" + }, + { + "id": "U1307Z1", + "name": "Libiš,Spolana 4", + "isMetro": false, + "latitude": 14.513384, + "longitude": 50.27425, + "stopId": "U1307" + }, + { + "id": "U1307Z2", + "name": "Libiš,Spolana 4", + "isMetro": false, + "latitude": 14.512768, + "longitude": 50.274185, + "stopId": "U1307" + }, + { + "id": "U1308Z1", + "name": "Líbeznice,II", + "isMetro": false, + "latitude": 14.496413, + "longitude": 50.195229, + "stopId": "U1308" + }, + { + "id": "U1308Z2", + "name": "Líbeznice,II", + "isMetro": false, + "latitude": 14.49596, + "longitude": 50.194981, + "stopId": "U1308" + }, + { + "id": "U130Z1", + "name": "Hadovka", + "isMetro": false, + "latitude": 14.375146, + "longitude": 50.099422, + "stopId": "U130" + }, + { + "id": "U130Z2", + "name": "Hadovka", + "isMetro": false, + "latitude": 14.375713, + "longitude": 50.099552, + "stopId": "U130" + }, + { + "id": "U1310Z1", + "name": "Tuchoměřice,U Dvora", + "isMetro": false, + "latitude": 14.272861, + "longitude": 50.126831, + "stopId": "U1310" + }, + { + "id": "U1310Z2", + "name": "Tuchoměřice,U Dvora", + "isMetro": false, + "latitude": 14.273292, + "longitude": 50.12751, + "stopId": "U1310" + }, + { + "id": "U1311Z1", + "name": "Polerady,Rozc.", + "isMetro": false, + "latitude": 14.589378, + "longitude": 50.201305, + "stopId": "U1311" + }, + { + "id": "U1311Z2", + "name": "Polerady,Rozc.", + "isMetro": false, + "latitude": 14.589342, + "longitude": 50.201424, + "stopId": "U1311" + }, + { + "id": "U1313Z1", + "name": "Nučice,Na Kladívku", + "isMetro": false, + "latitude": 14.882915, + "longitude": 49.957958, + "stopId": "U1313" + }, + { + "id": "U1313Z2", + "name": "Nučice,Na Kladívku", + "isMetro": false, + "latitude": 14.882951, + "longitude": 49.95826, + "stopId": "U1313" + }, + { + "id": "U1314Z1", + "name": "Malotice,Lhotky", + "isMetro": false, + "latitude": 14.955254, + "longitude": 49.954407, + "stopId": "U1314" + }, + { + "id": "U1314Z2", + "name": "Malotice,Lhotky", + "isMetro": false, + "latitude": 14.955791, + "longitude": 49.955372, + "stopId": "U1314" + }, + { + "id": "U1317Z1", + "name": "Tuchoměřice,Kněžívka", + "isMetro": false, + "latitude": 14.275537, + "longitude": 50.130383, + "stopId": "U1317" + }, + { + "id": "U1317Z2", + "name": "Tuchoměřice,Kněžívka", + "isMetro": false, + "latitude": 14.275507, + "longitude": 50.130474, + "stopId": "U1317" + }, + { + "id": "U1318Z2", + "name": "Tuchoměřice,Obecní úřad", + "isMetro": false, + "latitude": 14.279536, + "longitude": 50.132736, + "stopId": "U1318" + }, + { + "id": "U1318Z3", + "name": "Tuchoměřice,Obecní úřad", + "isMetro": false, + "latitude": 14.278933, + "longitude": 50.132778, + "stopId": "U1318" + }, + { + "id": "U1318Z402", + "name": "Tuchoměřice,Obecní úřad", + "isMetro": false, + "latitude": 14.279536, + "longitude": 50.132736, + "stopId": "U1318" + }, + { + "id": "U1318Z403", + "name": "Tuchoměřice,Obecní úřad", + "isMetro": false, + "latitude": 14.278933, + "longitude": 50.132778, + "stopId": "U1318" + }, + { + "id": "U1319Z1", + "name": "Tuchoměřice,Zámek", + "isMetro": false, + "latitude": 14.28, + "longitude": 50.13575, + "stopId": "U1319" + }, + { + "id": "U1319Z2", + "name": "Tuchoměřice,Zámek", + "isMetro": false, + "latitude": 14.279833, + "longitude": 50.135651, + "stopId": "U1319" + }, + { + "id": "U1319Z401", + "name": "Tuchoměřice,Zámek", + "isMetro": false, + "latitude": 14.28, + "longitude": 50.13575, + "stopId": "U1319" + }, + { + "id": "U1319Z402", + "name": "Tuchoměřice,Zámek", + "isMetro": false, + "latitude": 14.279833, + "longitude": 50.135651, + "stopId": "U1319" + }, + { + "id": "U131Z1", + "name": "Hájek", + "isMetro": false, + "latitude": 14.628084, + "longitude": 50.050518, + "stopId": "U131" + }, + { + "id": "U131Z2", + "name": "Hájek", + "isMetro": false, + "latitude": 14.628131, + "longitude": 50.049686, + "stopId": "U131" + }, + { + "id": "U1320Z12", + "name": "Lichoceves", + "isMetro": false, + "latitude": 14.284516, + "longitude": 50.153767, + "stopId": "U1320" + }, + { + "id": "U1321Z1", + "name": "Tuchoměřice,Pastvišťata", + "isMetro": false, + "latitude": 14.290675, + "longitude": 50.13298, + "stopId": "U1321" + }, + { + "id": "U1321Z2", + "name": "Tuchoměřice,Pastvišťata", + "isMetro": false, + "latitude": 14.290835, + "longitude": 50.133018, + "stopId": "U1321" + }, + { + "id": "U1322Z1", + "name": "Jesenice,Zdiměřice,bytovky", + "isMetro": false, + "latitude": 14.525368, + "longitude": 49.98328, + "stopId": "U1322" + }, + { + "id": "U1322Z2", + "name": "Jesenice,Zdiměřice,bytovky", + "isMetro": false, + "latitude": 14.525508, + "longitude": 49.983482, + "stopId": "U1322" + }, + { + "id": "U1323Z1", + "name": "Sídliště Skalka", + "isMetro": false, + "latitude": 14.511134, + "longitude": 50.062534, + "stopId": "U1323" + }, + { + "id": "U1323Z2", + "name": "Sídliště Skalka", + "isMetro": false, + "latitude": 14.511618, + "longitude": 50.062683, + "stopId": "U1323" + }, + { + "id": "U1326Z1", + "name": "Jesenice,Zdiměřice,u rybníka", + "isMetro": false, + "latitude": 14.532234, + "longitude": 49.97855, + "stopId": "U1326" + }, + { + "id": "U1326Z2", + "name": "Jesenice,Zdiměřice,u rybníka", + "isMetro": false, + "latitude": 14.531485, + "longitude": 49.978855, + "stopId": "U1326" + }, + { + "id": "U1327Z1", + "name": "Jesenice,Kocanda", + "isMetro": false, + "latitude": 14.542117, + "longitude": 49.971085, + "stopId": "U1327" + }, + { + "id": "U1327Z2", + "name": "Jesenice,Kocanda", + "isMetro": false, + "latitude": 14.541547, + "longitude": 49.97105, + "stopId": "U1327" + }, + { + "id": "U1328Z1", + "name": "Jesenice,Osnice,Hřbitov", + "isMetro": false, + "latitude": 14.549296, + "longitude": 49.973583, + "stopId": "U1328" + }, + { + "id": "U1328Z2", + "name": "Jesenice,Osnice,Hřbitov", + "isMetro": false, + "latitude": 14.549665, + "longitude": 49.973953, + "stopId": "U1328" + }, + { + "id": "U1329Z1", + "name": "Jesenice,Osnice", + "isMetro": false, + "latitude": 14.551534, + "longitude": 49.970036, + "stopId": "U1329" + }, + { + "id": "U1329Z2", + "name": "Jesenice,Osnice", + "isMetro": false, + "latitude": 14.551538, + "longitude": 49.969696, + "stopId": "U1329" + }, + { + "id": "U132Z1", + "name": "Hájová", + "isMetro": false, + "latitude": 14.652584, + "longitude": 50.017349, + "stopId": "U132" + }, + { + "id": "U132Z2", + "name": "Hájová", + "isMetro": false, + "latitude": 14.652834, + "longitude": 50.017517, + "stopId": "U132" + }, + { + "id": "U1330Z1", + "name": "Jesenice", + "isMetro": false, + "latitude": 14.514775, + "longitude": 49.967533, + "stopId": "U1330" + }, + { + "id": "U1330Z2", + "name": "Jesenice", + "isMetro": false, + "latitude": 14.513272, + "longitude": 49.968281, + "stopId": "U1330" + }, + { + "id": "U1330Z3", + "name": "Jesenice", + "isMetro": false, + "latitude": 14.516701, + "longitude": 49.967571, + "stopId": "U1330" + }, + { + "id": "U1331Z1", + "name": "Vestec,Šátalka", + "isMetro": false, + "latitude": 14.499228, + "longitude": 49.978104, + "stopId": "U1331" + }, + { + "id": "U1331Z2", + "name": "Vestec,Šátalka", + "isMetro": false, + "latitude": 14.499289, + "longitude": 49.978451, + "stopId": "U1331" + }, + { + "id": "U1332Z1", + "name": "Jesenice,Bytovky", + "isMetro": false, + "latitude": 14.508846, + "longitude": 49.969906, + "stopId": "U1332" + }, + { + "id": "U1332Z2", + "name": "Jesenice,Bytovky", + "isMetro": false, + "latitude": 14.507168, + "longitude": 49.970699, + "stopId": "U1332" + }, + { + "id": "U1333Z301", + "name": "Kostomlaty nad Labem", + "isMetro": false, + "latitude": 14.96211, + "longitude": 50.185921, + "stopId": "U1333" + }, + { + "id": "U1334Z2", + "name": "Blažimská", + "isMetro": false, + "latitude": 14.49285, + "longitude": 50.042583, + "stopId": "U1334" + }, + { + "id": "U1335Z1", + "name": "Jesenice,Belnická", + "isMetro": false, + "latitude": 14.529074, + "longitude": 49.969296, + "stopId": "U1335" + }, + { + "id": "U1335Z2", + "name": "Jesenice,Belnická", + "isMetro": false, + "latitude": 14.52793, + "longitude": 49.969326, + "stopId": "U1335" + }, + { + "id": "U1336Z1", + "name": "Chýnovská", + "isMetro": false, + "latitude": 14.450534, + "longitude": 50.01635, + "stopId": "U1336" + }, + { + "id": "U1339Z1", + "name": "Radonice", + "isMetro": false, + "latitude": 14.612275, + "longitude": 50.142269, + "stopId": "U1339" + }, + { + "id": "U1339Z2", + "name": "Radonice", + "isMetro": false, + "latitude": 14.61311, + "longitude": 50.140968, + "stopId": "U1339" + }, + { + "id": "U133Z1", + "name": "Hanspaulka", + "isMetro": false, + "latitude": 14.372982, + "longitude": 50.104206, + "stopId": "U133" + }, + { + "id": "U133Z2", + "name": "Hanspaulka", + "isMetro": false, + "latitude": 14.373067, + "longitude": 50.105167, + "stopId": "U133" + }, + { + "id": "U1340Z1", + "name": "Kosořice", + "isMetro": false, + "latitude": 14.967376, + "longitude": 50.334614, + "stopId": "U1340" + }, + { + "id": "U1340Z2", + "name": "Kosořice", + "isMetro": false, + "latitude": 14.967574, + "longitude": 50.334888, + "stopId": "U1340" + }, + { + "id": "U1341Z1", + "name": "Knovízská", + "isMetro": false, + "latitude": 14.500134, + "longitude": 50.04137, + "stopId": "U1341" + }, + { + "id": "U1342Z1", + "name": "Otakara Vrby", + "isMetro": false, + "latitude": 14.603355, + "longitude": 50.076603, + "stopId": "U1342" + }, + { + "id": "U1344Z1", + "name": "Hasičská", + "isMetro": false, + "latitude": 14.603679, + "longitude": 50.078281, + "stopId": "U1344" + }, + { + "id": "U1345Z1", + "name": "Bachova", + "isMetro": false, + "latitude": 14.509315, + "longitude": 50.031185, + "stopId": "U1345" + }, + { + "id": "U1345Z2", + "name": "Bachova", + "isMetro": false, + "latitude": 14.508617, + "longitude": 50.031399, + "stopId": "U1345" + }, + { + "id": "U1347Z1", + "name": "Františka Veselého", + "isMetro": false, + "latitude": 14.619998, + "longitude": 50.121559, + "stopId": "U1347" + }, + { + "id": "U1347Z2", + "name": "Františka Veselého", + "isMetro": false, + "latitude": 14.623138, + "longitude": 50.122059, + "stopId": "U1347" + }, + { + "id": "U1348Z1", + "name": "Paceřická", + "isMetro": false, + "latitude": 14.611025, + "longitude": 50.119602, + "stopId": "U1348" + }, + { + "id": "U1348Z2", + "name": "Paceřická", + "isMetro": false, + "latitude": 14.610839, + "longitude": 50.119411, + "stopId": "U1348" + }, + { + "id": "U134Z1", + "name": "Nádraží Libeň", + "isMetro": false, + "latitude": 14.50219, + "longitude": 50.102112, + "stopId": "U134" + }, + { + "id": "U134Z2", + "name": "Nádraží Libeň", + "isMetro": false, + "latitude": 14.50246, + "longitude": 50.101997, + "stopId": "U134" + }, + { + "id": "U134Z301", + "name": "Praha-Libeň", + "isMetro": false, + "latitude": 14.501663, + "longitude": 50.100788, + "stopId": "U134" + }, + { + "id": "U134Z4", + "name": "Nádraží Libeň", + "isMetro": false, + "latitude": 14.502564, + "longitude": 50.101173, + "stopId": "U134" + }, + { + "id": "U134Z5", + "name": "Nádraží Libeň", + "isMetro": false, + "latitude": 14.503235, + "longitude": 50.101551, + "stopId": "U134" + }, + { + "id": "U1351Z1", + "name": "Do Čertous", + "isMetro": false, + "latitude": 14.610955, + "longitude": 50.122688, + "stopId": "U1351" + }, + { + "id": "U1351Z2", + "name": "Do Čertous", + "isMetro": false, + "latitude": 14.609802, + "longitude": 50.122669, + "stopId": "U1351" + }, + { + "id": "U1352Z1", + "name": "Sezemická", + "isMetro": false, + "latitude": 14.619047, + "longitude": 50.124409, + "stopId": "U1352" + }, + { + "id": "U1352Z2", + "name": "Sezemická", + "isMetro": false, + "latitude": 14.619468, + "longitude": 50.124676, + "stopId": "U1352" + }, + { + "id": "U1354Z1", + "name": "Davle,Sázava", + "isMetro": false, + "latitude": 14.397072, + "longitude": 49.885601, + "stopId": "U1354" + }, + { + "id": "U1354Z2", + "name": "Davle,Sázava", + "isMetro": false, + "latitude": 14.396888, + "longitude": 49.885986, + "stopId": "U1354" + }, + { + "id": "U1355Z1", + "name": "Davle,Sázava,Třešňovka", + "isMetro": false, + "latitude": 14.402502, + "longitude": 49.884911, + "stopId": "U1355" + }, + { + "id": "U1355Z2", + "name": "Davle,Sázava,Třešňovka", + "isMetro": false, + "latitude": 14.402283, + "longitude": 49.884609, + "stopId": "U1355" + }, + { + "id": "U1356Z1", + "name": "Petrov", + "isMetro": false, + "latitude": 14.431911, + "longitude": 49.887085, + "stopId": "U1356" + }, + { + "id": "U1356Z2", + "name": "Petrov", + "isMetro": false, + "latitude": 14.432319, + "longitude": 49.886932, + "stopId": "U1356" + }, + { + "id": "U1357Z1", + "name": "Petrov,Chlomek", + "isMetro": false, + "latitude": 14.413789, + "longitude": 49.888321, + "stopId": "U1357" + }, + { + "id": "U1357Z2", + "name": "Petrov,Chlomek", + "isMetro": false, + "latitude": 14.413722, + "longitude": 49.888245, + "stopId": "U1357" + }, + { + "id": "U1358Z1", + "name": "Petrov,Ve Vilách", + "isMetro": false, + "latitude": 14.42201, + "longitude": 49.889107, + "stopId": "U1358" + }, + { + "id": "U1358Z2", + "name": "Petrov,Ve Vilách", + "isMetro": false, + "latitude": 14.42199, + "longitude": 49.889057, + "stopId": "U1358" + }, + { + "id": "U135Z1", + "name": "Hloubětín", + "isMetro": false, + "latitude": 14.536691, + "longitude": 50.106178, + "stopId": "U135" + }, + { + "id": "U135Z101", + "name": "Hloubětín", + "isMetro": true, + "latitude": 14.53646, + "longitude": 50.106767, + "stopId": "U135" + }, + { + "id": "U135Z102", + "name": "Hloubětín", + "isMetro": true, + "latitude": 14.53641, + "longitude": 50.106603, + "stopId": "U135" + }, + { + "id": "U135Z2", + "name": "Hloubětín", + "isMetro": false, + "latitude": 14.537567, + "longitude": 50.106171, + "stopId": "U135" + }, + { + "id": "U135Z3", + "name": "Hloubětín", + "isMetro": false, + "latitude": 14.538586, + "longitude": 50.105801, + "stopId": "U135" + }, + { + "id": "U135Z4", + "name": "Hloubětín", + "isMetro": false, + "latitude": 14.537479, + "longitude": 50.106033, + "stopId": "U135" + }, + { + "id": "U135Z5", + "name": "Hloubětín", + "isMetro": false, + "latitude": 14.536817, + "longitude": 50.106285, + "stopId": "U135" + }, + { + "id": "U1360Z1", + "name": "Petrov,Bohuliby,Obora", + "isMetro": false, + "latitude": 14.454755, + "longitude": 49.891285, + "stopId": "U1360" + }, + { + "id": "U1360Z2", + "name": "Petrov,Bohuliby,Obora", + "isMetro": false, + "latitude": 14.454886, + "longitude": 49.891273, + "stopId": "U1360" + }, + { + "id": "U1361Z1", + "name": "Petrov,U Ručiček", + "isMetro": false, + "latitude": 14.441881, + "longitude": 49.888203, + "stopId": "U1361" + }, + { + "id": "U1361Z2", + "name": "Petrov,U Ručiček", + "isMetro": false, + "latitude": 14.44147, + "longitude": 49.888119, + "stopId": "U1361" + }, + { + "id": "U1362Z1", + "name": "Tuchoměřice,Štěrbův Mlýn", + "isMetro": false, + "latitude": 14.301818, + "longitude": 50.135437, + "stopId": "U1362" + }, + { + "id": "U1363Z1", + "name": "Tuchoměřice,Rozc.", + "isMetro": false, + "latitude": 14.269576, + "longitude": 50.124237, + "stopId": "U1363" + }, + { + "id": "U1363Z2", + "name": "Tuchoměřice,Rozc.", + "isMetro": false, + "latitude": 14.268348, + "longitude": 50.124325, + "stopId": "U1363" + }, + { + "id": "U1364Z1", + "name": "Tuchoměřice,Špejchar", + "isMetro": false, + "latitude": 14.273691, + "longitude": 50.136269, + "stopId": "U1364" + }, + { + "id": "U1365Z1", + "name": "Průhonice,Rozkoš", + "isMetro": false, + "latitude": 14.531817, + "longitude": 49.99995, + "stopId": "U1365" + }, + { + "id": "U1365Z2", + "name": "Průhonice,Rozkoš", + "isMetro": false, + "latitude": 14.531851, + "longitude": 50, + "stopId": "U1365" + }, + { + "id": "U1366Z1", + "name": "Průhonice,Tovární", + "isMetro": false, + "latitude": 14.549112, + "longitude": 49.997829, + "stopId": "U1366" + }, + { + "id": "U1366Z2", + "name": "Průhonice,Tovární", + "isMetro": false, + "latitude": 14.548882, + "longitude": 49.997772, + "stopId": "U1366" + }, + { + "id": "U1367Z1", + "name": "Podnikatelská", + "isMetro": false, + "latitude": 14.617351, + "longitude": 50.087032, + "stopId": "U1367" + }, + { + "id": "U1367Z2", + "name": "Podnikatelská", + "isMetro": false, + "latitude": 14.617785, + "longitude": 50.087719, + "stopId": "U1367" + }, + { + "id": "U1369Z1", + "name": "Kodymova", + "isMetro": false, + "latitude": 14.337343, + "longitude": 50.051483, + "stopId": "U1369" + }, + { + "id": "U136Z1", + "name": "Lnářská", + "isMetro": false, + "latitude": 14.597964, + "longitude": 50.028248, + "stopId": "U136" + }, + { + "id": "U136Z2", + "name": "Lnářská", + "isMetro": false, + "latitude": 14.597087, + "longitude": 50.028168, + "stopId": "U136" + }, + { + "id": "U1370Z1", + "name": "Průhonice,Hole", + "isMetro": false, + "latitude": 14.553901, + "longitude": 50.000465, + "stopId": "U1370" + }, + { + "id": "U1370Z2", + "name": "Průhonice,Hole", + "isMetro": false, + "latitude": 14.551885, + "longitude": 50.000668, + "stopId": "U1370" + }, + { + "id": "U1371Z1", + "name": "Průhonice", + "isMetro": false, + "latitude": 14.56105, + "longitude": 50.001633, + "stopId": "U1371" + }, + { + "id": "U1371Z2", + "name": "Průhonice", + "isMetro": false, + "latitude": 14.560734, + "longitude": 50.001717, + "stopId": "U1371" + }, + { + "id": "U1371Z3", + "name": "Průhonice", + "isMetro": false, + "latitude": 14.561206, + "longitude": 50.001987, + "stopId": "U1371" + }, + { + "id": "U1372Z1", + "name": "Čestlice,V Oblouku", + "isMetro": false, + "latitude": 14.571708, + "longitude": 50.006161, + "stopId": "U1372" + }, + { + "id": "U1372Z2", + "name": "Čestlice,V Oblouku", + "isMetro": false, + "latitude": 14.571276, + "longitude": 50.006474, + "stopId": "U1372" + }, + { + "id": "U1373Z1", + "name": "Čestlice,nákupní zóna", + "isMetro": false, + "latitude": 14.574443, + "longitude": 50.004654, + "stopId": "U1373" + }, + { + "id": "U1373Z2", + "name": "Čestlice,nákupní zóna", + "isMetro": false, + "latitude": 14.575096, + "longitude": 50.004463, + "stopId": "U1373" + }, + { + "id": "U1374Z1", + "name": "Čestlice", + "isMetro": false, + "latitude": 14.583668, + "longitude": 50.001865, + "stopId": "U1374" + }, + { + "id": "U1374Z2", + "name": "Čestlice", + "isMetro": false, + "latitude": 14.5842, + "longitude": 50.001915, + "stopId": "U1374" + }, + { + "id": "U1374Z3", + "name": "Čestlice", + "isMetro": false, + "latitude": 14.583775, + "longitude": 50.001411, + "stopId": "U1374" + }, + { + "id": "U1375Z1", + "name": "Čestlice,zábavní park", + "isMetro": false, + "latitude": 14.577409, + "longitude": 50.00013, + "stopId": "U1375" + }, + { + "id": "U1375Z2", + "name": "Čestlice,zábavní park", + "isMetro": false, + "latitude": 14.577493, + "longitude": 50.000404, + "stopId": "U1375" + }, + { + "id": "U1376Z1", + "name": "Čestlice,Rehau", + "isMetro": false, + "latitude": 14.582069, + "longitude": 49.996857, + "stopId": "U1376" + }, + { + "id": "U1376Z2", + "name": "Čestlice,Rehau", + "isMetro": false, + "latitude": 14.583714, + "longitude": 49.996655, + "stopId": "U1376" + }, + { + "id": "U1378Z1", + "name": "Vlastibořská", + "isMetro": false, + "latitude": 14.598816, + "longitude": 50.1203, + "stopId": "U1378" + }, + { + "id": "U137Z1", + "name": "Hejtmanská", + "isMetro": false, + "latitude": 14.557034, + "longitude": 50.105392, + "stopId": "U137" + }, + { + "id": "U137Z2", + "name": "Hejtmanská", + "isMetro": false, + "latitude": 14.557206, + "longitude": 50.105293, + "stopId": "U137" + }, + { + "id": "U1381Z1", + "name": "Sedlecký přívoz", + "isMetro": false, + "latitude": 14.393034, + "longitude": 50.133701, + "stopId": "U1381" + }, + { + "id": "U1381Z11", + "name": "Sedlec", + "isMetro": false, + "latitude": 14.391905, + "longitude": 50.134682, + "stopId": "U1381" + }, + { + "id": "U1381Z2", + "name": "Sedlecký přívoz", + "isMetro": false, + "latitude": 14.393701, + "longitude": 50.132999, + "stopId": "U1381" + }, + { + "id": "U1381Z301", + "name": "Praha-Sedlec", + "isMetro": false, + "latitude": 14.394304, + "longitude": 50.132046, + "stopId": "U1381" + }, + { + "id": "U1383Z2", + "name": "Čerčany,žel.st.", + "isMetro": false, + "latitude": 14.702447, + "longitude": 49.850925, + "stopId": "U1383" + }, + { + "id": "U1383Z301", + "name": "Čerčany", + "isMetro": false, + "latitude": 14.701754, + "longitude": 49.8508, + "stopId": "U1383" + }, + { + "id": "U1384Z1", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683554, + "longitude": 49.779617, + "stopId": "U1384" + }, + { + "id": "U1384Z10", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.68386, + "longitude": 49.779182, + "stopId": "U1384" + }, + { + "id": "U1384Z11", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683881, + "longitude": 49.779133, + "stopId": "U1384" + }, + { + "id": "U1384Z15", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683873, + "longitude": 49.779617, + "stopId": "U1384" + }, + { + "id": "U1384Z16", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683991, + "longitude": 49.779732, + "stopId": "U1384" + }, + { + "id": "U1384Z2", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683638, + "longitude": 49.779427, + "stopId": "U1384" + }, + { + "id": "U1384Z3", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683712, + "longitude": 49.77927, + "stopId": "U1384" + }, + { + "id": "U1384Z301", + "name": "Benešov u Prahy", + "isMetro": false, + "latitude": 14.682836, + "longitude": 49.779503, + "stopId": "U1384" + }, + { + "id": "U1384Z4", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683811, + "longitude": 49.779083, + "stopId": "U1384" + }, + { + "id": "U1384Z6", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683763, + "longitude": 49.779377, + "stopId": "U1384" + }, + { + "id": "U1384Z7", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683787, + "longitude": 49.779327, + "stopId": "U1384" + }, + { + "id": "U1384Z8", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683811, + "longitude": 49.779278, + "stopId": "U1384" + }, + { + "id": "U1384Z9", + "name": "Benešov,Terminál", + "isMetro": false, + "latitude": 14.683833, + "longitude": 49.779228, + "stopId": "U1384" + }, + { + "id": "U1385Z1", + "name": "Rájecká", + "isMetro": false, + "latitude": 14.601953, + "longitude": 50.024944, + "stopId": "U1385" + }, + { + "id": "U1385Z2", + "name": "Rájecká", + "isMetro": false, + "latitude": 14.601701, + "longitude": 50.025539, + "stopId": "U1385" + }, + { + "id": "U1386Z1", + "name": "Hostivice,Průmyslová", + "isMetro": false, + "latitude": 14.268644, + "longitude": 50.079067, + "stopId": "U1386" + }, + { + "id": "U1386Z2", + "name": "Hostivice,Průmyslová", + "isMetro": false, + "latitude": 14.271727, + "longitude": 50.07988, + "stopId": "U1386" + }, + { + "id": "U1387Z1", + "name": "Černická", + "isMetro": false, + "latitude": 14.505984, + "longitude": 50.080151, + "stopId": "U1387" + }, + { + "id": "U138Z1", + "name": "Hellichova", + "isMetro": false, + "latitude": 14.404319, + "longitude": 50.083939, + "stopId": "U138" + }, + { + "id": "U138Z2", + "name": "Hellichova", + "isMetro": false, + "latitude": 14.404471, + "longitude": 50.084187, + "stopId": "U138" + }, + { + "id": "U1390Z1", + "name": "Svatoňovická", + "isMetro": false, + "latitude": 14.574286, + "longitude": 50.083729, + "stopId": "U1390" + }, + { + "id": "U1390Z2", + "name": "Svatoňovická", + "isMetro": false, + "latitude": 14.574309, + "longitude": 50.08416, + "stopId": "U1390" + }, + { + "id": "U1391Z1", + "name": "Mrač,Obec", + "isMetro": false, + "latitude": 14.690406, + "longitude": 49.830215, + "stopId": "U1391" + }, + { + "id": "U1392Z1", + "name": "U Bílého Mlýnku", + "isMetro": false, + "latitude": 14.527617, + "longitude": 50.156269, + "stopId": "U1392" + }, + { + "id": "U1392Z2", + "name": "U Bílého Mlýnku", + "isMetro": false, + "latitude": 14.52841, + "longitude": 50.154346, + "stopId": "U1392" + }, + { + "id": "U1393Z1", + "name": "K Letňanům", + "isMetro": false, + "latitude": 14.484067, + "longitude": 50.143509, + "stopId": "U1393" + }, + { + "id": "U1394Z1", + "name": "Poliklinika Frýdecká", + "isMetro": false, + "latitude": 14.508733, + "longitude": 50.138809, + "stopId": "U1394" + }, + { + "id": "U1394Z2", + "name": "Poliklinika Frýdecká", + "isMetro": false, + "latitude": 14.509125, + "longitude": 50.138428, + "stopId": "U1394" + }, + { + "id": "U1395Z1", + "name": "Šumperská", + "isMetro": false, + "latitude": 14.509061, + "longitude": 50.135921, + "stopId": "U1395" + }, + { + "id": "U1395Z2", + "name": "Šumperská", + "isMetro": false, + "latitude": 14.508161, + "longitude": 50.135841, + "stopId": "U1395" + }, + { + "id": "U1396Z1", + "name": "Třinecká", + "isMetro": false, + "latitude": 14.509836, + "longitude": 50.134373, + "stopId": "U1396" + }, + { + "id": "U1396Z2", + "name": "Třinecká", + "isMetro": false, + "latitude": 14.509803, + "longitude": 50.134106, + "stopId": "U1396" + }, + { + "id": "U1397Z1", + "name": "Příborská", + "isMetro": false, + "latitude": 14.510944, + "longitude": 50.131462, + "stopId": "U1397" + }, + { + "id": "U1397Z2", + "name": "Příborská", + "isMetro": false, + "latitude": 14.51113, + "longitude": 50.131386, + "stopId": "U1397" + }, + { + "id": "U139Z1", + "name": "Hercovka", + "isMetro": false, + "latitude": 14.451224, + "longitude": 50.122074, + "stopId": "U139" + }, + { + "id": "U139Z2", + "name": "Hercovka", + "isMetro": false, + "latitude": 14.453302, + "longitude": 50.121853, + "stopId": "U139" + }, + { + "id": "U13Z1", + "name": "Balkán", + "isMetro": false, + "latitude": 14.496265, + "longitude": 50.095402, + "stopId": "U13" + }, + { + "id": "U13Z2", + "name": "Balkán", + "isMetro": false, + "latitude": 14.496226, + "longitude": 50.094204, + "stopId": "U13" + }, + { + "id": "U1400Z1", + "name": "Libušín,Černá zem", + "isMetro": false, + "latitude": 14.05613, + "longitude": 50.173172, + "stopId": "U1400" + }, + { + "id": "U1400Z2", + "name": "Libušín,Černá zem", + "isMetro": false, + "latitude": 14.056026, + "longitude": 50.173374, + "stopId": "U1400" + }, + { + "id": "U1401Z1", + "name": "Kabešova", + "isMetro": false, + "latitude": 14.508271, + "longitude": 50.102463, + "stopId": "U1401" + }, + { + "id": "U1401Z2", + "name": "Kabešova", + "isMetro": false, + "latitude": 14.508062, + "longitude": 50.102318, + "stopId": "U1401" + }, + { + "id": "U1402Z1", + "name": "Vyskočilova", + "isMetro": false, + "latitude": 14.45808, + "longitude": 50.048473, + "stopId": "U1402" + }, + { + "id": "U1402Z2", + "name": "Vyskočilova", + "isMetro": false, + "latitude": 14.459102, + "longitude": 50.04842, + "stopId": "U1402" + }, + { + "id": "U1403Z1", + "name": "Za Skalkou", + "isMetro": false, + "latitude": 14.41922, + "longitude": 50.045753, + "stopId": "U1403" + }, + { + "id": "U1403Z2", + "name": "Za Skalkou", + "isMetro": false, + "latitude": 14.419503, + "longitude": 50.045479, + "stopId": "U1403" + }, + { + "id": "U1404Z1", + "name": "Na Formance", + "isMetro": false, + "latitude": 14.531507, + "longitude": 50.016556, + "stopId": "U1404" + }, + { + "id": "U1404Z2", + "name": "Na Formance", + "isMetro": false, + "latitude": 14.529058, + "longitude": 50.016769, + "stopId": "U1404" + }, + { + "id": "U1405Z1", + "name": "U Mezníku", + "isMetro": false, + "latitude": 14.623192, + "longitude": 50.051083, + "stopId": "U1405" + }, + { + "id": "U1405Z2", + "name": "U Mezníku", + "isMetro": false, + "latitude": 14.622954, + "longitude": 50.051128, + "stopId": "U1405" + }, + { + "id": "U1406Z1", + "name": "K Austisu", + "isMetro": false, + "latitude": 14.341137, + "longitude": 50.021179, + "stopId": "U1406" + }, + { + "id": "U1407Z1", + "name": "Diskařská", + "isMetro": false, + "latitude": 14.382759, + "longitude": 50.07909, + "stopId": "U1407" + }, + { + "id": "U1407Z2", + "name": "Diskařská", + "isMetro": false, + "latitude": 14.380507, + "longitude": 50.079288, + "stopId": "U1407" + }, + { + "id": "U1408Z1", + "name": "Mariánské náměstí", + "isMetro": false, + "latitude": 14.417363, + "longitude": 50.087326, + "stopId": "U1408" + }, + { + "id": "U1408Z2", + "name": "Mariánské náměstí", + "isMetro": false, + "latitude": 14.417615, + "longitude": 50.087265, + "stopId": "U1408" + }, + { + "id": "U1409Z1", + "name": "Truhlářská", + "isMetro": false, + "latitude": 14.428683, + "longitude": 50.089458, + "stopId": "U1409" + }, + { + "id": "U140Z1", + "name": "Park Maxe van der Stoela", + "isMetro": false, + "latitude": 14.385545, + "longitude": 50.090679, + "stopId": "U140" + }, + { + "id": "U140Z2", + "name": "Park Maxe van der Stoela", + "isMetro": false, + "latitude": 14.385859, + "longitude": 50.090084, + "stopId": "U140" + }, + { + "id": "U140Z3", + "name": "Hládkov", + "isMetro": false, + "latitude": 14.387568, + "longitude": 50.088699, + "stopId": "U140" + }, + { + "id": "U140Z5", + "name": "Park Maxe van der Stoela", + "isMetro": false, + "latitude": 14.386212, + "longitude": 50.089836, + "stopId": "U140" + }, + { + "id": "U140Z6", + "name": "Park Maxe van der Stoela", + "isMetro": false, + "latitude": 14.386004, + "longitude": 50.089699, + "stopId": "U140" + }, + { + "id": "U1410Z1", + "name": "Hradební", + "isMetro": false, + "latitude": 14.427145, + "longitude": 50.090748, + "stopId": "U1410" + }, + { + "id": "U1410Z2", + "name": "Hradební", + "isMetro": false, + "latitude": 14.427049, + "longitude": 50.090649, + "stopId": "U1410" + }, + { + "id": "U1413Z1", + "name": "Kundratka", + "isMetro": false, + "latitude": 14.47976, + "longitude": 50.112484, + "stopId": "U1413" + }, + { + "id": "U1413Z2", + "name": "Kundratka", + "isMetro": false, + "latitude": 14.479647, + "longitude": 50.112667, + "stopId": "U1413" + }, + { + "id": "U1414Z1", + "name": "Sicherova", + "isMetro": false, + "latitude": 14.561117, + "longitude": 50.115047, + "stopId": "U1414" + }, + { + "id": "U1414Z2", + "name": "Sicherova", + "isMetro": false, + "latitude": 14.561101, + "longitude": 50.115246, + "stopId": "U1414" + }, + { + "id": "U1415Z1", + "name": "Za Kapličkou", + "isMetro": false, + "latitude": 14.572622, + "longitude": 50.12793, + "stopId": "U1415" + }, + { + "id": "U1415Z2", + "name": "Netřebická", + "isMetro": false, + "latitude": 14.572818, + "longitude": 50.129303, + "stopId": "U1415" + }, + { + "id": "U1416Z1", + "name": "Český Brod,Na Bulánce", + "isMetro": false, + "latitude": 14.856041, + "longitude": 50.071846, + "stopId": "U1416" + }, + { + "id": "U1416Z2", + "name": "Český Brod,Na Bulánce", + "isMetro": false, + "latitude": 14.856685, + "longitude": 50.072128, + "stopId": "U1416" + }, + { + "id": "U1416Z3", + "name": "Český Brod,Na Bulánce", + "isMetro": false, + "latitude": 14.856612, + "longitude": 50.071972, + "stopId": "U1416" + }, + { + "id": "U1417Z1", + "name": "Český Brod,Sídliště", + "isMetro": false, + "latitude": 14.852761, + "longitude": 50.069992, + "stopId": "U1417" + }, + { + "id": "U1417Z2", + "name": "Český Brod,Sídliště", + "isMetro": false, + "latitude": 14.851841, + "longitude": 50.06921, + "stopId": "U1417" + }, + { + "id": "U1418Z1", + "name": "Český Brod,Zahrady", + "isMetro": false, + "latitude": 14.846831, + "longitude": 50.057842, + "stopId": "U1418" + }, + { + "id": "U1418Z2", + "name": "Český Brod,Zahrady", + "isMetro": false, + "latitude": 14.846862, + "longitude": 50.057922, + "stopId": "U1418" + }, + { + "id": "U1419Z1", + "name": "Vrátkov", + "isMetro": false, + "latitude": 14.838552, + "longitude": 50.049511, + "stopId": "U1419" + }, + { + "id": "U1419Z2", + "name": "Vrátkov", + "isMetro": false, + "latitude": 14.838632, + "longitude": 50.049549, + "stopId": "U1419" + }, + { + "id": "U141Z1", + "name": "Hlavní", + "isMetro": false, + "latitude": 14.487617, + "longitude": 50.046227, + "stopId": "U141" + }, + { + "id": "U141Z2", + "name": "Hlavní", + "isMetro": false, + "latitude": 14.486773, + "longitude": 50.04689, + "stopId": "U141" + }, + { + "id": "U141Z3", + "name": "Hlavní", + "isMetro": false, + "latitude": 14.486565, + "longitude": 50.047073, + "stopId": "U141" + }, + { + "id": "U1420Z1", + "name": "Tismice", + "isMetro": false, + "latitude": 14.817878, + "longitude": 50.058571, + "stopId": "U1420" + }, + { + "id": "U1420Z2", + "name": "Tismice", + "isMetro": false, + "latitude": 14.820263, + "longitude": 50.057426, + "stopId": "U1420" + }, + { + "id": "U1421Z1", + "name": "Tismice,MŠ", + "isMetro": false, + "latitude": 14.817341, + "longitude": 50.05637, + "stopId": "U1421" + }, + { + "id": "U1421Z2", + "name": "Tismice,MŠ", + "isMetro": false, + "latitude": 14.816661, + "longitude": 50.05611, + "stopId": "U1421" + }, + { + "id": "U1422Z1", + "name": "Mrzky", + "isMetro": false, + "latitude": 14.809458, + "longitude": 50.045898, + "stopId": "U1422" + }, + { + "id": "U1422Z2", + "name": "Mrzky", + "isMetro": false, + "latitude": 14.810381, + "longitude": 50.046223, + "stopId": "U1422" + }, + { + "id": "U1423Z1", + "name": "Doubravčice,bytovky", + "isMetro": false, + "latitude": 14.795712, + "longitude": 50.023109, + "stopId": "U1423" + }, + { + "id": "U1423Z2", + "name": "Doubravčice,bytovky", + "isMetro": false, + "latitude": 14.795852, + "longitude": 50.02306, + "stopId": "U1423" + }, + { + "id": "U1424Z1", + "name": "Masojedy", + "isMetro": false, + "latitude": 14.777938, + "longitude": 50.026165, + "stopId": "U1424" + }, + { + "id": "U1424Z2", + "name": "Masojedy", + "isMetro": false, + "latitude": 14.777695, + "longitude": 50.026039, + "stopId": "U1424" + }, + { + "id": "U1425Z1", + "name": "Hradešín", + "isMetro": false, + "latitude": 14.759831, + "longitude": 50.037899, + "stopId": "U1425" + }, + { + "id": "U1425Z2", + "name": "Hradešín", + "isMetro": false, + "latitude": 14.759781, + "longitude": 50.038002, + "stopId": "U1425" + }, + { + "id": "U1426Z1", + "name": "Přišimasy,sklady Marca", + "isMetro": false, + "latitude": 14.762021, + "longitude": 50.041519, + "stopId": "U1426" + }, + { + "id": "U1426Z2", + "name": "Přišimasy,sklady Marca", + "isMetro": false, + "latitude": 14.761621, + "longitude": 50.041042, + "stopId": "U1426" + }, + { + "id": "U1427Z1", + "name": "Přišimasy,Horka", + "isMetro": false, + "latitude": 14.764281, + "longitude": 50.048969, + "stopId": "U1427" + }, + { + "id": "U1427Z2", + "name": "Přišimasy,Horka", + "isMetro": false, + "latitude": 14.764161, + "longitude": 50.048943, + "stopId": "U1427" + }, + { + "id": "U1428Z1", + "name": "Přišimasy", + "isMetro": false, + "latitude": 14.760741, + "longitude": 50.051712, + "stopId": "U1428" + }, + { + "id": "U1428Z2", + "name": "Přišimasy", + "isMetro": false, + "latitude": 14.760571, + "longitude": 50.051781, + "stopId": "U1428" + }, + { + "id": "U1429Z1", + "name": "Škvorec,rozc.", + "isMetro": false, + "latitude": 14.739781, + "longitude": 50.044941, + "stopId": "U1429" + }, + { + "id": "U1429Z2", + "name": "Škvorec,rozc.", + "isMetro": false, + "latitude": 14.740031, + "longitude": 50.044922, + "stopId": "U1429" + }, + { + "id": "U142Z1", + "name": "Hlavní nádraží", + "isMetro": false, + "latitude": 14.435114, + "longitude": 50.086082, + "stopId": "U142" + }, + { + "id": "U142Z101", + "name": "Hlavní nádraží", + "isMetro": true, + "latitude": 14.434156, + "longitude": 50.083495, + "stopId": "U142" + }, + { + "id": "U142Z102", + "name": "Hlavní nádraží", + "isMetro": true, + "latitude": 14.434089, + "longitude": 50.083515, + "stopId": "U142" + }, + { + "id": "U142Z2", + "name": "Hlavní nádraží", + "isMetro": false, + "latitude": 14.435928, + "longitude": 50.085693, + "stopId": "U142" + }, + { + "id": "U142Z3", + "name": "Hlavní nádraží", + "isMetro": false, + "latitude": 14.434783, + "longitude": 50.082943, + "stopId": "U142" + }, + { + "id": "U142Z301", + "name": "Praha hl.n.", + "isMetro": false, + "latitude": 14.436194, + "longitude": 50.083096, + "stopId": "U142" + }, + { + "id": "U142Z4", + "name": "Hlavní nádraží", + "isMetro": false, + "latitude": 14.434601, + "longitude": 50.083218, + "stopId": "U142" + }, + { + "id": "U142Z5", + "name": "Hlavní nádraží", + "isMetro": false, + "latitude": 14.434893, + "longitude": 50.083115, + "stopId": "U142" + }, + { + "id": "U1430Z1", + "name": "Starý Vestec", + "isMetro": false, + "latitude": 14.847611, + "longitude": 50.1446, + "stopId": "U1430" + }, + { + "id": "U1430Z2", + "name": "Starý Vestec", + "isMetro": false, + "latitude": 14.847064, + "longitude": 50.144798, + "stopId": "U1430" + }, + { + "id": "U1430Z3", + "name": "Starý Vestec", + "isMetro": false, + "latitude": 14.845987, + "longitude": 50.144409, + "stopId": "U1430" + }, + { + "id": "U1430Z4", + "name": "Starý Vestec", + "isMetro": false, + "latitude": 14.846105, + "longitude": 50.144455, + "stopId": "U1430" + }, + { + "id": "U1431Z1", + "name": "Velenka", + "isMetro": false, + "latitude": 14.897143, + "longitude": 50.139076, + "stopId": "U1431" + }, + { + "id": "U1431Z2", + "name": "Velenka", + "isMetro": false, + "latitude": 14.896597, + "longitude": 50.139256, + "stopId": "U1431" + }, + { + "id": "U1432Z1", + "name": "Hradištko,Kersko hl.sil.", + "isMetro": false, + "latitude": 14.905567, + "longitude": 50.137974, + "stopId": "U1432" + }, + { + "id": "U1432Z2", + "name": "Hradištko,Kersko hl.sil.", + "isMetro": false, + "latitude": 14.903923, + "longitude": 50.138351, + "stopId": "U1432" + }, + { + "id": "U1433Z1", + "name": "Sadská,Kaple", + "isMetro": false, + "latitude": 14.969097, + "longitude": 50.133553, + "stopId": "U1433" + }, + { + "id": "U1433Z2", + "name": "Sadská,Kaple", + "isMetro": false, + "latitude": 14.969468, + "longitude": 50.133717, + "stopId": "U1433" + }, + { + "id": "U1434Z1", + "name": "Sadská", + "isMetro": false, + "latitude": 14.98661, + "longitude": 50.133305, + "stopId": "U1434" + }, + { + "id": "U1434Z2", + "name": "Sadská", + "isMetro": false, + "latitude": 14.986177, + "longitude": 50.133236, + "stopId": "U1434" + }, + { + "id": "U1435Z1", + "name": "Sadská,Husova", + "isMetro": false, + "latitude": 14.985093, + "longitude": 50.137283, + "stopId": "U1435" + }, + { + "id": "U1437Z1", + "name": "Hradištko,Kersko Branaldova", + "isMetro": false, + "latitude": 14.91222, + "longitude": 50.160973, + "stopId": "U1437" + }, + { + "id": "U1437Z2", + "name": "Hradištko,Kersko Branaldova", + "isMetro": false, + "latitude": 14.911333, + "longitude": 50.160774, + "stopId": "U1437" + }, + { + "id": "U1438Z1", + "name": "Hradištko,Chaty", + "isMetro": false, + "latitude": 14.927216, + "longitude": 50.161793, + "stopId": "U1438" + }, + { + "id": "U1438Z2", + "name": "Hradištko,Chaty", + "isMetro": false, + "latitude": 14.926575, + "longitude": 50.161823, + "stopId": "U1438" + }, + { + "id": "U1439Z1", + "name": "Hradištko", + "isMetro": false, + "latitude": 14.936663, + "longitude": 50.166168, + "stopId": "U1439" + }, + { + "id": "U1439Z2", + "name": "Hradištko", + "isMetro": false, + "latitude": 14.936703, + "longitude": 50.166306, + "stopId": "U1439" + }, + { + "id": "U143Z1", + "name": "Hlohová", + "isMetro": false, + "latitude": 14.502001, + "longitude": 50.056435, + "stopId": "U143" + }, + { + "id": "U143Z2", + "name": "Hlohová", + "isMetro": false, + "latitude": 14.502267, + "longitude": 50.056351, + "stopId": "U143" + }, + { + "id": "U1440Z1", + "name": "Sadská,Mrsolská cesta", + "isMetro": false, + "latitude": 14.964697, + "longitude": 50.149971, + "stopId": "U1440" + }, + { + "id": "U1440Z2", + "name": "Sadská,Mrsolská cesta", + "isMetro": false, + "latitude": 14.965141, + "longitude": 50.149952, + "stopId": "U1440" + }, + { + "id": "U1441Z1", + "name": "Sadská,Hotel Modrá Hvězda", + "isMetro": false, + "latitude": 14.981033, + "longitude": 50.1451, + "stopId": "U1441" + }, + { + "id": "U1441Z2", + "name": "Sadská,Hotel Modrá Hvězda", + "isMetro": false, + "latitude": 14.980655, + "longitude": 50.145317, + "stopId": "U1441" + }, + { + "id": "U1442Z301", + "name": "Pečky", + "isMetro": false, + "latitude": 15.027287, + "longitude": 50.089836, + "stopId": "U1442" + }, + { + "id": "U144Z1", + "name": "Starý Hloubětín", + "isMetro": false, + "latitude": 14.52997, + "longitude": 50.104649, + "stopId": "U144" + }, + { + "id": "U144Z2", + "name": "Starý Hloubětín", + "isMetro": false, + "latitude": 14.530711, + "longitude": 50.104706, + "stopId": "U144" + }, + { + "id": "U144Z5", + "name": "Starý Hloubětín", + "isMetro": false, + "latitude": 14.529913, + "longitude": 50.104347, + "stopId": "U144" + }, + { + "id": "U144Z6", + "name": "Starý Hloubětín", + "isMetro": false, + "latitude": 14.530208, + "longitude": 50.104019, + "stopId": "U144" + }, + { + "id": "U1450Z301", + "name": "Poříčany", + "isMetro": false, + "latitude": 14.922281, + "longitude": 50.111198, + "stopId": "U1450" + }, + { + "id": "U1451Z1", + "name": "Semice,střed", + "isMetro": false, + "latitude": 14.875706, + "longitude": 50.163914, + "stopId": "U1451" + }, + { + "id": "U1451Z2", + "name": "Semice,střed", + "isMetro": false, + "latitude": 14.873787, + "longitude": 50.164436, + "stopId": "U1451" + }, + { + "id": "U1451Z3", + "name": "Semice,střed", + "isMetro": false, + "latitude": 14.875075, + "longitude": 50.164398, + "stopId": "U1451" + }, + { + "id": "U1452Z1", + "name": "Semice,Břeha", + "isMetro": false, + "latitude": 14.871303, + "longitude": 50.164219, + "stopId": "U1452" + }, + { + "id": "U1452Z2", + "name": "Semice,Břeha", + "isMetro": false, + "latitude": 14.869116, + "longitude": 50.164089, + "stopId": "U1452" + }, + { + "id": "U1453Z1", + "name": "Semice,Na Husánku", + "isMetro": false, + "latitude": 14.857524, + "longitude": 50.165775, + "stopId": "U1453" + }, + { + "id": "U1453Z2", + "name": "Semice,Na Husánku", + "isMetro": false, + "latitude": 14.857355, + "longitude": 50.165813, + "stopId": "U1453" + }, + { + "id": "U1453Z3", + "name": "Semice,Na Husánku", + "isMetro": false, + "latitude": 14.859644, + "longitude": 50.165504, + "stopId": "U1453" + }, + { + "id": "U1453Z4", + "name": "Semice,Na Husánku", + "isMetro": false, + "latitude": 14.8583, + "longitude": 50.165848, + "stopId": "U1453" + }, + { + "id": "U1458Z1", + "name": "Hradištko,Kersko Hrabalova", + "isMetro": false, + "latitude": 14.902729, + "longitude": 50.158813, + "stopId": "U1458" + }, + { + "id": "U1458Z2", + "name": "Hradištko,Kersko Hrabalova", + "isMetro": false, + "latitude": 14.903045, + "longitude": 50.158936, + "stopId": "U1458" + }, + { + "id": "U1459Z1", + "name": "Borek", + "isMetro": false, + "latitude": 14.65274, + "longitude": 50.22506, + "stopId": "U1459" + }, + { + "id": "U1459Z2", + "name": "Borek", + "isMetro": false, + "latitude": 14.652821, + "longitude": 50.224083, + "stopId": "U1459" + }, + { + "id": "U145Z1", + "name": "Mladějovská", + "isMetro": false, + "latitude": 14.56035, + "longitude": 50.132549, + "stopId": "U145" + }, + { + "id": "U145Z2", + "name": "Mladějovská", + "isMetro": false, + "latitude": 14.560447, + "longitude": 50.132706, + "stopId": "U145" + }, + { + "id": "U1460Z1", + "name": "Lhota", + "isMetro": false, + "latitude": 14.656252, + "longitude": 50.242714, + "stopId": "U1460" + }, + { + "id": "U1460Z2", + "name": "Lhota", + "isMetro": false, + "latitude": 14.656146, + "longitude": 50.242451, + "stopId": "U1460" + }, + { + "id": "U1462Z1", + "name": "Křenek", + "isMetro": false, + "latitude": 14.629146, + "longitude": 50.231174, + "stopId": "U1462" + }, + { + "id": "U1463Z1", + "name": "Sudovo Hlavno,Konětopská", + "isMetro": false, + "latitude": 14.678566, + "longitude": 50.263077, + "stopId": "U1463" + }, + { + "id": "U1463Z2", + "name": "Sudovo Hlavno,Konětopská", + "isMetro": false, + "latitude": 14.677059, + "longitude": 50.263565, + "stopId": "U1463" + }, + { + "id": "U1464Z1", + "name": "Dřísy", + "isMetro": false, + "latitude": 14.644623, + "longitude": 50.256317, + "stopId": "U1464" + }, + { + "id": "U1464Z2", + "name": "Dřísy", + "isMetro": false, + "latitude": 14.644865, + "longitude": 50.256504, + "stopId": "U1464" + }, + { + "id": "U1465Z1", + "name": "Dřísy,U Vily", + "isMetro": false, + "latitude": 14.64392, + "longitude": 50.251793, + "stopId": "U1465" + }, + { + "id": "U1465Z2", + "name": "Dřísy,U Vily", + "isMetro": false, + "latitude": 14.644609, + "longitude": 50.25156, + "stopId": "U1465" + }, + { + "id": "U1466Z1", + "name": "Dřísy,Žel.st.", + "isMetro": false, + "latitude": 14.636086, + "longitude": 50.243801, + "stopId": "U1466" + }, + { + "id": "U1466Z2", + "name": "Dřísy,Žel.st.", + "isMetro": false, + "latitude": 14.635024, + "longitude": 50.242977, + "stopId": "U1466" + }, + { + "id": "U1466Z301", + "name": "Dřísy", + "isMetro": false, + "latitude": 14.634453, + "longitude": 50.242756, + "stopId": "U1466" + }, + { + "id": "U1467Z1", + "name": "Konětopy", + "isMetro": false, + "latitude": 14.655613, + "longitude": 50.27467, + "stopId": "U1467" + }, + { + "id": "U1467Z2", + "name": "Konětopy", + "isMetro": false, + "latitude": 14.655662, + "longitude": 50.274803, + "stopId": "U1467" + }, + { + "id": "U1468Z1", + "name": "Hlavenec", + "isMetro": false, + "latitude": 14.700916, + "longitude": 50.237873, + "stopId": "U1468" + }, + { + "id": "U1468Z2", + "name": "Hlavenec", + "isMetro": false, + "latitude": 14.700744, + "longitude": 50.237827, + "stopId": "U1468" + }, + { + "id": "U146Z1", + "name": "Nádraží Hlubočepy", + "isMetro": false, + "latitude": 14.393783, + "longitude": 50.041031, + "stopId": "U146" + }, + { + "id": "U146Z2", + "name": "Nádraží Hlubočepy", + "isMetro": false, + "latitude": 14.394589, + "longitude": 50.041523, + "stopId": "U146" + }, + { + "id": "U146Z301", + "name": "Praha-Hlubočepy", + "isMetro": false, + "latitude": 14.393867, + "longitude": 50.040699, + "stopId": "U146" + }, + { + "id": "U1470Z1", + "name": "Kostelní Hlavno,U Kostela", + "isMetro": false, + "latitude": 14.69771, + "longitude": 50.258186, + "stopId": "U1470" + }, + { + "id": "U1470Z2", + "name": "Kostelní Hlavno,U Kostela", + "isMetro": false, + "latitude": 14.695829, + "longitude": 50.258793, + "stopId": "U1470" + }, + { + "id": "U1471Z1", + "name": "Kostelní Hlavno,U Pomníku", + "isMetro": false, + "latitude": 14.69937, + "longitude": 50.25732, + "stopId": "U1471" + }, + { + "id": "U1471Z2", + "name": "Kostelní Hlavno,U Pomníku", + "isMetro": false, + "latitude": 14.699001, + "longitude": 50.25692, + "stopId": "U1471" + }, + { + "id": "U1472Z1", + "name": "Sudovo Hlavno", + "isMetro": false, + "latitude": 14.685234, + "longitude": 50.262543, + "stopId": "U1472" + }, + { + "id": "U1472Z2", + "name": "Sudovo Hlavno", + "isMetro": false, + "latitude": 14.684963, + "longitude": 50.262268, + "stopId": "U1472" + }, + { + "id": "U1473Z1", + "name": "Mečeříž", + "isMetro": false, + "latitude": 14.73625, + "longitude": 50.290058, + "stopId": "U1473" + }, + { + "id": "U1474Z1", + "name": "Suchdol,Vysoká,rozc.", + "isMetro": false, + "latitude": 15.182374, + "longitude": 49.951286, + "stopId": "U1474" + }, + { + "id": "U1474Z2", + "name": "Suchdol,Vysoká,rozc.", + "isMetro": false, + "latitude": 15.182549, + "longitude": 49.951389, + "stopId": "U1474" + }, + { + "id": "U1475Z1", + "name": "Miskovice", + "isMetro": false, + "latitude": 15.206516, + "longitude": 49.946381, + "stopId": "U1475" + }, + { + "id": "U1475Z2", + "name": "Miskovice", + "isMetro": false, + "latitude": 15.207381, + "longitude": 49.946644, + "stopId": "U1475" + }, + { + "id": "U1476Z1", + "name": "Miskovice,Přítoky", + "isMetro": false, + "latitude": 15.237856, + "longitude": 49.947594, + "stopId": "U1476" + }, + { + "id": "U1476Z2", + "name": "Miskovice,Přítoky", + "isMetro": false, + "latitude": 15.237857, + "longitude": 49.947739, + "stopId": "U1476" + }, + { + "id": "U1477Z301", + "name": "Mnetěš", + "isMetro": false, + "latitude": 14.276072, + "longitude": 50.359898, + "stopId": "U1477" + }, + { + "id": "U1478Z301", + "name": "Praha-Holyně", + "isMetro": false, + "latitude": 14.348548, + "longitude": 50.032845, + "stopId": "U1478" + }, + { + "id": "U1479Z1", + "name": "Mnetěš", + "isMetro": false, + "latitude": 14.282889, + "longitude": 50.366028, + "stopId": "U1479" + }, + { + "id": "U1479Z2", + "name": "Mnetěš", + "isMetro": false, + "latitude": 14.282848, + "longitude": 50.366169, + "stopId": "U1479" + }, + { + "id": "U147Z3", + "name": "Hlubočepy", + "isMetro": false, + "latitude": 14.404387, + "longitude": 50.041794, + "stopId": "U147" + }, + { + "id": "U147Z4", + "name": "Hlubočepy", + "isMetro": false, + "latitude": 14.404761, + "longitude": 50.042149, + "stopId": "U147" + }, + { + "id": "U147Z5", + "name": "Hlubočepy", + "isMetro": false, + "latitude": 14.4046, + "longitude": 50.042393, + "stopId": "U147" + }, + { + "id": "U147Z6", + "name": "Hlubočepy", + "isMetro": false, + "latitude": 14.404387, + "longitude": 50.042168, + "stopId": "U147" + }, + { + "id": "U147Z7", + "name": "Hlubočepy", + "isMetro": false, + "latitude": 14.404411, + "longitude": 50.042797, + "stopId": "U147" + }, + { + "id": "U147Z8", + "name": "Hlubočepy", + "isMetro": false, + "latitude": 14.404222, + "longitude": 50.042698, + "stopId": "U147" + }, + { + "id": "U1480Z301", + "name": "Praha-Žvahov", + "isMetro": false, + "latitude": 14.402428, + "longitude": 50.045673, + "stopId": "U1480" + }, + { + "id": "U1482Z301", + "name": "Praha-Cibulka", + "isMetro": false, + "latitude": 14.362176, + "longitude": 50.064575, + "stopId": "U1482" + }, + { + "id": "U1483Z301", + "name": "Praha-Stodůlky", + "isMetro": false, + "latitude": 14.346107, + "longitude": 50.062206, + "stopId": "U1483" + }, + { + "id": "U1484Z1", + "name": "Hovorčovice", + "isMetro": false, + "latitude": 14.51675, + "longitude": 50.181835, + "stopId": "U1484" + }, + { + "id": "U1484Z2", + "name": "Hovorčovice", + "isMetro": false, + "latitude": 14.516793, + "longitude": 50.181503, + "stopId": "U1484" + }, + { + "id": "U1488Z1", + "name": "Milovice,Armádní", + "isMetro": false, + "latitude": 14.86868, + "longitude": 50.229248, + "stopId": "U1488" + }, + { + "id": "U1488Z2", + "name": "Milovice,Armádní", + "isMetro": false, + "latitude": 14.86746, + "longitude": 50.229153, + "stopId": "U1488" + }, + { + "id": "U1489Z51", + "name": "Milovice,Balonka", + "isMetro": false, + "latitude": 14.89329, + "longitude": 50.230774, + "stopId": "U1489" + }, + { + "id": "U1489Z52", + "name": "Milovice,Balonka", + "isMetro": false, + "latitude": 14.891181, + "longitude": 50.231003, + "stopId": "U1489" + }, + { + "id": "U148Z1", + "name": "Holečkova", + "isMetro": false, + "latitude": 14.394972, + "longitude": 50.074223, + "stopId": "U148" + }, + { + "id": "U148Z2", + "name": "Holečkova", + "isMetro": false, + "latitude": 14.395817, + "longitude": 50.074318, + "stopId": "U148" + }, + { + "id": "U1490Z1", + "name": "Milovice,Benátecká Vrutice", + "isMetro": false, + "latitude": 14.837469, + "longitude": 50.230331, + "stopId": "U1490" + }, + { + "id": "U1490Z2", + "name": "Milovice,Benátecká Vrutice", + "isMetro": false, + "latitude": 14.83782, + "longitude": 50.23008, + "stopId": "U1490" + }, + { + "id": "U1492Z1", + "name": "Milovice,Radnice", + "isMetro": false, + "latitude": 14.875146, + "longitude": 50.228474, + "stopId": "U1492" + }, + { + "id": "U1492Z2", + "name": "Milovice,Radnice", + "isMetro": false, + "latitude": 14.877569, + "longitude": 50.228817, + "stopId": "U1492" + }, + { + "id": "U1493Z2", + "name": "Milovice,Sportovní", + "isMetro": false, + "latitude": 14.865162, + "longitude": 50.230522, + "stopId": "U1493" + }, + { + "id": "U1494Z1", + "name": "Milovice,Škola", + "isMetro": false, + "latitude": 14.886132, + "longitude": 50.228626, + "stopId": "U1494" + }, + { + "id": "U1494Z2", + "name": "Milovice,Škola", + "isMetro": false, + "latitude": 14.885979, + "longitude": 50.228512, + "stopId": "U1494" + }, + { + "id": "U1495Z1", + "name": "Milovice,sídliště Průběžná", + "isMetro": false, + "latitude": 14.861539, + "longitude": 50.229439, + "stopId": "U1495" + }, + { + "id": "U1495Z2", + "name": "Milovice,sídliště Průběžná", + "isMetro": false, + "latitude": 14.86205, + "longitude": 50.229305, + "stopId": "U1495" + }, + { + "id": "U1496Z1", + "name": "Milovice,žel.st.", + "isMetro": false, + "latitude": 14.882236, + "longitude": 50.229137, + "stopId": "U1496" + }, + { + "id": "U1496Z2", + "name": "Milovice,žel.st.", + "isMetro": false, + "latitude": 14.882825, + "longitude": 50.228661, + "stopId": "U1496" + }, + { + "id": "U1496Z301", + "name": "Milovice", + "isMetro": false, + "latitude": 14.881565, + "longitude": 50.228951, + "stopId": "U1496" + }, + { + "id": "U1497Z1", + "name": "Kostelní Lhota,U Kovárny", + "isMetro": false, + "latitude": 15.022853, + "longitude": 50.129589, + "stopId": "U1497" + }, + { + "id": "U1497Z2", + "name": "Kostelní Lhota,U Kovárny", + "isMetro": false, + "latitude": 15.021669, + "longitude": 50.129803, + "stopId": "U1497" + }, + { + "id": "U1498Z1", + "name": "Kostelní Lhota", + "isMetro": false, + "latitude": 15.030527, + "longitude": 50.129662, + "stopId": "U1498" + }, + { + "id": "U1498Z2", + "name": "Kostelní Lhota", + "isMetro": false, + "latitude": 15.031538, + "longitude": 50.129795, + "stopId": "U1498" + }, + { + "id": "U1499Z1", + "name": "Horoušany,Horoušánky,U Tří svatých", + "isMetro": false, + "latitude": 14.71245, + "longitude": 50.099632, + "stopId": "U1499" + }, + { + "id": "U1499Z2", + "name": "Horoušany,Horoušánky,U Tří svatých", + "isMetro": false, + "latitude": 14.7126, + "longitude": 50.099865, + "stopId": "U1499" + }, + { + "id": "U149Z1", + "name": "Stará Holyně", + "isMetro": false, + "latitude": 14.357157, + "longitude": 50.029781, + "stopId": "U149" + }, + { + "id": "U149Z2", + "name": "Stará Holyně", + "isMetro": false, + "latitude": 14.356709, + "longitude": 50.029629, + "stopId": "U149" + }, + { + "id": "U14Z1", + "name": "Baně", + "isMetro": false, + "latitude": 14.379086, + "longitude": 49.952576, + "stopId": "U14" + }, + { + "id": "U14Z2", + "name": "Baně", + "isMetro": false, + "latitude": 14.379204, + "longitude": 49.952782, + "stopId": "U14" + }, + { + "id": "U1500Z1", + "name": "Šestajovice,Za Stodolami", + "isMetro": false, + "latitude": 14.679966, + "longitude": 50.113014, + "stopId": "U1500" + }, + { + "id": "U1500Z2", + "name": "Šestajovice,Za Stodolami", + "isMetro": false, + "latitude": 14.679466, + "longitude": 50.113548, + "stopId": "U1500" + }, + { + "id": "U1501Z1", + "name": "Dolní Břežany,Na kopečku", + "isMetro": false, + "latitude": 14.462041, + "longitude": 49.969082, + "stopId": "U1501" + }, + { + "id": "U1501Z2", + "name": "Dolní Břežany,Na kopečku", + "isMetro": false, + "latitude": 14.46199, + "longitude": 49.968941, + "stopId": "U1501" + }, + { + "id": "U1502Z1", + "name": "Dolní Břežany,Náměstí", + "isMetro": false, + "latitude": 14.459209, + "longitude": 49.96452, + "stopId": "U1502" + }, + { + "id": "U1502Z2", + "name": "Dolní Břežany,Náměstí", + "isMetro": false, + "latitude": 14.45889, + "longitude": 49.96373, + "stopId": "U1502" + }, + { + "id": "U1503Z1", + "name": "Dolní Břežany,Obecní úřad", + "isMetro": false, + "latitude": 14.455581, + "longitude": 49.963291, + "stopId": "U1503" + }, + { + "id": "U1503Z2", + "name": "Dolní Břežany,Obecní úřad", + "isMetro": false, + "latitude": 14.457081, + "longitude": 49.963192, + "stopId": "U1503" + }, + { + "id": "U1504Z1", + "name": "Dolní Břežany,Lhota", + "isMetro": false, + "latitude": 14.43284, + "longitude": 49.956181, + "stopId": "U1504" + }, + { + "id": "U1504Z2", + "name": "Dolní Břežany,Lhota", + "isMetro": false, + "latitude": 14.432711, + "longitude": 49.956181, + "stopId": "U1504" + }, + { + "id": "U1506Z1", + "name": "Ohrobec,U Čisteckých", + "isMetro": false, + "latitude": 14.433878, + "longitude": 49.94762, + "stopId": "U1506" + }, + { + "id": "U1506Z2", + "name": "Ohrobec,U Čisteckých", + "isMetro": false, + "latitude": 14.434096, + "longitude": 49.94783, + "stopId": "U1506" + }, + { + "id": "U1507Z1", + "name": "Ohrobec", + "isMetro": false, + "latitude": 14.43122, + "longitude": 49.943741, + "stopId": "U1507" + }, + { + "id": "U1507Z2", + "name": "Ohrobec", + "isMetro": false, + "latitude": 14.431763, + "longitude": 49.943645, + "stopId": "U1507" + }, + { + "id": "U1508Z1", + "name": "Ohrobec,Károv", + "isMetro": false, + "latitude": 14.419432, + "longitude": 49.947483, + "stopId": "U1508" + }, + { + "id": "U1508Z2", + "name": "Ohrobec,Károv", + "isMetro": false, + "latitude": 14.419999, + "longitude": 49.94733, + "stopId": "U1508" + }, + { + "id": "U1509Z1", + "name": "Dolní Břežany,Zálepy", + "isMetro": false, + "latitude": 14.411173, + "longitude": 49.948483, + "stopId": "U1509" + }, + { + "id": "U150Z1", + "name": "Weberova", + "isMetro": false, + "latitude": 14.3555, + "longitude": 50.073502, + "stopId": "U150" + }, + { + "id": "U150Z2", + "name": "Weberova", + "isMetro": false, + "latitude": 14.35625, + "longitude": 50.073502, + "stopId": "U150" + }, + { + "id": "U1510Z1", + "name": "Dolní Břežany,Na Rovném", + "isMetro": false, + "latitude": 14.449606, + "longitude": 49.958324, + "stopId": "U1510" + }, + { + "id": "U1510Z2", + "name": "Dolní Břežany,Na Rovném", + "isMetro": false, + "latitude": 14.450721, + "longitude": 49.958702, + "stopId": "U1510" + }, + { + "id": "U1511Z1", + "name": "Dolní Břežany,Hřiště", + "isMetro": false, + "latitude": 14.452319, + "longitude": 49.960876, + "stopId": "U1511" + }, + { + "id": "U1511Z2", + "name": "Dolní Břežany,Hřiště", + "isMetro": false, + "latitude": 14.452707, + "longitude": 49.961681, + "stopId": "U1511" + }, + { + "id": "U1512Z1", + "name": "Ohrobec,U Rybníka", + "isMetro": false, + "latitude": 14.431419, + "longitude": 49.942543, + "stopId": "U1512" + }, + { + "id": "U1512Z2", + "name": "Ohrobec,U Rybníka", + "isMetro": false, + "latitude": 14.431471, + "longitude": 49.942402, + "stopId": "U1512" + }, + { + "id": "U1513Z1", + "name": "Zvole", + "isMetro": false, + "latitude": 14.42282, + "longitude": 49.933418, + "stopId": "U1513" + }, + { + "id": "U1513Z2", + "name": "Zvole", + "isMetro": false, + "latitude": 14.422788, + "longitude": 49.933643, + "stopId": "U1513" + }, + { + "id": "U1514Z1", + "name": "Zvole,Černíky", + "isMetro": false, + "latitude": 14.41946, + "longitude": 49.92075, + "stopId": "U1514" + }, + { + "id": "U1514Z2", + "name": "Zvole,Černíky", + "isMetro": false, + "latitude": 14.419841, + "longitude": 49.920872, + "stopId": "U1514" + }, + { + "id": "U1515Z1", + "name": "Březová-Oleško,Březová", + "isMetro": false, + "latitude": 14.41559, + "longitude": 49.915001, + "stopId": "U1515" + }, + { + "id": "U1515Z2", + "name": "Březová-Oleško,Březová", + "isMetro": false, + "latitude": 14.41559, + "longitude": 49.91507, + "stopId": "U1515" + }, + { + "id": "U1516Z1", + "name": "Březová-Oleško,U Topolů", + "isMetro": false, + "latitude": 14.41312, + "longitude": 49.90818, + "stopId": "U1516" + }, + { + "id": "U1516Z2", + "name": "Březová-Oleško,U Topolů", + "isMetro": false, + "latitude": 14.413191, + "longitude": 49.908459, + "stopId": "U1516" + }, + { + "id": "U1517Z1", + "name": "Březová-Oleško,Oleško", + "isMetro": false, + "latitude": 14.410974, + "longitude": 49.901726, + "stopId": "U1517" + }, + { + "id": "U1517Z2", + "name": "Březová-Oleško,Oleško", + "isMetro": false, + "latitude": 14.410552, + "longitude": 49.902046, + "stopId": "U1517" + }, + { + "id": "U151Z1", + "name": "Horčičkova", + "isMetro": false, + "latitude": 14.534417, + "longitude": 50.032001, + "stopId": "U151" + }, + { + "id": "U151Z2", + "name": "Horčičkova", + "isMetro": false, + "latitude": 14.533734, + "longitude": 50.031784, + "stopId": "U151" + }, + { + "id": "U1520Z1", + "name": "Okrouhlo", + "isMetro": false, + "latitude": 14.44754, + "longitude": 49.918831, + "stopId": "U1520" + }, + { + "id": "U1520Z2", + "name": "Okrouhlo", + "isMetro": false, + "latitude": 14.44766, + "longitude": 49.91885, + "stopId": "U1520" + }, + { + "id": "U1521Z1", + "name": "Okrouhlo,Zahořany", + "isMetro": false, + "latitude": 14.45915, + "longitude": 49.90947, + "stopId": "U1521" + }, + { + "id": "U1521Z2", + "name": "Okrouhlo,Zahořany", + "isMetro": false, + "latitude": 14.459161, + "longitude": 49.909439, + "stopId": "U1521" + }, + { + "id": "U1522Z1", + "name": "Vestec,Safina", + "isMetro": false, + "latitude": 14.494081, + "longitude": 49.985451, + "stopId": "U1522" + }, + { + "id": "U1522Z2", + "name": "Vestec,Safina", + "isMetro": false, + "latitude": 14.493956, + "longitude": 49.985855, + "stopId": "U1522" + }, + { + "id": "U1523Z1", + "name": "Dolní Břežany,Na Spálence", + "isMetro": false, + "latitude": 14.440512, + "longitude": 49.966797, + "stopId": "U1523" + }, + { + "id": "U1523Z2", + "name": "Dolní Břežany,Na Spálence", + "isMetro": false, + "latitude": 14.44116, + "longitude": 49.966606, + "stopId": "U1523" + }, + { + "id": "U1524Z1", + "name": "Dolní Břežany,Škola", + "isMetro": false, + "latitude": 14.460805, + "longitude": 49.966125, + "stopId": "U1524" + }, + { + "id": "U1524Z2", + "name": "Dolní Břežany,Škola", + "isMetro": false, + "latitude": 14.460958, + "longitude": 49.966312, + "stopId": "U1524" + }, + { + "id": "U1525Z1", + "name": "Zlatníky-Hodkovice,Břežanská", + "isMetro": false, + "latitude": 14.483191, + "longitude": 49.970211, + "stopId": "U1525" + }, + { + "id": "U1525Z2", + "name": "Zlatníky-Hodkovice,Břežanská", + "isMetro": false, + "latitude": 14.483321, + "longitude": 49.970154, + "stopId": "U1525" + }, + { + "id": "U1526Z1", + "name": "Zlatníky-Hodkovice,Slunečná", + "isMetro": false, + "latitude": 14.482101, + "longitude": 49.966377, + "stopId": "U1526" + }, + { + "id": "U1526Z2", + "name": "Zlatníky-Hodkovice,Slunečná", + "isMetro": false, + "latitude": 14.482337, + "longitude": 49.966812, + "stopId": "U1526" + }, + { + "id": "U1527Z1", + "name": "Zlatníky-Hodkovice,U Prodejny", + "isMetro": false, + "latitude": 14.481099, + "longitude": 49.962387, + "stopId": "U1527" + }, + { + "id": "U1528Z1", + "name": "Zlatníky-Hodkovice,Náves", + "isMetro": false, + "latitude": 14.480968, + "longitude": 49.959381, + "stopId": "U1528" + }, + { + "id": "U1528Z2", + "name": "Zlatníky-Hodkovice,Náves", + "isMetro": false, + "latitude": 14.48093, + "longitude": 49.961311, + "stopId": "U1528" + }, + { + "id": "U1529Z1", + "name": "Zlatníky-Hodkovice,U Hasičárny", + "isMetro": false, + "latitude": 14.480322, + "longitude": 49.956989, + "stopId": "U1529" + }, + { + "id": "U1529Z2", + "name": "Zlatníky-Hodkovice,U Hasičárny", + "isMetro": false, + "latitude": 14.480591, + "longitude": 49.95734, + "stopId": "U1529" + }, + { + "id": "U152Z1", + "name": "Horky", + "isMetro": false, + "latitude": 14.446627, + "longitude": 50.061451, + "stopId": "U152" + }, + { + "id": "U152Z2", + "name": "Horky", + "isMetro": false, + "latitude": 14.445897, + "longitude": 50.061672, + "stopId": "U152" + }, + { + "id": "U1530Z1", + "name": "Libeř,Libeň,Oáza", + "isMetro": false, + "latitude": 14.47447, + "longitude": 49.951481, + "stopId": "U1530" + }, + { + "id": "U1530Z2", + "name": "Libeř,Libeň,Oáza", + "isMetro": false, + "latitude": 14.474661, + "longitude": 49.951542, + "stopId": "U1530" + }, + { + "id": "U1531Z1", + "name": "Jesenice,Horní Jirčany", + "isMetro": false, + "latitude": 14.53777, + "longitude": 49.951981, + "stopId": "U1531" + }, + { + "id": "U1531Z2", + "name": "Jesenice,Horní Jirčany", + "isMetro": false, + "latitude": 14.537296, + "longitude": 49.952446, + "stopId": "U1531" + }, + { + "id": "U1532Z1", + "name": "Jesenice,Horní Jirčany,Vodárna", + "isMetro": false, + "latitude": 14.543051, + "longitude": 49.946281, + "stopId": "U1532" + }, + { + "id": "U1532Z2", + "name": "Jesenice,Horní Jirčany,Vodárna", + "isMetro": false, + "latitude": 14.543227, + "longitude": 49.946358, + "stopId": "U1532" + }, + { + "id": "U1533Z1", + "name": "Sulice,Hlubočinka,Obchodní centrum", + "isMetro": false, + "latitude": 14.553267, + "longitude": 49.93895, + "stopId": "U1533" + }, + { + "id": "U1533Z2", + "name": "Sulice,Hlubočinka,Obchodní centrum", + "isMetro": false, + "latitude": 14.552191, + "longitude": 49.939171, + "stopId": "U1533" + }, + { + "id": "U1533Z3", + "name": "Sulice,Hlubočinka,Obchodní centrum", + "isMetro": false, + "latitude": 14.553591, + "longitude": 49.93803, + "stopId": "U1533" + }, + { + "id": "U1534Z1", + "name": "Sulice,Hlubočinka", + "isMetro": false, + "latitude": 14.559211, + "longitude": 49.933941, + "stopId": "U1534" + }, + { + "id": "U1534Z2", + "name": "Sulice,Hlubočinka", + "isMetro": false, + "latitude": 14.559431, + "longitude": 49.933891, + "stopId": "U1534" + }, + { + "id": "U1535Z1", + "name": "Sulice,Na Křížkách", + "isMetro": false, + "latitude": 14.569501, + "longitude": 49.926342, + "stopId": "U1535" + }, + { + "id": "U1535Z2", + "name": "Sulice,Na Křížkách", + "isMetro": false, + "latitude": 14.568491, + "longitude": 49.927231, + "stopId": "U1535" + }, + { + "id": "U1535Z3", + "name": "Sulice,Na Křížkách", + "isMetro": false, + "latitude": 14.568471, + "longitude": 49.92659, + "stopId": "U1535" + }, + { + "id": "U1535Z4", + "name": "Sulice,Na Křížkách", + "isMetro": false, + "latitude": 14.56943, + "longitude": 49.926926, + "stopId": "U1535" + }, + { + "id": "U1536Z1", + "name": "Sulice,Želivec", + "isMetro": false, + "latitude": 14.581918, + "longitude": 49.915699, + "stopId": "U1536" + }, + { + "id": "U1536Z2", + "name": "Sulice,Želivec", + "isMetro": false, + "latitude": 14.581881, + "longitude": 49.916161, + "stopId": "U1536" + }, + { + "id": "U1536Z3", + "name": "Sulice,Želivec", + "isMetro": false, + "latitude": 14.582621, + "longitude": 49.91539, + "stopId": "U1536" + }, + { + "id": "U1536Z4", + "name": "Sulice,Želivec", + "isMetro": false, + "latitude": 14.582781, + "longitude": 49.915379, + "stopId": "U1536" + }, + { + "id": "U1538Z1", + "name": "Kamenice,Nová Hospoda", + "isMetro": false, + "latitude": 14.583981, + "longitude": 49.910439, + "stopId": "U1538" + }, + { + "id": "U1538Z2", + "name": "Kamenice,Nová Hospoda", + "isMetro": false, + "latitude": 14.584671, + "longitude": 49.91029, + "stopId": "U1538" + }, + { + "id": "U1539Z1", + "name": "Kamenice,Olešovice", + "isMetro": false, + "latitude": 14.59064, + "longitude": 49.904678, + "stopId": "U1539" + }, + { + "id": "U1539Z2", + "name": "Kamenice,Olešovice", + "isMetro": false, + "latitude": 14.590731, + "longitude": 49.904942, + "stopId": "U1539" + }, + { + "id": "U153Z1", + "name": "Horní cesta", + "isMetro": false, + "latitude": 14.39645, + "longitude": 50.033268, + "stopId": "U153" + }, + { + "id": "U1540Z1", + "name": "Kamenice,Valnovka", + "isMetro": false, + "latitude": 14.605781, + "longitude": 49.897411, + "stopId": "U1540" + }, + { + "id": "U1540Z2", + "name": "Kamenice,Valnovka", + "isMetro": false, + "latitude": 14.602521, + "longitude": 49.898552, + "stopId": "U1540" + }, + { + "id": "U1541Z1", + "name": "Kamenice,Ládví", + "isMetro": false, + "latitude": 14.613471, + "longitude": 49.894539, + "stopId": "U1541" + }, + { + "id": "U1541Z2", + "name": "Kamenice,Ládví", + "isMetro": false, + "latitude": 14.61412, + "longitude": 49.894421, + "stopId": "U1541" + }, + { + "id": "U1542Z1", + "name": "Kamenice,Kuklík", + "isMetro": false, + "latitude": 14.622991, + "longitude": 49.890831, + "stopId": "U1542" + }, + { + "id": "U1542Z2", + "name": "Kamenice,Kuklík", + "isMetro": false, + "latitude": 14.622981, + "longitude": 49.890602, + "stopId": "U1542" + }, + { + "id": "U1543Z1", + "name": "Řehenice,Babice", + "isMetro": false, + "latitude": 14.623441, + "longitude": 49.880699, + "stopId": "U1543" + }, + { + "id": "U1543Z2", + "name": "Řehenice,Babice", + "isMetro": false, + "latitude": 14.623161, + "longitude": 49.881721, + "stopId": "U1543" + }, + { + "id": "U1544Z1", + "name": "Řehenice,Křiváček", + "isMetro": false, + "latitude": 14.643817, + "longitude": 49.866932, + "stopId": "U1544" + }, + { + "id": "U1544Z2", + "name": "Řehenice,Křiváček", + "isMetro": false, + "latitude": 14.644421, + "longitude": 49.866791, + "stopId": "U1544" + }, + { + "id": "U1545Z1", + "name": "Nespeky,Rozc.Pyšely", + "isMetro": false, + "latitude": 14.656671, + "longitude": 49.865379, + "stopId": "U1545" + }, + { + "id": "U1545Z2", + "name": "Nespeky,Rozc.Pyšely", + "isMetro": false, + "latitude": 14.656773, + "longitude": 49.865429, + "stopId": "U1545" + }, + { + "id": "U1546Z1", + "name": "Nespeky", + "isMetro": false, + "latitude": 14.660264, + "longitude": 49.858421, + "stopId": "U1546" + }, + { + "id": "U1546Z2", + "name": "Nespeky", + "isMetro": false, + "latitude": 14.660493, + "longitude": 49.858574, + "stopId": "U1546" + }, + { + "id": "U1547Z1", + "name": "Pyšely,Hotel Doly", + "isMetro": false, + "latitude": 14.660391, + "longitude": 49.86681, + "stopId": "U1547" + }, + { + "id": "U1547Z2", + "name": "Pyšely,Hotel Doly", + "isMetro": false, + "latitude": 14.660881, + "longitude": 49.86787, + "stopId": "U1547" + }, + { + "id": "U1548Z1", + "name": "Pyšely,Sokolovna", + "isMetro": false, + "latitude": 14.678442, + "longitude": 49.875031, + "stopId": "U1548" + }, + { + "id": "U1548Z2", + "name": "Pyšely,Sokolovna", + "isMetro": false, + "latitude": 14.678535, + "longitude": 49.874931, + "stopId": "U1548" + }, + { + "id": "U1549Z1", + "name": "Pyšely,Nám.", + "isMetro": false, + "latitude": 14.678096, + "longitude": 49.877083, + "stopId": "U1549" + }, + { + "id": "U1549Z2", + "name": "Pyšely,Nám.", + "isMetro": false, + "latitude": 14.677804, + "longitude": 49.877052, + "stopId": "U1549" + }, + { + "id": "U154Z1", + "name": "Boloňská", + "isMetro": false, + "latitude": 14.5557, + "longitude": 50.047184, + "stopId": "U154" + }, + { + "id": "U154Z2", + "name": "Boloňská", + "isMetro": false, + "latitude": 14.556713, + "longitude": 50.047977, + "stopId": "U154" + }, + { + "id": "U154Z3", + "name": "Boloňská", + "isMetro": false, + "latitude": 14.556579, + "longitude": 50.048248, + "stopId": "U154" + }, + { + "id": "U154Z4", + "name": "Boloňská", + "isMetro": false, + "latitude": 14.555667, + "longitude": 50.047501, + "stopId": "U154" + }, + { + "id": "U1550Z1", + "name": "Pyšely,Zaječice", + "isMetro": false, + "latitude": 14.682119, + "longitude": 49.895172, + "stopId": "U1550" + }, + { + "id": "U1550Z2", + "name": "Pyšely,Zaječice", + "isMetro": false, + "latitude": 14.682026, + "longitude": 49.895142, + "stopId": "U1550" + }, + { + "id": "U1551Z1", + "name": "Senohraby,Odb.", + "isMetro": false, + "latitude": 14.713317, + "longitude": 49.895149, + "stopId": "U1551" + }, + { + "id": "U1551Z2", + "name": "Senohraby,Odb.", + "isMetro": false, + "latitude": 14.712976, + "longitude": 49.89521, + "stopId": "U1551" + }, + { + "id": "U1552Z1", + "name": "Senohraby,U Zvoničky", + "isMetro": false, + "latitude": 14.718134, + "longitude": 49.895279, + "stopId": "U1552" + }, + { + "id": "U1552Z2", + "name": "Senohraby,U Zvoničky", + "isMetro": false, + "latitude": 14.718053, + "longitude": 49.895336, + "stopId": "U1552" + }, + { + "id": "U1553Z301", + "name": "Pyšely", + "isMetro": false, + "latitude": 14.697761, + "longitude": 49.860878, + "stopId": "U1553" + }, + { + "id": "U1554Z1", + "name": "Senohraby,Žel.st.", + "isMetro": false, + "latitude": 14.728012, + "longitude": 49.897114, + "stopId": "U1554" + }, + { + "id": "U1554Z301", + "name": "Senohraby", + "isMetro": false, + "latitude": 14.727708, + "longitude": 49.897026, + "stopId": "U1554" + }, + { + "id": "U1555Z1", + "name": "Pětihosty", + "isMetro": false, + "latitude": 14.704409, + "longitude": 49.885727, + "stopId": "U1555" + }, + { + "id": "U1555Z2", + "name": "Pětihosty", + "isMetro": false, + "latitude": 14.704402, + "longitude": 49.885788, + "stopId": "U1555" + }, + { + "id": "U1557Z1", + "name": "Pyšely,Nová Ves", + "isMetro": false, + "latitude": 14.686127, + "longitude": 49.881008, + "stopId": "U1557" + }, + { + "id": "U1557Z2", + "name": "Pyšely,Nová Ves", + "isMetro": false, + "latitude": 14.686102, + "longitude": 49.881096, + "stopId": "U1557" + }, + { + "id": "U1559Z1", + "name": "Nehvizdy,U Studánky", + "isMetro": false, + "latitude": 14.737735, + "longitude": 50.132339, + "stopId": "U1559" + }, + { + "id": "U1559Z2", + "name": "Nehvizdy,U Studánky", + "isMetro": false, + "latitude": 14.737758, + "longitude": 50.132462, + "stopId": "U1559" + }, + { + "id": "U155Z1", + "name": "Na Kovárně", + "isMetro": false, + "latitude": 14.628025, + "longitude": 50.117825, + "stopId": "U155" + }, + { + "id": "U155Z2", + "name": "Na Kovárně", + "isMetro": false, + "latitude": 14.628745, + "longitude": 50.118034, + "stopId": "U155" + }, + { + "id": "U1560Z1", + "name": "Kamenice,Štiřín", + "isMetro": false, + "latitude": 14.600921, + "longitude": 49.916252, + "stopId": "U1560" + }, + { + "id": "U1560Z2", + "name": "Kamenice,Štiřín", + "isMetro": false, + "latitude": 14.600811, + "longitude": 49.916279, + "stopId": "U1560" + }, + { + "id": "U1561Z1", + "name": "Kamenice,Všedobrovice", + "isMetro": false, + "latitude": 14.610321, + "longitude": 49.917301, + "stopId": "U1561" + }, + { + "id": "U1561Z2", + "name": "Kamenice,Všedobrovice", + "isMetro": false, + "latitude": 14.609981, + "longitude": 49.91716, + "stopId": "U1561" + }, + { + "id": "U1562Z1", + "name": "Petříkov,rozc.", + "isMetro": false, + "latitude": 14.62176, + "longitude": 49.920811, + "stopId": "U1562" + }, + { + "id": "U1562Z2", + "name": "Petříkov,rozc.", + "isMetro": false, + "latitude": 14.621901, + "longitude": 49.92086, + "stopId": "U1562" + }, + { + "id": "U1563Z1", + "name": "Petříkov", + "isMetro": false, + "latitude": 14.615421, + "longitude": 49.926842, + "stopId": "U1563" + }, + { + "id": "U1563Z2", + "name": "Petříkov", + "isMetro": false, + "latitude": 14.615621, + "longitude": 49.926739, + "stopId": "U1563" + }, + { + "id": "U1564Z1", + "name": "Kamenice,Kult.dům", + "isMetro": false, + "latitude": 14.586748, + "longitude": 49.904015, + "stopId": "U1564" + }, + { + "id": "U1565Z1", + "name": "Kamenice,U Dvora", + "isMetro": false, + "latitude": 14.581656, + "longitude": 49.900471, + "stopId": "U1565" + }, + { + "id": "U1565Z2", + "name": "Kamenice,U Dvora", + "isMetro": false, + "latitude": 14.581229, + "longitude": 49.899864, + "stopId": "U1565" + }, + { + "id": "U1566Z1", + "name": "Kamenice,Těptín,U Kozlího kamene", + "isMetro": false, + "latitude": 14.568141, + "longitude": 49.89658, + "stopId": "U1566" + }, + { + "id": "U1566Z2", + "name": "Kamenice,Těptín,U Kozlího kamene", + "isMetro": false, + "latitude": 14.568562, + "longitude": 49.896652, + "stopId": "U1566" + }, + { + "id": "U1567Z1", + "name": "Kamenice,Těptín", + "isMetro": false, + "latitude": 14.564638, + "longitude": 49.892445, + "stopId": "U1567" + }, + { + "id": "U1567Z2", + "name": "Kamenice,Těptín", + "isMetro": false, + "latitude": 14.564822, + "longitude": 49.892502, + "stopId": "U1567" + }, + { + "id": "U1568Z1", + "name": "Pohoří,Markvart", + "isMetro": false, + "latitude": 14.550671, + "longitude": 49.892109, + "stopId": "U1568" + }, + { + "id": "U1568Z2", + "name": "Pohoří,Markvart", + "isMetro": false, + "latitude": 14.550701, + "longitude": 49.89212, + "stopId": "U1568" + }, + { + "id": "U1569Z1", + "name": "Pohoří,Skalsko", + "isMetro": false, + "latitude": 14.539631, + "longitude": 49.893188, + "stopId": "U1569" + }, + { + "id": "U1569Z2", + "name": "Pohoří,Skalsko", + "isMetro": false, + "latitude": 14.540386, + "longitude": 49.892979, + "stopId": "U1569" + }, + { + "id": "U156Z1", + "name": "Průchova", + "isMetro": false, + "latitude": 14.365967, + "longitude": 50.062386, + "stopId": "U156" + }, + { + "id": "U156Z2", + "name": "Průchova", + "isMetro": false, + "latitude": 14.366417, + "longitude": 50.062599, + "stopId": "U156" + }, + { + "id": "U1570Z1", + "name": "Pohoří", + "isMetro": false, + "latitude": 14.525005, + "longitude": 49.900578, + "stopId": "U1570" + }, + { + "id": "U1570Z2", + "name": "Pohoří", + "isMetro": false, + "latitude": 14.525004, + "longitude": 49.900532, + "stopId": "U1570" + }, + { + "id": "U1570Z3", + "name": "Pohoří", + "isMetro": false, + "latitude": 14.525073, + "longitude": 49.900196, + "stopId": "U1570" + }, + { + "id": "U1571Z1", + "name": "Pohoří,Chotouň", + "isMetro": false, + "latitude": 14.511646, + "longitude": 49.900383, + "stopId": "U1571" + }, + { + "id": "U1571Z2", + "name": "Pohoří,Chotouň", + "isMetro": false, + "latitude": 14.511908, + "longitude": 49.900467, + "stopId": "U1571" + }, + { + "id": "U1572Z1", + "name": "Jílové u Prahy,Čs.armády", + "isMetro": false, + "latitude": 14.498495, + "longitude": 49.895332, + "stopId": "U1572" + }, + { + "id": "U1572Z2", + "name": "Jílové u Prahy,Čs.armády", + "isMetro": false, + "latitude": 14.498913, + "longitude": 49.895199, + "stopId": "U1572" + }, + { + "id": "U1573Z1", + "name": "Kostelec u Křížků", + "isMetro": false, + "latitude": 14.558179, + "longitude": 49.906898, + "stopId": "U1573" + }, + { + "id": "U1573Z2", + "name": "Kostelec u Křížků", + "isMetro": false, + "latitude": 14.558081, + "longitude": 49.907021, + "stopId": "U1573" + }, + { + "id": "U1574Z1", + "name": "Kamenice,Skuheř", + "isMetro": false, + "latitude": 14.56947, + "longitude": 49.901798, + "stopId": "U1574" + }, + { + "id": "U1574Z2", + "name": "Kamenice,Skuheř", + "isMetro": false, + "latitude": 14.569686, + "longitude": 49.90181, + "stopId": "U1574" + }, + { + "id": "U1575Z1", + "name": "Dolní Břežany,Nad Mlýnem", + "isMetro": false, + "latitude": 14.448121, + "longitude": 49.965397, + "stopId": "U1575" + }, + { + "id": "U1575Z2", + "name": "Dolní Břežany,Nad Mlýnem", + "isMetro": false, + "latitude": 14.448236, + "longitude": 49.965515, + "stopId": "U1575" + }, + { + "id": "U1578Z1", + "name": "Sulice", + "isMetro": false, + "latitude": 14.557235, + "longitude": 49.923679, + "stopId": "U1578" + }, + { + "id": "U1578Z2", + "name": "Sulice", + "isMetro": false, + "latitude": 14.557425, + "longitude": 49.923634, + "stopId": "U1578" + }, + { + "id": "U1579Z1", + "name": "Křížkový Újezdec", + "isMetro": false, + "latitude": 14.585041, + "longitude": 49.93103, + "stopId": "U1579" + }, + { + "id": "U1579Z2", + "name": "Křížkový Újezdec", + "isMetro": false, + "latitude": 14.584381, + "longitude": 49.931122, + "stopId": "U1579" + }, + { + "id": "U157Z1", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.36455, + "longitude": 50.098522, + "stopId": "U157" + }, + { + "id": "U157Z101", + "name": "Bořislavka", + "isMetro": true, + "latitude": 14.362893, + "longitude": 50.098321, + "stopId": "U157" + }, + { + "id": "U157Z102", + "name": "Bořislavka", + "isMetro": true, + "latitude": 14.362868, + "longitude": 50.098434, + "stopId": "U157" + }, + { + "id": "U157Z2", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.36378, + "longitude": 50.098568, + "stopId": "U157" + }, + { + "id": "U157Z3", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.364141, + "longitude": 50.098717, + "stopId": "U157" + }, + { + "id": "U157Z4", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.364686, + "longitude": 50.099052, + "stopId": "U157" + }, + { + "id": "U157Z5", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.363597, + "longitude": 50.098679, + "stopId": "U157" + }, + { + "id": "U157Z6", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.364849, + "longitude": 50.099133, + "stopId": "U157" + }, + { + "id": "U157Z7", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.36468, + "longitude": 50.099205, + "stopId": "U157" + }, + { + "id": "U157Z74", + "name": "Bořislavka", + "isMetro": false, + "latitude": 14.364686, + "longitude": 50.099052, + "stopId": "U157" + }, + { + "id": "U1580Z1", + "name": "Křížkový Újezdec,Čenětice", + "isMetro": false, + "latitude": 14.579171, + "longitude": 49.943291, + "stopId": "U1580" + }, + { + "id": "U1580Z2", + "name": "Křížkový Újezdec,Čenětice", + "isMetro": false, + "latitude": 14.57881, + "longitude": 49.943665, + "stopId": "U1580" + }, + { + "id": "U1581Z1", + "name": "Radějovice,Olešky", + "isMetro": false, + "latitude": 14.571461, + "longitude": 49.949131, + "stopId": "U1581" + }, + { + "id": "U1581Z2", + "name": "Radějovice,Olešky", + "isMetro": false, + "latitude": 14.571521, + "longitude": 49.949162, + "stopId": "U1581" + }, + { + "id": "U1582Z1", + "name": "Radějovice", + "isMetro": false, + "latitude": 14.564561, + "longitude": 49.9468, + "stopId": "U1582" + }, + { + "id": "U1582Z2", + "name": "Radějovice", + "isMetro": false, + "latitude": 14.564371, + "longitude": 49.94672, + "stopId": "U1582" + }, + { + "id": "U1583Z1", + "name": "Kostelec u Křížků,Škola", + "isMetro": false, + "latitude": 14.563474, + "longitude": 49.909653, + "stopId": "U1583" + }, + { + "id": "U1583Z2", + "name": "Kostelec u Křížků,Škola", + "isMetro": false, + "latitude": 14.563756, + "longitude": 49.909653, + "stopId": "U1583" + }, + { + "id": "U1584Z1", + "name": "Cholupice", + "isMetro": false, + "latitude": 14.445484, + "longitude": 49.9869, + "stopId": "U1584" + }, + { + "id": "U1584Z2", + "name": "Cholupice", + "isMetro": false, + "latitude": 14.445484, + "longitude": 49.986782, + "stopId": "U1584" + }, + { + "id": "U1585Z1", + "name": "Strančice,Všechromy,náves", + "isMetro": false, + "latitude": 14.6509, + "longitude": 49.948967, + "stopId": "U1585" + }, + { + "id": "U1586Z1", + "name": "Jílové u Prahy,Kamenná Vrata", + "isMetro": false, + "latitude": 14.468767, + "longitude": 49.898571, + "stopId": "U1586" + }, + { + "id": "U1586Z2", + "name": "Jílové u Prahy,Kamenná Vrata", + "isMetro": false, + "latitude": 14.468568, + "longitude": 49.899372, + "stopId": "U1586" + }, + { + "id": "U1587Z301", + "name": "Luka pod Medníkem", + "isMetro": false, + "latitude": 14.462636, + "longitude": 49.864918, + "stopId": "U1587" + }, + { + "id": "U1588Z1", + "name": "Týnec n.Sáz.,Čakovice", + "isMetro": false, + "latitude": 14.593191, + "longitude": 49.86998, + "stopId": "U1588" + }, + { + "id": "U1588Z2", + "name": "Týnec n.Sáz.,Čakovice", + "isMetro": false, + "latitude": 14.593131, + "longitude": 49.869839, + "stopId": "U1588" + }, + { + "id": "U1589Z1", + "name": "Týnec n.Sáz.,Čisté potoky", + "isMetro": false, + "latitude": 14.584371, + "longitude": 49.859982, + "stopId": "U1589" + }, + { + "id": "U1589Z2", + "name": "Týnec n.Sáz.,Čisté potoky", + "isMetro": false, + "latitude": 14.585421, + "longitude": 49.860809, + "stopId": "U1589" + }, + { + "id": "U158Z1", + "name": "Hostavice", + "isMetro": false, + "latitude": 14.563484, + "longitude": 50.090218, + "stopId": "U158" + }, + { + "id": "U158Z2", + "name": "Hostavice", + "isMetro": false, + "latitude": 14.563176, + "longitude": 50.090023, + "stopId": "U158" + }, + { + "id": "U1590Z1", + "name": "Týnec n.Sáz.,Zbořený Kostelec,Hrad", + "isMetro": false, + "latitude": 14.589084, + "longitude": 49.853489, + "stopId": "U1590" + }, + { + "id": "U1590Z2", + "name": "Týnec n.Sáz.,Zbořený Kostelec,Hrad", + "isMetro": false, + "latitude": 14.58906, + "longitude": 49.853283, + "stopId": "U1590" + }, + { + "id": "U1591Z1", + "name": "Hrazanská", + "isMetro": false, + "latitude": 14.439513, + "longitude": 49.977585, + "stopId": "U1591" + }, + { + "id": "U1591Z2", + "name": "Hrazanská", + "isMetro": false, + "latitude": 14.439584, + "longitude": 49.978035, + "stopId": "U1591" + }, + { + "id": "U1592Z301", + "name": "Mrač", + "isMetro": false, + "latitude": 14.698127, + "longitude": 49.831093, + "stopId": "U1592" + }, + { + "id": "U1593Z1", + "name": "Týnec n.Sáz.,Žel.st.", + "isMetro": false, + "latitude": 14.592517, + "longitude": 49.834194, + "stopId": "U1593" + }, + { + "id": "U1593Z2", + "name": "Týnec n.Sáz.,Žel.st.", + "isMetro": false, + "latitude": 14.591755, + "longitude": 49.834309, + "stopId": "U1593" + }, + { + "id": "U1593Z3", + "name": "Týnec n.Sáz.,Žel.st.", + "isMetro": false, + "latitude": 14.591768, + "longitude": 49.834194, + "stopId": "U1593" + }, + { + "id": "U1593Z301", + "name": "Týnec nad Sázavou", + "isMetro": false, + "latitude": 14.592967, + "longitude": 49.834152, + "stopId": "U1593" + }, + { + "id": "U1593Z4", + "name": "Týnec n.Sáz.,Žel.st.", + "isMetro": false, + "latitude": 14.592098, + "longitude": 49.834396, + "stopId": "U1593" + }, + { + "id": "U1594Z1", + "name": "Krhanice", + "isMetro": false, + "latitude": 14.557734, + "longitude": 49.856441, + "stopId": "U1594" + }, + { + "id": "U1595Z301", + "name": "Čtyřkoly", + "isMetro": false, + "latitude": 14.714369, + "longitude": 49.868668, + "stopId": "U1595" + }, + { + "id": "U1596Z1", + "name": "Týnec n.Sáz.,Chrást", + "isMetro": false, + "latitude": 14.571578, + "longitude": 49.839924, + "stopId": "U1596" + }, + { + "id": "U1596Z2", + "name": "Týnec n.Sáz.,Chrást", + "isMetro": false, + "latitude": 14.572064, + "longitude": 49.839924, + "stopId": "U1596" + }, + { + "id": "U1597Z1", + "name": "Řehenice,Dařbože", + "isMetro": false, + "latitude": 14.610741, + "longitude": 49.872181, + "stopId": "U1597" + }, + { + "id": "U1597Z2", + "name": "Řehenice,Dařbože", + "isMetro": false, + "latitude": 14.610881, + "longitude": 49.872169, + "stopId": "U1597" + }, + { + "id": "U1598Z1", + "name": "Velké Popovice,pivovar", + "isMetro": false, + "latitude": 14.634401, + "longitude": 49.921761, + "stopId": "U1598" + }, + { + "id": "U1598Z2", + "name": "Velké Popovice,pivovar", + "isMetro": false, + "latitude": 14.634261, + "longitude": 49.921799, + "stopId": "U1598" + }, + { + "id": "U1599Z1", + "name": "Velké Popovice", + "isMetro": false, + "latitude": 14.644501, + "longitude": 49.921429, + "stopId": "U1599" + }, + { + "id": "U1599Z2", + "name": "Velké Popovice", + "isMetro": false, + "latitude": 14.644071, + "longitude": 49.92152, + "stopId": "U1599" + }, + { + "id": "U159Z1", + "name": "Benice", + "isMetro": false, + "latitude": 14.604985, + "longitude": 50.013569, + "stopId": "U159" + }, + { + "id": "U159Z2", + "name": "Benice", + "isMetro": false, + "latitude": 14.605335, + "longitude": 50.013397, + "stopId": "U159" + }, + { + "id": "U159Z4", + "name": "Benice", + "isMetro": false, + "latitude": 14.60507, + "longitude": 50.013351, + "stopId": "U159" + }, + { + "id": "U15Z1", + "name": "Baterie", + "isMetro": false, + "latitude": 14.369829, + "longitude": 50.092392, + "stopId": "U15" + }, + { + "id": "U15Z2", + "name": "Baterie", + "isMetro": false, + "latitude": 14.369411, + "longitude": 50.0924, + "stopId": "U15" + }, + { + "id": "U1600Z1", + "name": "Velké Popovice,Todice", + "isMetro": false, + "latitude": 14.648961, + "longitude": 49.92205, + "stopId": "U1600" + }, + { + "id": "U1600Z2", + "name": "Velké Popovice,Todice", + "isMetro": false, + "latitude": 14.649001, + "longitude": 49.921989, + "stopId": "U1600" + }, + { + "id": "U1601Z1", + "name": "Lety", + "isMetro": false, + "latitude": 14.251102, + "longitude": 49.921013, + "stopId": "U1601" + }, + { + "id": "U1601Z2", + "name": "Lety", + "isMetro": false, + "latitude": 14.251172, + "longitude": 49.920914, + "stopId": "U1601" + }, + { + "id": "U1602Z1", + "name": "Šestajovice,Pražská", + "isMetro": false, + "latitude": 14.67576, + "longitude": 50.102352, + "stopId": "U1602" + }, + { + "id": "U1602Z2", + "name": "Šestajovice,Pražská", + "isMetro": false, + "latitude": 14.676229, + "longitude": 50.102562, + "stopId": "U1602" + }, + { + "id": "U1604Z1", + "name": "Šestajovice,U Školy", + "isMetro": false, + "latitude": 14.682457, + "longitude": 50.111893, + "stopId": "U1604" + }, + { + "id": "U1604Z2", + "name": "Šestajovice,U Školy", + "isMetro": false, + "latitude": 14.682413, + "longitude": 50.111862, + "stopId": "U1604" + }, + { + "id": "U1605Z1", + "name": "Jirny,Zámek", + "isMetro": false, + "latitude": 14.68938, + "longitude": 50.114021, + "stopId": "U1605" + }, + { + "id": "U1605Z2", + "name": "Jirny,Zámek", + "isMetro": false, + "latitude": 14.690578, + "longitude": 50.114597, + "stopId": "U1605" + }, + { + "id": "U1606Z1", + "name": "Jirny", + "isMetro": false, + "latitude": 14.698309, + "longitude": 50.115871, + "stopId": "U1606" + }, + { + "id": "U1606Z2", + "name": "Jirny", + "isMetro": false, + "latitude": 14.698801, + "longitude": 50.115696, + "stopId": "U1606" + }, + { + "id": "U1607Z1", + "name": "Jirny,Nové Jirny,Kaplička", + "isMetro": false, + "latitude": 14.709, + "longitude": 50.103649, + "stopId": "U1607" + }, + { + "id": "U1607Z2", + "name": "Jirny,Nové Jirny,Kaplička", + "isMetro": false, + "latitude": 14.709026, + "longitude": 50.103783, + "stopId": "U1607" + }, + { + "id": "U1608Z1", + "name": "Jirny,Nové Jirny,Hájovna", + "isMetro": false, + "latitude": 14.71121, + "longitude": 50.10144, + "stopId": "U1608" + }, + { + "id": "U1608Z2", + "name": "Jirny,Nové Jirny,Hájovna", + "isMetro": false, + "latitude": 14.711059, + "longitude": 50.101887, + "stopId": "U1608" + }, + { + "id": "U1609Z2", + "name": "Úvaly,Elektromechanika", + "isMetro": false, + "latitude": 14.712486, + "longitude": 50.07959, + "stopId": "U1609" + }, + { + "id": "U160Z1", + "name": "Hostivařské náměstí", + "isMetro": false, + "latitude": 14.5263, + "longitude": 50.050117, + "stopId": "U160" + }, + { + "id": "U160Z2", + "name": "Hostivařské náměstí", + "isMetro": false, + "latitude": 14.526434, + "longitude": 50.050133, + "stopId": "U160" + }, + { + "id": "U1610Z2", + "name": "Úvaly,Žel.st.", + "isMetro": false, + "latitude": 14.722511, + "longitude": 50.074707, + "stopId": "U1610" + }, + { + "id": "U1610Z301", + "name": "Úvaly", + "isMetro": false, + "latitude": 14.722528, + "longitude": 50.075115, + "stopId": "U1610" + }, + { + "id": "U1611Z1", + "name": "Škvorec,MŠ", + "isMetro": false, + "latitude": 14.731741, + "longitude": 50.05051, + "stopId": "U1611" + }, + { + "id": "U1611Z2", + "name": "Škvorec,MŠ", + "isMetro": false, + "latitude": 14.731761, + "longitude": 50.050892, + "stopId": "U1611" + }, + { + "id": "U1612Z1", + "name": "Horoušany,Horoušánky,Za Panskou zahradou", + "isMetro": false, + "latitude": 14.726897, + "longitude": 50.102329, + "stopId": "U1612" + }, + { + "id": "U1612Z2", + "name": "Horoušany,Horoušánky,Za Panskou zahradou", + "isMetro": false, + "latitude": 14.727961, + "longitude": 50.103146, + "stopId": "U1612" + }, + { + "id": "U1613Z1", + "name": "Šestajovice,Balkán", + "isMetro": false, + "latitude": 14.680266, + "longitude": 50.105812, + "stopId": "U1613" + }, + { + "id": "U1613Z2", + "name": "Šestajovice,Balkán", + "isMetro": false, + "latitude": 14.680504, + "longitude": 50.106033, + "stopId": "U1613" + }, + { + "id": "U1616Z1", + "name": "Černošice,Žel.zast.", + "isMetro": false, + "latitude": 14.322025, + "longitude": 49.959064, + "stopId": "U1616" + }, + { + "id": "U1616Z2", + "name": "Černošice,Žel.zast.", + "isMetro": false, + "latitude": 14.322335, + "longitude": 49.959129, + "stopId": "U1616" + }, + { + "id": "U1616Z3", + "name": "Černošice,Žel.zast.", + "isMetro": false, + "latitude": 14.322661, + "longitude": 49.959183, + "stopId": "U1616" + }, + { + "id": "U1616Z301", + "name": "Černošice", + "isMetro": false, + "latitude": 14.323433, + "longitude": 49.959621, + "stopId": "U1616" + }, + { + "id": "U1616Z4", + "name": "Černošice,Žel.zast.", + "isMetro": false, + "latitude": 14.322837, + "longitude": 49.959095, + "stopId": "U1616" + }, + { + "id": "U1617Z1", + "name": "Černošice,Karlštejnská", + "isMetro": false, + "latitude": 14.311554, + "longitude": 49.956383, + "stopId": "U1617" + }, + { + "id": "U1617Z2", + "name": "Černošice,Karlštejnská", + "isMetro": false, + "latitude": 14.31181, + "longitude": 49.95636, + "stopId": "U1617" + }, + { + "id": "U1618Z1", + "name": "Třebotov,Solopisky", + "isMetro": false, + "latitude": 14.29692, + "longitude": 49.960239, + "stopId": "U1618" + }, + { + "id": "U1618Z2", + "name": "Třebotov,Solopisky", + "isMetro": false, + "latitude": 14.29658, + "longitude": 49.9603, + "stopId": "U1618" + }, + { + "id": "U1619Z1", + "name": "Vonoklasy,chaty", + "isMetro": false, + "latitude": 14.28563, + "longitude": 49.954521, + "stopId": "U1619" + }, + { + "id": "U1619Z2", + "name": "Vonoklasy,chaty", + "isMetro": false, + "latitude": 14.285541, + "longitude": 49.954418, + "stopId": "U1619" + }, + { + "id": "U161Z1", + "name": "Hostýnská", + "isMetro": false, + "latitude": 14.495532, + "longitude": 50.081066, + "stopId": "U161" + }, + { + "id": "U161Z2", + "name": "Hostýnská", + "isMetro": false, + "latitude": 14.495517, + "longitude": 50.081318, + "stopId": "U161" + }, + { + "id": "U1620Z1", + "name": "Vonoklasy", + "isMetro": false, + "latitude": 14.276731, + "longitude": 49.950531, + "stopId": "U1620" + }, + { + "id": "U1620Z2", + "name": "Vonoklasy", + "isMetro": false, + "latitude": 14.27681, + "longitude": 49.95047, + "stopId": "U1620" + }, + { + "id": "U1621Z1", + "name": "Vonoklasy,samoobsluha", + "isMetro": false, + "latitude": 14.275734, + "longitude": 49.947315, + "stopId": "U1621" + }, + { + "id": "U1621Z2", + "name": "Vonoklasy,samoobsluha", + "isMetro": false, + "latitude": 14.275741, + "longitude": 49.947338, + "stopId": "U1621" + }, + { + "id": "U1622Z1", + "name": "Černošice,Centrum Vráž", + "isMetro": false, + "latitude": 14.313761, + "longitude": 49.949501, + "stopId": "U1622" + }, + { + "id": "U1622Z2", + "name": "Černošice,Centrum Vráž", + "isMetro": false, + "latitude": 14.314281, + "longitude": 49.949699, + "stopId": "U1622" + }, + { + "id": "U1623Z1", + "name": "Černošice,U Transformátoru", + "isMetro": false, + "latitude": 14.30791, + "longitude": 49.947369, + "stopId": "U1623" + }, + { + "id": "U1623Z2", + "name": "Černošice,U Transformátoru", + "isMetro": false, + "latitude": 14.30813, + "longitude": 49.947289, + "stopId": "U1623" + }, + { + "id": "U1624Z1", + "name": "Dobřichovice,Randova", + "isMetro": false, + "latitude": 14.28336, + "longitude": 49.935799, + "stopId": "U1624" + }, + { + "id": "U1624Z2", + "name": "Dobřichovice,Randova", + "isMetro": false, + "latitude": 14.2836, + "longitude": 49.935879, + "stopId": "U1624" + }, + { + "id": "U1625Z1", + "name": "Dobřichovice,Pod Vinicí", + "isMetro": false, + "latitude": 14.27588, + "longitude": 49.931149, + "stopId": "U1625" + }, + { + "id": "U1625Z2", + "name": "Dobřichovice,Pod Vinicí", + "isMetro": false, + "latitude": 14.27629, + "longitude": 49.931412, + "stopId": "U1625" + }, + { + "id": "U1626Z1", + "name": "Dobřichovice,rozc.Karlík", + "isMetro": false, + "latitude": 14.27178, + "longitude": 49.92815, + "stopId": "U1626" + }, + { + "id": "U1626Z2", + "name": "Dobřichovice,rozc.Karlík", + "isMetro": false, + "latitude": 14.27151, + "longitude": 49.92794, + "stopId": "U1626" + }, + { + "id": "U1626Z51", + "name": "Dobřichovice,rozc.Karlík", + "isMetro": false, + "latitude": 14.27178, + "longitude": 49.92815, + "stopId": "U1626" + }, + { + "id": "U1627Z1", + "name": "Karlík", + "isMetro": false, + "latitude": 14.26191, + "longitude": 49.937061, + "stopId": "U1627" + }, + { + "id": "U1627Z2", + "name": "Karlík", + "isMetro": false, + "latitude": 14.26153, + "longitude": 49.937191, + "stopId": "U1627" + }, + { + "id": "U1629Z1", + "name": "Kosoř", + "isMetro": false, + "latitude": 14.32747, + "longitude": 49.986061, + "stopId": "U1629" + }, + { + "id": "U1629Z2", + "name": "Kosoř", + "isMetro": false, + "latitude": 14.327621, + "longitude": 49.986118, + "stopId": "U1629" + }, + { + "id": "U162Z5", + "name": "Čínská", + "isMetro": false, + "latitude": 14.394668, + "longitude": 50.108952, + "stopId": "U162" + }, + { + "id": "U162Z6", + "name": "Čínská", + "isMetro": false, + "latitude": 14.39394, + "longitude": 50.109009, + "stopId": "U162" + }, + { + "id": "U1630Z1", + "name": "Kosoř,Rozc.", + "isMetro": false, + "latitude": 14.32938, + "longitude": 49.977131, + "stopId": "U1630" + }, + { + "id": "U1630Z2", + "name": "Kosoř,Rozc.", + "isMetro": false, + "latitude": 14.32771, + "longitude": 49.976822, + "stopId": "U1630" + }, + { + "id": "U1631Z1", + "name": "Třebotov,Pomník", + "isMetro": false, + "latitude": 14.30499, + "longitude": 49.975712, + "stopId": "U1631" + }, + { + "id": "U1631Z2", + "name": "Třebotov,Pomník", + "isMetro": false, + "latitude": 14.3047, + "longitude": 49.975601, + "stopId": "U1631" + }, + { + "id": "U1632Z1", + "name": "Třebotov,Sanatorium", + "isMetro": false, + "latitude": 14.29726, + "longitude": 49.974751, + "stopId": "U1632" + }, + { + "id": "U1632Z2", + "name": "Třebotov,Sanatorium", + "isMetro": false, + "latitude": 14.29684, + "longitude": 49.974609, + "stopId": "U1632" + }, + { + "id": "U1633Z1", + "name": "Zderazská", + "isMetro": false, + "latitude": 14.348043, + "longitude": 49.980705, + "stopId": "U1633" + }, + { + "id": "U1633Z2", + "name": "Zderazská", + "isMetro": false, + "latitude": 14.348412, + "longitude": 49.980579, + "stopId": "U1633" + }, + { + "id": "U1634Z1", + "name": "Třebotov", + "isMetro": false, + "latitude": 14.28963, + "longitude": 49.97324, + "stopId": "U1634" + }, + { + "id": "U1634Z2", + "name": "Třebotov", + "isMetro": false, + "latitude": 14.28932, + "longitude": 49.973068, + "stopId": "U1634" + }, + { + "id": "U1635Z1", + "name": "Choteč", + "isMetro": false, + "latitude": 14.28341, + "longitude": 49.98539, + "stopId": "U1635" + }, + { + "id": "U1635Z2", + "name": "Choteč", + "isMetro": false, + "latitude": 14.28333, + "longitude": 49.985352, + "stopId": "U1635" + }, + { + "id": "U1636Z2", + "name": "Roblín,Kuchařík", + "isMetro": false, + "latitude": 14.249257, + "longitude": 49.97744, + "stopId": "U1636" + }, + { + "id": "U1636Z3", + "name": "Roblín,Kuchařík", + "isMetro": false, + "latitude": 14.248871, + "longitude": 49.977577, + "stopId": "U1636" + }, + { + "id": "U1637Z1", + "name": "Vysoký Újezd,Kuchař,I", + "isMetro": false, + "latitude": 14.236066, + "longitude": 49.981941, + "stopId": "U1637" + }, + { + "id": "U1637Z2", + "name": "Vysoký Újezd,Kuchař,I", + "isMetro": false, + "latitude": 14.236216, + "longitude": 49.982044, + "stopId": "U1637" + }, + { + "id": "U1638Z3", + "name": "Mořina,Trněný Újezd,rozc.I", + "isMetro": false, + "latitude": 14.217741, + "longitude": 49.969902, + "stopId": "U1638" + }, + { + "id": "U1638Z4", + "name": "Mořina,Trněný Újezd,rozc.I", + "isMetro": false, + "latitude": 14.217714, + "longitude": 49.970047, + "stopId": "U1638" + }, + { + "id": "U1639Z1", + "name": "Roblín", + "isMetro": false, + "latitude": 14.248116, + "longitude": 49.9618, + "stopId": "U1639" + }, + { + "id": "U1639Z2", + "name": "Roblín", + "isMetro": false, + "latitude": 14.247615, + "longitude": 49.962357, + "stopId": "U1639" + }, + { + "id": "U163Z1", + "name": "Hradčanská", + "isMetro": false, + "latitude": 14.404873, + "longitude": 50.097298, + "stopId": "U163" + }, + { + "id": "U163Z10", + "name": "Hradčanská", + "isMetro": false, + "latitude": 14.402766, + "longitude": 50.096996, + "stopId": "U163" + }, + { + "id": "U163Z101", + "name": "Hradčanská", + "isMetro": true, + "latitude": 14.403122, + "longitude": 50.097342, + "stopId": "U163" + }, + { + "id": "U163Z102", + "name": "Hradčanská", + "isMetro": true, + "latitude": 14.403233, + "longitude": 50.097544, + "stopId": "U163" + }, + { + "id": "U163Z2", + "name": "Hradčanská", + "isMetro": false, + "latitude": 14.403853, + "longitude": 50.09721, + "stopId": "U163" + }, + { + "id": "U163Z301", + "name": "Praha-Dejvice", + "isMetro": false, + "latitude": 14.399686, + "longitude": 50.096977, + "stopId": "U163" + }, + { + "id": "U163Z5", + "name": "Hradčanská", + "isMetro": false, + "latitude": 14.405351, + "longitude": 50.098183, + "stopId": "U163" + }, + { + "id": "U163Z6", + "name": "Hradčanská", + "isMetro": false, + "latitude": 14.405217, + "longitude": 50.098118, + "stopId": "U163" + }, + { + "id": "U163Z9", + "name": "Hradčanská", + "isMetro": false, + "latitude": 14.406089, + "longitude": 50.09734, + "stopId": "U163" + }, + { + "id": "U1643Z1", + "name": "Chrášťany,Scania-Label", + "isMetro": false, + "latitude": 14.27197, + "longitude": 50.050625, + "stopId": "U1643" + }, + { + "id": "U1643Z2", + "name": "Chrášťany,Scania-Label", + "isMetro": false, + "latitude": 14.27262, + "longitude": 50.050716, + "stopId": "U1643" + }, + { + "id": "U1644Z1", + "name": "Chrášťany,Mezcestí", + "isMetro": false, + "latitude": 14.252426, + "longitude": 50.041794, + "stopId": "U1644" + }, + { + "id": "U1644Z2", + "name": "Chrášťany,Mezcestí", + "isMetro": false, + "latitude": 14.253626, + "longitude": 50.042141, + "stopId": "U1644" + }, + { + "id": "U1645Z1", + "name": "Rudná,U Nádraží", + "isMetro": false, + "latitude": 14.2437, + "longitude": 50.038532, + "stopId": "U1645" + }, + { + "id": "U1645Z2", + "name": "Rudná,U Nádraží", + "isMetro": false, + "latitude": 14.245337, + "longitude": 50.03904, + "stopId": "U1645" + }, + { + "id": "U1645Z301", + "name": "Rudná u Prahy", + "isMetro": false, + "latitude": 14.24269, + "longitude": 50.039452, + "stopId": "U1645" + }, + { + "id": "U1646Z1", + "name": "Rudná,Dušníky", + "isMetro": false, + "latitude": 14.240006, + "longitude": 50.03714, + "stopId": "U1646" + }, + { + "id": "U1646Z2", + "name": "Rudná,Dušníky", + "isMetro": false, + "latitude": 14.240108, + "longitude": 50.037052, + "stopId": "U1646" + }, + { + "id": "U1647Z1", + "name": "Rudná,U Kina", + "isMetro": false, + "latitude": 14.232671, + "longitude": 50.03434, + "stopId": "U1647" + }, + { + "id": "U1647Z2", + "name": "Rudná,U Kina", + "isMetro": false, + "latitude": 14.231954, + "longitude": 50.033981, + "stopId": "U1647" + }, + { + "id": "U1648Z1", + "name": "Rudná,Škola", + "isMetro": false, + "latitude": 14.220947, + "longitude": 50.029961, + "stopId": "U1648" + }, + { + "id": "U1648Z2", + "name": "Rudná,Škola", + "isMetro": false, + "latitude": 14.22156, + "longitude": 50.03006, + "stopId": "U1648" + }, + { + "id": "U1649Z1", + "name": "Rudná,Hořelice", + "isMetro": false, + "latitude": 14.212359, + "longitude": 50.026936, + "stopId": "U1649" + }, + { + "id": "U1649Z2", + "name": "Rudná,Hořelice", + "isMetro": false, + "latitude": 14.212698, + "longitude": 50.026981, + "stopId": "U1649" + }, + { + "id": "U164Z3", + "name": "Hrnčíře", + "isMetro": false, + "latitude": 14.517644, + "longitude": 49.996857, + "stopId": "U164" + }, + { + "id": "U164Z4", + "name": "Hrnčíře", + "isMetro": false, + "latitude": 14.517195, + "longitude": 49.998913, + "stopId": "U164" + }, + { + "id": "U1650Z1", + "name": "Nučice,Nádraží", + "isMetro": false, + "latitude": 14.224766, + "longitude": 50.024223, + "stopId": "U1650" + }, + { + "id": "U1650Z2", + "name": "Nučice,Nádraží", + "isMetro": false, + "latitude": 14.224725, + "longitude": 50.024216, + "stopId": "U1650" + }, + { + "id": "U1650Z301", + "name": "Nučice", + "isMetro": false, + "latitude": 14.224983, + "longitude": 50.023975, + "stopId": "U1650" + }, + { + "id": "U1651Z1", + "name": "Nučice,Pod Vinicí", + "isMetro": false, + "latitude": 14.230474, + "longitude": 50.020172, + "stopId": "U1651" + }, + { + "id": "U1651Z2", + "name": "Nučice,Pod Vinicí", + "isMetro": false, + "latitude": 14.230951, + "longitude": 50.020279, + "stopId": "U1651" + }, + { + "id": "U1652Z1", + "name": "Nučice,Prokopská náves", + "isMetro": false, + "latitude": 14.232002, + "longitude": 50.016815, + "stopId": "U1652" + }, + { + "id": "U1652Z2", + "name": "Nučice,Prokopská náves", + "isMetro": false, + "latitude": 14.232086, + "longitude": 50.016796, + "stopId": "U1652" + }, + { + "id": "U1653Z1", + "name": "Nučice,Sokolská", + "isMetro": false, + "latitude": 14.223975, + "longitude": 50.015656, + "stopId": "U1653" + }, + { + "id": "U1653Z2", + "name": "Nučice,Sokolská", + "isMetro": false, + "latitude": 14.224049, + "longitude": 50.015568, + "stopId": "U1653" + }, + { + "id": "U1654Z1", + "name": "Nučice,Na Krahulově", + "isMetro": false, + "latitude": 14.217274, + "longitude": 50.015331, + "stopId": "U1654" + }, + { + "id": "U1654Z2", + "name": "Nučice,Na Krahulově", + "isMetro": false, + "latitude": 14.217145, + "longitude": 50.015274, + "stopId": "U1654" + }, + { + "id": "U1655Z1", + "name": "Nučice,Žel.zast.", + "isMetro": false, + "latitude": 14.213278, + "longitude": 50.014286, + "stopId": "U1655" + }, + { + "id": "U1655Z2", + "name": "Nučice,Žel.zast.", + "isMetro": false, + "latitude": 14.213317, + "longitude": 50.014309, + "stopId": "U1655" + }, + { + "id": "U1655Z301", + "name": "Nučice zast.", + "isMetro": false, + "latitude": 14.212734, + "longitude": 50.015141, + "stopId": "U1655" + }, + { + "id": "U1656Z1", + "name": "Mezouň", + "isMetro": false, + "latitude": 14.214078, + "longitude": 50.004585, + "stopId": "U1656" + }, + { + "id": "U1656Z2", + "name": "Mezouň", + "isMetro": false, + "latitude": 14.214445, + "longitude": 50.004196, + "stopId": "U1656" + }, + { + "id": "U1657Z1", + "name": "Vysoký Újezd,sokolovna", + "isMetro": false, + "latitude": 14.205681, + "longitude": 49.99514, + "stopId": "U1657" + }, + { + "id": "U1657Z2", + "name": "Vysoký Újezd,sokolovna", + "isMetro": false, + "latitude": 14.205753, + "longitude": 49.995098, + "stopId": "U1657" + }, + { + "id": "U1658Z1", + "name": "Vysoký Újezd", + "isMetro": false, + "latitude": 14.206374, + "longitude": 49.992432, + "stopId": "U1658" + }, + { + "id": "U1658Z2", + "name": "Vysoký Újezd", + "isMetro": false, + "latitude": 14.206885, + "longitude": 49.992489, + "stopId": "U1658" + }, + { + "id": "U1659Z1", + "name": "Lužce", + "isMetro": false, + "latitude": 14.19521, + "longitude": 49.983768, + "stopId": "U1659" + }, + { + "id": "U1659Z2", + "name": "Lužce", + "isMetro": false, + "latitude": 14.195294, + "longitude": 49.983868, + "stopId": "U1659" + }, + { + "id": "U165Z1", + "name": "Hrnčířský hřbitov", + "isMetro": false, + "latitude": 14.516322, + "longitude": 50.001091, + "stopId": "U165" + }, + { + "id": "U165Z2", + "name": "Hrnčířský hřbitov", + "isMetro": false, + "latitude": 14.516518, + "longitude": 50.003056, + "stopId": "U165" + }, + { + "id": "U165Z3", + "name": "Hrnčířský hřbitov", + "isMetro": false, + "latitude": 14.515069, + "longitude": 50.002827, + "stopId": "U165" + }, + { + "id": "U165Z5", + "name": "Hrnčířský hřbitov", + "isMetro": false, + "latitude": 14.517851, + "longitude": 50.002335, + "stopId": "U165" + }, + { + "id": "U1660Z1", + "name": "Vysoký Újezd,Kozolupy", + "isMetro": false, + "latitude": 14.192682, + "longitude": 49.974606, + "stopId": "U1660" + }, + { + "id": "U1660Z2", + "name": "Vysoký Újezd,Kozolupy", + "isMetro": false, + "latitude": 14.19277, + "longitude": 49.974701, + "stopId": "U1660" + }, + { + "id": "U1661Z1", + "name": "Bubovice", + "isMetro": false, + "latitude": 14.167256, + "longitude": 49.970299, + "stopId": "U1661" + }, + { + "id": "U1661Z2", + "name": "Bubovice", + "isMetro": false, + "latitude": 14.167524, + "longitude": 49.970268, + "stopId": "U1661" + }, + { + "id": "U1662Z1", + "name": "Mořina,odb.lom", + "isMetro": false, + "latitude": 14.204156, + "longitude": 49.960819, + "stopId": "U1662" + }, + { + "id": "U1663Z1", + "name": "Mořina,u Pěchotů", + "isMetro": false, + "latitude": 14.217436, + "longitude": 49.952503, + "stopId": "U1663" + }, + { + "id": "U1663Z2", + "name": "Mořina,u Pěchotů", + "isMetro": false, + "latitude": 14.217514, + "longitude": 49.952515, + "stopId": "U1663" + }, + { + "id": "U1664Z1", + "name": "Mořina,obecní úřad", + "isMetro": false, + "latitude": 14.211684, + "longitude": 49.952911, + "stopId": "U1664" + }, + { + "id": "U1664Z2", + "name": "Mořina,obecní úřad", + "isMetro": false, + "latitude": 14.213717, + "longitude": 49.952503, + "stopId": "U1664" + }, + { + "id": "U1665Z1", + "name": "Mořinka", + "isMetro": false, + "latitude": 14.2355, + "longitude": 49.938568, + "stopId": "U1665" + }, + { + "id": "U1665Z2", + "name": "Mořinka", + "isMetro": false, + "latitude": 14.235471, + "longitude": 49.938568, + "stopId": "U1665" + }, + { + "id": "U1666Z1", + "name": "Dobříč", + "isMetro": false, + "latitude": 14.257636, + "longitude": 50.02095, + "stopId": "U1666" + }, + { + "id": "U1666Z2", + "name": "Dobříč", + "isMetro": false, + "latitude": 14.25806, + "longitude": 50.021439, + "stopId": "U1666" + }, + { + "id": "U1667Z1", + "name": "Tachlovice,Jakubská náves", + "isMetro": false, + "latitude": 14.243223, + "longitude": 50.011021, + "stopId": "U1667" + }, + { + "id": "U1667Z2", + "name": "Tachlovice,Jakubská náves", + "isMetro": false, + "latitude": 14.243361, + "longitude": 50.010868, + "stopId": "U1667" + }, + { + "id": "U1668Z1", + "name": "Tachlovice,Na vrškách", + "isMetro": false, + "latitude": 14.240911, + "longitude": 50.014381, + "stopId": "U1668" + }, + { + "id": "U1668Z2", + "name": "Tachlovice,Na vrškách", + "isMetro": false, + "latitude": 14.241419, + "longitude": 50.013718, + "stopId": "U1668" + }, + { + "id": "U1669Z1", + "name": "Nučice,Bytovky", + "isMetro": false, + "latitude": 14.235594, + "longitude": 50.019981, + "stopId": "U1669" + }, + { + "id": "U1669Z2", + "name": "Nučice,Bytovky", + "isMetro": false, + "latitude": 14.236021, + "longitude": 50.019924, + "stopId": "U1669" + }, + { + "id": "U166Z1", + "name": "Toulcův dvůr", + "isMetro": false, + "latitude": 14.519084, + "longitude": 50.047852, + "stopId": "U166" + }, + { + "id": "U166Z2", + "name": "Toulcův dvůr", + "isMetro": false, + "latitude": 14.519601, + "longitude": 50.047752, + "stopId": "U166" + }, + { + "id": "U1670Z3", + "name": "Svrkyně", + "isMetro": false, + "latitude": 14.299769, + "longitude": 50.172283, + "stopId": "U1670" + }, + { + "id": "U1670Z4", + "name": "Svrkyně", + "isMetro": false, + "latitude": 14.299772, + "longitude": 50.172077, + "stopId": "U1670" + }, + { + "id": "U1671Z1", + "name": "Přezletice,Kocanda", + "isMetro": false, + "latitude": 14.573483, + "longitude": 50.15976, + "stopId": "U1671" + }, + { + "id": "U1672Z1", + "name": "Přezletice,U Rybníka", + "isMetro": false, + "latitude": 14.581093, + "longitude": 50.154942, + "stopId": "U1672" + }, + { + "id": "U1672Z2", + "name": "Přezletice,U Rybníka", + "isMetro": false, + "latitude": 14.580935, + "longitude": 50.154865, + "stopId": "U1672" + }, + { + "id": "U1673Z1", + "name": "Lichoceves,Noutonice", + "isMetro": false, + "latitude": 14.280525, + "longitude": 50.165554, + "stopId": "U1673" + }, + { + "id": "U1673Z4", + "name": "Lichoceves,Noutonice", + "isMetro": false, + "latitude": 14.279892, + "longitude": 50.165359, + "stopId": "U1673" + }, + { + "id": "U1673Z5", + "name": "Lichoceves,Noutonice", + "isMetro": false, + "latitude": 14.280166, + "longitude": 50.165356, + "stopId": "U1673" + }, + { + "id": "U1674Z1", + "name": "Rudná,Za Panskou zahradou", + "isMetro": false, + "latitude": 14.206895, + "longitude": 50.022327, + "stopId": "U1674" + }, + { + "id": "U1674Z2", + "name": "Rudná,Za Panskou zahradou", + "isMetro": false, + "latitude": 14.206874, + "longitude": 50.022793, + "stopId": "U1674" + }, + { + "id": "U1675Z1", + "name": "Drahelčice", + "isMetro": false, + "latitude": 14.203474, + "longitude": 50.03146, + "stopId": "U1675" + }, + { + "id": "U1675Z2", + "name": "Drahelčice", + "isMetro": false, + "latitude": 14.203465, + "longitude": 50.031345, + "stopId": "U1675" + }, + { + "id": "U1676Z1", + "name": "Úhonice,škola", + "isMetro": false, + "latitude": 14.186583, + "longitude": 50.041813, + "stopId": "U1676" + }, + { + "id": "U1676Z2", + "name": "Úhonice,škola", + "isMetro": false, + "latitude": 14.186323, + "longitude": 50.04208, + "stopId": "U1676" + }, + { + "id": "U1677Z1", + "name": "Úhonice", + "isMetro": false, + "latitude": 14.185256, + "longitude": 50.045025, + "stopId": "U1677" + }, + { + "id": "U1677Z2", + "name": "Úhonice", + "isMetro": false, + "latitude": 14.184893, + "longitude": 50.044819, + "stopId": "U1677" + }, + { + "id": "U1678Z1", + "name": "Ptice", + "isMetro": false, + "latitude": 14.175558, + "longitude": 50.051762, + "stopId": "U1678" + }, + { + "id": "U1678Z2", + "name": "Ptice", + "isMetro": false, + "latitude": 14.175707, + "longitude": 50.05164, + "stopId": "U1678" + }, + { + "id": "U1679Z1", + "name": "Ptice,křiž.", + "isMetro": false, + "latitude": 14.167462, + "longitude": 50.052452, + "stopId": "U1679" + }, + { + "id": "U1679Z2", + "name": "Ptice,křiž.", + "isMetro": false, + "latitude": 14.167561, + "longitude": 50.052349, + "stopId": "U1679" + }, + { + "id": "U167Z1", + "name": "Ďáblický hřbitov", + "isMetro": false, + "latitude": 14.478769, + "longitude": 50.137398, + "stopId": "U167" + }, + { + "id": "U167Z2", + "name": "Ďáblický hřbitov", + "isMetro": false, + "latitude": 14.478662, + "longitude": 50.137779, + "stopId": "U167" + }, + { + "id": "U1682Z3", + "name": "Červený Újezd", + "isMetro": false, + "latitude": 14.165144, + "longitude": 50.069702, + "stopId": "U1682" + }, + { + "id": "U1682Z5", + "name": "Červený Újezd", + "isMetro": false, + "latitude": 14.165915, + "longitude": 50.069618, + "stopId": "U1682" + }, + { + "id": "U1683Z1", + "name": "Svárov,škola", + "isMetro": false, + "latitude": 14.154728, + "longitude": 50.063763, + "stopId": "U1683" + }, + { + "id": "U1683Z2", + "name": "Svárov,škola", + "isMetro": false, + "latitude": 14.154187, + "longitude": 50.063404, + "stopId": "U1683" + }, + { + "id": "U1684Z1", + "name": "Svárov", + "isMetro": false, + "latitude": 14.151178, + "longitude": 50.062637, + "stopId": "U1684" + }, + { + "id": "U1684Z2", + "name": "Svárov", + "isMetro": false, + "latitude": 14.151171, + "longitude": 50.062565, + "stopId": "U1684" + }, + { + "id": "U1686Z1", + "name": "Unhošť,Nám.", + "isMetro": false, + "latitude": 14.13378, + "longitude": 50.085522, + "stopId": "U1686" + }, + { + "id": "U1686Z2", + "name": "Unhošť,Nám.", + "isMetro": false, + "latitude": 14.133975, + "longitude": 50.085567, + "stopId": "U1686" + }, + { + "id": "U1686Z3", + "name": "Unhošť,Nám.", + "isMetro": false, + "latitude": 14.133879, + "longitude": 50.085476, + "stopId": "U1686" + }, + { + "id": "U1686Z4", + "name": "Unhošť,Nám.", + "isMetro": false, + "latitude": 14.13381, + "longitude": 50.085411, + "stopId": "U1686" + }, + { + "id": "U1686Z6", + "name": "Unhošť,Nám.", + "isMetro": false, + "latitude": 14.134505, + "longitude": 50.085606, + "stopId": "U1686" + }, + { + "id": "U1687Z1", + "name": "Velké Popovice,Brtnice", + "isMetro": false, + "latitude": 14.635621, + "longitude": 49.912601, + "stopId": "U1687" + }, + { + "id": "U1687Z2", + "name": "Velké Popovice,Brtnice", + "isMetro": false, + "latitude": 14.635591, + "longitude": 49.913979, + "stopId": "U1687" + }, + { + "id": "U1688Z1", + "name": "Velké Popovice,rozc.Krámský", + "isMetro": false, + "latitude": 14.64358, + "longitude": 49.909561, + "stopId": "U1688" + }, + { + "id": "U1688Z2", + "name": "Velké Popovice,rozc.Krámský", + "isMetro": false, + "latitude": 14.64356, + "longitude": 49.909779, + "stopId": "U1688" + }, + { + "id": "U1689Z1", + "name": "Velké Popovice,Lojovice", + "isMetro": false, + "latitude": 14.649431, + "longitude": 49.897469, + "stopId": "U1689" + }, + { + "id": "U1689Z2", + "name": "Velké Popovice,Lojovice", + "isMetro": false, + "latitude": 14.649184, + "longitude": 49.897469, + "stopId": "U1689" + }, + { + "id": "U168Z1", + "name": "Hřebenka", + "isMetro": false, + "latitude": 14.39035, + "longitude": 50.0751, + "stopId": "U168" + }, + { + "id": "U168Z2", + "name": "Hřebenka", + "isMetro": false, + "latitude": 14.389874, + "longitude": 50.075069, + "stopId": "U168" + }, + { + "id": "U1690Z1", + "name": "Velké Přílepy", + "isMetro": false, + "latitude": 14.31071, + "longitude": 50.16058, + "stopId": "U1690" + }, + { + "id": "U1690Z2", + "name": "Velké Přílepy", + "isMetro": false, + "latitude": 14.310959, + "longitude": 50.160332, + "stopId": "U1690" + }, + { + "id": "U1690Z8", + "name": "Velké Přílepy", + "isMetro": false, + "latitude": 14.310669, + "longitude": 50.159969, + "stopId": "U1690" + }, + { + "id": "U1690Z9", + "name": "Velké Přílepy", + "isMetro": false, + "latitude": 14.310718, + "longitude": 50.159813, + "stopId": "U1690" + }, + { + "id": "U1691Z1", + "name": "Tursko", + "isMetro": false, + "latitude": 14.320963, + "longitude": 50.191132, + "stopId": "U1691" + }, + { + "id": "U1691Z2", + "name": "Tursko", + "isMetro": false, + "latitude": 14.321362, + "longitude": 50.190319, + "stopId": "U1691" + }, + { + "id": "U1692Z1", + "name": "Holubice,Kozinec", + "isMetro": false, + "latitude": 14.295089, + "longitude": 50.196747, + "stopId": "U1692" + }, + { + "id": "U1692Z2", + "name": "Holubice,Kozinec", + "isMetro": false, + "latitude": 14.294957, + "longitude": 50.196716, + "stopId": "U1692" + }, + { + "id": "U1693Z1", + "name": "Holubice", + "isMetro": false, + "latitude": 14.293356, + "longitude": 50.201832, + "stopId": "U1693" + }, + { + "id": "U1693Z2", + "name": "Holubice", + "isMetro": false, + "latitude": 14.293346, + "longitude": 50.201523, + "stopId": "U1693" + }, + { + "id": "U1694Z1", + "name": "Strančice,rozc.průmyslová zóna", + "isMetro": false, + "latitude": 14.648061, + "longitude": 49.94368, + "stopId": "U1694" + }, + { + "id": "U1695Z1", + "name": "Strančice,Všechromy", + "isMetro": false, + "latitude": 14.656341, + "longitude": 49.948322, + "stopId": "U1695" + }, + { + "id": "U1696Z1", + "name": "Strančice,žel.st.", + "isMetro": false, + "latitude": 14.678181, + "longitude": 49.94931, + "stopId": "U1696" + }, + { + "id": "U1696Z2", + "name": "Strančice,žel.st.", + "isMetro": false, + "latitude": 14.678592, + "longitude": 49.949841, + "stopId": "U1696" + }, + { + "id": "U1696Z301", + "name": "Strančice", + "isMetro": false, + "latitude": 14.678152, + "longitude": 49.949524, + "stopId": "U1696" + }, + { + "id": "U1696Z81", + "name": "Strančice,žel.st.", + "isMetro": false, + "latitude": 14.678181, + "longitude": 49.94931, + "stopId": "U1696" + }, + { + "id": "U1697Z1", + "name": "Kunice", + "isMetro": false, + "latitude": 14.669331, + "longitude": 49.936081, + "stopId": "U1697" + }, + { + "id": "U1697Z2", + "name": "Kunice", + "isMetro": false, + "latitude": 14.669331, + "longitude": 49.935982, + "stopId": "U1697" + }, + { + "id": "U1698Z1", + "name": "Kunice,Vidovice,zámek", + "isMetro": false, + "latitude": 14.666531, + "longitude": 49.927952, + "stopId": "U1698" + }, + { + "id": "U1698Z2", + "name": "Kunice,Vidovice,zámek", + "isMetro": false, + "latitude": 14.666441, + "longitude": 49.927872, + "stopId": "U1698" + }, + { + "id": "U1699Z1", + "name": "Kunice,rozc.Vidovice", + "isMetro": false, + "latitude": 14.664751, + "longitude": 49.920311, + "stopId": "U1699" + }, + { + "id": "U1699Z2", + "name": "Kunice,rozc.Vidovice", + "isMetro": false, + "latitude": 14.664341, + "longitude": 49.920399, + "stopId": "U1699" + }, + { + "id": "U1699Z3", + "name": "Kunice,Vidovice,Bonavita", + "isMetro": false, + "latitude": 14.666921, + "longitude": 49.92128, + "stopId": "U1699" + }, + { + "id": "U1699Z4", + "name": "Kunice,Vidovice,Bonavita", + "isMetro": false, + "latitude": 14.666481, + "longitude": 49.920891, + "stopId": "U1699" + }, + { + "id": "U169Z1", + "name": "Hříbková", + "isMetro": false, + "latitude": 14.580467, + "longitude": 50.020401, + "stopId": "U169" + }, + { + "id": "U169Z2", + "name": "Hříbková", + "isMetro": false, + "latitude": 14.579918, + "longitude": 50.020618, + "stopId": "U169" + }, + { + "id": "U16Z1", + "name": "Basilejské náměstí", + "isMetro": false, + "latitude": 14.470554, + "longitude": 50.087063, + "stopId": "U16" + }, + { + "id": "U16Z2", + "name": "Basilejské náměstí", + "isMetro": false, + "latitude": 14.471287, + "longitude": 50.087315, + "stopId": "U16" + }, + { + "id": "U1700Z2", + "name": "Velké Popovice,pošta", + "isMetro": false, + "latitude": 14.639579, + "longitude": 49.922268, + "stopId": "U1700" + }, + { + "id": "U1700Z3", + "name": "Velké Popovice,pošta", + "isMetro": false, + "latitude": 14.639976, + "longitude": 49.922115, + "stopId": "U1700" + }, + { + "id": "U1701Z1", + "name": "K Chatám", + "isMetro": false, + "latitude": 14.375347, + "longitude": 49.948124, + "stopId": "U1701" + }, + { + "id": "U1701Z2", + "name": "K Chatám", + "isMetro": false, + "latitude": 14.375241, + "longitude": 49.947735, + "stopId": "U1701" + }, + { + "id": "U1702Z1", + "name": "Jíloviště,Cukrák", + "isMetro": false, + "latitude": 14.357084, + "longitude": 49.935116, + "stopId": "U1702" + }, + { + "id": "U1702Z2", + "name": "Jíloviště,Cukrák", + "isMetro": false, + "latitude": 14.35674, + "longitude": 49.934582, + "stopId": "U1702" + }, + { + "id": "U1703Z1", + "name": "Jíloviště,Hl.sil.", + "isMetro": false, + "latitude": 14.342438, + "longitude": 49.929024, + "stopId": "U1703" + }, + { + "id": "U1703Z2", + "name": "Jíloviště,Hl.sil.", + "isMetro": false, + "latitude": 14.342469, + "longitude": 49.92878, + "stopId": "U1703" + }, + { + "id": "U1704Z1", + "name": "Jíloviště,Rozcestí Trnová", + "isMetro": false, + "latitude": 14.336266, + "longitude": 49.920006, + "stopId": "U1704" + }, + { + "id": "U1704Z2", + "name": "Jíloviště,Rozcestí Trnová", + "isMetro": false, + "latitude": 14.33625, + "longitude": 49.921421, + "stopId": "U1704" + }, + { + "id": "U1704Z3", + "name": "Jíloviště,Rozcestí Trnová", + "isMetro": false, + "latitude": 14.33626, + "longitude": 49.92181, + "stopId": "U1704" + }, + { + "id": "U1704Z4", + "name": "Jíloviště,Rozcestí Trnová", + "isMetro": false, + "latitude": 14.336422, + "longitude": 49.9216, + "stopId": "U1704" + }, + { + "id": "U1705Z1", + "name": "Klínec,Hl.sil.", + "isMetro": false, + "latitude": 14.33141, + "longitude": 49.905857, + "stopId": "U1705" + }, + { + "id": "U1705Z2", + "name": "Klínec,Hl.sil.", + "isMetro": false, + "latitude": 14.332075, + "longitude": 49.905949, + "stopId": "U1705" + }, + { + "id": "U1706Z1", + "name": "Líšnice,Hl.sil.", + "isMetro": false, + "latitude": 14.318823, + "longitude": 49.897911, + "stopId": "U1706" + }, + { + "id": "U1706Z2", + "name": "Líšnice,Hl.sil.", + "isMetro": false, + "latitude": 14.319191, + "longitude": 49.897751, + "stopId": "U1706" + }, + { + "id": "U1707Z1", + "name": "Řitka,Hl.sil.", + "isMetro": false, + "latitude": 14.304755, + "longitude": 49.893246, + "stopId": "U1707" + }, + { + "id": "U1707Z2", + "name": "Řitka,Hl.sil.", + "isMetro": false, + "latitude": 14.305572, + "longitude": 49.893196, + "stopId": "U1707" + }, + { + "id": "U1708Z2", + "name": "Mníšek p.Brdy,Závod", + "isMetro": false, + "latitude": 14.27101, + "longitude": 49.872231, + "stopId": "U1708" + }, + { + "id": "U1708Z3", + "name": "Mníšek p.Brdy,Závod", + "isMetro": false, + "latitude": 14.271791, + "longitude": 49.872528, + "stopId": "U1708" + }, + { + "id": "U1709Z1", + "name": "Mníšek p.Brdy,Náměstí", + "isMetro": false, + "latitude": 14.261787, + "longitude": 49.866467, + "stopId": "U1709" + }, + { + "id": "U1709Z2", + "name": "Mníšek p.Brdy,Náměstí", + "isMetro": false, + "latitude": 14.261283, + "longitude": 49.866486, + "stopId": "U1709" + }, + { + "id": "U170Z1", + "name": "Hulická", + "isMetro": false, + "latitude": 14.660268, + "longitude": 50.077766, + "stopId": "U170" + }, + { + "id": "U170Z2", + "name": "Hulická", + "isMetro": false, + "latitude": 14.65995, + "longitude": 50.077282, + "stopId": "U170" + }, + { + "id": "U1710Z1", + "name": "Mníšek p.Brdy,Nad Špejcharem", + "isMetro": false, + "latitude": 14.257453, + "longitude": 49.860657, + "stopId": "U1710" + }, + { + "id": "U1710Z2", + "name": "Mníšek p.Brdy,Nad Špejcharem", + "isMetro": false, + "latitude": 14.257601, + "longitude": 49.860817, + "stopId": "U1710" + }, + { + "id": "U1711Z1", + "name": "Mníšek p.Brdy,U Šibence", + "isMetro": false, + "latitude": 14.25522, + "longitude": 49.856243, + "stopId": "U1711" + }, + { + "id": "U1711Z2", + "name": "Mníšek p.Brdy,U Šibence", + "isMetro": false, + "latitude": 14.254786, + "longitude": 49.855095, + "stopId": "U1711" + }, + { + "id": "U1712Z1", + "name": "Mníšek p.Brdy,Kaple", + "isMetro": false, + "latitude": 14.246668, + "longitude": 49.840988, + "stopId": "U1712" + }, + { + "id": "U1712Z2", + "name": "Mníšek p.Brdy,Kaple", + "isMetro": false, + "latitude": 14.246888, + "longitude": 49.841072, + "stopId": "U1712" + }, + { + "id": "U1712Z3", + "name": "Mníšek p.Brdy,Kaple", + "isMetro": false, + "latitude": 14.246172, + "longitude": 49.840874, + "stopId": "U1712" + }, + { + "id": "U1713Z1", + "name": "Kytín,U Hřbitova", + "isMetro": false, + "latitude": 14.22542, + "longitude": 49.84726, + "stopId": "U1713" + }, + { + "id": "U1713Z2", + "name": "Kytín,U Hřbitova", + "isMetro": false, + "latitude": 14.224783, + "longitude": 49.847458, + "stopId": "U1713" + }, + { + "id": "U1714Z1", + "name": "Kytín,Náves", + "isMetro": false, + "latitude": 14.218474, + "longitude": 49.849991, + "stopId": "U1714" + }, + { + "id": "U1714Z2", + "name": "Kytín,Náves", + "isMetro": false, + "latitude": 14.21849, + "longitude": 49.849991, + "stopId": "U1714" + }, + { + "id": "U1715Z1", + "name": "Mníšek p.Brdy,Sídliště", + "isMetro": false, + "latitude": 14.25946, + "longitude": 49.870689, + "stopId": "U1715" + }, + { + "id": "U1715Z2", + "name": "Mníšek p.Brdy,Sídliště", + "isMetro": false, + "latitude": 14.25973, + "longitude": 49.87067, + "stopId": "U1715" + }, + { + "id": "U1716Z1", + "name": "Mníšek p.Brdy,Na Kvíkalce", + "isMetro": false, + "latitude": 14.25056, + "longitude": 49.870152, + "stopId": "U1716" + }, + { + "id": "U1716Z2", + "name": "Mníšek p.Brdy,Na Kvíkalce", + "isMetro": false, + "latitude": 14.24971, + "longitude": 49.869839, + "stopId": "U1716" + }, + { + "id": "U1717Z1", + "name": "Mníšek p.Brdy,Stříbrná Lhota U Křížku", + "isMetro": false, + "latitude": 14.242496, + "longitude": 49.865711, + "stopId": "U1717" + }, + { + "id": "U1717Z2", + "name": "Mníšek p.Brdy,Stříbrná Lhota U Křížku", + "isMetro": false, + "latitude": 14.242339, + "longitude": 49.865452, + "stopId": "U1717" + }, + { + "id": "U1718Z1", + "name": "Mníšek p.Brdy,Stříbrná Lhota", + "isMetro": false, + "latitude": 14.23734, + "longitude": 49.864048, + "stopId": "U1718" + }, + { + "id": "U1718Z2", + "name": "Mníšek p.Brdy,Stříbrná Lhota", + "isMetro": false, + "latitude": 14.23677, + "longitude": 49.86375, + "stopId": "U1718" + }, + { + "id": "U1719Z1", + "name": "Trnová,Domov Borová", + "isMetro": false, + "latitude": 14.348629, + "longitude": 49.916859, + "stopId": "U1719" + }, + { + "id": "U1719Z2", + "name": "Trnová,Domov Borová", + "isMetro": false, + "latitude": 14.348473, + "longitude": 49.917004, + "stopId": "U1719" + }, + { + "id": "U171Z1", + "name": "Letecké muzeum", + "isMetro": false, + "latitude": 14.535701, + "longitude": 50.125816, + "stopId": "U171" + }, + { + "id": "U171Z2", + "name": "Letecké muzeum", + "isMetro": false, + "latitude": 14.536084, + "longitude": 50.126167, + "stopId": "U171" + }, + { + "id": "U1720Z1", + "name": "Trnová", + "isMetro": false, + "latitude": 14.357645, + "longitude": 49.915203, + "stopId": "U1720" + }, + { + "id": "U1724Z301", + "name": "Bojov", + "isMetro": false, + "latitude": 14.348777, + "longitude": 49.88018, + "stopId": "U1724" + }, + { + "id": "U172Z1", + "name": "Viktoria Žižkov", + "isMetro": false, + "latitude": 14.444494, + "longitude": 50.085091, + "stopId": "U172" + }, + { + "id": "U172Z2", + "name": "Viktoria Žižkov", + "isMetro": false, + "latitude": 14.445333, + "longitude": 50.084938, + "stopId": "U172" + }, + { + "id": "U172Z5", + "name": "Viktoria Žižkov", + "isMetro": false, + "latitude": 14.44345, + "longitude": 50.084759, + "stopId": "U172" + }, + { + "id": "U172Z6", + "name": "Viktoria Žižkov", + "isMetro": false, + "latitude": 14.443458, + "longitude": 50.084896, + "stopId": "U172" + }, + { + "id": "U1730Z1", + "name": "Mníšek p.Brdy,Čisovická", + "isMetro": false, + "latitude": 14.27012, + "longitude": 49.86779, + "stopId": "U1730" + }, + { + "id": "U1730Z2", + "name": "Mníšek p.Brdy,Čisovická", + "isMetro": false, + "latitude": 14.27017, + "longitude": 49.867722, + "stopId": "U1730" + }, + { + "id": "U1732Z1", + "name": "Řitka", + "isMetro": false, + "latitude": 14.298898, + "longitude": 49.894676, + "stopId": "U1732" + }, + { + "id": "U1732Z2", + "name": "Řitka", + "isMetro": false, + "latitude": 14.298237, + "longitude": 49.894779, + "stopId": "U1732" + }, + { + "id": "U1733Z1", + "name": "Mníšek p.Brdy,ÚVR", + "isMetro": false, + "latitude": 14.27544, + "longitude": 49.88007, + "stopId": "U1733" + }, + { + "id": "U1733Z2", + "name": "Mníšek p.Brdy,ÚVR", + "isMetro": false, + "latitude": 14.27525, + "longitude": 49.879749, + "stopId": "U1733" + }, + { + "id": "U1734Z1", + "name": "Mníšek p.Brdy,Žel.zast.Rymaně", + "isMetro": false, + "latitude": 14.27972, + "longitude": 49.858509, + "stopId": "U1734" + }, + { + "id": "U1734Z2", + "name": "Mníšek p.Brdy,Žel.zast.Rymaně", + "isMetro": false, + "latitude": 14.28098, + "longitude": 49.85862, + "stopId": "U1734" + }, + { + "id": "U1734Z301", + "name": "Rymaně", + "isMetro": false, + "latitude": 14.281032, + "longitude": 49.857712, + "stopId": "U1734" + }, + { + "id": "U1735Z1", + "name": "Zahořany", + "isMetro": false, + "latitude": 14.28712, + "longitude": 49.850609, + "stopId": "U1735" + }, + { + "id": "U1735Z2", + "name": "Zahořany", + "isMetro": false, + "latitude": 14.28717, + "longitude": 49.85059, + "stopId": "U1735" + }, + { + "id": "U1737Z1", + "name": "Nová Ves p.Pleší,Rozcestí k Nemocnici", + "isMetro": false, + "latitude": 14.27795, + "longitude": 49.83757, + "stopId": "U1737" + }, + { + "id": "U1737Z2", + "name": "Nová Ves p.Pleší,Rozcestí k Nemocnici", + "isMetro": false, + "latitude": 14.277821, + "longitude": 49.83754, + "stopId": "U1737" + }, + { + "id": "U1738Z1", + "name": "Nová Ves p.Pleší,Nemocnice", + "isMetro": false, + "latitude": 14.283851, + "longitude": 49.834019, + "stopId": "U1738" + }, + { + "id": "U1738Z2", + "name": "Nová Ves p.Pleší,Nemocnice", + "isMetro": false, + "latitude": 14.2836, + "longitude": 49.83419, + "stopId": "U1738" + }, + { + "id": "U1739Z1", + "name": "Jíloviště", + "isMetro": false, + "latitude": 14.342196, + "longitude": 49.927773, + "stopId": "U1739" + }, + { + "id": "U1739Z2", + "name": "Jíloviště", + "isMetro": false, + "latitude": 14.344251, + "longitude": 49.92804, + "stopId": "U1739" + }, + { + "id": "U173Z1", + "name": "Hutě", + "isMetro": false, + "latitude": 14.558508, + "longitude": 50.108414, + "stopId": "U173" + }, + { + "id": "U173Z2", + "name": "Hutě", + "isMetro": false, + "latitude": 14.556442, + "longitude": 50.108841, + "stopId": "U173" + }, + { + "id": "U1740Z301", + "name": "Středokluky", + "isMetro": false, + "latitude": 14.25502, + "longitude": 50.125195, + "stopId": "U1740" + }, + { + "id": "U1740Z461", + "name": "Středokluky,nádraží", + "isMetro": false, + "latitude": 14.25495, + "longitude": 50.124332, + "stopId": "U1740" + }, + { + "id": "U1741Z1", + "name": "Úholičky,V Kopci", + "isMetro": false, + "latitude": 14.333827, + "longitude": 50.159245, + "stopId": "U1741" + }, + { + "id": "U1742Z1", + "name": "Úholičky", + "isMetro": false, + "latitude": 14.334711, + "longitude": 50.161312, + "stopId": "U1742" + }, + { + "id": "U1742Z2", + "name": "Úholičky", + "isMetro": false, + "latitude": 14.334456, + "longitude": 50.161251, + "stopId": "U1742" + }, + { + "id": "U1743Z1", + "name": "Sychrov", + "isMetro": false, + "latitude": 14.65821, + "longitude": 50.120361, + "stopId": "U1743" + }, + { + "id": "U1743Z2", + "name": "Sychrov", + "isMetro": false, + "latitude": 14.656439, + "longitude": 50.12022, + "stopId": "U1743" + }, + { + "id": "U1744Z1", + "name": "Čestlice,Lipová", + "isMetro": false, + "latitude": 14.584941, + "longitude": 49.996941, + "stopId": "U1744" + }, + { + "id": "U1744Z2", + "name": "Čestlice,Lipová", + "isMetro": false, + "latitude": 14.58491, + "longitude": 49.997242, + "stopId": "U1744" + }, + { + "id": "U1745Z1", + "name": "Beroun,U černého koně", + "isMetro": false, + "latitude": 14.072481, + "longitude": 49.965588, + "stopId": "U1745" + }, + { + "id": "U1745Z2", + "name": "Beroun,U černého koně", + "isMetro": false, + "latitude": 14.071859, + "longitude": 49.96521, + "stopId": "U1745" + }, + { + "id": "U1746Z1", + "name": "Beroun,Plzeňka", + "isMetro": false, + "latitude": 14.064529, + "longitude": 49.960209, + "stopId": "U1746" + }, + { + "id": "U1746Z2", + "name": "Beroun,Plzeňka", + "isMetro": false, + "latitude": 14.065053, + "longitude": 49.960365, + "stopId": "U1746" + }, + { + "id": "U1747Z1", + "name": "Beroun,sídliště", + "isMetro": false, + "latitude": 14.053659, + "longitude": 49.955261, + "stopId": "U1747" + }, + { + "id": "U1747Z2", + "name": "Beroun,sídliště", + "isMetro": false, + "latitude": 14.052609, + "longitude": 49.954609, + "stopId": "U1747" + }, + { + "id": "U1748Z1", + "name": "Králův Dvůr,u zámku", + "isMetro": false, + "latitude": 14.0384, + "longitude": 49.94865, + "stopId": "U1748" + }, + { + "id": "U1748Z2", + "name": "Králův Dvůr,u zámku", + "isMetro": false, + "latitude": 14.03945, + "longitude": 49.949028, + "stopId": "U1748" + }, + { + "id": "U1749Z1", + "name": "Beroun,Velké sídliště", + "isMetro": false, + "latitude": 14.052649, + "longitude": 49.957607, + "stopId": "U1749" + }, + { + "id": "U1749Z2", + "name": "Beroun,Velké sídliště", + "isMetro": false, + "latitude": 14.053917, + "longitude": 49.958153, + "stopId": "U1749" + }, + { + "id": "U174Z1", + "name": "Hutmanka", + "isMetro": false, + "latitude": 14.369313, + "longitude": 50.057121, + "stopId": "U174" + }, + { + "id": "U174Z2", + "name": "Hutmanka", + "isMetro": false, + "latitude": 14.369612, + "longitude": 50.056583, + "stopId": "U174" + }, + { + "id": "U174Z301", + "name": "Praha-Jinonice", + "isMetro": false, + "latitude": 14.371966, + "longitude": 50.055588, + "stopId": "U174" + }, + { + "id": "U1750Z301", + "name": "Čisovice", + "isMetro": false, + "latitude": 14.319799, + "longitude": 49.858173, + "stopId": "U1750" + }, + { + "id": "U1751Z1", + "name": "Bojanovice,Rest.", + "isMetro": false, + "latitude": 14.352439, + "longitude": 49.85371, + "stopId": "U1751" + }, + { + "id": "U1751Z2", + "name": "Bojanovice,Rest.", + "isMetro": false, + "latitude": 14.352412, + "longitude": 49.854015, + "stopId": "U1751" + }, + { + "id": "U1752Z1", + "name": "Bojanovice,Chaty", + "isMetro": false, + "latitude": 14.351748, + "longitude": 49.858124, + "stopId": "U1752" + }, + { + "id": "U1752Z2", + "name": "Bojanovice,Chaty", + "isMetro": false, + "latitude": 14.351741, + "longitude": 49.858135, + "stopId": "U1752" + }, + { + "id": "U1753Z1", + "name": "Měchenice", + "isMetro": false, + "latitude": 14.39247, + "longitude": 49.908207, + "stopId": "U1753" + }, + { + "id": "U1753Z2", + "name": "Měchenice", + "isMetro": false, + "latitude": 14.392569, + "longitude": 49.908283, + "stopId": "U1753" + }, + { + "id": "U1754Z1", + "name": "Měchenice,rozc.k žel.st.", + "isMetro": false, + "latitude": 14.385533, + "longitude": 49.910843, + "stopId": "U1754" + }, + { + "id": "U1754Z2", + "name": "Měchenice,rozc.k žel.st.", + "isMetro": false, + "latitude": 14.38555, + "longitude": 49.910954, + "stopId": "U1754" + }, + { + "id": "U1756Z301", + "name": "Měchenice", + "isMetro": false, + "latitude": 14.383836, + "longitude": 49.91095, + "stopId": "U1756" + }, + { + "id": "U1757Z1", + "name": "Bratřínov", + "isMetro": false, + "latitude": 14.340365, + "longitude": 49.842644, + "stopId": "U1757" + }, + { + "id": "U1757Z2", + "name": "Bratřínov", + "isMetro": false, + "latitude": 14.340259, + "longitude": 49.842911, + "stopId": "U1757" + }, + { + "id": "U1758Z1", + "name": "Hvozdnice,Chaty", + "isMetro": false, + "latitude": 14.361584, + "longitude": 49.868504, + "stopId": "U1758" + }, + { + "id": "U1758Z2", + "name": "Hvozdnice,Chaty", + "isMetro": false, + "latitude": 14.361564, + "longitude": 49.86832, + "stopId": "U1758" + }, + { + "id": "U1759Z1", + "name": "Hvozdnice", + "isMetro": false, + "latitude": 14.365396, + "longitude": 49.875557, + "stopId": "U1759" + }, + { + "id": "U1759Z2", + "name": "Hvozdnice", + "isMetro": false, + "latitude": 14.365454, + "longitude": 49.8755, + "stopId": "U1759" + }, + { + "id": "U1760Z1", + "name": "Davle,Sloup", + "isMetro": false, + "latitude": 14.374536, + "longitude": 49.888405, + "stopId": "U1760" + }, + { + "id": "U1760Z2", + "name": "Davle,Sloup", + "isMetro": false, + "latitude": 14.374861, + "longitude": 49.888401, + "stopId": "U1760" + }, + { + "id": "U1761Z1", + "name": "Davle,Pod Račany", + "isMetro": false, + "latitude": 14.389887, + "longitude": 49.891342, + "stopId": "U1761" + }, + { + "id": "U1761Z2", + "name": "Davle,Pod Račany", + "isMetro": false, + "latitude": 14.391644, + "longitude": 49.891644, + "stopId": "U1761" + }, + { + "id": "U1762Z1", + "name": "Davle,U Pomníku", + "isMetro": false, + "latitude": 14.400719, + "longitude": 49.892365, + "stopId": "U1762" + }, + { + "id": "U1762Z2", + "name": "Davle,U Pomníku", + "isMetro": false, + "latitude": 14.400599, + "longitude": 49.892239, + "stopId": "U1762" + }, + { + "id": "U1763Z1", + "name": "Davle,Na Javorce", + "isMetro": false, + "latitude": 14.399719, + "longitude": 49.896843, + "stopId": "U1763" + }, + { + "id": "U1763Z2", + "name": "Davle,Na Javorce", + "isMetro": false, + "latitude": 14.400012, + "longitude": 49.896709, + "stopId": "U1763" + }, + { + "id": "U1764Z1", + "name": "Davle,Obec", + "isMetro": false, + "latitude": 14.398697, + "longitude": 49.890015, + "stopId": "U1764" + }, + { + "id": "U1764Z2", + "name": "Davle,Obec", + "isMetro": false, + "latitude": 14.39958, + "longitude": 49.890816, + "stopId": "U1764" + }, + { + "id": "U1765Z1", + "name": "Vranovice,Ural", + "isMetro": false, + "latitude": 13.900448, + "longitude": 49.627846, + "stopId": "U1765" + }, + { + "id": "U1765Z2", + "name": "Vranovice,Ural", + "isMetro": false, + "latitude": 13.9007, + "longitude": 49.628124, + "stopId": "U1765" + }, + { + "id": "U1766Z1", + "name": "Všestudy", + "isMetro": false, + "latitude": 14.341674, + "longitude": 50.289749, + "stopId": "U1766" + }, + { + "id": "U176Z1", + "name": "Hybšmanka", + "isMetro": false, + "latitude": 14.38045, + "longitude": 50.07795, + "stopId": "U176" + }, + { + "id": "U176Z2", + "name": "Hybšmanka", + "isMetro": false, + "latitude": 14.38195, + "longitude": 50.077919, + "stopId": "U176" + }, + { + "id": "U1775Z1", + "name": "Sedlice", + "isMetro": false, + "latitude": 13.880421, + "longitude": 49.621223, + "stopId": "U1775" + }, + { + "id": "U1775Z2", + "name": "Sedlice", + "isMetro": false, + "latitude": 13.880696, + "longitude": 49.621227, + "stopId": "U1775" + }, + { + "id": "U1776Z1", + "name": "Zlosyň", + "isMetro": false, + "latitude": 14.366378, + "longitude": 50.277912, + "stopId": "U1776" + }, + { + "id": "U1776Z2", + "name": "Zlosyň", + "isMetro": false, + "latitude": 14.366802, + "longitude": 50.278286, + "stopId": "U1776" + }, + { + "id": "U1777Z1", + "name": "Věšín,záv.", + "isMetro": false, + "latitude": 13.830978, + "longitude": 49.615025, + "stopId": "U1777" + }, + { + "id": "U1777Z2", + "name": "Věšín,záv.", + "isMetro": false, + "latitude": 13.831128, + "longitude": 49.614853, + "stopId": "U1777" + }, + { + "id": "U1778Z1", + "name": "Vojkovice", + "isMetro": false, + "latitude": 14.377327, + "longitude": 50.296856, + "stopId": "U1778" + }, + { + "id": "U1778Z2", + "name": "Vojkovice", + "isMetro": false, + "latitude": 14.377327, + "longitude": 50.296856, + "stopId": "U1778" + }, + { + "id": "U1779Z1", + "name": "Hostín u Vojkovic", + "isMetro": false, + "latitude": 14.395306, + "longitude": 50.296112, + "stopId": "U1779" + }, + { + "id": "U1779Z2", + "name": "Hostín u Vojkovic", + "isMetro": false, + "latitude": 14.395376, + "longitude": 50.296127, + "stopId": "U1779" + }, + { + "id": "U177Z1", + "name": "Výzkumný ústav vodohospodářský", + "isMetro": false, + "latitude": 14.393279, + "longitude": 50.115559, + "stopId": "U177" + }, + { + "id": "U177Z2", + "name": "Výzkumný ústav vodohospodářský", + "isMetro": false, + "latitude": 14.391974, + "longitude": 50.116501, + "stopId": "U177" + }, + { + "id": "U1780Z1", + "name": "Dřínov,U Kříže", + "isMetro": false, + "latitude": 14.395769, + "longitude": 50.277515, + "stopId": "U1780" + }, + { + "id": "U1780Z2", + "name": "Dřínov,U Kříže", + "isMetro": false, + "latitude": 14.395916, + "longitude": 50.277634, + "stopId": "U1780" + }, + { + "id": "U1781Z1", + "name": "Dřínov,Náves", + "isMetro": false, + "latitude": 14.398415, + "longitude": 50.273651, + "stopId": "U1781" + }, + { + "id": "U1782Z1", + "name": "Kladno,Rozdělov", + "isMetro": false, + "latitude": 14.065484, + "longitude": 50.140728, + "stopId": "U1782" + }, + { + "id": "U1782Z2", + "name": "Kladno,Rozdělov", + "isMetro": false, + "latitude": 14.065362, + "longitude": 50.140453, + "stopId": "U1782" + }, + { + "id": "U1783Z1", + "name": "Obříství,Dušníky", + "isMetro": false, + "latitude": 14.468998, + "longitude": 50.297245, + "stopId": "U1783" + }, + { + "id": "U1783Z2", + "name": "Obříství,Dušníky", + "isMetro": false, + "latitude": 14.468833, + "longitude": 50.297173, + "stopId": "U1783" + }, + { + "id": "U1784Z1", + "name": "Obříství", + "isMetro": false, + "latitude": 14.477675, + "longitude": 50.295284, + "stopId": "U1784" + }, + { + "id": "U1784Z2", + "name": "Obříství", + "isMetro": false, + "latitude": 14.477535, + "longitude": 50.295338, + "stopId": "U1784" + }, + { + "id": "U1785Z1", + "name": "Obříství,Štěpánský most", + "isMetro": false, + "latitude": 14.494677, + "longitude": 50.289574, + "stopId": "U1785" + }, + { + "id": "U1785Z2", + "name": "Obříství,Štěpánský most", + "isMetro": false, + "latitude": 14.494348, + "longitude": 50.28986, + "stopId": "U1785" + }, + { + "id": "U1785Z3", + "name": "Obříství,Štěpánský most", + "isMetro": false, + "latitude": 14.495646, + "longitude": 50.288017, + "stopId": "U1785" + }, + { + "id": "U1785Z4", + "name": "Obříství,Štěpánský most", + "isMetro": false, + "latitude": 14.495435, + "longitude": 50.287834, + "stopId": "U1785" + }, + { + "id": "U1786Z1", + "name": "Kly,Větrušice", + "isMetro": false, + "latitude": 14.511366, + "longitude": 50.301369, + "stopId": "U1786" + }, + { + "id": "U1786Z2", + "name": "Kly,Větrušice", + "isMetro": false, + "latitude": 14.510909, + "longitude": 50.301254, + "stopId": "U1786" + }, + { + "id": "U1787Z1", + "name": "Kly,Krauzovna", + "isMetro": false, + "latitude": 14.515182, + "longitude": 50.308582, + "stopId": "U1787" + }, + { + "id": "U1787Z2", + "name": "Kly,Krauzovna", + "isMetro": false, + "latitude": 14.516485, + "longitude": 50.308254, + "stopId": "U1787" + }, + { + "id": "U1788Z1", + "name": "Kly,Lom", + "isMetro": false, + "latitude": 14.514979, + "longitude": 50.314251, + "stopId": "U1788" + }, + { + "id": "U1788Z2", + "name": "Kly,Lom", + "isMetro": false, + "latitude": 14.514804, + "longitude": 50.314262, + "stopId": "U1788" + }, + { + "id": "U1789Z1", + "name": "Kly,Vinice", + "isMetro": false, + "latitude": 14.506132, + "longitude": 50.321568, + "stopId": "U1789" + }, + { + "id": "U1789Z2", + "name": "Kly,Vinice", + "isMetro": false, + "latitude": 14.50654, + "longitude": 50.320705, + "stopId": "U1789" + }, + { + "id": "U178Z1", + "name": "Sídliště Zličín", + "isMetro": false, + "latitude": 14.292969, + "longitude": 50.060455, + "stopId": "U178" + }, + { + "id": "U178Z2", + "name": "Sídliště Zličín", + "isMetro": false, + "latitude": 14.293532, + "longitude": 50.06004, + "stopId": "U178" + }, + { + "id": "U1790Z1", + "name": "Mělník,U Nováků", + "isMetro": false, + "latitude": 14.496951, + "longitude": 50.332832, + "stopId": "U1790" + }, + { + "id": "U1790Z2", + "name": "Mělník,U Nováků", + "isMetro": false, + "latitude": 14.497729, + "longitude": 50.331963, + "stopId": "U1790" + }, + { + "id": "U1791Z1", + "name": "Mělník,Cukrovar", + "isMetro": false, + "latitude": 14.491788, + "longitude": 50.340359, + "stopId": "U1791" + }, + { + "id": "U1791Z2", + "name": "Mělník,Cukrovar", + "isMetro": false, + "latitude": 14.49199, + "longitude": 50.339912, + "stopId": "U1791" + }, + { + "id": "U1792Z1", + "name": "Mělník,U Hřiště", + "isMetro": false, + "latitude": 14.486342, + "longitude": 50.344463, + "stopId": "U1792" + }, + { + "id": "U1792Z2", + "name": "Mělník,U Hřiště", + "isMetro": false, + "latitude": 14.487729, + "longitude": 50.343582, + "stopId": "U1792" + }, + { + "id": "U1793Z1", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.488566, + "longitude": 50.350193, + "stopId": "U1793" + }, + { + "id": "U1793Z10", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.488576, + "longitude": 50.350319, + "stopId": "U1793" + }, + { + "id": "U1793Z12", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.48814, + "longitude": 50.350479, + "stopId": "U1793" + }, + { + "id": "U1793Z3", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.488939, + "longitude": 50.350449, + "stopId": "U1793" + }, + { + "id": "U1793Z4", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.489088, + "longitude": 50.350555, + "stopId": "U1793" + }, + { + "id": "U1793Z5", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.489257, + "longitude": 50.35067, + "stopId": "U1793" + }, + { + "id": "U1793Z7", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.489086, + "longitude": 50.350681, + "stopId": "U1793" + }, + { + "id": "U1793Z8", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.488917, + "longitude": 50.350563, + "stopId": "U1793" + }, + { + "id": "U1793Z9", + "name": "Mělník,aut.nádr.", + "isMetro": false, + "latitude": 14.488742, + "longitude": 50.350441, + "stopId": "U1793" + }, + { + "id": "U1794Z1", + "name": "Mělník,Pivovar", + "isMetro": false, + "latitude": 14.482182, + "longitude": 50.353588, + "stopId": "U1794" + }, + { + "id": "U1794Z2", + "name": "Mělník,Pivovar", + "isMetro": false, + "latitude": 14.482146, + "longitude": 50.353413, + "stopId": "U1794" + }, + { + "id": "U1795Z1", + "name": "Mělník,Podolí", + "isMetro": false, + "latitude": 14.474261, + "longitude": 50.357876, + "stopId": "U1795" + }, + { + "id": "U1795Z2", + "name": "Mělník,Podolí", + "isMetro": false, + "latitude": 14.47331, + "longitude": 50.358208, + "stopId": "U1795" + }, + { + "id": "U1796Z1", + "name": "Mělník,Pšovka", + "isMetro": false, + "latitude": 14.468309, + "longitude": 50.362785, + "stopId": "U1796" + }, + { + "id": "U1796Z2", + "name": "Mělník,Pšovka", + "isMetro": false, + "latitude": 14.468512, + "longitude": 50.362301, + "stopId": "U1796" + }, + { + "id": "U1797Z1", + "name": "Mělník,Loděnická", + "isMetro": false, + "latitude": 14.465981, + "longitude": 50.371071, + "stopId": "U1797" + }, + { + "id": "U1797Z2", + "name": "Mělník,Loděnická", + "isMetro": false, + "latitude": 14.465284, + "longitude": 50.369606, + "stopId": "U1797" + }, + { + "id": "U1798Z1", + "name": "Mělník,Mlazice", + "isMetro": false, + "latitude": 14.466779, + "longitude": 50.374207, + "stopId": "U1798" + }, + { + "id": "U1798Z2", + "name": "Mělník,Mlazice", + "isMetro": false, + "latitude": 14.466745, + "longitude": 50.374512, + "stopId": "U1798" + }, + { + "id": "U1798Z301", + "name": "Mělník-Mlazice", + "isMetro": false, + "latitude": 14.467793, + "longitude": 50.375172, + "stopId": "U1798" + }, + { + "id": "U1799Z1", + "name": "Neratovice,Lobkovice,Hřbitov", + "isMetro": false, + "latitude": 14.531651, + "longitude": 50.250328, + "stopId": "U1799" + }, + { + "id": "U1799Z2", + "name": "Neratovice,Lobkovice,Hřbitov", + "isMetro": false, + "latitude": 14.531734, + "longitude": 50.250355, + "stopId": "U1799" + }, + { + "id": "U1799Z401", + "name": "Neratovice,Lobkovice,Hřbitov", + "isMetro": false, + "latitude": 14.531651, + "longitude": 50.250328, + "stopId": "U1799" + }, + { + "id": "U1799Z402", + "name": "Neratovice,Lobkovice,Hřbitov", + "isMetro": false, + "latitude": 14.531734, + "longitude": 50.250355, + "stopId": "U1799" + }, + { + "id": "U179Z1", + "name": "Vinořský hřbitov", + "isMetro": false, + "latitude": 14.581401, + "longitude": 50.145336, + "stopId": "U179" + }, + { + "id": "U179Z2", + "name": "Vinořský hřbitov", + "isMetro": false, + "latitude": 14.580351, + "longitude": 50.144867, + "stopId": "U179" + }, + { + "id": "U179Z3", + "name": "Vinořský hřbitov", + "isMetro": false, + "latitude": 14.578815, + "longitude": 50.144581, + "stopId": "U179" + }, + { + "id": "U179Z4", + "name": "Vinořský hřbitov", + "isMetro": false, + "latitude": 14.579201, + "longitude": 50.144352, + "stopId": "U179" + }, + { + "id": "U179Z5", + "name": "Vinořský hřbitov", + "isMetro": false, + "latitude": 14.578876, + "longitude": 50.144463, + "stopId": "U179" + }, + { + "id": "U17Z1", + "name": "Lehárova", + "isMetro": false, + "latitude": 14.406289, + "longitude": 50.008736, + "stopId": "U17" + }, + { + "id": "U17Z2", + "name": "Lehárova", + "isMetro": false, + "latitude": 14.405209, + "longitude": 50.009029, + "stopId": "U17" + }, + { + "id": "U1800Z1", + "name": "Kostelec n.L.,Jiřice", + "isMetro": false, + "latitude": 14.556991, + "longitude": 50.233372, + "stopId": "U1800" + }, + { + "id": "U1800Z2", + "name": "Kostelec n.L.,Jiřice", + "isMetro": false, + "latitude": 14.556993, + "longitude": 50.233509, + "stopId": "U1800" + }, + { + "id": "U1800Z401", + "name": "Kostelec n.L.,Jiřice", + "isMetro": false, + "latitude": 14.556991, + "longitude": 50.233372, + "stopId": "U1800" + }, + { + "id": "U1800Z402", + "name": "Kostelec n.L.,Jiřice", + "isMetro": false, + "latitude": 14.556993, + "longitude": 50.233509, + "stopId": "U1800" + }, + { + "id": "U1801Z1", + "name": "Kostelec n.L.,Záv.", + "isMetro": false, + "latitude": 14.57222, + "longitude": 50.229481, + "stopId": "U1801" + }, + { + "id": "U1801Z2", + "name": "Kostelec n.L.,Záv.", + "isMetro": false, + "latitude": 14.573941, + "longitude": 50.229065, + "stopId": "U1801" + }, + { + "id": "U1802Z1", + "name": "Kostelec n.L.,U Váhy", + "isMetro": false, + "latitude": 14.584188, + "longitude": 50.22678, + "stopId": "U1802" + }, + { + "id": "U1802Z2", + "name": "Kostelec n.L.,U Váhy", + "isMetro": false, + "latitude": 14.584221, + "longitude": 50.226906, + "stopId": "U1802" + }, + { + "id": "U1804Z1", + "name": "Záryby,Martinov", + "isMetro": false, + "latitude": 14.634398, + "longitude": 50.212902, + "stopId": "U1804" + }, + { + "id": "U1804Z2", + "name": "Záryby,Martinov", + "isMetro": false, + "latitude": 14.634626, + "longitude": 50.212852, + "stopId": "U1804" + }, + { + "id": "U1805Z1", + "name": "Brázdim,Starý Brázdim", + "isMetro": false, + "latitude": 14.589404, + "longitude": 50.182365, + "stopId": "U1805" + }, + { + "id": "U1805Z2", + "name": "Brázdim,Starý Brázdim", + "isMetro": false, + "latitude": 14.589138, + "longitude": 50.182384, + "stopId": "U1805" + }, + { + "id": "U1806Z1", + "name": "Bořanovice", + "isMetro": false, + "latitude": 14.484461, + "longitude": 50.177235, + "stopId": "U1806" + }, + { + "id": "U1806Z2", + "name": "Bořanovice", + "isMetro": false, + "latitude": 14.484267, + "longitude": 50.176754, + "stopId": "U1806" + }, + { + "id": "U1807Z1", + "name": "Líbeznice,I", + "isMetro": false, + "latitude": 14.494022, + "longitude": 50.190552, + "stopId": "U1807" + }, + { + "id": "U1807Z2", + "name": "Líbeznice,I", + "isMetro": false, + "latitude": 14.493586, + "longitude": 50.189728, + "stopId": "U1807" + }, + { + "id": "U1808Z1", + "name": "Horoušany,Horoušánky,Náves", + "isMetro": false, + "latitude": 14.724676, + "longitude": 50.098751, + "stopId": "U1808" + }, + { + "id": "U1808Z2", + "name": "Horoušany,Horoušánky,Náves", + "isMetro": false, + "latitude": 14.72449, + "longitude": 50.098446, + "stopId": "U1808" + }, + { + "id": "U1809Z1", + "name": "Horoušany", + "isMetro": false, + "latitude": 14.740984, + "longitude": 50.106232, + "stopId": "U1809" + }, + { + "id": "U1809Z2", + "name": "Horoušany", + "isMetro": false, + "latitude": 14.740432, + "longitude": 50.106152, + "stopId": "U1809" + }, + { + "id": "U180Z1", + "name": "Chmelnice", + "isMetro": false, + "latitude": 14.486961, + "longitude": 50.092556, + "stopId": "U180" + }, + { + "id": "U180Z2", + "name": "Chmelnice", + "isMetro": false, + "latitude": 14.485838, + "longitude": 50.092487, + "stopId": "U180" + }, + { + "id": "U1810Z1", + "name": "Horoušany,U Rybníka", + "isMetro": false, + "latitude": 14.7412, + "longitude": 50.108055, + "stopId": "U1810" + }, + { + "id": "U1811Z1", + "name": "Říčany,Podhradí", + "isMetro": false, + "latitude": 14.651461, + "longitude": 49.991451, + "stopId": "U1811" + }, + { + "id": "U1811Z2", + "name": "Říčany,Podhradí", + "isMetro": false, + "latitude": 14.651331, + "longitude": 49.991631, + "stopId": "U1811" + }, + { + "id": "U1812Z1", + "name": "Křenice", + "isMetro": false, + "latitude": 14.668661, + "longitude": 50.031952, + "stopId": "U1812" + }, + { + "id": "U1812Z2", + "name": "Křenice", + "isMetro": false, + "latitude": 14.668415, + "longitude": 50.03196, + "stopId": "U1812" + }, + { + "id": "U1813Z1", + "name": "Říčany,Pacov", + "isMetro": false, + "latitude": 14.674361, + "longitude": 50.012642, + "stopId": "U1813" + }, + { + "id": "U1814Z1", + "name": "Březí,U křížku", + "isMetro": false, + "latitude": 14.689946, + "longitude": 50.013668, + "stopId": "U1814" + }, + { + "id": "U1814Z4", + "name": "Březí,U křížku", + "isMetro": false, + "latitude": 14.690235, + "longitude": 50.013222, + "stopId": "U1814" + }, + { + "id": "U1815Z1", + "name": "Říčany,Strašín", + "isMetro": false, + "latitude": 14.702034, + "longitude": 50.003193, + "stopId": "U1815" + }, + { + "id": "U1816Z3", + "name": "Březí,Podskalí", + "isMetro": false, + "latitude": 14.697231, + "longitude": 50.015369, + "stopId": "U1816" + }, + { + "id": "U1817Z1", + "name": "Babice", + "isMetro": false, + "latitude": 14.714871, + "longitude": 50.007862, + "stopId": "U1817" + }, + { + "id": "U1817Z2", + "name": "Babice", + "isMetro": false, + "latitude": 14.714821, + "longitude": 50.007889, + "stopId": "U1817" + }, + { + "id": "U1818Z1", + "name": "Babice,Babičky", + "isMetro": false, + "latitude": 14.726158, + "longitude": 50.009388, + "stopId": "U1818" + }, + { + "id": "U1818Z2", + "name": "Babice,Babičky", + "isMetro": false, + "latitude": 14.726111, + "longitude": 50.009392, + "stopId": "U1818" + }, + { + "id": "U1819Z1", + "name": "Doubek", + "isMetro": false, + "latitude": 14.737173, + "longitude": 50.016838, + "stopId": "U1819" + }, + { + "id": "U1819Z2", + "name": "Doubek", + "isMetro": false, + "latitude": 14.737069, + "longitude": 50.017025, + "stopId": "U1819" + }, + { + "id": "U181Z1", + "name": "Chodovec", + "isMetro": false, + "latitude": 14.490439, + "longitude": 50.039528, + "stopId": "U181" + }, + { + "id": "U181Z2", + "name": "Chodovec", + "isMetro": false, + "latitude": 14.490617, + "longitude": 50.039764, + "stopId": "U181" + }, + { + "id": "U1820Z1", + "name": "Brandýs n.L.-St.Bol.,Výletní", + "isMetro": false, + "latitude": 14.648227, + "longitude": 50.180996, + "stopId": "U1820" + }, + { + "id": "U1820Z2", + "name": "Brandýs n.L.-St.Bol.,Výletní", + "isMetro": false, + "latitude": 14.64807, + "longitude": 50.181087, + "stopId": "U1820" + }, + { + "id": "U1821Z1", + "name": "Jenštejn", + "isMetro": false, + "latitude": 14.612393, + "longitude": 50.153072, + "stopId": "U1821" + }, + { + "id": "U1821Z2", + "name": "Jenštejn", + "isMetro": false, + "latitude": 14.612808, + "longitude": 50.152935, + "stopId": "U1821" + }, + { + "id": "U1822Z1", + "name": "Dřevčice", + "isMetro": false, + "latitude": 14.628945, + "longitude": 50.16679, + "stopId": "U1822" + }, + { + "id": "U1822Z2", + "name": "Dřevčice", + "isMetro": false, + "latitude": 14.628167, + "longitude": 50.166679, + "stopId": "U1822" + }, + { + "id": "U1823Z1", + "name": "Dřevčice,Cihelna", + "isMetro": false, + "latitude": 14.638521, + "longitude": 50.171516, + "stopId": "U1823" + }, + { + "id": "U1823Z2", + "name": "Dřevčice,Cihelna", + "isMetro": false, + "latitude": 14.638593, + "longitude": 50.171604, + "stopId": "U1823" + }, + { + "id": "U1824Z1", + "name": "Brandýs n.L.-St.Bol.,Vrábí", + "isMetro": false, + "latitude": 14.653801, + "longitude": 50.177868, + "stopId": "U1824" + }, + { + "id": "U1824Z2", + "name": "Brandýs n.L.-St.Bol.,Vrábí", + "isMetro": false, + "latitude": 14.654065, + "longitude": 50.178303, + "stopId": "U1824" + }, + { + "id": "U1825Z1", + "name": "Brandýs n.L.-St.Bol.,Pekárny", + "isMetro": false, + "latitude": 14.670064, + "longitude": 50.178879, + "stopId": "U1825" + }, + { + "id": "U1825Z2", + "name": "Brandýs n.L.-St.Bol.,Pekárny", + "isMetro": false, + "latitude": 14.670015, + "longitude": 50.178764, + "stopId": "U1825" + }, + { + "id": "U1826Z2", + "name": "Brandýs n.L.-St.Bol.,Pražská", + "isMetro": false, + "latitude": 14.65755, + "longitude": 50.183281, + "stopId": "U1826" + }, + { + "id": "U1826Z3", + "name": "Brandýs n.L.-St.Bol.,Pražská", + "isMetro": false, + "latitude": 14.657129, + "longitude": 50.184158, + "stopId": "U1826" + }, + { + "id": "U1827Z1", + "name": "Brandýs n.L.-St.Bol.,Nám.", + "isMetro": false, + "latitude": 14.660341, + "longitude": 50.185768, + "stopId": "U1827" + }, + { + "id": "U1827Z2", + "name": "Brandýs n.L.-St.Bol.,Nám.", + "isMetro": false, + "latitude": 14.659796, + "longitude": 50.1856, + "stopId": "U1827" + }, + { + "id": "U1827Z401", + "name": "Brandýs n.L.-St.Bol.,Nám.", + "isMetro": false, + "latitude": 14.660341, + "longitude": 50.185768, + "stopId": "U1827" + }, + { + "id": "U1827Z402", + "name": "Brandýs n.L.-St.Bol.,Nám.", + "isMetro": false, + "latitude": 14.659796, + "longitude": 50.1856, + "stopId": "U1827" + }, + { + "id": "U1828Z1", + "name": "Brandýs n.L.-St.Bol.,U Brány", + "isMetro": false, + "latitude": 14.673411, + "longitude": 50.194878, + "stopId": "U1828" + }, + { + "id": "U1828Z2", + "name": "Brandýs n.L.-St.Bol.,U Brány", + "isMetro": false, + "latitude": 14.671098, + "longitude": 50.193806, + "stopId": "U1828" + }, + { + "id": "U1829Z1", + "name": "Brandýs n.L.-St.Bol.,Aut.st.", + "isMetro": false, + "latitude": 14.67851, + "longitude": 50.197819, + "stopId": "U1829" + }, + { + "id": "U1829Z2", + "name": "Brandýs n.L.-St.Bol.,Aut.st.", + "isMetro": false, + "latitude": 14.67838, + "longitude": 50.197769, + "stopId": "U1829" + }, + { + "id": "U1829Z3", + "name": "Brandýs n.L.-St.Bol.,Aut.st.", + "isMetro": false, + "latitude": 14.678349, + "longitude": 50.19775, + "stopId": "U1829" + }, + { + "id": "U1829Z4", + "name": "Brandýs n.L.-St.Bol.,Aut.st.", + "isMetro": false, + "latitude": 14.67871, + "longitude": 50.19762, + "stopId": "U1829" + }, + { + "id": "U182Z1", + "name": "Na Petynce", + "isMetro": false, + "latitude": 14.38089, + "longitude": 50.088619, + "stopId": "U182" + }, + { + "id": "U182Z2", + "name": "Na Petynce", + "isMetro": false, + "latitude": 14.381809, + "longitude": 50.087753, + "stopId": "U182" + }, + { + "id": "U1830Z1", + "name": "Brandýs n.L.-St.Bol.,Sídliště", + "isMetro": false, + "latitude": 14.685777, + "longitude": 50.201584, + "stopId": "U1830" + }, + { + "id": "U1830Z2", + "name": "Brandýs n.L.-St.Bol.,Sídliště", + "isMetro": false, + "latitude": 14.685165, + "longitude": 50.201389, + "stopId": "U1830" + }, + { + "id": "U1831Z1", + "name": "Brandýs n.L.-St.Bol.,Kasárna", + "isMetro": false, + "latitude": 14.692948, + "longitude": 50.206703, + "stopId": "U1831" + }, + { + "id": "U1831Z2", + "name": "Brandýs n.L.-St.Bol.,Kasárna", + "isMetro": false, + "latitude": 14.692806, + "longitude": 50.206646, + "stopId": "U1831" + }, + { + "id": "U1832Z1", + "name": "Brandýs n.L.-St.Bol.,Žel.st.", + "isMetro": false, + "latitude": 14.691895, + "longitude": 50.209671, + "stopId": "U1832" + }, + { + "id": "U1832Z2", + "name": "Brandýs n.L.-St.Bol.,Žel.st.", + "isMetro": false, + "latitude": 14.692095, + "longitude": 50.209465, + "stopId": "U1832" + }, + { + "id": "U1832Z301", + "name": "Stará Boleslav", + "isMetro": false, + "latitude": 14.692403, + "longitude": 50.209763, + "stopId": "U1832" + }, + { + "id": "U1833Z1", + "name": "Brandýs n.L.-St.Bol.,Škola", + "isMetro": false, + "latitude": 14.682612, + "longitude": 50.196892, + "stopId": "U1833" + }, + { + "id": "U1833Z2", + "name": "Brandýs n.L.-St.Bol.,Škola", + "isMetro": false, + "latitude": 14.682778, + "longitude": 50.197044, + "stopId": "U1833" + }, + { + "id": "U1834Z1", + "name": "Brandýs n.L.-St.Bol.,Sokolovská", + "isMetro": false, + "latitude": 14.689275, + "longitude": 50.194576, + "stopId": "U1834" + }, + { + "id": "U1834Z2", + "name": "Brandýs n.L.-St.Bol.,Sokolovská", + "isMetro": false, + "latitude": 14.688146, + "longitude": 50.195015, + "stopId": "U1834" + }, + { + "id": "U1835Z1", + "name": "Brandýs n.L.-St.Bol.,Vosí hnízdo", + "isMetro": false, + "latitude": 14.700675, + "longitude": 50.193916, + "stopId": "U1835" + }, + { + "id": "U1835Z2", + "name": "Brandýs n.L.-St.Bol.,Vosí hnízdo", + "isMetro": false, + "latitude": 14.700455, + "longitude": 50.193989, + "stopId": "U1835" + }, + { + "id": "U1837Z1", + "name": "Nový Vestec", + "isMetro": false, + "latitude": 14.720077, + "longitude": 50.183693, + "stopId": "U1837" + }, + { + "id": "U1837Z2", + "name": "Nový Vestec", + "isMetro": false, + "latitude": 14.720387, + "longitude": 50.183697, + "stopId": "U1837" + }, + { + "id": "U1838Z1", + "name": "Nový Vestec,U Mostu", + "isMetro": false, + "latitude": 14.729501, + "longitude": 50.184177, + "stopId": "U1838" + }, + { + "id": "U1838Z2", + "name": "Nový Vestec,U Mostu", + "isMetro": false, + "latitude": 14.728024, + "longitude": 50.183708, + "stopId": "U1838" + }, + { + "id": "U1839Z1", + "name": "Káraný,Most", + "isMetro": false, + "latitude": 14.732178, + "longitude": 50.18256, + "stopId": "U1839" + }, + { + "id": "U1839Z2", + "name": "Káraný,Most", + "isMetro": false, + "latitude": 14.73215, + "longitude": 50.182724, + "stopId": "U1839" + }, + { + "id": "U183Z1", + "name": "Chodovská", + "isMetro": false, + "latitude": 14.46838, + "longitude": 50.056896, + "stopId": "U183" + }, + { + "id": "U183Z2", + "name": "Chodovská", + "isMetro": false, + "latitude": 14.469275, + "longitude": 50.056847, + "stopId": "U183" + }, + { + "id": "U183Z3", + "name": "Chodovská", + "isMetro": false, + "latitude": 14.471488, + "longitude": 50.05621, + "stopId": "U183" + }, + { + "id": "U183Z4", + "name": "Chodovská", + "isMetro": false, + "latitude": 14.471794, + "longitude": 50.056248, + "stopId": "U183" + }, + { + "id": "U1840Z1", + "name": "Káraný,Vodárna", + "isMetro": false, + "latitude": 14.732456, + "longitude": 50.178471, + "stopId": "U1840" + }, + { + "id": "U1840Z2", + "name": "Káraný,Vodárna", + "isMetro": false, + "latitude": 14.732134, + "longitude": 50.17799, + "stopId": "U1840" + }, + { + "id": "U1841Z1", + "name": "Káraný,Pošta", + "isMetro": false, + "latitude": 14.736279, + "longitude": 50.174755, + "stopId": "U1841" + }, + { + "id": "U1842Z1", + "name": "Nová Ves p.Pleší", + "isMetro": false, + "latitude": 14.27521, + "longitude": 49.831039, + "stopId": "U1842" + }, + { + "id": "U1842Z2", + "name": "Nová Ves p.Pleší", + "isMetro": false, + "latitude": 14.27511, + "longitude": 49.83136, + "stopId": "U1842" + }, + { + "id": "U1842Z301", + "name": "Nová Ves pod Pleší", + "isMetro": false, + "latitude": 14.270185, + "longitude": 49.827332, + "stopId": "U1842" + }, + { + "id": "U1843Z1", + "name": "Dobříš,Průmyslová zóna", + "isMetro": false, + "latitude": 14.189633, + "longitude": 49.794239, + "stopId": "U1843" + }, + { + "id": "U1843Z2", + "name": "Dobříš,Průmyslová zóna", + "isMetro": false, + "latitude": 14.191827, + "longitude": 49.795837, + "stopId": "U1843" + }, + { + "id": "U1844Z1", + "name": "Velká Lečice", + "isMetro": false, + "latitude": 14.32437, + "longitude": 49.816311, + "stopId": "U1844" + }, + { + "id": "U1845Z1", + "name": "Malá Hraštice", + "isMetro": false, + "latitude": 14.27868, + "longitude": 49.807518, + "stopId": "U1845" + }, + { + "id": "U1845Z2", + "name": "Malá Hraštice", + "isMetro": false, + "latitude": 14.278521, + "longitude": 49.80751, + "stopId": "U1845" + }, + { + "id": "U1847Z1", + "name": "Malá Hraštice,Velká Hraštice", + "isMetro": false, + "latitude": 14.28077, + "longitude": 49.804726, + "stopId": "U1847" + }, + { + "id": "U1847Z2", + "name": "Malá Hraštice,Velká Hraštice", + "isMetro": false, + "latitude": 14.281498, + "longitude": 49.803738, + "stopId": "U1847" + }, + { + "id": "U1848Z1", + "name": "Mníšek p.Brdy,Pražská", + "isMetro": false, + "latitude": 14.266497, + "longitude": 49.868088, + "stopId": "U1848" + }, + { + "id": "U1848Z2", + "name": "Mníšek p.Brdy,Pražská", + "isMetro": false, + "latitude": 14.266953, + "longitude": 49.868141, + "stopId": "U1848" + }, + { + "id": "U1849Z1", + "name": "Mníšek p.Brdy,Rozcestí Kytín", + "isMetro": false, + "latitude": 14.244424, + "longitude": 49.839642, + "stopId": "U1849" + }, + { + "id": "U1849Z2", + "name": "Mníšek p.Brdy,Rozcestí Kytín", + "isMetro": false, + "latitude": 14.244493, + "longitude": 49.83987, + "stopId": "U1849" + }, + { + "id": "U184Z1", + "name": "Škola Radlice", + "isMetro": false, + "latitude": 14.394, + "longitude": 50.060017, + "stopId": "U184" + }, + { + "id": "U184Z13", + "name": "Škola Radlice", + "isMetro": false, + "latitude": 14.393484, + "longitude": 50.059486, + "stopId": "U184" + }, + { + "id": "U184Z14", + "name": "Škola Radlice", + "isMetro": false, + "latitude": 14.392871, + "longitude": 50.059448, + "stopId": "U184" + }, + { + "id": "U184Z2", + "name": "Škola Radlice", + "isMetro": false, + "latitude": 14.395023, + "longitude": 50.060307, + "stopId": "U184" + }, + { + "id": "U184Z3", + "name": "Škola Radlice", + "isMetro": false, + "latitude": 14.393484, + "longitude": 50.059486, + "stopId": "U184" + }, + { + "id": "U184Z4", + "name": "Škola Radlice", + "isMetro": false, + "latitude": 14.392871, + "longitude": 50.059448, + "stopId": "U184" + }, + { + "id": "U1850Z1", + "name": "Dobříš,Žel.st.", + "isMetro": false, + "latitude": 14.18433, + "longitude": 49.789154, + "stopId": "U1850" + }, + { + "id": "U1850Z2", + "name": "Dobříš,Žel.st.", + "isMetro": false, + "latitude": 14.184828, + "longitude": 49.789486, + "stopId": "U1850" + }, + { + "id": "U1850Z3", + "name": "Dobříš,Žel.st.", + "isMetro": false, + "latitude": 14.184689, + "longitude": 49.788864, + "stopId": "U1850" + }, + { + "id": "U1850Z301", + "name": "Dobříš", + "isMetro": false, + "latitude": 14.183123, + "longitude": 49.790001, + "stopId": "U1850" + }, + { + "id": "U1850Z4", + "name": "Dobříš,Žel.st.", + "isMetro": false, + "latitude": 14.184634, + "longitude": 49.788776, + "stopId": "U1850" + }, + { + "id": "U1851Z1", + "name": "Dobříš,nám.", + "isMetro": false, + "latitude": 14.170403, + "longitude": 49.781437, + "stopId": "U1851" + }, + { + "id": "U1851Z2", + "name": "Dobříš,nám.", + "isMetro": false, + "latitude": 14.170124, + "longitude": 49.781345, + "stopId": "U1851" + }, + { + "id": "U1851Z3", + "name": "Dobříš,nám.", + "isMetro": false, + "latitude": 14.170428, + "longitude": 49.781437, + "stopId": "U1851" + }, + { + "id": "U1851Z4", + "name": "Dobříš,nám.", + "isMetro": false, + "latitude": 14.171029, + "longitude": 49.78162, + "stopId": "U1851" + }, + { + "id": "U1851Z7", + "name": "Dobříš,nám.", + "isMetro": false, + "latitude": 14.170274, + "longitude": 49.781498, + "stopId": "U1851" + }, + { + "id": "U1851Z8", + "name": "Dobříš,nám.", + "isMetro": false, + "latitude": 14.170026, + "longitude": 49.781433, + "stopId": "U1851" + }, + { + "id": "U1851Z9", + "name": "Dobříš,nám.", + "isMetro": false, + "latitude": 14.170498, + "longitude": 49.781639, + "stopId": "U1851" + }, + { + "id": "U1852Z1", + "name": "Dobřichovice,Pošta", + "isMetro": false, + "latitude": 14.27465, + "longitude": 49.92696, + "stopId": "U1852" + }, + { + "id": "U1852Z2", + "name": "Dobřichovice,Pošta", + "isMetro": false, + "latitude": 14.27456, + "longitude": 49.92738, + "stopId": "U1852" + }, + { + "id": "U1852Z51", + "name": "Dobřichovice,Pošta", + "isMetro": false, + "latitude": 14.27465, + "longitude": 49.92696, + "stopId": "U1852" + }, + { + "id": "U1853Z3", + "name": "Dobřichovice,Nádraží", + "isMetro": false, + "latitude": 14.289171, + "longitude": 49.927563, + "stopId": "U1853" + }, + { + "id": "U1853Z301", + "name": "Dobřichovice", + "isMetro": false, + "latitude": 14.287769, + "longitude": 49.927475, + "stopId": "U1853" + }, + { + "id": "U1855Z1", + "name": "Všenory,U Kácovských", + "isMetro": false, + "latitude": 14.30335, + "longitude": 49.926811, + "stopId": "U1855" + }, + { + "id": "U1855Z2", + "name": "Všenory,U Kácovských", + "isMetro": false, + "latitude": 14.30309, + "longitude": 49.927979, + "stopId": "U1855" + }, + { + "id": "U1857Z1", + "name": "Černolice,Nový Dvůr", + "isMetro": false, + "latitude": 14.30779, + "longitude": 49.913071, + "stopId": "U1857" + }, + { + "id": "U1857Z2", + "name": "Černolice,Nový Dvůr", + "isMetro": false, + "latitude": 14.307691, + "longitude": 49.912708, + "stopId": "U1857" + }, + { + "id": "U1858Z1", + "name": "Černolice", + "isMetro": false, + "latitude": 14.298982, + "longitude": 49.909351, + "stopId": "U1858" + }, + { + "id": "U1858Z2", + "name": "Černolice", + "isMetro": false, + "latitude": 14.299042, + "longitude": 49.909206, + "stopId": "U1858" + }, + { + "id": "U1859Z1", + "name": "Kunice,Dolní Lomnice", + "isMetro": false, + "latitude": 14.682623, + "longitude": 49.914391, + "stopId": "U1859" + }, + { + "id": "U185Z1", + "name": "Točná", + "isMetro": false, + "latitude": 14.431801, + "longitude": 49.972801, + "stopId": "U185" + }, + { + "id": "U185Z2", + "name": "Točná", + "isMetro": false, + "latitude": 14.43175, + "longitude": 49.972549, + "stopId": "U185" + }, + { + "id": "U1861Z1", + "name": "Říčany,Kuří", + "isMetro": false, + "latitude": 14.619105, + "longitude": 49.987682, + "stopId": "U1861" + }, + { + "id": "U1861Z2", + "name": "Říčany,Kuří", + "isMetro": false, + "latitude": 14.618299, + "longitude": 49.987774, + "stopId": "U1861" + }, + { + "id": "U1863Z301", + "name": "Mirošovice u Prahy", + "isMetro": false, + "latitude": 14.720168, + "longitude": 49.910301, + "stopId": "U1863" + }, + { + "id": "U1864Z1", + "name": "Modletice", + "isMetro": false, + "latitude": 14.59084, + "longitude": 49.970711, + "stopId": "U1864" + }, + { + "id": "U1864Z2", + "name": "Modletice", + "isMetro": false, + "latitude": 14.590621, + "longitude": 49.97068, + "stopId": "U1864" + }, + { + "id": "U1866Z1", + "name": "Modletice,rozc.", + "isMetro": false, + "latitude": 14.598001, + "longitude": 49.97002, + "stopId": "U1866" + }, + { + "id": "U1866Z2", + "name": "Modletice,rozc.", + "isMetro": false, + "latitude": 14.597471, + "longitude": 49.970192, + "stopId": "U1866" + }, + { + "id": "U1869Z1", + "name": "Nupaky", + "isMetro": false, + "latitude": 14.602621, + "longitude": 49.994572, + "stopId": "U1869" + }, + { + "id": "U1869Z2", + "name": "Nupaky", + "isMetro": false, + "latitude": 14.602691, + "longitude": 49.99474, + "stopId": "U1869" + }, + { + "id": "U186Z1", + "name": "Cholupický vrch", + "isMetro": false, + "latitude": 14.434934, + "longitude": 49.994152, + "stopId": "U186" + }, + { + "id": "U186Z2", + "name": "Cholupický vrch", + "isMetro": false, + "latitude": 14.434451, + "longitude": 49.994484, + "stopId": "U186" + }, + { + "id": "U1870Z1", + "name": "Říčany,Štefánikova", + "isMetro": false, + "latitude": 14.660641, + "longitude": 49.993412, + "stopId": "U1870" + }, + { + "id": "U1870Z2", + "name": "Říčany,Štefánikova", + "isMetro": false, + "latitude": 14.660551, + "longitude": 49.993561, + "stopId": "U1870" + }, + { + "id": "U1871Z1", + "name": "Petříkov,Radimovice", + "isMetro": false, + "latitude": 14.617051, + "longitude": 49.936329, + "stopId": "U1871" + }, + { + "id": "U1871Z2", + "name": "Petříkov,Radimovice", + "isMetro": false, + "latitude": 14.617061, + "longitude": 49.936272, + "stopId": "U1871" + }, + { + "id": "U1872Z1", + "name": "Popovičky,Chomutovice", + "isMetro": false, + "latitude": 14.603421, + "longitude": 49.956902, + "stopId": "U1872" + }, + { + "id": "U1872Z2", + "name": "Popovičky,Chomutovice", + "isMetro": false, + "latitude": 14.603431, + "longitude": 49.956959, + "stopId": "U1872" + }, + { + "id": "U1873Z1", + "name": "Popovičky,Nebřenice", + "isMetro": false, + "latitude": 14.613116, + "longitude": 49.94313, + "stopId": "U1873" + }, + { + "id": "U1873Z2", + "name": "Popovičky,Nebřenice", + "isMetro": false, + "latitude": 14.612149, + "longitude": 49.944183, + "stopId": "U1873" + }, + { + "id": "U1874Z1", + "name": "Popovičky,rozc.", + "isMetro": false, + "latitude": 14.600901, + "longitude": 49.961761, + "stopId": "U1874" + }, + { + "id": "U1874Z2", + "name": "Popovičky,rozc.", + "isMetro": false, + "latitude": 14.600921, + "longitude": 49.961929, + "stopId": "U1874" + }, + { + "id": "U1875Z1", + "name": "Říčany,Radošovice,Větrník", + "isMetro": false, + "latitude": 14.662581, + "longitude": 50.001709, + "stopId": "U1875" + }, + { + "id": "U1875Z2", + "name": "Říčany,Radošovice,Větrník", + "isMetro": false, + "latitude": 14.663321, + "longitude": 50.001362, + "stopId": "U1875" + }, + { + "id": "U1877Z3", + "name": "Říčany,Jažlovice", + "isMetro": false, + "latitude": 14.634321, + "longitude": 49.963711, + "stopId": "U1877" + }, + { + "id": "U1878Z1", + "name": "Říčany,Radošovice,Haškova", + "isMetro": false, + "latitude": 14.668367, + "longitude": 49.998985, + "stopId": "U1878" + }, + { + "id": "U1878Z2", + "name": "Říčany,Radošovice,Haškova", + "isMetro": false, + "latitude": 14.667178, + "longitude": 49.999416, + "stopId": "U1878" + }, + { + "id": "U187Z1", + "name": "Chotkovy sady", + "isMetro": false, + "latitude": 14.409066, + "longitude": 50.095024, + "stopId": "U187" + }, + { + "id": "U187Z2", + "name": "Chotkovy sady", + "isMetro": false, + "latitude": 14.409021, + "longitude": 50.095306, + "stopId": "U187" + }, + { + "id": "U1881Z1", + "name": "Říčany,Masarykovo nám.", + "isMetro": false, + "latitude": 14.655691, + "longitude": 49.991611, + "stopId": "U1881" + }, + { + "id": "U1881Z2", + "name": "Říčany,Masarykovo nám.", + "isMetro": false, + "latitude": 14.655641, + "longitude": 49.991699, + "stopId": "U1881" + }, + { + "id": "U1882Z1", + "name": "Říčany,Radošovice,sokolovna", + "isMetro": false, + "latitude": 14.67692, + "longitude": 49.995514, + "stopId": "U1882" + }, + { + "id": "U1882Z2", + "name": "Říčany,Radošovice,sokolovna", + "isMetro": false, + "latitude": 14.674994, + "longitude": 49.995167, + "stopId": "U1882" + }, + { + "id": "U1883Z1", + "name": "Říčany,Park A.Švehly", + "isMetro": false, + "latitude": 14.659901, + "longitude": 49.995159, + "stopId": "U1883" + }, + { + "id": "U1884Z1", + "name": "Říčany,Pod Lihovarem", + "isMetro": false, + "latitude": 14.658861, + "longitude": 49.997242, + "stopId": "U1884" + }, + { + "id": "U1884Z2", + "name": "Říčany,Pod Lihovarem", + "isMetro": false, + "latitude": 14.659036, + "longitude": 49.996937, + "stopId": "U1884" + }, + { + "id": "U1885Z1", + "name": "Říčany,Prům.areál Černokostelecká", + "isMetro": false, + "latitude": 14.656881, + "longitude": 50.00481, + "stopId": "U1885" + }, + { + "id": "U1885Z2", + "name": "Říčany,Prům.areál Černokostelecká", + "isMetro": false, + "latitude": 14.657641, + "longitude": 50.004551, + "stopId": "U1885" + }, + { + "id": "U1886Z1", + "name": "Říčany,Rychta", + "isMetro": false, + "latitude": 14.681791, + "longitude": 49.993622, + "stopId": "U1886" + }, + { + "id": "U1886Z2", + "name": "Říčany,Rychta", + "isMetro": false, + "latitude": 14.682473, + "longitude": 49.992401, + "stopId": "U1886" + }, + { + "id": "U1889Z1", + "name": "Říčany,U Lípy", + "isMetro": false, + "latitude": 14.649961, + "longitude": 49.99015, + "stopId": "U1889" + }, + { + "id": "U1889Z2", + "name": "Říčany,U Lípy", + "isMetro": false, + "latitude": 14.649811, + "longitude": 49.99012, + "stopId": "U1889" + }, + { + "id": "U188Z1", + "name": "Chvaly", + "isMetro": false, + "latitude": 14.597218, + "longitude": 50.112667, + "stopId": "U188" + }, + { + "id": "U188Z2", + "name": "Chvaly", + "isMetro": false, + "latitude": 14.594584, + "longitude": 50.112499, + "stopId": "U188" + }, + { + "id": "U1890Z1", + "name": "Říčany,U Milána", + "isMetro": false, + "latitude": 14.658368, + "longitude": 49.993752, + "stopId": "U1890" + }, + { + "id": "U1891Z1", + "name": "Říčany,Radošovice,podjezd", + "isMetro": false, + "latitude": 14.662301, + "longitude": 50.00116, + "stopId": "U1891" + }, + { + "id": "U1891Z2", + "name": "Říčany,Radošovice,podjezd", + "isMetro": false, + "latitude": 14.66398, + "longitude": 50.001972, + "stopId": "U1891" + }, + { + "id": "U1893Z1", + "name": "Strančice,Otice", + "isMetro": false, + "latitude": 14.645391, + "longitude": 49.963982, + "stopId": "U1893" + }, + { + "id": "U1895Z1", + "name": "Kladno,Rakovnická", + "isMetro": false, + "latitude": 14.059464, + "longitude": 50.136375, + "stopId": "U1895" + }, + { + "id": "U1895Z2", + "name": "Kladno,Rakovnická", + "isMetro": false, + "latitude": 14.060156, + "longitude": 50.136494, + "stopId": "U1895" + }, + { + "id": "U1896Z1", + "name": "Herink", + "isMetro": false, + "latitude": 14.575169, + "longitude": 49.967556, + "stopId": "U1896" + }, + { + "id": "U1896Z2", + "name": "Herink", + "isMetro": false, + "latitude": 14.575235, + "longitude": 49.967854, + "stopId": "U1896" + }, + { + "id": "U1897Z2", + "name": "Říčany,Strašín,Rest.", + "isMetro": false, + "latitude": 14.703601, + "longitude": 49.99984, + "stopId": "U1897" + }, + { + "id": "U1898Z1", + "name": "Říčany,Wolkerova", + "isMetro": false, + "latitude": 14.649721, + "longitude": 49.995251, + "stopId": "U1898" + }, + { + "id": "U1898Z2", + "name": "Říčany,Wolkerova", + "isMetro": false, + "latitude": 14.649721, + "longitude": 49.995251, + "stopId": "U1898" + }, + { + "id": "U189Z1", + "name": "Kavkazská", + "isMetro": false, + "latitude": 14.466017, + "longitude": 50.06955, + "stopId": "U189" + }, + { + "id": "U189Z3", + "name": "Kavkazská", + "isMetro": false, + "latitude": 14.465251, + "longitude": 50.069584, + "stopId": "U189" + }, + { + "id": "U18Z1", + "name": "Bazar", + "isMetro": false, + "latitude": 14.671629, + "longitude": 50.098793, + "stopId": "U18" + }, + { + "id": "U18Z2", + "name": "Bazar", + "isMetro": false, + "latitude": 14.671303, + "longitude": 50.098709, + "stopId": "U18" + }, + { + "id": "U1901Z1", + "name": "Strančice,Kašovice", + "isMetro": false, + "latitude": 14.639861, + "longitude": 49.94453, + "stopId": "U1901" + }, + { + "id": "U1902Z1", + "name": "Strančice,Předboř", + "isMetro": false, + "latitude": 14.62808, + "longitude": 49.94582, + "stopId": "U1902" + }, + { + "id": "U1904Z1", + "name": "Zvole,Jílovská", + "isMetro": false, + "latitude": 14.42374, + "longitude": 49.93045, + "stopId": "U1904" + }, + { + "id": "U1904Z2", + "name": "Zvole,Jílovská", + "isMetro": false, + "latitude": 14.423901, + "longitude": 49.930729, + "stopId": "U1904" + }, + { + "id": "U1905Z1", + "name": "Zvole,Nová Zvole", + "isMetro": false, + "latitude": 14.421158, + "longitude": 49.924015, + "stopId": "U1905" + }, + { + "id": "U1905Z2", + "name": "Zvole,Nová Zvole", + "isMetro": false, + "latitude": 14.42129, + "longitude": 49.923893, + "stopId": "U1905" + }, + { + "id": "U1906Z1", + "name": "Květnice,Za Mlýnem", + "isMetro": false, + "latitude": 14.682032, + "longitude": 50.060741, + "stopId": "U1906" + }, + { + "id": "U1906Z2", + "name": "Květnice,Za Mlýnem", + "isMetro": false, + "latitude": 14.683931, + "longitude": 50.062073, + "stopId": "U1906" + }, + { + "id": "U1907Z1", + "name": "Květnice,Na Ladech", + "isMetro": false, + "latitude": 14.689251, + "longitude": 50.06916, + "stopId": "U1907" + }, + { + "id": "U1907Z2", + "name": "Květnice,Na Ladech", + "isMetro": false, + "latitude": 14.689241, + "longitude": 50.068409, + "stopId": "U1907" + }, + { + "id": "U1908Z1", + "name": "Mukařov,škola", + "isMetro": false, + "latitude": 14.743984, + "longitude": 49.992302, + "stopId": "U1908" + }, + { + "id": "U1908Z2", + "name": "Mukařov,škola", + "isMetro": false, + "latitude": 14.743914, + "longitude": 49.992096, + "stopId": "U1908" + }, + { + "id": "U1909Z1", + "name": "Louňovice,I.hráz", + "isMetro": false, + "latitude": 14.756082, + "longitude": 49.989052, + "stopId": "U1909" + }, + { + "id": "U1909Z2", + "name": "Louňovice,I.hráz", + "isMetro": false, + "latitude": 14.756881, + "longitude": 49.98904, + "stopId": "U1909" + }, + { + "id": "U190Z1", + "name": "I. P. Pavlova", + "isMetro": false, + "latitude": 14.430594, + "longitude": 50.075539, + "stopId": "U190" + }, + { + "id": "U190Z101", + "name": "I. P. Pavlova", + "isMetro": true, + "latitude": 14.4304, + "longitude": 50.074335, + "stopId": "U190" + }, + { + "id": "U190Z102", + "name": "I. P. Pavlova", + "isMetro": true, + "latitude": 14.43022, + "longitude": 50.074328, + "stopId": "U190" + }, + { + "id": "U190Z2", + "name": "I. P. Pavlova", + "isMetro": false, + "latitude": 14.431689, + "longitude": 50.075405, + "stopId": "U190" + }, + { + "id": "U190Z3", + "name": "I. P. Pavlova", + "isMetro": false, + "latitude": 14.431996, + "longitude": 50.076359, + "stopId": "U190" + }, + { + "id": "U190Z4", + "name": "I. P. Pavlova", + "isMetro": false, + "latitude": 14.432039, + "longitude": 50.075733, + "stopId": "U190" + }, + { + "id": "U190Z5", + "name": "I. P. Pavlova", + "isMetro": false, + "latitude": 14.429035, + "longitude": 50.074745, + "stopId": "U190" + }, + { + "id": "U190Z6", + "name": "I. P. Pavlova", + "isMetro": false, + "latitude": 14.43028, + "longitude": 50.075054, + "stopId": "U190" + }, + { + "id": "U190Z9", + "name": "I. P. Pavlova", + "isMetro": false, + "latitude": 14.428992, + "longitude": 50.07494, + "stopId": "U190" + }, + { + "id": "U1910Z1", + "name": "Louňovice", + "isMetro": false, + "latitude": 14.761087, + "longitude": 49.982574, + "stopId": "U1910" + }, + { + "id": "U1911Z1", + "name": "Nespeky,Městečko", + "isMetro": false, + "latitude": 14.675428, + "longitude": 49.851345, + "stopId": "U1911" + }, + { + "id": "U1911Z2", + "name": "Nespeky,Městečko", + "isMetro": false, + "latitude": 14.675275, + "longitude": 49.851234, + "stopId": "U1911" + }, + { + "id": "U1912Z1", + "name": "Květnice,Rozc.", + "isMetro": false, + "latitude": 14.680641, + "longitude": 50.056381, + "stopId": "U1912" + }, + { + "id": "U1912Z2", + "name": "Květnice,Rozc.", + "isMetro": false, + "latitude": 14.680471, + "longitude": 50.056499, + "stopId": "U1912" + }, + { + "id": "U1913Z1", + "name": "Květnice", + "isMetro": false, + "latitude": 14.684731, + "longitude": 50.056992, + "stopId": "U1913" + }, + { + "id": "U1913Z2", + "name": "Květnice", + "isMetro": false, + "latitude": 14.684741, + "longitude": 50.057022, + "stopId": "U1913" + }, + { + "id": "U1915Z1", + "name": "Smečno", + "isMetro": false, + "latitude": 14.043019, + "longitude": 50.188831, + "stopId": "U1915" + }, + { + "id": "U1915Z2", + "name": "Smečno", + "isMetro": false, + "latitude": 14.042689, + "longitude": 50.188595, + "stopId": "U1915" + }, + { + "id": "U1918Z1", + "name": "Kladno,Smečenská", + "isMetro": false, + "latitude": 14.0592, + "longitude": 50.142319, + "stopId": "U1918" + }, + { + "id": "U1918Z2", + "name": "Kladno,Smečenská", + "isMetro": false, + "latitude": 14.058018, + "longitude": 50.142921, + "stopId": "U1918" + }, + { + "id": "U191Z1", + "name": "Italská", + "isMetro": false, + "latitude": 14.436517, + "longitude": 50.078033, + "stopId": "U191" + }, + { + "id": "U191Z2", + "name": "Italská", + "isMetro": false, + "latitude": 14.435564, + "longitude": 50.078289, + "stopId": "U191" + }, + { + "id": "U1923Z1", + "name": "Nový Vestec,Na Pískách", + "isMetro": false, + "latitude": 14.715442, + "longitude": 50.184784, + "stopId": "U1923" + }, + { + "id": "U1923Z2", + "name": "Nový Vestec,Na Pískách", + "isMetro": false, + "latitude": 14.714114, + "longitude": 50.185162, + "stopId": "U1923" + }, + { + "id": "U1924Z1", + "name": "Brandýs n.L.-St.Bol.,Most", + "isMetro": false, + "latitude": 14.667892, + "longitude": 50.190094, + "stopId": "U1924" + }, + { + "id": "U1924Z2", + "name": "Brandýs n.L.-St.Bol.,Most", + "isMetro": false, + "latitude": 14.668455, + "longitude": 50.191479, + "stopId": "U1924" + }, + { + "id": "U1926Z1", + "name": "Velké Přítočno", + "isMetro": false, + "latitude": 14.129025, + "longitude": 50.117401, + "stopId": "U1926" + }, + { + "id": "U1926Z2", + "name": "Velké Přítočno", + "isMetro": false, + "latitude": 14.129168, + "longitude": 50.117298, + "stopId": "U1926" + }, + { + "id": "U1927Z2", + "name": "Strančice,Svojšovice", + "isMetro": false, + "latitude": 14.656329, + "longitude": 49.958523, + "stopId": "U1927" + }, + { + "id": "U1928Z301", + "name": "Světice", + "isMetro": false, + "latitude": 14.657448, + "longitude": 49.969879, + "stopId": "U1928" + }, + { + "id": "U1929Z1", + "name": "Říčany,Černokostelecká", + "isMetro": false, + "latitude": 14.653745, + "longitude": 50.006302, + "stopId": "U1929" + }, + { + "id": "U192Z1", + "name": "Poliklinika Zahradní Město", + "isMetro": false, + "latitude": 14.497467, + "longitude": 50.056583, + "stopId": "U192" + }, + { + "id": "U192Z2", + "name": "Poliklinika Zahradní Město", + "isMetro": false, + "latitude": 14.496462, + "longitude": 50.056473, + "stopId": "U192" + }, + { + "id": "U1930Z1", + "name": "Křenice,V Polníku", + "isMetro": false, + "latitude": 14.679163, + "longitude": 50.025635, + "stopId": "U1930" + }, + { + "id": "U1930Z2", + "name": "Křenice,V Polníku", + "isMetro": false, + "latitude": 14.677866, + "longitude": 50.026791, + "stopId": "U1930" + }, + { + "id": "U1936Z1", + "name": "Jílové u Prahy,Borek", + "isMetro": false, + "latitude": 14.50113, + "longitude": 49.879089, + "stopId": "U1936" + }, + { + "id": "U1936Z2", + "name": "Jílové u Prahy,Borek", + "isMetro": false, + "latitude": 14.499038, + "longitude": 49.879444, + "stopId": "U1936" + }, + { + "id": "U1936Z301", + "name": "Jílové u Prahy", + "isMetro": false, + "latitude": 14.500063, + "longitude": 49.877987, + "stopId": "U1936" + }, + { + "id": "U1937Z1", + "name": "Kamenný Přívoz,U Křížku", + "isMetro": false, + "latitude": 14.503435, + "longitude": 49.866783, + "stopId": "U1937" + }, + { + "id": "U1937Z2", + "name": "Kamenný Přívoz,U Křížku", + "isMetro": false, + "latitude": 14.50373, + "longitude": 49.866985, + "stopId": "U1937" + }, + { + "id": "U1938Z1", + "name": "Kamenný Přívoz", + "isMetro": false, + "latitude": 14.50402, + "longitude": 49.862255, + "stopId": "U1938" + }, + { + "id": "U1938Z2", + "name": "Kamenný Přívoz", + "isMetro": false, + "latitude": 14.50403, + "longitude": 49.86235, + "stopId": "U1938" + }, + { + "id": "U1939Z1", + "name": "Kamenný Přívoz,Žel.st.", + "isMetro": false, + "latitude": 14.514562, + "longitude": 49.859955, + "stopId": "U1939" + }, + { + "id": "U1939Z2", + "name": "Kamenný Přívoz,Žel.st.", + "isMetro": false, + "latitude": 14.514558, + "longitude": 49.860043, + "stopId": "U1939" + }, + { + "id": "U1939Z301", + "name": "Kamenný Přívoz", + "isMetro": false, + "latitude": 14.517215, + "longitude": 49.86644, + "stopId": "U1939" + }, + { + "id": "U193Z1", + "name": "Jahodnice", + "isMetro": false, + "latitude": 14.558084, + "longitude": 50.087437, + "stopId": "U193" + }, + { + "id": "U193Z2", + "name": "Jahodnice", + "isMetro": false, + "latitude": 14.557765, + "longitude": 50.08762, + "stopId": "U193" + }, + { + "id": "U1940Z1", + "name": "Kamenný Přívoz,Kamenný Újezdec", + "isMetro": false, + "latitude": 14.518671, + "longitude": 49.857498, + "stopId": "U1940" + }, + { + "id": "U1940Z2", + "name": "Kamenný Přívoz,Kamenný Újezdec", + "isMetro": false, + "latitude": 14.519111, + "longitude": 49.857738, + "stopId": "U1940" + }, + { + "id": "U1941Z1", + "name": "Krhanice,Prosečnice", + "isMetro": false, + "latitude": 14.534578, + "longitude": 49.862385, + "stopId": "U1941" + }, + { + "id": "U1941Z2", + "name": "Krhanice,Prosečnice", + "isMetro": false, + "latitude": 14.534688, + "longitude": 49.862545, + "stopId": "U1941" + }, + { + "id": "U1941Z301", + "name": "Prosečnice", + "isMetro": false, + "latitude": 14.532993, + "longitude": 49.863651, + "stopId": "U1941" + }, + { + "id": "U1942Z1", + "name": "Brandýs n.L.-St.Bol.,Nádr.", + "isMetro": false, + "latitude": 14.65666, + "longitude": 50.183239, + "stopId": "U1942" + }, + { + "id": "U1942Z2", + "name": "Brandýs n.L.-St.Bol.,Nádr.", + "isMetro": false, + "latitude": 14.656429, + "longitude": 50.1833, + "stopId": "U1942" + }, + { + "id": "U1942Z3", + "name": "Brandýs n.L.-St.Bol.,Nádr.", + "isMetro": false, + "latitude": 14.656199, + "longitude": 50.183357, + "stopId": "U1942" + }, + { + "id": "U1942Z403", + "name": "Brandýs n.L.-St.Bol.,Nádr.", + "isMetro": false, + "latitude": 14.656199, + "longitude": 50.183357, + "stopId": "U1942" + }, + { + "id": "U1943Z1", + "name": "Brandýs n.L.-St.Bol.,Sídl.u nádr.", + "isMetro": false, + "latitude": 14.652139, + "longitude": 50.185379, + "stopId": "U1943" + }, + { + "id": "U1944Z1", + "name": "Brandýs n.L.-St.Bol.,V Olšinkách", + "isMetro": false, + "latitude": 14.648585, + "longitude": 50.186115, + "stopId": "U1944" + }, + { + "id": "U1944Z2", + "name": "Brandýs n.L.-St.Bol.,V Olšinkách", + "isMetro": false, + "latitude": 14.647675, + "longitude": 50.186707, + "stopId": "U1944" + }, + { + "id": "U1946Z1", + "name": "Brandýs n.L.-St.Bol.,Dům peč.služby", + "isMetro": false, + "latitude": 14.655822, + "longitude": 50.191303, + "stopId": "U1946" + }, + { + "id": "U1946Z2", + "name": "Brandýs n.L.-St.Bol.,Dům peč.služby", + "isMetro": false, + "latitude": 14.655572, + "longitude": 50.191448, + "stopId": "U1946" + }, + { + "id": "U1947Z1", + "name": "Brandýs n.L.-St.Bol.,Rychta", + "isMetro": false, + "latitude": 14.656502, + "longitude": 50.18858, + "stopId": "U1947" + }, + { + "id": "U1947Z2", + "name": "Brandýs n.L.-St.Bol.,Rychta", + "isMetro": false, + "latitude": 14.656631, + "longitude": 50.188557, + "stopId": "U1947" + }, + { + "id": "U1948Z1", + "name": "Brandýs n.L.-St.Bol.,Nem.", + "isMetro": false, + "latitude": 14.652706, + "longitude": 50.188591, + "stopId": "U1948" + }, + { + "id": "U1948Z2", + "name": "Brandýs n.L.-St.Bol.,Nem.", + "isMetro": false, + "latitude": 14.652427, + "longitude": 50.188511, + "stopId": "U1948" + }, + { + "id": "U1949Z1", + "name": "Brandýs n.L.-St.Bol.,U Křížku", + "isMetro": false, + "latitude": 14.653187, + "longitude": 50.193462, + "stopId": "U1949" + }, + { + "id": "U1949Z2", + "name": "Brandýs n.L.-St.Bol.,U Křížku", + "isMetro": false, + "latitude": 14.653218, + "longitude": 50.193459, + "stopId": "U1949" + }, + { + "id": "U194Z1", + "name": "Jalodvorská", + "isMetro": false, + "latitude": 14.457134, + "longitude": 50.013966, + "stopId": "U194" + }, + { + "id": "U194Z2", + "name": "Jalodvorská", + "isMetro": false, + "latitude": 14.457717, + "longitude": 50.013367, + "stopId": "U194" + }, + { + "id": "U1950Z1", + "name": "Brandýs n.L.-St.Bol.,Continental", + "isMetro": false, + "latitude": 14.658502, + "longitude": 50.17625, + "stopId": "U1950" + }, + { + "id": "U1950Z2", + "name": "Brandýs n.L.-St.Bol.,Continental", + "isMetro": false, + "latitude": 14.658839, + "longitude": 50.17609, + "stopId": "U1950" + }, + { + "id": "U1951Z1", + "name": "Dvory,Veleliby", + "isMetro": false, + "latitude": 15.021538, + "longitude": 50.211681, + "stopId": "U1951" + }, + { + "id": "U1951Z2", + "name": "Dvory,Veleliby", + "isMetro": false, + "latitude": 15.021536, + "longitude": 50.21162, + "stopId": "U1951" + }, + { + "id": "U1952Z1", + "name": "Bojanovice,Malá Lečice", + "isMetro": false, + "latitude": 14.336631, + "longitude": 49.821598, + "stopId": "U1952" + }, + { + "id": "U1953Z1", + "name": "Bojanovice,Malá Lečice,U Hesů", + "isMetro": false, + "latitude": 14.332971, + "longitude": 49.821159, + "stopId": "U1953" + }, + { + "id": "U1953Z2", + "name": "Bojanovice,Malá Lečice,U Hesů", + "isMetro": false, + "latitude": 14.33319, + "longitude": 49.821148, + "stopId": "U1953" + }, + { + "id": "U1954Z1", + "name": "Bojanovice,Senešnice", + "isMetro": false, + "latitude": 14.307961, + "longitude": 49.828518, + "stopId": "U1954" + }, + { + "id": "U1955Z1", + "name": "Libiš,Obec", + "isMetro": false, + "latitude": 14.500522, + "longitude": 50.277172, + "stopId": "U1955" + }, + { + "id": "U1955Z2", + "name": "Libiš,Obec", + "isMetro": false, + "latitude": 14.500375, + "longitude": 50.277233, + "stopId": "U1955" + }, + { + "id": "U1956Z1", + "name": "Říčany,Hřbitov", + "isMetro": false, + "latitude": 14.643921, + "longitude": 49.98864, + "stopId": "U1956" + }, + { + "id": "U1956Z2", + "name": "Říčany,Hřbitov", + "isMetro": false, + "latitude": 14.644241, + "longitude": 49.988869, + "stopId": "U1956" + }, + { + "id": "U1957Z51", + "name": "Přezletice,Vinořská", + "isMetro": false, + "latitude": 14.577612, + "longitude": 50.153461, + "stopId": "U1957" + }, + { + "id": "U1957Z52", + "name": "Přezletice,Vinořská", + "isMetro": false, + "latitude": 14.577777, + "longitude": 50.153774, + "stopId": "U1957" + }, + { + "id": "U1958Z1", + "name": "Zlonín,Rozc.", + "isMetro": false, + "latitude": 14.498991, + "longitude": 50.211117, + "stopId": "U1958" + }, + { + "id": "U1958Z2", + "name": "Zlonín,Rozc.", + "isMetro": false, + "latitude": 14.498903, + "longitude": 50.210289, + "stopId": "U1958" + }, + { + "id": "U1959Z1", + "name": "Předboj,Rozc.", + "isMetro": false, + "latitude": 14.495111, + "longitude": 50.225048, + "stopId": "U1959" + }, + { + "id": "U1959Z2", + "name": "Předboj,Rozc.", + "isMetro": false, + "latitude": 14.495135, + "longitude": 50.224045, + "stopId": "U1959" + }, + { + "id": "U195Z1", + "name": "Přeštická", + "isMetro": false, + "latitude": 14.512319, + "longitude": 50.04459, + "stopId": "U195" + }, + { + "id": "U195Z2", + "name": "Přeštická", + "isMetro": false, + "latitude": 14.512471, + "longitude": 50.044792, + "stopId": "U195" + }, + { + "id": "U1960Z1", + "name": "Kojetice,Tůmovka", + "isMetro": false, + "latitude": 14.494696, + "longitude": 50.2295, + "stopId": "U1960" + }, + { + "id": "U1960Z2", + "name": "Kojetice,Tůmovka", + "isMetro": false, + "latitude": 14.494473, + "longitude": 50.229198, + "stopId": "U1960" + }, + { + "id": "U1962Z1", + "name": "Brandýs n.L.-St.Bol.,Popovice", + "isMetro": false, + "latitude": 14.624982, + "longitude": 50.177948, + "stopId": "U1962" + }, + { + "id": "U1962Z2", + "name": "Brandýs n.L.-St.Bol.,Popovice", + "isMetro": false, + "latitude": 14.624974, + "longitude": 50.17807, + "stopId": "U1962" + }, + { + "id": "U1963Z1", + "name": "Libiš,Na Staré štaci", + "isMetro": false, + "latitude": 14.495959, + "longitude": 50.268108, + "stopId": "U1963" + }, + { + "id": "U1963Z2", + "name": "Libiš,Na Staré štaci", + "isMetro": false, + "latitude": 14.4958, + "longitude": 50.267899, + "stopId": "U1963" + }, + { + "id": "U1964Z1", + "name": "Libiš,Samoobsluha", + "isMetro": false, + "latitude": 14.503002, + "longitude": 50.273811, + "stopId": "U1964" + }, + { + "id": "U1964Z2", + "name": "Libiš,Samoobsluha", + "isMetro": false, + "latitude": 14.502267, + "longitude": 50.274338, + "stopId": "U1964" + }, + { + "id": "U1965Z1", + "name": "Věšín,Buková", + "isMetro": false, + "latitude": 13.823039, + "longitude": 49.627331, + "stopId": "U1965" + }, + { + "id": "U1968Z1", + "name": "Chrášťany,Protherm", + "isMetro": false, + "latitude": 14.26415, + "longitude": 50.047421, + "stopId": "U1968" + }, + { + "id": "U1968Z2", + "name": "Chrášťany,Protherm", + "isMetro": false, + "latitude": 14.264387, + "longitude": 50.047409, + "stopId": "U1968" + }, + { + "id": "U1969Z1", + "name": "Kněževes,Skladový areál", + "isMetro": false, + "latitude": 14.268614, + "longitude": 50.118061, + "stopId": "U1969" + }, + { + "id": "U1969Z2", + "name": "Kněževes,Skladový areál", + "isMetro": false, + "latitude": 14.269236, + "longitude": 50.118103, + "stopId": "U1969" + }, + { + "id": "U196Z1", + "name": "Jankovcova", + "isMetro": false, + "latitude": 14.444878, + "longitude": 50.110172, + "stopId": "U196" + }, + { + "id": "U196Z2", + "name": "Jankovcova", + "isMetro": false, + "latitude": 14.443852, + "longitude": 50.108891, + "stopId": "U196" + }, + { + "id": "U1970Z1", + "name": "Kněževes,Stará hospoda", + "isMetro": false, + "latitude": 14.261806, + "longitude": 50.118534, + "stopId": "U1970" + }, + { + "id": "U1970Z2", + "name": "Kněževes,Stará hospoda", + "isMetro": false, + "latitude": 14.261647, + "longitude": 50.11842, + "stopId": "U1970" + }, + { + "id": "U1971Z1", + "name": "Neratovice,III.ZŠ", + "isMetro": false, + "latitude": 14.512109, + "longitude": 50.254772, + "stopId": "U1971" + }, + { + "id": "U1971Z2", + "name": "Neratovice,III.ZŠ", + "isMetro": false, + "latitude": 14.51189, + "longitude": 50.254642, + "stopId": "U1971" + }, + { + "id": "U1972Z1", + "name": "Libiš", + "isMetro": false, + "latitude": 14.49593, + "longitude": 50.275879, + "stopId": "U1972" + }, + { + "id": "U1972Z2", + "name": "Libiš", + "isMetro": false, + "latitude": 14.495729, + "longitude": 50.275089, + "stopId": "U1972" + }, + { + "id": "U1973Z1", + "name": "Brandýs n.L.-St.Bol.,U Soudu", + "isMetro": false, + "latitude": 14.66396, + "longitude": 50.185406, + "stopId": "U1973" + }, + { + "id": "U1973Z2", + "name": "Brandýs n.L.-St.Bol.,U Soudu", + "isMetro": false, + "latitude": 14.664769, + "longitude": 50.185005, + "stopId": "U1973" + }, + { + "id": "U1973Z401", + "name": "Brandýs n.L.-St.Bol.,U Soudu", + "isMetro": false, + "latitude": 14.66396, + "longitude": 50.185406, + "stopId": "U1973" + }, + { + "id": "U1973Z402", + "name": "Brandýs n.L.-St.Bol.,U Soudu", + "isMetro": false, + "latitude": 14.664769, + "longitude": 50.185005, + "stopId": "U1973" + }, + { + "id": "U1974Z1", + "name": "Libiš,Aut.st.", + "isMetro": false, + "latitude": 14.510722, + "longitude": 50.26519, + "stopId": "U1974" + }, + { + "id": "U1974Z2", + "name": "Libiš,Aut.st.", + "isMetro": false, + "latitude": 14.510339, + "longitude": 50.265278, + "stopId": "U1974" + }, + { + "id": "U1975Z1", + "name": "Úžice,Netřeba", + "isMetro": false, + "latitude": 14.423721, + "longitude": 50.26207, + "stopId": "U1975" + }, + { + "id": "U1975Z2", + "name": "Úžice,Netřeba", + "isMetro": false, + "latitude": 14.425204, + "longitude": 50.261936, + "stopId": "U1975" + }, + { + "id": "U1976Z1", + "name": "Na Boleslavce", + "isMetro": false, + "latitude": 14.483973, + "longitude": 50.169796, + "stopId": "U1976" + }, + { + "id": "U1976Z2", + "name": "Na Boleslavce", + "isMetro": false, + "latitude": 14.483782, + "longitude": 50.17017, + "stopId": "U1976" + }, + { + "id": "U1977Z1", + "name": "Dobříš,Kodetka", + "isMetro": false, + "latitude": 14.195824, + "longitude": 49.799011, + "stopId": "U1977" + }, + { + "id": "U1977Z2", + "name": "Dobříš,Kodetka", + "isMetro": false, + "latitude": 14.195625, + "longitude": 49.7985, + "stopId": "U1977" + }, + { + "id": "U1978Z1", + "name": "Kostelec n.Č.l.,Sanatorium", + "isMetro": false, + "latitude": 14.863952, + "longitude": 49.989742, + "stopId": "U1978" + }, + { + "id": "U1978Z2", + "name": "Kostelec n.Č.l.,Sanatorium", + "isMetro": false, + "latitude": 14.863461, + "longitude": 49.990211, + "stopId": "U1978" + }, + { + "id": "U1979Z1", + "name": "Kostelec n.Č.l.,Svatbínská", + "isMetro": false, + "latitude": 14.877657, + "longitude": 49.983345, + "stopId": "U1979" + }, + { + "id": "U1979Z2", + "name": "Kostelec n.Č.l.,Svatbínská", + "isMetro": false, + "latitude": 14.876201, + "longitude": 49.983791, + "stopId": "U1979" + }, + { + "id": "U1979Z3", + "name": "Kostelec n.Č.l.,Svatbínská", + "isMetro": false, + "latitude": 14.878131, + "longitude": 49.98378, + "stopId": "U1979" + }, + { + "id": "U197Z1", + "name": "Na Radosti", + "isMetro": false, + "latitude": 14.298967, + "longitude": 50.060516, + "stopId": "U197" + }, + { + "id": "U1980Z1", + "name": "Oleška", + "isMetro": false, + "latitude": 14.912631, + "longitude": 49.972759, + "stopId": "U1980" + }, + { + "id": "U1980Z2", + "name": "Oleška", + "isMetro": false, + "latitude": 14.914421, + "longitude": 49.97266, + "stopId": "U1980" + }, + { + "id": "U1982Z1", + "name": "Oleška,Rozc.Krymlov", + "isMetro": false, + "latitude": 14.932693, + "longitude": 49.969894, + "stopId": "U1982" + }, + { + "id": "U1982Z2", + "name": "Oleška,Rozc.Krymlov", + "isMetro": false, + "latitude": 14.931193, + "longitude": 49.970188, + "stopId": "U1982" + }, + { + "id": "U1983Z1", + "name": "Ždánice", + "isMetro": false, + "latitude": 14.957314, + "longitude": 49.96706, + "stopId": "U1983" + }, + { + "id": "U1983Z2", + "name": "Ždánice", + "isMetro": false, + "latitude": 14.957266, + "longitude": 49.967163, + "stopId": "U1983" + }, + { + "id": "U1983Z3", + "name": "Ždánice", + "isMetro": false, + "latitude": 14.958526, + "longitude": 49.968544, + "stopId": "U1983" + }, + { + "id": "U1984Z1", + "name": "Ždánice,U Jánů", + "isMetro": false, + "latitude": 14.963872, + "longitude": 49.966671, + "stopId": "U1984" + }, + { + "id": "U1984Z2", + "name": "Ždánice,U Jánů", + "isMetro": false, + "latitude": 14.964191, + "longitude": 49.966763, + "stopId": "U1984" + }, + { + "id": "U1984Z3", + "name": "Ždánice,U Jánů", + "isMetro": false, + "latitude": 14.964262, + "longitude": 49.9664, + "stopId": "U1984" + }, + { + "id": "U1984Z4", + "name": "Ždánice,U Jánů", + "isMetro": false, + "latitude": 14.964151, + "longitude": 49.966312, + "stopId": "U1984" + }, + { + "id": "U1985Z1", + "name": "Prusice", + "isMetro": false, + "latitude": 14.876681, + "longitude": 49.968231, + "stopId": "U1985" + }, + { + "id": "U1985Z2", + "name": "Prusice", + "isMetro": false, + "latitude": 14.876632, + "longitude": 49.968319, + "stopId": "U1985" + }, + { + "id": "U1986Z1", + "name": "Nučice", + "isMetro": false, + "latitude": 14.884551, + "longitude": 49.954971, + "stopId": "U1986" + }, + { + "id": "U1986Z2", + "name": "Nučice", + "isMetro": false, + "latitude": 14.884571, + "longitude": 49.955101, + "stopId": "U1986" + }, + { + "id": "U1987Z1", + "name": "Výžerky", + "isMetro": false, + "latitude": 14.883282, + "longitude": 49.944881, + "stopId": "U1987" + }, + { + "id": "U1987Z2", + "name": "Výžerky", + "isMetro": false, + "latitude": 14.883322, + "longitude": 49.945339, + "stopId": "U1987" + }, + { + "id": "U1987Z3", + "name": "Výžerky", + "isMetro": false, + "latitude": 14.883152, + "longitude": 49.945278, + "stopId": "U1987" + }, + { + "id": "U1988Z1", + "name": "Konojedy", + "isMetro": false, + "latitude": 14.851201, + "longitude": 49.948341, + "stopId": "U1988" + }, + { + "id": "U1988Z2", + "name": "Konojedy", + "isMetro": false, + "latitude": 14.851292, + "longitude": 49.94857, + "stopId": "U1988" + }, + { + "id": "U1989Z1", + "name": "Konojedy,Klíče", + "isMetro": false, + "latitude": 14.858581, + "longitude": 49.938816, + "stopId": "U1989" + }, + { + "id": "U1989Z2", + "name": "Konojedy,Klíče", + "isMetro": false, + "latitude": 14.857528, + "longitude": 49.939316, + "stopId": "U1989" + }, + { + "id": "U198Z1", + "name": "Korytná", + "isMetro": false, + "latitude": 14.493726, + "longitude": 50.0644, + "stopId": "U198" + }, + { + "id": "U198Z2", + "name": "Korytná", + "isMetro": false, + "latitude": 14.492867, + "longitude": 50.065186, + "stopId": "U198" + }, + { + "id": "U1990Z1", + "name": "Konojedy,Pila", + "isMetro": false, + "latitude": 14.853045, + "longitude": 49.945423, + "stopId": "U1990" + }, + { + "id": "U1990Z2", + "name": "Konojedy,Pila", + "isMetro": false, + "latitude": 14.853062, + "longitude": 49.945534, + "stopId": "U1990" + }, + { + "id": "U1991Z1", + "name": "Oplany", + "isMetro": false, + "latitude": 14.867311, + "longitude": 49.924366, + "stopId": "U1991" + }, + { + "id": "U1991Z2", + "name": "Oplany", + "isMetro": false, + "latitude": 14.867216, + "longitude": 49.924534, + "stopId": "U1991" + }, + { + "id": "U1992Z1", + "name": "Oplany,Háj.", + "isMetro": false, + "latitude": 14.881434, + "longitude": 49.924477, + "stopId": "U1992" + }, + { + "id": "U1992Z2", + "name": "Oplany,Háj.", + "isMetro": false, + "latitude": 14.880867, + "longitude": 49.924393, + "stopId": "U1992" + }, + { + "id": "U1993Z1", + "name": "Výžerky,Rozc.", + "isMetro": false, + "latitude": 14.891152, + "longitude": 49.930782, + "stopId": "U1993" + }, + { + "id": "U1993Z2", + "name": "Výžerky,Rozc.", + "isMetro": false, + "latitude": 14.891322, + "longitude": 49.930763, + "stopId": "U1993" + }, + { + "id": "U1994Z1", + "name": "Vlkančice,Komorce", + "isMetro": false, + "latitude": 14.898233, + "longitude": 49.922215, + "stopId": "U1994" + }, + { + "id": "U1994Z2", + "name": "Vlkančice,Komorce", + "isMetro": false, + "latitude": 14.897929, + "longitude": 49.922287, + "stopId": "U1994" + }, + { + "id": "U1995Z1", + "name": "Kozojedy", + "isMetro": false, + "latitude": 14.813892, + "longitude": 49.996338, + "stopId": "U1995" + }, + { + "id": "U1995Z2", + "name": "Kozojedy", + "isMetro": false, + "latitude": 14.814098, + "longitude": 49.996445, + "stopId": "U1995" + }, + { + "id": "U1996Z1", + "name": "Brandýs n.L.-St.Bol.,Baumit", + "isMetro": false, + "latitude": 14.665354, + "longitude": 50.176022, + "stopId": "U1996" + }, + { + "id": "U1996Z2", + "name": "Brandýs n.L.-St.Bol.,Baumit", + "isMetro": false, + "latitude": 14.665756, + "longitude": 50.175919, + "stopId": "U1996" + }, + { + "id": "U199Z1", + "name": "Jenerálka", + "isMetro": false, + "latitude": 14.353838, + "longitude": 50.107845, + "stopId": "U199" + }, + { + "id": "U199Z3", + "name": "Jenerálka", + "isMetro": false, + "latitude": 14.353484, + "longitude": 50.107418, + "stopId": "U199" + }, + { + "id": "U19Z1", + "name": "Belárie", + "isMetro": false, + "latitude": 14.401881, + "longitude": 50.013611, + "stopId": "U19" + }, + { + "id": "U19Z11", + "name": "Belárie", + "isMetro": false, + "latitude": 14.397527, + "longitude": 50.013126, + "stopId": "U19" + }, + { + "id": "U19Z2", + "name": "Belárie", + "isMetro": false, + "latitude": 14.401796, + "longitude": 50.012962, + "stopId": "U19" + }, + { + "id": "U1Z1", + "name": "Boletická", + "isMetro": false, + "latitude": 14.513702, + "longitude": 50.132732, + "stopId": "U1" + }, + { + "id": "U1Z2", + "name": "Boletická", + "isMetro": false, + "latitude": 14.513584, + "longitude": 50.133011, + "stopId": "U1" + }, + { + "id": "U2000Z301", + "name": "Praha-Kbely", + "isMetro": false, + "latitude": 14.555811, + "longitude": 50.134834, + "stopId": "U2000" + }, + { + "id": "U2004Z301", + "name": "Vlkovec", + "isMetro": false, + "latitude": 14.814325, + "longitude": 49.874828, + "stopId": "U2004" + }, + { + "id": "U2005Z1", + "name": "Struhařov", + "isMetro": false, + "latitude": 14.744621, + "longitude": 49.952259, + "stopId": "U2005" + }, + { + "id": "U2005Z2", + "name": "Struhařov", + "isMetro": false, + "latitude": 14.743851, + "longitude": 49.952461, + "stopId": "U2005" + }, + { + "id": "U2006Z1", + "name": "Tehovec,Vojkov", + "isMetro": false, + "latitude": 14.712296, + "longitude": 49.988628, + "stopId": "U2006" + }, + { + "id": "U2006Z2", + "name": "Tehovec,Vojkov", + "isMetro": false, + "latitude": 14.712833, + "longitude": 49.98875, + "stopId": "U2006" + }, + { + "id": "U2007Z1", + "name": "Tehovec,Mototechna", + "isMetro": false, + "latitude": 14.725501, + "longitude": 49.990021, + "stopId": "U2007" + }, + { + "id": "U2007Z2", + "name": "Tehovec,Mototechna", + "isMetro": false, + "latitude": 14.724471, + "longitude": 49.990139, + "stopId": "U2007" + }, + { + "id": "U2008Z1", + "name": "Mukařov", + "isMetro": false, + "latitude": 14.740563, + "longitude": 49.989452, + "stopId": "U2008" + }, + { + "id": "U2008Z2", + "name": "Mukařov", + "isMetro": false, + "latitude": 14.740308, + "longitude": 49.989605, + "stopId": "U2008" + }, + { + "id": "U2008Z3", + "name": "Mukařov", + "isMetro": false, + "latitude": 14.74076, + "longitude": 49.989464, + "stopId": "U2008" + }, + { + "id": "U2009Z1", + "name": "Rakovník,V Jamce", + "isMetro": false, + "latitude": 13.730366, + "longitude": 50.106606, + "stopId": "U2009" + }, + { + "id": "U2009Z2", + "name": "Rakovník,V Jamce", + "isMetro": false, + "latitude": 13.729238, + "longitude": 50.106628, + "stopId": "U2009" + }, + { + "id": "U200Z5", + "name": "Jeřická", + "isMetro": false, + "latitude": 14.607712, + "longitude": 50.110062, + "stopId": "U200" + }, + { + "id": "U2010Z1", + "name": "Louňovice,II.hráz", + "isMetro": false, + "latitude": 14.766972, + "longitude": 49.988369, + "stopId": "U2010" + }, + { + "id": "U2010Z2", + "name": "Louňovice,II.hráz", + "isMetro": false, + "latitude": 14.768002, + "longitude": 49.98835, + "stopId": "U2010" + }, + { + "id": "U2010Z3", + "name": "Louňovice,II.hráz", + "isMetro": false, + "latitude": 14.76745, + "longitude": 49.987953, + "stopId": "U2010" + }, + { + "id": "U2011Z1", + "name": "Vyžlovka", + "isMetro": false, + "latitude": 14.788748, + "longitude": 49.98719, + "stopId": "U2011" + }, + { + "id": "U2011Z2", + "name": "Vyžlovka", + "isMetro": false, + "latitude": 14.788859, + "longitude": 49.987389, + "stopId": "U2011" + }, + { + "id": "U2011Z3", + "name": "Vyžlovka", + "isMetro": false, + "latitude": 14.787886, + "longitude": 49.986889, + "stopId": "U2011" + }, + { + "id": "U2011Z4", + "name": "Vyžlovka", + "isMetro": false, + "latitude": 14.788849, + "longitude": 49.986752, + "stopId": "U2011" + }, + { + "id": "U2012Z1", + "name": "Kozojedy,Rozc.", + "isMetro": false, + "latitude": 14.814152, + "longitude": 49.991791, + "stopId": "U2012" + }, + { + "id": "U2012Z2", + "name": "Kozojedy,Rozc.", + "isMetro": false, + "latitude": 14.811711, + "longitude": 49.99176, + "stopId": "U2012" + }, + { + "id": "U2013Z1", + "name": "Kostelec n.Č.l.,Na Skalce", + "isMetro": false, + "latitude": 14.840257, + "longitude": 49.992954, + "stopId": "U2013" + }, + { + "id": "U2013Z2", + "name": "Kostelec n.Č.l.,Na Skalce", + "isMetro": false, + "latitude": 14.839107, + "longitude": 49.993019, + "stopId": "U2013" + }, + { + "id": "U2014Z1", + "name": "Kostelec n.Č.l.,Trativody", + "isMetro": false, + "latitude": 14.845482, + "longitude": 49.992783, + "stopId": "U2014" + }, + { + "id": "U2014Z2", + "name": "Kostelec n.Č.l.,Trativody", + "isMetro": false, + "latitude": 14.846171, + "longitude": 49.992783, + "stopId": "U2014" + }, + { + "id": "U2015Z1", + "name": "Kostelec n.Č.l.,U Křížku", + "isMetro": false, + "latitude": 14.853521, + "longitude": 49.99184, + "stopId": "U2015" + }, + { + "id": "U2015Z2", + "name": "Kostelec n.Č.l.,U Křížku", + "isMetro": false, + "latitude": 14.852561, + "longitude": 49.99202, + "stopId": "U2015" + }, + { + "id": "U2016Z1", + "name": "Kostelec n.Č.l.,Nám.", + "isMetro": false, + "latitude": 14.860076, + "longitude": 49.993973, + "stopId": "U2016" + }, + { + "id": "U2016Z2", + "name": "Kostelec n.Č.l.,Nám.", + "isMetro": false, + "latitude": 14.860183, + "longitude": 49.994133, + "stopId": "U2016" + }, + { + "id": "U2017Z1", + "name": "Vyžlovka,hotel Praha", + "isMetro": false, + "latitude": 14.789141, + "longitude": 49.984142, + "stopId": "U2017" + }, + { + "id": "U2017Z2", + "name": "Vyžlovka,hotel Praha", + "isMetro": false, + "latitude": 14.789261, + "longitude": 49.984001, + "stopId": "U2017" + }, + { + "id": "U2018Z1", + "name": "Jevany,Spojovací", + "isMetro": false, + "latitude": 14.795482, + "longitude": 49.97506, + "stopId": "U2018" + }, + { + "id": "U2018Z2", + "name": "Jevany,Spojovací", + "isMetro": false, + "latitude": 14.795391, + "longitude": 49.975189, + "stopId": "U2018" + }, + { + "id": "U2019Z1", + "name": "Jevany", + "isMetro": false, + "latitude": 14.809721, + "longitude": 49.969452, + "stopId": "U2019" + }, + { + "id": "U2019Z2", + "name": "Jevany", + "isMetro": false, + "latitude": 14.808731, + "longitude": 49.969429, + "stopId": "U2019" + }, + { + "id": "U2019Z3", + "name": "Jevany", + "isMetro": false, + "latitude": 14.810021, + "longitude": 49.969822, + "stopId": "U2019" + }, + { + "id": "U2019Z4", + "name": "Jevany", + "isMetro": false, + "latitude": 14.810061, + "longitude": 49.969841, + "stopId": "U2019" + }, + { + "id": "U201Z1", + "name": "Jezerka", + "isMetro": false, + "latitude": 14.443068, + "longitude": 50.057484, + "stopId": "U201" + }, + { + "id": "U201Z2", + "name": "Jezerka", + "isMetro": false, + "latitude": 14.443034, + "longitude": 50.057201, + "stopId": "U201" + }, + { + "id": "U2020Z1", + "name": "Jevany,Penčice", + "isMetro": false, + "latitude": 14.821021, + "longitude": 49.958099, + "stopId": "U2020" + }, + { + "id": "U2020Z2", + "name": "Jevany,Penčice", + "isMetro": false, + "latitude": 14.820891, + "longitude": 49.958309, + "stopId": "U2020" + }, + { + "id": "U2022Z1", + "name": "Konojedy,Rozc.", + "isMetro": false, + "latitude": 14.832181, + "longitude": 49.946609, + "stopId": "U2022" + }, + { + "id": "U2022Z2", + "name": "Konojedy,Rozc.", + "isMetro": false, + "latitude": 14.832161, + "longitude": 49.94677, + "stopId": "U2022" + }, + { + "id": "U2023Z1", + "name": "Stříbrná Skalice,Hradec", + "isMetro": false, + "latitude": 14.830172, + "longitude": 49.925869, + "stopId": "U2023" + }, + { + "id": "U2023Z2", + "name": "Stříbrná Skalice,Hradec", + "isMetro": false, + "latitude": 14.830141, + "longitude": 49.925701, + "stopId": "U2023" + }, + { + "id": "U2024Z1", + "name": "Stříbrná Skalice,Propast", + "isMetro": false, + "latitude": 14.828931, + "longitude": 49.922279, + "stopId": "U2024" + }, + { + "id": "U2024Z2", + "name": "Stříbrná Skalice,Propast", + "isMetro": false, + "latitude": 14.829211, + "longitude": 49.922321, + "stopId": "U2024" + }, + { + "id": "U2025Z1", + "name": "Stříbrná Skalice,Hruškov", + "isMetro": false, + "latitude": 14.833359, + "longitude": 49.908222, + "stopId": "U2025" + }, + { + "id": "U2025Z2", + "name": "Stříbrná Skalice,Hruškov", + "isMetro": false, + "latitude": 14.833672, + "longitude": 49.907948, + "stopId": "U2025" + }, + { + "id": "U2026Z1", + "name": "Stříbrná Skalice,Náměstí", + "isMetro": false, + "latitude": 14.845991, + "longitude": 49.897709, + "stopId": "U2026" + }, + { + "id": "U2026Z2", + "name": "Stříbrná Skalice,Náměstí", + "isMetro": false, + "latitude": 14.845942, + "longitude": 49.897831, + "stopId": "U2026" + }, + { + "id": "U2027Z1", + "name": "Stříbrná Skalice,Blatiny", + "isMetro": false, + "latitude": 14.85478, + "longitude": 49.897678, + "stopId": "U2027" + }, + { + "id": "U2027Z2", + "name": "Stříbrná Skalice,Blatiny", + "isMetro": false, + "latitude": 14.854373, + "longitude": 49.897774, + "stopId": "U2027" + }, + { + "id": "U2028Z1", + "name": "Stříbrná Skalice,U Konvalinků", + "isMetro": false, + "latitude": 14.860682, + "longitude": 49.891735, + "stopId": "U2028" + }, + { + "id": "U2028Z2", + "name": "Stříbrná Skalice,U Konvalinků", + "isMetro": false, + "latitude": 14.861047, + "longitude": 49.892189, + "stopId": "U2028" + }, + { + "id": "U2029Z1", + "name": "Stříbrná Skalice,Žel.st.", + "isMetro": false, + "latitude": 14.857421, + "longitude": 49.886662, + "stopId": "U2029" + }, + { + "id": "U2029Z2", + "name": "Stříbrná Skalice,Žel.st.", + "isMetro": false, + "latitude": 14.857549, + "longitude": 49.88726, + "stopId": "U2029" + }, + { + "id": "U2029Z3", + "name": "Stříbrná Skalice,Žel.st.", + "isMetro": false, + "latitude": 14.857211, + "longitude": 49.8866, + "stopId": "U2029" + }, + { + "id": "U2029Z301", + "name": "Stříbrná Skalice", + "isMetro": false, + "latitude": 14.85712, + "longitude": 49.883553, + "stopId": "U2029" + }, + { + "id": "U202Z1", + "name": "Bakovská", + "isMetro": false, + "latitude": 14.549814, + "longitude": 50.135078, + "stopId": "U202" + }, + { + "id": "U202Z2", + "name": "Bakovská", + "isMetro": false, + "latitude": 14.549288, + "longitude": 50.134224, + "stopId": "U202" + }, + { + "id": "U202Z3", + "name": "Bakovská", + "isMetro": false, + "latitude": 14.54938, + "longitude": 50.13472, + "stopId": "U202" + }, + { + "id": "U202Z5", + "name": "Bakovská", + "isMetro": false, + "latitude": 14.549046, + "longitude": 50.134995, + "stopId": "U202" + }, + { + "id": "U2030Z1", + "name": "Vlkančice,Pyskočely", + "isMetro": false, + "latitude": 14.861092, + "longitude": 49.880581, + "stopId": "U2030" + }, + { + "id": "U2030Z2", + "name": "Vlkančice,Pyskočely", + "isMetro": false, + "latitude": 14.861351, + "longitude": 49.880409, + "stopId": "U2030" + }, + { + "id": "U2030Z3", + "name": "Vlkančice,Pyskočely", + "isMetro": false, + "latitude": 14.860221, + "longitude": 49.883022, + "stopId": "U2030" + }, + { + "id": "U2030Z4", + "name": "Vlkančice,Pyskočely", + "isMetro": false, + "latitude": 14.861781, + "longitude": 49.882099, + "stopId": "U2030" + }, + { + "id": "U2031Z1", + "name": "Sázava,osada Kopaniny", + "isMetro": false, + "latitude": 14.883008, + "longitude": 49.879025, + "stopId": "U2031" + }, + { + "id": "U2031Z2", + "name": "Sázava,osada Kopaniny", + "isMetro": false, + "latitude": 14.883192, + "longitude": 49.879814, + "stopId": "U2031" + }, + { + "id": "U2032Z1", + "name": "Sázava,Klášterní", + "isMetro": false, + "latitude": 14.896031, + "longitude": 49.874741, + "stopId": "U2032" + }, + { + "id": "U2032Z2", + "name": "Sázava,Klášterní", + "isMetro": false, + "latitude": 14.896021, + "longitude": 49.875011, + "stopId": "U2032" + }, + { + "id": "U2033Z2", + "name": "Sázava,aut.st.", + "isMetro": false, + "latitude": 14.907577, + "longitude": 49.874691, + "stopId": "U2033" + }, + { + "id": "U2033Z3", + "name": "Sázava,aut.st.", + "isMetro": false, + "latitude": 14.907797, + "longitude": 49.874718, + "stopId": "U2033" + }, + { + "id": "U2033Z301", + "name": "Sázava", + "isMetro": false, + "latitude": 14.906286, + "longitude": 49.875221, + "stopId": "U2033" + }, + { + "id": "U2033Z4", + "name": "Sázava,aut.st.", + "isMetro": false, + "latitude": 14.907437, + "longitude": 49.874798, + "stopId": "U2033" + }, + { + "id": "U2033Z5", + "name": "Sázava,aut.st.", + "isMetro": false, + "latitude": 14.907743, + "longitude": 49.874832, + "stopId": "U2033" + }, + { + "id": "U2034Z1", + "name": "Mukařov,odb.Tehovec", + "isMetro": false, + "latitude": 14.735332, + "longitude": 49.988411, + "stopId": "U2034" + }, + { + "id": "U2034Z2", + "name": "Mukařov,odb.Tehovec", + "isMetro": false, + "latitude": 14.736141, + "longitude": 49.989391, + "stopId": "U2034" + }, + { + "id": "U2035Z1", + "name": "Tehovec", + "isMetro": false, + "latitude": 14.729151, + "longitude": 49.98156, + "stopId": "U2035" + }, + { + "id": "U2035Z2", + "name": "Tehovec", + "isMetro": false, + "latitude": 14.729381, + "longitude": 49.98172, + "stopId": "U2035" + }, + { + "id": "U2036Z1", + "name": "Svojetice", + "isMetro": false, + "latitude": 14.738341, + "longitude": 49.972111, + "stopId": "U2036" + }, + { + "id": "U2036Z2", + "name": "Svojetice", + "isMetro": false, + "latitude": 14.738411, + "longitude": 49.972431, + "stopId": "U2036" + }, + { + "id": "U2037Z1", + "name": "Svojetice,Na vyhlídce", + "isMetro": false, + "latitude": 14.744865, + "longitude": 49.963314, + "stopId": "U2037" + }, + { + "id": "U2037Z2", + "name": "Svojetice,Na vyhlídce", + "isMetro": false, + "latitude": 14.745386, + "longitude": 49.962776, + "stopId": "U2037" + }, + { + "id": "U2038Z1", + "name": "Struhařov,U hřiště", + "isMetro": false, + "latitude": 14.750482, + "longitude": 49.956581, + "stopId": "U2038" + }, + { + "id": "U2038Z2", + "name": "Struhařov,U hřiště", + "isMetro": false, + "latitude": 14.750461, + "longitude": 49.956741, + "stopId": "U2038" + }, + { + "id": "U2039Z1", + "name": "Struhařov,Habr", + "isMetro": false, + "latitude": 14.752653, + "longitude": 49.95377, + "stopId": "U2039" + }, + { + "id": "U2039Z2", + "name": "Struhařov,Habr", + "isMetro": false, + "latitude": 14.752729, + "longitude": 49.953819, + "stopId": "U2039" + }, + { + "id": "U203Z1", + "name": "Jindřišská", + "isMetro": false, + "latitude": 14.430158, + "longitude": 50.085083, + "stopId": "U203" + }, + { + "id": "U203Z2", + "name": "Jindřišská", + "isMetro": false, + "latitude": 14.430784, + "longitude": 50.08532, + "stopId": "U203" + }, + { + "id": "U2040Z1", + "name": "Ondřejov,Třemblat,Lipská", + "isMetro": false, + "latitude": 14.757494, + "longitude": 49.936779, + "stopId": "U2040" + }, + { + "id": "U2040Z2", + "name": "Ondřejov,Třemblat,Lipská", + "isMetro": false, + "latitude": 14.758778, + "longitude": 49.935589, + "stopId": "U2040" + }, + { + "id": "U2041Z1", + "name": "Ondřejov,Třemblat", + "isMetro": false, + "latitude": 14.762899, + "longitude": 49.9282, + "stopId": "U2041" + }, + { + "id": "U2041Z2", + "name": "Ondřejov,Třemblat", + "isMetro": false, + "latitude": 14.762461, + "longitude": 49.928841, + "stopId": "U2041" + }, + { + "id": "U2041Z3", + "name": "Ondřejov,Třemblat,Náves", + "isMetro": false, + "latitude": 14.761816, + "longitude": 49.929897, + "stopId": "U2041" + }, + { + "id": "U2042Z1", + "name": "Zvánovice", + "isMetro": false, + "latitude": 14.777915, + "longitude": 49.932045, + "stopId": "U2042" + }, + { + "id": "U2043Z2", + "name": "Ondřejov,Třemblat,Rozc.Zvánovice", + "isMetro": false, + "latitude": 14.763721, + "longitude": 49.926922, + "stopId": "U2043" + }, + { + "id": "U2044Z1", + "name": "Ondřejov,Třemblat,Rozc.Mnichovice", + "isMetro": false, + "latitude": 14.764312, + "longitude": 49.91629, + "stopId": "U2044" + }, + { + "id": "U2044Z2", + "name": "Ondřejov,Třemblat,Rozc.Mnichovice", + "isMetro": false, + "latitude": 14.764235, + "longitude": 49.916023, + "stopId": "U2044" + }, + { + "id": "U2045Z1", + "name": "Ondřejov,U Pily", + "isMetro": false, + "latitude": 14.773911, + "longitude": 49.90889, + "stopId": "U2045" + }, + { + "id": "U2045Z2", + "name": "Ondřejov,U Pily", + "isMetro": false, + "latitude": 14.773899, + "longitude": 49.908726, + "stopId": "U2045" + }, + { + "id": "U2046Z1", + "name": "Ondřejov,Náměstí", + "isMetro": false, + "latitude": 14.783281, + "longitude": 49.90461, + "stopId": "U2046" + }, + { + "id": "U2046Z2", + "name": "Ondřejov,Náměstí", + "isMetro": false, + "latitude": 14.783761, + "longitude": 49.90461, + "stopId": "U2046" + }, + { + "id": "U2047Z1", + "name": "Chocerady", + "isMetro": false, + "latitude": 14.802643, + "longitude": 49.87207, + "stopId": "U2047" + }, + { + "id": "U2048Z1", + "name": "Vlkančice,Pyskočely,Na Babě", + "isMetro": false, + "latitude": 14.874581, + "longitude": 49.884312, + "stopId": "U2048" + }, + { + "id": "U2048Z2", + "name": "Vlkančice,Pyskočely,Na Babě", + "isMetro": false, + "latitude": 14.874921, + "longitude": 49.88438, + "stopId": "U2048" + }, + { + "id": "U2049Z1", + "name": "Horní Kruty,Újezdec,rozc.", + "isMetro": false, + "latitude": 14.944887, + "longitude": 49.892372, + "stopId": "U2049" + }, + { + "id": "U2049Z2", + "name": "Horní Kruty,Újezdec,rozc.", + "isMetro": false, + "latitude": 14.944753, + "longitude": 49.89249, + "stopId": "U2049" + }, + { + "id": "U2049Z3", + "name": "Horní Kruty,Újezdec", + "isMetro": false, + "latitude": 14.947238, + "longitude": 49.899757, + "stopId": "U2049" + }, + { + "id": "U2049Z4", + "name": "Horní Kruty,Újezdec", + "isMetro": false, + "latitude": 14.947316, + "longitude": 49.899651, + "stopId": "U2049" + }, + { + "id": "U204Z1", + "name": "Drazdecká", + "isMetro": false, + "latitude": 14.518543, + "longitude": 49.995907, + "stopId": "U204" + }, + { + "id": "U2050Z1", + "name": "Vlkančice,Stará Hůra", + "isMetro": false, + "latitude": 14.887983, + "longitude": 49.893257, + "stopId": "U2050" + }, + { + "id": "U2050Z2", + "name": "Vlkančice,Stará Hůra", + "isMetro": false, + "latitude": 14.888953, + "longitude": 49.893803, + "stopId": "U2050" + }, + { + "id": "U2051Z1", + "name": "Vlkančice", + "isMetro": false, + "latitude": 14.89812, + "longitude": 49.901943, + "stopId": "U2051" + }, + { + "id": "U2051Z2", + "name": "Vlkančice", + "isMetro": false, + "latitude": 14.898151, + "longitude": 49.901951, + "stopId": "U2051" + }, + { + "id": "U2052Z2", + "name": "Tehov", + "isMetro": false, + "latitude": 14.693281, + "longitude": 49.970882, + "stopId": "U2052" + }, + { + "id": "U2055Z1", + "name": "Mnichovice,nám.", + "isMetro": false, + "latitude": 14.709501, + "longitude": 49.935822, + "stopId": "U2055" + }, + { + "id": "U2055Z2", + "name": "Mnichovice,nám.", + "isMetro": false, + "latitude": 14.709361, + "longitude": 49.935841, + "stopId": "U2055" + }, + { + "id": "U2056Z1", + "name": "Stříbrná Skalice,Hrad.Střimelice", + "isMetro": false, + "latitude": 14.815224, + "longitude": 49.901432, + "stopId": "U2056" + }, + { + "id": "U2056Z2", + "name": "Stříbrná Skalice,Hrad.Střimelice", + "isMetro": false, + "latitude": 14.816021, + "longitude": 49.901699, + "stopId": "U2056" + }, + { + "id": "U2057Z1", + "name": "Stříbrná Skalice,Kost.Střimelice", + "isMetro": false, + "latitude": 14.806911, + "longitude": 49.915241, + "stopId": "U2057" + }, + { + "id": "U2057Z2", + "name": "Stříbrná Skalice,Kost.Střimelice", + "isMetro": false, + "latitude": 14.807052, + "longitude": 49.915619, + "stopId": "U2057" + }, + { + "id": "U2058Z1", + "name": "Stř.Skalice,Kost.Střimel.,Skalka", + "isMetro": false, + "latitude": 14.799071, + "longitude": 49.915642, + "stopId": "U2058" + }, + { + "id": "U2058Z2", + "name": "Stř.Skalice,Kost.Střimel.,Skalka", + "isMetro": false, + "latitude": 14.799312, + "longitude": 49.91568, + "stopId": "U2058" + }, + { + "id": "U2059Z1", + "name": "Ondřejov,Turkovice", + "isMetro": false, + "latitude": 14.756841, + "longitude": 49.90271, + "stopId": "U2059" + }, + { + "id": "U2059Z2", + "name": "Ondřejov,Turkovice", + "isMetro": false, + "latitude": 14.756734, + "longitude": 49.902763, + "stopId": "U2059" + }, + { + "id": "U205Z1", + "name": "Stará Stodůlecká", + "isMetro": false, + "latitude": 14.356984, + "longitude": 50.0495, + "stopId": "U205" + }, + { + "id": "U205Z2", + "name": "Stará Stodůlecká", + "isMetro": false, + "latitude": 14.357617, + "longitude": 50.049267, + "stopId": "U205" + }, + { + "id": "U2060Z1", + "name": "Hrusice,Na Šmejkalce", + "isMetro": false, + "latitude": 14.744601, + "longitude": 49.90324, + "stopId": "U2060" + }, + { + "id": "U2060Z2", + "name": "Hrusice,Na Šmejkalce", + "isMetro": false, + "latitude": 14.744441, + "longitude": 49.903011, + "stopId": "U2060" + }, + { + "id": "U2061Z1", + "name": "Hrusice", + "isMetro": false, + "latitude": 14.738651, + "longitude": 49.90979, + "stopId": "U2061" + }, + { + "id": "U2061Z2", + "name": "Hrusice", + "isMetro": false, + "latitude": 14.738561, + "longitude": 49.909592, + "stopId": "U2061" + }, + { + "id": "U2062Z1", + "name": "Hrusice,Vlčí halíř", + "isMetro": false, + "latitude": 14.738721, + "longitude": 49.92094, + "stopId": "U2062" + }, + { + "id": "U2062Z2", + "name": "Hrusice,Vlčí halíř", + "isMetro": false, + "latitude": 14.738461, + "longitude": 49.921101, + "stopId": "U2062" + }, + { + "id": "U2063Z1", + "name": "Mnichovice,U Hřbitova", + "isMetro": false, + "latitude": 14.727557, + "longitude": 49.925758, + "stopId": "U2063" + }, + { + "id": "U2063Z2", + "name": "Mnichovice,U Hřbitova", + "isMetro": false, + "latitude": 14.72711, + "longitude": 49.925972, + "stopId": "U2063" + }, + { + "id": "U2064Z1", + "name": "Mnichovice,požární dům", + "isMetro": false, + "latitude": 14.713013, + "longitude": 49.932606, + "stopId": "U2064" + }, + { + "id": "U2064Z2", + "name": "Mnichovice,požární dům", + "isMetro": false, + "latitude": 14.712061, + "longitude": 49.933609, + "stopId": "U2064" + }, + { + "id": "U2065Z1", + "name": "Všestary,Vávrov", + "isMetro": false, + "latitude": 14.692141, + "longitude": 49.94561, + "stopId": "U2065" + }, + { + "id": "U2065Z2", + "name": "Všestary,Vávrov", + "isMetro": false, + "latitude": 14.692221, + "longitude": 49.945641, + "stopId": "U2065" + }, + { + "id": "U206Z1", + "name": "Jinonická", + "isMetro": false, + "latitude": 14.377517, + "longitude": 50.069386, + "stopId": "U206" + }, + { + "id": "U2070Z1", + "name": "Doubravčice", + "isMetro": false, + "latitude": 14.791883, + "longitude": 50.022667, + "stopId": "U2070" + }, + { + "id": "U2070Z2", + "name": "Doubravčice", + "isMetro": false, + "latitude": 14.79154, + "longitude": 50.022686, + "stopId": "U2070" + }, + { + "id": "U2071Z1", + "name": "Štíhlice,Doubravčická", + "isMetro": false, + "latitude": 14.777731, + "longitude": 50.008411, + "stopId": "U2071" + }, + { + "id": "U2071Z2", + "name": "Štíhlice,Doubravčická", + "isMetro": false, + "latitude": 14.777535, + "longitude": 50.008499, + "stopId": "U2071" + }, + { + "id": "U2072Z1", + "name": "Mukařov,Žernovka", + "isMetro": false, + "latitude": 14.758083, + "longitude": 50.000206, + "stopId": "U2072" + }, + { + "id": "U2072Z2", + "name": "Mukařov,Žernovka", + "isMetro": false, + "latitude": 14.758583, + "longitude": 50.000343, + "stopId": "U2072" + }, + { + "id": "U2073Z1", + "name": "Mnichovice,hotel Myšlín", + "isMetro": false, + "latitude": 14.735451, + "longitude": 49.939129, + "stopId": "U2073" + }, + { + "id": "U2073Z2", + "name": "Mnichovice,hotel Myšlín", + "isMetro": false, + "latitude": 14.735511, + "longitude": 49.93914, + "stopId": "U2073" + }, + { + "id": "U2074Z1", + "name": "Kostelec n.Č.l.,Dobrovského", + "isMetro": false, + "latitude": 14.853862, + "longitude": 49.991051, + "stopId": "U2074" + }, + { + "id": "U2074Z2", + "name": "Kostelec n.Č.l.,Dobrovského", + "isMetro": false, + "latitude": 14.853281, + "longitude": 49.990772, + "stopId": "U2074" + }, + { + "id": "U2075Z1", + "name": "Kostelec n.Č.l.,Jevanská", + "isMetro": false, + "latitude": 14.849201, + "longitude": 49.987141, + "stopId": "U2075" + }, + { + "id": "U2075Z2", + "name": "Kostelec n.Č.l.,Jevanská", + "isMetro": false, + "latitude": 14.849261, + "longitude": 49.987091, + "stopId": "U2075" + }, + { + "id": "U2077Z1", + "name": "Jevany,Smrčiny", + "isMetro": false, + "latitude": 14.837005, + "longitude": 49.983418, + "stopId": "U2077" + }, + { + "id": "U2077Z2", + "name": "Jevany,Smrčiny", + "isMetro": false, + "latitude": 14.83767, + "longitude": 49.983559, + "stopId": "U2077" + }, + { + "id": "U2078Z1", + "name": "Jevany,Lesní podnik", + "isMetro": false, + "latitude": 14.828996, + "longitude": 49.977768, + "stopId": "U2078" + }, + { + "id": "U2078Z2", + "name": "Jevany,Lesní podnik", + "isMetro": false, + "latitude": 14.829343, + "longitude": 49.978027, + "stopId": "U2078" + }, + { + "id": "U2079Z1", + "name": "Černé Voděrady,Chaloupky", + "isMetro": false, + "latitude": 14.809471, + "longitude": 49.94487, + "stopId": "U2079" + }, + { + "id": "U2079Z2", + "name": "Černé Voděrady,Chaloupky", + "isMetro": false, + "latitude": 14.810561, + "longitude": 49.94508, + "stopId": "U2079" + }, + { + "id": "U207Z1", + "name": "Jiráskova čtvrť", + "isMetro": false, + "latitude": 14.545899, + "longitude": 50.094101, + "stopId": "U207" + }, + { + "id": "U207Z2", + "name": "Jiráskova čtvrť", + "isMetro": false, + "latitude": 14.546406, + "longitude": 50.094025, + "stopId": "U207" + }, + { + "id": "U207Z3", + "name": "Kyjský hřbitov", + "isMetro": false, + "latitude": 14.546726, + "longitude": 50.093193, + "stopId": "U207" + }, + { + "id": "U207Z4", + "name": "Kyjský hřbitov", + "isMetro": false, + "latitude": 14.547098, + "longitude": 50.092503, + "stopId": "U207" + }, + { + "id": "U2080Z1", + "name": "Černé Voděrady,ObÚ", + "isMetro": false, + "latitude": 14.807181, + "longitude": 49.942039, + "stopId": "U2080" + }, + { + "id": "U2080Z2", + "name": "Černé Voděrady,ObÚ", + "isMetro": false, + "latitude": 14.807191, + "longitude": 49.942101, + "stopId": "U2080" + }, + { + "id": "U2081Z1", + "name": "Černé Voděrady", + "isMetro": false, + "latitude": 14.80708, + "longitude": 49.940311, + "stopId": "U2081" + }, + { + "id": "U2082Z1", + "name": "Mukařov,Srbín", + "isMetro": false, + "latitude": 14.739541, + "longitude": 49.98246, + "stopId": "U2082" + }, + { + "id": "U2082Z2", + "name": "Mukařov,Srbín", + "isMetro": false, + "latitude": 14.739851, + "longitude": 49.98262, + "stopId": "U2082" + }, + { + "id": "U2083Z1", + "name": "Svojetice,Na skalce", + "isMetro": false, + "latitude": 14.738921, + "longitude": 49.9692, + "stopId": "U2083" + }, + { + "id": "U2083Z2", + "name": "Svojetice,Na skalce", + "isMetro": false, + "latitude": 14.739221, + "longitude": 49.96928, + "stopId": "U2083" + }, + { + "id": "U2084Z1", + "name": "Klokočná", + "isMetro": false, + "latitude": 14.722531, + "longitude": 49.959114, + "stopId": "U2084" + }, + { + "id": "U2085Z1", + "name": "Říčany,Olivovna", + "isMetro": false, + "latitude": 14.691602, + "longitude": 49.991913, + "stopId": "U2085" + }, + { + "id": "U2085Z3", + "name": "Říčany,Olivovna", + "isMetro": false, + "latitude": 14.691056, + "longitude": 49.991844, + "stopId": "U2085" + }, + { + "id": "U2086Z1", + "name": "Tehov,Lada", + "isMetro": false, + "latitude": 14.703011, + "longitude": 49.98064, + "stopId": "U2086" + }, + { + "id": "U2086Z2", + "name": "Tehov,Lada", + "isMetro": false, + "latitude": 14.703111, + "longitude": 49.980541, + "stopId": "U2086" + }, + { + "id": "U2087Z1", + "name": "Mnichovice,Myšlín", + "isMetro": false, + "latitude": 14.719101, + "longitude": 49.939121, + "stopId": "U2087" + }, + { + "id": "U2087Z2", + "name": "Mnichovice,Myšlín", + "isMetro": false, + "latitude": 14.720741, + "longitude": 49.93922, + "stopId": "U2087" + }, + { + "id": "U2088Z1", + "name": "Jevany,Černokostelecká", + "isMetro": false, + "latitude": 14.816167, + "longitude": 49.97113, + "stopId": "U2088" + }, + { + "id": "U2088Z2", + "name": "Jevany,Černokostelecká", + "isMetro": false, + "latitude": 14.817699, + "longitude": 49.971554, + "stopId": "U2088" + }, + { + "id": "U2089Z1", + "name": "Ondřejov,Hřbitov", + "isMetro": false, + "latitude": 14.787584, + "longitude": 49.89925, + "stopId": "U2089" + }, + { + "id": "U2089Z2", + "name": "Ondřejov,Hřbitov", + "isMetro": false, + "latitude": 14.787478, + "longitude": 49.899548, + "stopId": "U2089" + }, + { + "id": "U208Z1", + "name": "Jiráskovo náměstí", + "isMetro": false, + "latitude": 14.414158, + "longitude": 50.076252, + "stopId": "U208" + }, + { + "id": "U208Z2", + "name": "Jiráskovo náměstí", + "isMetro": false, + "latitude": 14.414001, + "longitude": 50.076145, + "stopId": "U208" + }, + { + "id": "U208Z3", + "name": "Jiráskovo náměstí", + "isMetro": false, + "latitude": 14.413218, + "longitude": 50.075821, + "stopId": "U208" + }, + { + "id": "U208Z4", + "name": "Jiráskovo náměstí", + "isMetro": false, + "latitude": 14.414109, + "longitude": 50.075634, + "stopId": "U208" + }, + { + "id": "U2091Z1", + "name": "Stříbrná Skalice,Vozlín", + "isMetro": false, + "latitude": 14.838778, + "longitude": 49.90266, + "stopId": "U2091" + }, + { + "id": "U2091Z2", + "name": "Stříbrná Skalice,Vozlín", + "isMetro": false, + "latitude": 14.83896, + "longitude": 49.902485, + "stopId": "U2091" + }, + { + "id": "U2092Z1", + "name": "Stříbrná Skalice,V Můstkách", + "isMetro": false, + "latitude": 14.831648, + "longitude": 49.902889, + "stopId": "U2092" + }, + { + "id": "U2092Z2", + "name": "Stříbrná Skalice,V Můstkách", + "isMetro": false, + "latitude": 14.831147, + "longitude": 49.902866, + "stopId": "U2092" + }, + { + "id": "U2093Z1", + "name": "Rakovník,rozc.Cikánka", + "isMetro": false, + "latitude": 13.732679, + "longitude": 50.119423, + "stopId": "U2093" + }, + { + "id": "U2093Z2", + "name": "Rakovník,rozc.Cikánka", + "isMetro": false, + "latitude": 13.732765, + "longitude": 50.119446, + "stopId": "U2093" + }, + { + "id": "U2094Z2", + "name": "Okoř", + "isMetro": false, + "latitude": 14.257802, + "longitude": 50.162754, + "stopId": "U2094" + }, + { + "id": "U2094Z402", + "name": "Okoř", + "isMetro": false, + "latitude": 14.257802, + "longitude": 50.162754, + "stopId": "U2094" + }, + { + "id": "U2095Z1", + "name": "Roztoky,Nádraží", + "isMetro": false, + "latitude": 14.397736, + "longitude": 50.158928, + "stopId": "U2095" + }, + { + "id": "U2095Z2", + "name": "Roztoky,Nádraží", + "isMetro": false, + "latitude": 14.397608, + "longitude": 50.159321, + "stopId": "U2095" + }, + { + "id": "U2095Z301", + "name": "Roztoky u Prahy", + "isMetro": false, + "latitude": 14.398438, + "longitude": 50.159679, + "stopId": "U2095" + }, + { + "id": "U2096Z1", + "name": "Roztoky,Tyršovo nám.", + "isMetro": false, + "latitude": 14.392046, + "longitude": 50.161068, + "stopId": "U2096" + }, + { + "id": "U2096Z2", + "name": "Roztoky,Tyršovo nám.", + "isMetro": false, + "latitude": 14.392344, + "longitude": 50.160995, + "stopId": "U2096" + }, + { + "id": "U2097Z1", + "name": "Nupaky,hotel", + "isMetro": false, + "latitude": 14.598483, + "longitude": 49.994099, + "stopId": "U2097" + }, + { + "id": "U2097Z2", + "name": "Nupaky,hotel", + "isMetro": false, + "latitude": 14.597366, + "longitude": 49.993797, + "stopId": "U2097" + }, + { + "id": "U2098Z1", + "name": "Roztoky,U Rybníčku", + "isMetro": false, + "latitude": 14.382712, + "longitude": 50.161419, + "stopId": "U2098" + }, + { + "id": "U2098Z2", + "name": "Roztoky,U Rybníčku", + "isMetro": false, + "latitude": 14.382765, + "longitude": 50.161385, + "stopId": "U2098" + }, + { + "id": "U2099Z1", + "name": "Roztoky,Rozc.Žalov", + "isMetro": false, + "latitude": 14.372142, + "longitude": 50.16032, + "stopId": "U2099" + }, + { + "id": "U2099Z2", + "name": "Roztoky,Rozc.Žalov", + "isMetro": false, + "latitude": 14.372365, + "longitude": 50.160282, + "stopId": "U2099" + }, + { + "id": "U209Z1", + "name": "Jiřího z Poděbrad", + "isMetro": false, + "latitude": 14.450471, + "longitude": 50.077255, + "stopId": "U209" + }, + { + "id": "U209Z101", + "name": "Jiřího z Poděbrad", + "isMetro": true, + "latitude": 14.450809, + "longitude": 50.077618, + "stopId": "U209" + }, + { + "id": "U209Z102", + "name": "Jiřího z Poděbrad", + "isMetro": true, + "latitude": 14.450665, + "longitude": 50.077811, + "stopId": "U209" + }, + { + "id": "U209Z2", + "name": "Jiřího z Poděbrad", + "isMetro": false, + "latitude": 14.448688, + "longitude": 50.07711, + "stopId": "U209" + }, + { + "id": "U209Z3", + "name": "Jiřího z Poděbrad", + "isMetro": false, + "latitude": 14.448864, + "longitude": 50.07774, + "stopId": "U209" + }, + { + "id": "U209Z4", + "name": "Jiřího z Poděbrad", + "isMetro": false, + "latitude": 14.448732, + "longitude": 50.077606, + "stopId": "U209" + }, + { + "id": "U20Z1", + "name": "Královský letohrádek", + "isMetro": false, + "latitude": 14.404998, + "longitude": 50.094227, + "stopId": "U20" + }, + { + "id": "U20Z2", + "name": "Královský letohrádek", + "isMetro": false, + "latitude": 14.404529, + "longitude": 50.094265, + "stopId": "U20" + }, + { + "id": "U2100Z1", + "name": "Jílové u Prahy,Učiliště", + "isMetro": false, + "latitude": 14.484888, + "longitude": 49.897369, + "stopId": "U2100" + }, + { + "id": "U2100Z2", + "name": "Jílové u Prahy,Učiliště", + "isMetro": false, + "latitude": 14.48552, + "longitude": 49.8974, + "stopId": "U2100" + }, + { + "id": "U2101Z1", + "name": "Libeř,Libeň,U Hrušků", + "isMetro": false, + "latitude": 14.463711, + "longitude": 49.943001, + "stopId": "U2101" + }, + { + "id": "U2101Z2", + "name": "Libeř,Libeň,U Hrušků", + "isMetro": false, + "latitude": 14.46372, + "longitude": 49.943439, + "stopId": "U2101" + }, + { + "id": "U2102Z1", + "name": "Libeř,Libeň", + "isMetro": false, + "latitude": 14.463481, + "longitude": 49.93932, + "stopId": "U2102" + }, + { + "id": "U2102Z2", + "name": "Libeř,Libeň", + "isMetro": false, + "latitude": 14.46374, + "longitude": 49.938961, + "stopId": "U2102" + }, + { + "id": "U2103Z1", + "name": "Libeř,Libeň,Odb.STS", + "isMetro": false, + "latitude": 14.464061, + "longitude": 49.936031, + "stopId": "U2103" + }, + { + "id": "U2103Z2", + "name": "Libeř,Libeň,Odb.STS", + "isMetro": false, + "latitude": 14.4637, + "longitude": 49.936081, + "stopId": "U2103" + }, + { + "id": "U2104Z1", + "name": "Libeř,Na Ovčíně", + "isMetro": false, + "latitude": 14.480726, + "longitude": 49.927509, + "stopId": "U2104" + }, + { + "id": "U2104Z2", + "name": "Libeř,Na Ovčíně", + "isMetro": false, + "latitude": 14.481829, + "longitude": 49.927746, + "stopId": "U2104" + }, + { + "id": "U2105Z1", + "name": "Libeř", + "isMetro": false, + "latitude": 14.480257, + "longitude": 49.923378, + "stopId": "U2105" + }, + { + "id": "U2105Z2", + "name": "Libeř", + "isMetro": false, + "latitude": 14.480607, + "longitude": 49.923428, + "stopId": "U2105" + }, + { + "id": "U2106Z1", + "name": "Jílové u Prahy,Rozc.Radlík", + "isMetro": false, + "latitude": 14.498104, + "longitude": 49.912018, + "stopId": "U2106" + }, + { + "id": "U2106Z2", + "name": "Jílové u Prahy,Rozc.Radlík", + "isMetro": false, + "latitude": 14.499956, + "longitude": 49.91288, + "stopId": "U2106" + }, + { + "id": "U2107Z1", + "name": "Jílové u Prahy,Radlík", + "isMetro": false, + "latitude": 14.49194, + "longitude": 49.907383, + "stopId": "U2107" + }, + { + "id": "U2107Z2", + "name": "Jílové u Prahy,Radlík", + "isMetro": false, + "latitude": 14.492125, + "longitude": 49.907322, + "stopId": "U2107" + }, + { + "id": "U2108Z1", + "name": "Jílové u Prahy,Pražská", + "isMetro": false, + "latitude": 14.493806, + "longitude": 49.898357, + "stopId": "U2108" + }, + { + "id": "U2108Z2", + "name": "Jílové u Prahy,Pražská", + "isMetro": false, + "latitude": 14.493951, + "longitude": 49.898922, + "stopId": "U2108" + }, + { + "id": "U2109Z1", + "name": "Jílové u Prahy,Náměstí", + "isMetro": false, + "latitude": 14.493016, + "longitude": 49.895134, + "stopId": "U2109" + }, + { + "id": "U2109Z2", + "name": "Jílové u Prahy,Náměstí", + "isMetro": false, + "latitude": 14.493484, + "longitude": 49.895058, + "stopId": "U2109" + }, + { + "id": "U2109Z3", + "name": "Jílové u Prahy,Náměstí", + "isMetro": false, + "latitude": 14.492931, + "longitude": 49.894966, + "stopId": "U2109" + }, + { + "id": "U210Z1", + "name": "Jižní Město", + "isMetro": false, + "latitude": 14.538384, + "longitude": 50.034317, + "stopId": "U210" + }, + { + "id": "U210Z2", + "name": "Jižní Město", + "isMetro": false, + "latitude": 14.537593, + "longitude": 50.034439, + "stopId": "U210" + }, + { + "id": "U2110Z1", + "name": "Roztoky,Přemyslovská", + "isMetro": false, + "latitude": 14.371037, + "longitude": 50.165123, + "stopId": "U2110" + }, + { + "id": "U2110Z2", + "name": "Roztoky,Levý Hradec", + "isMetro": false, + "latitude": 14.372363, + "longitude": 50.166977, + "stopId": "U2110" + }, + { + "id": "U2112Z1", + "name": "Ondřejov,Třemblat,K Myšlínu", + "isMetro": false, + "latitude": 14.752824, + "longitude": 49.930622, + "stopId": "U2112" + }, + { + "id": "U2112Z2", + "name": "Ondřejov,Třemblat,K Myšlínu", + "isMetro": false, + "latitude": 14.753444, + "longitude": 49.930592, + "stopId": "U2112" + }, + { + "id": "U2113Z1", + "name": "Hostivice,Palouky", + "isMetro": false, + "latitude": 14.280225, + "longitude": 50.07901, + "stopId": "U2113" + }, + { + "id": "U2113Z2", + "name": "Hostivice,Palouky", + "isMetro": false, + "latitude": 14.282104, + "longitude": 50.078823, + "stopId": "U2113" + }, + { + "id": "U2114Z1", + "name": "Hostivice,Nouzov", + "isMetro": false, + "latitude": 14.262802, + "longitude": 50.080353, + "stopId": "U2114" + }, + { + "id": "U2114Z2", + "name": "Hostivice,Nouzov", + "isMetro": false, + "latitude": 14.262361, + "longitude": 50.080425, + "stopId": "U2114" + }, + { + "id": "U2115Z1", + "name": "Hostivice,Ve Vilkách", + "isMetro": false, + "latitude": 14.232196, + "longitude": 50.083183, + "stopId": "U2115" + }, + { + "id": "U2115Z2", + "name": "Hostivice,Ve Vilkách", + "isMetro": false, + "latitude": 14.23214, + "longitude": 50.083275, + "stopId": "U2115" + }, + { + "id": "U2115Z301", + "name": "Hostivice-U hřbitova", + "isMetro": false, + "latitude": 14.230462, + "longitude": 50.08387, + "stopId": "U2115" + }, + { + "id": "U2116Z3", + "name": "Hostivice,Nádraží", + "isMetro": false, + "latitude": 14.258978, + "longitude": 50.083626, + "stopId": "U2116" + }, + { + "id": "U2116Z301", + "name": "Hostivice", + "isMetro": false, + "latitude": 14.258383, + "longitude": 50.08408, + "stopId": "U2116" + }, + { + "id": "U2116Z4", + "name": "Hostivice,Nádraží", + "isMetro": false, + "latitude": 14.259061, + "longitude": 50.08363, + "stopId": "U2116" + }, + { + "id": "U2116Z401", + "name": "Hostivice,Nádraží", + "isMetro": false, + "latitude": 14.257882, + "longitude": 50.083988, + "stopId": "U2116" + }, + { + "id": "U2117Z1", + "name": "Jeneč,vysílací středisko", + "isMetro": false, + "latitude": 14.198563, + "longitude": 50.08807, + "stopId": "U2117" + }, + { + "id": "U2117Z2", + "name": "Jeneč,vysílací středisko", + "isMetro": false, + "latitude": 14.198634, + "longitude": 50.087978, + "stopId": "U2117" + }, + { + "id": "U2118Z2", + "name": "Jeneč,Nádraží", + "isMetro": false, + "latitude": 14.212476, + "longitude": 50.093899, + "stopId": "U2118" + }, + { + "id": "U2118Z301", + "name": "Jeneč", + "isMetro": false, + "latitude": 14.211914, + "longitude": 50.094227, + "stopId": "U2118" + }, + { + "id": "U2118Z303", + "name": "Jeneč zast.", + "isMetro": false, + "latitude": 14.213326, + "longitude": 50.094646, + "stopId": "U2118" + }, + { + "id": "U2119Z1", + "name": "Čilec", + "isMetro": false, + "latitude": 14.982358, + "longitude": 50.219261, + "stopId": "U2119" + }, + { + "id": "U2119Z2", + "name": "Čilec", + "isMetro": false, + "latitude": 14.982417, + "longitude": 50.21917, + "stopId": "U2119" + }, + { + "id": "U211Z1", + "name": "Nad Závistí", + "isMetro": false, + "latitude": 14.404201, + "longitude": 49.980518, + "stopId": "U211" + }, + { + "id": "U2120Z2", + "name": "Hostouň", + "isMetro": false, + "latitude": 14.201533, + "longitude": 50.11665, + "stopId": "U2120" + }, + { + "id": "U2121Z1", + "name": "Čachovice", + "isMetro": false, + "latitude": 14.948689, + "longitude": 50.270126, + "stopId": "U2121" + }, + { + "id": "U2121Z2", + "name": "Čachovice", + "isMetro": false, + "latitude": 14.948647, + "longitude": 50.270153, + "stopId": "U2121" + }, + { + "id": "U2122Z1", + "name": "Řitka,Bučina", + "isMetro": false, + "latitude": 14.287732, + "longitude": 49.889595, + "stopId": "U2122" + }, + { + "id": "U2122Z2", + "name": "Řitka,Bučina", + "isMetro": false, + "latitude": 14.289787, + "longitude": 49.890095, + "stopId": "U2122" + }, + { + "id": "U2123Z1", + "name": "Krušovice", + "isMetro": false, + "latitude": 13.773332, + "longitude": 50.175007, + "stopId": "U2123" + }, + { + "id": "U2123Z2", + "name": "Krušovice", + "isMetro": false, + "latitude": 13.773173, + "longitude": 50.174713, + "stopId": "U2123" + }, + { + "id": "U2124Z1", + "name": "Dobrovíz,Obecní úřad", + "isMetro": false, + "latitude": 14.218373, + "longitude": 50.11356, + "stopId": "U2124" + }, + { + "id": "U2124Z2", + "name": "Dobrovíz,Obecní úřad", + "isMetro": false, + "latitude": 14.220729, + "longitude": 50.114151, + "stopId": "U2124" + }, + { + "id": "U2124Z401", + "name": "Dobrovíz,Obecní úřad", + "isMetro": false, + "latitude": 14.218373, + "longitude": 50.11356, + "stopId": "U2124" + }, + { + "id": "U2125Z1", + "name": "Holubice,Kozinec,Habrová", + "isMetro": false, + "latitude": 14.297767, + "longitude": 50.198898, + "stopId": "U2125" + }, + { + "id": "U2127Z1", + "name": "Psáry,Domov Laguna", + "isMetro": false, + "latitude": 14.508281, + "longitude": 49.932072, + "stopId": "U2127" + }, + { + "id": "U2127Z2", + "name": "Psáry,Domov Laguna", + "isMetro": false, + "latitude": 14.508131, + "longitude": 49.931709, + "stopId": "U2127" + }, + { + "id": "U2128Z1", + "name": "Psáry", + "isMetro": false, + "latitude": 14.514161, + "longitude": 49.936661, + "stopId": "U2128" + }, + { + "id": "U2128Z2", + "name": "Psáry", + "isMetro": false, + "latitude": 14.514594, + "longitude": 49.936779, + "stopId": "U2128" + }, + { + "id": "U2129Z1", + "name": "Psáry,Štědřík", + "isMetro": false, + "latitude": 14.515711, + "longitude": 49.942039, + "stopId": "U2129" + }, + { + "id": "U2129Z2", + "name": "Psáry,Štědřík", + "isMetro": false, + "latitude": 14.515871, + "longitude": 49.941719, + "stopId": "U2129" + }, + { + "id": "U212Z1", + "name": "Jordánská", + "isMetro": false, + "latitude": 14.562793, + "longitude": 50.111038, + "stopId": "U212" + }, + { + "id": "U2130Z1", + "name": "Psáry,Dolní Jirčany", + "isMetro": false, + "latitude": 14.519577, + "longitude": 49.948978, + "stopId": "U2130" + }, + { + "id": "U2130Z2", + "name": "Psáry,Dolní Jirčany", + "isMetro": false, + "latitude": 14.519725, + "longitude": 49.948605, + "stopId": "U2130" + }, + { + "id": "U2132Z1", + "name": "Hostouň,u hřiště", + "isMetro": false, + "latitude": 14.203835, + "longitude": 50.110615, + "stopId": "U2132" + }, + { + "id": "U2132Z2", + "name": "Hostouň,u hřiště", + "isMetro": false, + "latitude": 14.203364, + "longitude": 50.111263, + "stopId": "U2132" + }, + { + "id": "U2133Z1", + "name": "Dobrovíz", + "isMetro": false, + "latitude": 14.21688, + "longitude": 50.114487, + "stopId": "U2133" + }, + { + "id": "U2133Z2", + "name": "Dobrovíz", + "isMetro": false, + "latitude": 14.216729, + "longitude": 50.114723, + "stopId": "U2133" + }, + { + "id": "U2134Z1", + "name": "Kněževes,U Nádraží", + "isMetro": false, + "latitude": 14.254436, + "longitude": 50.122223, + "stopId": "U2134" + }, + { + "id": "U2134Z2", + "name": "Kněževes,U Nádraží", + "isMetro": false, + "latitude": 14.254522, + "longitude": 50.12212, + "stopId": "U2134" + }, + { + "id": "U2134Z401", + "name": "Kněževes,U Nádraží", + "isMetro": false, + "latitude": 14.254436, + "longitude": 50.122223, + "stopId": "U2134" + }, + { + "id": "U2134Z402", + "name": "Kněževes,U Nádraží", + "isMetro": false, + "latitude": 14.254522, + "longitude": 50.12212, + "stopId": "U2134" + }, + { + "id": "U2135Z1", + "name": "Kněževes", + "isMetro": false, + "latitude": 14.258087, + "longitude": 50.121235, + "stopId": "U2135" + }, + { + "id": "U2135Z2", + "name": "Kněževes", + "isMetro": false, + "latitude": 14.259663, + "longitude": 50.121277, + "stopId": "U2135" + }, + { + "id": "U2137Z1", + "name": "Uhříněveský hřbitov", + "isMetro": false, + "latitude": 14.616301, + "longitude": 50.027515, + "stopId": "U2137" + }, + { + "id": "U2137Z2", + "name": "Uhříněveský hřbitov", + "isMetro": false, + "latitude": 14.615084, + "longitude": 50.028366, + "stopId": "U2137" + }, + { + "id": "U2139Z1", + "name": "Benešov,Lidl", + "isMetro": false, + "latitude": 14.68367, + "longitude": 49.788536, + "stopId": "U2139" + }, + { + "id": "U2139Z2", + "name": "Benešov,Lidl", + "isMetro": false, + "latitude": 14.682935, + "longitude": 49.789749, + "stopId": "U2139" + }, + { + "id": "U213Z1", + "name": "Dukla-Juliska", + "isMetro": false, + "latitude": 14.385917, + "longitude": 50.110699, + "stopId": "U213" + }, + { + "id": "U213Z2", + "name": "Dukla-Juliska", + "isMetro": false, + "latitude": 14.386201, + "longitude": 50.110134, + "stopId": "U213" + }, + { + "id": "U2140Z1", + "name": "Tuchoměřice,Komerční zóna", + "isMetro": false, + "latitude": 14.261027, + "longitude": 50.135681, + "stopId": "U2140" + }, + { + "id": "U2141Z1", + "name": "Říčany,5.května", + "isMetro": false, + "latitude": 14.667251, + "longitude": 49.993401, + "stopId": "U2141" + }, + { + "id": "U2141Z2", + "name": "Říčany,5.května", + "isMetro": false, + "latitude": 14.665631, + "longitude": 49.99334, + "stopId": "U2141" + }, + { + "id": "U2142Z1", + "name": "Říčany,nádraží", + "isMetro": false, + "latitude": 14.662191, + "longitude": 49.99659, + "stopId": "U2142" + }, + { + "id": "U2142Z11", + "name": "Říčany,nádraží", + "isMetro": false, + "latitude": 14.662191, + "longitude": 49.99659, + "stopId": "U2142" + }, + { + "id": "U2142Z2", + "name": "Říčany,nádraží", + "isMetro": false, + "latitude": 14.662201, + "longitude": 49.996571, + "stopId": "U2142" + }, + { + "id": "U2142Z301", + "name": "Říčany", + "isMetro": false, + "latitude": 14.663757, + "longitude": 49.997532, + "stopId": "U2142" + }, + { + "id": "U2143Z1", + "name": "Lišany,u ovčína", + "isMetro": false, + "latitude": 13.735083, + "longitude": 50.140381, + "stopId": "U2143" + }, + { + "id": "U2143Z2", + "name": "Lišany,u ovčína", + "isMetro": false, + "latitude": 13.73519, + "longitude": 50.140331, + "stopId": "U2143" + }, + { + "id": "U2144Z1", + "name": "Zvánovice,Kádov", + "isMetro": false, + "latitude": 14.780573, + "longitude": 49.937222, + "stopId": "U2144" + }, + { + "id": "U2144Z2", + "name": "Zvánovice,Kádov", + "isMetro": false, + "latitude": 14.780377, + "longitude": 49.936989, + "stopId": "U2144" + }, + { + "id": "U2145Z1", + "name": "Malotice", + "isMetro": false, + "latitude": 14.981031, + "longitude": 49.966061, + "stopId": "U2145" + }, + { + "id": "U2145Z2", + "name": "Malotice", + "isMetro": false, + "latitude": 14.981361, + "longitude": 49.966103, + "stopId": "U2145" + }, + { + "id": "U2146Z1", + "name": "Oleška,Brník", + "isMetro": false, + "latitude": 14.907464, + "longitude": 49.983421, + "stopId": "U2146" + }, + { + "id": "U2146Z2", + "name": "Oleška,Brník", + "isMetro": false, + "latitude": 14.907725, + "longitude": 49.98341, + "stopId": "U2146" + }, + { + "id": "U2148Z1", + "name": "Oleška,Bulánka", + "isMetro": false, + "latitude": 14.934844, + "longitude": 49.989708, + "stopId": "U2148" + }, + { + "id": "U2148Z2", + "name": "Oleška,Bulánka", + "isMetro": false, + "latitude": 14.935722, + "longitude": 49.990479, + "stopId": "U2148" + }, + { + "id": "U2149Z1", + "name": "Zásmuky,Doubravčany", + "isMetro": false, + "latitude": 15.006142, + "longitude": 49.96109, + "stopId": "U2149" + }, + { + "id": "U2149Z2", + "name": "Zásmuky,Doubravčany", + "isMetro": false, + "latitude": 15.005841, + "longitude": 49.961212, + "stopId": "U2149" + }, + { + "id": "U214Z1", + "name": "K Cikánce", + "isMetro": false, + "latitude": 14.341717, + "longitude": 49.997501, + "stopId": "U214" + }, + { + "id": "U214Z2", + "name": "K Cikánce", + "isMetro": false, + "latitude": 14.341751, + "longitude": 49.997749, + "stopId": "U214" + }, + { + "id": "U2150Z1", + "name": "Zásmuky,rozc.Vršice", + "isMetro": false, + "latitude": 15.019332, + "longitude": 49.95998, + "stopId": "U2150" + }, + { + "id": "U2150Z2", + "name": "Zásmuky,rozc.Vršice", + "isMetro": false, + "latitude": 15.017672, + "longitude": 49.96027, + "stopId": "U2150" + }, + { + "id": "U2151Z1", + "name": "Zásmuky,nám.", + "isMetro": false, + "latitude": 15.030306, + "longitude": 49.954128, + "stopId": "U2151" + }, + { + "id": "U2151Z2", + "name": "Zásmuky,nám.", + "isMetro": false, + "latitude": 15.030182, + "longitude": 49.954269, + "stopId": "U2151" + }, + { + "id": "U2151Z3", + "name": "Zásmuky,nám.", + "isMetro": false, + "latitude": 15.030059, + "longitude": 49.954506, + "stopId": "U2151" + }, + { + "id": "U2152Z1", + "name": "Velké Přílepy,Pražská", + "isMetro": false, + "latitude": 14.316393, + "longitude": 50.156551, + "stopId": "U2152" + }, + { + "id": "U2152Z2", + "name": "Velké Přílepy,Pražská", + "isMetro": false, + "latitude": 14.316269, + "longitude": 50.156147, + "stopId": "U2152" + }, + { + "id": "U2153Z1", + "name": "Zásmuky,u sokolovny", + "isMetro": false, + "latitude": 15.038553, + "longitude": 49.952297, + "stopId": "U2153" + }, + { + "id": "U2153Z2", + "name": "Zásmuky,u sokolovny", + "isMetro": false, + "latitude": 15.036727, + "longitude": 49.952187, + "stopId": "U2153" + }, + { + "id": "U2154Z1", + "name": "Bečváry,žel.st.", + "isMetro": false, + "latitude": 15.070631, + "longitude": 49.956608, + "stopId": "U2154" + }, + { + "id": "U2154Z2", + "name": "Bečváry,žel.st.", + "isMetro": false, + "latitude": 15.070148, + "longitude": 49.956654, + "stopId": "U2154" + }, + { + "id": "U2154Z301", + "name": "Bečváry", + "isMetro": false, + "latitude": 15.07087, + "longitude": 49.955654, + "stopId": "U2154" + }, + { + "id": "U2155Z1", + "name": "Bečváry", + "isMetro": false, + "latitude": 15.080495, + "longitude": 49.956799, + "stopId": "U2155" + }, + { + "id": "U2155Z2", + "name": "Bečváry", + "isMetro": false, + "latitude": 15.079885, + "longitude": 49.956829, + "stopId": "U2155" + }, + { + "id": "U2156Z2", + "name": "Suchdol", + "isMetro": false, + "latitude": 15.167003, + "longitude": 49.95282, + "stopId": "U2156" + }, + { + "id": "U2157Z1", + "name": "Uhlířské Janovice,nám.", + "isMetro": false, + "latitude": 15.064215, + "longitude": 49.880535, + "stopId": "U2157" + }, + { + "id": "U2157Z2", + "name": "Uhlířské Janovice,nám.", + "isMetro": false, + "latitude": 15.064337, + "longitude": 49.880787, + "stopId": "U2157" + }, + { + "id": "U2158Z1", + "name": "Poříčí n.Sáz.", + "isMetro": false, + "latitude": 14.674776, + "longitude": 49.838142, + "stopId": "U2158" + }, + { + "id": "U2158Z2", + "name": "Poříčí n.Sáz.", + "isMetro": false, + "latitude": 14.674869, + "longitude": 49.836449, + "stopId": "U2158" + }, + { + "id": "U2159Z1", + "name": "Staňkovice", + "isMetro": false, + "latitude": 15.017594, + "longitude": 49.875839, + "stopId": "U2159" + }, + { + "id": "U2159Z2", + "name": "Staňkovice", + "isMetro": false, + "latitude": 15.01742, + "longitude": 49.875919, + "stopId": "U2159" + }, + { + "id": "U215Z1", + "name": "K Dubečku", + "isMetro": false, + "latitude": 14.564816, + "longitude": 50.055367, + "stopId": "U215" + }, + { + "id": "U215Z2", + "name": "K Dubečku", + "isMetro": false, + "latitude": 14.563984, + "longitude": 50.055283, + "stopId": "U215" + }, + { + "id": "U2160Z1", + "name": "Úžice,Mělník,rozc.", + "isMetro": false, + "latitude": 14.926049, + "longitude": 49.904602, + "stopId": "U2160" + }, + { + "id": "U2160Z2", + "name": "Úžice,Mělník,rozc.", + "isMetro": false, + "latitude": 14.925875, + "longitude": 49.904766, + "stopId": "U2160" + }, + { + "id": "U2161Z1", + "name": "Úžice,Benátky", + "isMetro": false, + "latitude": 14.932332, + "longitude": 49.901909, + "stopId": "U2161" + }, + { + "id": "U2161Z2", + "name": "Úžice,Benátky", + "isMetro": false, + "latitude": 14.932152, + "longitude": 49.902012, + "stopId": "U2161" + }, + { + "id": "U2162Z1", + "name": "Úžice,Smrk,rozc.", + "isMetro": false, + "latitude": 14.982552, + "longitude": 49.881218, + "stopId": "U2162" + }, + { + "id": "U2162Z2", + "name": "Úžice,Smrk,rozc.", + "isMetro": false, + "latitude": 14.982677, + "longitude": 49.881432, + "stopId": "U2162" + }, + { + "id": "U2163Z1", + "name": "Úžice,Čekanov,Pražská", + "isMetro": false, + "latitude": 14.956095, + "longitude": 49.889328, + "stopId": "U2163" + }, + { + "id": "U2163Z2", + "name": "Úžice,Čekanov,Pražská", + "isMetro": false, + "latitude": 14.956108, + "longitude": 49.889507, + "stopId": "U2163" + }, + { + "id": "U2164Z1", + "name": "Úžice,Chrastná,rozc.", + "isMetro": false, + "latitude": 14.965837, + "longitude": 49.88686, + "stopId": "U2164" + }, + { + "id": "U2164Z2", + "name": "Úžice,Chrastná,rozc.", + "isMetro": false, + "latitude": 14.965976, + "longitude": 49.887047, + "stopId": "U2164" + }, + { + "id": "U2165Z1", + "name": "Prusice,Rozc.", + "isMetro": false, + "latitude": 14.881481, + "longitude": 49.970001, + "stopId": "U2165" + }, + { + "id": "U2165Z2", + "name": "Prusice,Rozc.", + "isMetro": false, + "latitude": 14.881612, + "longitude": 49.96883, + "stopId": "U2165" + }, + { + "id": "U2166Z1", + "name": "Zásmuky,Dupanda", + "isMetro": false, + "latitude": 15.028644, + "longitude": 49.958691, + "stopId": "U2166" + }, + { + "id": "U2166Z2", + "name": "Zásmuky,Dupanda", + "isMetro": false, + "latitude": 15.028715, + "longitude": 49.95874, + "stopId": "U2166" + }, + { + "id": "U2167Z1", + "name": "Svojetice,U Hájenky", + "isMetro": false, + "latitude": 14.733019, + "longitude": 49.96579, + "stopId": "U2167" + }, + { + "id": "U2167Z2", + "name": "Svojetice,U Hájenky", + "isMetro": false, + "latitude": 14.733172, + "longitude": 49.965931, + "stopId": "U2167" + }, + { + "id": "U2168Z1", + "name": "Ondřejov,Turkovická", + "isMetro": false, + "latitude": 14.772378, + "longitude": 49.90588, + "stopId": "U2168" + }, + { + "id": "U2168Z2", + "name": "Ondřejov,Turkovická", + "isMetro": false, + "latitude": 14.773058, + "longitude": 49.905762, + "stopId": "U2168" + }, + { + "id": "U2169Z1", + "name": "Rudná,Celní úřad", + "isMetro": false, + "latitude": 14.205037, + "longitude": 50.020214, + "stopId": "U2169" + }, + { + "id": "U2169Z2", + "name": "Rudná,Celní úřad", + "isMetro": false, + "latitude": 14.205088, + "longitude": 50.020157, + "stopId": "U2169" + }, + { + "id": "U216Z2", + "name": "K Holyni", + "isMetro": false, + "latitude": 14.360059, + "longitude": 50.020565, + "stopId": "U216" + }, + { + "id": "U2171Z1", + "name": "Beroun,Lištice", + "isMetro": false, + "latitude": 14.10378, + "longitude": 49.96143, + "stopId": "U2171" + }, + { + "id": "U2171Z2", + "name": "Beroun,Lištice", + "isMetro": false, + "latitude": 14.10243, + "longitude": 49.96125, + "stopId": "U2171" + }, + { + "id": "U2172Z3", + "name": "Beroun,Prof.Veselého", + "isMetro": false, + "latitude": 14.092286, + "longitude": 49.963291, + "stopId": "U2172" + }, + { + "id": "U2173Z1", + "name": "Beroun,Hostímská", + "isMetro": false, + "latitude": 14.085537, + "longitude": 49.962708, + "stopId": "U2173" + }, + { + "id": "U2173Z2", + "name": "Beroun,Hostímská", + "isMetro": false, + "latitude": 14.085445, + "longitude": 49.962585, + "stopId": "U2173" + }, + { + "id": "U2174Z1", + "name": "Staňkovice,Smilovice,rozc.", + "isMetro": false, + "latitude": 14.989678, + "longitude": 49.879269, + "stopId": "U2174" + }, + { + "id": "U2174Z2", + "name": "Staňkovice,Smilovice,rozc.", + "isMetro": false, + "latitude": 14.990126, + "longitude": 49.879227, + "stopId": "U2174" + }, + { + "id": "U2175Z1", + "name": "Staňkovice,Chlum", + "isMetro": false, + "latitude": 15.000236, + "longitude": 49.876553, + "stopId": "U2175" + }, + { + "id": "U2175Z2", + "name": "Staňkovice,Chlum", + "isMetro": false, + "latitude": 15.000277, + "longitude": 49.876751, + "stopId": "U2175" + }, + { + "id": "U2176Z1", + "name": "Staňkovice,Ostašov", + "isMetro": false, + "latitude": 15.0319, + "longitude": 49.87785, + "stopId": "U2176" + }, + { + "id": "U2176Z2", + "name": "Staňkovice,Ostašov", + "isMetro": false, + "latitude": 15.030636, + "longitude": 49.877846, + "stopId": "U2176" + }, + { + "id": "U2177Z1", + "name": "Staňkovice,Nová Ves", + "isMetro": false, + "latitude": 15.037911, + "longitude": 49.879837, + "stopId": "U2177" + }, + { + "id": "U2177Z2", + "name": "Staňkovice,Nová Ves", + "isMetro": false, + "latitude": 15.037856, + "longitude": 49.880005, + "stopId": "U2177" + }, + { + "id": "U2178Z1", + "name": "Bečváry,Poďousy,rozc.", + "isMetro": false, + "latitude": 15.102545, + "longitude": 49.956043, + "stopId": "U2178" + }, + { + "id": "U2178Z2", + "name": "Bečváry,Poďousy,rozc.", + "isMetro": false, + "latitude": 15.102585, + "longitude": 49.956158, + "stopId": "U2178" + }, + { + "id": "U2178Z3", + "name": "Bečváry,Poďousy,rozc.", + "isMetro": false, + "latitude": 15.102347, + "longitude": 49.956844, + "stopId": "U2178" + }, + { + "id": "U2178Z4", + "name": "Bečváry,Poďousy,rozc.", + "isMetro": false, + "latitude": 15.102049, + "longitude": 49.956772, + "stopId": "U2178" + }, + { + "id": "U2179Z1", + "name": "Ratboř,rozc.Těšínky", + "isMetro": false, + "latitude": 15.145071, + "longitude": 49.953861, + "stopId": "U2179" + }, + { + "id": "U2179Z2", + "name": "Ratboř,rozc.Těšínky", + "isMetro": false, + "latitude": 15.144306, + "longitude": 49.954014, + "stopId": "U2179" + }, + { + "id": "U217Z1", + "name": "Stachova", + "isMetro": false, + "latitude": 14.531544, + "longitude": 50.035118, + "stopId": "U217" + }, + { + "id": "U217Z2", + "name": "Stachova", + "isMetro": false, + "latitude": 14.530978, + "longitude": 50.035484, + "stopId": "U217" + }, + { + "id": "U2180Z1", + "name": "Kořenice,rozc.Chotouchov", + "isMetro": false, + "latitude": 15.1218, + "longitude": 49.956379, + "stopId": "U2180" + }, + { + "id": "U2180Z2", + "name": "Kořenice,rozc.Chotouchov", + "isMetro": false, + "latitude": 15.121344, + "longitude": 49.956505, + "stopId": "U2180" + }, + { + "id": "U2181Z1", + "name": "Poříčí n.Sáz.,Rozc.Nové Městečko", + "isMetro": false, + "latitude": 14.675158, + "longitude": 49.846912, + "stopId": "U2181" + }, + { + "id": "U2181Z2", + "name": "Poříčí n.Sáz.,Rozc.Nové Městečko", + "isMetro": false, + "latitude": 14.675072, + "longitude": 49.846882, + "stopId": "U2181" + }, + { + "id": "U2189Z1", + "name": "Záryby", + "isMetro": false, + "latitude": 14.625936, + "longitude": 50.220505, + "stopId": "U2189" + }, + { + "id": "U2189Z2", + "name": "Záryby", + "isMetro": false, + "latitude": 14.625875, + "longitude": 50.220638, + "stopId": "U2189" + }, + { + "id": "U218Z1", + "name": "K Letišti", + "isMetro": false, + "latitude": 14.293546, + "longitude": 50.095634, + "stopId": "U218" + }, + { + "id": "U218Z2", + "name": "K Letišti", + "isMetro": false, + "latitude": 14.292543, + "longitude": 50.096157, + "stopId": "U218" + }, + { + "id": "U218Z3", + "name": "K Letišti", + "isMetro": false, + "latitude": 14.292701, + "longitude": 50.096344, + "stopId": "U218" + }, + { + "id": "U2190Z1", + "name": "Dřevčice,Rozc.Jenštejn", + "isMetro": false, + "latitude": 14.612272, + "longitude": 50.159954, + "stopId": "U2190" + }, + { + "id": "U2190Z2", + "name": "Dřevčice,Rozc.Jenštejn", + "isMetro": false, + "latitude": 14.612705, + "longitude": 50.160252, + "stopId": "U2190" + }, + { + "id": "U2191Z1", + "name": "Voznice", + "isMetro": false, + "latitude": 14.216804, + "longitude": 49.817165, + "stopId": "U2191" + }, + { + "id": "U2191Z2", + "name": "Voznice", + "isMetro": false, + "latitude": 14.216984, + "longitude": 49.816204, + "stopId": "U2191" + }, + { + "id": "U2193Z1", + "name": "Jenštejn,Dehtáry", + "isMetro": false, + "latitude": 14.633805, + "longitude": 50.142872, + "stopId": "U2193" + }, + { + "id": "U2193Z2", + "name": "Jenštejn,Dehtáry", + "isMetro": false, + "latitude": 14.63343, + "longitude": 50.142826, + "stopId": "U2193" + }, + { + "id": "U2194Z1", + "name": "Svémyslice", + "isMetro": false, + "latitude": 14.648347, + "longitude": 50.146267, + "stopId": "U2194" + }, + { + "id": "U2194Z2", + "name": "Svémyslice", + "isMetro": false, + "latitude": 14.648319, + "longitude": 50.146198, + "stopId": "U2194" + }, + { + "id": "U2195Z1", + "name": "Zápy,Ostrov lázně", + "isMetro": false, + "latitude": 14.672654, + "longitude": 50.161419, + "stopId": "U2195" + }, + { + "id": "U2195Z2", + "name": "Zápy,Ostrov lázně", + "isMetro": false, + "latitude": 14.672587, + "longitude": 50.161499, + "stopId": "U2195" + }, + { + "id": "U2196Z1", + "name": "Zápy", + "isMetro": false, + "latitude": 14.678346, + "longitude": 50.164452, + "stopId": "U2196" + }, + { + "id": "U2196Z2", + "name": "Zápy", + "isMetro": false, + "latitude": 14.678294, + "longitude": 50.164463, + "stopId": "U2196" + }, + { + "id": "U2198Z1", + "name": "Skorkov,Otradovice,Křiž.", + "isMetro": false, + "latitude": 14.741801, + "longitude": 50.216198, + "stopId": "U2198" + }, + { + "id": "U2198Z2", + "name": "Skorkov,Otradovice,Křiž.", + "isMetro": false, + "latitude": 14.741652, + "longitude": 50.216183, + "stopId": "U2198" + }, + { + "id": "U2199Z1", + "name": "Sojovice", + "isMetro": false, + "latitude": 14.760576, + "longitude": 50.221951, + "stopId": "U2199" + }, + { + "id": "U2199Z2", + "name": "Sojovice", + "isMetro": false, + "latitude": 14.759906, + "longitude": 50.221947, + "stopId": "U2199" + }, + { + "id": "U219Z1", + "name": "K Obecním hájovnám", + "isMetro": false, + "latitude": 14.515067, + "longitude": 50.042931, + "stopId": "U219" + }, + { + "id": "U219Z2", + "name": "K Obecním hájovnám", + "isMetro": false, + "latitude": 14.516484, + "longitude": 50.043232, + "stopId": "U219" + }, + { + "id": "U21Z1", + "name": "Sídliště Letňany", + "isMetro": false, + "latitude": 14.506634, + "longitude": 50.142757, + "stopId": "U21" + }, + { + "id": "U21Z2", + "name": "Sídliště Letňany", + "isMetro": false, + "latitude": 14.506976, + "longitude": 50.142586, + "stopId": "U21" + }, + { + "id": "U2200Z1", + "name": "Skorkov,Podbrahy", + "isMetro": false, + "latitude": 14.745736, + "longitude": 50.220768, + "stopId": "U2200" + }, + { + "id": "U2200Z2", + "name": "Skorkov,Podbrahy", + "isMetro": false, + "latitude": 14.745495, + "longitude": 50.220551, + "stopId": "U2200" + }, + { + "id": "U2201Z1", + "name": "Skorkov", + "isMetro": false, + "latitude": 14.749486, + "longitude": 50.230923, + "stopId": "U2201" + }, + { + "id": "U2201Z2", + "name": "Skorkov", + "isMetro": false, + "latitude": 14.749189, + "longitude": 50.231384, + "stopId": "U2201" + }, + { + "id": "U2202Z1", + "name": "Brandýs n.L.-St.Bol.,Fakulta", + "isMetro": false, + "latitude": 14.668064, + "longitude": 50.184231, + "stopId": "U2202" + }, + { + "id": "U2202Z2", + "name": "Brandýs n.L.-St.Bol.,Fakulta", + "isMetro": false, + "latitude": 14.66844, + "longitude": 50.184265, + "stopId": "U2202" + }, + { + "id": "U2203Z1", + "name": "Brandýs n.L.-St.Bol.,Na Radosti", + "isMetro": false, + "latitude": 14.677136, + "longitude": 50.183117, + "stopId": "U2203" + }, + { + "id": "U2203Z2", + "name": "Brandýs n.L.-St.Bol.,Na Radosti", + "isMetro": false, + "latitude": 14.676992, + "longitude": 50.183239, + "stopId": "U2203" + }, + { + "id": "U2203Z401", + "name": "Brandýs n.L.-St.Bol.,Na Radosti", + "isMetro": false, + "latitude": 14.677136, + "longitude": 50.183117, + "stopId": "U2203" + }, + { + "id": "U2203Z402", + "name": "Brandýs n.L.-St.Bol.,Na Radosti", + "isMetro": false, + "latitude": 14.676992, + "longitude": 50.183239, + "stopId": "U2203" + }, + { + "id": "U2204Z1", + "name": "Brandýs n.L.-St.Bol.,Královice", + "isMetro": false, + "latitude": 14.686594, + "longitude": 50.179241, + "stopId": "U2204" + }, + { + "id": "U2204Z2", + "name": "Brandýs n.L.-St.Bol.,Královice", + "isMetro": false, + "latitude": 14.686813, + "longitude": 50.179268, + "stopId": "U2204" + }, + { + "id": "U2204Z401", + "name": "Brandýs n.L.-St.Bol.,Královice", + "isMetro": false, + "latitude": 14.686594, + "longitude": 50.179241, + "stopId": "U2204" + }, + { + "id": "U2204Z402", + "name": "Brandýs n.L.-St.Bol.,Královice", + "isMetro": false, + "latitude": 14.686813, + "longitude": 50.179268, + "stopId": "U2204" + }, + { + "id": "U2205Z301", + "name": "Otradovice", + "isMetro": false, + "latitude": 14.745999, + "longitude": 50.206097, + "stopId": "U2205" + }, + { + "id": "U2206Z1", + "name": "Zápy,PREFA", + "isMetro": false, + "latitude": 14.696906, + "longitude": 50.174736, + "stopId": "U2206" + }, + { + "id": "U2207Z1", + "name": "Lázně Toušeň,Zast.", + "isMetro": false, + "latitude": 14.707448, + "longitude": 50.170017, + "stopId": "U2207" + }, + { + "id": "U2207Z2", + "name": "Lázně Toušeň,Zast.", + "isMetro": false, + "latitude": 14.707109, + "longitude": 50.170303, + "stopId": "U2207" + }, + { + "id": "U2207Z401", + "name": "Lázně Toušeň,Zast.", + "isMetro": false, + "latitude": 14.707448, + "longitude": 50.170017, + "stopId": "U2207" + }, + { + "id": "U2207Z402", + "name": "Lázně Toušeň,Zast.", + "isMetro": false, + "latitude": 14.707109, + "longitude": 50.170303, + "stopId": "U2207" + }, + { + "id": "U2208Z1", + "name": "Lázně Toušeň", + "isMetro": false, + "latitude": 14.71679, + "longitude": 50.169258, + "stopId": "U2208" + }, + { + "id": "U2208Z2", + "name": "Lázně Toušeň", + "isMetro": false, + "latitude": 14.716066, + "longitude": 50.169453, + "stopId": "U2208" + }, + { + "id": "U2208Z401", + "name": "Lázně Toušeň", + "isMetro": false, + "latitude": 14.71679, + "longitude": 50.169258, + "stopId": "U2208" + }, + { + "id": "U2208Z402", + "name": "Lázně Toušeň", + "isMetro": false, + "latitude": 14.716066, + "longitude": 50.169453, + "stopId": "U2208" + }, + { + "id": "U2209Z1", + "name": "Strančice,škola", + "isMetro": false, + "latitude": 14.6746, + "longitude": 49.947182, + "stopId": "U2209" + }, + { + "id": "U220Z1", + "name": "K Pitkovičkám", + "isMetro": false, + "latitude": 14.590634, + "longitude": 50.024601, + "stopId": "U220" + }, + { + "id": "U220Z2", + "name": "K Pitkovičkám", + "isMetro": false, + "latitude": 14.590951, + "longitude": 50.024784, + "stopId": "U220" + }, + { + "id": "U2210Z1", + "name": "Čelákovice,V Prokopě", + "isMetro": false, + "latitude": 14.735657, + "longitude": 50.159939, + "stopId": "U2210" + }, + { + "id": "U2210Z2", + "name": "Čelákovice,V Prokopě", + "isMetro": false, + "latitude": 14.734733, + "longitude": 50.16048, + "stopId": "U2210" + }, + { + "id": "U2210Z401", + "name": "Čelákovice,V Prokopě", + "isMetro": false, + "latitude": 14.735657, + "longitude": 50.159939, + "stopId": "U2210" + }, + { + "id": "U2210Z402", + "name": "Čelákovice,V Prokopě", + "isMetro": false, + "latitude": 14.734733, + "longitude": 50.16048, + "stopId": "U2210" + }, + { + "id": "U2211Z1", + "name": "Čelákovice,Rumunská", + "isMetro": false, + "latitude": 14.744506, + "longitude": 50.160835, + "stopId": "U2211" + }, + { + "id": "U2211Z2", + "name": "Čelákovice,Rumunská", + "isMetro": false, + "latitude": 14.743758, + "longitude": 50.1604, + "stopId": "U2211" + }, + { + "id": "U2213Z1", + "name": "Čelákovice,Nám.", + "isMetro": false, + "latitude": 14.74953, + "longitude": 50.16301, + "stopId": "U2213" + }, + { + "id": "U2213Z2", + "name": "Čelákovice,Nám.", + "isMetro": false, + "latitude": 14.75043, + "longitude": 50.16275, + "stopId": "U2213" + }, + { + "id": "U2213Z402", + "name": "Čelákovice,Nám.", + "isMetro": false, + "latitude": 14.75043, + "longitude": 50.16275, + "stopId": "U2213" + }, + { + "id": "U2214Z301", + "name": "Čelákovice-Jiřina", + "isMetro": false, + "latitude": 14.765373, + "longitude": 50.167557, + "stopId": "U2214" + }, + { + "id": "U2215Z1", + "name": "Odolena Voda,Závod", + "isMetro": false, + "latitude": 14.408153, + "longitude": 50.221252, + "stopId": "U2215" + }, + { + "id": "U2215Z2", + "name": "Odolena Voda,Závod", + "isMetro": false, + "latitude": 14.408299, + "longitude": 50.220142, + "stopId": "U2215" + }, + { + "id": "U2215Z3", + "name": "Odolena Voda,Závod", + "isMetro": false, + "latitude": 14.408265, + "longitude": 50.220066, + "stopId": "U2215" + }, + { + "id": "U2216Z1", + "name": "Zdiby,U Parku", + "isMetro": false, + "latitude": 14.453117, + "longitude": 50.16539, + "stopId": "U2216" + }, + { + "id": "U2216Z2", + "name": "Zdiby,U Parku", + "isMetro": false, + "latitude": 14.452488, + "longitude": 50.167431, + "stopId": "U2216" + }, + { + "id": "U2217Z1", + "name": "Klecany,Zdibsko", + "isMetro": false, + "latitude": 14.440062, + "longitude": 50.183762, + "stopId": "U2217" + }, + { + "id": "U2217Z2", + "name": "Klecany,Zdibsko", + "isMetro": false, + "latitude": 14.440279, + "longitude": 50.182125, + "stopId": "U2217" + }, + { + "id": "U2217Z3", + "name": "Klecany,Zdibsko", + "isMetro": false, + "latitude": 14.4437, + "longitude": 50.183769, + "stopId": "U2217" + }, + { + "id": "U2218Z1", + "name": "Klíčany", + "isMetro": false, + "latitude": 14.435033, + "longitude": 50.20108, + "stopId": "U2218" + }, + { + "id": "U2218Z2", + "name": "Klíčany", + "isMetro": false, + "latitude": 14.434793, + "longitude": 50.200951, + "stopId": "U2218" + }, + { + "id": "U221Z1", + "name": "Karlovy lázně", + "isMetro": false, + "latitude": 14.413466, + "longitude": 50.084572, + "stopId": "U221" + }, + { + "id": "U221Z2", + "name": "Karlovy lázně", + "isMetro": false, + "latitude": 14.413747, + "longitude": 50.084763, + "stopId": "U221" + }, + { + "id": "U2220Z1", + "name": "Odolena Voda,Komenského", + "isMetro": false, + "latitude": 14.41162, + "longitude": 50.22863, + "stopId": "U2220" + }, + { + "id": "U2220Z2", + "name": "Odolena Voda,Komenského", + "isMetro": false, + "latitude": 14.414723, + "longitude": 50.228607, + "stopId": "U2220" + }, + { + "id": "U2221Z1", + "name": "Odolena Voda,Dolínek,Vodolská", + "isMetro": false, + "latitude": 14.421138, + "longitude": 50.227821, + "stopId": "U2221" + }, + { + "id": "U2222Z1", + "name": "Odolena Voda,Dolní náměstí", + "isMetro": false, + "latitude": 14.41124, + "longitude": 50.233311, + "stopId": "U2222" + }, + { + "id": "U2222Z2", + "name": "Odolena Voda,Dolní náměstí", + "isMetro": false, + "latitude": 14.411253, + "longitude": 50.23307, + "stopId": "U2222" + }, + { + "id": "U2223Z1", + "name": "Postřižín,U Kapličky", + "isMetro": false, + "latitude": 14.387458, + "longitude": 50.232204, + "stopId": "U2223" + }, + { + "id": "U2223Z2", + "name": "Postřižín,U Kapličky", + "isMetro": false, + "latitude": 14.386979, + "longitude": 50.232185, + "stopId": "U2223" + }, + { + "id": "U2224Z1", + "name": "Kozomín", + "isMetro": false, + "latitude": 14.372291, + "longitude": 50.237293, + "stopId": "U2224" + }, + { + "id": "U2224Z2", + "name": "Kozomín", + "isMetro": false, + "latitude": 14.372455, + "longitude": 50.237373, + "stopId": "U2224" + }, + { + "id": "U2225Z1", + "name": "Kozomín,Rozc.", + "isMetro": false, + "latitude": 14.372653, + "longitude": 50.240559, + "stopId": "U2225" + }, + { + "id": "U2225Z2", + "name": "Kozomín,Rozc.", + "isMetro": false, + "latitude": 14.372931, + "longitude": 50.240383, + "stopId": "U2225" + }, + { + "id": "U2226Z1", + "name": "Zlončice", + "isMetro": false, + "latitude": 14.359653, + "longitude": 50.229084, + "stopId": "U2226" + }, + { + "id": "U2226Z2", + "name": "Zlončice", + "isMetro": false, + "latitude": 14.358766, + "longitude": 50.229069, + "stopId": "U2226" + }, + { + "id": "U2227Z1", + "name": "Chvatěruby", + "isMetro": false, + "latitude": 14.346523, + "longitude": 50.235149, + "stopId": "U2227" + }, + { + "id": "U2227Z2", + "name": "Chvatěruby", + "isMetro": false, + "latitude": 14.346564, + "longitude": 50.235073, + "stopId": "U2227" + }, + { + "id": "U2228Z1", + "name": "Veltrusy,Hřiště", + "isMetro": false, + "latitude": 14.334225, + "longitude": 50.266891, + "stopId": "U2228" + }, + { + "id": "U2228Z2", + "name": "Veltrusy,Hřiště", + "isMetro": false, + "latitude": 14.333722, + "longitude": 50.267014, + "stopId": "U2228" + }, + { + "id": "U2229Z1", + "name": "Zdiby,Výzkumný ústav", + "isMetro": false, + "latitude": 14.45212, + "longitude": 50.171211, + "stopId": "U2229" + }, + { + "id": "U2229Z2", + "name": "Zdiby,Výzkumný ústav", + "isMetro": false, + "latitude": 14.451759, + "longitude": 50.171448, + "stopId": "U2229" + }, + { + "id": "U222Z1", + "name": "K Teplárně", + "isMetro": false, + "latitude": 14.52105, + "longitude": 50.168736, + "stopId": "U222" + }, + { + "id": "U222Z2", + "name": "K Teplárně", + "isMetro": false, + "latitude": 14.52132, + "longitude": 50.168869, + "stopId": "U222" + }, + { + "id": "U2231Z1", + "name": "Kralupy n.Vlt.,Synthos", + "isMetro": false, + "latitude": 14.320539, + "longitude": 50.255367, + "stopId": "U2231" + }, + { + "id": "U2231Z2", + "name": "Kralupy n.Vlt.,Synthos", + "isMetro": false, + "latitude": 14.32063, + "longitude": 50.25568, + "stopId": "U2231" + }, + { + "id": "U2232Z1", + "name": "Kralupy n.Vlt.,Kovošrot", + "isMetro": false, + "latitude": 14.33391, + "longitude": 50.240047, + "stopId": "U2232" + }, + { + "id": "U2232Z2", + "name": "Kralupy n.Vlt.,Kovošrot", + "isMetro": false, + "latitude": 14.33399, + "longitude": 50.239918, + "stopId": "U2232" + }, + { + "id": "U2233Z1", + "name": "Kralupy n.Vlt.,Lobeček,Pískovna", + "isMetro": false, + "latitude": 14.32837, + "longitude": 50.24329, + "stopId": "U2233" + }, + { + "id": "U2233Z2", + "name": "Kralupy n.Vlt.,Lobeček,Pískovna", + "isMetro": false, + "latitude": 14.32807, + "longitude": 50.243179, + "stopId": "U2233" + }, + { + "id": "U2234Z1", + "name": "Kralupy n.Vlt.,Lobeček,Rozc.", + "isMetro": false, + "latitude": 14.32275, + "longitude": 50.251049, + "stopId": "U2234" + }, + { + "id": "U2234Z2", + "name": "Kralupy n.Vlt.,Lobeček,Rozc.", + "isMetro": false, + "latitude": 14.32276, + "longitude": 50.250839, + "stopId": "U2234" + }, + { + "id": "U2235Z1", + "name": "Kralupy n.Vlt.,kulturní dům", + "isMetro": false, + "latitude": 14.31612, + "longitude": 50.247108, + "stopId": "U2235" + }, + { + "id": "U2235Z2", + "name": "Kralupy n.Vlt.,kulturní dům", + "isMetro": false, + "latitude": 14.31651, + "longitude": 50.247189, + "stopId": "U2235" + }, + { + "id": "U2236Z1", + "name": "Kralupy n.Vlt.,žel.st.", + "isMetro": false, + "latitude": 14.313758, + "longitude": 50.239357, + "stopId": "U2236" + }, + { + "id": "U2236Z2", + "name": "Kralupy n.Vlt.,žel.st.", + "isMetro": false, + "latitude": 14.313339, + "longitude": 50.239368, + "stopId": "U2236" + }, + { + "id": "U2236Z3", + "name": "Kralupy n.Vlt.,žel.st.", + "isMetro": false, + "latitude": 14.313659, + "longitude": 50.239651, + "stopId": "U2236" + }, + { + "id": "U2236Z301", + "name": "Kralupy nad Vltavou", + "isMetro": false, + "latitude": 14.313765, + "longitude": 50.238506, + "stopId": "U2236" + }, + { + "id": "U2236Z401", + "name": "Kralupy n.Vlt.,žel.st.", + "isMetro": false, + "latitude": 14.313758, + "longitude": 50.239357, + "stopId": "U2236" + }, + { + "id": "U2236Z406", + "name": "Kralupy n.Vlt.,žel.st.", + "isMetro": false, + "latitude": 14.312974, + "longitude": 50.239265, + "stopId": "U2236" + }, + { + "id": "U2236Z6", + "name": "Kralupy n.Vlt.,žel.st.", + "isMetro": false, + "latitude": 14.312974, + "longitude": 50.239265, + "stopId": "U2236" + }, + { + "id": "U2237Z1", + "name": "Zdiby", + "isMetro": false, + "latitude": 14.45089, + "longitude": 50.166756, + "stopId": "U2237" + }, + { + "id": "U2237Z2", + "name": "Zdiby", + "isMetro": false, + "latitude": 14.452041, + "longitude": 50.16655, + "stopId": "U2237" + }, + { + "id": "U2238Z1", + "name": "Zdiby,Veltěž,Pošta", + "isMetro": false, + "latitude": 14.446209, + "longitude": 50.167736, + "stopId": "U2238" + }, + { + "id": "U2238Z2", + "name": "Zdiby,Veltěž,Pošta", + "isMetro": false, + "latitude": 14.44592, + "longitude": 50.167667, + "stopId": "U2238" + }, + { + "id": "U2239Z1", + "name": "Zdiby,Veltěž", + "isMetro": false, + "latitude": 14.439981, + "longitude": 50.167755, + "stopId": "U2239" + }, + { + "id": "U2239Z2", + "name": "Zdiby,Veltěž", + "isMetro": false, + "latitude": 14.440468, + "longitude": 50.167629, + "stopId": "U2239" + }, + { + "id": "U223Z1", + "name": "K Tuchoměřicům", + "isMetro": false, + "latitude": 14.2916, + "longitude": 50.1161, + "stopId": "U223" + }, + { + "id": "U223Z2", + "name": "K Tuchoměřicům", + "isMetro": false, + "latitude": 14.291166, + "longitude": 50.115883, + "stopId": "U223" + }, + { + "id": "U2240Z1", + "name": "Zdiby,Přemyšlení", + "isMetro": false, + "latitude": 14.43091, + "longitude": 50.168495, + "stopId": "U2240" + }, + { + "id": "U2240Z2", + "name": "Zdiby,Přemyšlení", + "isMetro": false, + "latitude": 14.430903, + "longitude": 50.16843, + "stopId": "U2240" + }, + { + "id": "U2241Z1", + "name": "Klecany,U Hřbitova", + "isMetro": false, + "latitude": 14.418703, + "longitude": 50.177124, + "stopId": "U2241" + }, + { + "id": "U2241Z2", + "name": "Klecany,U Hřbitova", + "isMetro": false, + "latitude": 14.419854, + "longitude": 50.176643, + "stopId": "U2241" + }, + { + "id": "U2242Z1", + "name": "Klecany", + "isMetro": false, + "latitude": 14.412176, + "longitude": 50.175484, + "stopId": "U2242" + }, + { + "id": "U2242Z2", + "name": "Klecany", + "isMetro": false, + "latitude": 14.412519, + "longitude": 50.175354, + "stopId": "U2242" + }, + { + "id": "U2243Z2", + "name": "Klecany,Klecánky", + "isMetro": false, + "latitude": 14.402478, + "longitude": 50.1707, + "stopId": "U2243" + }, + { + "id": "U2244Z1", + "name": "Klecany,U Kostela", + "isMetro": false, + "latitude": 14.409646, + "longitude": 50.177479, + "stopId": "U2244" + }, + { + "id": "U2244Z2", + "name": "Klecany,U Kostela", + "isMetro": false, + "latitude": 14.41011, + "longitude": 50.177441, + "stopId": "U2244" + }, + { + "id": "U2245Z1", + "name": "Husinec,Rozc.", + "isMetro": false, + "latitude": 14.371705, + "longitude": 50.175301, + "stopId": "U2245" + }, + { + "id": "U2245Z2", + "name": "Husinec,Rozc.", + "isMetro": false, + "latitude": 14.372375, + "longitude": 50.175541, + "stopId": "U2245" + }, + { + "id": "U2246Z1", + "name": "Husinec,Řež,Sídliště", + "isMetro": false, + "latitude": 14.361948, + "longitude": 50.17244, + "stopId": "U2246" + }, + { + "id": "U2246Z2", + "name": "Husinec,Řež,Sídliště", + "isMetro": false, + "latitude": 14.361627, + "longitude": 50.172314, + "stopId": "U2246" + }, + { + "id": "U2247Z1", + "name": "Husinec,Řež", + "isMetro": false, + "latitude": 14.360365, + "longitude": 50.170612, + "stopId": "U2247" + }, + { + "id": "U2247Z2", + "name": "Husinec,Řež", + "isMetro": false, + "latitude": 14.359962, + "longitude": 50.170654, + "stopId": "U2247" + }, + { + "id": "U2248Z2", + "name": "Husinec,Řež,Záv.", + "isMetro": false, + "latitude": 14.358526, + "longitude": 50.177181, + "stopId": "U2248" + }, + { + "id": "U2249Z1", + "name": "Sedlec", + "isMetro": false, + "latitude": 14.456752, + "longitude": 50.184334, + "stopId": "U2249" + }, + { + "id": "U2249Z2", + "name": "Sedlec", + "isMetro": false, + "latitude": 14.457065, + "longitude": 50.184708, + "stopId": "U2249" + }, + { + "id": "U224Z2", + "name": "K Vystrkovu", + "isMetro": false, + "latitude": 14.411006, + "longitude": 49.999321, + "stopId": "U224" + }, + { + "id": "U224Z3", + "name": "K Vystrkovu", + "isMetro": false, + "latitude": 14.40994, + "longitude": 49.999874, + "stopId": "U224" + }, + { + "id": "U2250Z1", + "name": "Bašť", + "isMetro": false, + "latitude": 14.473833, + "longitude": 50.204445, + "stopId": "U2250" + }, + { + "id": "U2250Z2", + "name": "Bašť", + "isMetro": false, + "latitude": 14.473971, + "longitude": 50.204491, + "stopId": "U2250" + }, + { + "id": "U2251Z1", + "name": "Větrušice", + "isMetro": false, + "latitude": 14.384317, + "longitude": 50.191517, + "stopId": "U2251" + }, + { + "id": "U2252Z1", + "name": "Klecany,Drasty,Čistírna", + "isMetro": false, + "latitude": 14.396585, + "longitude": 50.192135, + "stopId": "U2252" + }, + { + "id": "U2252Z2", + "name": "Klecany,Drasty,Čistírna", + "isMetro": false, + "latitude": 14.39639, + "longitude": 50.192078, + "stopId": "U2252" + }, + { + "id": "U2253Z1", + "name": "Klecany,Drasty", + "isMetro": false, + "latitude": 14.399425, + "longitude": 50.196178, + "stopId": "U2253" + }, + { + "id": "U2253Z2", + "name": "Klecany,Drasty", + "isMetro": false, + "latitude": 14.39932, + "longitude": 50.196358, + "stopId": "U2253" + }, + { + "id": "U2255Z1", + "name": "Vodochody,Rozc.Hoštice", + "isMetro": false, + "latitude": 14.400696, + "longitude": 50.202721, + "stopId": "U2255" + }, + { + "id": "U2255Z2", + "name": "Vodochody,Rozc.Hoštice", + "isMetro": false, + "latitude": 14.400698, + "longitude": 50.201424, + "stopId": "U2255" + }, + { + "id": "U2256Z1", + "name": "Vodochody", + "isMetro": false, + "latitude": 14.398702, + "longitude": 50.20623, + "stopId": "U2256" + }, + { + "id": "U2256Z2", + "name": "Vodochody", + "isMetro": false, + "latitude": 14.398771, + "longitude": 50.206009, + "stopId": "U2256" + }, + { + "id": "U2257Z1", + "name": "Vodochody,U Školy", + "isMetro": false, + "latitude": 14.396781, + "longitude": 50.2076, + "stopId": "U2257" + }, + { + "id": "U2257Z2", + "name": "Vodochody,U Školy", + "isMetro": false, + "latitude": 14.396606, + "longitude": 50.20755, + "stopId": "U2257" + }, + { + "id": "U2258Z1", + "name": "Máslovice", + "isMetro": false, + "latitude": 14.379628, + "longitude": 50.208851, + "stopId": "U2258" + }, + { + "id": "U225Z1", + "name": "K Žižkovu", + "isMetro": false, + "latitude": 14.496417, + "longitude": 50.09959, + "stopId": "U225" + }, + { + "id": "U225Z2", + "name": "K Žižkovu", + "isMetro": false, + "latitude": 14.49641, + "longitude": 50.099403, + "stopId": "U225" + }, + { + "id": "U2260Z1", + "name": "Odolena Voda,Ke Stadionu", + "isMetro": false, + "latitude": 14.41037, + "longitude": 50.226192, + "stopId": "U2260" + }, + { + "id": "U2260Z2", + "name": "Odolena Voda,Ke Stadionu", + "isMetro": false, + "latitude": 14.410131, + "longitude": 50.226025, + "stopId": "U2260" + }, + { + "id": "U2261Z1", + "name": "Panenské Břežany,Zámek", + "isMetro": false, + "latitude": 14.436707, + "longitude": 50.211685, + "stopId": "U2261" + }, + { + "id": "U2261Z2", + "name": "Panenské Břežany,Zámek", + "isMetro": false, + "latitude": 14.436448, + "longitude": 50.211426, + "stopId": "U2261" + }, + { + "id": "U2262Z1", + "name": "Panenské Břežany", + "isMetro": false, + "latitude": 14.440305, + "longitude": 50.214653, + "stopId": "U2262" + }, + { + "id": "U2262Z2", + "name": "Panenské Břežany", + "isMetro": false, + "latitude": 14.440737, + "longitude": 50.214325, + "stopId": "U2262" + }, + { + "id": "U2263Z1", + "name": "Odolena Voda,Dolínek", + "isMetro": false, + "latitude": 14.421569, + "longitude": 50.225677, + "stopId": "U2263" + }, + { + "id": "U2263Z2", + "name": "Odolena Voda,Dolínek", + "isMetro": false, + "latitude": 14.42174, + "longitude": 50.22562, + "stopId": "U2263" + }, + { + "id": "U2264Z1", + "name": "Zdiby,U Celnice", + "isMetro": false, + "latitude": 14.45267, + "longitude": 50.161427, + "stopId": "U2264" + }, + { + "id": "U2264Z2", + "name": "Zdiby,U Celnice", + "isMetro": false, + "latitude": 14.452363, + "longitude": 50.161327, + "stopId": "U2264" + }, + { + "id": "U2265Z3", + "name": "Úžice,Kopeč", + "isMetro": false, + "latitude": 14.422191, + "longitude": 50.251156, + "stopId": "U2265" + }, + { + "id": "U2266Z1", + "name": "Veliká Ves", + "isMetro": false, + "latitude": 14.454966, + "longitude": 50.241863, + "stopId": "U2266" + }, + { + "id": "U2267Z1", + "name": "Neratovice,Korycany", + "isMetro": false, + "latitude": 14.451774, + "longitude": 50.254181, + "stopId": "U2267" + }, + { + "id": "U2267Z2", + "name": "Neratovice,Korycany", + "isMetro": false, + "latitude": 14.451978, + "longitude": 50.254417, + "stopId": "U2267" + }, + { + "id": "U2268Z1", + "name": "Bašť,Baštěk", + "isMetro": false, + "latitude": 14.462309, + "longitude": 50.205109, + "stopId": "U2268" + }, + { + "id": "U2268Z2", + "name": "Bašť,Baštěk", + "isMetro": false, + "latitude": 14.463048, + "longitude": 50.203804, + "stopId": "U2268" + }, + { + "id": "U2269Z1", + "name": "Český Brod,Žel.st.", + "isMetro": false, + "latitude": 14.866409, + "longitude": 50.07613, + "stopId": "U2269" + }, + { + "id": "U2269Z301", + "name": "Český Brod", + "isMetro": false, + "latitude": 14.866266, + "longitude": 50.076683, + "stopId": "U2269" + }, + { + "id": "U2269Z4", + "name": "Český Brod,Žel.st.", + "isMetro": false, + "latitude": 14.866569, + "longitude": 50.076157, + "stopId": "U2269" + }, + { + "id": "U2269Z5", + "name": "Český Brod,Žel.st.", + "isMetro": false, + "latitude": 14.865417, + "longitude": 50.076004, + "stopId": "U2269" + }, + { + "id": "U2269Z6", + "name": "Český Brod,Žel.st.", + "isMetro": false, + "latitude": 14.865687, + "longitude": 50.076241, + "stopId": "U2269" + }, + { + "id": "U226Z1", + "name": "Myšlínská", + "isMetro": false, + "latitude": 14.534617, + "longitude": 50.062187, + "stopId": "U226" + }, + { + "id": "U226Z2", + "name": "Myšlínská", + "isMetro": false, + "latitude": 14.5347, + "longitude": 50.062283, + "stopId": "U226" + }, + { + "id": "U226Z3", + "name": "Myšlínská", + "isMetro": false, + "latitude": 14.533691, + "longitude": 50.062023, + "stopId": "U226" + }, + { + "id": "U2270Z2", + "name": "Český Brod,Jana Kouly", + "isMetro": false, + "latitude": 14.863471, + "longitude": 50.073231, + "stopId": "U2270" + }, + { + "id": "U2272Z1", + "name": "Český Brod,U Vodárny", + "isMetro": false, + "latitude": 14.864837, + "longitude": 50.090912, + "stopId": "U2272" + }, + { + "id": "U2272Z2", + "name": "Český Brod,U Vodárny", + "isMetro": false, + "latitude": 14.864703, + "longitude": 50.091251, + "stopId": "U2272" + }, + { + "id": "U2273Z1", + "name": "Tismice,bytovky", + "isMetro": false, + "latitude": 14.825043, + "longitude": 50.05954, + "stopId": "U2273" + }, + { + "id": "U2273Z2", + "name": "Tismice,bytovky", + "isMetro": false, + "latitude": 14.824572, + "longitude": 50.059383, + "stopId": "U2273" + }, + { + "id": "U2274Z1", + "name": "Český Brod,Liblice,Bylanská", + "isMetro": false, + "latitude": 14.884626, + "longitude": 50.070999, + "stopId": "U2274" + }, + { + "id": "U2274Z2", + "name": "Český Brod,Liblice,Bylanská", + "isMetro": false, + "latitude": 14.884381, + "longitude": 50.072266, + "stopId": "U2274" + }, + { + "id": "U2275Z301", + "name": "Tuklaty", + "isMetro": false, + "latitude": 14.770609, + "longitude": 50.076996, + "stopId": "U2275" + }, + { + "id": "U2276Z1", + "name": "Nádraží Běchovice střed", + "isMetro": false, + "latitude": 14.616591, + "longitude": 50.084499, + "stopId": "U2276" + }, + { + "id": "U2276Z2", + "name": "Nádraží Běchovice střed", + "isMetro": false, + "latitude": 14.616713, + "longitude": 50.084423, + "stopId": "U2276" + }, + { + "id": "U2276Z301", + "name": "Praha-Běchovice střed", + "isMetro": false, + "latitude": 14.615585, + "longitude": 50.083626, + "stopId": "U2276" + }, + { + "id": "U2277Z301", + "name": "Mnichovice", + "isMetro": false, + "latitude": 14.707031, + "longitude": 49.93272, + "stopId": "U2277" + }, + { + "id": "U2278Z301", + "name": "Černošice-Mokropsy", + "isMetro": false, + "latitude": 14.330338, + "longitude": 49.946228, + "stopId": "U2278" + }, + { + "id": "U2279Z301", + "name": "Všenory", + "isMetro": false, + "latitude": 14.305041, + "longitude": 49.932842, + "stopId": "U2279" + }, + { + "id": "U227Z1", + "name": "Kablo", + "isMetro": false, + "latitude": 14.538365, + "longitude": 50.062092, + "stopId": "U227" + }, + { + "id": "U227Z2", + "name": "Kablo", + "isMetro": false, + "latitude": 14.538367, + "longitude": 50.062218, + "stopId": "U227" + }, + { + "id": "U227Z3", + "name": "Kablo", + "isMetro": false, + "latitude": 14.536145, + "longitude": 50.061485, + "stopId": "U227" + }, + { + "id": "U227Z4", + "name": "Kablo", + "isMetro": false, + "latitude": 14.537416, + "longitude": 50.062866, + "stopId": "U227" + }, + { + "id": "U2280Z1", + "name": "Řevnice,Nádraží", + "isMetro": false, + "latitude": 14.237044, + "longitude": 49.915947, + "stopId": "U2280" + }, + { + "id": "U2280Z301", + "name": "Řevnice", + "isMetro": false, + "latitude": 14.238914, + "longitude": 49.916504, + "stopId": "U2280" + }, + { + "id": "U2280Z401", + "name": "Řevnice,Nádraží", + "isMetro": false, + "latitude": 14.237044, + "longitude": 49.915947, + "stopId": "U2280" + }, + { + "id": "U2281Z301", + "name": "Mstětice", + "isMetro": false, + "latitude": 14.692142, + "longitude": 50.136929, + "stopId": "U2281" + }, + { + "id": "U2282Z1", + "name": "Semice,Rozc.Velenka", + "isMetro": false, + "latitude": 14.878875, + "longitude": 50.162834, + "stopId": "U2282" + }, + { + "id": "U2282Z2", + "name": "Semice,Rozc.Velenka", + "isMetro": false, + "latitude": 14.879168, + "longitude": 50.162781, + "stopId": "U2282" + }, + { + "id": "U2285Z1", + "name": "Kralupy n.Vlt.,Poděbradova", + "isMetro": false, + "latitude": 14.30729, + "longitude": 50.23764, + "stopId": "U2285" + }, + { + "id": "U2285Z2", + "name": "Kralupy n.Vlt.,Poděbradova", + "isMetro": false, + "latitude": 14.307257, + "longitude": 50.237568, + "stopId": "U2285" + }, + { + "id": "U2286Z1", + "name": "Kralupy n.Vlt.,Městský úřad", + "isMetro": false, + "latitude": 14.31162, + "longitude": 50.24136, + "stopId": "U2286" + }, + { + "id": "U2286Z2", + "name": "Kralupy n.Vlt.,Městský úřad", + "isMetro": false, + "latitude": 14.312141, + "longitude": 50.24139, + "stopId": "U2286" + }, + { + "id": "U2287Z1", + "name": "Kostelec n.Č.l.,Svatbín", + "isMetro": false, + "latitude": 14.880402, + "longitude": 49.988262, + "stopId": "U2287" + }, + { + "id": "U2287Z2", + "name": "Kostelec n.Č.l.,Svatbín", + "isMetro": false, + "latitude": 14.880631, + "longitude": 49.987789, + "stopId": "U2287" + }, + { + "id": "U2288Z1", + "name": "Sulice,Želivec,Mandava", + "isMetro": false, + "latitude": 14.575622, + "longitude": 49.922852, + "stopId": "U2288" + }, + { + "id": "U2288Z2", + "name": "Sulice,Želivec,Mandava", + "isMetro": false, + "latitude": 14.575533, + "longitude": 49.923019, + "stopId": "U2288" + }, + { + "id": "U2289Z1", + "name": "Krupá", + "isMetro": false, + "latitude": 14.870791, + "longitude": 50.017269, + "stopId": "U2289" + }, + { + "id": "U2289Z2", + "name": "Krupá", + "isMetro": false, + "latitude": 14.870921, + "longitude": 50.017323, + "stopId": "U2289" + }, + { + "id": "U228Z1", + "name": "Kačerov", + "isMetro": false, + "latitude": 14.460879, + "longitude": 50.041969, + "stopId": "U228" + }, + { + "id": "U228Z101", + "name": "Kačerov", + "isMetro": true, + "latitude": 14.459315, + "longitude": 50.041905, + "stopId": "U228" + }, + { + "id": "U228Z102", + "name": "Kačerov", + "isMetro": true, + "latitude": 14.459271, + "longitude": 50.041791, + "stopId": "U228" + }, + { + "id": "U228Z2", + "name": "Kačerov", + "isMetro": false, + "latitude": 14.460546, + "longitude": 50.041779, + "stopId": "U228" + }, + { + "id": "U228Z3", + "name": "Kačerov", + "isMetro": false, + "latitude": 14.460326, + "longitude": 50.041622, + "stopId": "U228" + }, + { + "id": "U228Z301", + "name": "Praha-Kačerov", + "isMetro": false, + "latitude": 14.46181, + "longitude": 50.041718, + "stopId": "U228" + }, + { + "id": "U228Z4", + "name": "Kačerov", + "isMetro": false, + "latitude": 14.461573, + "longitude": 50.041912, + "stopId": "U228" + }, + { + "id": "U228Z5", + "name": "Kačerov", + "isMetro": false, + "latitude": 14.460334, + "longitude": 50.042034, + "stopId": "U228" + }, + { + "id": "U2290Z1", + "name": "Krupá,Rozc.Syneč", + "isMetro": false, + "latitude": 14.876142, + "longitude": 50.031971, + "stopId": "U2290" + }, + { + "id": "U2290Z2", + "name": "Krupá,Rozc.Syneč", + "isMetro": false, + "latitude": 14.876171, + "longitude": 50.03186, + "stopId": "U2290" + }, + { + "id": "U2291Z1", + "name": "Krupá,Dvůr Chrást", + "isMetro": false, + "latitude": 14.879931, + "longitude": 50.03973, + "stopId": "U2291" + }, + { + "id": "U2291Z2", + "name": "Krupá,Dvůr Chrást", + "isMetro": false, + "latitude": 14.879622, + "longitude": 50.03941, + "stopId": "U2291" + }, + { + "id": "U2292Z1", + "name": "Dvory", + "isMetro": false, + "latitude": 14.996029, + "longitude": 50.211662, + "stopId": "U2292" + }, + { + "id": "U2292Z2", + "name": "Dvory", + "isMetro": false, + "latitude": 14.996052, + "longitude": 50.211582, + "stopId": "U2292" + }, + { + "id": "U2293Z1", + "name": "Přistoupim", + "isMetro": false, + "latitude": 14.876541, + "longitude": 50.055229, + "stopId": "U2293" + }, + { + "id": "U2293Z2", + "name": "Přistoupim", + "isMetro": false, + "latitude": 14.876442, + "longitude": 50.055759, + "stopId": "U2293" + }, + { + "id": "U2294Z1", + "name": "Přistoupim,Rozc.", + "isMetro": false, + "latitude": 14.876402, + "longitude": 50.06361, + "stopId": "U2294" + }, + { + "id": "U2294Z2", + "name": "Přistoupim,Rozc.", + "isMetro": false, + "latitude": 14.876721, + "longitude": 50.06348, + "stopId": "U2294" + }, + { + "id": "U2295Z1", + "name": "Kostelec n.Č.l.,Truba", + "isMetro": false, + "latitude": 14.836391, + "longitude": 50.005512, + "stopId": "U2295" + }, + { + "id": "U2295Z2", + "name": "Kostelec n.Č.l.,Truba", + "isMetro": false, + "latitude": 14.836381, + "longitude": 50.005821, + "stopId": "U2295" + }, + { + "id": "U2296Z1", + "name": "Přehvozdí", + "isMetro": false, + "latitude": 14.839921, + "longitude": 50.027912, + "stopId": "U2296" + }, + { + "id": "U2296Z52", + "name": "Přehvozdí", + "isMetro": false, + "latitude": 14.840302, + "longitude": 50.026569, + "stopId": "U2296" + }, + { + "id": "U2297Z1", + "name": "Přehvozdí,U Hřbitova", + "isMetro": false, + "latitude": 14.841159, + "longitude": 50.0303, + "stopId": "U2297" + }, + { + "id": "U2298Z1", + "name": "Tuchoraz", + "isMetro": false, + "latitude": 14.850532, + "longitude": 50.048092, + "stopId": "U2298" + }, + { + "id": "U2298Z2", + "name": "Tuchoraz", + "isMetro": false, + "latitude": 14.850801, + "longitude": 50.04818, + "stopId": "U2298" + }, + { + "id": "U2299Z1", + "name": "Tuchoraz,U Sadů", + "isMetro": false, + "latitude": 14.855612, + "longitude": 50.050961, + "stopId": "U2299" + }, + { + "id": "U2299Z2", + "name": "Tuchoraz,U Sadů", + "isMetro": false, + "latitude": 14.855311, + "longitude": 50.05085, + "stopId": "U2299" + }, + { + "id": "U229Z1", + "name": "Kajetánka", + "isMetro": false, + "latitude": 14.370933, + "longitude": 50.086517, + "stopId": "U229" + }, + { + "id": "U229Z2", + "name": "Kajetánka", + "isMetro": false, + "latitude": 14.372259, + "longitude": 50.086491, + "stopId": "U229" + }, + { + "id": "U229Z3", + "name": "Kajetánka", + "isMetro": false, + "latitude": 14.371157, + "longitude": 50.087109, + "stopId": "U229" + }, + { + "id": "U22Z1", + "name": "K Lipanům", + "isMetro": false, + "latitude": 14.606434, + "longitude": 50.015751, + "stopId": "U22" + }, + { + "id": "U22Z2", + "name": "K Lipanům", + "isMetro": false, + "latitude": 14.606518, + "longitude": 50.016083, + "stopId": "U22" + }, + { + "id": "U2300Z1", + "name": "Kouřim", + "isMetro": false, + "latitude": 14.972712, + "longitude": 50.005241, + "stopId": "U2300" + }, + { + "id": "U2300Z2", + "name": "Kouřim", + "isMetro": false, + "latitude": 14.972772, + "longitude": 50.005081, + "stopId": "U2300" + }, + { + "id": "U2301Z1", + "name": "Kouřim,ZŠ", + "isMetro": false, + "latitude": 14.97368, + "longitude": 50.001495, + "stopId": "U2301" + }, + { + "id": "U2301Z2", + "name": "Kouřim,ZŠ", + "isMetro": false, + "latitude": 14.973557, + "longitude": 50.001598, + "stopId": "U2301" + }, + { + "id": "U2301Z3", + "name": "Kouřim,ZŠ", + "isMetro": false, + "latitude": 14.974065, + "longitude": 50.002338, + "stopId": "U2301" + }, + { + "id": "U2301Z4", + "name": "Kouřim,ZŠ", + "isMetro": false, + "latitude": 14.974388, + "longitude": 50.001373, + "stopId": "U2301" + }, + { + "id": "U2304Z1", + "name": "Jenštejn,Domov seniorů", + "isMetro": false, + "latitude": 14.600532, + "longitude": 50.154209, + "stopId": "U2304" + }, + { + "id": "U2304Z2", + "name": "Jenštejn,Domov seniorů", + "isMetro": false, + "latitude": 14.600962, + "longitude": 50.154385, + "stopId": "U2304" + }, + { + "id": "U2305Z1", + "name": "Vitice,Dobré Pole", + "isMetro": false, + "latitude": 14.925041, + "longitude": 50.00016, + "stopId": "U2305" + }, + { + "id": "U2305Z2", + "name": "Vitice,Dobré Pole", + "isMetro": false, + "latitude": 14.924831, + "longitude": 50.000153, + "stopId": "U2305" + }, + { + "id": "U2306Z1", + "name": "Vitice,Močedník", + "isMetro": false, + "latitude": 14.910381, + "longitude": 50.018661, + "stopId": "U2306" + }, + { + "id": "U2306Z2", + "name": "Vitice,Močedník", + "isMetro": false, + "latitude": 14.910401, + "longitude": 50.018692, + "stopId": "U2306" + }, + { + "id": "U2308Z1", + "name": "Vitice", + "isMetro": false, + "latitude": 14.911262, + "longitude": 50.029202, + "stopId": "U2308" + }, + { + "id": "U2308Z2", + "name": "Vitice", + "isMetro": false, + "latitude": 14.911052, + "longitude": 50.029369, + "stopId": "U2308" + }, + { + "id": "U2309Z1", + "name": "Vitice,U Školy", + "isMetro": false, + "latitude": 14.915782, + "longitude": 50.031002, + "stopId": "U2309" + }, + { + "id": "U2309Z2", + "name": "Vitice,U Školy", + "isMetro": false, + "latitude": 14.915872, + "longitude": 50.031071, + "stopId": "U2309" + }, + { + "id": "U230Z1", + "name": "Kalinův mlýn", + "isMetro": false, + "latitude": 14.367546, + "longitude": 50.111, + "stopId": "U230" + }, + { + "id": "U230Z2", + "name": "Kalinův mlýn", + "isMetro": false, + "latitude": 14.368467, + "longitude": 50.111168, + "stopId": "U230" + }, + { + "id": "U2310Z1", + "name": "Vitice,Hřiby", + "isMetro": false, + "latitude": 14.917707, + "longitude": 50.032299, + "stopId": "U2310" + }, + { + "id": "U2310Z2", + "name": "Vitice,Hřiby", + "isMetro": false, + "latitude": 14.918662, + "longitude": 50.035469, + "stopId": "U2310" + }, + { + "id": "U2311Z1", + "name": "Dobročovice", + "isMetro": false, + "latitude": 14.698991, + "longitude": 50.056179, + "stopId": "U2311" + }, + { + "id": "U2311Z2", + "name": "Dobročovice", + "isMetro": false, + "latitude": 14.698461, + "longitude": 50.05621, + "stopId": "U2311" + }, + { + "id": "U2312Z1", + "name": "Kšely", + "isMetro": false, + "latitude": 14.90064, + "longitude": 50.043827, + "stopId": "U2312" + }, + { + "id": "U2312Z2", + "name": "Kšely", + "isMetro": false, + "latitude": 14.900504, + "longitude": 50.043949, + "stopId": "U2312" + }, + { + "id": "U2313Z1", + "name": "Vitice,Chotýš", + "isMetro": false, + "latitude": 14.903782, + "longitude": 50.018932, + "stopId": "U2313" + }, + { + "id": "U2313Z2", + "name": "Vitice,Chotýš", + "isMetro": false, + "latitude": 14.903511, + "longitude": 50.01897, + "stopId": "U2313" + }, + { + "id": "U2314Z301", + "name": "Klučov", + "isMetro": false, + "latitude": 14.903756, + "longitude": 50.094315, + "stopId": "U2314" + }, + { + "id": "U2315Z1", + "name": "Úvaly,Husova", + "isMetro": false, + "latitude": 14.725532, + "longitude": 50.073273, + "stopId": "U2315" + }, + { + "id": "U2316Z1", + "name": "Dobrovice,Libichov,hl.sil.", + "isMetro": false, + "latitude": 14.913216, + "longitude": 50.352165, + "stopId": "U2316" + }, + { + "id": "U2316Z2", + "name": "Dobrovice,Libichov,hl.sil.", + "isMetro": false, + "latitude": 14.913251, + "longitude": 50.351673, + "stopId": "U2316" + }, + { + "id": "U2319Z1", + "name": "Kostelec n.Č.l.,Komenského", + "isMetro": false, + "latitude": 14.859154, + "longitude": 49.986019, + "stopId": "U2319" + }, + { + "id": "U2319Z2", + "name": "Kostelec n.Č.l.,Komenského", + "isMetro": false, + "latitude": 14.859042, + "longitude": 49.986847, + "stopId": "U2319" + }, + { + "id": "U231Z1", + "name": "Kamenická", + "isMetro": false, + "latitude": 14.428855, + "longitude": 50.099571, + "stopId": "U231" + }, + { + "id": "U231Z2", + "name": "Kamenická", + "isMetro": false, + "latitude": 14.428417, + "longitude": 50.099705, + "stopId": "U231" + }, + { + "id": "U2320Z1", + "name": "Kostelec n.Č.l.,Chaloupky", + "isMetro": false, + "latitude": 14.879091, + "longitude": 49.99229, + "stopId": "U2320" + }, + { + "id": "U2320Z2", + "name": "Kostelec n.Č.l.,Chaloupky", + "isMetro": false, + "latitude": 14.878781, + "longitude": 49.992702, + "stopId": "U2320" + }, + { + "id": "U2321Z1", + "name": "Rudná,Hewlett-Packard", + "isMetro": false, + "latitude": 14.200591, + "longitude": 50.017731, + "stopId": "U2321" + }, + { + "id": "U2321Z2", + "name": "Rudná,Hewlett-Packard", + "isMetro": false, + "latitude": 14.201919, + "longitude": 50.018478, + "stopId": "U2321" + }, + { + "id": "U2322Z1", + "name": "Rudná,Vypich", + "isMetro": false, + "latitude": 14.197795, + "longitude": 50.015926, + "stopId": "U2322" + }, + { + "id": "U2322Z2", + "name": "Rudná,Vypich", + "isMetro": false, + "latitude": 14.198199, + "longitude": 50.015732, + "stopId": "U2322" + }, + { + "id": "U2323Z1", + "name": "Rudná,Nerudova", + "isMetro": false, + "latitude": 14.226694, + "longitude": 50.032108, + "stopId": "U2323" + }, + { + "id": "U2323Z2", + "name": "Rudná,Nerudova", + "isMetro": false, + "latitude": 14.226076, + "longitude": 50.03178, + "stopId": "U2323" + }, + { + "id": "U2324Z1", + "name": "Rudná,V Brance", + "isMetro": false, + "latitude": 14.218173, + "longitude": 50.025009, + "stopId": "U2324" + }, + { + "id": "U2324Z2", + "name": "Rudná,V Brance", + "isMetro": false, + "latitude": 14.217648, + "longitude": 50.025188, + "stopId": "U2324" + }, + { + "id": "U2325Z1", + "name": "Klecany,Astrapark", + "isMetro": false, + "latitude": 14.424078, + "longitude": 50.18351, + "stopId": "U2325" + }, + { + "id": "U2327Z1", + "name": "Bašť,Měšická", + "isMetro": false, + "latitude": 14.484401, + "longitude": 50.202381, + "stopId": "U2327" + }, + { + "id": "U2327Z2", + "name": "Bašť,Měšická", + "isMetro": false, + "latitude": 14.48507, + "longitude": 50.202312, + "stopId": "U2327" + }, + { + "id": "U2328Z1", + "name": "Polerady", + "isMetro": false, + "latitude": 14.59481, + "longitude": 50.200603, + "stopId": "U2328" + }, + { + "id": "U2328Z2", + "name": "Polerady", + "isMetro": false, + "latitude": 14.596518, + "longitude": 50.200333, + "stopId": "U2328" + }, + { + "id": "U2328Z401", + "name": "Polerady", + "isMetro": false, + "latitude": 14.59481, + "longitude": 50.200603, + "stopId": "U2328" + }, + { + "id": "U2328Z402", + "name": "Polerady", + "isMetro": false, + "latitude": 14.596518, + "longitude": 50.200333, + "stopId": "U2328" + }, + { + "id": "U2329Z1", + "name": "Veleň,U Pomníku", + "isMetro": false, + "latitude": 14.556089, + "longitude": 50.174011, + "stopId": "U2329" + }, + { + "id": "U2329Z2", + "name": "Veleň,U Pomníku", + "isMetro": false, + "latitude": 14.556014, + "longitude": 50.174141, + "stopId": "U2329" + }, + { + "id": "U232Z1", + "name": "Kamenolom Zbraslav", + "isMetro": false, + "latitude": 14.394069, + "longitude": 49.959415, + "stopId": "U232" + }, + { + "id": "U232Z2", + "name": "Kamenolom Zbraslav", + "isMetro": false, + "latitude": 14.394467, + "longitude": 49.959934, + "stopId": "U232" + }, + { + "id": "U2330Z1", + "name": "Předboj", + "isMetro": false, + "latitude": 14.478324, + "longitude": 50.22599, + "stopId": "U2330" + }, + { + "id": "U2330Z2", + "name": "Předboj", + "isMetro": false, + "latitude": 14.477991, + "longitude": 50.226009, + "stopId": "U2330" + }, + { + "id": "U2331Z301", + "name": "Zlonín", + "isMetro": false, + "latitude": 14.507576, + "longitude": 50.214848, + "stopId": "U2331" + }, + { + "id": "U2334Z1", + "name": "Neratovice,Byškovice", + "isMetro": false, + "latitude": 14.494699, + "longitude": 50.25407, + "stopId": "U2334" + }, + { + "id": "U2334Z2", + "name": "Neratovice,Byškovice", + "isMetro": false, + "latitude": 14.494976, + "longitude": 50.254402, + "stopId": "U2334" + }, + { + "id": "U2335Z1", + "name": "Neratovice,U Vojtěcha", + "isMetro": false, + "latitude": 14.507351, + "longitude": 50.261356, + "stopId": "U2335" + }, + { + "id": "U2335Z2", + "name": "Neratovice,U Vojtěcha", + "isMetro": false, + "latitude": 14.507533, + "longitude": 50.261204, + "stopId": "U2335" + }, + { + "id": "U2336Z1", + "name": "Libiš,Ke Spolaně", + "isMetro": false, + "latitude": 14.511666, + "longitude": 50.265045, + "stopId": "U2336" + }, + { + "id": "U2336Z2", + "name": "Libiš,Ke Spolaně", + "isMetro": false, + "latitude": 14.511431, + "longitude": 50.264915, + "stopId": "U2336" + }, + { + "id": "U2337Z1", + "name": "Úžice", + "isMetro": false, + "latitude": 14.380639, + "longitude": 50.256073, + "stopId": "U2337" + }, + { + "id": "U2337Z2", + "name": "Úžice", + "isMetro": false, + "latitude": 14.380513, + "longitude": 50.255867, + "stopId": "U2337" + }, + { + "id": "U2337Z301", + "name": "Úžice", + "isMetro": false, + "latitude": 14.376445, + "longitude": 50.256447, + "stopId": "U2337" + }, + { + "id": "U2338Z1", + "name": "Úžice,Červená Lhota", + "isMetro": false, + "latitude": 14.390851, + "longitude": 50.263149, + "stopId": "U2338" + }, + { + "id": "U2338Z2", + "name": "Úžice,Červená Lhota", + "isMetro": false, + "latitude": 14.390783, + "longitude": 50.263176, + "stopId": "U2338" + }, + { + "id": "U2339Z1", + "name": "Dřínov,Stavadla", + "isMetro": false, + "latitude": 14.396481, + "longitude": 50.269997, + "stopId": "U2339" + }, + { + "id": "U2339Z2", + "name": "Dřínov,Stavadla", + "isMetro": false, + "latitude": 14.396383, + "longitude": 50.269917, + "stopId": "U2339" + }, + { + "id": "U233Z1", + "name": "Kamýcká", + "isMetro": false, + "latitude": 14.382749, + "longitude": 50.1306, + "stopId": "U233" + }, + { + "id": "U233Z2", + "name": "Kamýcká", + "isMetro": false, + "latitude": 14.3827, + "longitude": 50.1301, + "stopId": "U233" + }, + { + "id": "U233Z3", + "name": "Kamýcká", + "isMetro": false, + "latitude": 14.381755, + "longitude": 50.130684, + "stopId": "U233" + }, + { + "id": "U2340Z1", + "name": "Dřínov,U Rybníka", + "isMetro": false, + "latitude": 14.399411, + "longitude": 50.274265, + "stopId": "U2340" + }, + { + "id": "U2340Z2", + "name": "Dřínov,U Rybníka", + "isMetro": false, + "latitude": 14.399355, + "longitude": 50.274296, + "stopId": "U2340" + }, + { + "id": "U2341Z1", + "name": "Újezdec", + "isMetro": false, + "latitude": 14.419956, + "longitude": 50.281639, + "stopId": "U2341" + }, + { + "id": "U2341Z2", + "name": "Újezdec", + "isMetro": false, + "latitude": 14.419986, + "longitude": 50.281517, + "stopId": "U2341" + }, + { + "id": "U2342Z1", + "name": "Chlumín", + "isMetro": false, + "latitude": 14.449709, + "longitude": 50.288692, + "stopId": "U2342" + }, + { + "id": "U2342Z2", + "name": "Chlumín", + "isMetro": false, + "latitude": 14.44895, + "longitude": 50.289207, + "stopId": "U2342" + }, + { + "id": "U2343Z1", + "name": "Kojetice,Rozc.", + "isMetro": false, + "latitude": 14.494507, + "longitude": 50.236305, + "stopId": "U2343" + }, + { + "id": "U2343Z2", + "name": "Kojetice,Rozc.", + "isMetro": false, + "latitude": 14.494675, + "longitude": 50.236763, + "stopId": "U2343" + }, + { + "id": "U2345Z301", + "name": "Kojetice u Prahy", + "isMetro": false, + "latitude": 14.499127, + "longitude": 50.237259, + "stopId": "U2345" + }, + { + "id": "U2346Z1", + "name": "Veltrusy", + "isMetro": false, + "latitude": 14.32423, + "longitude": 50.271877, + "stopId": "U2346" + }, + { + "id": "U2346Z2", + "name": "Veltrusy", + "isMetro": false, + "latitude": 14.32448, + "longitude": 50.27203, + "stopId": "U2346" + }, + { + "id": "U2347Z1", + "name": "Klecany,Ahold", + "isMetro": false, + "latitude": 14.411507, + "longitude": 50.183727, + "stopId": "U2347" + }, + { + "id": "U2349Z1", + "name": "Čelákovice,Žel.st.", + "isMetro": false, + "latitude": 14.75334, + "longitude": 50.157707, + "stopId": "U2349" + }, + { + "id": "U2349Z2", + "name": "Čelákovice,Žel.st.", + "isMetro": false, + "latitude": 14.753729, + "longitude": 50.158218, + "stopId": "U2349" + }, + { + "id": "U2349Z301", + "name": "Čelákovice", + "isMetro": false, + "latitude": 14.754262, + "longitude": 50.157978, + "stopId": "U2349" + }, + { + "id": "U2349Z402", + "name": "Čelákovice,Žel.st.", + "isMetro": false, + "latitude": 14.753729, + "longitude": 50.158218, + "stopId": "U2349" + }, + { + "id": "U234Z1", + "name": "Karenova", + "isMetro": false, + "latitude": 14.368306, + "longitude": 50.063385, + "stopId": "U234" + }, + { + "id": "U2350Z1", + "name": "Čelákovice,Záluží,Cihelna", + "isMetro": false, + "latitude": 14.748391, + "longitude": 50.150082, + "stopId": "U2350" + }, + { + "id": "U2350Z2", + "name": "Čelákovice,Záluží,Cihelna", + "isMetro": false, + "latitude": 14.748585, + "longitude": 50.15023, + "stopId": "U2350" + }, + { + "id": "U2351Z1", + "name": "Čelákovice,Záluží", + "isMetro": false, + "latitude": 14.745326, + "longitude": 50.14402, + "stopId": "U2351" + }, + { + "id": "U2351Z2", + "name": "Čelákovice,Záluží", + "isMetro": false, + "latitude": 14.745695, + "longitude": 50.144371, + "stopId": "U2351" + }, + { + "id": "U2352Z1", + "name": "Nehvizdy,Nehvízdky", + "isMetro": false, + "latitude": 14.744259, + "longitude": 50.140274, + "stopId": "U2352" + }, + { + "id": "U2352Z2", + "name": "Nehvizdy,Nehvízdky", + "isMetro": false, + "latitude": 14.744403, + "longitude": 50.140289, + "stopId": "U2352" + }, + { + "id": "U2353Z1", + "name": "Nehvizdy", + "isMetro": false, + "latitude": 14.730192, + "longitude": 50.130798, + "stopId": "U2353" + }, + { + "id": "U2353Z2", + "name": "Nehvizdy", + "isMetro": false, + "latitude": 14.731057, + "longitude": 50.130726, + "stopId": "U2353" + }, + { + "id": "U2356Z1", + "name": "Úvaly,Pivovar", + "isMetro": false, + "latitude": 14.732627, + "longitude": 50.069992, + "stopId": "U2356" + }, + { + "id": "U2356Z2", + "name": "Úvaly,Pivovar", + "isMetro": false, + "latitude": 14.732695, + "longitude": 50.070518, + "stopId": "U2356" + }, + { + "id": "U2357Z1", + "name": "Beroun,Hostim", + "isMetro": false, + "latitude": 14.128929, + "longitude": 49.960316, + "stopId": "U2357" + }, + { + "id": "U2357Z2", + "name": "Beroun,Hostim", + "isMetro": false, + "latitude": 14.129203, + "longitude": 49.960308, + "stopId": "U2357" + }, + { + "id": "U2358Z1", + "name": "Úvaly,Slovany", + "isMetro": false, + "latitude": 14.735517, + "longitude": 50.066921, + "stopId": "U2358" + }, + { + "id": "U2358Z2", + "name": "Úvaly,Slovany", + "isMetro": false, + "latitude": 14.733921, + "longitude": 50.06834, + "stopId": "U2358" + }, + { + "id": "U2359Z1", + "name": "Mnichovice,U křížku", + "isMetro": false, + "latitude": 14.715601, + "longitude": 49.939072, + "stopId": "U2359" + }, + { + "id": "U2359Z2", + "name": "Mnichovice,U křížku", + "isMetro": false, + "latitude": 14.715341, + "longitude": 49.938942, + "stopId": "U2359" + }, + { + "id": "U2360Z1", + "name": "Mnichovice,bytovky", + "isMetro": false, + "latitude": 14.702085, + "longitude": 49.941418, + "stopId": "U2360" + }, + { + "id": "U2360Z2", + "name": "Mnichovice,bytovky", + "isMetro": false, + "latitude": 14.702105, + "longitude": 49.941662, + "stopId": "U2360" + }, + { + "id": "U2361Z1", + "name": "Mnichovice,Závěrka", + "isMetro": false, + "latitude": 14.717322, + "longitude": 49.929268, + "stopId": "U2361" + }, + { + "id": "U2361Z2", + "name": "Mnichovice,Závěrka", + "isMetro": false, + "latitude": 14.717535, + "longitude": 49.928989, + "stopId": "U2361" + }, + { + "id": "U2362Z2", + "name": "Brandýs n.L.-St.Bol.,U Hřbitova", + "isMetro": false, + "latitude": 14.679697, + "longitude": 50.199932, + "stopId": "U2362" + }, + { + "id": "U2363Z1", + "name": "Brandýs n.L.-St.Bol.,Proboštská jezera", + "isMetro": false, + "latitude": 14.663182, + "longitude": 50.206955, + "stopId": "U2363" + }, + { + "id": "U2363Z2", + "name": "Brandýs n.L.-St.Bol.,Proboštská jezera", + "isMetro": false, + "latitude": 14.663518, + "longitude": 50.206535, + "stopId": "U2363" + }, + { + "id": "U2366Z301", + "name": "Loděnice", + "isMetro": false, + "latitude": 14.163033, + "longitude": 49.992825, + "stopId": "U2366" + }, + { + "id": "U2368Z1", + "name": "Nučice,Rozc.Krahulov", + "isMetro": false, + "latitude": 14.195915, + "longitude": 50.009075, + "stopId": "U2368" + }, + { + "id": "U2368Z2", + "name": "Nučice,Rozc.Krahulov", + "isMetro": false, + "latitude": 14.19597, + "longitude": 50.008995, + "stopId": "U2368" + }, + { + "id": "U2369Z1", + "name": "Loděnice,pod lanovkou", + "isMetro": false, + "latitude": 14.165316, + "longitude": 50.000393, + "stopId": "U2369" + }, + { + "id": "U2369Z2", + "name": "Loděnice,pod lanovkou", + "isMetro": false, + "latitude": 14.164932, + "longitude": 50.000027, + "stopId": "U2369" + }, + { + "id": "U236Z1", + "name": "Slánská", + "isMetro": false, + "latitude": 14.309402, + "longitude": 50.064468, + "stopId": "U236" + }, + { + "id": "U236Z2", + "name": "Slánská", + "isMetro": false, + "latitude": 14.308531, + "longitude": 50.064552, + "stopId": "U236" + }, + { + "id": "U236Z3", + "name": "Slánská", + "isMetro": false, + "latitude": 14.308767, + "longitude": 50.064583, + "stopId": "U236" + }, + { + "id": "U236Z4", + "name": "Slánská", + "isMetro": false, + "latitude": 14.309183, + "longitude": 50.064335, + "stopId": "U236" + }, + { + "id": "U2370Z1", + "name": "Loděnice", + "isMetro": false, + "latitude": 14.157377, + "longitude": 49.994301, + "stopId": "U2370" + }, + { + "id": "U2370Z2", + "name": "Loděnice", + "isMetro": false, + "latitude": 14.156841, + "longitude": 49.993759, + "stopId": "U2370" + }, + { + "id": "U2371Z1", + "name": "Loděnice,Jánská,II", + "isMetro": false, + "latitude": 14.150813, + "longitude": 49.991379, + "stopId": "U2371" + }, + { + "id": "U2371Z2", + "name": "Loděnice,Jánská,II", + "isMetro": false, + "latitude": 14.151158, + "longitude": 49.991299, + "stopId": "U2371" + }, + { + "id": "U2372Z1", + "name": "Vráž,U Jelena", + "isMetro": false, + "latitude": 14.131555, + "longitude": 49.985508, + "stopId": "U2372" + }, + { + "id": "U2372Z2", + "name": "Vráž,U Jelena", + "isMetro": false, + "latitude": 14.131861, + "longitude": 49.985516, + "stopId": "U2372" + }, + { + "id": "U2373Z1", + "name": "Vráž,rozc.k žel.st.", + "isMetro": false, + "latitude": 14.124975, + "longitude": 49.982719, + "stopId": "U2373" + }, + { + "id": "U2373Z2", + "name": "Vráž,rozc.k žel.st.", + "isMetro": false, + "latitude": 14.125766, + "longitude": 49.982986, + "stopId": "U2373" + }, + { + "id": "U2373Z301", + "name": "Vráž u Berouna", + "isMetro": false, + "latitude": 14.123535, + "longitude": 49.9837, + "stopId": "U2373" + }, + { + "id": "U2374Z1", + "name": "Dvory,Veleliby,hlavní silnice", + "isMetro": false, + "latitude": 15.032582, + "longitude": 50.211918, + "stopId": "U2374" + }, + { + "id": "U2374Z2", + "name": "Dvory,Veleliby,hlavní silnice", + "isMetro": false, + "latitude": 15.032472, + "longitude": 50.211708, + "stopId": "U2374" + }, + { + "id": "U2376Z1", + "name": "Nová Ves p.Pleší,Včelník", + "isMetro": false, + "latitude": 14.279201, + "longitude": 49.84404, + "stopId": "U2376" + }, + { + "id": "U2376Z2", + "name": "Nová Ves p.Pleší,Včelník", + "isMetro": false, + "latitude": 14.27946, + "longitude": 49.844299, + "stopId": "U2376" + }, + { + "id": "U2377Z1", + "name": "Hlásná Třebaň,Rovina", + "isMetro": false, + "latitude": 14.227942, + "longitude": 49.923447, + "stopId": "U2377" + }, + { + "id": "U2378Z1", + "name": "Sudovo Hlavno,Rozc.k háj.", + "isMetro": false, + "latitude": 14.665103, + "longitude": 50.270741, + "stopId": "U2378" + }, + { + "id": "U2378Z2", + "name": "Sudovo Hlavno,Rozc.k háj.", + "isMetro": false, + "latitude": 14.665081, + "longitude": 50.270794, + "stopId": "U2378" + }, + { + "id": "U2379Z1", + "name": "Zápy,Stavby mostů", + "isMetro": false, + "latitude": 14.691664, + "longitude": 50.176872, + "stopId": "U2379" + }, + { + "id": "U2379Z2", + "name": "Zápy,Stavby mostů", + "isMetro": false, + "latitude": 14.691526, + "longitude": 50.177094, + "stopId": "U2379" + }, + { + "id": "U237Z1", + "name": "Karlovo náměstí", + "isMetro": false, + "latitude": 14.419109, + "longitude": 50.075302, + "stopId": "U237" + }, + { + "id": "U237Z10", + "name": "Karlovo náměstí", + "isMetro": false, + "latitude": 14.41882, + "longitude": 50.075005, + "stopId": "U237" + }, + { + "id": "U237Z101", + "name": "Karlovo náměstí", + "isMetro": true, + "latitude": 14.416855, + "longitude": 50.074664, + "stopId": "U237" + }, + { + "id": "U237Z102", + "name": "Karlovo náměstí", + "isMetro": true, + "latitude": 14.41707, + "longitude": 50.074534, + "stopId": "U237" + }, + { + "id": "U237Z13", + "name": "Novoměstská radnice", + "isMetro": false, + "latitude": 14.419522, + "longitude": 50.077457, + "stopId": "U237" + }, + { + "id": "U237Z2", + "name": "Karlovo náměstí", + "isMetro": false, + "latitude": 14.419256, + "longitude": 50.076477, + "stopId": "U237" + }, + { + "id": "U237Z22", + "name": "Václavská", + "isMetro": false, + "latitude": 14.417532, + "longitude": 50.074524, + "stopId": "U237" + }, + { + "id": "U237Z3", + "name": "Karlovo náměstí", + "isMetro": false, + "latitude": 14.419612, + "longitude": 50.075901, + "stopId": "U237" + }, + { + "id": "U237Z4", + "name": "Moráň", + "isMetro": false, + "latitude": 14.418731, + "longitude": 50.074024, + "stopId": "U237" + }, + { + "id": "U237Z5", + "name": "Palackého náměstí", + "isMetro": false, + "latitude": 14.415247, + "longitude": 50.073231, + "stopId": "U237" + }, + { + "id": "U237Z6", + "name": "Palackého náměstí", + "isMetro": false, + "latitude": 14.414325, + "longitude": 50.073277, + "stopId": "U237" + }, + { + "id": "U237Z7", + "name": "Palackého náměstí", + "isMetro": false, + "latitude": 14.414109, + "longitude": 50.072506, + "stopId": "U237" + }, + { + "id": "U237Z8", + "name": "Palackého náměstí", + "isMetro": false, + "latitude": 14.414102, + "longitude": 50.071945, + "stopId": "U237" + }, + { + "id": "U237Z9", + "name": "Karlovo náměstí", + "isMetro": false, + "latitude": 14.418857, + "longitude": 50.075169, + "stopId": "U237" + }, + { + "id": "U2380Z1", + "name": "Úvaly,Náměstí Arnošta z Pardubic", + "isMetro": false, + "latitude": 14.730288, + "longitude": 50.07373, + "stopId": "U2380" + }, + { + "id": "U2380Z2", + "name": "Úvaly,Náměstí Arnošta z Pardubic", + "isMetro": false, + "latitude": 14.729442, + "longitude": 50.073593, + "stopId": "U2380" + }, + { + "id": "U2381Z1", + "name": "Barchovice,Radlice,rozc.", + "isMetro": false, + "latitude": 14.953542, + "longitude": 49.94902, + "stopId": "U2381" + }, + { + "id": "U2381Z2", + "name": "Barchovice,Radlice,rozc.", + "isMetro": false, + "latitude": 14.953522, + "longitude": 49.94902, + "stopId": "U2381" + }, + { + "id": "U2382Z1", + "name": "Barchovice", + "isMetro": false, + "latitude": 14.969272, + "longitude": 49.94286, + "stopId": "U2382" + }, + { + "id": "U2383Z1", + "name": "Barchovice,Hryzely", + "isMetro": false, + "latitude": 14.982655, + "longitude": 49.935589, + "stopId": "U2383" + }, + { + "id": "U2383Z2", + "name": "Barchovice,Hryzely", + "isMetro": false, + "latitude": 14.982628, + "longitude": 49.935707, + "stopId": "U2383" + }, + { + "id": "U2384Z1", + "name": "Svojetice,K Tehovci", + "isMetro": false, + "latitude": 14.7349, + "longitude": 49.975998, + "stopId": "U2384" + }, + { + "id": "U2384Z2", + "name": "Svojetice,K Tehovci", + "isMetro": false, + "latitude": 14.735033, + "longitude": 49.975998, + "stopId": "U2384" + }, + { + "id": "U2385Z1", + "name": "Horní Kruty", + "isMetro": false, + "latitude": 14.959783, + "longitude": 49.919601, + "stopId": "U2385" + }, + { + "id": "U2385Z2", + "name": "Horní Kruty", + "isMetro": false, + "latitude": 14.959562, + "longitude": 49.919575, + "stopId": "U2385" + }, + { + "id": "U2386Z1", + "name": "Horní Kruty,Dolní Kruty", + "isMetro": false, + "latitude": 14.958322, + "longitude": 49.91481, + "stopId": "U2386" + }, + { + "id": "U2386Z2", + "name": "Horní Kruty,Dolní Kruty", + "isMetro": false, + "latitude": 14.958411, + "longitude": 49.914852, + "stopId": "U2386" + }, + { + "id": "U2387Z1", + "name": "Horní Kruty,Přestavlky", + "isMetro": false, + "latitude": 14.956942, + "longitude": 49.911289, + "stopId": "U2387" + }, + { + "id": "U2387Z2", + "name": "Horní Kruty,Přestavlky", + "isMetro": false, + "latitude": 14.956971, + "longitude": 49.911221, + "stopId": "U2387" + }, + { + "id": "U2388Z1", + "name": "Loděnice,Jánská,I", + "isMetro": false, + "latitude": 14.151347, + "longitude": 49.989445, + "stopId": "U2388" + }, + { + "id": "U2388Z2", + "name": "Loděnice,Jánská,I", + "isMetro": false, + "latitude": 14.151439, + "longitude": 49.989468, + "stopId": "U2388" + }, + { + "id": "U2389Z1", + "name": "Svatý Jan p.Skalou,Sedlec", + "isMetro": false, + "latitude": 14.135253, + "longitude": 49.978348, + "stopId": "U2389" + }, + { + "id": "U2389Z2", + "name": "Svatý Jan p.Skalou,Sedlec", + "isMetro": false, + "latitude": 14.135625, + "longitude": 49.97847, + "stopId": "U2389" + }, + { + "id": "U238Z1", + "name": "Karlštejnská", + "isMetro": false, + "latitude": 14.359582, + "longitude": 50.052639, + "stopId": "U238" + }, + { + "id": "U238Z2", + "name": "Karlštejnská", + "isMetro": false, + "latitude": 14.358517, + "longitude": 50.052647, + "stopId": "U238" + }, + { + "id": "U2390Z1", + "name": "Horní Kruty,Bohouňovice II", + "isMetro": false, + "latitude": 14.972232, + "longitude": 49.91449, + "stopId": "U2390" + }, + { + "id": "U2391Z1", + "name": "Svatý Jan p.Skalou,Svatý Jánek", + "isMetro": false, + "latitude": 14.135017, + "longitude": 49.973888, + "stopId": "U2391" + }, + { + "id": "U2391Z2", + "name": "Svatý Jan p.Skalou,Svatý Jánek", + "isMetro": false, + "latitude": 14.135124, + "longitude": 49.973873, + "stopId": "U2391" + }, + { + "id": "U2392Z1", + "name": "Ždánice,rozc.Běšínov", + "isMetro": false, + "latitude": 14.976501, + "longitude": 49.98254, + "stopId": "U2392" + }, + { + "id": "U2392Z2", + "name": "Ždánice,rozc.Běšínov", + "isMetro": false, + "latitude": 14.976582, + "longitude": 49.982601, + "stopId": "U2392" + }, + { + "id": "U2393Z1", + "name": "Svatý Jan p.Skalou", + "isMetro": false, + "latitude": 14.133294, + "longitude": 49.96875, + "stopId": "U2393" + }, + { + "id": "U2393Z2", + "name": "Svatý Jan p.Skalou", + "isMetro": false, + "latitude": 14.133337, + "longitude": 49.968697, + "stopId": "U2393" + }, + { + "id": "U2394Z1", + "name": "Barchovice,Radlice", + "isMetro": false, + "latitude": 14.945913, + "longitude": 49.934437, + "stopId": "U2394" + }, + { + "id": "U2395Z1", + "name": "Tismice,Limuzy", + "isMetro": false, + "latitude": 14.79022, + "longitude": 50.056911, + "stopId": "U2395" + }, + { + "id": "U2395Z2", + "name": "Tismice,Limuzy", + "isMetro": false, + "latitude": 14.7878, + "longitude": 50.056992, + "stopId": "U2395" + }, + { + "id": "U2397Z1", + "name": "Český Brod,Nem.", + "isMetro": false, + "latitude": 14.85277, + "longitude": 50.073307, + "stopId": "U2397" + }, + { + "id": "U2397Z2", + "name": "Český Brod,Nem.", + "isMetro": false, + "latitude": 14.851731, + "longitude": 50.073299, + "stopId": "U2397" + }, + { + "id": "U2398Z1", + "name": "Český Brod,Jungmannova", + "isMetro": false, + "latitude": 14.858255, + "longitude": 50.072243, + "stopId": "U2398" + }, + { + "id": "U2399Z1", + "name": "Český Brod,Kollárova", + "isMetro": false, + "latitude": 14.857802, + "longitude": 50.074936, + "stopId": "U2399" + }, + { + "id": "U239Z1", + "name": "Kateřinky", + "isMetro": false, + "latitude": 14.520267, + "longitude": 50.0205, + "stopId": "U239" + }, + { + "id": "U239Z2", + "name": "Kateřinky", + "isMetro": false, + "latitude": 14.520101, + "longitude": 50.020668, + "stopId": "U239" + }, + { + "id": "U23Z1", + "name": "Benkova", + "isMetro": false, + "latitude": 14.499097, + "longitude": 50.03793, + "stopId": "U23" + }, + { + "id": "U23Z2", + "name": "Benkova", + "isMetro": false, + "latitude": 14.499765, + "longitude": 50.037834, + "stopId": "U23" + }, + { + "id": "U2400Z1", + "name": "Český Brod,Muzeum", + "isMetro": false, + "latitude": 14.854095, + "longitude": 50.074596, + "stopId": "U2400" + }, + { + "id": "U2400Z2", + "name": "Český Brod,Muzeum", + "isMetro": false, + "latitude": 14.85349, + "longitude": 50.074795, + "stopId": "U2400" + }, + { + "id": "U2402Z1", + "name": "Český Brod,Štolmíř", + "isMetro": false, + "latitude": 14.84216, + "longitude": 50.085964, + "stopId": "U2402" + }, + { + "id": "U2402Z2", + "name": "Český Brod,Štolmíř", + "isMetro": false, + "latitude": 14.842031, + "longitude": 50.085926, + "stopId": "U2402" + }, + { + "id": "U2403Z1", + "name": "Český Brod,Zborovská", + "isMetro": false, + "latitude": 14.86368, + "longitude": 50.077499, + "stopId": "U2403" + }, + { + "id": "U2403Z2", + "name": "Český Brod,Zborovská", + "isMetro": false, + "latitude": 14.86429, + "longitude": 50.078239, + "stopId": "U2403" + }, + { + "id": "U2404Z1", + "name": "Český Brod,Liblice,Vodárna", + "isMetro": false, + "latitude": 14.876526, + "longitude": 50.078411, + "stopId": "U2404" + }, + { + "id": "U2404Z2", + "name": "Český Brod,Liblice,Vodárna", + "isMetro": false, + "latitude": 14.876767, + "longitude": 50.078415, + "stopId": "U2404" + }, + { + "id": "U2405Z1", + "name": "Český Brod,Liblice,SEŠ", + "isMetro": false, + "latitude": 14.880104, + "longitude": 50.075977, + "stopId": "U2405" + }, + { + "id": "U2405Z2", + "name": "Český Brod,Liblice,SEŠ", + "isMetro": false, + "latitude": 14.879732, + "longitude": 50.07658, + "stopId": "U2405" + }, + { + "id": "U2406Z1", + "name": "Český Brod,Liblice,Obec", + "isMetro": false, + "latitude": 14.883168, + "longitude": 50.074505, + "stopId": "U2406" + }, + { + "id": "U2406Z2", + "name": "Český Brod,Liblice,Obec", + "isMetro": false, + "latitude": 14.882415, + "longitude": 50.07486, + "stopId": "U2406" + }, + { + "id": "U2407Z1", + "name": "Klučov,Lstiboř", + "isMetro": false, + "latitude": 14.905358, + "longitude": 50.079288, + "stopId": "U2407" + }, + { + "id": "U2407Z2", + "name": "Klučov,Lstiboř", + "isMetro": false, + "latitude": 14.905441, + "longitude": 50.079391, + "stopId": "U2407" + }, + { + "id": "U2409Z1", + "name": "Chrášťany,Bylany,Škola", + "isMetro": false, + "latitude": 14.907522, + "longitude": 50.066925, + "stopId": "U2409" + }, + { + "id": "U2409Z2", + "name": "Chrášťany,Bylany,Škola", + "isMetro": false, + "latitude": 14.907413, + "longitude": 50.066563, + "stopId": "U2409" + }, + { + "id": "U240Z1", + "name": "Kavalírka", + "isMetro": false, + "latitude": 14.37063, + "longitude": 50.070042, + "stopId": "U240" + }, + { + "id": "U240Z2", + "name": "Kavalírka", + "isMetro": false, + "latitude": 14.371093, + "longitude": 50.070122, + "stopId": "U240" + }, + { + "id": "U240Z3", + "name": "Kavalírka", + "isMetro": false, + "latitude": 14.369226, + "longitude": 50.069267, + "stopId": "U240" + }, + { + "id": "U240Z4", + "name": "Kavalírka", + "isMetro": false, + "latitude": 14.371382, + "longitude": 50.069885, + "stopId": "U240" + }, + { + "id": "U240Z5", + "name": "Kavalírka", + "isMetro": false, + "latitude": 14.371168, + "longitude": 50.07019, + "stopId": "U240" + }, + { + "id": "U2410Z51", + "name": "Chrášťany", + "isMetro": false, + "latitude": 14.93066, + "longitude": 50.065212, + "stopId": "U2410" + }, + { + "id": "U2410Z52", + "name": "Chrášťany", + "isMetro": false, + "latitude": 14.931323, + "longitude": 50.065201, + "stopId": "U2410" + }, + { + "id": "U2411Z1", + "name": "Chrášťany,Chotouň", + "isMetro": false, + "latitude": 14.956467, + "longitude": 50.067162, + "stopId": "U2411" + }, + { + "id": "U2411Z2", + "name": "Chrášťany,Chotouň", + "isMetro": false, + "latitude": 14.95633, + "longitude": 50.067207, + "stopId": "U2411" + }, + { + "id": "U2414Z1", + "name": "Klučov,Skramníky", + "isMetro": false, + "latitude": 14.958264, + "longitude": 50.083603, + "stopId": "U2414" + }, + { + "id": "U2414Z2", + "name": "Klučov,Skramníky", + "isMetro": false, + "latitude": 14.958279, + "longitude": 50.083591, + "stopId": "U2414" + }, + { + "id": "U2415Z1", + "name": "Třebovle,Borek", + "isMetro": false, + "latitude": 14.945899, + "longitude": 50.031471, + "stopId": "U2415" + }, + { + "id": "U2415Z2", + "name": "Třebovle,Borek", + "isMetro": false, + "latitude": 14.945501, + "longitude": 50.031879, + "stopId": "U2415" + }, + { + "id": "U2416Z1", + "name": "Třebovle", + "isMetro": false, + "latitude": 14.955569, + "longitude": 50.025517, + "stopId": "U2416" + }, + { + "id": "U2416Z2", + "name": "Třebovle", + "isMetro": false, + "latitude": 14.955764, + "longitude": 50.025356, + "stopId": "U2416" + }, + { + "id": "U2417Z1", + "name": "Kouřim,rozc.Království", + "isMetro": false, + "latitude": 14.968227, + "longitude": 50.014599, + "stopId": "U2417" + }, + { + "id": "U2417Z2", + "name": "Kouřim,rozc.Království", + "isMetro": false, + "latitude": 14.968577, + "longitude": 50.014568, + "stopId": "U2417" + }, + { + "id": "U2418Z1", + "name": "Vitice,Lipany,Mohyla", + "isMetro": false, + "latitude": 14.939944, + "longitude": 50.033287, + "stopId": "U2418" + }, + { + "id": "U2418Z2", + "name": "Vitice,Lipany,Mohyla", + "isMetro": false, + "latitude": 14.94002, + "longitude": 50.033375, + "stopId": "U2418" + }, + { + "id": "U241Z1", + "name": "Kazanka", + "isMetro": false, + "latitude": 14.427502, + "longitude": 50.117378, + "stopId": "U241" + }, + { + "id": "U241Z2", + "name": "Kazanka", + "isMetro": false, + "latitude": 14.428578, + "longitude": 50.117207, + "stopId": "U241" + }, + { + "id": "U2420Z1", + "name": "Kounice", + "isMetro": false, + "latitude": 14.855642, + "longitude": 50.108196, + "stopId": "U2420" + }, + { + "id": "U2420Z2", + "name": "Kounice", + "isMetro": false, + "latitude": 14.855878, + "longitude": 50.108078, + "stopId": "U2420" + }, + { + "id": "U2421Z1", + "name": "Bříství", + "isMetro": false, + "latitude": 14.841655, + "longitude": 50.133999, + "stopId": "U2421" + }, + { + "id": "U2421Z2", + "name": "Bříství", + "isMetro": false, + "latitude": 14.84172, + "longitude": 50.134121, + "stopId": "U2421" + }, + { + "id": "U2422Z1", + "name": "Černíky", + "isMetro": false, + "latitude": 14.819654, + "longitude": 50.102345, + "stopId": "U2422" + }, + { + "id": "U2422Z2", + "name": "Černíky", + "isMetro": false, + "latitude": 14.819771, + "longitude": 50.102116, + "stopId": "U2422" + }, + { + "id": "U2423Z1", + "name": "Vykáň", + "isMetro": false, + "latitude": 14.81711, + "longitude": 50.120235, + "stopId": "U2423" + }, + { + "id": "U2423Z2", + "name": "Vykáň", + "isMetro": false, + "latitude": 14.816816, + "longitude": 50.119282, + "stopId": "U2423" + }, + { + "id": "U2424Z301", + "name": "Rostoklaty", + "isMetro": false, + "latitude": 14.805045, + "longitude": 50.078648, + "stopId": "U2424" + }, + { + "id": "U2427Z1", + "name": "Vyšehořovice,Vyšehořovičky", + "isMetro": false, + "latitude": 14.786297, + "longitude": 50.119205, + "stopId": "U2427" + }, + { + "id": "U2427Z2", + "name": "Vyšehořovice,Vyšehořovičky", + "isMetro": false, + "latitude": 14.786225, + "longitude": 50.119228, + "stopId": "U2427" + }, + { + "id": "U2428Z1", + "name": "Přerov n.L.,U Skanzenu", + "isMetro": false, + "latitude": 14.824889, + "longitude": 50.160412, + "stopId": "U2428" + }, + { + "id": "U2428Z2", + "name": "Přerov n.L.,U Skanzenu", + "isMetro": false, + "latitude": 14.82499, + "longitude": 50.160389, + "stopId": "U2428" + }, + { + "id": "U2429Z1", + "name": "Přerov n.L.,Nový Přerov", + "isMetro": false, + "latitude": 14.837113, + "longitude": 50.165855, + "stopId": "U2429" + }, + { + "id": "U2429Z2", + "name": "Přerov n.L.,Nový Přerov", + "isMetro": false, + "latitude": 14.837338, + "longitude": 50.165836, + "stopId": "U2429" + }, + { + "id": "U242Z3", + "name": "Kbelská", + "isMetro": false, + "latitude": 14.532469, + "longitude": 50.105045, + "stopId": "U242" + }, + { + "id": "U242Z4", + "name": "Kbelská", + "isMetro": false, + "latitude": 14.533304, + "longitude": 50.105499, + "stopId": "U242" + }, + { + "id": "U2431Z1", + "name": "Lysá n.L.,pošta", + "isMetro": false, + "latitude": 14.841342, + "longitude": 50.200474, + "stopId": "U2431" + }, + { + "id": "U2431Z2", + "name": "Lysá n.L.,pošta", + "isMetro": false, + "latitude": 14.841239, + "longitude": 50.200504, + "stopId": "U2431" + }, + { + "id": "U2432Z1", + "name": "Lysá n.L.,žel.st.", + "isMetro": false, + "latitude": 14.842516, + "longitude": 50.195827, + "stopId": "U2432" + }, + { + "id": "U2432Z2", + "name": "Lysá n.L.,žel.st.", + "isMetro": false, + "latitude": 14.841731, + "longitude": 50.195908, + "stopId": "U2432" + }, + { + "id": "U2432Z301", + "name": "Lysá nad Labem", + "isMetro": false, + "latitude": 14.84272, + "longitude": 50.195545, + "stopId": "U2432" + }, + { + "id": "U2433Z1", + "name": "Lysá n.L.,Litol,Dobrovského sady", + "isMetro": false, + "latitude": 14.852077, + "longitude": 50.184998, + "stopId": "U2433" + }, + { + "id": "U2433Z2", + "name": "Lysá n.L.,Litol,Dobrovského sady", + "isMetro": false, + "latitude": 14.852398, + "longitude": 50.185066, + "stopId": "U2433" + }, + { + "id": "U2434Z1", + "name": "Lysá n.L.,Litol,Boženy Němcové", + "isMetro": false, + "latitude": 14.848603, + "longitude": 50.191898, + "stopId": "U2434" + }, + { + "id": "U2434Z2", + "name": "Lysá n.L.,Litol,Boženy Němcové", + "isMetro": false, + "latitude": 14.849068, + "longitude": 50.192505, + "stopId": "U2434" + }, + { + "id": "U2435Z1", + "name": "Lysá n.L.,Litol,U Mostu", + "isMetro": false, + "latitude": 14.853442, + "longitude": 50.174889, + "stopId": "U2435" + }, + { + "id": "U2435Z2", + "name": "Lysá n.L.,Litol,U Mostu", + "isMetro": false, + "latitude": 14.853822, + "longitude": 50.174873, + "stopId": "U2435" + }, + { + "id": "U2436Z301", + "name": "Tatce", + "isMetro": false, + "latitude": 14.984759, + "longitude": 50.099445, + "stopId": "U2436" + }, + { + "id": "U243Z1", + "name": "Kbely", + "isMetro": false, + "latitude": 14.552934, + "longitude": 50.130882, + "stopId": "U243" + }, + { + "id": "U243Z15", + "name": "Kbely", + "isMetro": false, + "latitude": 14.550884, + "longitude": 50.129986, + "stopId": "U243" + }, + { + "id": "U243Z16", + "name": "Kbely", + "isMetro": false, + "latitude": 14.550984, + "longitude": 50.130367, + "stopId": "U243" + }, + { + "id": "U243Z2", + "name": "Kbely", + "isMetro": false, + "latitude": 14.55195, + "longitude": 50.130901, + "stopId": "U243" + }, + { + "id": "U243Z3", + "name": "Kbely", + "isMetro": false, + "latitude": 14.551034, + "longitude": 50.132286, + "stopId": "U243" + }, + { + "id": "U243Z4", + "name": "Kbely", + "isMetro": false, + "latitude": 14.550869, + "longitude": 50.131485, + "stopId": "U243" + }, + { + "id": "U243Z5", + "name": "Kbely", + "isMetro": false, + "latitude": 14.550884, + "longitude": 50.129986, + "stopId": "U243" + }, + { + "id": "U243Z6", + "name": "Kbely", + "isMetro": false, + "latitude": 14.550984, + "longitude": 50.130367, + "stopId": "U243" + }, + { + "id": "U2441Z1", + "name": "Čelákovice,U Hájku", + "isMetro": false, + "latitude": 14.766482, + "longitude": 50.164299, + "stopId": "U2441" + }, + { + "id": "U2441Z2", + "name": "Čelákovice,U Hájku", + "isMetro": false, + "latitude": 14.767097, + "longitude": 50.164528, + "stopId": "U2441" + }, + { + "id": "U2442Z1", + "name": "Čelákovice,Rozc.Sedlčánky", + "isMetro": false, + "latitude": 14.786699, + "longitude": 50.162582, + "stopId": "U2442" + }, + { + "id": "U2442Z2", + "name": "Čelákovice,Rozc.Sedlčánky", + "isMetro": false, + "latitude": 14.787183, + "longitude": 50.162586, + "stopId": "U2442" + }, + { + "id": "U2443Z1", + "name": "Přerov n.L.,Rozc.u obory", + "isMetro": false, + "latitude": 14.825304, + "longitude": 50.146492, + "stopId": "U2443" + }, + { + "id": "U2443Z2", + "name": "Přerov n.L.,Rozc.u obory", + "isMetro": false, + "latitude": 14.825912, + "longitude": 50.146793, + "stopId": "U2443" + }, + { + "id": "U2444Z1", + "name": "Kralupy n.Vlt.,hřbitov", + "isMetro": false, + "latitude": 14.31092, + "longitude": 50.23296, + "stopId": "U2444" + }, + { + "id": "U2444Z2", + "name": "Kralupy n.Vlt.,hřbitov", + "isMetro": false, + "latitude": 14.310789, + "longitude": 50.233238, + "stopId": "U2444" + }, + { + "id": "U2445Z1", + "name": "Lysá n.L.,sídl.", + "isMetro": false, + "latitude": 14.844717, + "longitude": 50.207932, + "stopId": "U2445" + }, + { + "id": "U2445Z2", + "name": "Lysá n.L.,sídl.", + "isMetro": false, + "latitude": 14.844535, + "longitude": 50.208084, + "stopId": "U2445" + }, + { + "id": "U2446Z1", + "name": "Čelákovice,Sedlčánky", + "isMetro": false, + "latitude": 14.787218, + "longitude": 50.167965, + "stopId": "U2446" + }, + { + "id": "U2447Z301", + "name": "Třebestovice", + "isMetro": false, + "latitude": 14.960772, + "longitude": 50.125668, + "stopId": "U2447" + }, + { + "id": "U244Z1", + "name": "Ke Kaménce", + "isMetro": false, + "latitude": 14.302417, + "longitude": 50.071518, + "stopId": "U244" + }, + { + "id": "U244Z2", + "name": "Ke Kaménce", + "isMetro": false, + "latitude": 14.302484, + "longitude": 50.071499, + "stopId": "U244" + }, + { + "id": "U2450Z1", + "name": "Bříství,Svárov", + "isMetro": false, + "latitude": 14.842321, + "longitude": 50.13063, + "stopId": "U2450" + }, + { + "id": "U2450Z2", + "name": "Bříství,Svárov", + "isMetro": false, + "latitude": 14.842511, + "longitude": 50.130482, + "stopId": "U2450" + }, + { + "id": "U2451Z1", + "name": "Jirny,Logistický park", + "isMetro": false, + "latitude": 14.690053, + "longitude": 50.125, + "stopId": "U2451" + }, + { + "id": "U2451Z2", + "name": "Jirny,Logistický park", + "isMetro": false, + "latitude": 14.689537, + "longitude": 50.125072, + "stopId": "U2451" + }, + { + "id": "U2452Z1", + "name": "Jirny,Rozc.", + "isMetro": false, + "latitude": 14.700369, + "longitude": 50.126526, + "stopId": "U2452" + }, + { + "id": "U2452Z2", + "name": "Jirny,Rozc.", + "isMetro": false, + "latitude": 14.697358, + "longitude": 50.126209, + "stopId": "U2452" + }, + { + "id": "U2454Z1", + "name": "Rakovník,Lišanská", + "isMetro": false, + "latitude": 13.733991, + "longitude": 50.109455, + "stopId": "U2454" + }, + { + "id": "U2454Z2", + "name": "Rakovník,Lišanská", + "isMetro": false, + "latitude": 13.734176, + "longitude": 50.10947, + "stopId": "U2454" + }, + { + "id": "U2456Z1", + "name": "Říčany,Pacov,Horní Pacov", + "isMetro": false, + "latitude": 14.682344, + "longitude": 50.013454, + "stopId": "U2456" + }, + { + "id": "U2457Z1", + "name": "Zápy,Tesco Brandýs n.L.", + "isMetro": false, + "latitude": 14.6696, + "longitude": 50.176567, + "stopId": "U2457" + }, + { + "id": "U2457Z2", + "name": "Zápy,Tesco Brandýs n.L.", + "isMetro": false, + "latitude": 14.670883, + "longitude": 50.176716, + "stopId": "U2457" + }, + { + "id": "U2458Z1", + "name": "Choťánky,Vystrkov", + "isMetro": false, + "latitude": 15.154806, + "longitude": 50.143635, + "stopId": "U2458" + }, + { + "id": "U2458Z2", + "name": "Choťánky,Vystrkov", + "isMetro": false, + "latitude": 15.154813, + "longitude": 50.143772, + "stopId": "U2458" + }, + { + "id": "U2459Z1", + "name": "Choťánky,Vrčení", + "isMetro": false, + "latitude": 15.168188, + "longitude": 50.14439, + "stopId": "U2459" + }, + { + "id": "U2459Z2", + "name": "Choťánky,Vrčení", + "isMetro": false, + "latitude": 15.168128, + "longitude": 50.144527, + "stopId": "U2459" + }, + { + "id": "U245Z1", + "name": "Branické náměstí", + "isMetro": false, + "latitude": 14.414066, + "longitude": 50.034725, + "stopId": "U245" + }, + { + "id": "U245Z2", + "name": "Branické náměstí", + "isMetro": false, + "latitude": 14.414694, + "longitude": 50.034576, + "stopId": "U245" + }, + { + "id": "U2460Z1", + "name": "Vlkov p.Oškobrhem", + "isMetro": false, + "latitude": 15.223223, + "longitude": 50.154888, + "stopId": "U2460" + }, + { + "id": "U2460Z2", + "name": "Vlkov p.Oškobrhem", + "isMetro": false, + "latitude": 15.222514, + "longitude": 50.15485, + "stopId": "U2460" + }, + { + "id": "U2461Z1", + "name": "Husinec,Samota", + "isMetro": false, + "latitude": 14.391334, + "longitude": 50.179291, + "stopId": "U2461" + }, + { + "id": "U2461Z2", + "name": "Husinec,Samota", + "isMetro": false, + "latitude": 14.391069, + "longitude": 50.179184, + "stopId": "U2461" + }, + { + "id": "U2462Z1", + "name": "Klíčany,Břežanská", + "isMetro": false, + "latitude": 14.436604, + "longitude": 50.207108, + "stopId": "U2462" + }, + { + "id": "U2462Z2", + "name": "Klíčany,Břežanská", + "isMetro": false, + "latitude": 14.436383, + "longitude": 50.207729, + "stopId": "U2462" + }, + { + "id": "U2463Z1", + "name": "Milovice,Park Mirakulum", + "isMetro": false, + "latitude": 14.861051, + "longitude": 50.236862, + "stopId": "U2463" + }, + { + "id": "U2463Z2", + "name": "Milovice,Park Mirakulum", + "isMetro": false, + "latitude": 14.860869, + "longitude": 50.236691, + "stopId": "U2463" + }, + { + "id": "U2464Z1", + "name": "Milovice,Benátecká Vrutice,Armádní", + "isMetro": false, + "latitude": 14.843715, + "longitude": 50.231915, + "stopId": "U2464" + }, + { + "id": "U2464Z2", + "name": "Milovice,Benátecká Vrutice,Armádní", + "isMetro": false, + "latitude": 14.843266, + "longitude": 50.232002, + "stopId": "U2464" + }, + { + "id": "U2465Z51", + "name": "Milovice,Letecká", + "isMetro": false, + "latitude": 14.887997, + "longitude": 50.231518, + "stopId": "U2465" + }, + { + "id": "U2465Z52", + "name": "Milovice,Letecká", + "isMetro": false, + "latitude": 14.88807, + "longitude": 50.231617, + "stopId": "U2465" + }, + { + "id": "U2466Z1", + "name": "Milovice,Třešňová", + "isMetro": false, + "latitude": 14.896092, + "longitude": 50.224213, + "stopId": "U2466" + }, + { + "id": "U2466Z2", + "name": "Milovice,Třešňová", + "isMetro": false, + "latitude": 14.896064, + "longitude": 50.224438, + "stopId": "U2466" + }, + { + "id": "U2467Z1", + "name": "Milovice,Boží Dar", + "isMetro": false, + "latitude": 14.917953, + "longitude": 50.247993, + "stopId": "U2467" + }, + { + "id": "U2468Z1", + "name": "Zbožíčko", + "isMetro": false, + "latitude": 14.937736, + "longitude": 50.226582, + "stopId": "U2468" + }, + { + "id": "U2468Z2", + "name": "Zbožíčko", + "isMetro": false, + "latitude": 14.938002, + "longitude": 50.226688, + "stopId": "U2468" + }, + { + "id": "U2469Z1", + "name": "Straky", + "isMetro": false, + "latitude": 14.960026, + "longitude": 50.233452, + "stopId": "U2469" + }, + { + "id": "U2469Z2", + "name": "Straky", + "isMetro": false, + "latitude": 14.959633, + "longitude": 50.23333, + "stopId": "U2469" + }, + { + "id": "U246Z1", + "name": "Ke Schodům", + "isMetro": false, + "latitude": 14.415817, + "longitude": 50.014183, + "stopId": "U246" + }, + { + "id": "U2470Z1", + "name": "Lysá n.L.,Předměstí", + "isMetro": false, + "latitude": 14.829065, + "longitude": 50.201382, + "stopId": "U2470" + }, + { + "id": "U2470Z2", + "name": "Lysá n.L.,Předměstí", + "isMetro": false, + "latitude": 14.82887, + "longitude": 50.20121, + "stopId": "U2470" + }, + { + "id": "U2471Z1", + "name": "Jenštejn,Hradní", + "isMetro": false, + "latitude": 14.61903, + "longitude": 50.149559, + "stopId": "U2471" + }, + { + "id": "U2471Z2", + "name": "Jenštejn,Hradní", + "isMetro": false, + "latitude": 14.618509, + "longitude": 50.150108, + "stopId": "U2471" + }, + { + "id": "U2472Z1", + "name": "Lysá n.L.,Odbočka Dvorce", + "isMetro": false, + "latitude": 14.806836, + "longitude": 50.208611, + "stopId": "U2472" + }, + { + "id": "U2472Z2", + "name": "Lysá n.L.,Odbočka Dvorce", + "isMetro": false, + "latitude": 14.806571, + "longitude": 50.20853, + "stopId": "U2472" + }, + { + "id": "U2473Z1", + "name": "Stará Lysá", + "isMetro": false, + "latitude": 14.80338, + "longitude": 50.221405, + "stopId": "U2473" + }, + { + "id": "U2473Z2", + "name": "Stará Lysá", + "isMetro": false, + "latitude": 14.803085, + "longitude": 50.221497, + "stopId": "U2473" + }, + { + "id": "U2474Z1", + "name": "Stará Lysá,Hostinec", + "isMetro": false, + "latitude": 14.800628, + "longitude": 50.225166, + "stopId": "U2474" + }, + { + "id": "U2474Z2", + "name": "Stará Lysá,Hostinec", + "isMetro": false, + "latitude": 14.800666, + "longitude": 50.224949, + "stopId": "U2474" + }, + { + "id": "U2475Z1", + "name": "Stará Lysá,Čihadla", + "isMetro": false, + "latitude": 14.787634, + "longitude": 50.239136, + "stopId": "U2475" + }, + { + "id": "U2475Z2", + "name": "Stará Lysá,Čihadla", + "isMetro": false, + "latitude": 14.787748, + "longitude": 50.238972, + "stopId": "U2475" + }, + { + "id": "U2476Z1", + "name": "Jiřice", + "isMetro": false, + "latitude": 14.833413, + "longitude": 50.252182, + "stopId": "U2476" + }, + { + "id": "U2476Z2", + "name": "Jiřice", + "isMetro": false, + "latitude": 14.833104, + "longitude": 50.252182, + "stopId": "U2476" + }, + { + "id": "U2477Z1", + "name": "Kutná Hora,Žižkov,poliklinika", + "isMetro": false, + "latitude": 15.251742, + "longitude": 49.946835, + "stopId": "U2477" + }, + { + "id": "U2478Z1", + "name": "Kutná Hora,Žižkov,Kouřimská", + "isMetro": false, + "latitude": 15.257548, + "longitude": 49.947701, + "stopId": "U2478" + }, + { + "id": "U2478Z2", + "name": "Kutná Hora,Žižkov,Kouřimská", + "isMetro": false, + "latitude": 15.257366, + "longitude": 49.947788, + "stopId": "U2478" + }, + { + "id": "U2479Z1", + "name": "Kutná Hora,Žižkov,Na Valech", + "isMetro": false, + "latitude": 15.261486, + "longitude": 49.950287, + "stopId": "U2479" + }, + { + "id": "U2479Z2", + "name": "Kutná Hora,Žižkov,Na Valech", + "isMetro": false, + "latitude": 15.261203, + "longitude": 49.95023, + "stopId": "U2479" + }, + { + "id": "U247Z1", + "name": "Ke Smrčině", + "isMetro": false, + "latitude": 14.525164, + "longitude": 50.017685, + "stopId": "U247" + }, + { + "id": "U247Z2", + "name": "Ke Smrčině", + "isMetro": false, + "latitude": 14.525218, + "longitude": 50.017868, + "stopId": "U247" + }, + { + "id": "U2480Z13", + "name": "Kutná Hora,aut.st.", + "isMetro": false, + "latitude": 15.271346, + "longitude": 49.954475, + "stopId": "U2480" + }, + { + "id": "U2480Z3", + "name": "Kutná Hora,aut.st.", + "isMetro": false, + "latitude": 15.271976, + "longitude": 49.954319, + "stopId": "U2480" + }, + { + "id": "U2480Z7", + "name": "Kutná Hora,aut.st.", + "isMetro": false, + "latitude": 15.272014, + "longitude": 49.954578, + "stopId": "U2480" + }, + { + "id": "U2480Z8", + "name": "Kutná Hora,aut.st.", + "isMetro": false, + "latitude": 15.27176, + "longitude": 49.954796, + "stopId": "U2480" + }, + { + "id": "U2480Z9", + "name": "Kutná Hora,aut.st.", + "isMetro": false, + "latitude": 15.272112, + "longitude": 49.954624, + "stopId": "U2480" + }, + { + "id": "U2481Z1", + "name": "Kutná Hora,Hlouška,Tylovo divadlo", + "isMetro": false, + "latitude": 15.275905, + "longitude": 49.952847, + "stopId": "U2481" + }, + { + "id": "U2481Z2", + "name": "Kutná Hora,Hlouška,Tylovo divadlo", + "isMetro": false, + "latitude": 15.274768, + "longitude": 49.951988, + "stopId": "U2481" + }, + { + "id": "U2482Z1", + "name": "Kutná Hora,Hlouška,Na Špici", + "isMetro": false, + "latitude": 15.280305, + "longitude": 49.956917, + "stopId": "U2482" + }, + { + "id": "U2482Z2", + "name": "Kutná Hora,Hlouška,Na Špici", + "isMetro": false, + "latitude": 15.28002, + "longitude": 49.956856, + "stopId": "U2482" + }, + { + "id": "U2483Z1", + "name": "Opočnice,rozc.Hradčany", + "isMetro": false, + "latitude": 15.259521, + "longitude": 50.165249, + "stopId": "U2483" + }, + { + "id": "U2483Z2", + "name": "Opočnice,rozc.Hradčany", + "isMetro": false, + "latitude": 15.259045, + "longitude": 50.165287, + "stopId": "U2483" + }, + { + "id": "U2484Z1", + "name": "Opočnice", + "isMetro": false, + "latitude": 15.257729, + "longitude": 50.172085, + "stopId": "U2484" + }, + { + "id": "U2484Z2", + "name": "Opočnice", + "isMetro": false, + "latitude": 15.25759, + "longitude": 50.172085, + "stopId": "U2484" + }, + { + "id": "U2486Z1", + "name": "Opočnice,jídelna", + "isMetro": false, + "latitude": 15.259523, + "longitude": 50.175743, + "stopId": "U2486" + }, + { + "id": "U2486Z2", + "name": "Opočnice,jídelna", + "isMetro": false, + "latitude": 15.259118, + "longitude": 50.175903, + "stopId": "U2486" + }, + { + "id": "U2487Z1", + "name": "Rabyně,Loutí", + "isMetro": false, + "latitude": 14.457582, + "longitude": 49.799896, + "stopId": "U2487" + }, + { + "id": "U2487Z2", + "name": "Rabyně,Loutí", + "isMetro": false, + "latitude": 14.457359, + "longitude": 49.800026, + "stopId": "U2487" + }, + { + "id": "U2488Z1", + "name": "Rabyně,Stromeč", + "isMetro": false, + "latitude": 14.440679, + "longitude": 49.799797, + "stopId": "U2488" + }, + { + "id": "U2488Z2", + "name": "Rabyně,Stromeč", + "isMetro": false, + "latitude": 14.443657, + "longitude": 49.800179, + "stopId": "U2488" + }, + { + "id": "U2489Z1", + "name": "Davle,U Kiliána", + "isMetro": false, + "latitude": 14.38903, + "longitude": 49.879803, + "stopId": "U2489" + }, + { + "id": "U2489Z2", + "name": "Davle,U Kiliána", + "isMetro": false, + "latitude": 14.389181, + "longitude": 49.87978, + "stopId": "U2489" + }, + { + "id": "U248Z1", + "name": "Koupaliště Čakovice", + "isMetro": false, + "latitude": 14.525069, + "longitude": 50.147575, + "stopId": "U248" + }, + { + "id": "U248Z2", + "name": "Koupaliště Čakovice", + "isMetro": false, + "latitude": 14.524817, + "longitude": 50.147701, + "stopId": "U248" + }, + { + "id": "U2490Z1", + "name": "Štěchovice", + "isMetro": false, + "latitude": 14.40625, + "longitude": 49.851692, + "stopId": "U2490" + }, + { + "id": "U2490Z2", + "name": "Štěchovice", + "isMetro": false, + "latitude": 14.40636, + "longitude": 49.851868, + "stopId": "U2490" + }, + { + "id": "U2491Z1", + "name": "Štěchovice,Nad Horou", + "isMetro": false, + "latitude": 14.403189, + "longitude": 49.849834, + "stopId": "U2491" + }, + { + "id": "U2491Z2", + "name": "Štěchovice,Nad Horou", + "isMetro": false, + "latitude": 14.403028, + "longitude": 49.849724, + "stopId": "U2491" + }, + { + "id": "U2492Z1", + "name": "Štěchovice,Masečín,Chrástky", + "isMetro": false, + "latitude": 14.388062, + "longitude": 49.853394, + "stopId": "U2492" + }, + { + "id": "U2492Z2", + "name": "Štěchovice,Masečín,Chrástky", + "isMetro": false, + "latitude": 14.387728, + "longitude": 49.853436, + "stopId": "U2492" + }, + { + "id": "U2493Z1", + "name": "Štěchovice,Masečín", + "isMetro": false, + "latitude": 14.381076, + "longitude": 49.850719, + "stopId": "U2493" + }, + { + "id": "U2493Z2", + "name": "Štěchovice,Masečín", + "isMetro": false, + "latitude": 14.38118, + "longitude": 49.85078, + "stopId": "U2493" + }, + { + "id": "U2495Z11", + "name": "Hradištko,Brunšov", + "isMetro": false, + "latitude": 14.40204, + "longitude": 49.856422, + "stopId": "U2495" + }, + { + "id": "U2496Z1", + "name": "Hradištko,Rajchardov", + "isMetro": false, + "latitude": 14.406637, + "longitude": 49.862247, + "stopId": "U2496" + }, + { + "id": "U2496Z2", + "name": "Hradištko,Rajchardov", + "isMetro": false, + "latitude": 14.406075, + "longitude": 49.861671, + "stopId": "U2496" + }, + { + "id": "U2497Z1", + "name": "Hradištko,U Rybníčku", + "isMetro": false, + "latitude": 14.411419, + "longitude": 49.864754, + "stopId": "U2497" + }, + { + "id": "U2497Z2", + "name": "Hradištko,U Rybníčku", + "isMetro": false, + "latitude": 14.410878, + "longitude": 49.864838, + "stopId": "U2497" + }, + { + "id": "U2497Z3", + "name": "Hradištko,U Rybníčku", + "isMetro": false, + "latitude": 14.410769, + "longitude": 49.865257, + "stopId": "U2497" + }, + { + "id": "U2498Z1", + "name": "Hradištko,Zámek", + "isMetro": false, + "latitude": 14.409101, + "longitude": 49.867748, + "stopId": "U2498" + }, + { + "id": "U2498Z2", + "name": "Hradištko,Zámek", + "isMetro": false, + "latitude": 14.41069, + "longitude": 49.867649, + "stopId": "U2498" + }, + { + "id": "U2499Z1", + "name": "Hradištko,Osada", + "isMetro": false, + "latitude": 14.420656, + "longitude": 49.868362, + "stopId": "U2499" + }, + { + "id": "U2499Z2", + "name": "Hradištko,Osada", + "isMetro": false, + "latitude": 14.420748, + "longitude": 49.86842, + "stopId": "U2499" + }, + { + "id": "U249Z1", + "name": "Ke Stírce", + "isMetro": false, + "latitude": 14.455868, + "longitude": 50.122673, + "stopId": "U249" + }, + { + "id": "U249Z2", + "name": "Ke Stírce", + "isMetro": false, + "latitude": 14.456153, + "longitude": 50.122986, + "stopId": "U249" + }, + { + "id": "U24Z1", + "name": "Na Beránku", + "isMetro": false, + "latitude": 14.428676, + "longitude": 49.997589, + "stopId": "U24" + }, + { + "id": "U24Z2", + "name": "Na Beránku", + "isMetro": false, + "latitude": 14.42951, + "longitude": 49.997833, + "stopId": "U24" + }, + { + "id": "U2500Z1", + "name": "Hradištko,Pikovice,Obec", + "isMetro": false, + "latitude": 14.427097, + "longitude": 49.874729, + "stopId": "U2500" + }, + { + "id": "U2500Z2", + "name": "Hradištko,Pikovice,Obec", + "isMetro": false, + "latitude": 14.427052, + "longitude": 49.874699, + "stopId": "U2500" + }, + { + "id": "U2501Z1", + "name": "Hradištko,Pikovice,Most", + "isMetro": false, + "latitude": 14.427395, + "longitude": 49.877052, + "stopId": "U2501" + }, + { + "id": "U2502Z1", + "name": "Krňany,Závist", + "isMetro": false, + "latitude": 14.439331, + "longitude": 49.857792, + "stopId": "U2502" + }, + { + "id": "U2502Z2", + "name": "Krňany,Závist", + "isMetro": false, + "latitude": 14.439148, + "longitude": 49.857899, + "stopId": "U2502" + }, + { + "id": "U2503Z1", + "name": "Krňany,U Křížku", + "isMetro": false, + "latitude": 14.444329, + "longitude": 49.856953, + "stopId": "U2503" + }, + { + "id": "U2503Z2", + "name": "Krňany,U Křížku", + "isMetro": false, + "latitude": 14.444395, + "longitude": 49.857021, + "stopId": "U2503" + }, + { + "id": "U2504Z1", + "name": "Krňany,Rozc.Třebsín", + "isMetro": false, + "latitude": 14.456565, + "longitude": 49.852482, + "stopId": "U2504" + }, + { + "id": "U2504Z2", + "name": "Krňany,Rozc.Třebsín", + "isMetro": false, + "latitude": 14.456278, + "longitude": 49.852505, + "stopId": "U2504" + }, + { + "id": "U2505Z1", + "name": "Krňany,Bytovky", + "isMetro": false, + "latitude": 14.477, + "longitude": 49.845345, + "stopId": "U2505" + }, + { + "id": "U2505Z2", + "name": "Krňany,Bytovky", + "isMetro": false, + "latitude": 14.477022, + "longitude": 49.845417, + "stopId": "U2505" + }, + { + "id": "U2506Z1", + "name": "Krňany,Obec", + "isMetro": false, + "latitude": 14.475025, + "longitude": 49.8424, + "stopId": "U2506" + }, + { + "id": "U2506Z2", + "name": "Krňany,Obec", + "isMetro": false, + "latitude": 14.47524, + "longitude": 49.842422, + "stopId": "U2506" + }, + { + "id": "U2507Z1", + "name": "Krňany,Slapnice", + "isMetro": false, + "latitude": 14.471363, + "longitude": 49.839588, + "stopId": "U2507" + }, + { + "id": "U2507Z2", + "name": "Krňany,Slapnice", + "isMetro": false, + "latitude": 14.471481, + "longitude": 49.839664, + "stopId": "U2507" + }, + { + "id": "U2508Z1", + "name": "Krňany,Teletín", + "isMetro": false, + "latitude": 14.46823, + "longitude": 49.827187, + "stopId": "U2508" + }, + { + "id": "U2508Z2", + "name": "Krňany,Teletín", + "isMetro": false, + "latitude": 14.468264, + "longitude": 49.827168, + "stopId": "U2508" + }, + { + "id": "U2509Z1", + "name": "Vysoký Újezd", + "isMetro": false, + "latitude": 14.476589, + "longitude": 49.813107, + "stopId": "U2509" + }, + { + "id": "U2509Z2", + "name": "Vysoký Újezd", + "isMetro": false, + "latitude": 14.476516, + "longitude": 49.813229, + "stopId": "U2509" + }, + { + "id": "U2510Z1", + "name": "Netvořice,Pošta", + "isMetro": false, + "latitude": 14.517632, + "longitude": 49.816948, + "stopId": "U2510" + }, + { + "id": "U2510Z2", + "name": "Netvořice,Pošta", + "isMetro": false, + "latitude": 14.517268, + "longitude": 49.817142, + "stopId": "U2510" + }, + { + "id": "U2510Z3", + "name": "Netvořice", + "isMetro": false, + "latitude": 14.518274, + "longitude": 49.816563, + "stopId": "U2510" + }, + { + "id": "U2510Z4", + "name": "Netvořice", + "isMetro": false, + "latitude": 14.518039, + "longitude": 49.816551, + "stopId": "U2510" + }, + { + "id": "U2511Z1", + "name": "Netvořice,Lhota,Rozc.", + "isMetro": false, + "latitude": 14.487874, + "longitude": 49.812756, + "stopId": "U2511" + }, + { + "id": "U2511Z2", + "name": "Netvořice,Lhota,Rozc.", + "isMetro": false, + "latitude": 14.487789, + "longitude": 49.812778, + "stopId": "U2511" + }, + { + "id": "U2512Z1", + "name": "Hradištko,Pikovice,Pod Medníkem", + "isMetro": false, + "latitude": 14.431869, + "longitude": 49.873325, + "stopId": "U2512" + }, + { + "id": "U2512Z2", + "name": "Hradištko,Pikovice,Pod Medníkem", + "isMetro": false, + "latitude": 14.432813, + "longitude": 49.873333, + "stopId": "U2512" + }, + { + "id": "U2513Z301", + "name": "Dolní Břežany-Jarov", + "isMetro": false, + "latitude": 14.397078, + "longitude": 49.946999, + "stopId": "U2513" + }, + { + "id": "U2514Z301", + "name": "Skochovice", + "isMetro": false, + "latitude": 14.376194, + "longitude": 49.924664, + "stopId": "U2514" + }, + { + "id": "U2515Z1", + "name": "Slapy,Na Polesí", + "isMetro": false, + "latitude": 14.385922, + "longitude": 49.820492, + "stopId": "U2515" + }, + { + "id": "U2515Z2", + "name": "Slapy,Na Polesí", + "isMetro": false, + "latitude": 14.385984, + "longitude": 49.820866, + "stopId": "U2515" + }, + { + "id": "U2515Z3", + "name": "Slapy,Na Polesí", + "isMetro": false, + "latitude": 14.38551, + "longitude": 49.820568, + "stopId": "U2515" + }, + { + "id": "U2515Z4", + "name": "Slapy,Na Polesí", + "isMetro": false, + "latitude": 14.385629, + "longitude": 49.820557, + "stopId": "U2515" + }, + { + "id": "U2516Z1", + "name": "Slapy,Motorest", + "isMetro": false, + "latitude": 14.394657, + "longitude": 49.816883, + "stopId": "U2516" + }, + { + "id": "U2516Z2", + "name": "Slapy,Motorest", + "isMetro": false, + "latitude": 14.394765, + "longitude": 49.817081, + "stopId": "U2516" + }, + { + "id": "U2516Z3", + "name": "Slapy,Motorest", + "isMetro": false, + "latitude": 14.39576, + "longitude": 49.816643, + "stopId": "U2516" + }, + { + "id": "U2516Z4", + "name": "Slapy,Motorest", + "isMetro": false, + "latitude": 14.395587, + "longitude": 49.816772, + "stopId": "U2516" + }, + { + "id": "U2518Z301", + "name": "Vrané nad Vltavou", + "isMetro": false, + "latitude": 14.381165, + "longitude": 49.938549, + "stopId": "U2518" + }, + { + "id": "U2519Z1", + "name": "Slapy,Na Rovínku", + "isMetro": false, + "latitude": 14.406391, + "longitude": 49.819576, + "stopId": "U2519" + }, + { + "id": "U2519Z2", + "name": "Slapy,Na Rovínku", + "isMetro": false, + "latitude": 14.406352, + "longitude": 49.819614, + "stopId": "U2519" + }, + { + "id": "U251Z1", + "name": "Kelerka", + "isMetro": false, + "latitude": 14.490201, + "longitude": 50.115318, + "stopId": "U251" + }, + { + "id": "U251Z2", + "name": "Kelerka", + "isMetro": false, + "latitude": 14.488866, + "longitude": 50.115124, + "stopId": "U251" + }, + { + "id": "U2520Z1", + "name": "Štěchovice,Třebenice", + "isMetro": false, + "latitude": 14.43978, + "longitude": 49.824833, + "stopId": "U2520" + }, + { + "id": "U2521Z1", + "name": "Rabyně,Hl.přístav", + "isMetro": false, + "latitude": 14.43214, + "longitude": 49.822758, + "stopId": "U2521" + }, + { + "id": "U2521Z2", + "name": "Rabyně,Hl.přístav", + "isMetro": false, + "latitude": 14.431943, + "longitude": 49.822697, + "stopId": "U2521" + }, + { + "id": "U2522Z1", + "name": "Rabyně,Nová Rabyně", + "isMetro": false, + "latitude": 14.429443, + "longitude": 49.810184, + "stopId": "U2522" + }, + { + "id": "U2522Z2", + "name": "Rabyně,Nová Rabyně", + "isMetro": false, + "latitude": 14.429532, + "longitude": 49.810387, + "stopId": "U2522" + }, + { + "id": "U2523Z1", + "name": "Slapy,Jednota", + "isMetro": false, + "latitude": 14.3984, + "longitude": 49.812775, + "stopId": "U2523" + }, + { + "id": "U2523Z2", + "name": "Slapy,Jednota", + "isMetro": false, + "latitude": 14.398665, + "longitude": 49.812702, + "stopId": "U2523" + }, + { + "id": "U2524Z1", + "name": "Buš", + "isMetro": false, + "latitude": 14.383946, + "longitude": 49.80331, + "stopId": "U2524" + }, + { + "id": "U2525Z1", + "name": "Čím,Hrdlička", + "isMetro": false, + "latitude": 14.38539, + "longitude": 49.783024, + "stopId": "U2525" + }, + { + "id": "U2525Z2", + "name": "Čím,Hrdlička", + "isMetro": false, + "latitude": 14.385888, + "longitude": 49.783203, + "stopId": "U2525" + }, + { + "id": "U2526Z1", + "name": "Čím", + "isMetro": false, + "latitude": 14.376725, + "longitude": 49.779816, + "stopId": "U2526" + }, + { + "id": "U2526Z2", + "name": "Čím", + "isMetro": false, + "latitude": 14.376838, + "longitude": 49.779766, + "stopId": "U2526" + }, + { + "id": "U2527Z1", + "name": "Nové Dvory,Porostliny", + "isMetro": false, + "latitude": 14.372007, + "longitude": 49.809357, + "stopId": "U2527" + }, + { + "id": "U2527Z2", + "name": "Nové Dvory,Porostliny", + "isMetro": false, + "latitude": 14.372101, + "longitude": 49.809334, + "stopId": "U2527" + }, + { + "id": "U2528Z1", + "name": "Nové Dvory,Nová Hospoda", + "isMetro": false, + "latitude": 14.364396, + "longitude": 49.799782, + "stopId": "U2528" + }, + { + "id": "U2528Z2", + "name": "Nové Dvory,Nová Hospoda", + "isMetro": false, + "latitude": 14.36491, + "longitude": 49.80003, + "stopId": "U2528" + }, + { + "id": "U2529Z1", + "name": "Korkyně,Křížov,U Kapličky", + "isMetro": false, + "latitude": 14.345183, + "longitude": 49.792282, + "stopId": "U2529" + }, + { + "id": "U2529Z2", + "name": "Korkyně,Křížov,U Kapličky", + "isMetro": false, + "latitude": 14.345541, + "longitude": 49.792377, + "stopId": "U2529" + }, + { + "id": "U252Z1", + "name": "Kesnerka", + "isMetro": false, + "latitude": 14.402067, + "longitude": 50.057884, + "stopId": "U252" + }, + { + "id": "U2533Z1", + "name": "Korkyně,Křížov", + "isMetro": false, + "latitude": 14.352613, + "longitude": 49.788475, + "stopId": "U2533" + }, + { + "id": "U2533Z2", + "name": "Korkyně,Křížov", + "isMetro": false, + "latitude": 14.352499, + "longitude": 49.788643, + "stopId": "U2533" + }, + { + "id": "U2534Z1", + "name": "Korkyně", + "isMetro": false, + "latitude": 14.352049, + "longitude": 49.780376, + "stopId": "U2534" + }, + { + "id": "U2534Z2", + "name": "Korkyně", + "isMetro": false, + "latitude": 14.352255, + "longitude": 49.780251, + "stopId": "U2534" + }, + { + "id": "U2534Z3", + "name": "Korkyně", + "isMetro": false, + "latitude": 14.351452, + "longitude": 49.780582, + "stopId": "U2534" + }, + { + "id": "U2534Z4", + "name": "Korkyně", + "isMetro": false, + "latitude": 14.351792, + "longitude": 49.780788, + "stopId": "U2534" + }, + { + "id": "U2536Z1", + "name": "Nový Knín,Sudovice", + "isMetro": false, + "latitude": 14.307545, + "longitude": 49.786758, + "stopId": "U2536" + }, + { + "id": "U2536Z2", + "name": "Nový Knín,Sudovice", + "isMetro": false, + "latitude": 14.30779, + "longitude": 49.786694, + "stopId": "U2536" + }, + { + "id": "U2537Z1", + "name": "Nový Knín", + "isMetro": false, + "latitude": 14.293365, + "longitude": 49.788368, + "stopId": "U2537" + }, + { + "id": "U2537Z2", + "name": "Nový Knín", + "isMetro": false, + "latitude": 14.293209, + "longitude": 49.788242, + "stopId": "U2537" + }, + { + "id": "U2538Z1", + "name": "Nový Knín,ELKO", + "isMetro": false, + "latitude": 14.290709, + "longitude": 49.788857, + "stopId": "U2538" + }, + { + "id": "U2538Z2", + "name": "Nový Knín,ELKO", + "isMetro": false, + "latitude": 14.290779, + "longitude": 49.788776, + "stopId": "U2538" + }, + { + "id": "U2539Z1", + "name": "Nový Knín,Sokolovna", + "isMetro": false, + "latitude": 14.290773, + "longitude": 49.792435, + "stopId": "U2539" + }, + { + "id": "U2539Z2", + "name": "Nový Knín,Sokolovna", + "isMetro": false, + "latitude": 14.290423, + "longitude": 49.79261, + "stopId": "U2539" + }, + { + "id": "U253Z1", + "name": "Khodlova", + "isMetro": false, + "latitude": 14.604071, + "longitude": 50.110287, + "stopId": "U253" + }, + { + "id": "U2543Z3", + "name": "Rabyně,Rozc.Blaženice", + "isMetro": false, + "latitude": 14.471616, + "longitude": 49.791821, + "stopId": "U2543" + }, + { + "id": "U2543Z4", + "name": "Rabyně,Rozc.Blaženice", + "isMetro": false, + "latitude": 14.471684, + "longitude": 49.792023, + "stopId": "U2543" + }, + { + "id": "U2544Z1", + "name": "Rabyně,Blaženice", + "isMetro": false, + "latitude": 14.469964, + "longitude": 49.78936, + "stopId": "U2544" + }, + { + "id": "U2544Z2", + "name": "Rabyně,Blaženice", + "isMetro": false, + "latitude": 14.470049, + "longitude": 49.789333, + "stopId": "U2544" + }, + { + "id": "U2545Z1", + "name": "Neveklov,Jablonka", + "isMetro": false, + "latitude": 14.464793, + "longitude": 49.778336, + "stopId": "U2545" + }, + { + "id": "U2545Z2", + "name": "Neveklov,Jablonka", + "isMetro": false, + "latitude": 14.464912, + "longitude": 49.7784, + "stopId": "U2545" + }, + { + "id": "U2545Z3", + "name": "Neveklov,Jablonka", + "isMetro": false, + "latitude": 14.464417, + "longitude": 49.777542, + "stopId": "U2545" + }, + { + "id": "U2545Z4", + "name": "Neveklov,Jablonka", + "isMetro": false, + "latitude": 14.464125, + "longitude": 49.777611, + "stopId": "U2545" + }, + { + "id": "U2546Z1", + "name": "Neveklov,Jablonná", + "isMetro": false, + "latitude": 14.451059, + "longitude": 49.780071, + "stopId": "U2546" + }, + { + "id": "U2546Z2", + "name": "Neveklov,Jablonná", + "isMetro": false, + "latitude": 14.450915, + "longitude": 49.780014, + "stopId": "U2546" + }, + { + "id": "U2547Z1", + "name": "Rabyně,Měřín", + "isMetro": false, + "latitude": 14.430017, + "longitude": 49.789822, + "stopId": "U2547" + }, + { + "id": "U2547Z2", + "name": "Rabyně,Měřín", + "isMetro": false, + "latitude": 14.430021, + "longitude": 49.789761, + "stopId": "U2547" + }, + { + "id": "U2549Z1", + "name": "Voznice,Polesí", + "isMetro": false, + "latitude": 14.211977, + "longitude": 49.812122, + "stopId": "U2549" + }, + { + "id": "U2549Z2", + "name": "Voznice,Polesí", + "isMetro": false, + "latitude": 14.212842, + "longitude": 49.812401, + "stopId": "U2549" + }, + { + "id": "U254Z1", + "name": "Klamovka", + "isMetro": false, + "latitude": 14.380618, + "longitude": 50.070702, + "stopId": "U254" + }, + { + "id": "U254Z2", + "name": "Klamovka", + "isMetro": false, + "latitude": 14.379142, + "longitude": 50.070583, + "stopId": "U254" + }, + { + "id": "U254Z3", + "name": "Klamovka", + "isMetro": false, + "latitude": 14.381502, + "longitude": 50.071033, + "stopId": "U254" + }, + { + "id": "U254Z4", + "name": "Klamovka", + "isMetro": false, + "latitude": 14.379864, + "longitude": 50.071423, + "stopId": "U254" + }, + { + "id": "U254Z5", + "name": "Klamovka", + "isMetro": false, + "latitude": 14.379601, + "longitude": 50.071568, + "stopId": "U254" + }, + { + "id": "U254Z6", + "name": "Klamovka", + "isMetro": false, + "latitude": 14.378627, + "longitude": 50.069637, + "stopId": "U254" + }, + { + "id": "U2550Z1", + "name": "Vlkančice,U Zbořeného mlýna", + "isMetro": false, + "latitude": 14.902938, + "longitude": 49.910439, + "stopId": "U2550" + }, + { + "id": "U2550Z2", + "name": "Vlkančice,U Zbořeného mlýna", + "isMetro": false, + "latitude": 14.903009, + "longitude": 49.910229, + "stopId": "U2550" + }, + { + "id": "U2551Z1", + "name": "Vlkančice,U Králů", + "isMetro": false, + "latitude": 14.896203, + "longitude": 49.897545, + "stopId": "U2551" + }, + { + "id": "U2551Z2", + "name": "Vlkančice,U Králů", + "isMetro": false, + "latitude": 14.896232, + "longitude": 49.897369, + "stopId": "U2551" + }, + { + "id": "U2552Z1", + "name": "Vlkančice,Pyskočely,Plužiny", + "isMetro": false, + "latitude": 14.872259, + "longitude": 49.87925, + "stopId": "U2552" + }, + { + "id": "U2552Z2", + "name": "Vlkančice,Pyskočely,Plužiny", + "isMetro": false, + "latitude": 14.872685, + "longitude": 49.879333, + "stopId": "U2552" + }, + { + "id": "U2554Z301", + "name": "Mníšek pod Brdy", + "isMetro": false, + "latitude": 14.269918, + "longitude": 49.853825, + "stopId": "U2554" + }, + { + "id": "U2555Z1", + "name": "Chotilsko", + "isMetro": false, + "latitude": 14.352748, + "longitude": 49.769413, + "stopId": "U2555" + }, + { + "id": "U2556Z1", + "name": "Chotilsko,Prostřední Lhota", + "isMetro": false, + "latitude": 14.340993, + "longitude": 49.753727, + "stopId": "U2556" + }, + { + "id": "U2556Z2", + "name": "Chotilsko,Prostřední Lhota", + "isMetro": false, + "latitude": 14.34123, + "longitude": 49.753647, + "stopId": "U2556" + }, + { + "id": "U2557Z1", + "name": "Chotilsko,Mokrsko", + "isMetro": false, + "latitude": 14.33605, + "longitude": 49.744778, + "stopId": "U2557" + }, + { + "id": "U2557Z2", + "name": "Chotilsko,Mokrsko", + "isMetro": false, + "latitude": 14.336164, + "longitude": 49.744617, + "stopId": "U2557" + }, + { + "id": "U2558Z1", + "name": "Čestlice,aquapark", + "isMetro": false, + "latitude": 14.573359, + "longitude": 50.007626, + "stopId": "U2558" + }, + { + "id": "U2558Z2", + "name": "Čestlice,aquapark", + "isMetro": false, + "latitude": 14.573773, + "longitude": 50.007553, + "stopId": "U2558" + }, + { + "id": "U2559Z1", + "name": "Kunice,U Dálnice", + "isMetro": false, + "latitude": 14.668792, + "longitude": 49.939678, + "stopId": "U2559" + }, + { + "id": "U2559Z2", + "name": "Kunice,U Dálnice", + "isMetro": false, + "latitude": 14.668529, + "longitude": 49.939461, + "stopId": "U2559" + }, + { + "id": "U255Z1", + "name": "Klánova", + "isMetro": false, + "latitude": 14.423784, + "longitude": 50.021366, + "stopId": "U255" + }, + { + "id": "U255Z2", + "name": "Klánova", + "isMetro": false, + "latitude": 14.42335, + "longitude": 50.021351, + "stopId": "U255" + }, + { + "id": "U2560Z1", + "name": "Davle,Sloup,U Jeřábu", + "isMetro": false, + "latitude": 14.37674, + "longitude": 49.890667, + "stopId": "U2560" + }, + { + "id": "U2560Z2", + "name": "Davle,Sloup,U Jeřábu", + "isMetro": false, + "latitude": 14.376779, + "longitude": 49.890682, + "stopId": "U2560" + }, + { + "id": "U2562Z1", + "name": "Sedlec,PEMA", + "isMetro": false, + "latitude": 14.449557, + "longitude": 50.184914, + "stopId": "U2562" + }, + { + "id": "U2562Z2", + "name": "Sedlec,PEMA", + "isMetro": false, + "latitude": 14.449888, + "longitude": 50.184856, + "stopId": "U2562" + }, + { + "id": "U2563Z1", + "name": "Mnichovice,zdrav.stř.", + "isMetro": false, + "latitude": 14.706167, + "longitude": 49.937569, + "stopId": "U2563" + }, + { + "id": "U2563Z2", + "name": "Mnichovice,zdrav.stř.", + "isMetro": false, + "latitude": 14.706167, + "longitude": 49.937634, + "stopId": "U2563" + }, + { + "id": "U2569Z1", + "name": "Lety,K Libří", + "isMetro": false, + "latitude": 14.24103, + "longitude": 49.924648, + "stopId": "U2569" + }, + { + "id": "U256Z1", + "name": "Klánovice", + "isMetro": false, + "latitude": 14.68594, + "longitude": 50.098953, + "stopId": "U256" + }, + { + "id": "U256Z2", + "name": "Klánovice", + "isMetro": false, + "latitude": 14.685429, + "longitude": 50.098999, + "stopId": "U256" + }, + { + "id": "U2570Z1", + "name": "Lety,Karlštejnská", + "isMetro": false, + "latitude": 14.252223, + "longitude": 49.922897, + "stopId": "U2570" + }, + { + "id": "U2570Z2", + "name": "Lety,Karlštejnská", + "isMetro": false, + "latitude": 14.25104, + "longitude": 49.922863, + "stopId": "U2570" + }, + { + "id": "U2572Z1", + "name": "Přezletice,Horní náves", + "isMetro": false, + "latitude": 14.575667, + "longitude": 50.15657, + "stopId": "U2572" + }, + { + "id": "U2572Z2", + "name": "Přezletice,Horní náves", + "isMetro": false, + "latitude": 14.575697, + "longitude": 50.156128, + "stopId": "U2572" + }, + { + "id": "U2574Z1", + "name": "Škola Velká Chuchle", + "isMetro": false, + "latitude": 14.382333, + "longitude": 50.012016, + "stopId": "U2574" + }, + { + "id": "U2575Z1", + "name": "Písková Lhota", + "isMetro": false, + "latitude": 15.069324, + "longitude": 50.131016, + "stopId": "U2575" + }, + { + "id": "U2575Z2", + "name": "Písková Lhota", + "isMetro": false, + "latitude": 15.070436, + "longitude": 50.131084, + "stopId": "U2575" + }, + { + "id": "U2576Z1", + "name": "Poděbrady,Přední Lhota,U Kopečků", + "isMetro": false, + "latitude": 15.086858, + "longitude": 50.131958, + "stopId": "U2576" + }, + { + "id": "U2576Z2", + "name": "Poděbrady,Přední Lhota,U Kopečků", + "isMetro": false, + "latitude": 15.087441, + "longitude": 50.132168, + "stopId": "U2576" + }, + { + "id": "U2577Z1", + "name": "Poděbrady,Hřbitov", + "isMetro": false, + "latitude": 15.102702, + "longitude": 50.133614, + "stopId": "U2577" + }, + { + "id": "U2577Z2", + "name": "Poděbrady,Hřbitov", + "isMetro": false, + "latitude": 15.102142, + "longitude": 50.133568, + "stopId": "U2577" + }, + { + "id": "U2578Z1", + "name": "Poděbrady,Riegrovo nám.", + "isMetro": false, + "latitude": 15.122045, + "longitude": 50.142792, + "stopId": "U2578" + }, + { + "id": "U2578Z2", + "name": "Poděbrady,Riegrovo nám.", + "isMetro": false, + "latitude": 15.122013, + "longitude": 50.143169, + "stopId": "U2578" + }, + { + "id": "U2579Z1", + "name": "Poděbrady,žel.st.", + "isMetro": false, + "latitude": 15.124358, + "longitude": 50.148838, + "stopId": "U2579" + }, + { + "id": "U2579Z301", + "name": "Poděbrady", + "isMetro": false, + "latitude": 15.12376, + "longitude": 50.149555, + "stopId": "U2579" + }, + { + "id": "U2579Z4", + "name": "Poděbrady,žel.st.", + "isMetro": false, + "latitude": 15.125033, + "longitude": 50.148376, + "stopId": "U2579" + }, + { + "id": "U2579Z6", + "name": "Poděbrady,žel.st.", + "isMetro": false, + "latitude": 15.124363, + "longitude": 50.148338, + "stopId": "U2579" + }, + { + "id": "U2579Z7", + "name": "Poděbrady,žel.st.", + "isMetro": false, + "latitude": 15.124181, + "longitude": 50.14846, + "stopId": "U2579" + }, + { + "id": "U257Z1", + "name": "Klárův ústav", + "isMetro": false, + "latitude": 14.45715, + "longitude": 50.027702, + "stopId": "U257" + }, + { + "id": "U257Z2", + "name": "Klárův ústav", + "isMetro": false, + "latitude": 14.456734, + "longitude": 50.028301, + "stopId": "U257" + }, + { + "id": "U2580Z1", + "name": "Poděbrady,u stadionu", + "isMetro": false, + "latitude": 15.132434, + "longitude": 50.140919, + "stopId": "U2580" + }, + { + "id": "U2580Z2", + "name": "Poděbrady,u stadionu", + "isMetro": false, + "latitude": 15.132263, + "longitude": 50.141052, + "stopId": "U2580" + }, + { + "id": "U2581Z1", + "name": "Hradčany", + "isMetro": false, + "latitude": 15.265809, + "longitude": 50.158836, + "stopId": "U2581" + }, + { + "id": "U2582Z1", + "name": "Hradčany,ObÚ", + "isMetro": false, + "latitude": 15.271911, + "longitude": 50.156513, + "stopId": "U2582" + }, + { + "id": "U2584Z1", + "name": "Okřínek,Srbce", + "isMetro": false, + "latitude": 15.210184, + "longitude": 50.167847, + "stopId": "U2584" + }, + { + "id": "U2584Z2", + "name": "Okřínek,Srbce", + "isMetro": false, + "latitude": 15.210086, + "longitude": 50.167912, + "stopId": "U2584" + }, + { + "id": "U2586Z1", + "name": "Městec Králové,prům.zóna", + "isMetro": false, + "latitude": 15.299537, + "longitude": 50.196163, + "stopId": "U2586" + }, + { + "id": "U2586Z2", + "name": "Městec Králové,prům.zóna", + "isMetro": false, + "latitude": 15.299704, + "longitude": 50.195751, + "stopId": "U2586" + }, + { + "id": "U2587Z1", + "name": "Městec Králové,Stará pošta", + "isMetro": false, + "latitude": 15.293864, + "longitude": 50.205513, + "stopId": "U2587" + }, + { + "id": "U2587Z2", + "name": "Městec Králové,Stará pošta", + "isMetro": false, + "latitude": 15.293728, + "longitude": 50.205441, + "stopId": "U2587" + }, + { + "id": "U2588Z1", + "name": "Městec Králové,nám.", + "isMetro": false, + "latitude": 15.298117, + "longitude": 50.207268, + "stopId": "U2588" + }, + { + "id": "U2588Z2", + "name": "Městec Králové,nám.", + "isMetro": false, + "latitude": 15.297914, + "longitude": 50.207275, + "stopId": "U2588" + }, + { + "id": "U2588Z3", + "name": "Městec Králové,nám.", + "isMetro": false, + "latitude": 15.29819, + "longitude": 50.207439, + "stopId": "U2588" + }, + { + "id": "U2589Z1", + "name": "Zvěřínek", + "isMetro": false, + "latitude": 15.007743, + "longitude": 50.155342, + "stopId": "U2589" + }, + { + "id": "U2589Z2", + "name": "Zvěřínek", + "isMetro": false, + "latitude": 15.007499, + "longitude": 50.155533, + "stopId": "U2589" + }, + { + "id": "U258Z101", + "name": "Lužiny", + "isMetro": true, + "latitude": 14.330468, + "longitude": 50.044549, + "stopId": "U258" + }, + { + "id": "U258Z102", + "name": "Lužiny", + "isMetro": true, + "latitude": 14.330493, + "longitude": 50.044459, + "stopId": "U258" + }, + { + "id": "U2591Z1", + "name": "Sadská,Hálkova", + "isMetro": false, + "latitude": 14.987643, + "longitude": 50.140778, + "stopId": "U2591" + }, + { + "id": "U2591Z2", + "name": "Sadská,Hálkova", + "isMetro": false, + "latitude": 14.98726, + "longitude": 50.14061, + "stopId": "U2591" + }, + { + "id": "U2594Z1", + "name": "Písty,Temac", + "isMetro": false, + "latitude": 15.00967, + "longitude": 50.159248, + "stopId": "U2594" + }, + { + "id": "U2594Z2", + "name": "Písty,Temac", + "isMetro": false, + "latitude": 15.00946, + "longitude": 50.159119, + "stopId": "U2594" + }, + { + "id": "U2598Z1", + "name": "Jílové u Prahy,Kovo", + "isMetro": false, + "latitude": 14.477627, + "longitude": 49.898941, + "stopId": "U2598" + }, + { + "id": "U2598Z2", + "name": "Jílové u Prahy,Kovo", + "isMetro": false, + "latitude": 14.478413, + "longitude": 49.899292, + "stopId": "U2598" + }, + { + "id": "U259Z1", + "name": "Klíčov", + "isMetro": false, + "latitude": 14.514276, + "longitude": 50.116898, + "stopId": "U259" + }, + { + "id": "U259Z2", + "name": "Klíčov", + "isMetro": false, + "latitude": 14.514409, + "longitude": 50.116737, + "stopId": "U259" + }, + { + "id": "U25Z1", + "name": "Bertramka", + "isMetro": false, + "latitude": 14.393291, + "longitude": 50.072231, + "stopId": "U25" + }, + { + "id": "U25Z2", + "name": "Bertramka", + "isMetro": false, + "latitude": 14.392435, + "longitude": 50.072239, + "stopId": "U25" + }, + { + "id": "U2600Z1", + "name": "Valcha", + "isMetro": false, + "latitude": 14.538155, + "longitude": 50.131714, + "stopId": "U2600" + }, + { + "id": "U2600Z2", + "name": "Valcha", + "isMetro": false, + "latitude": 14.538233, + "longitude": 50.131393, + "stopId": "U2600" + }, + { + "id": "U2601Z1", + "name": "Ivančická", + "isMetro": false, + "latitude": 14.511956, + "longitude": 50.142189, + "stopId": "U2601" + }, + { + "id": "U2602Z1", + "name": "Radnice Praha 12", + "isMetro": false, + "latitude": 14.414122, + "longitude": 50.002502, + "stopId": "U2602" + }, + { + "id": "U2603Z3", + "name": "Sportovní centrum Horní Počernice", + "isMetro": false, + "latitude": 14.609698, + "longitude": 50.111629, + "stopId": "U2603" + }, + { + "id": "U2604Z1", + "name": "Pod Školou", + "isMetro": false, + "latitude": 14.367477, + "longitude": 50.068604, + "stopId": "U2604" + }, + { + "id": "U2606Z1", + "name": "Jílové u Prahy,Průmyslová", + "isMetro": false, + "latitude": 14.48776, + "longitude": 49.905254, + "stopId": "U2606" + }, + { + "id": "U2606Z2", + "name": "Jílové u Prahy,Průmyslová", + "isMetro": false, + "latitude": 14.487411, + "longitude": 49.904964, + "stopId": "U2606" + }, + { + "id": "U2607Z1", + "name": "Zapova", + "isMetro": false, + "latitude": 14.38955, + "longitude": 50.073902, + "stopId": "U2607" + }, + { + "id": "U2607Z2", + "name": "Zapova", + "isMetro": false, + "latitude": 14.389495, + "longitude": 50.073727, + "stopId": "U2607" + }, + { + "id": "U2608Z1", + "name": "Radimova", + "isMetro": false, + "latitude": 14.365665, + "longitude": 50.087566, + "stopId": "U2608" + }, + { + "id": "U2608Z2", + "name": "Radimova", + "isMetro": false, + "latitude": 14.366322, + "longitude": 50.087509, + "stopId": "U2608" + }, + { + "id": "U2609Z2", + "name": "Kusá", + "isMetro": false, + "latitude": 14.360991, + "longitude": 50.087025, + "stopId": "U2609" + }, + { + "id": "U260Z1", + "name": "Klíčovská", + "isMetro": false, + "latitude": 14.507951, + "longitude": 50.117451, + "stopId": "U260" + }, + { + "id": "U260Z2", + "name": "Klíčovská", + "isMetro": false, + "latitude": 14.508317, + "longitude": 50.117901, + "stopId": "U260" + }, + { + "id": "U261Z1", + "name": "Klikovka", + "isMetro": false, + "latitude": 14.429768, + "longitude": 50.057049, + "stopId": "U261" + }, + { + "id": "U261Z2", + "name": "Klikovka", + "isMetro": false, + "latitude": 14.431434, + "longitude": 50.05695, + "stopId": "U261" + }, + { + "id": "U262Z2", + "name": "Korunovační", + "isMetro": false, + "latitude": 14.420581, + "longitude": 50.099705, + "stopId": "U262" + }, + { + "id": "U262Z3", + "name": "Korunovační", + "isMetro": false, + "latitude": 14.418202, + "longitude": 50.101105, + "stopId": "U262" + }, + { + "id": "U263Z1", + "name": "Kloboučnická", + "isMetro": false, + "latitude": 14.450934, + "longitude": 50.060566, + "stopId": "U263" + }, + { + "id": "U263Z3", + "name": "Kloboučnická", + "isMetro": false, + "latitude": 14.449903, + "longitude": 50.060303, + "stopId": "U263" + }, + { + "id": "U263Z4", + "name": "Kloboučnická", + "isMetro": false, + "latitude": 14.449617, + "longitude": 50.060299, + "stopId": "U263" + }, + { + "id": "U263Z5", + "name": "Kloboučnická", + "isMetro": false, + "latitude": 14.448534, + "longitude": 50.060635, + "stopId": "U263" + }, + { + "id": "U264Z1", + "name": "Klukovice", + "isMetro": false, + "latitude": 14.366503, + "longitude": 50.036083, + "stopId": "U264" + }, + { + "id": "U264Z2", + "name": "Klukovice", + "isMetro": false, + "latitude": 14.36685, + "longitude": 50.03574, + "stopId": "U264" + }, + { + "id": "U265Z1", + "name": "Brumlovka", + "isMetro": false, + "latitude": 14.45506, + "longitude": 50.048096, + "stopId": "U265" + }, + { + "id": "U265Z2", + "name": "Brumlovka", + "isMetro": false, + "latitude": 14.45448, + "longitude": 50.047787, + "stopId": "U265" + }, + { + "id": "U266Z1", + "name": "Kněžská luka", + "isMetro": false, + "latitude": 14.492968, + "longitude": 50.092186, + "stopId": "U266" + }, + { + "id": "U266Z2", + "name": "Kněžská luka", + "isMetro": false, + "latitude": 14.492482, + "longitude": 50.092148, + "stopId": "U266" + }, + { + "id": "U266Z3", + "name": "Kněžská luka", + "isMetro": false, + "latitude": 14.493146, + "longitude": 50.09198, + "stopId": "U266" + }, + { + "id": "U266Z4", + "name": "Kněžská luka", + "isMetro": false, + "latitude": 14.494388, + "longitude": 50.092148, + "stopId": "U266" + }, + { + "id": "U267Z1", + "name": "Služská", + "isMetro": false, + "latitude": 14.44914, + "longitude": 50.124668, + "stopId": "U267" + }, + { + "id": "U267Z2", + "name": "Služská", + "isMetro": false, + "latitude": 14.450624, + "longitude": 50.124008, + "stopId": "U267" + }, + { + "id": "U268Z1", + "name": "Kodaňská", + "isMetro": false, + "latitude": 14.460817, + "longitude": 50.070751, + "stopId": "U268" + }, + { + "id": "U269Z1", + "name": "Koh-i-noor", + "isMetro": false, + "latitude": 14.461409, + "longitude": 50.067581, + "stopId": "U269" + }, + { + "id": "U269Z2", + "name": "Koh-i-noor", + "isMetro": false, + "latitude": 14.462255, + "longitude": 50.067692, + "stopId": "U269" + }, + { + "id": "U269Z3", + "name": "Koh-i-noor", + "isMetro": false, + "latitude": 14.460478, + "longitude": 50.066738, + "stopId": "U269" + }, + { + "id": "U269Z4", + "name": "Koh-i-noor", + "isMetro": false, + "latitude": 14.46174, + "longitude": 50.067471, + "stopId": "U269" + }, + { + "id": "U26Z1", + "name": "Betonárka", + "isMetro": false, + "latitude": 14.574788, + "longitude": 50.036713, + "stopId": "U26" + }, + { + "id": "U26Z2", + "name": "Betonárka", + "isMetro": false, + "latitude": 14.574768, + "longitude": 50.036774, + "stopId": "U26" + }, + { + "id": "U2701Z1", + "name": "Náměstí Olgy Scheinpflugové", + "isMetro": false, + "latitude": 14.362091, + "longitude": 50.030441, + "stopId": "U2701" + }, + { + "id": "U2701Z2", + "name": "Náměstí Olgy Scheinpflugové", + "isMetro": false, + "latitude": 14.361432, + "longitude": 50.029995, + "stopId": "U2701" + }, + { + "id": "U2702Z1", + "name": "Holyně", + "isMetro": false, + "latitude": 14.358238, + "longitude": 50.027184, + "stopId": "U2702" + }, + { + "id": "U2702Z2", + "name": "Holyně", + "isMetro": false, + "latitude": 14.357871, + "longitude": 50.026985, + "stopId": "U2702" + }, + { + "id": "U2703Z1", + "name": "Botanická zahrada Malešice", + "isMetro": false, + "latitude": 14.513862, + "longitude": 50.088673, + "stopId": "U2703" + }, + { + "id": "U2703Z2", + "name": "Botanická zahrada Malešice", + "isMetro": false, + "latitude": 14.514078, + "longitude": 50.088665, + "stopId": "U2703" + }, + { + "id": "U2704Z1", + "name": "Zásadská", + "isMetro": false, + "latitude": 14.497128, + "longitude": 50.12867, + "stopId": "U2704" + }, + { + "id": "U2704Z2", + "name": "Zásadská", + "isMetro": false, + "latitude": 14.495091, + "longitude": 50.128864, + "stopId": "U2704" + }, + { + "id": "U2706Z1", + "name": "K Housličkám", + "isMetro": false, + "latitude": 14.366466, + "longitude": 50.129902, + "stopId": "U2706" + }, + { + "id": "U2706Z2", + "name": "K Housličkám", + "isMetro": false, + "latitude": 14.367002, + "longitude": 50.129154, + "stopId": "U2706" + }, + { + "id": "U2707Z1", + "name": "Hostivařský pivovar", + "isMetro": false, + "latitude": 14.549622, + "longitude": 50.046509, + "stopId": "U2707" + }, + { + "id": "U2707Z2", + "name": "Hostivařský pivovar", + "isMetro": false, + "latitude": 14.551502, + "longitude": 50.046925, + "stopId": "U2707" + }, + { + "id": "U2708Z1", + "name": "Hasičská stanice Modřany", + "isMetro": false, + "latitude": 14.439692, + "longitude": 50.005943, + "stopId": "U2708" + }, + { + "id": "U2708Z2", + "name": "Hasičská stanice Modřany", + "isMetro": false, + "latitude": 14.440171, + "longitude": 50.005981, + "stopId": "U2708" + }, + { + "id": "U270Z2", + "name": "Kokořínská", + "isMetro": false, + "latitude": 14.485051, + "longitude": 50.145718, + "stopId": "U270" + }, + { + "id": "U2711Z1", + "name": "Slivenec", + "isMetro": false, + "latitude": 14.351832, + "longitude": 50.023663, + "stopId": "U2711" + }, + { + "id": "U2711Z2", + "name": "Slivenec", + "isMetro": false, + "latitude": 14.351015, + "longitude": 50.023533, + "stopId": "U2711" + }, + { + "id": "U2711Z51", + "name": "Slivenec", + "isMetro": false, + "latitude": 14.35382, + "longitude": 50.023384, + "stopId": "U2711" + }, + { + "id": "U2711Z52", + "name": "Slivenec", + "isMetro": false, + "latitude": 14.353124, + "longitude": 50.023281, + "stopId": "U2711" + }, + { + "id": "U2712Z1", + "name": "Do Chuchle", + "isMetro": false, + "latitude": 14.357061, + "longitude": 50.017586, + "stopId": "U2712" + }, + { + "id": "U2713Z2", + "name": "Středočeská", + "isMetro": false, + "latitude": 14.407425, + "longitude": 50.074394, + "stopId": "U2713" + }, + { + "id": "U2714Z1", + "name": "Obchodní centrum Lipence", + "isMetro": false, + "latitude": 14.363703, + "longitude": 49.963642, + "stopId": "U2714" + }, + { + "id": "U2715Z1", + "name": "Škola Šeberov", + "isMetro": false, + "latitude": 14.516686, + "longitude": 50.006664, + "stopId": "U2715" + }, + { + "id": "U2715Z2", + "name": "Škola Šeberov", + "isMetro": false, + "latitude": 14.516935, + "longitude": 50.006279, + "stopId": "U2715" + }, + { + "id": "U2716Z1", + "name": "Ronalda Reagana", + "isMetro": false, + "latitude": 14.40478, + "longitude": 50.101395, + "stopId": "U2716" + }, + { + "id": "U2716Z2", + "name": "Ronalda Reagana", + "isMetro": false, + "latitude": 14.404535, + "longitude": 50.100853, + "stopId": "U2716" + }, + { + "id": "U2719Z1", + "name": "Malý Berlín", + "isMetro": false, + "latitude": 14.435814, + "longitude": 50.103325, + "stopId": "U2719" + }, + { + "id": "U271Z1", + "name": "Koleje Jižní Město", + "isMetro": false, + "latitude": 14.499505, + "longitude": 50.017284, + "stopId": "U271" + }, + { + "id": "U271Z2", + "name": "Koleje Jižní Město", + "isMetro": false, + "latitude": 14.500299, + "longitude": 50.017193, + "stopId": "U271" + }, + { + "id": "U272Z1", + "name": "Divadlo pod Palmovkou", + "isMetro": false, + "latitude": 14.472753, + "longitude": 50.105659, + "stopId": "U272" + }, + { + "id": "U273Z1", + "name": "Koleje Větrník", + "isMetro": false, + "latitude": 14.351196, + "longitude": 50.088764, + "stopId": "U273" + }, + { + "id": "U274Z1", + "name": "Koloděje", + "isMetro": false, + "latitude": 14.640517, + "longitude": 50.060101, + "stopId": "U274" + }, + { + "id": "U274Z2", + "name": "Koloděje", + "isMetro": false, + "latitude": 14.640884, + "longitude": 50.060184, + "stopId": "U274" + }, + { + "id": "U2751Z1", + "name": "Volyňská", + "isMetro": false, + "latitude": 14.47194, + "longitude": 50.073524, + "stopId": "U2751" + }, + { + "id": "U2751Z2", + "name": "Volyňská", + "isMetro": false, + "latitude": 14.472424, + "longitude": 50.073689, + "stopId": "U2751" + }, + { + "id": "U2752Z1", + "name": "Záveská", + "isMetro": false, + "latitude": 14.522471, + "longitude": 50.053303, + "stopId": "U2752" + }, + { + "id": "U2752Z2", + "name": "Záveská", + "isMetro": false, + "latitude": 14.522591, + "longitude": 50.053986, + "stopId": "U2752" + }, + { + "id": "U2753Z2", + "name": "Dvorní", + "isMetro": false, + "latitude": 14.448384, + "longitude": 50.147533, + "stopId": "U2753" + }, + { + "id": "U2754Z1", + "name": "Cholupický hřbitov", + "isMetro": false, + "latitude": 14.461024, + "longitude": 49.98423, + "stopId": "U2754" + }, + { + "id": "U2754Z2", + "name": "Cholupický hřbitov", + "isMetro": false, + "latitude": 14.461137, + "longitude": 49.984184, + "stopId": "U2754" + }, + { + "id": "U2757Z1", + "name": "Dělostřelecká", + "isMetro": false, + "latitude": 14.387458, + "longitude": 50.096298, + "stopId": "U2757" + }, + { + "id": "U2757Z2", + "name": "Dělostřelecká", + "isMetro": false, + "latitude": 14.388206, + "longitude": 50.096767, + "stopId": "U2757" + }, + { + "id": "U2758Z1", + "name": "Sídliště Uhříněves", + "isMetro": false, + "latitude": 14.61196, + "longitude": 50.030979, + "stopId": "U2758" + }, + { + "id": "U2758Z2", + "name": "Sídliště Uhříněves", + "isMetro": false, + "latitude": 14.611329, + "longitude": 50.031319, + "stopId": "U2758" + }, + { + "id": "U2759Z1", + "name": "Jilemnická", + "isMetro": false, + "latitude": 14.550309, + "longitude": 50.137428, + "stopId": "U2759" + }, + { + "id": "U2759Z2", + "name": "Jilemnická", + "isMetro": false, + "latitude": 14.550068, + "longitude": 50.136345, + "stopId": "U2759" + }, + { + "id": "U275Z1", + "name": "Kolodějská obora", + "isMetro": false, + "latitude": 14.628075, + "longitude": 50.06237, + "stopId": "U275" + }, + { + "id": "U275Z2", + "name": "Kolodějská obora", + "isMetro": false, + "latitude": 14.627642, + "longitude": 50.062477, + "stopId": "U275" + }, + { + "id": "U2760Z1", + "name": "Pod Nouzovem", + "isMetro": false, + "latitude": 14.551354, + "longitude": 50.1394, + "stopId": "U2760" + }, + { + "id": "U2760Z2", + "name": "Pod Nouzovem", + "isMetro": false, + "latitude": 14.550827, + "longitude": 50.138912, + "stopId": "U2760" + }, + { + "id": "U2763Z1", + "name": "Dolnopočernický hřbitov", + "isMetro": false, + "latitude": 14.577236, + "longitude": 50.091164, + "stopId": "U2763" + }, + { + "id": "U2764Z1", + "name": "Holýšovská", + "isMetro": false, + "latitude": 14.318233, + "longitude": 50.040253, + "stopId": "U2764" + }, + { + "id": "U2764Z2", + "name": "Holýšovská", + "isMetro": false, + "latitude": 14.318176, + "longitude": 50.041374, + "stopId": "U2764" + }, + { + "id": "U2766Z1", + "name": "Sportovní centrum Řepy", + "isMetro": false, + "latitude": 14.295665, + "longitude": 50.066868, + "stopId": "U2766" + }, + { + "id": "U2766Z2", + "name": "Sportovní centrum Řepy", + "isMetro": false, + "latitude": 14.295434, + "longitude": 50.06723, + "stopId": "U2766" + }, + { + "id": "U2767Z1", + "name": "Českomalínská", + "isMetro": false, + "latitude": 14.403569, + "longitude": 50.10479, + "stopId": "U2767" + }, + { + "id": "U2767Z2", + "name": "Českomalínská", + "isMetro": false, + "latitude": 14.403245, + "longitude": 50.10458, + "stopId": "U2767" + }, + { + "id": "U2768Z1", + "name": "Rooseveltova", + "isMetro": false, + "latitude": 14.399411, + "longitude": 50.103741, + "stopId": "U2768" + }, + { + "id": "U2768Z2", + "name": "Rooseveltova", + "isMetro": false, + "latitude": 14.400082, + "longitude": 50.103817, + "stopId": "U2768" + }, + { + "id": "U2769Z1", + "name": "Kbelský lesopark", + "isMetro": false, + "latitude": 14.535712, + "longitude": 50.135338, + "stopId": "U2769" + }, + { + "id": "U2769Z2", + "name": "Kbelský lesopark", + "isMetro": false, + "latitude": 14.536189, + "longitude": 50.135204, + "stopId": "U2769" + }, + { + "id": "U276Z1", + "name": "Kolonie", + "isMetro": false, + "latitude": 14.525363, + "longitude": 50.093292, + "stopId": "U276" + }, + { + "id": "U276Z2", + "name": "Kolonie", + "isMetro": false, + "latitude": 14.525008, + "longitude": 50.093491, + "stopId": "U276" + }, + { + "id": "U2770Z1", + "name": "OC Stromovka", + "isMetro": false, + "latitude": 14.430576, + "longitude": 50.101608, + "stopId": "U2770" + }, + { + "id": "U2771Z1", + "name": "Nemocnice Bohnice - Hlavní vrátnice", + "isMetro": false, + "latitude": 14.429072, + "longitude": 50.13615, + "stopId": "U2771" + }, + { + "id": "U2771Z2", + "name": "Nemocnice Bohnice - Hlavní vrátnice", + "isMetro": false, + "latitude": 14.428423, + "longitude": 50.135586, + "stopId": "U2771" + }, + { + "id": "U2772Z1", + "name": "Nemocnice Bohnice - Ředitelství", + "isMetro": false, + "latitude": 14.423561, + "longitude": 50.13401, + "stopId": "U2772" + }, + { + "id": "U2773Z1", + "name": "Nemocnice Bohnice - Divadlo Za plotem", + "isMetro": false, + "latitude": 14.419077, + "longitude": 50.134216, + "stopId": "U2773" + }, + { + "id": "U2774Z1", + "name": "Nemocnice Bohnice", + "isMetro": false, + "latitude": 14.418087, + "longitude": 50.137665, + "stopId": "U2774" + }, + { + "id": "U2775Z1", + "name": "Nemocnice Bohnice - Interna", + "isMetro": false, + "latitude": 14.421196, + "longitude": 50.136093, + "stopId": "U2775" + }, + { + "id": "U2776Z1", + "name": "Nemocnice Bohnice - Centrální terapie", + "isMetro": false, + "latitude": 14.423623, + "longitude": 50.137318, + "stopId": "U2776" + }, + { + "id": "U2778Z1", + "name": "Prebslova", + "isMetro": false, + "latitude": 14.522378, + "longitude": 50.168079, + "stopId": "U2778" + }, + { + "id": "U2778Z2", + "name": "Prebslova", + "isMetro": false, + "latitude": 14.522838, + "longitude": 50.166931, + "stopId": "U2778" + }, + { + "id": "U277Z1", + "name": "Škola Kolovraty", + "isMetro": false, + "latitude": 14.627685, + "longitude": 50.011101, + "stopId": "U277" + }, + { + "id": "U277Z2", + "name": "Škola Kolovraty", + "isMetro": false, + "latitude": 14.627518, + "longitude": 50.011234, + "stopId": "U277" + }, + { + "id": "U2780Z1", + "name": "Sukovská", + "isMetro": false, + "latitude": 14.536236, + "longitude": 50.01598, + "stopId": "U2780" + }, + { + "id": "U2780Z2", + "name": "Sukovská", + "isMetro": false, + "latitude": 14.534844, + "longitude": 50.01622, + "stopId": "U2780" + }, + { + "id": "U2781Z1", + "name": "Nádraží Zahradní Město", + "isMetro": false, + "latitude": 14.50424, + "longitude": 50.062298, + "stopId": "U2781" + }, + { + "id": "U2781Z2", + "name": "Nádraží Zahradní Město", + "isMetro": false, + "latitude": 14.503953, + "longitude": 50.06171, + "stopId": "U2781" + }, + { + "id": "U2781Z301", + "name": "Praha-Zahradní Město", + "isMetro": false, + "latitude": 14.504141, + "longitude": 50.062313, + "stopId": "U2781" + }, + { + "id": "U2784Z1", + "name": "Kotorská", + "isMetro": false, + "latitude": 14.436738, + "longitude": 50.05447, + "stopId": "U2784" + }, + { + "id": "U2784Z2", + "name": "Kotorská", + "isMetro": false, + "latitude": 14.436932, + "longitude": 50.054165, + "stopId": "U2784" + }, + { + "id": "U2786Z1", + "name": "Obchodní centrum Chuchle", + "isMetro": false, + "latitude": 14.392214, + "longitude": 50.018208, + "stopId": "U2786" + }, + { + "id": "U2787Z1", + "name": "Lukášova", + "isMetro": false, + "latitude": 14.458384, + "longitude": 50.088238, + "stopId": "U2787" + }, + { + "id": "U2787Z2", + "name": "Lukášova", + "isMetro": false, + "latitude": 14.456802, + "longitude": 50.087906, + "stopId": "U2787" + }, + { + "id": "U2788Z1", + "name": "U Prdlavky", + "isMetro": false, + "latitude": 14.445525, + "longitude": 50.081116, + "stopId": "U2788" + }, + { + "id": "U2788Z2", + "name": "U Prdlavky", + "isMetro": false, + "latitude": 14.445745, + "longitude": 50.081135, + "stopId": "U2788" + }, + { + "id": "U2789Z1", + "name": "Park Rajská zahrada", + "isMetro": false, + "latitude": 14.444002, + "longitude": 50.08252, + "stopId": "U2789" + }, + { + "id": "U2789Z2", + "name": "Park Rajská zahrada", + "isMetro": false, + "latitude": 14.444062, + "longitude": 50.082714, + "stopId": "U2789" + }, + { + "id": "U278Z1", + "name": "Zdiměřická", + "isMetro": false, + "latitude": 14.517734, + "longitude": 50.021969, + "stopId": "U278" + }, + { + "id": "U278Z2", + "name": "Zdiměřická", + "isMetro": false, + "latitude": 14.517451, + "longitude": 50.022518, + "stopId": "U278" + }, + { + "id": "U2791Z1", + "name": "Na Vypichu", + "isMetro": false, + "latitude": 14.340205, + "longitude": 50.084019, + "stopId": "U2791" + }, + { + "id": "U2791Z2", + "name": "Na Vypichu", + "isMetro": false, + "latitude": 14.339894, + "longitude": 50.084053, + "stopId": "U2791" + }, + { + "id": "U2794Z1", + "name": "Vožická", + "isMetro": false, + "latitude": 14.493223, + "longitude": 50.009281, + "stopId": "U2794" + }, + { + "id": "U2794Z2", + "name": "Vožická", + "isMetro": false, + "latitude": 14.493175, + "longitude": 50.009453, + "stopId": "U2794" + }, + { + "id": "U2796Z1", + "name": "Hamplova", + "isMetro": false, + "latitude": 14.525751, + "longitude": 50.159756, + "stopId": "U2796" + }, + { + "id": "U2796Z2", + "name": "Hamplova", + "isMetro": false, + "latitude": 14.525867, + "longitude": 50.159435, + "stopId": "U2796" + }, + { + "id": "U279Z1", + "name": "Komárovská", + "isMetro": false, + "latitude": 14.62145, + "longitude": 50.115234, + "stopId": "U279" + }, + { + "id": "U279Z2", + "name": "Komárovská", + "isMetro": false, + "latitude": 14.621451, + "longitude": 50.115383, + "stopId": "U279" + }, + { + "id": "U27Z1", + "name": "Sídliště Jinonice", + "isMetro": false, + "latitude": 14.365167, + "longitude": 50.051014, + "stopId": "U27" + }, + { + "id": "U27Z2", + "name": "Sídliště Jinonice", + "isMetro": false, + "latitude": 14.366109, + "longitude": 50.051109, + "stopId": "U27" + }, + { + "id": "U2801Z301", + "name": "Ostrá", + "isMetro": false, + "latitude": 14.89129, + "longitude": 50.187851, + "stopId": "U2801" + }, + { + "id": "U2802Z301", + "name": "Stratov", + "isMetro": false, + "latitude": 14.907785, + "longitude": 50.187466, + "stopId": "U2802" + }, + { + "id": "U2803Z1", + "name": "Vinařice", + "isMetro": false, + "latitude": 14.092856, + "longitude": 50.175373, + "stopId": "U2803" + }, + { + "id": "U2803Z2", + "name": "Vinařice", + "isMetro": false, + "latitude": 14.093122, + "longitude": 50.175465, + "stopId": "U2803" + }, + { + "id": "U2804Z301", + "name": "Nymburk město", + "isMetro": false, + "latitude": 15.033435, + "longitude": 50.184597, + "stopId": "U2804" + }, + { + "id": "U2806Z301", + "name": "Hořátev", + "isMetro": false, + "latitude": 15.029529, + "longitude": 50.153378, + "stopId": "U2806" + }, + { + "id": "U2807Z301", + "name": "Sadská", + "isMetro": false, + "latitude": 14.986869, + "longitude": 50.131351, + "stopId": "U2807" + }, + { + "id": "U2809Z301", + "name": "Hostouň u Prahy", + "isMetro": false, + "latitude": 14.209313, + "longitude": 50.104893, + "stopId": "U2809" + }, + { + "id": "U280Z1", + "name": "Komořany", + "isMetro": false, + "latitude": 14.410418, + "longitude": 49.992065, + "stopId": "U280" + }, + { + "id": "U280Z2", + "name": "Komořany", + "isMetro": false, + "latitude": 14.410825, + "longitude": 49.990299, + "stopId": "U280" + }, + { + "id": "U280Z3", + "name": "Komořany", + "isMetro": false, + "latitude": 14.410817, + "longitude": 49.9916, + "stopId": "U280" + }, + { + "id": "U280Z301", + "name": "Praha-Komořany", + "isMetro": false, + "latitude": 14.404417, + "longitude": 49.990955, + "stopId": "U280" + }, + { + "id": "U2810Z301", + "name": "Dobrovíz", + "isMetro": false, + "latitude": 14.219499, + "longitude": 50.11058, + "stopId": "U2810" + }, + { + "id": "U2811Z301", + "name": "Hovorčovice", + "isMetro": false, + "latitude": 14.527677, + "longitude": 50.180519, + "stopId": "U2811" + }, + { + "id": "U2812Z301", + "name": "Měšice u Prahy", + "isMetro": false, + "latitude": 14.513588, + "longitude": 50.204529, + "stopId": "U2812" + }, + { + "id": "U2814Z301", + "name": "Tišice", + "isMetro": false, + "latitude": 14.557274, + "longitude": 50.26778, + "stopId": "U2814" + }, + { + "id": "U2815Z1", + "name": "Všetaty,Žel.st.", + "isMetro": false, + "latitude": 14.58567, + "longitude": 50.282959, + "stopId": "U2815" + }, + { + "id": "U2815Z301", + "name": "Všetaty", + "isMetro": false, + "latitude": 14.585121, + "longitude": 50.282124, + "stopId": "U2815" + }, + { + "id": "U2816Z10", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.212509, + "longitude": 50.025188, + "stopId": "U2816" + }, + { + "id": "U2816Z12", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.213794, + "longitude": 50.024864, + "stopId": "U2816" + }, + { + "id": "U2816Z3", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.213596, + "longitude": 50.024792, + "stopId": "U2816" + }, + { + "id": "U2816Z301", + "name": "Kolín", + "isMetro": false, + "latitude": 15.21459, + "longitude": 50.025246, + "stopId": "U2816" + }, + { + "id": "U2816Z4", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.213689, + "longitude": 50.024734, + "stopId": "U2816" + }, + { + "id": "U2816Z5", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.213784, + "longitude": 50.024685, + "stopId": "U2816" + }, + { + "id": "U2816Z6", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.213913, + "longitude": 50.024635, + "stopId": "U2816" + }, + { + "id": "U2816Z7", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.214056, + "longitude": 50.024563, + "stopId": "U2816" + }, + { + "id": "U2816Z8", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.214082, + "longitude": 50.02454, + "stopId": "U2816" + }, + { + "id": "U2816Z9", + "name": "Kolín,nádraží", + "isMetro": false, + "latitude": 15.212688, + "longitude": 50.025108, + "stopId": "U2816" + }, + { + "id": "U2817Z1", + "name": "Kolín,Pošta", + "isMetro": false, + "latitude": 15.197545, + "longitude": 50.028439, + "stopId": "U2817" + }, + { + "id": "U2817Z2", + "name": "Kolín,Pošta", + "isMetro": false, + "latitude": 15.197581, + "longitude": 50.028561, + "stopId": "U2817" + }, + { + "id": "U2818Z301", + "name": "Nová Ves u Kolína", + "isMetro": false, + "latitude": 15.150841, + "longitude": 50.054966, + "stopId": "U2818" + }, + { + "id": "U2819Z1", + "name": "Velim,Žel.st.", + "isMetro": false, + "latitude": 15.127953, + "longitude": 50.067257, + "stopId": "U2819" + }, + { + "id": "U2819Z2", + "name": "Velim,Žel.st.", + "isMetro": false, + "latitude": 15.127645, + "longitude": 50.06731, + "stopId": "U2819" + }, + { + "id": "U2819Z301", + "name": "Velim", + "isMetro": false, + "latitude": 15.124402, + "longitude": 50.067699, + "stopId": "U2819" + }, + { + "id": "U281Z1", + "name": "Stodůlky-Bavorská", + "isMetro": false, + "latitude": 14.31087, + "longitude": 50.054127, + "stopId": "U281" + }, + { + "id": "U281Z3", + "name": "Stodůlky-Bavorská", + "isMetro": false, + "latitude": 14.310177, + "longitude": 50.05542, + "stopId": "U281" + }, + { + "id": "U281Z4", + "name": "Stodůlky-Bavorská", + "isMetro": false, + "latitude": 14.309804, + "longitude": 50.055317, + "stopId": "U281" + }, + { + "id": "U281Z6", + "name": "Stodůlky-Bavorská", + "isMetro": false, + "latitude": 14.31191, + "longitude": 50.053677, + "stopId": "U281" + }, + { + "id": "U281Z7", + "name": "Stodůlky-Bavorská", + "isMetro": false, + "latitude": 14.309825, + "longitude": 50.053291, + "stopId": "U281" + }, + { + "id": "U2821Z301", + "name": "Roztoky-Žalov", + "isMetro": false, + "latitude": 14.364411, + "longitude": 50.167912, + "stopId": "U2821" + }, + { + "id": "U2822Z301", + "name": "Úholičky", + "isMetro": false, + "latitude": 14.351867, + "longitude": 50.170109, + "stopId": "U2822" + }, + { + "id": "U2823Z301", + "name": "Řež", + "isMetro": false, + "latitude": 14.355288, + "longitude": 50.179176, + "stopId": "U2823" + }, + { + "id": "U2824Z301", + "name": "Libčice nad Vltavou-Letky", + "isMetro": false, + "latitude": 14.372608, + "longitude": 50.189163, + "stopId": "U2824" + }, + { + "id": "U2825Z301", + "name": "Libčice nad Vltavou", + "isMetro": false, + "latitude": 14.36502, + "longitude": 50.199371, + "stopId": "U2825" + }, + { + "id": "U2826Z301", + "name": "Dolany nad Vltavou", + "isMetro": false, + "latitude": 14.348917, + "longitude": 50.224358, + "stopId": "U2826" + }, + { + "id": "U2827Z301", + "name": "Nelahozeves zámek", + "isMetro": false, + "latitude": 14.302547, + "longitude": 50.263012, + "stopId": "U2827" + }, + { + "id": "U2828Z301", + "name": "Nelahozeves", + "isMetro": false, + "latitude": 14.308823, + "longitude": 50.283497, + "stopId": "U2828" + }, + { + "id": "U2829Z1", + "name": "Nová Ves,Nové Ouholice", + "isMetro": false, + "latitude": 14.31685, + "longitude": 50.302814, + "stopId": "U2829" + }, + { + "id": "U2829Z2", + "name": "Nová Ves,Nové Ouholice", + "isMetro": false, + "latitude": 14.316533, + "longitude": 50.3027, + "stopId": "U2829" + }, + { + "id": "U2829Z301", + "name": "Nové Ouholice", + "isMetro": false, + "latitude": 14.316872, + "longitude": 50.302238, + "stopId": "U2829" + }, + { + "id": "U282Z1", + "name": "Konvářka", + "isMetro": false, + "latitude": 14.401834, + "longitude": 50.054619, + "stopId": "U282" + }, + { + "id": "U2830Z301", + "name": "Mlčechvosty", + "isMetro": false, + "latitude": 14.347574, + "longitude": 50.319107, + "stopId": "U2830" + }, + { + "id": "U2831Z1", + "name": "Vraňany,Žel.st.", + "isMetro": false, + "latitude": 14.372066, + "longitude": 50.335049, + "stopId": "U2831" + }, + { + "id": "U2831Z2", + "name": "Vraňany,Žel.st.", + "isMetro": false, + "latitude": 14.3722, + "longitude": 50.334984, + "stopId": "U2831" + }, + { + "id": "U2831Z301", + "name": "Vraňany", + "isMetro": false, + "latitude": 14.371698, + "longitude": 50.335201, + "stopId": "U2831" + }, + { + "id": "U2833Z1", + "name": "Lichoceves,Noutonice,Nádraží", + "isMetro": false, + "latitude": 14.280037, + "longitude": 50.157734, + "stopId": "U2833" + }, + { + "id": "U2833Z2", + "name": "Lichoceves,Noutonice,Nádraží", + "isMetro": false, + "latitude": 14.280056, + "longitude": 50.157925, + "stopId": "U2833" + }, + { + "id": "U2833Z401", + "name": "Lichoceves,Noutonice,Nádraží", + "isMetro": false, + "latitude": 14.280037, + "longitude": 50.157734, + "stopId": "U2833" + }, + { + "id": "U2833Z402", + "name": "Lichoceves,Noutonice,Nádraží", + "isMetro": false, + "latitude": 14.280056, + "longitude": 50.157925, + "stopId": "U2833" + }, + { + "id": "U2835Z1", + "name": "Pavlov,žel.zast.", + "isMetro": false, + "latitude": 14.1668, + "longitude": 50.095821, + "stopId": "U2835" + }, + { + "id": "U2835Z2", + "name": "Pavlov,žel.zast.", + "isMetro": false, + "latitude": 14.166834, + "longitude": 50.095535, + "stopId": "U2835" + }, + { + "id": "U2835Z301", + "name": "Pavlov", + "isMetro": false, + "latitude": 14.165805, + "longitude": 50.09502, + "stopId": "U2835" + }, + { + "id": "U2836Z301", + "name": "Unhošť", + "isMetro": false, + "latitude": 14.136183, + "longitude": 50.105278, + "stopId": "U2836" + }, + { + "id": "U2837Z301", + "name": "Kladno", + "isMetro": false, + "latitude": 14.11333, + "longitude": 50.127781, + "stopId": "U2837" + }, + { + "id": "U2838Z301", + "name": "Hostivice-Litovice", + "isMetro": false, + "latitude": 14.224609, + "longitude": 50.071693, + "stopId": "U2838" + }, + { + "id": "U2839Z1", + "name": "Zákolany,Kováry,žel.zast.", + "isMetro": false, + "latitude": 14.246756, + "longitude": 50.183163, + "stopId": "U2839" + }, + { + "id": "U2839Z2", + "name": "Zákolany,Kováry,žel.zast.", + "isMetro": false, + "latitude": 14.246631, + "longitude": 50.18309, + "stopId": "U2839" + }, + { + "id": "U2839Z401", + "name": "Zákolany,Kováry,žel.zast.", + "isMetro": false, + "latitude": 14.246756, + "longitude": 50.183163, + "stopId": "U2839" + }, + { + "id": "U2839Z402", + "name": "Zákolany,Kováry,žel.zast.", + "isMetro": false, + "latitude": 14.246631, + "longitude": 50.18309, + "stopId": "U2839" + }, + { + "id": "U283Z1", + "name": "Nad Džbánem", + "isMetro": false, + "latitude": 14.336719, + "longitude": 50.093945, + "stopId": "U283" + }, + { + "id": "U283Z2", + "name": "Nad Džbánem", + "isMetro": false, + "latitude": 14.337201, + "longitude": 50.094101, + "stopId": "U283" + }, + { + "id": "U2840Z301", + "name": "Kladno-Rozdělov", + "isMetro": false, + "latitude": 14.067091, + "longitude": 50.131695, + "stopId": "U2840" + }, + { + "id": "U2841Z301", + "name": "Kamenné Žehrovice", + "isMetro": false, + "latitude": 14.038132, + "longitude": 50.140202, + "stopId": "U2841" + }, + { + "id": "U2842Z1", + "name": "Zákolany", + "isMetro": false, + "latitude": 14.248212, + "longitude": 50.196541, + "stopId": "U2842" + }, + { + "id": "U2842Z2", + "name": "Zákolany", + "isMetro": false, + "latitude": 14.248007, + "longitude": 50.196232, + "stopId": "U2842" + }, + { + "id": "U2842Z401", + "name": "Zákolany", + "isMetro": false, + "latitude": 14.248212, + "longitude": 50.196541, + "stopId": "U2842" + }, + { + "id": "U2842Z402", + "name": "Zákolany", + "isMetro": false, + "latitude": 14.248007, + "longitude": 50.196232, + "stopId": "U2842" + }, + { + "id": "U2845Z301", + "name": "Zadní Třebaň", + "isMetro": false, + "latitude": 14.202987, + "longitude": 49.918751, + "stopId": "U2845" + }, + { + "id": "U2846Z301", + "name": "Karlštejn", + "isMetro": false, + "latitude": 14.175151, + "longitude": 49.931999, + "stopId": "U2846" + }, + { + "id": "U2847Z301", + "name": "Srbsko", + "isMetro": false, + "latitude": 14.131135, + "longitude": 49.936954, + "stopId": "U2847" + }, + { + "id": "U2848Z1", + "name": "Beroun,autobusové nádraží", + "isMetro": false, + "latitude": 14.074885, + "longitude": 49.957626, + "stopId": "U2848" + }, + { + "id": "U2848Z2", + "name": "Beroun,autobusové nádraží", + "isMetro": false, + "latitude": 14.074426, + "longitude": 49.957584, + "stopId": "U2848" + }, + { + "id": "U2848Z3", + "name": "Beroun,autobusové nádraží", + "isMetro": false, + "latitude": 14.074095, + "longitude": 49.957439, + "stopId": "U2848" + }, + { + "id": "U2848Z301", + "name": "Beroun", + "isMetro": false, + "latitude": 14.076708, + "longitude": 49.957092, + "stopId": "U2848" + }, + { + "id": "U2848Z4", + "name": "Beroun,autobusové nádraží", + "isMetro": false, + "latitude": 14.074784, + "longitude": 49.957794, + "stopId": "U2848" + }, + { + "id": "U2848Z410", + "name": "Beroun,autobusové nádraží", + "isMetro": false, + "latitude": 14.07546, + "longitude": 49.958019, + "stopId": "U2848" + }, + { + "id": "U2848Z5", + "name": "Beroun,autobusové nádraží", + "isMetro": false, + "latitude": 14.074312, + "longitude": 49.957684, + "stopId": "U2848" + }, + { + "id": "U2848Z6", + "name": "Beroun,autobusové nádraží", + "isMetro": false, + "latitude": 14.073827, + "longitude": 49.957573, + "stopId": "U2848" + }, + { + "id": "U2849Z301", + "name": "Králův Dvůr", + "isMetro": false, + "latitude": 14.04018, + "longitude": 49.942818, + "stopId": "U2849" + }, + { + "id": "U284Z1", + "name": "Korandova", + "isMetro": false, + "latitude": 14.421083, + "longitude": 50.022469, + "stopId": "U284" + }, + { + "id": "U284Z2", + "name": "Korandova", + "isMetro": false, + "latitude": 14.42115, + "longitude": 50.022701, + "stopId": "U284" + }, + { + "id": "U2850Z1", + "name": "Králův Dvůr,Popovice", + "isMetro": false, + "latitude": 14.019246, + "longitude": 49.92918, + "stopId": "U2850" + }, + { + "id": "U2850Z301", + "name": "Králův Dvůr-Popovice", + "isMetro": false, + "latitude": 14.020623, + "longitude": 49.928501, + "stopId": "U2850" + }, + { + "id": "U2850Z401", + "name": "Králův Dvůr,Popovice", + "isMetro": false, + "latitude": 14.019246, + "longitude": 49.92918, + "stopId": "U2850" + }, + { + "id": "U2851Z301", + "name": "Klínec", + "isMetro": false, + "latitude": 14.359712, + "longitude": 49.896866, + "stopId": "U2851" + }, + { + "id": "U2852Z301", + "name": "Bojanovice", + "isMetro": false, + "latitude": 14.345178, + "longitude": 49.867886, + "stopId": "U2852" + }, + { + "id": "U2854Z301", + "name": "Malá Hraštice", + "isMetro": false, + "latitude": 14.269015, + "longitude": 49.809517, + "stopId": "U2854" + }, + { + "id": "U2855Z1", + "name": "Mokrovraty,Vilová čtvrť", + "isMetro": false, + "latitude": 14.234777, + "longitude": 49.794415, + "stopId": "U2855" + }, + { + "id": "U2855Z2", + "name": "Mokrovraty,Vilová čtvrť", + "isMetro": false, + "latitude": 14.234901, + "longitude": 49.794334, + "stopId": "U2855" + }, + { + "id": "U2855Z301", + "name": "Mokrovraty", + "isMetro": false, + "latitude": 14.236425, + "longitude": 49.796516, + "stopId": "U2855" + }, + { + "id": "U2856Z1", + "name": "Stará Huť,Žel.zast.", + "isMetro": false, + "latitude": 14.198392, + "longitude": 49.785534, + "stopId": "U2856" + }, + { + "id": "U2856Z2", + "name": "Stará Huť,Žel.zast.", + "isMetro": false, + "latitude": 14.198402, + "longitude": 49.785427, + "stopId": "U2856" + }, + { + "id": "U2856Z301", + "name": "Stará Huť", + "isMetro": false, + "latitude": 14.198606, + "longitude": 49.78574, + "stopId": "U2856" + }, + { + "id": "U2857Z301", + "name": "Davle", + "isMetro": false, + "latitude": 14.398888, + "longitude": 49.887753, + "stopId": "U2857" + }, + { + "id": "U2858Z301", + "name": "Petrov-Chlomek", + "isMetro": false, + "latitude": 14.410096, + "longitude": 49.876778, + "stopId": "U2858" + }, + { + "id": "U2859Z301", + "name": "Petrov u Prahy", + "isMetro": false, + "latitude": 14.428855, + "longitude": 49.879341, + "stopId": "U2859" + }, + { + "id": "U285Z1", + "name": "Korek", + "isMetro": false, + "latitude": 14.3596, + "longitude": 50.105499, + "stopId": "U285" + }, + { + "id": "U285Z2", + "name": "Korek", + "isMetro": false, + "latitude": 14.360717, + "longitude": 50.106068, + "stopId": "U285" + }, + { + "id": "U2860Z1", + "name": "Dobříš,Větrník", + "isMetro": false, + "latitude": 14.177135, + "longitude": 49.789268, + "stopId": "U2860" + }, + { + "id": "U2860Z2", + "name": "Dobříš,Větrník", + "isMetro": false, + "latitude": 14.177853, + "longitude": 49.789875, + "stopId": "U2860" + }, + { + "id": "U2861Z1", + "name": "Krhanice,Žel.st.", + "isMetro": false, + "latitude": 14.552682, + "longitude": 49.84938, + "stopId": "U2861" + }, + { + "id": "U2861Z2", + "name": "Krhanice,Žel.st.", + "isMetro": false, + "latitude": 14.552573, + "longitude": 49.849049, + "stopId": "U2861" + }, + { + "id": "U2861Z301", + "name": "Krhanice", + "isMetro": false, + "latitude": 14.553238, + "longitude": 49.848984, + "stopId": "U2861" + }, + { + "id": "U2862Z301", + "name": "Chrást nad Sázavou", + "isMetro": false, + "latitude": 14.577032, + "longitude": 49.839622, + "stopId": "U2862" + }, + { + "id": "U2863Z1", + "name": "Týnec n.Sáz.,Pecerady,Žel.st.", + "isMetro": false, + "latitude": 14.626341, + "longitude": 49.834255, + "stopId": "U2863" + }, + { + "id": "U2863Z2", + "name": "Týnec n.Sáz.,Pecerady,Žel.st.", + "isMetro": false, + "latitude": 14.626408, + "longitude": 49.834293, + "stopId": "U2863" + }, + { + "id": "U2863Z301", + "name": "Pecerady", + "isMetro": false, + "latitude": 14.625963, + "longitude": 49.83358, + "stopId": "U2863" + }, + { + "id": "U2864Z301", + "name": "Poříčí nad Sázavou-Svárov", + "isMetro": false, + "latitude": 14.652736, + "longitude": 49.841675, + "stopId": "U2864" + }, + { + "id": "U2865Z301", + "name": "Poříčí nad Sázavou", + "isMetro": false, + "latitude": 14.676922, + "longitude": 49.837517, + "stopId": "U2865" + }, + { + "id": "U2866Z1", + "name": "Podlešín", + "isMetro": false, + "latitude": 14.15842, + "longitude": 50.221062, + "stopId": "U2866" + }, + { + "id": "U2866Z2", + "name": "Podlešín", + "isMetro": false, + "latitude": 14.158152, + "longitude": 50.221024, + "stopId": "U2866" + }, + { + "id": "U2866Z401", + "name": "Podlešín", + "isMetro": false, + "latitude": 14.15842, + "longitude": 50.221062, + "stopId": "U2866" + }, + { + "id": "U2866Z402", + "name": "Podlešín", + "isMetro": false, + "latitude": 14.158152, + "longitude": 50.221024, + "stopId": "U2866" + }, + { + "id": "U2867Z1", + "name": "Slaný,Žel.zast.předměstí", + "isMetro": false, + "latitude": 14.10184, + "longitude": 50.226856, + "stopId": "U2867" + }, + { + "id": "U2867Z2", + "name": "Slaný,Žel.zast.předměstí", + "isMetro": false, + "latitude": 14.102057, + "longitude": 50.226727, + "stopId": "U2867" + }, + { + "id": "U2867Z401", + "name": "Slaný,Žel.zast.předměstí", + "isMetro": false, + "latitude": 14.10184, + "longitude": 50.226856, + "stopId": "U2867" + }, + { + "id": "U2867Z402", + "name": "Slaný,Žel.zast.předměstí", + "isMetro": false, + "latitude": 14.102057, + "longitude": 50.226727, + "stopId": "U2867" + }, + { + "id": "U2868Z1", + "name": "Slaný,žel.st.", + "isMetro": false, + "latitude": 14.076118, + "longitude": 50.228199, + "stopId": "U2868" + }, + { + "id": "U2868Z2", + "name": "Slaný,žel.st.", + "isMetro": false, + "latitude": 14.075777, + "longitude": 50.227577, + "stopId": "U2868" + }, + { + "id": "U2868Z301", + "name": "Slaný", + "isMetro": false, + "latitude": 14.075691, + "longitude": 50.228504, + "stopId": "U2868" + }, + { + "id": "U2868Z401", + "name": "Slaný,žel.st.", + "isMetro": false, + "latitude": 14.076118, + "longitude": 50.228199, + "stopId": "U2868" + }, + { + "id": "U2869Z301", + "name": "Zdice", + "isMetro": false, + "latitude": 13.979609, + "longitude": 49.907776, + "stopId": "U2869" + }, + { + "id": "U2869Z402", + "name": "Zdice,žel.st.", + "isMetro": false, + "latitude": 13.98065, + "longitude": 49.907486, + "stopId": "U2869" + }, + { + "id": "U286Z1", + "name": "Háje", + "isMetro": false, + "latitude": 14.527443, + "longitude": 50.03046, + "stopId": "U286" + }, + { + "id": "U286Z101", + "name": "Háje", + "isMetro": true, + "latitude": 14.527228, + "longitude": 50.030886, + "stopId": "U286" + }, + { + "id": "U286Z102", + "name": "Háje", + "isMetro": true, + "latitude": 14.527262, + "longitude": 50.030747, + "stopId": "U286" + }, + { + "id": "U286Z13", + "name": "Háje", + "isMetro": false, + "latitude": 14.525848, + "longitude": 50.030384, + "stopId": "U286" + }, + { + "id": "U286Z2", + "name": "Háje", + "isMetro": false, + "latitude": 14.526997, + "longitude": 50.030449, + "stopId": "U286" + }, + { + "id": "U286Z3", + "name": "Háje", + "isMetro": false, + "latitude": 14.525848, + "longitude": 50.030384, + "stopId": "U286" + }, + { + "id": "U286Z4", + "name": "Háje", + "isMetro": false, + "latitude": 14.525379, + "longitude": 50.030361, + "stopId": "U286" + }, + { + "id": "U286Z5", + "name": "Háje", + "isMetro": false, + "latitude": 14.529568, + "longitude": 50.030666, + "stopId": "U286" + }, + { + "id": "U286Z72", + "name": "Háje", + "isMetro": false, + "latitude": 14.526997, + "longitude": 50.030449, + "stopId": "U286" + }, + { + "id": "U286Z82", + "name": "Háje", + "isMetro": false, + "latitude": 14.526997, + "longitude": 50.030449, + "stopId": "U286" + }, + { + "id": "U2870Z301", + "name": "Cerhenice", + "isMetro": false, + "latitude": 15.07865, + "longitude": 50.07814, + "stopId": "U2870" + }, + { + "id": "U2873Z301", + "name": "Kolín zastávka", + "isMetro": false, + "latitude": 15.194831, + "longitude": 50.030884, + "stopId": "U2873" + }, + { + "id": "U2874Z301", + "name": "Kamenné Zboží", + "isMetro": false, + "latitude": 15.003152, + "longitude": 50.188976, + "stopId": "U2874" + }, + { + "id": "U2875Z301", + "name": "Velké Zboží", + "isMetro": false, + "latitude": 15.100872, + "longitude": 50.164673, + "stopId": "U2875" + }, + { + "id": "U2876Z1", + "name": "Vinařice,7.ulice", + "isMetro": false, + "latitude": 14.089141, + "longitude": 50.171406, + "stopId": "U2876" + }, + { + "id": "U2876Z2", + "name": "Vinařice,7.ulice", + "isMetro": false, + "latitude": 14.089272, + "longitude": 50.171471, + "stopId": "U2876" + }, + { + "id": "U2877Z301", + "name": "Libice nad Cidlinou", + "isMetro": false, + "latitude": 15.183044, + "longitude": 50.127666, + "stopId": "U2877" + }, + { + "id": "U2878Z301", + "name": "Velký Osek", + "isMetro": false, + "latitude": 15.19344, + "longitude": 50.101944, + "stopId": "U2878" + }, + { + "id": "U2879Z301", + "name": "Veltruby", + "isMetro": false, + "latitude": 15.200069, + "longitude": 50.073631, + "stopId": "U2879" + }, + { + "id": "U287Z3", + "name": "Ďáblice", + "isMetro": false, + "latitude": 14.487205, + "longitude": 50.14851, + "stopId": "U287" + }, + { + "id": "U287Z4", + "name": "Ďáblice", + "isMetro": false, + "latitude": 14.486826, + "longitude": 50.14859, + "stopId": "U287" + }, + { + "id": "U287Z5", + "name": "Ďáblice", + "isMetro": false, + "latitude": 14.486221, + "longitude": 50.149235, + "stopId": "U287" + }, + { + "id": "U287Z6", + "name": "Ďáblice", + "isMetro": false, + "latitude": 14.486059, + "longitude": 50.149349, + "stopId": "U287" + }, + { + "id": "U2880Z301", + "name": "Kolín-Zálabí", + "isMetro": false, + "latitude": 15.210147, + "longitude": 50.037239, + "stopId": "U2880" + }, + { + "id": "U2881Z1", + "name": "Kladno,Kübeck", + "isMetro": false, + "latitude": 14.114142, + "longitude": 50.162224, + "stopId": "U2881" + }, + { + "id": "U2881Z2", + "name": "Kladno,Kübeck", + "isMetro": false, + "latitude": 14.114357, + "longitude": 50.161789, + "stopId": "U2881" + }, + { + "id": "U2881Z301", + "name": "Kladno-Švermov", + "isMetro": false, + "latitude": 14.115002, + "longitude": 50.161549, + "stopId": "U2881" + }, + { + "id": "U2882Z301", + "name": "Kladno-Dubí", + "isMetro": false, + "latitude": 14.129647, + "longitude": 50.163399, + "stopId": "U2882" + }, + { + "id": "U2884Z1", + "name": "Brandýsek,žel.st.", + "isMetro": false, + "latitude": 14.171258, + "longitude": 50.185257, + "stopId": "U2884" + }, + { + "id": "U2884Z2", + "name": "Brandýsek,žel.st.", + "isMetro": false, + "latitude": 14.171475, + "longitude": 50.184917, + "stopId": "U2884" + }, + { + "id": "U2884Z301", + "name": "Brandýsek", + "isMetro": false, + "latitude": 14.173064, + "longitude": 50.184139, + "stopId": "U2884" + }, + { + "id": "U2885Z1", + "name": "Dřetovice", + "isMetro": false, + "latitude": 14.209261, + "longitude": 50.183971, + "stopId": "U2885" + }, + { + "id": "U2885Z301", + "name": "Dřetovice", + "isMetro": false, + "latitude": 14.201449, + "longitude": 50.189213, + "stopId": "U2885" + }, + { + "id": "U2886Z301", + "name": "Zákolany", + "isMetro": false, + "latitude": 14.251492, + "longitude": 50.199768, + "stopId": "U2886" + }, + { + "id": "U2887Z301", + "name": "Otvovice", + "isMetro": false, + "latitude": 14.27024, + "longitude": 50.21032, + "stopId": "U2887" + }, + { + "id": "U2888Z1", + "name": "Kralupy n.Vlt.,Minice", + "isMetro": false, + "latitude": 14.29996, + "longitude": 50.223351, + "stopId": "U2888" + }, + { + "id": "U2888Z301", + "name": "Kralupy nad Vltavou-Minice", + "isMetro": false, + "latitude": 14.29788, + "longitude": 50.224422, + "stopId": "U2888" + }, + { + "id": "U2889Z1", + "name": "Kladno,žel.zast.město", + "isMetro": false, + "latitude": 14.082594, + "longitude": 50.14106, + "stopId": "U2889" + }, + { + "id": "U2889Z2", + "name": "Kladno,žel.zast.město", + "isMetro": false, + "latitude": 14.08132, + "longitude": 50.140621, + "stopId": "U2889" + }, + { + "id": "U2889Z3", + "name": "Kladno,žel.zast.město", + "isMetro": false, + "latitude": 14.083274, + "longitude": 50.140926, + "stopId": "U2889" + }, + { + "id": "U2889Z301", + "name": "Kladno město", + "isMetro": false, + "latitude": 14.083755, + "longitude": 50.141933, + "stopId": "U2889" + }, + { + "id": "U2890Z301", + "name": "Běleč", + "isMetro": false, + "latitude": 14.178277, + "longitude": 49.909576, + "stopId": "U2890" + }, + { + "id": "U2890Z451", + "name": "Běleč", + "isMetro": false, + "latitude": 14.178049, + "longitude": 49.909447, + "stopId": "U2890" + }, + { + "id": "U2891Z1", + "name": "Babice,U hřiště", + "isMetro": false, + "latitude": 14.719258, + "longitude": 50.009708, + "stopId": "U2891" + }, + { + "id": "U2891Z2", + "name": "Babice,U hřiště", + "isMetro": false, + "latitude": 14.718761, + "longitude": 50.009792, + "stopId": "U2891" + }, + { + "id": "U2892Z301", + "name": "Bošice", + "isMetro": false, + "latitude": 15.015347, + "longitude": 50.015251, + "stopId": "U2892" + }, + { + "id": "U2893Z1", + "name": "Svojšice,Votelež", + "isMetro": false, + "latitude": 15.010224, + "longitude": 49.999435, + "stopId": "U2893" + }, + { + "id": "U2893Z2", + "name": "Svojšice,Votelež", + "isMetro": false, + "latitude": 15.010039, + "longitude": 49.999523, + "stopId": "U2893" + }, + { + "id": "U2896Z301", + "name": "Chotutice", + "isMetro": false, + "latitude": 14.996415, + "longitude": 50.071526, + "stopId": "U2896" + }, + { + "id": "U2897Z301", + "name": "Chroustov", + "isMetro": false, + "latitude": 14.997296, + "longitude": 50.06496, + "stopId": "U2897" + }, + { + "id": "U2898Z1", + "name": "Kačice", + "isMetro": false, + "latitude": 13.988034, + "longitude": 50.162369, + "stopId": "U2898" + }, + { + "id": "U2898Z301", + "name": "Kačice", + "isMetro": false, + "latitude": 13.995312, + "longitude": 50.156445, + "stopId": "U2898" + }, + { + "id": "U289Z1", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.362923, + "longitude": 50.069565, + "stopId": "U289" + }, + { + "id": "U289Z2", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.362015, + "longitude": 50.069603, + "stopId": "U289" + }, + { + "id": "U289Z3", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.362046, + "longitude": 50.06995, + "stopId": "U289" + }, + { + "id": "U289Z4", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.363593, + "longitude": 50.069855, + "stopId": "U289" + }, + { + "id": "U289Z5", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.362046, + "longitude": 50.069996, + "stopId": "U289" + }, + { + "id": "U289Z6", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.363597, + "longitude": 50.069889, + "stopId": "U289" + }, + { + "id": "U289Z7", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.36125, + "longitude": 50.070717, + "stopId": "U289" + }, + { + "id": "U289Z8", + "name": "Kotlářka", + "isMetro": false, + "latitude": 14.361224, + "longitude": 50.070103, + "stopId": "U289" + }, + { + "id": "U28Z1", + "name": "Běchovice", + "isMetro": false, + "latitude": 14.617604, + "longitude": 50.08086, + "stopId": "U28" + }, + { + "id": "U28Z2", + "name": "Běchovice", + "isMetro": false, + "latitude": 14.617267, + "longitude": 50.081039, + "stopId": "U28" + }, + { + "id": "U28Z3", + "name": "Běchovice", + "isMetro": false, + "latitude": 14.616508, + "longitude": 50.081627, + "stopId": "U28" + }, + { + "id": "U28Z4", + "name": "Běchovice", + "isMetro": false, + "latitude": 14.616301, + "longitude": 50.081306, + "stopId": "U28" + }, + { + "id": "U2901Z2", + "name": "Mílová", + "isMetro": false, + "latitude": 14.466693, + "longitude": 50.009964, + "stopId": "U2901" + }, + { + "id": "U2903Z301", + "name": "Kralupy nad Vltavou předměstí", + "isMetro": false, + "latitude": 14.28384, + "longitude": 50.231892, + "stopId": "U2903" + }, + { + "id": "U2904Z301", + "name": "Ledečko", + "isMetro": false, + "latitude": 14.932351, + "longitude": 49.84737, + "stopId": "U2904" + }, + { + "id": "U2905Z301", + "name": "Liteň", + "isMetro": false, + "latitude": 14.156108, + "longitude": 49.903366, + "stopId": "U2905" + }, + { + "id": "U2905Z402", + "name": "Liteň,kino", + "isMetro": false, + "latitude": 14.152837, + "longitude": 49.903072, + "stopId": "U2905" + }, + { + "id": "U2906Z401", + "name": "Lochovice,žel.st.", + "isMetro": false, + "latitude": 13.975495, + "longitude": 49.846519, + "stopId": "U2906" + }, + { + "id": "U2906Z402", + "name": "Lochovice,žel.st.", + "isMetro": false, + "latitude": 13.975371, + "longitude": 49.84647, + "stopId": "U2906" + }, + { + "id": "U2906Z451", + "name": "Lochovice,žel.st.", + "isMetro": false, + "latitude": 13.974913, + "longitude": 49.846451, + "stopId": "U2906" + }, + { + "id": "U2907Z301", + "name": "Lštění", + "isMetro": false, + "latitude": 14.715643, + "longitude": 49.863873, + "stopId": "U2907" + }, + { + "id": "U2908Z301", + "name": "Lužná u Rakovníka", + "isMetro": false, + "latitude": 13.770295, + "longitude": 50.144905, + "stopId": "U2908" + }, + { + "id": "U2909Z301", + "name": "Lysá nad Labem-Dvorce", + "isMetro": false, + "latitude": 14.801713, + "longitude": 50.200268, + "stopId": "U2909" + }, + { + "id": "U290Z1", + "name": "Kovárna", + "isMetro": false, + "latitude": 14.416606, + "longitude": 50.117462, + "stopId": "U290" + }, + { + "id": "U290Z2", + "name": "Kovárna", + "isMetro": false, + "latitude": 14.416586, + "longitude": 50.117294, + "stopId": "U290" + }, + { + "id": "U2910Z1", + "name": "Malý Újezd", + "isMetro": false, + "latitude": 14.533006, + "longitude": 50.331203, + "stopId": "U2910" + }, + { + "id": "U2910Z301", + "name": "Malý Újezd", + "isMetro": false, + "latitude": 14.525868, + "longitude": 50.333332, + "stopId": "U2910" + }, + { + "id": "U2911Z301", + "name": "Mělník", + "isMetro": false, + "latitude": 14.492393, + "longitude": 50.353031, + "stopId": "U2911" + }, + { + "id": "U2915Z401", + "name": "Neuměřice", + "isMetro": false, + "latitude": 14.219562, + "longitude": 50.241669, + "stopId": "U2915" + }, + { + "id": "U2915Z402", + "name": "Neuměřice", + "isMetro": false, + "latitude": 14.219631, + "longitude": 50.241764, + "stopId": "U2915" + }, + { + "id": "U2916Z1", + "name": "Neumětely,žel.zast.", + "isMetro": false, + "latitude": 14.012188, + "longitude": 49.850258, + "stopId": "U2916" + }, + { + "id": "U2916Z2", + "name": "Neumětely,žel.zast.", + "isMetro": false, + "latitude": 14.012142, + "longitude": 49.850212, + "stopId": "U2916" + }, + { + "id": "U2916Z401", + "name": "Neumětely,žel.zast.", + "isMetro": false, + "latitude": 14.012188, + "longitude": 49.850258, + "stopId": "U2916" + }, + { + "id": "U2916Z402", + "name": "Neumětely,žel.zast.", + "isMetro": false, + "latitude": 14.012142, + "longitude": 49.850212, + "stopId": "U2916" + }, + { + "id": "U2917Z1", + "name": "Nové Strašecí,Žel.st.", + "isMetro": false, + "latitude": 13.878407, + "longitude": 50.152142, + "stopId": "U2917" + }, + { + "id": "U2917Z2", + "name": "Nové Strašecí,Žel.st.", + "isMetro": false, + "latitude": 13.878207, + "longitude": 50.152298, + "stopId": "U2917" + }, + { + "id": "U2917Z301", + "name": "Nové Strašecí", + "isMetro": false, + "latitude": 13.881832, + "longitude": 50.151985, + "stopId": "U2917" + }, + { + "id": "U2918Z1", + "name": "Olovnice", + "isMetro": false, + "latitude": 14.241819, + "longitude": 50.234921, + "stopId": "U2918" + }, + { + "id": "U2918Z2", + "name": "Olovnice", + "isMetro": false, + "latitude": 14.241663, + "longitude": 50.235092, + "stopId": "U2918" + }, + { + "id": "U2918Z401", + "name": "Olovnice", + "isMetro": false, + "latitude": 14.241819, + "longitude": 50.234921, + "stopId": "U2918" + }, + { + "id": "U2918Z402", + "name": "Olovnice", + "isMetro": false, + "latitude": 14.241663, + "longitude": 50.235092, + "stopId": "U2918" + }, + { + "id": "U2919Z301", + "name": "Olovnice zast.", + "isMetro": false, + "latitude": 14.253822, + "longitude": 50.246655, + "stopId": "U2919" + }, + { + "id": "U291Z1", + "name": "Liběchovská", + "isMetro": false, + "latitude": 14.472224, + "longitude": 50.144127, + "stopId": "U291" + }, + { + "id": "U291Z2", + "name": "Liběchovská", + "isMetro": false, + "latitude": 14.472308, + "longitude": 50.143978, + "stopId": "U291" + }, + { + "id": "U2920Z1", + "name": "Osov,žel.zast.", + "isMetro": false, + "latitude": 14.084491, + "longitude": 49.83786, + "stopId": "U2920" + }, + { + "id": "U2920Z2", + "name": "Osov,žel.zast.", + "isMetro": false, + "latitude": 14.084524, + "longitude": 49.837963, + "stopId": "U2920" + }, + { + "id": "U2920Z401", + "name": "Osov,žel.zast.", + "isMetro": false, + "latitude": 14.084491, + "longitude": 49.83786, + "stopId": "U2920" + }, + { + "id": "U2920Z402", + "name": "Osov,žel.zast.", + "isMetro": false, + "latitude": 14.084524, + "longitude": 49.837963, + "stopId": "U2920" + }, + { + "id": "U2921Z1", + "name": "Nehvizdy,Na Bulánce", + "isMetro": false, + "latitude": 14.71778, + "longitude": 50.129089, + "stopId": "U2921" + }, + { + "id": "U2921Z2", + "name": "Nehvizdy,Na Bulánce", + "isMetro": false, + "latitude": 14.71969, + "longitude": 50.129498, + "stopId": "U2921" + }, + { + "id": "U2923Z1", + "name": "Plaňany,Žel.st.", + "isMetro": false, + "latitude": 15.017598, + "longitude": 50.049618, + "stopId": "U2923" + }, + { + "id": "U2923Z2", + "name": "Plaňany,Žel.st.", + "isMetro": false, + "latitude": 15.017159, + "longitude": 50.049549, + "stopId": "U2923" + }, + { + "id": "U2923Z301", + "name": "Plaňany", + "isMetro": false, + "latitude": 15.016168, + "longitude": 50.04945, + "stopId": "U2923" + }, + { + "id": "U2924Z301", + "name": "Plaňany zast.", + "isMetro": false, + "latitude": 15.023973, + "longitude": 50.045616, + "stopId": "U2924" + }, + { + "id": "U2925Z301", + "name": "Radim", + "isMetro": false, + "latitude": 15.007356, + "longitude": 50.073338, + "stopId": "U2925" + }, + { + "id": "U2926Z1", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.733406, + "longitude": 50.100452, + "stopId": "U2926" + }, + { + "id": "U2926Z10", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.733859, + "longitude": 50.100464, + "stopId": "U2926" + }, + { + "id": "U2926Z12", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.733414, + "longitude": 50.10059, + "stopId": "U2926" + }, + { + "id": "U2926Z15", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.734167, + "longitude": 50.100742, + "stopId": "U2926" + }, + { + "id": "U2926Z16", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.733886, + "longitude": 50.100739, + "stopId": "U2926" + }, + { + "id": "U2926Z17", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.733642, + "longitude": 50.100731, + "stopId": "U2926" + }, + { + "id": "U2926Z18", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.733633, + "longitude": 50.100838, + "stopId": "U2926" + }, + { + "id": "U2926Z19", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.733902, + "longitude": 50.100845, + "stopId": "U2926" + }, + { + "id": "U2926Z30", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.732686, + "longitude": 50.100647, + "stopId": "U2926" + }, + { + "id": "U2926Z301", + "name": "Rakovník", + "isMetro": false, + "latitude": 13.735994, + "longitude": 50.099072, + "stopId": "U2926" + }, + { + "id": "U2926Z9", + "name": "Rakovník,aut.st.", + "isMetro": false, + "latitude": 13.734063, + "longitude": 50.100403, + "stopId": "U2926" + }, + { + "id": "U2927Z1", + "name": "Rakovník,žel.zast.", + "isMetro": false, + "latitude": 13.749382, + "longitude": 50.104076, + "stopId": "U2927" + }, + { + "id": "U2927Z2", + "name": "Rakovník,žel.zast.", + "isMetro": false, + "latitude": 13.749813, + "longitude": 50.104218, + "stopId": "U2927" + }, + { + "id": "U2927Z301", + "name": "Rakovník zast.", + "isMetro": false, + "latitude": 13.749713, + "longitude": 50.105732, + "stopId": "U2927" + }, + { + "id": "U2928Z301", + "name": "Rynholec", + "isMetro": false, + "latitude": 13.92605, + "longitude": 50.138626, + "stopId": "U2928" + }, + { + "id": "U2929Z301", + "name": "Řevničov", + "isMetro": false, + "latitude": 13.833009, + "longitude": 50.149036, + "stopId": "U2929" + }, + { + "id": "U292Z1", + "name": "Kovošrot", + "isMetro": false, + "latitude": 14.542295, + "longitude": 50.061985, + "stopId": "U292" + }, + { + "id": "U292Z2", + "name": "Kovošrot", + "isMetro": false, + "latitude": 14.542034, + "longitude": 50.062183, + "stopId": "U292" + }, + { + "id": "U2930Z301", + "name": "Samopše", + "isMetro": false, + "latitude": 14.916269, + "longitude": 49.860664, + "stopId": "U2930" + }, + { + "id": "U2931Z301", + "name": "Sázava zast.", + "isMetro": false, + "latitude": 14.893823, + "longitude": 49.869301, + "stopId": "U2931" + }, + { + "id": "U2932Z1", + "name": "Liteň,Leč,rozc.", + "isMetro": false, + "latitude": 14.148784, + "longitude": 49.888172, + "stopId": "U2932" + }, + { + "id": "U2932Z2", + "name": "Liteň,Leč,rozc.", + "isMetro": false, + "latitude": 14.14866, + "longitude": 49.888134, + "stopId": "U2932" + }, + { + "id": "U2933Z301", + "name": "Stochov", + "isMetro": false, + "latitude": 13.965394, + "longitude": 50.141243, + "stopId": "U2933" + }, + { + "id": "U2934Z1", + "name": "Toušice", + "isMetro": false, + "latitude": 15.004266, + "longitude": 49.986423, + "stopId": "U2934" + }, + { + "id": "U2935Z301", + "name": "Velká Bučina", + "isMetro": false, + "latitude": 14.240045, + "longitude": 50.267216, + "stopId": "U2935" + }, + { + "id": "U2936Z1", + "name": "Velvary,žel.st.", + "isMetro": false, + "latitude": 14.242981, + "longitude": 50.282906, + "stopId": "U2936" + }, + { + "id": "U2936Z2", + "name": "Velvary,žel.st.", + "isMetro": false, + "latitude": 14.243039, + "longitude": 50.282852, + "stopId": "U2936" + }, + { + "id": "U2936Z301", + "name": "Velvary", + "isMetro": false, + "latitude": 14.243307, + "longitude": 50.282238, + "stopId": "U2936" + }, + { + "id": "U2937Z1", + "name": "Vižina", + "isMetro": false, + "latitude": 14.102121, + "longitude": 49.857574, + "stopId": "U2937" + }, + { + "id": "U2937Z2", + "name": "Vižina", + "isMetro": false, + "latitude": 14.102247, + "longitude": 49.857521, + "stopId": "U2937" + }, + { + "id": "U2937Z401", + "name": "Vižina", + "isMetro": false, + "latitude": 14.102121, + "longitude": 49.857574, + "stopId": "U2937" + }, + { + "id": "U2937Z402", + "name": "Vižina", + "isMetro": false, + "latitude": 14.102247, + "longitude": 49.857521, + "stopId": "U2937" + }, + { + "id": "U2938Z301", + "name": "Vrbčany", + "isMetro": false, + "latitude": 15.000293, + "longitude": 50.054749, + "stopId": "U2938" + }, + { + "id": "U2939Z1", + "name": "Všeradice,žel.zast.", + "isMetro": false, + "latitude": 14.107363, + "longitude": 49.867874, + "stopId": "U2939" + }, + { + "id": "U2939Z2", + "name": "Všeradice,žel.zast.", + "isMetro": false, + "latitude": 14.107324, + "longitude": 49.868088, + "stopId": "U2939" + }, + { + "id": "U2939Z401", + "name": "Všeradice,žel.zast.", + "isMetro": false, + "latitude": 14.107363, + "longitude": 49.867874, + "stopId": "U2939" + }, + { + "id": "U2939Z402", + "name": "Všeradice,žel.zast.", + "isMetro": false, + "latitude": 14.107324, + "longitude": 49.868088, + "stopId": "U2939" + }, + { + "id": "U293Z1", + "name": "Třeboradický hřbitov", + "isMetro": false, + "latitude": 14.523067, + "longitude": 50.159351, + "stopId": "U293" + }, + { + "id": "U293Z2", + "name": "Třeboradický hřbitov", + "isMetro": false, + "latitude": 14.523735, + "longitude": 50.159187, + "stopId": "U293" + }, + { + "id": "U2940Z301", + "name": "Zalešany", + "isMetro": false, + "latitude": 15.008385, + "longitude": 50.034931, + "stopId": "U2940" + }, + { + "id": "U2942Z1", + "name": "Kralupy n.Vlt.,Zeměchy,Žel.zast.", + "isMetro": false, + "latitude": 14.26678, + "longitude": 50.232788, + "stopId": "U2942" + }, + { + "id": "U2942Z2", + "name": "Kralupy n.Vlt.,Zeměchy,Žel.zast.", + "isMetro": false, + "latitude": 14.26658, + "longitude": 50.232838, + "stopId": "U2942" + }, + { + "id": "U2942Z401", + "name": "Kralupy n.Vlt.,Zeměchy,Žel.zast.", + "isMetro": false, + "latitude": 14.26678, + "longitude": 50.232788, + "stopId": "U2942" + }, + { + "id": "U2942Z402", + "name": "Kralupy n.Vlt.,Zeměchy,Žel.zast.", + "isMetro": false, + "latitude": 14.26658, + "longitude": 50.232838, + "stopId": "U2942" + }, + { + "id": "U2943Z301", + "name": "Zlenice", + "isMetro": false, + "latitude": 14.733235, + "longitude": 49.879368, + "stopId": "U2943" + }, + { + "id": "U2944Z1", + "name": "Zvoleněves", + "isMetro": false, + "latitude": 14.182743, + "longitude": 50.23061, + "stopId": "U2944" + }, + { + "id": "U2944Z2", + "name": "Zvoleněves", + "isMetro": false, + "latitude": 14.182838, + "longitude": 50.23069, + "stopId": "U2944" + }, + { + "id": "U2945Z301", + "name": "Žabonosy", + "isMetro": false, + "latitude": 15.024271, + "longitude": 50.039684, + "stopId": "U2945" + }, + { + "id": "U2946Z1", + "name": "Hostomice,Radouš", + "isMetro": false, + "latitude": 14.018748, + "longitude": 49.83876, + "stopId": "U2946" + }, + { + "id": "U2946Z2", + "name": "Hostomice,Radouš", + "isMetro": false, + "latitude": 14.018961, + "longitude": 49.838753, + "stopId": "U2946" + }, + { + "id": "U2946Z401", + "name": "Hostomice,Radouš", + "isMetro": false, + "latitude": 14.018748, + "longitude": 49.83876, + "stopId": "U2946" + }, + { + "id": "U2946Z402", + "name": "Hostomice,Radouš", + "isMetro": false, + "latitude": 14.018961, + "longitude": 49.838753, + "stopId": "U2946" + }, + { + "id": "U2947Z301", + "name": "Hvězdonice", + "isMetro": false, + "latitude": 14.771328, + "longitude": 49.872509, + "stopId": "U2947" + }, + { + "id": "U2948Z1", + "name": "Odřepsy", + "isMetro": false, + "latitude": 15.189496, + "longitude": 50.145691, + "stopId": "U2948" + }, + { + "id": "U2948Z2", + "name": "Odřepsy", + "isMetro": false, + "latitude": 15.189394, + "longitude": 50.145836, + "stopId": "U2948" + }, + { + "id": "U2948Z4", + "name": "Odřepsy", + "isMetro": false, + "latitude": 15.188736, + "longitude": 50.144657, + "stopId": "U2948" + }, + { + "id": "U2949Z1", + "name": "Kolaje", + "isMetro": false, + "latitude": 15.234104, + "longitude": 50.157997, + "stopId": "U2949" + }, + { + "id": "U2949Z2", + "name": "Kolaje", + "isMetro": false, + "latitude": 15.233602, + "longitude": 50.158024, + "stopId": "U2949" + }, + { + "id": "U294Z1", + "name": "Královice", + "isMetro": false, + "latitude": 14.635584, + "longitude": 50.03693, + "stopId": "U294" + }, + { + "id": "U294Z2", + "name": "Královice", + "isMetro": false, + "latitude": 14.635613, + "longitude": 50.037151, + "stopId": "U294" + }, + { + "id": "U2952Z1", + "name": "Šporkova", + "isMetro": false, + "latitude": 14.398101, + "longitude": 50.087399, + "stopId": "U2952" + }, + { + "id": "U2953Z1", + "name": "Nemocnice pod Petřínem", + "isMetro": false, + "latitude": 14.396353, + "longitude": 50.086884, + "stopId": "U2953" + }, + { + "id": "U2956Z1", + "name": "Petrské náměstí", + "isMetro": false, + "latitude": 14.431917, + "longitude": 50.091373, + "stopId": "U2956" + }, + { + "id": "U2956Z2", + "name": "Petrské náměstí", + "isMetro": false, + "latitude": 14.432562, + "longitude": 50.091213, + "stopId": "U2956" + }, + { + "id": "U2957Z1", + "name": "Haštalské náměstí", + "isMetro": false, + "latitude": 14.42404, + "longitude": 50.091, + "stopId": "U2957" + }, + { + "id": "U2958Z1", + "name": "U Staré školy", + "isMetro": false, + "latitude": 14.421087, + "longitude": 50.090176, + "stopId": "U2958" + }, + { + "id": "U2959Z1", + "name": "Pařížská", + "isMetro": false, + "latitude": 14.419112, + "longitude": 50.089428, + "stopId": "U2959" + }, + { + "id": "U2962Z1", + "name": "Staroměstské náměstí", + "isMetro": false, + "latitude": 14.420891, + "longitude": 50.087936, + "stopId": "U2962" + }, + { + "id": "U2963Z1", + "name": "Masná", + "isMetro": false, + "latitude": 14.424117, + "longitude": 50.08923, + "stopId": "U2963" + }, + { + "id": "U2964Z1", + "name": "Ohradní", + "isMetro": false, + "latitude": 14.453601, + "longitude": 50.052368, + "stopId": "U2964" + }, + { + "id": "U2965Z1", + "name": "Nymburk,Lada dvůr", + "isMetro": false, + "latitude": 15.021838, + "longitude": 50.163273, + "stopId": "U2965" + }, + { + "id": "U2965Z2", + "name": "Nymburk,Lada dvůr", + "isMetro": false, + "latitude": 15.021839, + "longitude": 50.163422, + "stopId": "U2965" + }, + { + "id": "U2966Z1", + "name": "Nymburk,Lada Zátiší", + "isMetro": false, + "latitude": 15.026891, + "longitude": 50.170078, + "stopId": "U2966" + }, + { + "id": "U2966Z2", + "name": "Nymburk,Lada Zátiší", + "isMetro": false, + "latitude": 15.026716, + "longitude": 50.170013, + "stopId": "U2966" + }, + { + "id": "U2967Z1", + "name": "Nymburk,Pražská", + "isMetro": false, + "latitude": 15.039161, + "longitude": 50.177895, + "stopId": "U2967" + }, + { + "id": "U2967Z2", + "name": "Nymburk,Pražská", + "isMetro": false, + "latitude": 15.038698, + "longitude": 50.177948, + "stopId": "U2967" + }, + { + "id": "U2968Z1", + "name": "Nymburk,Zálabí PVT", + "isMetro": false, + "latitude": 15.044653, + "longitude": 50.180656, + "stopId": "U2968" + }, + { + "id": "U2968Z2", + "name": "Nymburk,Zálabí PVT", + "isMetro": false, + "latitude": 15.044641, + "longitude": 50.180668, + "stopId": "U2968" + }, + { + "id": "U2969Z1", + "name": "Nymburk,Nám.", + "isMetro": false, + "latitude": 15.041676, + "longitude": 50.185535, + "stopId": "U2969" + }, + { + "id": "U2969Z2", + "name": "Nymburk,Nám.", + "isMetro": false, + "latitude": 15.03998, + "longitude": 50.184864, + "stopId": "U2969" + }, + { + "id": "U296Z1", + "name": "Krčská", + "isMetro": false, + "latitude": 14.442112, + "longitude": 50.043648, + "stopId": "U296" + }, + { + "id": "U296Z2", + "name": "Krčská", + "isMetro": false, + "latitude": 14.442913, + "longitude": 50.04351, + "stopId": "U296" + }, + { + "id": "U2970Z2", + "name": "Nymburk,Nemocnice", + "isMetro": false, + "latitude": 15.037666, + "longitude": 50.188129, + "stopId": "U2970" + }, + { + "id": "U2973Z10", + "name": "Nymburk,hl.nádr.", + "isMetro": false, + "latitude": 15.045804, + "longitude": 50.192753, + "stopId": "U2973" + }, + { + "id": "U2973Z3", + "name": "Nymburk,hl.nádr.", + "isMetro": false, + "latitude": 15.045012, + "longitude": 50.193077, + "stopId": "U2973" + }, + { + "id": "U2973Z301", + "name": "Nymburk hl.n.", + "isMetro": false, + "latitude": 15.04572, + "longitude": 50.193325, + "stopId": "U2973" + }, + { + "id": "U2973Z4", + "name": "Nymburk,hl.nádr.", + "isMetro": false, + "latitude": 15.045116, + "longitude": 50.193054, + "stopId": "U2973" + }, + { + "id": "U2973Z5", + "name": "Nymburk,hl.nádr.", + "isMetro": false, + "latitude": 15.045222, + "longitude": 50.193031, + "stopId": "U2973" + }, + { + "id": "U2973Z6", + "name": "Nymburk,hl.nádr.", + "isMetro": false, + "latitude": 15.045362, + "longitude": 50.193005, + "stopId": "U2973" + }, + { + "id": "U2975Z301", + "name": "Byšice", + "isMetro": false, + "latitude": 14.603827, + "longitude": 50.305737, + "stopId": "U2975" + }, + { + "id": "U2976Z301", + "name": "Kojovice", + "isMetro": false, + "latitude": 14.6564, + "longitude": 50.307232, + "stopId": "U2976" + }, + { + "id": "U2977Z301", + "name": "Košátky", + "isMetro": false, + "latitude": 14.670424, + "longitude": 50.31712, + "stopId": "U2977" + }, + { + "id": "U2978Z301", + "name": "Kropáčova Vrutice", + "isMetro": false, + "latitude": 14.701327, + "longitude": 50.323536, + "stopId": "U2978" + }, + { + "id": "U2979Z301", + "name": "Zdětín u Chotětova", + "isMetro": false, + "latitude": 14.786128, + "longitude": 50.315456, + "stopId": "U2979" + }, + { + "id": "U297Z1", + "name": "Krčský hřbitov", + "isMetro": false, + "latitude": 14.439642, + "longitude": 50.046509, + "stopId": "U297" + }, + { + "id": "U297Z2", + "name": "Krčský hřbitov", + "isMetro": false, + "latitude": 14.43925, + "longitude": 50.046051, + "stopId": "U297" + }, + { + "id": "U2980Z1", + "name": "Buštěhrad,Třinecká", + "isMetro": false, + "latitude": 14.163945, + "longitude": 50.155972, + "stopId": "U2980" + }, + { + "id": "U2981Z1", + "name": "Buštěhrad,U 7 komínů", + "isMetro": false, + "latitude": 14.171684, + "longitude": 50.15659, + "stopId": "U2981" + }, + { + "id": "U2981Z2", + "name": "Buštěhrad,U 7 komínů", + "isMetro": false, + "latitude": 14.171281, + "longitude": 50.156395, + "stopId": "U2981" + }, + { + "id": "U2982Z1", + "name": "Holoubkovská", + "isMetro": false, + "latitude": 14.559797, + "longitude": 50.043865, + "stopId": "U2982" + }, + { + "id": "U2982Z2", + "name": "Holoubkovská", + "isMetro": false, + "latitude": 14.561213, + "longitude": 50.043285, + "stopId": "U2982" + }, + { + "id": "U2984Z301", + "name": "Chotětov", + "isMetro": false, + "latitude": 14.810211, + "longitude": 50.339664, + "stopId": "U2984" + }, + { + "id": "U2985Z301", + "name": "Krnsko", + "isMetro": false, + "latitude": 14.869212, + "longitude": 50.376656, + "stopId": "U2985" + }, + { + "id": "U2986Z11", + "name": "Mladá Boleslav,hl.nádr.", + "isMetro": false, + "latitude": 14.887232, + "longitude": 50.407001, + "stopId": "U2986" + }, + { + "id": "U2986Z301", + "name": "Mladá Boleslav hl.n.", + "isMetro": false, + "latitude": 14.88701, + "longitude": 50.407494, + "stopId": "U2986" + }, + { + "id": "U2987Z1", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.915785, + "longitude": 50.419739, + "stopId": "U2987" + }, + { + "id": "U2987Z11", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916389, + "longitude": 50.419964, + "stopId": "U2987" + }, + { + "id": "U2987Z12", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916514, + "longitude": 50.420116, + "stopId": "U2987" + }, + { + "id": "U2987Z15", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916382, + "longitude": 50.419731, + "stopId": "U2987" + }, + { + "id": "U2987Z16", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916549, + "longitude": 50.419884, + "stopId": "U2987" + }, + { + "id": "U2987Z19", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916482, + "longitude": 50.419525, + "stopId": "U2987" + }, + { + "id": "U2987Z2", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.915952, + "longitude": 50.419899, + "stopId": "U2987" + }, + { + "id": "U2987Z20", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916592, + "longitude": 50.41967, + "stopId": "U2987" + }, + { + "id": "U2987Z21", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916721, + "longitude": 50.419842, + "stopId": "U2987" + }, + { + "id": "U2987Z22", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916821, + "longitude": 50.419968, + "stopId": "U2987" + }, + { + "id": "U2987Z23", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916961, + "longitude": 50.42012, + "stopId": "U2987" + }, + { + "id": "U2987Z24", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916672, + "longitude": 50.419468, + "stopId": "U2987" + }, + { + "id": "U2987Z26", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916859, + "longitude": 50.419724, + "stopId": "U2987" + }, + { + "id": "U2987Z28", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.917021, + "longitude": 50.419926, + "stopId": "U2987" + }, + { + "id": "U2987Z29", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.917141, + "longitude": 50.420082, + "stopId": "U2987" + }, + { + "id": "U2987Z3", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916069, + "longitude": 50.420074, + "stopId": "U2987" + }, + { + "id": "U2987Z30", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916727, + "longitude": 50.420506, + "stopId": "U2987" + }, + { + "id": "U2987Z301", + "name": "Mladá Boleslav město", + "isMetro": false, + "latitude": 14.915936, + "longitude": 50.419224, + "stopId": "U2987" + }, + { + "id": "U2987Z60", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916727, + "longitude": 50.420506, + "stopId": "U2987" + }, + { + "id": "U2987Z7", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.916094, + "longitude": 50.419819, + "stopId": "U2987" + }, + { + "id": "U2987Z8", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.91623, + "longitude": 50.419998, + "stopId": "U2987" + }, + { + "id": "U2987Z9", + "name": "Mladá Boleslav,aut.st.", + "isMetro": false, + "latitude": 14.91636, + "longitude": 50.42017, + "stopId": "U2987" + }, + { + "id": "U2988Z301", + "name": "Cítov", + "isMetro": false, + "latitude": 14.418783, + "longitude": 50.366394, + "stopId": "U2988" + }, + { + "id": "U2989Z301", + "name": "Dolní Beřkovice", + "isMetro": false, + "latitude": 14.435723, + "longitude": 50.389816, + "stopId": "U2989" + }, + { + "id": "U2990Z301", + "name": "Horní Počaply", + "isMetro": false, + "latitude": 14.38636, + "longitude": 50.422779, + "stopId": "U2990" + }, + { + "id": "U2991Z301", + "name": "Hněvice", + "isMetro": false, + "latitude": 14.361246, + "longitude": 50.453342, + "stopId": "U2991" + }, + { + "id": "U2993Z11", + "name": "Císařská louka", + "isMetro": false, + "latitude": 14.413002, + "longitude": 50.064541, + "stopId": "U2993" + }, + { + "id": "U299Z1", + "name": "Krematorium Strašnice", + "isMetro": false, + "latitude": 14.48472, + "longitude": 50.07732, + "stopId": "U299" + }, + { + "id": "U299Z2", + "name": "Krematorium Strašnice", + "isMetro": false, + "latitude": 14.485608, + "longitude": 50.077152, + "stopId": "U299" + }, + { + "id": "U29Z2", + "name": "Bělocerkevská", + "isMetro": false, + "latitude": 14.470617, + "longitude": 50.071182, + "stopId": "U29" + }, + { + "id": "U29Z3", + "name": "Bělocerkevská", + "isMetro": false, + "latitude": 14.47008, + "longitude": 50.071896, + "stopId": "U29" + }, + { + "id": "U29Z6", + "name": "Bělocerkevská", + "isMetro": false, + "latitude": 14.469829, + "longitude": 50.07198, + "stopId": "U29" + }, + { + "id": "U29Z7", + "name": "Bělocerkevská", + "isMetro": false, + "latitude": 14.470502, + "longitude": 50.071583, + "stopId": "U29" + }, + { + "id": "U3001Z1", + "name": "Brandýs n.L.-St.Bol.,Na Panském", + "isMetro": false, + "latitude": 14.688687, + "longitude": 50.203777, + "stopId": "U3001" + }, + { + "id": "U3001Z2", + "name": "Brandýs n.L.-St.Bol.,Na Panském", + "isMetro": false, + "latitude": 14.689868, + "longitude": 50.204094, + "stopId": "U3001" + }, + { + "id": "U3005Z1", + "name": "Nemocnice Bulovka", + "isMetro": false, + "latitude": 14.463954, + "longitude": 50.115681, + "stopId": "U3005" + }, + { + "id": "U3006Z1", + "name": "Nemocnice Bulovka - gynekologie", + "isMetro": false, + "latitude": 14.460119, + "longitude": 50.1161, + "stopId": "U3006" + }, + { + "id": "U3007Z1", + "name": "Nemocnice Bulovka - onkologie", + "isMetro": false, + "latitude": 14.46277, + "longitude": 50.116917, + "stopId": "U3007" + }, + { + "id": "U3008Z1", + "name": "Rápošovská", + "isMetro": false, + "latitude": 14.655021, + "longitude": 50.077156, + "stopId": "U3008" + }, + { + "id": "U3008Z2", + "name": "Rápošovská", + "isMetro": false, + "latitude": 14.653607, + "longitude": 50.077526, + "stopId": "U3008" + }, + { + "id": "U300Z1", + "name": "Krocínka", + "isMetro": false, + "latitude": 14.503468, + "longitude": 50.116085, + "stopId": "U300" + }, + { + "id": "U300Z2", + "name": "Krocínka", + "isMetro": false, + "latitude": 14.502877, + "longitude": 50.116005, + "stopId": "U300" + }, + { + "id": "U3010Z1", + "name": "Mokrovraty", + "isMetro": false, + "latitude": 14.248088, + "longitude": 49.796097, + "stopId": "U3010" + }, + { + "id": "U3010Z2", + "name": "Mokrovraty", + "isMetro": false, + "latitude": 14.248222, + "longitude": 49.795921, + "stopId": "U3010" + }, + { + "id": "U3011Z1", + "name": "Slatiňanská", + "isMetro": false, + "latitude": 14.591236, + "longitude": 50.107971, + "stopId": "U3011" + }, + { + "id": "U3011Z2", + "name": "Slatiňanská", + "isMetro": false, + "latitude": 14.591388, + "longitude": 50.108307, + "stopId": "U3011" + }, + { + "id": "U3012Z1", + "name": "Lánská", + "isMetro": false, + "latitude": 14.540205, + "longitude": 50.098557, + "stopId": "U3012" + }, + { + "id": "U3012Z2", + "name": "Lánská", + "isMetro": false, + "latitude": 14.540833, + "longitude": 50.098732, + "stopId": "U3012" + }, + { + "id": "U3013Z1", + "name": "Novozámecká", + "isMetro": false, + "latitude": 14.569778, + "longitude": 50.089275, + "stopId": "U3013" + }, + { + "id": "U3013Z2", + "name": "Novozámecká", + "isMetro": false, + "latitude": 14.56975, + "longitude": 50.089386, + "stopId": "U3013" + }, + { + "id": "U3014Z1", + "name": "K Lesoparku", + "isMetro": false, + "latitude": 14.53915, + "longitude": 50.049702, + "stopId": "U3014" + }, + { + "id": "U3014Z2", + "name": "K Lesoparku", + "isMetro": false, + "latitude": 14.53796, + "longitude": 50.050083, + "stopId": "U3014" + }, + { + "id": "U3015Z1", + "name": "Ke Hrázi", + "isMetro": false, + "latitude": 14.576256, + "longitude": 50.086819, + "stopId": "U3015" + }, + { + "id": "U3015Z2", + "name": "Studenecká", + "isMetro": false, + "latitude": 14.575806, + "longitude": 50.087124, + "stopId": "U3015" + }, + { + "id": "U3015Z3", + "name": "Ke Hrázi", + "isMetro": false, + "latitude": 14.576387, + "longitude": 50.086811, + "stopId": "U3015" + }, + { + "id": "U3017Z1", + "name": "Sušická", + "isMetro": false, + "latitude": 14.372808, + "longitude": 50.101837, + "stopId": "U3017" + }, + { + "id": "U3017Z2", + "name": "Sušická", + "isMetro": false, + "latitude": 14.372907, + "longitude": 50.10181, + "stopId": "U3017" + }, + { + "id": "U3018Z1", + "name": "Pernerova", + "isMetro": false, + "latitude": 14.443072, + "longitude": 50.088638, + "stopId": "U3018" + }, + { + "id": "U3018Z2", + "name": "Pernerova", + "isMetro": false, + "latitude": 14.443285, + "longitude": 50.088856, + "stopId": "U3018" + }, + { + "id": "U301Z1", + "name": "Krymská", + "isMetro": false, + "latitude": 14.446995, + "longitude": 50.07198, + "stopId": "U301" + }, + { + "id": "U301Z2", + "name": "Krymská", + "isMetro": false, + "latitude": 14.447816, + "longitude": 50.071888, + "stopId": "U301" + }, + { + "id": "U3021Z1", + "name": "Selských baterií", + "isMetro": false, + "latitude": 14.316564, + "longitude": 50.073982, + "stopId": "U3021" + }, + { + "id": "U3021Z2", + "name": "Selských baterií", + "isMetro": false, + "latitude": 14.316124, + "longitude": 50.073952, + "stopId": "U3021" + }, + { + "id": "U3024Z1", + "name": "Sekeřická", + "isMetro": false, + "latitude": 14.610129, + "longitude": 50.113052, + "stopId": "U3024" + }, + { + "id": "U302Z1", + "name": "Křížová", + "isMetro": false, + "latitude": 14.404707, + "longitude": 50.063164, + "stopId": "U302" + }, + { + "id": "U302Z2", + "name": "Křížová", + "isMetro": false, + "latitude": 14.404675, + "longitude": 50.062965, + "stopId": "U302" + }, + { + "id": "U302Z3", + "name": "Křížová", + "isMetro": false, + "latitude": 14.405595, + "longitude": 50.062355, + "stopId": "U302" + }, + { + "id": "U302Z4", + "name": "Křížová", + "isMetro": false, + "latitude": 14.405203, + "longitude": 50.063519, + "stopId": "U302" + }, + { + "id": "U3034Z1", + "name": "Osadní", + "isMetro": false, + "latitude": 14.446453, + "longitude": 50.103237, + "stopId": "U3034" + }, + { + "id": "U3035Z1", + "name": "Řezáčovo náměstí", + "isMetro": false, + "latitude": 14.4372, + "longitude": 50.100765, + "stopId": "U3035" + }, + { + "id": "U3037Z1", + "name": "Krchleby,školka", + "isMetro": false, + "latitude": 15.022646, + "longitude": 50.235069, + "stopId": "U3037" + }, + { + "id": "U3037Z2", + "name": "Krchleby,školka", + "isMetro": false, + "latitude": 15.022404, + "longitude": 50.235252, + "stopId": "U3037" + }, + { + "id": "U3039Z1", + "name": "Loučeň", + "isMetro": false, + "latitude": 15.021491, + "longitude": 50.286591, + "stopId": "U3039" + }, + { + "id": "U303Z1", + "name": "Kublov", + "isMetro": false, + "latitude": 14.418122, + "longitude": 50.054398, + "stopId": "U303" + }, + { + "id": "U303Z2", + "name": "Kublov", + "isMetro": false, + "latitude": 14.418074, + "longitude": 50.054531, + "stopId": "U303" + }, + { + "id": "U3040Z1", + "name": "Loučeň,Na Vinici", + "isMetro": false, + "latitude": 15.034657, + "longitude": 50.292618, + "stopId": "U3040" + }, + { + "id": "U3040Z2", + "name": "Loučeň,Na Vinici", + "isMetro": false, + "latitude": 15.034483, + "longitude": 50.292633, + "stopId": "U3040" + }, + { + "id": "U3041Z1", + "name": "Norbertov", + "isMetro": false, + "latitude": 14.377699, + "longitude": 50.091194, + "stopId": "U3041" + }, + { + "id": "U3041Z2", + "name": "Norbertov", + "isMetro": false, + "latitude": 14.377784, + "longitude": 50.091103, + "stopId": "U3041" + }, + { + "id": "U3042Z1", + "name": "Náměstí Před Bateriemi", + "isMetro": false, + "latitude": 14.373566, + "longitude": 50.090939, + "stopId": "U3042" + }, + { + "id": "U3042Z2", + "name": "Náměstí Před Bateriemi", + "isMetro": false, + "latitude": 14.375045, + "longitude": 50.091087, + "stopId": "U3042" + }, + { + "id": "U3043Z1", + "name": "Talichova", + "isMetro": false, + "latitude": 14.365686, + "longitude": 50.088627, + "stopId": "U3043" + }, + { + "id": "U3043Z2", + "name": "Talichova", + "isMetro": false, + "latitude": 14.367028, + "longitude": 50.088654, + "stopId": "U3043" + }, + { + "id": "U3044Z1", + "name": "U Vojenské nemocnice", + "isMetro": false, + "latitude": 14.364172, + "longitude": 50.090076, + "stopId": "U3044" + }, + { + "id": "U3044Z2", + "name": "U Vojenské nemocnice", + "isMetro": false, + "latitude": 14.363667, + "longitude": 50.09029, + "stopId": "U3044" + }, + { + "id": "U3045Z1", + "name": "Poliklinika Petřiny", + "isMetro": false, + "latitude": 14.35801, + "longitude": 50.090023, + "stopId": "U3045" + }, + { + "id": "U3045Z2", + "name": "Poliklinika Petřiny", + "isMetro": false, + "latitude": 14.358013, + "longitude": 50.089855, + "stopId": "U3045" + }, + { + "id": "U3045Z3", + "name": "Poliklinika Petřiny", + "isMetro": false, + "latitude": 14.358456, + "longitude": 50.090199, + "stopId": "U3045" + }, + { + "id": "U3046Z1", + "name": "Loučeň,Průhon", + "isMetro": false, + "latitude": 15.016967, + "longitude": 50.280968, + "stopId": "U3046" + }, + { + "id": "U3046Z2", + "name": "Loučeň,Průhon", + "isMetro": false, + "latitude": 15.016817, + "longitude": 50.281029, + "stopId": "U3046" + }, + { + "id": "U3047Z1", + "name": "Loučeň,Patřín", + "isMetro": false, + "latitude": 15.013214, + "longitude": 50.274464, + "stopId": "U3047" + }, + { + "id": "U3047Z2", + "name": "Loučeň,Patřín", + "isMetro": false, + "latitude": 15.013, + "longitude": 50.274731, + "stopId": "U3047" + }, + { + "id": "U3049Z1", + "name": "Luštěnice", + "isMetro": false, + "latitude": 14.937329, + "longitude": 50.322514, + "stopId": "U3049" + }, + { + "id": "U3049Z2", + "name": "Luštěnice", + "isMetro": false, + "latitude": 14.937276, + "longitude": 50.322338, + "stopId": "U3049" + }, + { + "id": "U3049Z3", + "name": "Luštěnice,Brodecká", + "isMetro": false, + "latitude": 14.936413, + "longitude": 50.322697, + "stopId": "U3049" + }, + { + "id": "U3049Z4", + "name": "Luštěnice,Brodecká", + "isMetro": false, + "latitude": 14.936255, + "longitude": 50.322784, + "stopId": "U3049" + }, + { + "id": "U304Z1", + "name": "Ovčí hájek", + "isMetro": false, + "latitude": 14.347433, + "longitude": 50.046417, + "stopId": "U304" + }, + { + "id": "U304Z2", + "name": "Ovčí hájek", + "isMetro": false, + "latitude": 14.3479, + "longitude": 50.046268, + "stopId": "U304" + }, + { + "id": "U3051Z1", + "name": "Mrákovská", + "isMetro": false, + "latitude": 14.300977, + "longitude": 50.027836, + "stopId": "U3051" + }, + { + "id": "U3051Z2", + "name": "Mrákovská", + "isMetro": false, + "latitude": 14.302224, + "longitude": 50.028534, + "stopId": "U3051" + }, + { + "id": "U3052Z1", + "name": "Livornská", + "isMetro": false, + "latitude": 14.551755, + "longitude": 50.041019, + "stopId": "U3052" + }, + { + "id": "U3052Z2", + "name": "Livornská", + "isMetro": false, + "latitude": 14.551878, + "longitude": 50.041264, + "stopId": "U3052" + }, + { + "id": "U3053Z1", + "name": "Ke Kříži", + "isMetro": false, + "latitude": 14.594443, + "longitude": 50.029491, + "stopId": "U3053" + }, + { + "id": "U3053Z2", + "name": "Ke Kříži", + "isMetro": false, + "latitude": 14.595528, + "longitude": 50.029934, + "stopId": "U3053" + }, + { + "id": "U3056Z1", + "name": "Luštěnice,Sluneční", + "isMetro": false, + "latitude": 14.918388, + "longitude": 50.313076, + "stopId": "U3056" + }, + { + "id": "U3057Z1", + "name": "Luštěnice,Voděrady", + "isMetro": false, + "latitude": 14.944594, + "longitude": 50.336643, + "stopId": "U3057" + }, + { + "id": "U3057Z2", + "name": "Luštěnice,Voděrady", + "isMetro": false, + "latitude": 14.944637, + "longitude": 50.336693, + "stopId": "U3057" + }, + { + "id": "U3057Z301", + "name": "Voděrady", + "isMetro": false, + "latitude": 14.947195, + "longitude": 50.336674, + "stopId": "U3057" + }, + { + "id": "U3058Z1", + "name": "Luštěnice,Zelená", + "isMetro": false, + "latitude": 14.91223, + "longitude": 50.316338, + "stopId": "U3058" + }, + { + "id": "U305Z1", + "name": "Kuchyňka", + "isMetro": false, + "latitude": 14.451824, + "longitude": 50.117302, + "stopId": "U305" + }, + { + "id": "U305Z2", + "name": "Kuchyňka", + "isMetro": false, + "latitude": 14.448787, + "longitude": 50.11668, + "stopId": "U305" + }, + { + "id": "U3061Z1", + "name": "Mcely", + "isMetro": false, + "latitude": 15.075793, + "longitude": 50.294415, + "stopId": "U3061" + }, + { + "id": "U3061Z2", + "name": "Mcely", + "isMetro": false, + "latitude": 15.07534, + "longitude": 50.29427, + "stopId": "U3061" + }, + { + "id": "U3062Z1", + "name": "Mcely,Háje", + "isMetro": false, + "latitude": 15.075287, + "longitude": 50.301182, + "stopId": "U3062" + }, + { + "id": "U3062Z2", + "name": "Mcely,Háje", + "isMetro": false, + "latitude": 15.075183, + "longitude": 50.301174, + "stopId": "U3062" + }, + { + "id": "U3063Z1", + "name": "Mladá Boleslav,Jičínská", + "isMetro": false, + "latitude": 14.927151, + "longitude": 50.410561, + "stopId": "U3063" + }, + { + "id": "U3063Z2", + "name": "Mladá Boleslav,Jičínská", + "isMetro": false, + "latitude": 14.927975, + "longitude": 50.410351, + "stopId": "U3063" + }, + { + "id": "U3064Z4", + "name": "Mladá Boleslav,Zalužany ŠKODA", + "isMetro": false, + "latitude": 14.938122, + "longitude": 50.427166, + "stopId": "U3064" + }, + { + "id": "U3064Z5", + "name": "Mladá Boleslav,Zalužany ŠKODA", + "isMetro": false, + "latitude": 14.938233, + "longitude": 50.427319, + "stopId": "U3064" + }, + { + "id": "U3066Z1", + "name": "Mladá Boleslav,Pírkovo sanatorium", + "isMetro": false, + "latitude": 14.923605, + "longitude": 50.406815, + "stopId": "U3066" + }, + { + "id": "U3066Z2", + "name": "Mladá Boleslav,Pírkovo sanatorium", + "isMetro": false, + "latitude": 14.923594, + "longitude": 50.406906, + "stopId": "U3066" + }, + { + "id": "U3067Z1", + "name": "Mladá Boleslav,u nadjezdu", + "isMetro": false, + "latitude": 14.933211, + "longitude": 50.403954, + "stopId": "U3067" + }, + { + "id": "U3067Z2", + "name": "Mladá Boleslav,u nadjezdu", + "isMetro": false, + "latitude": 14.933173, + "longitude": 50.40403, + "stopId": "U3067" + }, + { + "id": "U3068Z1", + "name": "Mladá Boleslav,Jemníky", + "isMetro": false, + "latitude": 14.938556, + "longitude": 50.399548, + "stopId": "U3068" + }, + { + "id": "U3068Z2", + "name": "Mladá Boleslav,Jemníky", + "isMetro": false, + "latitude": 14.938832, + "longitude": 50.39946, + "stopId": "U3068" + }, + { + "id": "U3069Z2", + "name": "Němčice", + "isMetro": false, + "latitude": 14.924813, + "longitude": 50.346603, + "stopId": "U3069" + }, + { + "id": "U306Z1", + "name": "Nemocnice Motol", + "isMetro": false, + "latitude": 14.34045, + "longitude": 50.074749, + "stopId": "U306" + }, + { + "id": "U306Z101", + "name": "Nemocnice Motol", + "isMetro": true, + "latitude": 14.341337, + "longitude": 50.075314, + "stopId": "U306" + }, + { + "id": "U306Z102", + "name": "Nemocnice Motol", + "isMetro": true, + "latitude": 14.341308, + "longitude": 50.075351, + "stopId": "U306" + }, + { + "id": "U306Z2", + "name": "Nemocnice Motol", + "isMetro": false, + "latitude": 14.339084, + "longitude": 50.074135, + "stopId": "U306" + }, + { + "id": "U306Z3", + "name": "Nemocnice Motol", + "isMetro": false, + "latitude": 14.341361, + "longitude": 50.075207, + "stopId": "U306" + }, + { + "id": "U3070Z1", + "name": "Němčice,hl.sil.", + "isMetro": false, + "latitude": 14.916541, + "longitude": 50.346336, + "stopId": "U3070" + }, + { + "id": "U3070Z2", + "name": "Němčice,hl.sil.", + "isMetro": false, + "latitude": 14.916436, + "longitude": 50.346218, + "stopId": "U3070" + }, + { + "id": "U3071Z1", + "name": "Nepřevázka,hl.sil.", + "isMetro": false, + "latitude": 14.903959, + "longitude": 50.369686, + "stopId": "U3071" + }, + { + "id": "U3071Z2", + "name": "Nepřevázka,hl.sil.", + "isMetro": false, + "latitude": 14.90334, + "longitude": 50.370434, + "stopId": "U3071" + }, + { + "id": "U3074Z1", + "name": "Nymburk,Diskont Potraviny", + "isMetro": false, + "latitude": 15.044322, + "longitude": 50.178944, + "stopId": "U3074" + }, + { + "id": "U3074Z2", + "name": "Nymburk,Diskont Potraviny", + "isMetro": false, + "latitude": 15.043787, + "longitude": 50.178974, + "stopId": "U3074" + }, + { + "id": "U3076Z1", + "name": "Nymburk,F.Schulze", + "isMetro": false, + "latitude": 15.035088, + "longitude": 50.193474, + "stopId": "U3076" + }, + { + "id": "U3077Z1", + "name": "Nymburk,Havlíčkova kostel", + "isMetro": false, + "latitude": 15.040813, + "longitude": 50.188763, + "stopId": "U3077" + }, + { + "id": "U3078Z1", + "name": "Nymburk,Havlíčkova VZP", + "isMetro": false, + "latitude": 15.040546, + "longitude": 50.189964, + "stopId": "U3078" + }, + { + "id": "U3078Z2", + "name": "Nymburk,Havlíčkova VZP", + "isMetro": false, + "latitude": 15.040426, + "longitude": 50.189911, + "stopId": "U3078" + }, + { + "id": "U307Z1", + "name": "Na Proutcích", + "isMetro": false, + "latitude": 14.502784, + "longitude": 50.013252, + "stopId": "U307" + }, + { + "id": "U307Z2", + "name": "Na Proutcích", + "isMetro": false, + "latitude": 14.50265, + "longitude": 50.013134, + "stopId": "U307" + }, + { + "id": "U3080Z2", + "name": "Nymburk,Jičínská", + "isMetro": false, + "latitude": 15.034207, + "longitude": 50.188576, + "stopId": "U3080" + }, + { + "id": "U3081Z1", + "name": "Nymburk,Katastrální úřad", + "isMetro": false, + "latitude": 15.044278, + "longitude": 50.189449, + "stopId": "U3081" + }, + { + "id": "U3084Z1", + "name": "Nymburk,lokomotivní depo", + "isMetro": false, + "latitude": 15.062708, + "longitude": 50.188423, + "stopId": "U3084" + }, + { + "id": "U3084Z2", + "name": "Nymburk,lokomotivní depo", + "isMetro": false, + "latitude": 15.062733, + "longitude": 50.188675, + "stopId": "U3084" + }, + { + "id": "U3087Z1", + "name": "Nymburk,průmyslová zóna sever", + "isMetro": false, + "latitude": 15.037954, + "longitude": 50.199406, + "stopId": "U3087" + }, + { + "id": "U3087Z2", + "name": "Nymburk,průmyslová zóna sever", + "isMetro": false, + "latitude": 15.037824, + "longitude": 50.199074, + "stopId": "U3087" + }, + { + "id": "U308Z1", + "name": "Divadlo Gong", + "isMetro": false, + "latitude": 14.488599, + "longitude": 50.106792, + "stopId": "U308" + }, + { + "id": "U308Z2", + "name": "Divadlo Gong", + "isMetro": false, + "latitude": 14.488089, + "longitude": 50.106541, + "stopId": "U308" + }, + { + "id": "U3091Z1", + "name": "Kladno,učiliště", + "isMetro": false, + "latitude": 14.150207, + "longitude": 50.163403, + "stopId": "U3091" + }, + { + "id": "U3091Z2", + "name": "Kladno,učiliště", + "isMetro": false, + "latitude": 14.150287, + "longitude": 50.163513, + "stopId": "U3091" + }, + { + "id": "U3092Z1", + "name": "Kladno,úřadovna", + "isMetro": false, + "latitude": 14.135066, + "longitude": 50.158924, + "stopId": "U3092" + }, + { + "id": "U3092Z2", + "name": "Kladno,úřadovna", + "isMetro": false, + "latitude": 14.133344, + "longitude": 50.15847, + "stopId": "U3092" + }, + { + "id": "U3094Z1", + "name": "Kladno,gymnasium", + "isMetro": false, + "latitude": 14.097764, + "longitude": 50.142441, + "stopId": "U3094" + }, + { + "id": "U3094Z2", + "name": "Kladno,gymnasium", + "isMetro": false, + "latitude": 14.09807, + "longitude": 50.141811, + "stopId": "U3094" + }, + { + "id": "U3095Z1", + "name": "Kladno,u kostela", + "isMetro": false, + "latitude": 14.072055, + "longitude": 50.140884, + "stopId": "U3095" + }, + { + "id": "U3095Z2", + "name": "Kladno,u kostela", + "isMetro": false, + "latitude": 14.070884, + "longitude": 50.140659, + "stopId": "U3095" + }, + { + "id": "U3097Z301", + "name": "Kladno-Ostrovec", + "isMetro": false, + "latitude": 14.086945, + "longitude": 50.147533, + "stopId": "U3097" + }, + { + "id": "U309Z1", + "name": "Kunratice", + "isMetro": false, + "latitude": 14.488296, + "longitude": 50.012905, + "stopId": "U309" + }, + { + "id": "U309Z2", + "name": "Kunratice", + "isMetro": false, + "latitude": 14.486732, + "longitude": 50.013493, + "stopId": "U309" + }, + { + "id": "U30Z1", + "name": "Sídliště Horní Počernice", + "isMetro": false, + "latitude": 14.613762, + "longitude": 50.110989, + "stopId": "U30" + }, + { + "id": "U30Z2", + "name": "Sídliště Horní Počernice", + "isMetro": false, + "latitude": 14.61456, + "longitude": 50.111595, + "stopId": "U30" + }, + { + "id": "U31000Z1", + "name": "Sobotka,nám.", + "isMetro": false, + "latitude": 15.176867, + "longitude": 50.467556, + "stopId": "U31000" + }, + { + "id": "U31000Z2", + "name": "Sobotka,nám.", + "isMetro": false, + "latitude": 15.176326, + "longitude": 50.467651, + "stopId": "U31000" + }, + { + "id": "U31001Z1", + "name": "Sobotka,škola", + "isMetro": false, + "latitude": 15.181417, + "longitude": 50.467796, + "stopId": "U31001" + }, + { + "id": "U31001Z2", + "name": "Sobotka,škola", + "isMetro": false, + "latitude": 15.182045, + "longitude": 50.467861, + "stopId": "U31001" + }, + { + "id": "U31002Z1", + "name": "Sobotka,Staňkova Lhota", + "isMetro": false, + "latitude": 15.194592, + "longitude": 50.465237, + "stopId": "U31002" + }, + { + "id": "U31002Z2", + "name": "Sobotka,Staňkova Lhota", + "isMetro": false, + "latitude": 15.194694, + "longitude": 50.465252, + "stopId": "U31002" + }, + { + "id": "U31003Z1", + "name": "Sobotka,Lavice,Šalanda", + "isMetro": false, + "latitude": 15.21377, + "longitude": 50.459038, + "stopId": "U31003" + }, + { + "id": "U31003Z2", + "name": "Sobotka,Lavice,Šalanda", + "isMetro": false, + "latitude": 15.211839, + "longitude": 50.459805, + "stopId": "U31003" + }, + { + "id": "U31004Z1", + "name": "Samšina,odb.", + "isMetro": false, + "latitude": 15.239171, + "longitude": 50.453053, + "stopId": "U31004" + }, + { + "id": "U31004Z2", + "name": "Samšina,odb.", + "isMetro": false, + "latitude": 15.237097, + "longitude": 50.453266, + "stopId": "U31004" + }, + { + "id": "U31005Z1", + "name": "Samšina,Drštěkryje", + "isMetro": false, + "latitude": 15.25101, + "longitude": 50.454487, + "stopId": "U31005" + }, + { + "id": "U31005Z2", + "name": "Samšina,Drštěkryje", + "isMetro": false, + "latitude": 15.249413, + "longitude": 50.454597, + "stopId": "U31005" + }, + { + "id": "U31006Z1", + "name": "Ohařice", + "isMetro": false, + "latitude": 15.259241, + "longitude": 50.454231, + "stopId": "U31006" + }, + { + "id": "U31006Z2", + "name": "Ohařice", + "isMetro": false, + "latitude": 15.258745, + "longitude": 50.45438, + "stopId": "U31006" + }, + { + "id": "U31007Z1", + "name": "Dolní Lochov,hlavní silnice", + "isMetro": false, + "latitude": 15.284928, + "longitude": 50.455769, + "stopId": "U31007" + }, + { + "id": "U31007Z2", + "name": "Dolní Lochov,hlavní silnice", + "isMetro": false, + "latitude": 15.285477, + "longitude": 50.455925, + "stopId": "U31007" + }, + { + "id": "U31008Z1", + "name": "Holín,Horní Lochov", + "isMetro": false, + "latitude": 15.299526, + "longitude": 50.452999, + "stopId": "U31008" + }, + { + "id": "U31008Z2", + "name": "Holín,Horní Lochov", + "isMetro": false, + "latitude": 15.29939, + "longitude": 50.453159, + "stopId": "U31008" + }, + { + "id": "U31009Z1", + "name": "Holín,odb.Prachovské skály", + "isMetro": false, + "latitude": 15.323842, + "longitude": 50.446758, + "stopId": "U31009" + }, + { + "id": "U31009Z2", + "name": "Holín,odb.Prachovské skály", + "isMetro": false, + "latitude": 15.32367, + "longitude": 50.446949, + "stopId": "U31009" + }, + { + "id": "U31010Z1", + "name": "Ohaveč", + "isMetro": false, + "latitude": 15.309801, + "longitude": 50.450466, + "stopId": "U31010" + }, + { + "id": "U31010Z2", + "name": "Ohaveč", + "isMetro": false, + "latitude": 15.309944, + "longitude": 50.450554, + "stopId": "U31010" + }, + { + "id": "U31011Z1", + "name": "Jičín,Koněvova", + "isMetro": false, + "latitude": 15.344247, + "longitude": 50.441399, + "stopId": "U31011" + }, + { + "id": "U31011Z2", + "name": "Jičín,Koněvova", + "isMetro": false, + "latitude": 15.344159, + "longitude": 50.441525, + "stopId": "U31011" + }, + { + "id": "U31012Z1", + "name": "Jičín,Komenského nám.", + "isMetro": false, + "latitude": 15.351484, + "longitude": 50.438675, + "stopId": "U31012" + }, + { + "id": "U31012Z2", + "name": "Jičín,Komenského nám.", + "isMetro": false, + "latitude": 15.350606, + "longitude": 50.439125, + "stopId": "U31012" + }, + { + "id": "U31013Z12", + "name": "Jičín,aut.st.", + "isMetro": false, + "latitude": 15.355164, + "longitude": 50.434204, + "stopId": "U31013" + }, + { + "id": "U31013Z7", + "name": "Jičín,aut.st.", + "isMetro": false, + "latitude": 15.355911, + "longitude": 50.433979, + "stopId": "U31013" + }, + { + "id": "U31019Z5", + "name": "Jilemnice,aut.nádr.", + "isMetro": false, + "latitude": 15.506741, + "longitude": 50.606903, + "stopId": "U31019" + }, + { + "id": "U31019Z7", + "name": "Jilemnice,aut.nádr.", + "isMetro": false, + "latitude": 15.506782, + "longitude": 50.606873, + "stopId": "U31019" + }, + { + "id": "U31020Z1", + "name": "Jilemnice,Hrabačov,křiž.", + "isMetro": false, + "latitude": 15.50779, + "longitude": 50.621094, + "stopId": "U31020" + }, + { + "id": "U31041Z2", + "name": "Doksy,aut.st.", + "isMetro": false, + "latitude": 14.65366, + "longitude": 50.563576, + "stopId": "U31041" + }, + { + "id": "U31044Z301", + "name": "Staré Splavy", + "isMetro": false, + "latitude": 14.629433, + "longitude": 50.587204, + "stopId": "U31044" + }, + { + "id": "U31046Z3", + "name": "Dubá,aut.nádr.", + "isMetro": false, + "latitude": 14.540425, + "longitude": 50.541481, + "stopId": "U31046" + }, + { + "id": "U31047Z1", + "name": "Dubá,Deštná", + "isMetro": false, + "latitude": 14.517318, + "longitude": 50.522991, + "stopId": "U31047" + }, + { + "id": "U31047Z2", + "name": "Dubá,Deštná", + "isMetro": false, + "latitude": 14.517056, + "longitude": 50.522881, + "stopId": "U31047" + }, + { + "id": "U31048Z1", + "name": "Dubá,Zakšín", + "isMetro": false, + "latitude": 14.498204, + "longitude": 50.519505, + "stopId": "U31048" + }, + { + "id": "U31048Z2", + "name": "Dubá,Zakšín", + "isMetro": false, + "latitude": 14.497983, + "longitude": 50.519455, + "stopId": "U31048" + }, + { + "id": "U31050Z3", + "name": "Mimoň,aut.st.", + "isMetro": false, + "latitude": 14.72203, + "longitude": 50.661655, + "stopId": "U31050" + }, + { + "id": "U31050Z5", + "name": "Mimoň,aut.st.", + "isMetro": false, + "latitude": 14.722148, + "longitude": 50.661488, + "stopId": "U31050" + }, + { + "id": "U31050Z6", + "name": "Mimoň,aut.st.", + "isMetro": false, + "latitude": 14.721944, + "longitude": 50.661549, + "stopId": "U31050" + }, + { + "id": "U31051Z1", + "name": "Těně", + "isMetro": false, + "latitude": 13.796359, + "longitude": 49.751198, + "stopId": "U31051" + }, + { + "id": "U31051Z2", + "name": "Těně", + "isMetro": false, + "latitude": 13.796162, + "longitude": 49.751324, + "stopId": "U31051" + }, + { + "id": "U31052Z1", + "name": "Těně,Smolárna", + "isMetro": false, + "latitude": 13.772259, + "longitude": 49.752144, + "stopId": "U31052" + }, + { + "id": "U31052Z2", + "name": "Těně,Smolárna", + "isMetro": false, + "latitude": 13.771844, + "longitude": 49.752083, + "stopId": "U31052" + }, + { + "id": "U31056Z1", + "name": "Dubá,Bukovec", + "isMetro": false, + "latitude": 14.488371, + "longitude": 50.507347, + "stopId": "U31056" + }, + { + "id": "U31056Z2", + "name": "Dubá,Bukovec", + "isMetro": false, + "latitude": 14.488177, + "longitude": 50.507248, + "stopId": "U31056" + }, + { + "id": "U31057Z1", + "name": "Svijany,na nájezdu", + "isMetro": false, + "latitude": 15.068905, + "longitude": 50.575207, + "stopId": "U31057" + }, + { + "id": "U31057Z2", + "name": "Svijany,na nájezdu", + "isMetro": false, + "latitude": 15.068946, + "longitude": 50.57489, + "stopId": "U31057" + }, + { + "id": "U31058Z1", + "name": "Paceřice", + "isMetro": false, + "latitude": 15.110546, + "longitude": 50.618744, + "stopId": "U31058" + }, + { + "id": "U31058Z2", + "name": "Paceřice", + "isMetro": false, + "latitude": 15.11028, + "longitude": 50.617077, + "stopId": "U31058" + }, + { + "id": "U31059Z1", + "name": "Žďárek,Hvězda", + "isMetro": false, + "latitude": 15.111768, + "longitude": 50.633938, + "stopId": "U31059" + }, + { + "id": "U31060Z1", + "name": "Paceřice,Rohanka", + "isMetro": false, + "latitude": 15.10901, + "longitude": 50.626854, + "stopId": "U31060" + }, + { + "id": "U31061Z2", + "name": "Paceřice,Husa,hl.sil.", + "isMetro": false, + "latitude": 15.108512, + "longitude": 50.621212, + "stopId": "U31061" + }, + { + "id": "U31062Z1", + "name": "Hodkovice n.Mohelkou,aut.nádr.", + "isMetro": false, + "latitude": 15.095605, + "longitude": 50.667595, + "stopId": "U31062" + }, + { + "id": "U31063Z1", + "name": "Liberec,Doubí,pošta", + "isMetro": false, + "latitude": 15.057164, + "longitude": 50.735107, + "stopId": "U31063" + }, + { + "id": "U31063Z2", + "name": "Liberec,Doubí,pošta", + "isMetro": false, + "latitude": 15.056989, + "longitude": 50.734913, + "stopId": "U31063" + }, + { + "id": "U31064Z1", + "name": "Liberec,Kamenická", + "isMetro": false, + "latitude": 15.059056, + "longitude": 50.742485, + "stopId": "U31064" + }, + { + "id": "U31064Z2", + "name": "Liberec,Kamenická", + "isMetro": false, + "latitude": 15.060916, + "longitude": 50.743706, + "stopId": "U31064" + }, + { + "id": "U31065Z1", + "name": "Liberec,Rochlice", + "isMetro": false, + "latitude": 15.062296, + "longitude": 50.746632, + "stopId": "U31065" + }, + { + "id": "U31065Z2", + "name": "Liberec,Rochlice", + "isMetro": false, + "latitude": 15.062263, + "longitude": 50.747246, + "stopId": "U31065" + }, + { + "id": "U31066Z1", + "name": "Liberec,Dobiášova", + "isMetro": false, + "latitude": 15.063992, + "longitude": 50.751961, + "stopId": "U31066" + }, + { + "id": "U31067Z1", + "name": "Liberec,Čechova", + "isMetro": false, + "latitude": 15.0553, + "longitude": 50.755108, + "stopId": "U31067" + }, + { + "id": "U31067Z2", + "name": "Liberec,Čechova", + "isMetro": false, + "latitude": 15.055105, + "longitude": 50.755074, + "stopId": "U31067" + }, + { + "id": "U31068Z1", + "name": "Liberec,Košická", + "isMetro": false, + "latitude": 15.05543, + "longitude": 50.760391, + "stopId": "U31068" + }, + { + "id": "U31069Z12", + "name": "Liberec,Fügnerova", + "isMetro": false, + "latitude": 15.056815, + "longitude": 50.764912, + "stopId": "U31069" + }, + { + "id": "U31069Z14", + "name": "Liberec,Fügnerova", + "isMetro": false, + "latitude": 15.058233, + "longitude": 50.765503, + "stopId": "U31069" + }, + { + "id": "U31070Z20", + "name": "Liberec,aut.nádr.", + "isMetro": false, + "latitude": 15.047507, + "longitude": 50.763821, + "stopId": "U31070" + }, + { + "id": "U31081Z1", + "name": "Turnov,Dolánky,Bukovina rozc.", + "isMetro": false, + "latitude": 15.164797, + "longitude": 50.608974, + "stopId": "U31081" + }, + { + "id": "U31081Z2", + "name": "Turnov,Dolánky,Bukovina rozc.", + "isMetro": false, + "latitude": 15.164643, + "longitude": 50.608757, + "stopId": "U31081" + }, + { + "id": "U31082Z1", + "name": "Turnov,Dolánky,Vápeník", + "isMetro": false, + "latitude": 15.162692, + "longitude": 50.603348, + "stopId": "U31082" + }, + { + "id": "U31082Z2", + "name": "Turnov,Dolánky,Vápeník", + "isMetro": false, + "latitude": 15.162318, + "longitude": 50.603504, + "stopId": "U31082" + }, + { + "id": "U31084Z1", + "name": "Turnov,Hrubý Rohozec", + "isMetro": false, + "latitude": 15.155538, + "longitude": 50.597702, + "stopId": "U31084" + }, + { + "id": "U31084Z2", + "name": "Turnov,Hrubý Rohozec", + "isMetro": false, + "latitude": 15.154523, + "longitude": 50.596386, + "stopId": "U31084" + }, + { + "id": "U31085Z1", + "name": "Turnov,Šroubárny", + "isMetro": false, + "latitude": 15.150533, + "longitude": 50.591194, + "stopId": "U31085" + }, + { + "id": "U31085Z2", + "name": "Turnov,Šroubárny", + "isMetro": false, + "latitude": 15.15142, + "longitude": 50.59222, + "stopId": "U31085" + }, + { + "id": "U31088Z1", + "name": "Turnov,5.května", + "isMetro": false, + "latitude": 15.162325, + "longitude": 50.589287, + "stopId": "U31088" + }, + { + "id": "U31091Z1", + "name": "Turnov,u masny", + "isMetro": false, + "latitude": 15.154139, + "longitude": 50.585445, + "stopId": "U31091" + }, + { + "id": "U31091Z2", + "name": "Turnov,u masny", + "isMetro": false, + "latitude": 15.153866, + "longitude": 50.585365, + "stopId": "U31091" + }, + { + "id": "U31096Z2", + "name": "Příšovice,hl.sil.", + "isMetro": false, + "latitude": 15.065109, + "longitude": 50.576473, + "stopId": "U31096" + }, + { + "id": "U310Z1", + "name": "Kutnohorská", + "isMetro": false, + "latitude": 14.552557, + "longitude": 50.063648, + "stopId": "U310" + }, + { + "id": "U310Z2", + "name": "Kutnohorská", + "isMetro": false, + "latitude": 14.551311, + "longitude": 50.064426, + "stopId": "U310" + }, + { + "id": "U31100Z1", + "name": "Všelibice,host.", + "isMetro": false, + "latitude": 14.94918, + "longitude": 50.645683, + "stopId": "U31100" + }, + { + "id": "U31100Z2", + "name": "Všelibice,host.", + "isMetro": false, + "latitude": 14.949067, + "longitude": 50.645657, + "stopId": "U31100" + }, + { + "id": "U31101Z1", + "name": "Všelibice,rozc.0.9", + "isMetro": false, + "latitude": 14.96271, + "longitude": 50.645538, + "stopId": "U31101" + }, + { + "id": "U31101Z2", + "name": "Všelibice,rozc.0.9", + "isMetro": false, + "latitude": 14.962497, + "longitude": 50.645592, + "stopId": "U31101" + }, + { + "id": "U31102Z1", + "name": "Všelibice,Roveň", + "isMetro": false, + "latitude": 14.968142, + "longitude": 50.65353, + "stopId": "U31102" + }, + { + "id": "U31102Z2", + "name": "Všelibice,Roveň", + "isMetro": false, + "latitude": 14.968036, + "longitude": 50.653564, + "stopId": "U31102" + }, + { + "id": "U31110Z1", + "name": "Ralsko,Kuřívody", + "isMetro": false, + "latitude": 14.803912, + "longitude": 50.58604, + "stopId": "U31110" + }, + { + "id": "U31112Z1", + "name": "Ralsko,Skelná Huť", + "isMetro": false, + "latitude": 14.773516, + "longitude": 50.608971, + "stopId": "U31112" + }, + { + "id": "U31112Z2", + "name": "Ralsko,Skelná Huť", + "isMetro": false, + "latitude": 14.774012, + "longitude": 50.608036, + "stopId": "U31112" + }, + { + "id": "U31124Z1", + "name": "Olešnice,Levín", + "isMetro": false, + "latitude": 15.430975, + "longitude": 50.134254, + "stopId": "U31124" + }, + { + "id": "U31124Z2", + "name": "Olešnice,Levín", + "isMetro": false, + "latitude": 15.43077, + "longitude": 50.134243, + "stopId": "U31124" + }, + { + "id": "U31126Z1", + "name": "Olešnice,ObÚ", + "isMetro": false, + "latitude": 15.445334, + "longitude": 50.142673, + "stopId": "U31126" + }, + { + "id": "U31126Z2", + "name": "Olešnice,ObÚ", + "isMetro": false, + "latitude": 15.445035, + "longitude": 50.142635, + "stopId": "U31126" + }, + { + "id": "U31127Z1", + "name": "Chlumec n.Cidl.,nemocnice", + "isMetro": false, + "latitude": 15.450253, + "longitude": 50.146954, + "stopId": "U31127" + }, + { + "id": "U31127Z2", + "name": "Chlumec n.Cidl.,nemocnice", + "isMetro": false, + "latitude": 15.450101, + "longitude": 50.146954, + "stopId": "U31127" + }, + { + "id": "U31128Z1", + "name": "Chlumec n.Cidl.,stará brána", + "isMetro": false, + "latitude": 15.45897, + "longitude": 50.153946, + "stopId": "U31128" + }, + { + "id": "U31128Z2", + "name": "Chlumec n.Cidl.,stará brána", + "isMetro": false, + "latitude": 15.458948, + "longitude": 50.154053, + "stopId": "U31128" + }, + { + "id": "U31129Z1", + "name": "Chlumec n.Cidl.,sokolovna", + "isMetro": false, + "latitude": 15.459219, + "longitude": 50.157635, + "stopId": "U31129" + }, + { + "id": "U31129Z2", + "name": "Chlumec n.Cidl.,sokolovna", + "isMetro": false, + "latitude": 15.459375, + "longitude": 50.158298, + "stopId": "U31129" + }, + { + "id": "U31131Z1", + "name": "Dětenice,náves", + "isMetro": false, + "latitude": 15.170135, + "longitude": 50.367706, + "stopId": "U31131" + }, + { + "id": "U31131Z2", + "name": "Dětenice,náves", + "isMetro": false, + "latitude": 15.169747, + "longitude": 50.367512, + "stopId": "U31131" + }, + { + "id": "U31131Z5", + "name": "Dětenice,sokolovna", + "isMetro": false, + "latitude": 15.170494, + "longitude": 50.368221, + "stopId": "U31131" + }, + { + "id": "U31131Z6", + "name": "Dětenice,sokolovna", + "isMetro": false, + "latitude": 15.170802, + "longitude": 50.368416, + "stopId": "U31131" + }, + { + "id": "U31132Z1", + "name": "Dětenice,Osenice", + "isMetro": false, + "latitude": 15.157409, + "longitude": 50.370972, + "stopId": "U31132" + }, + { + "id": "U31132Z2", + "name": "Dětenice,Osenice", + "isMetro": false, + "latitude": 15.157407, + "longitude": 50.371059, + "stopId": "U31132" + }, + { + "id": "U31134Z1", + "name": "Rokytňany,Dolní Rokytňany", + "isMetro": false, + "latitude": 15.128248, + "longitude": 50.377033, + "stopId": "U31134" + }, + { + "id": "U31134Z2", + "name": "Rokytňany,Dolní Rokytňany", + "isMetro": false, + "latitude": 15.128162, + "longitude": 50.377331, + "stopId": "U31134" + }, + { + "id": "U31135Z1", + "name": "Rokytňany,Horní Rokytňany", + "isMetro": false, + "latitude": 15.138007, + "longitude": 50.375591, + "stopId": "U31135" + }, + { + "id": "U31135Z2", + "name": "Rokytňany,Horní Rokytňany", + "isMetro": false, + "latitude": 15.137921, + "longitude": 50.375694, + "stopId": "U31135" + }, + { + "id": "U31136Z1", + "name": "Libáň,Kozodírky", + "isMetro": false, + "latitude": 15.191454, + "longitude": 50.366249, + "stopId": "U31136" + }, + { + "id": "U31136Z2", + "name": "Libáň,Kozodírky", + "isMetro": false, + "latitude": 15.191424, + "longitude": 50.366352, + "stopId": "U31136" + }, + { + "id": "U31137Z1", + "name": "Libáň,aut.st.", + "isMetro": false, + "latitude": 15.216133, + "longitude": 50.374256, + "stopId": "U31137" + }, + { + "id": "U31139Z1", + "name": "Bačalky,Lično", + "isMetro": false, + "latitude": 15.171555, + "longitude": 50.383667, + "stopId": "U31139" + }, + { + "id": "U31139Z2", + "name": "Bačalky,Lično", + "isMetro": false, + "latitude": 15.171509, + "longitude": 50.383724, + "stopId": "U31139" + }, + { + "id": "U31140Z1", + "name": "Bačalky,střed", + "isMetro": false, + "latitude": 15.161784, + "longitude": 50.383205, + "stopId": "U31140" + }, + { + "id": "U31140Z2", + "name": "Bačalky,střed", + "isMetro": false, + "latitude": 15.161871, + "longitude": 50.383247, + "stopId": "U31140" + }, + { + "id": "U31141Z1", + "name": "Bačalky,horní", + "isMetro": false, + "latitude": 15.152369, + "longitude": 50.385139, + "stopId": "U31141" + }, + { + "id": "U31141Z2", + "name": "Bačalky,horní", + "isMetro": false, + "latitude": 15.1524, + "longitude": 50.385193, + "stopId": "U31141" + }, + { + "id": "U31142Z2", + "name": "Zelenecká Lhota,odb.Záhuby", + "isMetro": false, + "latitude": 15.167112, + "longitude": 50.405354, + "stopId": "U31142" + }, + { + "id": "U31143Z2", + "name": "Zelenecká Lhota,rozc.", + "isMetro": false, + "latitude": 15.175911, + "longitude": 50.404625, + "stopId": "U31143" + }, + { + "id": "U31150Z1", + "name": "Markvartice,pošta", + "isMetro": false, + "latitude": 15.196304, + "longitude": 50.430851, + "stopId": "U31150" + }, + { + "id": "U31151Z1", + "name": "Markvartice,Mrkvojedy", + "isMetro": false, + "latitude": 15.185418, + "longitude": 50.424744, + "stopId": "U31151" + }, + { + "id": "U31152Z1", + "name": "Markvartice,Skuřina", + "isMetro": false, + "latitude": 15.179495, + "longitude": 50.41457, + "stopId": "U31152" + }, + { + "id": "U31161Z1", + "name": "Kopidlno,nám.", + "isMetro": false, + "latitude": 15.270549, + "longitude": 50.330818, + "stopId": "U31161" + }, + { + "id": "U31161Z2", + "name": "Kopidlno,nám.", + "isMetro": false, + "latitude": 15.270449, + "longitude": 50.33046, + "stopId": "U31161" + }, + { + "id": "U31162Z1", + "name": "Kopidlno,Ledkov", + "isMetro": false, + "latitude": 15.239404, + "longitude": 50.342781, + "stopId": "U31162" + }, + { + "id": "U31162Z2", + "name": "Kopidlno,Ledkov", + "isMetro": false, + "latitude": 15.23945, + "longitude": 50.342838, + "stopId": "U31162" + }, + { + "id": "U31163Z1", + "name": "Libáň,Psinice,transformátor", + "isMetro": false, + "latitude": 15.211304, + "longitude": 50.34993, + "stopId": "U31163" + }, + { + "id": "U31163Z2", + "name": "Libáň,Psinice,transformátor", + "isMetro": false, + "latitude": 15.21142, + "longitude": 50.349903, + "stopId": "U31163" + }, + { + "id": "U31164Z1", + "name": "Libáň,Psinice,kostel", + "isMetro": false, + "latitude": 15.214516, + "longitude": 50.354618, + "stopId": "U31164" + }, + { + "id": "U31164Z2", + "name": "Libáň,Psinice,kostel", + "isMetro": false, + "latitude": 15.214602, + "longitude": 50.354607, + "stopId": "U31164" + }, + { + "id": "U31166Z1", + "name": "Hlavice,Vápno", + "isMetro": false, + "latitude": 14.916463, + "longitude": 50.625114, + "stopId": "U31166" + }, + { + "id": "U31166Z2", + "name": "Hlavice,Vápno", + "isMetro": false, + "latitude": 14.916435, + "longitude": 50.624977, + "stopId": "U31166" + }, + { + "id": "U31167Z1", + "name": "Hlavice,Vápno,Na Písku", + "isMetro": false, + "latitude": 14.919656, + "longitude": 50.621494, + "stopId": "U31167" + }, + { + "id": "U31168Z1", + "name": "Hlavice,křiž.", + "isMetro": false, + "latitude": 14.919204, + "longitude": 50.632488, + "stopId": "U31168" + }, + { + "id": "U31168Z2", + "name": "Hlavice,křiž.", + "isMetro": false, + "latitude": 14.919119, + "longitude": 50.632385, + "stopId": "U31168" + }, + { + "id": "U31169Z1", + "name": "Hlavice,odb.Končiny", + "isMetro": false, + "latitude": 14.917624, + "longitude": 50.636684, + "stopId": "U31169" + }, + { + "id": "U31169Z2", + "name": "Hlavice,odb.Končiny", + "isMetro": false, + "latitude": 14.917539, + "longitude": 50.636742, + "stopId": "U31169" + }, + { + "id": "U31170Z1", + "name": "Cetenov,Vystrkov", + "isMetro": false, + "latitude": 14.92051, + "longitude": 50.641708, + "stopId": "U31170" + }, + { + "id": "U31170Z2", + "name": "Cetenov,Vystrkov", + "isMetro": false, + "latitude": 14.920344, + "longitude": 50.641685, + "stopId": "U31170" + }, + { + "id": "U31171Z1", + "name": "Cetenov,Hrubý Lesnov", + "isMetro": false, + "latitude": 14.927864, + "longitude": 50.648891, + "stopId": "U31171" + }, + { + "id": "U31171Z2", + "name": "Cetenov,Hrubý Lesnov", + "isMetro": false, + "latitude": 14.927796, + "longitude": 50.648952, + "stopId": "U31171" + }, + { + "id": "U31172Z1", + "name": "Hlavice,Lesnovek", + "isMetro": false, + "latitude": 14.940234, + "longitude": 50.642456, + "stopId": "U31172" + }, + { + "id": "U31172Z2", + "name": "Hlavice,Lesnovek", + "isMetro": false, + "latitude": 14.940383, + "longitude": 50.642471, + "stopId": "U31172" + }, + { + "id": "U31173Z1", + "name": "Český Dub,Kněžičky,rozc.0.5", + "isMetro": false, + "latitude": 14.982985, + "longitude": 50.659424, + "stopId": "U31173" + }, + { + "id": "U31173Z2", + "name": "Český Dub,Kněžičky,rozc.0.5", + "isMetro": false, + "latitude": 14.983124, + "longitude": 50.6595, + "stopId": "U31173" + }, + { + "id": "U31174Z1", + "name": "Český Dub,host.", + "isMetro": false, + "latitude": 14.993597, + "longitude": 50.658154, + "stopId": "U31174" + }, + { + "id": "U31174Z2", + "name": "Český Dub,host.", + "isMetro": false, + "latitude": 14.993662, + "longitude": 50.658199, + "stopId": "U31174" + }, + { + "id": "U31175Z1", + "name": "Český Dub,nám.", + "isMetro": false, + "latitude": 14.996423, + "longitude": 50.660229, + "stopId": "U31175" + }, + { + "id": "U31180Z1", + "name": "Malá Skála,Záborčí,rozc.", + "isMetro": false, + "latitude": 15.168342, + "longitude": 50.617393, + "stopId": "U31180" + }, + { + "id": "U31180Z2", + "name": "Malá Skála,Záborčí,rozc.", + "isMetro": false, + "latitude": 15.168691, + "longitude": 50.618076, + "stopId": "U31180" + }, + { + "id": "U31181Z1", + "name": "Malá Skála,Vranové,u mlýna", + "isMetro": false, + "latitude": 15.189456, + "longitude": 50.637482, + "stopId": "U31181" + }, + { + "id": "U31181Z2", + "name": "Malá Skála,Vranové,u mlýna", + "isMetro": false, + "latitude": 15.189508, + "longitude": 50.638489, + "stopId": "U31181" + }, + { + "id": "U31183Z1", + "name": "Malá Skála,na Labi", + "isMetro": false, + "latitude": 15.195358, + "longitude": 50.64315, + "stopId": "U31183" + }, + { + "id": "U31183Z2", + "name": "Malá Skála,na Labi", + "isMetro": false, + "latitude": 15.194893, + "longitude": 50.643234, + "stopId": "U31183" + }, + { + "id": "U31184Z1", + "name": "Líšný", + "isMetro": false, + "latitude": 15.210627, + "longitude": 50.6497, + "stopId": "U31184" + }, + { + "id": "U31184Z2", + "name": "Líšný", + "isMetro": false, + "latitude": 15.209966, + "longitude": 50.649052, + "stopId": "U31184" + }, + { + "id": "U31185Z1", + "name": "Železný Brod,Splzov,host.", + "isMetro": false, + "latitude": 15.219909, + "longitude": 50.653419, + "stopId": "U31185" + }, + { + "id": "U31185Z2", + "name": "Železný Brod,Splzov,host.", + "isMetro": false, + "latitude": 15.219702, + "longitude": 50.653812, + "stopId": "U31185" + }, + { + "id": "U31186Z1", + "name": "Železný Brod,sokolovna", + "isMetro": false, + "latitude": 15.2566, + "longitude": 50.640713, + "stopId": "U31186" + }, + { + "id": "U31186Z2", + "name": "Železný Brod,sokolovna", + "isMetro": false, + "latitude": 15.256246, + "longitude": 50.640762, + "stopId": "U31186" + }, + { + "id": "U31186Z3", + "name": "Železný Brod,sokolovna", + "isMetro": false, + "latitude": 15.256183, + "longitude": 50.640732, + "stopId": "U31186" + }, + { + "id": "U31187Z1", + "name": "Železný Brod,Terminál u žel.st.", + "isMetro": false, + "latitude": 15.26483, + "longitude": 50.639767, + "stopId": "U31187" + }, + { + "id": "U31187Z2", + "name": "Železný Brod,Terminál u žel.st.", + "isMetro": false, + "latitude": 15.265184, + "longitude": 50.639725, + "stopId": "U31187" + }, + { + "id": "U31188Z1", + "name": "Železný Brod,Pelechov", + "isMetro": false, + "latitude": 15.276999, + "longitude": 50.635166, + "stopId": "U31188" + }, + { + "id": "U31188Z2", + "name": "Železný Brod,Pelechov", + "isMetro": false, + "latitude": 15.277115, + "longitude": 50.635269, + "stopId": "U31188" + }, + { + "id": "U31189Z1", + "name": "Záhoří,Proseč", + "isMetro": false, + "latitude": 15.295082, + "longitude": 50.626305, + "stopId": "U31189" + }, + { + "id": "U31189Z2", + "name": "Záhoří,Proseč", + "isMetro": false, + "latitude": 15.295023, + "longitude": 50.626465, + "stopId": "U31189" + }, + { + "id": "U31190Z2", + "name": "Semily,aut.nádr.", + "isMetro": false, + "latitude": 15.32648, + "longitude": 50.602467, + "stopId": "U31190" + }, + { + "id": "U31190Z5", + "name": "Semily,aut.nádr.", + "isMetro": false, + "latitude": 15.326497, + "longitude": 50.602257, + "stopId": "U31190" + }, + { + "id": "U31192Z1", + "name": "Semily,Cimbál", + "isMetro": false, + "latitude": 15.337402, + "longitude": 50.621231, + "stopId": "U31192" + }, + { + "id": "U31192Z2", + "name": "Semily,Cimbál", + "isMetro": false, + "latitude": 15.3362, + "longitude": 50.621155, + "stopId": "U31192" + }, + { + "id": "U31193Z1", + "name": "Semily,Nouzov,odb.", + "isMetro": false, + "latitude": 15.350215, + "longitude": 50.624756, + "stopId": "U31193" + }, + { + "id": "U31193Z2", + "name": "Semily,Nouzov,odb.", + "isMetro": false, + "latitude": 15.349982, + "longitude": 50.62495, + "stopId": "U31193" + }, + { + "id": "U31194Z1", + "name": "Příkrý", + "isMetro": false, + "latitude": 15.365186, + "longitude": 50.625164, + "stopId": "U31194" + }, + { + "id": "U31194Z2", + "name": "Příkrý", + "isMetro": false, + "latitude": 15.364921, + "longitude": 50.625172, + "stopId": "U31194" + }, + { + "id": "U31195Z1", + "name": "Příkrý,Škodějov,Špekulace", + "isMetro": false, + "latitude": 15.384959, + "longitude": 50.638405, + "stopId": "U31195" + }, + { + "id": "U31195Z2", + "name": "Příkrý,Škodějov,Špekulace", + "isMetro": false, + "latitude": 15.38476, + "longitude": 50.638657, + "stopId": "U31195" + }, + { + "id": "U31196Z1", + "name": "Příkrý,Škodějov,Zimrov", + "isMetro": false, + "latitude": 15.390058, + "longitude": 50.646076, + "stopId": "U31196" + }, + { + "id": "U31196Z2", + "name": "Příkrý,Škodějov,Zimrov", + "isMetro": false, + "latitude": 15.389911, + "longitude": 50.646122, + "stopId": "U31196" + }, + { + "id": "U31197Z1", + "name": "Vysoké n.Jiz.,Helkovice,rozc.", + "isMetro": false, + "latitude": 15.397171, + "longitude": 50.653919, + "stopId": "U31197" + }, + { + "id": "U31197Z2", + "name": "Vysoké n.Jiz.,Helkovice,rozc.", + "isMetro": false, + "latitude": 15.396629, + "longitude": 50.6539, + "stopId": "U31197" + }, + { + "id": "U31198Z1", + "name": "Roprachtice,rozc.", + "isMetro": false, + "latitude": 15.408593, + "longitude": 50.664818, + "stopId": "U31198" + }, + { + "id": "U31198Z2", + "name": "Roprachtice,rozc.", + "isMetro": false, + "latitude": 15.408483, + "longitude": 50.664753, + "stopId": "U31198" + }, + { + "id": "U31199Z1", + "name": "Vysoké n.Jiz.,nemocnice", + "isMetro": false, + "latitude": 15.403975, + "longitude": 50.68222, + "stopId": "U31199" + }, + { + "id": "U31199Z2", + "name": "Vysoké n.Jiz.,nemocnice", + "isMetro": false, + "latitude": 15.403881, + "longitude": 50.682175, + "stopId": "U31199" + }, + { + "id": "U311Z1", + "name": "Kvasinská", + "isMetro": false, + "latitude": 14.642404, + "longitude": 50.062561, + "stopId": "U311" + }, + { + "id": "U311Z2", + "name": "Kvasinská", + "isMetro": false, + "latitude": 14.64268, + "longitude": 50.062992, + "stopId": "U311" + }, + { + "id": "U31200Z1", + "name": "Vysoké n.Jiz.,nám.", + "isMetro": false, + "latitude": 15.401223, + "longitude": 50.685978, + "stopId": "U31200" + }, + { + "id": "U31200Z2", + "name": "Vysoké n.Jiz.,nám.", + "isMetro": false, + "latitude": 15.401391, + "longitude": 50.685879, + "stopId": "U31200" + }, + { + "id": "U31201Z1", + "name": "Vysoké n.Jiz.,Sklenařice,host.Mexiko", + "isMetro": false, + "latitude": 15.38636, + "longitude": 50.702686, + "stopId": "U31201" + }, + { + "id": "U31201Z2", + "name": "Vysoké n.Jiz.,Sklenařice,host.Mexiko", + "isMetro": false, + "latitude": 15.386336, + "longitude": 50.702278, + "stopId": "U31201" + }, + { + "id": "U31202Z1", + "name": "Jablonec n.Jiz.,nám.", + "isMetro": false, + "latitude": 15.429622, + "longitude": 50.703247, + "stopId": "U31202" + }, + { + "id": "U31202Z2", + "name": "Jablonec n.Jiz.,nám.", + "isMetro": false, + "latitude": 15.429461, + "longitude": 50.703087, + "stopId": "U31202" + }, + { + "id": "U31205Z2", + "name": "Rokytnice n.Jiz.,host.", + "isMetro": false, + "latitude": 15.422858, + "longitude": 50.718998, + "stopId": "U31205" + }, + { + "id": "U31205Z3", + "name": "Rokytnice n.Jiz.,host.", + "isMetro": false, + "latitude": 15.422628, + "longitude": 50.719093, + "stopId": "U31205" + }, + { + "id": "U31207Z1", + "name": "Rokytnice n.Jiz.,nám.", + "isMetro": false, + "latitude": 15.451467, + "longitude": 50.729187, + "stopId": "U31207" + }, + { + "id": "U31207Z2", + "name": "Rokytnice n.Jiz.,nám.", + "isMetro": false, + "latitude": 15.451117, + "longitude": 50.729309, + "stopId": "U31207" + }, + { + "id": "U31210Z1", + "name": "Rokytnice n.Jiz.,Horní Rokytnice", + "isMetro": false, + "latitude": 15.473398, + "longitude": 50.729923, + "stopId": "U31210" + }, + { + "id": "U31210Z2", + "name": "Rokytnice n.Jiz.,Horní Rokytnice", + "isMetro": false, + "latitude": 15.47355, + "longitude": 50.729836, + "stopId": "U31210" + }, + { + "id": "U31212Z1", + "name": "Harrachov,Nový Svět,Na mýtě", + "isMetro": false, + "latitude": 15.396942, + "longitude": 50.763767, + "stopId": "U31212" + }, + { + "id": "U31212Z2", + "name": "Harrachov,Nový Svět,Na mýtě", + "isMetro": false, + "latitude": 15.396659, + "longitude": 50.763779, + "stopId": "U31212" + }, + { + "id": "U31213Z1", + "name": "Harrachov,Nový Svět,u Motejlků", + "isMetro": false, + "latitude": 15.412899, + "longitude": 50.779942, + "stopId": "U31213" + }, + { + "id": "U31213Z2", + "name": "Harrachov,Nový Svět,u Motejlků", + "isMetro": false, + "latitude": 15.412179, + "longitude": 50.779408, + "stopId": "U31213" + }, + { + "id": "U31214Z1", + "name": "Harrachov,sklárna", + "isMetro": false, + "latitude": 15.419734, + "longitude": 50.780685, + "stopId": "U31214" + }, + { + "id": "U31214Z2", + "name": "Harrachov,sklárna", + "isMetro": false, + "latitude": 15.418959, + "longitude": 50.781574, + "stopId": "U31214" + }, + { + "id": "U31215Z1", + "name": "Harrachov,centrum", + "isMetro": false, + "latitude": 15.425347, + "longitude": 50.775272, + "stopId": "U31215" + }, + { + "id": "U31215Z2", + "name": "Harrachov,centrum", + "isMetro": false, + "latitude": 15.425651, + "longitude": 50.775078, + "stopId": "U31215" + }, + { + "id": "U31216Z2", + "name": "Harrachov,aut.nádr.", + "isMetro": false, + "latitude": 15.435774, + "longitude": 50.769642, + "stopId": "U31216" + }, + { + "id": "U31219Z1", + "name": "Mírová p.Koz.,Loktuše,na Špici", + "isMetro": false, + "latitude": 15.231301, + "longitude": 50.588871, + "stopId": "U31219" + }, + { + "id": "U31219Z2", + "name": "Mírová p.Koz.,Loktuše,na Špici", + "isMetro": false, + "latitude": 15.231106, + "longitude": 50.588936, + "stopId": "U31219" + }, + { + "id": "U31221Z1", + "name": "Tatobity", + "isMetro": false, + "latitude": 15.272987, + "longitude": 50.571655, + "stopId": "U31221" + }, + { + "id": "U31221Z2", + "name": "Tatobity", + "isMetro": false, + "latitude": 15.273834, + "longitude": 50.571785, + "stopId": "U31221" + }, + { + "id": "U31223Z1", + "name": "Slaná", + "isMetro": false, + "latitude": 15.330474, + "longitude": 50.580742, + "stopId": "U31223" + }, + { + "id": "U31223Z2", + "name": "Slaná", + "isMetro": false, + "latitude": 15.330197, + "longitude": 50.580841, + "stopId": "U31223" + }, + { + "id": "U31224Z1", + "name": "Košťálov,křiž.k lomu", + "isMetro": false, + "latitude": 15.383666, + "longitude": 50.576344, + "stopId": "U31224" + }, + { + "id": "U31224Z2", + "name": "Košťálov,křiž.k lomu", + "isMetro": false, + "latitude": 15.383687, + "longitude": 50.576385, + "stopId": "U31224" + }, + { + "id": "U31225Z1", + "name": "Košťálov,nám.", + "isMetro": false, + "latitude": 15.403726, + "longitude": 50.572018, + "stopId": "U31225" + }, + { + "id": "U31225Z2", + "name": "Košťálov,nám.", + "isMetro": false, + "latitude": 15.403729, + "longitude": 50.572269, + "stopId": "U31225" + }, + { + "id": "U31227Z1", + "name": "Košťálov,Kundratice,střed", + "isMetro": false, + "latitude": 15.436067, + "longitude": 50.584305, + "stopId": "U31227" + }, + { + "id": "U31227Z2", + "name": "Košťálov,Kundratice,střed", + "isMetro": false, + "latitude": 15.436026, + "longitude": 50.584389, + "stopId": "U31227" + }, + { + "id": "U31228Z1", + "name": "Mříčná,křiž.", + "isMetro": false, + "latitude": 15.469054, + "longitude": 50.600731, + "stopId": "U31228" + }, + { + "id": "U31228Z2", + "name": "Mříčná,křiž.", + "isMetro": false, + "latitude": 15.468781, + "longitude": 50.600651, + "stopId": "U31228" + }, + { + "id": "U31245Z1", + "name": "Benecko,Dolní Štěpanice,u mostu", + "isMetro": false, + "latitude": 15.51884, + "longitude": 50.631245, + "stopId": "U31245" + }, + { + "id": "U31245Z2", + "name": "Benecko,Dolní Štěpanice,u mostu", + "isMetro": false, + "latitude": 15.518532, + "longitude": 50.630878, + "stopId": "U31245" + }, + { + "id": "U31246Z1", + "name": "Jestřabí v Krk.,Křížlice,myslivna", + "isMetro": false, + "latitude": 15.521047, + "longitude": 50.650307, + "stopId": "U31246" + }, + { + "id": "U31246Z2", + "name": "Jestřabí v Krk.,Křížlice,myslivna", + "isMetro": false, + "latitude": 15.520897, + "longitude": 50.650501, + "stopId": "U31246" + }, + { + "id": "U31247Z1", + "name": "Jestřabí v Krk.,Křížlice,host.", + "isMetro": false, + "latitude": 15.5261, + "longitude": 50.662865, + "stopId": "U31247" + }, + { + "id": "U31247Z2", + "name": "Jestřabí v Krk.,Křížlice,host.", + "isMetro": false, + "latitude": 15.527232, + "longitude": 50.662334, + "stopId": "U31247" + }, + { + "id": "U31248Z2", + "name": "Tanvald,Terminál u žel.st.", + "isMetro": false, + "latitude": 15.310858, + "longitude": 50.742588, + "stopId": "U31248" + }, + { + "id": "U31248Z3", + "name": "Tanvald,Terminál u žel.st.", + "isMetro": false, + "latitude": 15.310956, + "longitude": 50.742725, + "stopId": "U31248" + }, + { + "id": "U31249Z3", + "name": "Tanvald,centrum", + "isMetro": false, + "latitude": 15.309052, + "longitude": 50.735336, + "stopId": "U31249" + }, + { + "id": "U31250Z1", + "name": "Oldřichov,Těmice rozc.1.0", + "isMetro": false, + "latitude": 14.751569, + "longitude": 49.547337, + "stopId": "U31250" + }, + { + "id": "U31250Z2", + "name": "Oldřichov,Těmice rozc.1.0", + "isMetro": false, + "latitude": 14.751331, + "longitude": 49.54747, + "stopId": "U31250" + }, + { + "id": "U31251Z1", + "name": "Zhoř u Ml.Vožice", + "isMetro": false, + "latitude": 14.763569, + "longitude": 49.543678, + "stopId": "U31251" + }, + { + "id": "U31251Z2", + "name": "Zhoř u Ml.Vožice", + "isMetro": false, + "latitude": 14.763547, + "longitude": 49.543777, + "stopId": "U31251" + }, + { + "id": "U31252Z1", + "name": "Mladá Vožice,u hřbitova", + "isMetro": false, + "latitude": 14.800561, + "longitude": 49.5369, + "stopId": "U31252" + }, + { + "id": "U31252Z2", + "name": "Mladá Vožice,u hřbitova", + "isMetro": false, + "latitude": 14.800592, + "longitude": 49.536972, + "stopId": "U31252" + }, + { + "id": "U31253Z1", + "name": "Mladá Vožice,Voračického", + "isMetro": false, + "latitude": 14.806481, + "longitude": 49.53524, + "stopId": "U31253" + }, + { + "id": "U31253Z2", + "name": "Mladá Vožice,Voračického", + "isMetro": false, + "latitude": 14.806958, + "longitude": 49.535061, + "stopId": "U31253" + }, + { + "id": "U31254Z1", + "name": "Mladá Vožice,aut.st.", + "isMetro": false, + "latitude": 14.807993, + "longitude": 49.530399, + "stopId": "U31254" + }, + { + "id": "U31254Z3", + "name": "Mladá Vožice,aut.st.", + "isMetro": false, + "latitude": 14.808371, + "longitude": 49.53109, + "stopId": "U31254" + }, + { + "id": "U31254Z4", + "name": "Mladá Vožice,aut.st.", + "isMetro": false, + "latitude": 14.808394, + "longitude": 49.531139, + "stopId": "U31254" + }, + { + "id": "U31254Z5", + "name": "Mladá Vožice,aut.st.", + "isMetro": false, + "latitude": 14.808233, + "longitude": 49.531479, + "stopId": "U31254" + }, + { + "id": "U31260Z1", + "name": "Šebířov", + "isMetro": false, + "latitude": 14.824259, + "longitude": 49.565205, + "stopId": "U31260" + }, + { + "id": "U31260Z2", + "name": "Šebířov", + "isMetro": false, + "latitude": 14.824191, + "longitude": 49.565079, + "stopId": "U31260" + }, + { + "id": "U31261Z1", + "name": "Šebířov,Skrýšov", + "isMetro": false, + "latitude": 14.830214, + "longitude": 49.577278, + "stopId": "U31261" + }, + { + "id": "U31261Z2", + "name": "Šebířov,Skrýšov", + "isMetro": false, + "latitude": 14.830312, + "longitude": 49.57724, + "stopId": "U31261" + }, + { + "id": "U31266Z1", + "name": "Mladá Vožice,Vanišova", + "isMetro": false, + "latitude": 14.812119, + "longitude": 49.536976, + "stopId": "U31266" + }, + { + "id": "U31266Z2", + "name": "Mladá Vožice,Vanišova", + "isMetro": false, + "latitude": 14.812165, + "longitude": 49.536911, + "stopId": "U31266" + }, + { + "id": "U31267Z1", + "name": "Mladá Vožice,KOH-I-NOOR", + "isMetro": false, + "latitude": 14.813541, + "longitude": 49.542023, + "stopId": "U31267" + }, + { + "id": "U31267Z2", + "name": "Mladá Vožice,KOH-I-NOOR", + "isMetro": false, + "latitude": 14.813844, + "longitude": 49.542263, + "stopId": "U31267" + }, + { + "id": "U31268Z1", + "name": "Mladá Vožice,Noskov,Bor", + "isMetro": false, + "latitude": 14.815598, + "longitude": 49.551125, + "stopId": "U31268" + }, + { + "id": "U31268Z2", + "name": "Mladá Vožice,Noskov,Bor", + "isMetro": false, + "latitude": 14.815681, + "longitude": 49.551098, + "stopId": "U31268" + }, + { + "id": "U31270Z1", + "name": "Ohrazenice,u výkupny", + "isMetro": false, + "latitude": 15.125822, + "longitude": 50.593594, + "stopId": "U31270" + }, + { + "id": "U31270Z2", + "name": "Ohrazenice,u výkupny", + "isMetro": false, + "latitude": 15.126036, + "longitude": 50.593643, + "stopId": "U31270" + }, + { + "id": "U31273Z1", + "name": "Chotoviny,rozc.2.0", + "isMetro": false, + "latitude": 14.658025, + "longitude": 49.473045, + "stopId": "U31273" + }, + { + "id": "U31273Z2", + "name": "Chotoviny,rozc.2.0", + "isMetro": false, + "latitude": 14.658557, + "longitude": 49.472366, + "stopId": "U31273" + }, + { + "id": "U31277Z1", + "name": "Tábor,Nový Ráj", + "isMetro": false, + "latitude": 14.66273, + "longitude": 49.417183, + "stopId": "U31277" + }, + { + "id": "U31279Z1", + "name": "Tábor,Křižíkovo nám.", + "isMetro": false, + "latitude": 14.664676, + "longitude": 49.412651, + "stopId": "U31279" + }, + { + "id": "U31281Z1", + "name": "Tábor,poliklinika", + "isMetro": false, + "latitude": 14.670313, + "longitude": 49.411308, + "stopId": "U31281" + }, + { + "id": "U31283Z1", + "name": "Vítkovice,SEBA", + "isMetro": false, + "latitude": 15.534673, + "longitude": 50.674042, + "stopId": "U31283" + }, + { + "id": "U31284Z1", + "name": "Vítkovice,ObÚ", + "isMetro": false, + "latitude": 15.534865, + "longitude": 50.675694, + "stopId": "U31284" + }, + { + "id": "U31284Z2", + "name": "Vítkovice,ObÚ", + "isMetro": false, + "latitude": 15.534931, + "longitude": 50.675579, + "stopId": "U31284" + }, + { + "id": "U31285Z1", + "name": "Vítkovice,škola", + "isMetro": false, + "latitude": 15.531945, + "longitude": 50.679726, + "stopId": "U31285" + }, + { + "id": "U31285Z2", + "name": "Vítkovice,škola", + "isMetro": false, + "latitude": 15.531528, + "longitude": 50.679665, + "stopId": "U31285" + }, + { + "id": "U31286Z1", + "name": "Vítkovice,hotel Praha", + "isMetro": false, + "latitude": 15.530454, + "longitude": 50.69323, + "stopId": "U31286" + }, + { + "id": "U31286Z2", + "name": "Vítkovice,hotel Praha", + "isMetro": false, + "latitude": 15.530371, + "longitude": 50.693092, + "stopId": "U31286" + }, + { + "id": "U31287Z1", + "name": "Vítkovice,myslivna", + "isMetro": false, + "latitude": 15.530398, + "longitude": 50.704525, + "stopId": "U31287" + }, + { + "id": "U31287Z2", + "name": "Vítkovice,myslivna", + "isMetro": false, + "latitude": 15.530282, + "longitude": 50.704536, + "stopId": "U31287" + }, + { + "id": "U31288Z1", + "name": "Vítkovice,hotel Skála", + "isMetro": false, + "latitude": 15.534447, + "longitude": 50.710159, + "stopId": "U31288" + }, + { + "id": "U31288Z2", + "name": "Vítkovice,hotel Skála", + "isMetro": false, + "latitude": 15.534223, + "longitude": 50.710052, + "stopId": "U31288" + }, + { + "id": "U31289Z1", + "name": "Vítkovice,Dolní Mísečky", + "isMetro": false, + "latitude": 15.546237, + "longitude": 50.729866, + "stopId": "U31289" + }, + { + "id": "U31289Z2", + "name": "Vítkovice,Dolní Mísečky", + "isMetro": false, + "latitude": 15.546137, + "longitude": 50.729813, + "stopId": "U31289" + }, + { + "id": "U31290Z1", + "name": "Vítkovice,Horní Mísečky", + "isMetro": false, + "latitude": 15.569623, + "longitude": 50.735367, + "stopId": "U31290" + }, + { + "id": "U31290Z2", + "name": "Vítkovice,Horní Mísečky", + "isMetro": false, + "latitude": 15.569613, + "longitude": 50.735199, + "stopId": "U31290" + }, + { + "id": "U31291Z1", + "name": "Kořenov,odb.", + "isMetro": false, + "latitude": 15.384396, + "longitude": 50.765541, + "stopId": "U31291" + }, + { + "id": "U31291Z2", + "name": "Kořenov,odb.", + "isMetro": false, + "latitude": 15.384174, + "longitude": 50.765606, + "stopId": "U31291" + }, + { + "id": "U31292Z1", + "name": "Kořenov,Příchovice,Motorest", + "isMetro": false, + "latitude": 15.359929, + "longitude": 50.755222, + "stopId": "U31292" + }, + { + "id": "U31292Z2", + "name": "Kořenov,Příchovice,Motorest", + "isMetro": false, + "latitude": 15.359912, + "longitude": 50.755371, + "stopId": "U31292" + }, + { + "id": "U31293Z2", + "name": "Desná,Sklář", + "isMetro": false, + "latitude": 15.32172, + "longitude": 50.762344, + "stopId": "U31293" + }, + { + "id": "U31294Z1", + "name": "Desná,odb.", + "isMetro": false, + "latitude": 15.335642, + "longitude": 50.765343, + "stopId": "U31294" + }, + { + "id": "U31294Z2", + "name": "Desná,odb.", + "isMetro": false, + "latitude": 15.335451, + "longitude": 50.765411, + "stopId": "U31294" + }, + { + "id": "U31295Z1", + "name": "Desná,centrum", + "isMetro": false, + "latitude": 15.314035, + "longitude": 50.756302, + "stopId": "U31295" + }, + { + "id": "U31295Z2", + "name": "Desná,centrum", + "isMetro": false, + "latitude": 15.31384, + "longitude": 50.756748, + "stopId": "U31295" + }, + { + "id": "U31296Z1", + "name": "Velké Hamry,nám.", + "isMetro": false, + "latitude": 15.315042, + "longitude": 50.717747, + "stopId": "U31296" + }, + { + "id": "U31296Z2", + "name": "Velké Hamry,nám.", + "isMetro": false, + "latitude": 15.314728, + "longitude": 50.717632, + "stopId": "U31296" + }, + { + "id": "U31297Z1", + "name": "Plavy,křiž.", + "isMetro": false, + "latitude": 15.318048, + "longitude": 50.705402, + "stopId": "U31297" + }, + { + "id": "U31297Z2", + "name": "Plavy,křiž.", + "isMetro": false, + "latitude": 15.317756, + "longitude": 50.705345, + "stopId": "U31297" + }, + { + "id": "U31298Z1", + "name": "Držkov,nám.", + "isMetro": false, + "latitude": 15.30196, + "longitude": 50.687698, + "stopId": "U31298" + }, + { + "id": "U31298Z2", + "name": "Držkov,nám.", + "isMetro": false, + "latitude": 15.301568, + "longitude": 50.687794, + "stopId": "U31298" + }, + { + "id": "U31299Z1", + "name": "Loužnice,pošta", + "isMetro": false, + "latitude": 15.268086, + "longitude": 50.680946, + "stopId": "U31299" + }, + { + "id": "U31299Z2", + "name": "Loužnice,pošta", + "isMetro": false, + "latitude": 15.267643, + "longitude": 50.680202, + "stopId": "U31299" + }, + { + "id": "U312Z1", + "name": "Květnová", + "isMetro": false, + "latitude": 14.477901, + "longitude": 50.142769, + "stopId": "U312" + }, + { + "id": "U312Z2", + "name": "Květnová", + "isMetro": false, + "latitude": 14.478017, + "longitude": 50.142651, + "stopId": "U312" + }, + { + "id": "U31309Z1", + "name": "Dubá,Nový Berštejn", + "isMetro": false, + "latitude": 14.543669, + "longitude": 50.550507, + "stopId": "U31309" + }, + { + "id": "U31309Z2", + "name": "Dubá,Nový Berštejn", + "isMetro": false, + "latitude": 14.543509, + "longitude": 50.550476, + "stopId": "U31309" + }, + { + "id": "U31310Z1", + "name": "Dubá,Nový Berštejn,střelnice", + "isMetro": false, + "latitude": 14.55108, + "longitude": 50.549263, + "stopId": "U31310" + }, + { + "id": "U31310Z2", + "name": "Dubá,Nový Berštejn,střelnice", + "isMetro": false, + "latitude": 14.550656, + "longitude": 50.549301, + "stopId": "U31310" + }, + { + "id": "U31311Z1", + "name": "Vrchovany", + "isMetro": false, + "latitude": 14.571066, + "longitude": 50.552906, + "stopId": "U31311" + }, + { + "id": "U31311Z2", + "name": "Vrchovany", + "isMetro": false, + "latitude": 14.571063, + "longitude": 50.553009, + "stopId": "U31311" + }, + { + "id": "U31312Z1", + "name": "Dubá,Horky,odb.", + "isMetro": false, + "latitude": 14.588542, + "longitude": 50.55484, + "stopId": "U31312" + }, + { + "id": "U31312Z2", + "name": "Dubá,Horky,odb.", + "isMetro": false, + "latitude": 14.588367, + "longitude": 50.554981, + "stopId": "U31312" + }, + { + "id": "U31313Z1", + "name": "Skalka u Doks", + "isMetro": false, + "latitude": 14.619088, + "longitude": 50.563606, + "stopId": "U31313" + }, + { + "id": "U31313Z2", + "name": "Skalka u Doks", + "isMetro": false, + "latitude": 14.618865, + "longitude": 50.563564, + "stopId": "U31313" + }, + { + "id": "U31321Z1", + "name": "Kralovice", + "isMetro": false, + "latitude": 13.485555, + "longitude": 49.980648, + "stopId": "U31321" + }, + { + "id": "U31327Z1", + "name": "Kožlany,u váhy", + "isMetro": false, + "latitude": 13.53511, + "longitude": 49.993443, + "stopId": "U31327" + }, + { + "id": "U31327Z2", + "name": "Kožlany,u váhy", + "isMetro": false, + "latitude": 13.536873, + "longitude": 49.993378, + "stopId": "U31327" + }, + { + "id": "U31328Z1", + "name": "Kožlany,u školy", + "isMetro": false, + "latitude": 13.546755, + "longitude": 49.994976, + "stopId": "U31328" + }, + { + "id": "U31328Z2", + "name": "Kožlany,u školy", + "isMetro": false, + "latitude": 13.545372, + "longitude": 49.994793, + "stopId": "U31328" + }, + { + "id": "U31329Z1", + "name": "Zvíkovec,Kalinova Ves", + "isMetro": false, + "latitude": 13.69581, + "longitude": 49.958645, + "stopId": "U31329" + }, + { + "id": "U31329Z2", + "name": "Zvíkovec,Kalinova Ves", + "isMetro": false, + "latitude": 13.695968, + "longitude": 49.958481, + "stopId": "U31329" + }, + { + "id": "U31330Z1", + "name": "Zvíkovec", + "isMetro": false, + "latitude": 13.687613, + "longitude": 49.954395, + "stopId": "U31330" + }, + { + "id": "U31337Z1", + "name": "Oldřichov", + "isMetro": false, + "latitude": 14.754614, + "longitude": 49.557693, + "stopId": "U31337" + }, + { + "id": "U31343Z1", + "name": "Doksy,Zbyny,náves", + "isMetro": false, + "latitude": 14.617018, + "longitude": 50.555401, + "stopId": "U31343" + }, + { + "id": "U31344Z1", + "name": "Doksy,Lipové nám.", + "isMetro": false, + "latitude": 14.657864, + "longitude": 50.567509, + "stopId": "U31344" + }, + { + "id": "U31344Z2", + "name": "Doksy,Lipové nám.", + "isMetro": false, + "latitude": 14.657798, + "longitude": 50.567604, + "stopId": "U31344" + }, + { + "id": "U31345Z1", + "name": "Doksy,Mimoňská", + "isMetro": false, + "latitude": 14.665891, + "longitude": 50.56554, + "stopId": "U31345" + }, + { + "id": "U31345Z2", + "name": "Doksy,Mimoňská", + "isMetro": false, + "latitude": 14.665887, + "longitude": 50.565617, + "stopId": "U31345" + }, + { + "id": "U31346Z1", + "name": "Doksy,Břehyně,rybník", + "isMetro": false, + "latitude": 14.692286, + "longitude": 50.575249, + "stopId": "U31346" + }, + { + "id": "U31346Z2", + "name": "Doksy,Břehyně,rybník", + "isMetro": false, + "latitude": 14.692295, + "longitude": 50.575481, + "stopId": "U31346" + }, + { + "id": "U31347Z1", + "name": "Doksy,Břehyně,II", + "isMetro": false, + "latitude": 14.694732, + "longitude": 50.584255, + "stopId": "U31347" + }, + { + "id": "U31347Z2", + "name": "Doksy,Břehyně,II", + "isMetro": false, + "latitude": 14.694481, + "longitude": 50.584213, + "stopId": "U31347" + }, + { + "id": "U31348Z1", + "name": "Chlum,hl.sil.", + "isMetro": false, + "latitude": 14.545351, + "longitude": 50.576176, + "stopId": "U31348" + }, + { + "id": "U31348Z2", + "name": "Chlum,hl.sil.", + "isMetro": false, + "latitude": 14.545105, + "longitude": 50.575939, + "stopId": "U31348" + }, + { + "id": "U31349Z1", + "name": "Jestřebí,Podolec", + "isMetro": false, + "latitude": 14.552316, + "longitude": 50.590492, + "stopId": "U31349" + }, + { + "id": "U31349Z2", + "name": "Jestřebí,Podolec", + "isMetro": false, + "latitude": 14.552089, + "longitude": 50.590481, + "stopId": "U31349" + }, + { + "id": "U31350Z1", + "name": "Jestřebí,Újezd", + "isMetro": false, + "latitude": 14.566115, + "longitude": 50.602428, + "stopId": "U31350" + }, + { + "id": "U31350Z2", + "name": "Jestřebí,Újezd", + "isMetro": false, + "latitude": 14.565947, + "longitude": 50.602497, + "stopId": "U31350" + }, + { + "id": "U31351Z1", + "name": "Jestřebí,křiž.", + "isMetro": false, + "latitude": 14.579767, + "longitude": 50.60947, + "stopId": "U31351" + }, + { + "id": "U31351Z2", + "name": "Jestřebí,křiž.", + "isMetro": false, + "latitude": 14.579317, + "longitude": 50.609516, + "stopId": "U31351" + }, + { + "id": "U31352Z1", + "name": "Zahrádky,křiž.", + "isMetro": false, + "latitude": 14.535489, + "longitude": 50.627987, + "stopId": "U31352" + }, + { + "id": "U31352Z2", + "name": "Zahrádky,křiž.", + "isMetro": false, + "latitude": 14.535262, + "longitude": 50.627861, + "stopId": "U31352" + }, + { + "id": "U31353Z1", + "name": "Sosnová,hl.sil.", + "isMetro": false, + "latitude": 14.535409, + "longitude": 50.658325, + "stopId": "U31353" + }, + { + "id": "U31353Z2", + "name": "Sosnová,hl.sil.", + "isMetro": false, + "latitude": 14.534503, + "longitude": 50.65699, + "stopId": "U31353" + }, + { + "id": "U31354Z301", + "name": "Česká Lípa hl.n.", + "isMetro": false, + "latitude": 14.532638, + "longitude": 50.676849, + "stopId": "U31354" + }, + { + "id": "U31354Z5", + "name": "Česká Lípa,aut.nádr.", + "isMetro": false, + "latitude": 14.535682, + "longitude": 50.677521, + "stopId": "U31354" + }, + { + "id": "U31355Z1", + "name": "Česká Lípa,Borská", + "isMetro": false, + "latitude": 14.541477, + "longitude": 50.694435, + "stopId": "U31355" + }, + { + "id": "U31355Z2", + "name": "Česká Lípa,Borská", + "isMetro": false, + "latitude": 14.54116, + "longitude": 50.694908, + "stopId": "U31355" + }, + { + "id": "U31356Z1", + "name": "Česká Lípa,Častolovice,rozc.", + "isMetro": false, + "latitude": 14.545448, + "longitude": 50.716965, + "stopId": "U31356" + }, + { + "id": "U31356Z2", + "name": "Česká Lípa,Častolovice,rozc.", + "isMetro": false, + "latitude": 14.545078, + "longitude": 50.716064, + "stopId": "U31356" + }, + { + "id": "U31357Z1", + "name": "Nový Bor,Pihel,pošta", + "isMetro": false, + "latitude": 14.54672, + "longitude": 50.731083, + "stopId": "U31357" + }, + { + "id": "U31357Z2", + "name": "Nový Bor,Pihel,pošta", + "isMetro": false, + "latitude": 14.546496, + "longitude": 50.731236, + "stopId": "U31357" + }, + { + "id": "U31358Z1", + "name": "Chotovice,hl.sil.", + "isMetro": false, + "latitude": 14.551299, + "longitude": 50.743217, + "stopId": "U31358" + }, + { + "id": "U31358Z2", + "name": "Chotovice,hl.sil.", + "isMetro": false, + "latitude": 14.551044, + "longitude": 50.743332, + "stopId": "U31358" + }, + { + "id": "U31359Z1", + "name": "Nový Bor,T.G.Masaryka", + "isMetro": false, + "latitude": 14.553164, + "longitude": 50.754406, + "stopId": "U31359" + }, + { + "id": "U31359Z2", + "name": "Nový Bor,T.G.Masaryka", + "isMetro": false, + "latitude": 14.553728, + "longitude": 50.755318, + "stopId": "U31359" + }, + { + "id": "U31360Z1", + "name": "Nový Bor,nám.Míru", + "isMetro": false, + "latitude": 14.556379, + "longitude": 50.759502, + "stopId": "U31360" + }, + { + "id": "U31360Z2", + "name": "Nový Bor,nám.Míru", + "isMetro": false, + "latitude": 14.556131, + "longitude": 50.759312, + "stopId": "U31360" + }, + { + "id": "U31361Z1", + "name": "Nový Bor,aut.nádr.", + "isMetro": false, + "latitude": 14.549412, + "longitude": 50.7635, + "stopId": "U31361" + }, + { + "id": "U31362Z1", + "name": "Nový Bor,Egermannova", + "isMetro": false, + "latitude": 14.555885, + "longitude": 50.761047, + "stopId": "U31362" + }, + { + "id": "U31363Z1", + "name": "Nový Bor,Liberecká", + "isMetro": false, + "latitude": 14.558062, + "longitude": 50.761696, + "stopId": "U31363" + }, + { + "id": "U31365Z1", + "name": "Svor,otočka", + "isMetro": false, + "latitude": 14.598572, + "longitude": 50.791798, + "stopId": "U31365" + }, + { + "id": "U31366Z1", + "name": "Svor,Nová Huť", + "isMetro": false, + "latitude": 14.590958, + "longitude": 50.831005, + "stopId": "U31366" + }, + { + "id": "U31366Z2", + "name": "Svor,Nová Huť", + "isMetro": false, + "latitude": 14.59071, + "longitude": 50.830978, + "stopId": "U31366" + }, + { + "id": "U31367Z2", + "name": "Cvikov,aut.st.", + "isMetro": false, + "latitude": 14.634439, + "longitude": 50.774902, + "stopId": "U31367" + }, + { + "id": "U31368Z1", + "name": "Ralsko,Hradčany", + "isMetro": false, + "latitude": 14.706708, + "longitude": 50.617695, + "stopId": "U31368" + }, + { + "id": "U31368Z2", + "name": "Ralsko,Hradčany", + "isMetro": false, + "latitude": 14.706534, + "longitude": 50.617405, + "stopId": "U31368" + }, + { + "id": "U31369Z1", + "name": "Ralsko,Boreček", + "isMetro": false, + "latitude": 14.716887, + "longitude": 50.633369, + "stopId": "U31369" + }, + { + "id": "U31369Z2", + "name": "Ralsko,Boreček", + "isMetro": false, + "latitude": 14.716404, + "longitude": 50.633224, + "stopId": "U31369" + }, + { + "id": "U31370Z1", + "name": "Ralsko,Boreček,háj.", + "isMetro": false, + "latitude": 14.716493, + "longitude": 50.640602, + "stopId": "U31370" + }, + { + "id": "U31370Z2", + "name": "Ralsko,Boreček,háj.", + "isMetro": false, + "latitude": 14.716273, + "longitude": 50.640411, + "stopId": "U31370" + }, + { + "id": "U31371Z1", + "name": "Mimoň,Malá", + "isMetro": false, + "latitude": 14.725544, + "longitude": 50.656219, + "stopId": "U31371" + }, + { + "id": "U31371Z11", + "name": "Mimoň,Malá", + "isMetro": false, + "latitude": 14.725544, + "longitude": 50.656219, + "stopId": "U31371" + }, + { + "id": "U31372Z1", + "name": "Mimoň,kino", + "isMetro": false, + "latitude": 14.725348, + "longitude": 50.65506, + "stopId": "U31372" + }, + { + "id": "U31372Z11", + "name": "Mimoň,kino", + "isMetro": false, + "latitude": 14.725348, + "longitude": 50.65506, + "stopId": "U31372" + }, + { + "id": "U31374Z11", + "name": "Mimoň,Žitavská", + "isMetro": false, + "latitude": 14.726747, + "longitude": 50.666225, + "stopId": "U31374" + }, + { + "id": "U31374Z12", + "name": "Mimoň,Žitavská", + "isMetro": false, + "latitude": 14.726563, + "longitude": 50.666374, + "stopId": "U31374" + }, + { + "id": "U31374Z2", + "name": "Mimoň,Žitavská", + "isMetro": false, + "latitude": 14.726563, + "longitude": 50.666374, + "stopId": "U31374" + }, + { + "id": "U31375Z2", + "name": "Noviny p.Ralskem,hl.sil.", + "isMetro": false, + "latitude": 14.741768, + "longitude": 50.691509, + "stopId": "U31375" + }, + { + "id": "U31376Z2", + "name": "Brniště,Luhov,křiž.", + "isMetro": false, + "latitude": 14.757079, + "longitude": 50.708183, + "stopId": "U31376" + }, + { + "id": "U31377Z21", + "name": "Stráž p.Ralskem,aut.st.", + "isMetro": false, + "latitude": 14.797679, + "longitude": 50.703335, + "stopId": "U31377" + }, + { + "id": "U31382Z1", + "name": "Jiřetín p.Jedlovou,Lesné", + "isMetro": false, + "latitude": 14.587709, + "longitude": 50.863827, + "stopId": "U31382" + }, + { + "id": "U31382Z2", + "name": "Jiřetín p.Jedlovou,Lesné", + "isMetro": false, + "latitude": 14.587545, + "longitude": 50.863819, + "stopId": "U31382" + }, + { + "id": "U31383Z1", + "name": "Dolní Podluží,křiž.", + "isMetro": false, + "latitude": 14.584591, + "longitude": 50.875278, + "stopId": "U31383" + }, + { + "id": "U31383Z2", + "name": "Dolní Podluží,křiž.", + "isMetro": false, + "latitude": 14.584788, + "longitude": 50.875401, + "stopId": "U31383" + }, + { + "id": "U31384Z1", + "name": "Dolní Podluží,škola", + "isMetro": false, + "latitude": 14.595557, + "longitude": 50.879631, + "stopId": "U31384" + }, + { + "id": "U31384Z2", + "name": "Dolní Podluží,škola", + "isMetro": false, + "latitude": 14.594691, + "longitude": 50.879791, + "stopId": "U31384" + }, + { + "id": "U31385Z1", + "name": "Varnsdorf,jatky", + "isMetro": false, + "latitude": 14.623113, + "longitude": 50.891827, + "stopId": "U31385" + }, + { + "id": "U31385Z2", + "name": "Varnsdorf,jatky", + "isMetro": false, + "latitude": 14.622896, + "longitude": 50.891842, + "stopId": "U31385" + }, + { + "id": "U31386Z1", + "name": "Varnsdorf,Severní dráha", + "isMetro": false, + "latitude": 14.631557, + "longitude": 50.904514, + "stopId": "U31386" + }, + { + "id": "U31386Z2", + "name": "Varnsdorf,Severní dráha", + "isMetro": false, + "latitude": 14.631364, + "longitude": 50.904388, + "stopId": "U31386" + }, + { + "id": "U31387Z1", + "name": "Varnsdorf,sportovní hala", + "isMetro": false, + "latitude": 14.623912, + "longitude": 50.907276, + "stopId": "U31387" + }, + { + "id": "U31387Z2", + "name": "Varnsdorf,sportovní hala", + "isMetro": false, + "latitude": 14.623026, + "longitude": 50.907318, + "stopId": "U31387" + }, + { + "id": "U31388Z2", + "name": "Varnsdorf,aut.nádr.", + "isMetro": false, + "latitude": 14.618649, + "longitude": 50.91209, + "stopId": "U31388" + }, + { + "id": "U31388Z3", + "name": "Varnsdorf,aut.nádr.", + "isMetro": false, + "latitude": 14.61833, + "longitude": 50.912079, + "stopId": "U31388" + }, + { + "id": "U31389Z1", + "name": "Varnsdorf,Studánka", + "isMetro": false, + "latitude": 14.569441, + "longitude": 50.90974, + "stopId": "U31389" + }, + { + "id": "U31389Z2", + "name": "Varnsdorf,Studánka", + "isMetro": false, + "latitude": 14.569296, + "longitude": 50.909618, + "stopId": "U31389" + }, + { + "id": "U31390Z1", + "name": "Rumburk,Krásnolipská", + "isMetro": false, + "latitude": 14.54606, + "longitude": 50.944546, + "stopId": "U31390" + }, + { + "id": "U31390Z2", + "name": "Rumburk,Krásnolipská", + "isMetro": false, + "latitude": 14.545918, + "longitude": 50.944572, + "stopId": "U31390" + }, + { + "id": "U31391Z1", + "name": "Rumburk,Bytex 01", + "isMetro": false, + "latitude": 14.554913, + "longitude": 50.951225, + "stopId": "U31391" + }, + { + "id": "U31391Z2", + "name": "Rumburk,Bytex 01", + "isMetro": false, + "latitude": 14.555138, + "longitude": 50.951096, + "stopId": "U31391" + }, + { + "id": "U31392Z1", + "name": "Rumburk,žel.st.", + "isMetro": false, + "latitude": 14.552826, + "longitude": 50.956219, + "stopId": "U31392" + }, + { + "id": "U313Z1", + "name": "Kyje", + "isMetro": false, + "latitude": 14.549417, + "longitude": 50.09795, + "stopId": "U313" + }, + { + "id": "U313Z2", + "name": "Kyje", + "isMetro": false, + "latitude": 14.548901, + "longitude": 50.097633, + "stopId": "U313" + }, + { + "id": "U31409Z1", + "name": "Litoměřice,Pokratice,kaplička", + "isMetro": false, + "latitude": 14.12656, + "longitude": 50.548065, + "stopId": "U31409" + }, + { + "id": "U31410Z1", + "name": "Litoměřice,Pokratická", + "isMetro": false, + "latitude": 14.124278, + "longitude": 50.545078, + "stopId": "U31410" + }, + { + "id": "U31410Z2", + "name": "Litoměřice,Pokratická", + "isMetro": false, + "latitude": 14.124487, + "longitude": 50.545044, + "stopId": "U31410" + }, + { + "id": "U31411Z1", + "name": "Litoměřice,u závor", + "isMetro": false, + "latitude": 14.125746, + "longitude": 50.541706, + "stopId": "U31411" + }, + { + "id": "U31411Z2", + "name": "Litoměřice,u závor", + "isMetro": false, + "latitude": 14.125468, + "longitude": 50.54187, + "stopId": "U31411" + }, + { + "id": "U31412Z1", + "name": "Litoměřice,žel.st.hor.", + "isMetro": false, + "latitude": 14.130161, + "longitude": 50.540775, + "stopId": "U31412" + }, + { + "id": "U31412Z2", + "name": "Litoměřice,žel.st.hor.", + "isMetro": false, + "latitude": 14.131289, + "longitude": 50.540699, + "stopId": "U31412" + }, + { + "id": "U31414Z1", + "name": "Litoměřice,u pošty", + "isMetro": false, + "latitude": 14.131831, + "longitude": 50.536285, + "stopId": "U31414" + }, + { + "id": "U31414Z2", + "name": "Litoměřice,u pošty", + "isMetro": false, + "latitude": 14.132172, + "longitude": 50.536312, + "stopId": "U31414" + }, + { + "id": "U31415Z1", + "name": "Litoměřice,aut.nádr.", + "isMetro": false, + "latitude": 14.139906, + "longitude": 50.533039, + "stopId": "U31415" + }, + { + "id": "U31415Z5", + "name": "Litoměřice,aut.nádr.", + "isMetro": false, + "latitude": 14.140326, + "longitude": 50.533096, + "stopId": "U31415" + }, + { + "id": "U31416Z1", + "name": "Litoměřice,obchodní centrum", + "isMetro": false, + "latitude": 14.137601, + "longitude": 50.525581, + "stopId": "U31416" + }, + { + "id": "U31417Z1", + "name": "Terezín,aut.nádr.", + "isMetro": false, + "latitude": 14.14882, + "longitude": 50.510979, + "stopId": "U31417" + }, + { + "id": "U31417Z2", + "name": "Terezín,aut.nádr.", + "isMetro": false, + "latitude": 14.149014, + "longitude": 50.510365, + "stopId": "U31417" + }, + { + "id": "U31417Z3", + "name": "Terezín,aut.nádr.", + "isMetro": false, + "latitude": 14.149662, + "longitude": 50.511421, + "stopId": "U31417" + }, + { + "id": "U31417Z4", + "name": "Terezín,aut.nádr.", + "isMetro": false, + "latitude": 14.148827, + "longitude": 50.511303, + "stopId": "U31417" + }, + { + "id": "U31418Z1", + "name": "Bohušovice n.Ohří,záv.", + "isMetro": false, + "latitude": 14.146061, + "longitude": 50.501999, + "stopId": "U31418" + }, + { + "id": "U31418Z2", + "name": "Bohušovice n.Ohří,záv.", + "isMetro": false, + "latitude": 14.146031, + "longitude": 50.502644, + "stopId": "U31418" + }, + { + "id": "U31419Z1", + "name": "Bohušovice n.Ohří,sídliště", + "isMetro": false, + "latitude": 14.146457, + "longitude": 50.496059, + "stopId": "U31419" + }, + { + "id": "U31419Z2", + "name": "Bohušovice n.Ohří,sídliště", + "isMetro": false, + "latitude": 14.146407, + "longitude": 50.496864, + "stopId": "U31419" + }, + { + "id": "U31420Z1", + "name": "Bohušovice n.Ohří,žel.st.", + "isMetro": false, + "latitude": 14.149003, + "longitude": 50.491684, + "stopId": "U31420" + }, + { + "id": "U31421Z1", + "name": "Brňany,záv.", + "isMetro": false, + "latitude": 14.146016, + "longitude": 50.487823, + "stopId": "U31421" + }, + { + "id": "U31421Z2", + "name": "Brňany,záv.", + "isMetro": false, + "latitude": 14.146074, + "longitude": 50.487671, + "stopId": "U31421" + }, + { + "id": "U31422Z1", + "name": "Brňany", + "isMetro": false, + "latitude": 14.141766, + "longitude": 50.481472, + "stopId": "U31422" + }, + { + "id": "U31422Z2", + "name": "Brňany", + "isMetro": false, + "latitude": 14.141875, + "longitude": 50.481426, + "stopId": "U31422" + }, + { + "id": "U31423Z1", + "name": "Brozany n.Ohří,křiž.", + "isMetro": false, + "latitude": 14.137099, + "longitude": 50.458229, + "stopId": "U31423" + }, + { + "id": "U31423Z2", + "name": "Brozany n.Ohří,křiž.", + "isMetro": false, + "latitude": 14.137091, + "longitude": 50.458424, + "stopId": "U31423" + }, + { + "id": "U31424Z1", + "name": "Brozany n.Ohří", + "isMetro": false, + "latitude": 14.146216, + "longitude": 50.454224, + "stopId": "U31424" + }, + { + "id": "U31425Z1", + "name": "Doksany,zámek", + "isMetro": false, + "latitude": 14.161122, + "longitude": 50.455326, + "stopId": "U31425" + }, + { + "id": "U31425Z2", + "name": "Doksany,zámek", + "isMetro": false, + "latitude": 14.161199, + "longitude": 50.455093, + "stopId": "U31425" + }, + { + "id": "U31426Z1", + "name": "Doksany,škola", + "isMetro": false, + "latitude": 14.167428, + "longitude": 50.451725, + "stopId": "U31426" + }, + { + "id": "U31426Z2", + "name": "Doksany,škola", + "isMetro": false, + "latitude": 14.167586, + "longitude": 50.451714, + "stopId": "U31426" + }, + { + "id": "U31427Z1", + "name": "Budyně n.Ohří,Písty", + "isMetro": false, + "latitude": 14.159386, + "longitude": 50.423317, + "stopId": "U31427" + }, + { + "id": "U31427Z2", + "name": "Budyně n.Ohří,Písty", + "isMetro": false, + "latitude": 14.159569, + "longitude": 50.423332, + "stopId": "U31427" + }, + { + "id": "U31428Z1", + "name": "Budyně n.Ohří,žel.st.", + "isMetro": false, + "latitude": 14.132769, + "longitude": 50.405991, + "stopId": "U31428" + }, + { + "id": "U31428Z2", + "name": "Budyně n.Ohří,žel.st.", + "isMetro": false, + "latitude": 14.133275, + "longitude": 50.405891, + "stopId": "U31428" + }, + { + "id": "U31429Z1", + "name": "Budyně n.Ohří,Pražská", + "isMetro": false, + "latitude": 14.129656, + "longitude": 50.40448, + "stopId": "U31429" + }, + { + "id": "U31429Z2", + "name": "Budyně n.Ohří,Pražská", + "isMetro": false, + "latitude": 14.129551, + "longitude": 50.404453, + "stopId": "U31429" + }, + { + "id": "U3142Z1", + "name": "Nymburk,Všechlapský vrch", + "isMetro": false, + "latitude": 15.034265, + "longitude": 50.207981, + "stopId": "U3142" + }, + { + "id": "U3142Z2", + "name": "Nymburk,Všechlapský vrch", + "isMetro": false, + "latitude": 15.034284, + "longitude": 50.207474, + "stopId": "U3142" + }, + { + "id": "U31430Z1", + "name": "Budyně n.Ohří,Slánská", + "isMetro": false, + "latitude": 14.123219, + "longitude": 50.398144, + "stopId": "U31430" + }, + { + "id": "U31430Z2", + "name": "Budyně n.Ohří,Slánská", + "isMetro": false, + "latitude": 14.123338, + "longitude": 50.398182, + "stopId": "U31430" + }, + { + "id": "U31431Z1", + "name": "Mšené-lázně,lázně", + "isMetro": false, + "latitude": 14.131613, + "longitude": 50.364193, + "stopId": "U31431" + }, + { + "id": "U31431Z2", + "name": "Mšené-lázně,lázně", + "isMetro": false, + "latitude": 14.131682, + "longitude": 50.36425, + "stopId": "U31431" + }, + { + "id": "U31432Z1", + "name": "Martiněves,Charvatce", + "isMetro": false, + "latitude": 14.147705, + "longitude": 50.361633, + "stopId": "U31432" + }, + { + "id": "U31432Z2", + "name": "Martiněves,Charvatce", + "isMetro": false, + "latitude": 14.14804, + "longitude": 50.361755, + "stopId": "U31432" + }, + { + "id": "U31433Z1", + "name": "Terezín,U Památníku", + "isMetro": false, + "latitude": 14.157866, + "longitude": 50.512539, + "stopId": "U31433" + }, + { + "id": "U31433Z2", + "name": "Terezín,U Památníku", + "isMetro": false, + "latitude": 14.156854, + "longitude": 50.512486, + "stopId": "U31433" + }, + { + "id": "U31434Z1", + "name": "Bohušovice n.Ohří,Hrdly", + "isMetro": false, + "latitude": 14.173706, + "longitude": 50.483669, + "stopId": "U31434" + }, + { + "id": "U31434Z2", + "name": "Bohušovice n.Ohří,Hrdly", + "isMetro": false, + "latitude": 14.174045, + "longitude": 50.483791, + "stopId": "U31434" + }, + { + "id": "U31435Z1", + "name": "Dolánky n.Ohří", + "isMetro": false, + "latitude": 14.164997, + "longitude": 50.473461, + "stopId": "U31435" + }, + { + "id": "U31435Z2", + "name": "Dolánky n.Ohří", + "isMetro": false, + "latitude": 14.16545, + "longitude": 50.47366, + "stopId": "U31435" + }, + { + "id": "U31437Z1", + "name": "Přestavlky,rozc.1.0", + "isMetro": false, + "latitude": 14.211173, + "longitude": 50.405273, + "stopId": "U31437" + }, + { + "id": "U31437Z2", + "name": "Přestavlky,rozc.1.0", + "isMetro": false, + "latitude": 14.211331, + "longitude": 50.405373, + "stopId": "U31437" + }, + { + "id": "U31438Z1", + "name": "Račiněves,Motorest rozc.", + "isMetro": false, + "latitude": 14.22578, + "longitude": 50.389324, + "stopId": "U31438" + }, + { + "id": "U31438Z2", + "name": "Račiněves,Motorest rozc.", + "isMetro": false, + "latitude": 14.225784, + "longitude": 50.389576, + "stopId": "U31438" + }, + { + "id": "U31439Z1", + "name": "Straškov-Vodochody", + "isMetro": false, + "latitude": 14.250915, + "longitude": 50.363869, + "stopId": "U31439" + }, + { + "id": "U31439Z2", + "name": "Straškov-Vodochody", + "isMetro": false, + "latitude": 14.251375, + "longitude": 50.363976, + "stopId": "U31439" + }, + { + "id": "U3143Z1", + "name": "Krupá,Šustna", + "isMetro": false, + "latitude": 13.740605, + "longitude": 50.171146, + "stopId": "U3143" + }, + { + "id": "U3143Z2", + "name": "Krupá,Šustna", + "isMetro": false, + "latitude": 13.740862, + "longitude": 50.171143, + "stopId": "U3143" + }, + { + "id": "U3143Z3", + "name": "Krupá,Šustna", + "isMetro": false, + "latitude": 13.73867, + "longitude": 50.171925, + "stopId": "U3143" + }, + { + "id": "U3143Z4", + "name": "Krupá,Šustna", + "isMetro": false, + "latitude": 13.738796, + "longitude": 50.171806, + "stopId": "U3143" + }, + { + "id": "U3143Z5", + "name": "Krupá,Šustna", + "isMetro": false, + "latitude": 13.740066, + "longitude": 50.173164, + "stopId": "U3143" + }, + { + "id": "U3143Z6", + "name": "Krupá,Šustna", + "isMetro": false, + "latitude": 13.740268, + "longitude": 50.173016, + "stopId": "U3143" + }, + { + "id": "U31440Z1", + "name": "Mnetěš,rozc.", + "isMetro": false, + "latitude": 14.268229, + "longitude": 50.353462, + "stopId": "U31440" + }, + { + "id": "U31440Z2", + "name": "Mnetěš,rozc.", + "isMetro": false, + "latitude": 14.268124, + "longitude": 50.353893, + "stopId": "U31440" + }, + { + "id": "U31441Z1", + "name": "Planá n.Luž.,nám.", + "isMetro": false, + "latitude": 14.702865, + "longitude": 49.353088, + "stopId": "U31441" + }, + { + "id": "U31441Z2", + "name": "Planá n.Luž.,nám.", + "isMetro": false, + "latitude": 14.702947, + "longitude": 49.353249, + "stopId": "U31441" + }, + { + "id": "U31442Z1", + "name": "Roudná", + "isMetro": false, + "latitude": 14.720634, + "longitude": 49.301712, + "stopId": "U31442" + }, + { + "id": "U31442Z2", + "name": "Roudná", + "isMetro": false, + "latitude": 14.721684, + "longitude": 49.302574, + "stopId": "U31442" + }, + { + "id": "U31443Z1", + "name": "Klenovice", + "isMetro": false, + "latitude": 14.715285, + "longitude": 49.277794, + "stopId": "U31443" + }, + { + "id": "U31443Z2", + "name": "Klenovice", + "isMetro": false, + "latitude": 14.715576, + "longitude": 49.27779, + "stopId": "U31443" + }, + { + "id": "U31444Z1", + "name": "Soběslav,Zimní stadion", + "isMetro": false, + "latitude": 14.71719, + "longitude": 49.255581, + "stopId": "U31444" + }, + { + "id": "U31444Z2", + "name": "Soběslav,Zimní stadion", + "isMetro": false, + "latitude": 14.717456, + "longitude": 49.255653, + "stopId": "U31444" + }, + { + "id": "U31445Z1", + "name": "Veselí n.Luž.,aut.st.", + "isMetro": false, + "latitude": 14.716002, + "longitude": 49.193283, + "stopId": "U31445" + }, + { + "id": "U31446Z1", + "name": "Veselí n.Luž.,kult.dům", + "isMetro": false, + "latitude": 14.70122, + "longitude": 49.186661, + "stopId": "U31446" + }, + { + "id": "U31446Z2", + "name": "Veselí n.Luž.,kult.dům", + "isMetro": false, + "latitude": 14.701097, + "longitude": 49.186459, + "stopId": "U31446" + }, + { + "id": "U31447Z1", + "name": "Frahelž", + "isMetro": false, + "latitude": 14.72585, + "longitude": 49.116783, + "stopId": "U31447" + }, + { + "id": "U31447Z2", + "name": "Frahelž", + "isMetro": false, + "latitude": 14.726002, + "longitude": 49.11689, + "stopId": "U31447" + }, + { + "id": "U31448Z1", + "name": "Lomnice n.Luž.,Václavské nám.", + "isMetro": false, + "latitude": 14.719419, + "longitude": 49.081509, + "stopId": "U31448" + }, + { + "id": "U31449Z1", + "name": "Třeboň,aut.nádr.", + "isMetro": false, + "latitude": 14.765174, + "longitude": 49.007874, + "stopId": "U31449" + }, + { + "id": "U31449Z6", + "name": "Třeboň,aut.nádr.", + "isMetro": false, + "latitude": 14.765295, + "longitude": 49.007847, + "stopId": "U31449" + }, + { + "id": "U31450Z1", + "name": "Sezimovo Ústí,Kovosvit", + "isMetro": false, + "latitude": 14.699025, + "longitude": 49.376892, + "stopId": "U31450" + }, + { + "id": "U31454Z1", + "name": "Kardašova Řečice,nám.", + "isMetro": false, + "latitude": 14.850971, + "longitude": 49.184525, + "stopId": "U31454" + }, + { + "id": "U31455Z1", + "name": "Jindřichův Hradec,Děbolín", + "isMetro": false, + "latitude": 14.956003, + "longitude": 49.159122, + "stopId": "U31455" + }, + { + "id": "U31455Z2", + "name": "Jindřichův Hradec,Děbolín", + "isMetro": false, + "latitude": 14.955874, + "longitude": 49.159264, + "stopId": "U31455" + }, + { + "id": "U31456Z1", + "name": "Jindřichův Hradec,aut.nádr.", + "isMetro": false, + "latitude": 15.004098, + "longitude": 49.15406, + "stopId": "U31456" + }, + { + "id": "U31456Z9", + "name": "Jindřichův Hradec,aut.nádr.", + "isMetro": false, + "latitude": 15.005177, + "longitude": 49.154049, + "stopId": "U31456" + }, + { + "id": "U3146Z1", + "name": "Nymburk,V Kolonii", + "isMetro": false, + "latitude": 15.039006, + "longitude": 50.192814, + "stopId": "U3146" + }, + { + "id": "U3146Z2", + "name": "Nymburk,V Kolonii", + "isMetro": false, + "latitude": 15.038874, + "longitude": 50.192921, + "stopId": "U3146" + }, + { + "id": "U31470Z1", + "name": "Kryry,Strojetice,křiž.", + "isMetro": false, + "latitude": 13.481436, + "longitude": 50.173233, + "stopId": "U31470" + }, + { + "id": "U31471Z1", + "name": "Kryry,Běsno", + "isMetro": false, + "latitude": 13.510483, + "longitude": 50.179699, + "stopId": "U31471" + }, + { + "id": "U31472Z1", + "name": "Očihov,Očihovec", + "isMetro": false, + "latitude": 13.470675, + "longitude": 50.190575, + "stopId": "U31472" + }, + { + "id": "U31472Z2", + "name": "Očihov,Očihovec", + "isMetro": false, + "latitude": 13.470647, + "longitude": 50.190388, + "stopId": "U31472" + }, + { + "id": "U31473Z1", + "name": "Očihov", + "isMetro": false, + "latitude": 13.461148, + "longitude": 50.198246, + "stopId": "U31473" + }, + { + "id": "U31473Z2", + "name": "Očihov", + "isMetro": false, + "latitude": 13.461296, + "longitude": 50.198105, + "stopId": "U31473" + }, + { + "id": "U31474Z1", + "name": "Podbořany,nem.", + "isMetro": false, + "latitude": 13.417275, + "longitude": 50.225578, + "stopId": "U31474" + }, + { + "id": "U31474Z2", + "name": "Podbořany,nem.", + "isMetro": false, + "latitude": 13.417055, + "longitude": 50.225582, + "stopId": "U31474" + }, + { + "id": "U31475Z1", + "name": "Podbořany,nám.", + "isMetro": false, + "latitude": 13.408586, + "longitude": 50.228115, + "stopId": "U31475" + }, + { + "id": "U31476Z3", + "name": "Podbořany,aut.nádr.", + "isMetro": false, + "latitude": 13.40755, + "longitude": 50.223663, + "stopId": "U31476" + }, + { + "id": "U31478Z301", + "name": "Chvaletice", + "isMetro": false, + "latitude": 15.418692, + "longitude": 50.03746, + "stopId": "U31478" + }, + { + "id": "U31490Z1", + "name": "Hlavice,ves", + "isMetro": false, + "latitude": 14.922112, + "longitude": 50.632191, + "stopId": "U31490" + }, + { + "id": "U31491Z1", + "name": "Ralsko,Ploužnice", + "isMetro": false, + "latitude": 14.752172, + "longitude": 50.631367, + "stopId": "U31491" + }, + { + "id": "U31491Z2", + "name": "Ralsko,Ploužnice", + "isMetro": false, + "latitude": 14.752518, + "longitude": 50.63073, + "stopId": "U31491" + }, + { + "id": "U31492Z1", + "name": "Mimoň,lesní závod", + "isMetro": false, + "latitude": 14.747181, + "longitude": 50.636856, + "stopId": "U31492" + }, + { + "id": "U31492Z2", + "name": "Mimoň,lesní závod", + "isMetro": false, + "latitude": 14.747106, + "longitude": 50.636738, + "stopId": "U31492" + }, + { + "id": "U31493Z1", + "name": "Mimoň,Pražská", + "isMetro": false, + "latitude": 14.734978, + "longitude": 50.651459, + "stopId": "U31493" + }, + { + "id": "U31493Z2", + "name": "Mimoň,Pražská", + "isMetro": false, + "latitude": 14.735158, + "longitude": 50.650955, + "stopId": "U31493" + }, + { + "id": "U31494Z2", + "name": "Ledeč n.Sáz.,Husovo nám.", + "isMetro": false, + "latitude": 15.275311, + "longitude": 49.694534, + "stopId": "U31494" + }, + { + "id": "U31494Z3", + "name": "Ledeč n.Sáz.,Husovo nám.", + "isMetro": false, + "latitude": 15.275312, + "longitude": 49.694439, + "stopId": "U31494" + }, + { + "id": "U31495Z1", + "name": "Strašice,Mikulíkův mlýn", + "isMetro": false, + "latitude": 13.745399, + "longitude": 49.731056, + "stopId": "U31495" + }, + { + "id": "U31495Z2", + "name": "Strašice,Mikulíkův mlýn", + "isMetro": false, + "latitude": 13.74569, + "longitude": 49.731071, + "stopId": "U31495" + }, + { + "id": "U31496Z1", + "name": "Strašice,Huť", + "isMetro": false, + "latitude": 13.752639, + "longitude": 49.729202, + "stopId": "U31496" + }, + { + "id": "U31496Z2", + "name": "Strašice,Huť", + "isMetro": false, + "latitude": 13.752593, + "longitude": 49.729374, + "stopId": "U31496" + }, + { + "id": "U31497Z1", + "name": "Strašice,ObÚ", + "isMetro": false, + "latitude": 13.757209, + "longitude": 49.734734, + "stopId": "U31497" + }, + { + "id": "U31497Z2", + "name": "Strašice,ObÚ", + "isMetro": false, + "latitude": 13.757036, + "longitude": 49.734837, + "stopId": "U31497" + }, + { + "id": "U31498Z1", + "name": "Strašice,U Libuše", + "isMetro": false, + "latitude": 13.755151, + "longitude": 49.738426, + "stopId": "U31498" + }, + { + "id": "U31498Z2", + "name": "Strašice,U Libuše", + "isMetro": false, + "latitude": 13.75498, + "longitude": 49.738445, + "stopId": "U31498" + }, + { + "id": "U31499Z1", + "name": "Strašice,Dvůr", + "isMetro": false, + "latitude": 13.763552, + "longitude": 49.744781, + "stopId": "U31499" + }, + { + "id": "U31499Z2", + "name": "Strašice,Dvůr", + "isMetro": false, + "latitude": 13.763454, + "longitude": 49.744816, + "stopId": "U31499" + }, + { + "id": "U314Z1", + "name": "Kyselova", + "isMetro": false, + "latitude": 14.463022, + "longitude": 50.126179, + "stopId": "U314" + }, + { + "id": "U314Z2", + "name": "Kyselova", + "isMetro": false, + "latitude": 14.463921, + "longitude": 50.126137, + "stopId": "U314" + }, + { + "id": "U31500Z1", + "name": "Olešná,rozc.Těně", + "isMetro": false, + "latitude": 13.782575, + "longitude": 49.759926, + "stopId": "U31500" + }, + { + "id": "U31500Z2", + "name": "Olešná,rozc.Těně", + "isMetro": false, + "latitude": 13.782079, + "longitude": 49.760189, + "stopId": "U31500" + }, + { + "id": "U31500Z3", + "name": "Olešná,rozc.Těně", + "isMetro": false, + "latitude": 13.781993, + "longitude": 49.760876, + "stopId": "U31500" + }, + { + "id": "U31501Z1", + "name": "Cheznovice,ObÚ", + "isMetro": false, + "latitude": 13.784936, + "longitude": 49.778912, + "stopId": "U31501" + }, + { + "id": "U31501Z2", + "name": "Cheznovice,ObÚ", + "isMetro": false, + "latitude": 13.78456, + "longitude": 49.778934, + "stopId": "U31501" + }, + { + "id": "U31503Z1", + "name": "Kryry,Strojetice", + "isMetro": false, + "latitude": 13.479444, + "longitude": 50.174278, + "stopId": "U31503" + }, + { + "id": "U31503Z2", + "name": "Kryry,Strojetice", + "isMetro": false, + "latitude": 13.479221, + "longitude": 50.174274, + "stopId": "U31503" + }, + { + "id": "U31505Z1", + "name": "Bácovice,rozc.1.0", + "isMetro": false, + "latitude": 15.180792, + "longitude": 49.482475, + "stopId": "U31505" + }, + { + "id": "U31505Z2", + "name": "Bácovice,rozc.1.0", + "isMetro": false, + "latitude": 15.180779, + "longitude": 49.482765, + "stopId": "U31505" + }, + { + "id": "U31506Z1", + "name": "Balkova Lhota", + "isMetro": false, + "latitude": 14.60643, + "longitude": 49.451691, + "stopId": "U31506" + }, + { + "id": "U31506Z2", + "name": "Balkova Lhota", + "isMetro": false, + "latitude": 14.606518, + "longitude": 49.451553, + "stopId": "U31506" + }, + { + "id": "U31507Z1", + "name": "Balkova Lhota,Knížata rozc.1.0", + "isMetro": false, + "latitude": 14.58851, + "longitude": 49.455223, + "stopId": "U31507" + }, + { + "id": "U31507Z2", + "name": "Balkova Lhota,Knížata rozc.1.0", + "isMetro": false, + "latitude": 14.588577, + "longitude": 49.455307, + "stopId": "U31507" + }, + { + "id": "U31508Z1", + "name": "Balkova Lhota,Výrec", + "isMetro": false, + "latitude": 14.602904, + "longitude": 49.445545, + "stopId": "U31508" + }, + { + "id": "U31508Z2", + "name": "Balkova Lhota,Výrec", + "isMetro": false, + "latitude": 14.603102, + "longitude": 49.445614, + "stopId": "U31508" + }, + { + "id": "U31514Z1", + "name": "Mišovice,Draheničky,rozc.Hostišovice 2.0", + "isMetro": false, + "latitude": 13.949384, + "longitude": 49.500561, + "stopId": "U31514" + }, + { + "id": "U31813Z301", + "name": "Přelouč", + "isMetro": false, + "latitude": 15.574542, + "longitude": 50.0396, + "stopId": "U31813" + }, + { + "id": "U31514Z2", + "name": "Mišovice,Draheničky,rozc.Hostišovice 2.0", + "isMetro": false, + "latitude": 13.949489, + "longitude": 49.500591, + "stopId": "U31514" + }, + { + "id": "U31536Z1", + "name": "Blatná,Palackého", + "isMetro": false, + "latitude": 13.882076, + "longitude": 49.427979, + "stopId": "U31536" + }, + { + "id": "U31536Z5", + "name": "Blatná,Palackého", + "isMetro": false, + "latitude": 13.881637, + "longitude": 49.428387, + "stopId": "U31536" + }, + { + "id": "U31540Z1", + "name": "Blatná,Skaličany", + "isMetro": false, + "latitude": 13.915452, + "longitude": 49.437328, + "stopId": "U31540" + }, + { + "id": "U31540Z2", + "name": "Blatná,Skaličany", + "isMetro": false, + "latitude": 13.915697, + "longitude": 49.437389, + "stopId": "U31540" + }, + { + "id": "U31543Z1", + "name": "Borovno", + "isMetro": false, + "latitude": 13.691109, + "longitude": 49.620834, + "stopId": "U31543" + }, + { + "id": "U31543Z2", + "name": "Borovno", + "isMetro": false, + "latitude": 13.690951, + "longitude": 49.620647, + "stopId": "U31543" + }, + { + "id": "U31554Z1", + "name": "Čáslavsko", + "isMetro": false, + "latitude": 15.004478, + "longitude": 49.592232, + "stopId": "U31554" + }, + { + "id": "U31554Z2", + "name": "Čáslavsko", + "isMetro": false, + "latitude": 15.004294, + "longitude": 49.592148, + "stopId": "U31554" + }, + { + "id": "U31559Z1", + "name": "Červená Řečice", + "isMetro": false, + "latitude": 15.178462, + "longitude": 49.511505, + "stopId": "U31559" + }, + { + "id": "U31559Z2", + "name": "Červená Řečice", + "isMetro": false, + "latitude": 15.178675, + "longitude": 49.511547, + "stopId": "U31559" + }, + { + "id": "U31560Z1", + "name": "Červená Řečice,Zmišovice,rozc.", + "isMetro": false, + "latitude": 15.179341, + "longitude": 49.496811, + "stopId": "U31560" + }, + { + "id": "U31560Z2", + "name": "Červená Řečice,Zmišovice,rozc.", + "isMetro": false, + "latitude": 15.179556, + "longitude": 49.497017, + "stopId": "U31560" + }, + { + "id": "U31589Z1", + "name": "Hněvkovice", + "isMetro": false, + "latitude": 15.203464, + "longitude": 49.685532, + "stopId": "U31589" + }, + { + "id": "U31589Z2", + "name": "Hněvkovice", + "isMetro": false, + "latitude": 15.203646, + "longitude": 49.685703, + "stopId": "U31589" + }, + { + "id": "U31590Z1", + "name": "Hněvkovice,Habrovčice,rozc.", + "isMetro": false, + "latitude": 15.212163, + "longitude": 49.683189, + "stopId": "U31590" + }, + { + "id": "U31590Z2", + "name": "Hněvkovice,Habrovčice,rozc.", + "isMetro": false, + "latitude": 15.212212, + "longitude": 49.683315, + "stopId": "U31590" + }, + { + "id": "U31591Z1", + "name": "Hněvkovice,Chotěměřice", + "isMetro": false, + "latitude": 15.187874, + "longitude": 49.690071, + "stopId": "U31591" + }, + { + "id": "U31591Z2", + "name": "Hněvkovice,Chotěměřice", + "isMetro": false, + "latitude": 15.187593, + "longitude": 49.690117, + "stopId": "U31591" + }, + { + "id": "U31592Z1", + "name": "Hněvkovice,Nová Ves,rozc.1.0", + "isMetro": false, + "latitude": 15.192007, + "longitude": 49.690456, + "stopId": "U31592" + }, + { + "id": "U31592Z2", + "name": "Hněvkovice,Nová Ves,rozc.1.0", + "isMetro": false, + "latitude": 15.19208, + "longitude": 49.690514, + "stopId": "U31592" + }, + { + "id": "U31593Z1", + "name": "Hněvkovice,Ostřice rozc.1.0", + "isMetro": false, + "latitude": 15.220116, + "longitude": 49.682278, + "stopId": "U31593" + }, + { + "id": "U31593Z2", + "name": "Hněvkovice,Ostřice rozc.1.0", + "isMetro": false, + "latitude": 15.22006, + "longitude": 49.682384, + "stopId": "U31593" + }, + { + "id": "U315Z1", + "name": "Lahovice", + "isMetro": false, + "latitude": 14.398701, + "longitude": 49.989868, + "stopId": "U315" + }, + { + "id": "U315Z2", + "name": "Lahovice", + "isMetro": false, + "latitude": 14.397705, + "longitude": 49.986427, + "stopId": "U315" + }, + { + "id": "U31606Z1", + "name": "Chyšky,Hněvanice,rozc.Hrazánky 1.4", + "isMetro": false, + "latitude": 14.35917, + "longitude": 49.5131, + "stopId": "U31606" + }, + { + "id": "U31606Z2", + "name": "Chyšky,Hněvanice,rozc.Hrazánky 1.4", + "isMetro": false, + "latitude": 14.35933, + "longitude": 49.513226, + "stopId": "U31606" + }, + { + "id": "U31607Z1", + "name": "Hrazany,Hrazánky,rozc.1.7", + "isMetro": false, + "latitude": 14.354489, + "longitude": 49.524185, + "stopId": "U31607" + }, + { + "id": "U31607Z2", + "name": "Hrazany,Hrazánky,rozc.1.7", + "isMetro": false, + "latitude": 14.354665, + "longitude": 49.524338, + "stopId": "U31607" + }, + { + "id": "U31609Z1", + "name": "Hrejkovice,Pechova Lhota,rozc.", + "isMetro": false, + "latitude": 14.292973, + "longitude": 49.502392, + "stopId": "U31609" + }, + { + "id": "U31609Z2", + "name": "Hrejkovice,Pechova Lhota,rozc.", + "isMetro": false, + "latitude": 14.293046, + "longitude": 49.502491, + "stopId": "U31609" + }, + { + "id": "U31624Z1", + "name": "Chýstovice,rozc.Chyšná", + "isMetro": false, + "latitude": 15.092098, + "longitude": 49.577847, + "stopId": "U31624" + }, + { + "id": "U31624Z2", + "name": "Chýstovice,rozc.Chyšná", + "isMetro": false, + "latitude": 15.092267, + "longitude": 49.577908, + "stopId": "U31624" + }, + { + "id": "U31639Z1", + "name": "Jistebnice", + "isMetro": false, + "latitude": 14.527926, + "longitude": 49.485577, + "stopId": "U31639" + }, + { + "id": "U31639Z2", + "name": "Jistebnice", + "isMetro": false, + "latitude": 14.527215, + "longitude": 49.48563, + "stopId": "U31639" + }, + { + "id": "U31640Z1", + "name": "Jistebnice,Žofín", + "isMetro": false, + "latitude": 14.53227, + "longitude": 49.483189, + "stopId": "U31640" + }, + { + "id": "U31640Z2", + "name": "Jistebnice,Žofín", + "isMetro": false, + "latitude": 14.532173, + "longitude": 49.483307, + "stopId": "U31640" + }, + { + "id": "U31641Z1", + "name": "Jistebnice,Hodkov", + "isMetro": false, + "latitude": 14.49493, + "longitude": 49.495144, + "stopId": "U31641" + }, + { + "id": "U31641Z2", + "name": "Jistebnice,Hodkov", + "isMetro": false, + "latitude": 14.49495, + "longitude": 49.495243, + "stopId": "U31641" + }, + { + "id": "U31642Z1", + "name": "Jistebnice,Makov,Pazderna", + "isMetro": false, + "latitude": 14.559555, + "longitude": 49.474735, + "stopId": "U31642" + }, + { + "id": "U31642Z2", + "name": "Jistebnice,Makov,Pazderna", + "isMetro": false, + "latitude": 14.559731, + "longitude": 49.474739, + "stopId": "U31642" + }, + { + "id": "U31643Z1", + "name": "Jistebnice,Tisová rozc.1.0", + "isMetro": false, + "latitude": 14.547205, + "longitude": 49.480309, + "stopId": "U31643" + }, + { + "id": "U31643Z2", + "name": "Jistebnice,Tisová rozc.1.0", + "isMetro": false, + "latitude": 14.548275, + "longitude": 49.480293, + "stopId": "U31643" + }, + { + "id": "U31644Z1", + "name": "Jistebnice,Vlásenice", + "isMetro": false, + "latitude": 14.565015, + "longitude": 49.466488, + "stopId": "U31644" + }, + { + "id": "U31644Z2", + "name": "Jistebnice,Vlásenice", + "isMetro": false, + "latitude": 14.56498, + "longitude": 49.466606, + "stopId": "U31644" + }, + { + "id": "U31645Z1", + "name": "Jistebnice,Zvěstonín", + "isMetro": false, + "latitude": 14.503134, + "longitude": 49.48761, + "stopId": "U31645" + }, + { + "id": "U31645Z2", + "name": "Jistebnice,Zvěstonín", + "isMetro": false, + "latitude": 14.50307, + "longitude": 49.487709, + "stopId": "U31645" + }, + { + "id": "U31651Z1", + "name": "Kovářov,rozc.Klučenice 2.0", + "isMetro": false, + "latitude": 14.230277, + "longitude": 49.557194, + "stopId": "U31651" + }, + { + "id": "U31651Z2", + "name": "Kovářov,rozc.Klučenice 2.0", + "isMetro": false, + "latitude": 14.230411, + "longitude": 49.557148, + "stopId": "U31651" + }, + { + "id": "U31658Z301", + "name": "Kojice", + "isMetro": false, + "latitude": 15.397331, + "longitude": 50.040768, + "stopId": "U31658" + }, + { + "id": "U3165Z1", + "name": "Seletice", + "isMetro": false, + "latitude": 15.094114, + "longitude": 50.323536, + "stopId": "U3165" + }, + { + "id": "U3165Z2", + "name": "Seletice", + "isMetro": false, + "latitude": 15.094011, + "longitude": 50.323513, + "stopId": "U3165" + }, + { + "id": "U31660Z1", + "name": "Košetice", + "isMetro": false, + "latitude": 15.115658, + "longitude": 49.559338, + "stopId": "U31660" + }, + { + "id": "U31660Z2", + "name": "Košetice", + "isMetro": false, + "latitude": 15.116076, + "longitude": 49.558964, + "stopId": "U31660" + }, + { + "id": "U31665Z1", + "name": "Kovářov", + "isMetro": false, + "latitude": 14.278647, + "longitude": 49.518211, + "stopId": "U31665" + }, + { + "id": "U31666Z1", + "name": "Kovářov,Onen Svět samoty", + "isMetro": false, + "latitude": 14.232217, + "longitude": 49.561676, + "stopId": "U31666" + }, + { + "id": "U31666Z2", + "name": "Kovářov,Onen Svět samoty", + "isMetro": false, + "latitude": 14.232304, + "longitude": 49.561714, + "stopId": "U31666" + }, + { + "id": "U31667Z1", + "name": "Kovářov,škola", + "isMetro": false, + "latitude": 14.281831, + "longitude": 49.516148, + "stopId": "U31667" + }, + { + "id": "U3166Z1", + "name": "Smilovice", + "isMetro": false, + "latitude": 14.96037, + "longitude": 50.308754, + "stopId": "U3166" + }, + { + "id": "U3166Z2", + "name": "Smilovice", + "isMetro": false, + "latitude": 14.960656, + "longitude": 50.308746, + "stopId": "U3166" + }, + { + "id": "U31670Z1", + "name": "Kovářov,Lašovice", + "isMetro": false, + "latitude": 14.239454, + "longitude": 49.553612, + "stopId": "U31670" + }, + { + "id": "U31670Z2", + "name": "Kovářov,Lašovice", + "isMetro": false, + "latitude": 14.239554, + "longitude": 49.553883, + "stopId": "U31670" + }, + { + "id": "U31672Z1", + "name": "Kovářov,Radvánov", + "isMetro": false, + "latitude": 14.257013, + "longitude": 49.531414, + "stopId": "U31672" + }, + { + "id": "U31672Z2", + "name": "Kovářov,Radvánov", + "isMetro": false, + "latitude": 14.257157, + "longitude": 49.531368, + "stopId": "U31672" + }, + { + "id": "U31675Z1", + "name": "Kovářov,Zahořany,rozc.1.1", + "isMetro": false, + "latitude": 14.247496, + "longitude": 49.546555, + "stopId": "U31675" + }, + { + "id": "U31675Z2", + "name": "Kovářov,Zahořany,rozc.1.1", + "isMetro": false, + "latitude": 14.247571, + "longitude": 49.546608, + "stopId": "U31675" + }, + { + "id": "U31676Z1", + "name": "Kovářov,Zlučín", + "isMetro": false, + "latitude": 14.254909, + "longitude": 49.538174, + "stopId": "U31676" + }, + { + "id": "U31676Z2", + "name": "Kovářov,Zlučín", + "isMetro": false, + "latitude": 14.254949, + "longitude": 49.538239, + "stopId": "U31676" + }, + { + "id": "U3167Z1", + "name": "Smilovice,Bratronice", + "isMetro": false, + "latitude": 14.956474, + "longitude": 50.300373, + "stopId": "U3167" + }, + { + "id": "U3167Z2", + "name": "Smilovice,Bratronice", + "isMetro": false, + "latitude": 14.956519, + "longitude": 50.29977, + "stopId": "U3167" + }, + { + "id": "U31680Z1", + "name": "Kožlí", + "isMetro": false, + "latitude": 15.252801, + "longitude": 49.670261, + "stopId": "U31680" + }, + { + "id": "U31680Z2", + "name": "Kožlí", + "isMetro": false, + "latitude": 15.252613, + "longitude": 49.670353, + "stopId": "U31680" + }, + { + "id": "U31681Z1", + "name": "Kožlí,Březina", + "isMetro": false, + "latitude": 15.257432, + "longitude": 49.67223, + "stopId": "U31681" + }, + { + "id": "U31681Z2", + "name": "Kožlí,Březina", + "isMetro": false, + "latitude": 15.257251, + "longitude": 49.672253, + "stopId": "U31681" + }, + { + "id": "U31682Z1", + "name": "Kožlí,rozc.1.5", + "isMetro": false, + "latitude": 15.243213, + "longitude": 49.679943, + "stopId": "U31682" + }, + { + "id": "U31682Z2", + "name": "Kožlí,rozc.1.5", + "isMetro": false, + "latitude": 15.243056, + "longitude": 49.679996, + "stopId": "U31682" + }, + { + "id": "U31688Z1", + "name": "Křelovice", + "isMetro": false, + "latitude": 15.166233, + "longitude": 49.53693, + "stopId": "U31688" + }, + { + "id": "U31688Z2", + "name": "Křelovice", + "isMetro": false, + "latitude": 15.166393, + "longitude": 49.537079, + "stopId": "U31688" + }, + { + "id": "U31689Z1", + "name": "Křelovice,záv.Červená Řečice", + "isMetro": false, + "latitude": 15.171974, + "longitude": 49.529385, + "stopId": "U31689" + }, + { + "id": "U32042Z1", + "name": "Tábor,Záluží", + "isMetro": false, + "latitude": 14.703526, + "longitude": 49.42326, + "stopId": "U32042" + }, + { + "id": "U31689Z2", + "name": "Křelovice,záv.Červená Řečice", + "isMetro": false, + "latitude": 15.172209, + "longitude": 49.529331, + "stopId": "U31689" + }, + { + "id": "U3168Z1", + "name": "Smilovice,Újezd", + "isMetro": false, + "latitude": 14.952387, + "longitude": 50.309361, + "stopId": "U3168" + }, + { + "id": "U3168Z2", + "name": "Smilovice,Újezd", + "isMetro": false, + "latitude": 14.953315, + "longitude": 50.308315, + "stopId": "U3168" + }, + { + "id": "U31692Z1", + "name": "Křelovice,Jiřičky,st.sil.", + "isMetro": false, + "latitude": 15.155657, + "longitude": 49.545605, + "stopId": "U31692" + }, + { + "id": "U31692Z2", + "name": "Křelovice,Jiřičky,st.sil.", + "isMetro": false, + "latitude": 15.155785, + "longitude": 49.545708, + "stopId": "U31692" + }, + { + "id": "U31694Z1", + "name": "Křešín,Čeněnice,rozc.1.0", + "isMetro": false, + "latitude": 15.072599, + "longitude": 49.590828, + "stopId": "U31694" + }, + { + "id": "U31694Z2", + "name": "Křešín,Čeněnice,rozc.1.0", + "isMetro": false, + "latitude": 15.072724, + "longitude": 49.590961, + "stopId": "U31694" + }, + { + "id": "U3169Z1", + "name": "Smilovice,Rejšice", + "isMetro": false, + "latitude": 14.972445, + "longitude": 50.317738, + "stopId": "U3169" + }, + { + "id": "U3169Z2", + "name": "Smilovice,Rejšice", + "isMetro": false, + "latitude": 14.972581, + "longitude": 50.317772, + "stopId": "U3169" + }, + { + "id": "U316Z1", + "name": "Lahovický most", + "isMetro": false, + "latitude": 14.398083, + "longitude": 49.995434, + "stopId": "U316" + }, + { + "id": "U31710Z1", + "name": "Lukavec", + "isMetro": false, + "latitude": 14.990589, + "longitude": 49.566193, + "stopId": "U31710" + }, + { + "id": "U31710Z2", + "name": "Lukavec", + "isMetro": false, + "latitude": 14.990409, + "longitude": 49.566166, + "stopId": "U31710" + }, + { + "id": "U31713Z1", + "name": "Lukavec,Bezděkov", + "isMetro": false, + "latitude": 14.968608, + "longitude": 49.573048, + "stopId": "U31713" + }, + { + "id": "U31713Z2", + "name": "Lukavec,Bezděkov", + "isMetro": false, + "latitude": 14.968603, + "longitude": 49.573112, + "stopId": "U31713" + }, + { + "id": "U31716Z1", + "name": "Lukavec,Velká Ves,rozc.", + "isMetro": false, + "latitude": 14.964314, + "longitude": 49.575581, + "stopId": "U31716" + }, + { + "id": "U31716Z2", + "name": "Lukavec,Velká Ves,rozc.", + "isMetro": false, + "latitude": 14.964431, + "longitude": 49.575718, + "stopId": "U31716" + }, + { + "id": "U31718Z1", + "name": "Markvartice,Spařence", + "isMetro": false, + "latitude": 15.177068, + "longitude": 50.432472, + "stopId": "U31718" + }, + { + "id": "U3171Z1", + "name": "Straky,ZD", + "isMetro": false, + "latitude": 14.961195, + "longitude": 50.23037, + "stopId": "U3171" + }, + { + "id": "U3171Z2", + "name": "Straky,ZD", + "isMetro": false, + "latitude": 14.961139, + "longitude": 50.230293, + "stopId": "U3171" + }, + { + "id": "U31720Z1", + "name": "Košetice,rozc.Martinice u Onšova", + "isMetro": false, + "latitude": 15.107321, + "longitude": 49.568539, + "stopId": "U31720" + }, + { + "id": "U31720Z2", + "name": "Košetice,rozc.Martinice u Onšova", + "isMetro": false, + "latitude": 15.107243, + "longitude": 49.568802, + "stopId": "U31720" + }, + { + "id": "U31724Z11", + "name": "Milevsko,aut.st.", + "isMetro": false, + "latitude": 14.360766, + "longitude": 49.449013, + "stopId": "U31724" + }, + { + "id": "U31724Z2", + "name": "Milevsko,aut.st.", + "isMetro": false, + "latitude": 14.360762, + "longitude": 49.449547, + "stopId": "U31724" + }, + { + "id": "U31726Z1", + "name": "Milevsko,poliklinika", + "isMetro": false, + "latitude": 14.361751, + "longitude": 49.452911, + "stopId": "U31726" + }, + { + "id": "U31733Z1", + "name": "Přeborov,rozc.0.5", + "isMetro": false, + "latitude": 14.364861, + "longitude": 49.475727, + "stopId": "U31733" + }, + { + "id": "U31733Z2", + "name": "Přeborov,rozc.0.5", + "isMetro": false, + "latitude": 14.365047, + "longitude": 49.475796, + "stopId": "U31733" + }, + { + "id": "U31742Z1", + "name": "Míšov", + "isMetro": false, + "latitude": 13.7248, + "longitude": 49.622826, + "stopId": "U31742" + }, + { + "id": "U31742Z2", + "name": "Míšov", + "isMetro": false, + "latitude": 13.724948, + "longitude": 49.622707, + "stopId": "U31742" + }, + { + "id": "U31743Z1", + "name": "Mišovice,Draheničky,rozc.", + "isMetro": false, + "latitude": 13.962619, + "longitude": 49.512321, + "stopId": "U31743" + }, + { + "id": "U31743Z2", + "name": "Mišovice,Draheničky,rozc.", + "isMetro": false, + "latitude": 13.962797, + "longitude": 49.512356, + "stopId": "U31743" + }, + { + "id": "U31747Z1", + "name": "Myštice", + "isMetro": false, + "latitude": 13.968887, + "longitude": 49.452168, + "stopId": "U31747" + }, + { + "id": "U31747Z2", + "name": "Myštice", + "isMetro": false, + "latitude": 13.969053, + "longitude": 49.452209, + "stopId": "U31747" + }, + { + "id": "U31748Z1", + "name": "Myštice,Nevželice", + "isMetro": false, + "latitude": 13.964537, + "longitude": 49.463161, + "stopId": "U31748" + }, + { + "id": "U31748Z2", + "name": "Myštice,Nevželice", + "isMetro": false, + "latitude": 13.964577, + "longitude": 49.46323, + "stopId": "U31748" + }, + { + "id": "U31749Z1", + "name": "Myštice,Vahlovice", + "isMetro": false, + "latitude": 13.942895, + "longitude": 49.446674, + "stopId": "U31749" + }, + { + "id": "U31749Z2", + "name": "Myštice,Vahlovice", + "isMetro": false, + "latitude": 13.943702, + "longitude": 49.446465, + "stopId": "U31749" + }, + { + "id": "U3174Z1", + "name": "Vlkava,náves", + "isMetro": false, + "latitude": 14.961385, + "longitude": 50.271633, + "stopId": "U3174" + }, + { + "id": "U3174Z2", + "name": "Vlkava,náves", + "isMetro": false, + "latitude": 14.961113, + "longitude": 50.271511, + "stopId": "U3174" + }, + { + "id": "U31750Z1", + "name": "Nadějkov", + "isMetro": false, + "latitude": 14.478772, + "longitude": 49.502846, + "stopId": "U31750" + }, + { + "id": "U31750Z2", + "name": "Nadějkov", + "isMetro": false, + "latitude": 14.478891, + "longitude": 49.50285, + "stopId": "U31750" + }, + { + "id": "U31751Z1", + "name": "Nadějkov,Bezděkov", + "isMetro": false, + "latitude": 14.479714, + "longitude": 49.52919, + "stopId": "U31751" + }, + { + "id": "U31751Z2", + "name": "Nadějkov,Bezděkov", + "isMetro": false, + "latitude": 14.479809, + "longitude": 49.529175, + "stopId": "U31751" + }, + { + "id": "U31752Z1", + "name": "Nadějkov,Chlístov", + "isMetro": false, + "latitude": 14.484447, + "longitude": 49.538849, + "stopId": "U31752" + }, + { + "id": "U31752Z2", + "name": "Nadějkov,Chlístov", + "isMetro": false, + "latitude": 14.484502, + "longitude": 49.538891, + "stopId": "U31752" + }, + { + "id": "U31754Z1", + "name": "Nadějkov,Kaliště", + "isMetro": false, + "latitude": 14.48059, + "longitude": 49.522312, + "stopId": "U31754" + }, + { + "id": "U31754Z2", + "name": "Nadějkov,Kaliště", + "isMetro": false, + "latitude": 14.480666, + "longitude": 49.522316, + "stopId": "U31754" + }, + { + "id": "U31755Z1", + "name": "Nadějkov,Petříkovice", + "isMetro": false, + "latitude": 14.485703, + "longitude": 49.495754, + "stopId": "U31755" + }, + { + "id": "U31755Z2", + "name": "Nadějkov,Petříkovice", + "isMetro": false, + "latitude": 14.485671, + "longitude": 49.495857, + "stopId": "U31755" + }, + { + "id": "U3175Z1", + "name": "Vlkava,Bor", + "isMetro": false, + "latitude": 14.955943, + "longitude": 50.285458, + "stopId": "U3175" + }, + { + "id": "U3175Z2", + "name": "Vlkava,Bor", + "isMetro": false, + "latitude": 14.955675, + "longitude": 50.285286, + "stopId": "U3175" + }, + { + "id": "U31773Z1", + "name": "Osek", + "isMetro": false, + "latitude": 15.155451, + "longitude": 50.464397, + "stopId": "U31773" + }, + { + "id": "U31773Z2", + "name": "Osek", + "isMetro": false, + "latitude": 15.155478, + "longitude": 50.464481, + "stopId": "U31773" + }, + { + "id": "U31774Z1", + "name": "Pacov,aut.nádr.", + "isMetro": false, + "latitude": 15.003559, + "longitude": 49.470097, + "stopId": "U31774" + }, + { + "id": "U31774Z2", + "name": "Pacov,aut.nádr.", + "isMetro": false, + "latitude": 15.003695, + "longitude": 49.470085, + "stopId": "U31774" + }, + { + "id": "U31776Z1", + "name": "Pacov,žel.st.", + "isMetro": false, + "latitude": 15.017464, + "longitude": 49.460258, + "stopId": "U31776" + }, + { + "id": "U3177Z1", + "name": "Všechlapy", + "isMetro": false, + "latitude": 15.028952, + "longitude": 50.220398, + "stopId": "U3177" + }, + { + "id": "U3177Z2", + "name": "Všechlapy", + "isMetro": false, + "latitude": 15.028543, + "longitude": 50.220844, + "stopId": "U3177" + }, + { + "id": "U31780Z1", + "name": "Pacov,Hrádek statek", + "isMetro": false, + "latitude": 15.025521, + "longitude": 49.491871, + "stopId": "U31780" + }, + { + "id": "U31780Z2", + "name": "Pacov,Hrádek statek", + "isMetro": false, + "latitude": 15.025649, + "longitude": 49.491856, + "stopId": "U31780" + }, + { + "id": "U31783Z1", + "name": "Pelhřimov,aut.nádr.", + "isMetro": false, + "latitude": 15.223285, + "longitude": 49.425358, + "stopId": "U31783" + }, + { + "id": "U31783Z2", + "name": "Pelhřimov,aut.nádr.", + "isMetro": false, + "latitude": 15.223418, + "longitude": 49.424923, + "stopId": "U31783" + }, + { + "id": "U31784Z1", + "name": "Pelhřimov,hotel REKREA", + "isMetro": false, + "latitude": 15.227373, + "longitude": 49.431442, + "stopId": "U31784" + }, + { + "id": "U31784Z2", + "name": "Pelhřimov,hotel REKREA", + "isMetro": false, + "latitude": 15.227535, + "longitude": 49.431465, + "stopId": "U31784" + }, + { + "id": "U31787Z1", + "name": "Pelhřimov,Pražská", + "isMetro": false, + "latitude": 15.218184, + "longitude": 49.43541, + "stopId": "U31787" + }, + { + "id": "U31787Z2", + "name": "Pelhřimov,Pražská", + "isMetro": false, + "latitude": 15.218085, + "longitude": 49.435604, + "stopId": "U31787" + }, + { + "id": "U31789Z1", + "name": "Pelhřimov,Čakovice,rozc.", + "isMetro": false, + "latitude": 15.184143, + "longitude": 49.458138, + "stopId": "U31789" + }, + { + "id": "U31789Z2", + "name": "Pelhřimov,Čakovice,rozc.", + "isMetro": false, + "latitude": 15.184279, + "longitude": 49.458405, + "stopId": "U31789" + }, + { + "id": "U3178Z1", + "name": "Všejany", + "isMetro": false, + "latitude": 14.952646, + "longitude": 50.255222, + "stopId": "U3178" + }, + { + "id": "U3178Z2", + "name": "Všejany", + "isMetro": false, + "latitude": 14.952646, + "longitude": 50.255116, + "stopId": "U3178" + }, + { + "id": "U3178Z301", + "name": "Všejany", + "isMetro": false, + "latitude": 14.957946, + "longitude": 50.256989, + "stopId": "U3178" + }, + { + "id": "U31790Z1", + "name": "Pelhřimov,Hodějovice,rozc.", + "isMetro": false, + "latitude": 15.196434, + "longitude": 49.446312, + "stopId": "U31790" + }, + { + "id": "U31790Z2", + "name": "Pelhřimov,Hodějovice,rozc.", + "isMetro": false, + "latitude": 15.196418, + "longitude": 49.446575, + "stopId": "U31790" + }, + { + "id": "U31799Z3", + "name": "Plzeň,Terminál Hlavní nádraží", + "isMetro": false, + "latitude": 13.388556, + "longitude": 49.744427, + "stopId": "U31799" + }, + { + "id": "U31799Z7", + "name": "Plzeň,Terminál Hlavní nádraží", + "isMetro": false, + "latitude": 13.388102, + "longitude": 49.74437, + "stopId": "U31799" + }, + { + "id": "U3179Z1", + "name": "Všejany,Vanovice", + "isMetro": false, + "latitude": 14.949487, + "longitude": 50.25853, + "stopId": "U3179" + }, + { + "id": "U3179Z2", + "name": "Všejany,Vanovice", + "isMetro": false, + "latitude": 14.949495, + "longitude": 50.258804, + "stopId": "U3179" + }, + { + "id": "U317Z1", + "name": "Lahovičky", + "isMetro": false, + "latitude": 14.395679, + "longitude": 50.000065, + "stopId": "U317" + }, + { + "id": "U317Z11", + "name": "Lahovičky", + "isMetro": false, + "latitude": 14.401383, + "longitude": 50.002247, + "stopId": "U317" + }, + { + "id": "U317Z2", + "name": "Lahovičky", + "isMetro": false, + "latitude": 14.395924, + "longitude": 50.000282, + "stopId": "U317" + }, + { + "id": "U31800Z1", + "name": "Plzeň,Rozcestí Černice", + "isMetro": false, + "latitude": 13.425985, + "longitude": 49.698353, + "stopId": "U31800" + }, + { + "id": "U31800Z2", + "name": "Plzeň,Rozcestí Černice", + "isMetro": false, + "latitude": 13.426554, + "longitude": 49.698143, + "stopId": "U31800" + }, + { + "id": "U31815Z301", + "name": "Lhota pod Přeloučí", + "isMetro": false, + "latitude": 15.527369, + "longitude": 50.036697, + "stopId": "U31815" + }, + { + "id": "U31818Z1", + "name": "Radkov", + "isMetro": false, + "latitude": 14.610165, + "longitude": 49.464527, + "stopId": "U31818" + }, + { + "id": "U31818Z2", + "name": "Radkov", + "isMetro": false, + "latitude": 14.610249, + "longitude": 49.464378, + "stopId": "U31818" + }, + { + "id": "U31819Z1", + "name": "Radkov,Paseka", + "isMetro": false, + "latitude": 14.592243, + "longitude": 49.461376, + "stopId": "U31819" + }, + { + "id": "U31819Z2", + "name": "Radkov,Paseka", + "isMetro": false, + "latitude": 14.592175, + "longitude": 49.461391, + "stopId": "U31819" + }, + { + "id": "U3182Z1", + "name": "Kladno,kolonie", + "isMetro": false, + "latitude": 14.165874, + "longitude": 50.167355, + "stopId": "U3182" + }, + { + "id": "U3182Z2", + "name": "Kladno,kolonie", + "isMetro": false, + "latitude": 14.165356, + "longitude": 50.167397, + "stopId": "U3182" + }, + { + "id": "U3183Z1", + "name": "Kladno,Dvorská", + "isMetro": false, + "latitude": 14.170748, + "longitude": 50.165417, + "stopId": "U3183" + }, + { + "id": "U3184Z1", + "name": "Kladno,Dubská", + "isMetro": false, + "latitude": 14.130083, + "longitude": 50.157063, + "stopId": "U3184" + }, + { + "id": "U3184Z2", + "name": "Kladno,Dubská", + "isMetro": false, + "latitude": 14.127952, + "longitude": 50.156315, + "stopId": "U3184" + }, + { + "id": "U31851Z1", + "name": "Spálené Poříčí", + "isMetro": false, + "latitude": 13.605574, + "longitude": 49.615147, + "stopId": "U31851" + }, + { + "id": "U31852Z1", + "name": "Spálené Poříčí,Hořehledy", + "isMetro": false, + "latitude": 13.644969, + "longitude": 49.607536, + "stopId": "U31852" + }, + { + "id": "U31852Z2", + "name": "Spálené Poříčí,Hořehledy", + "isMetro": false, + "latitude": 13.645258, + "longitude": 49.607525, + "stopId": "U31852" + }, + { + "id": "U31853Z1", + "name": "Spálené Poříčí,Hvížďalka", + "isMetro": false, + "latitude": 13.622152, + "longitude": 49.609753, + "stopId": "U31853" + }, + { + "id": "U31853Z2", + "name": "Spálené Poříčí,Hvížďalka", + "isMetro": false, + "latitude": 13.622436, + "longitude": 49.609539, + "stopId": "U31853" + }, + { + "id": "U31856Z301", + "name": "Staré Místo u Jičína", + "isMetro": false, + "latitude": 15.352974, + "longitude": 50.406109, + "stopId": "U31856" + }, + { + "id": "U31868Z1", + "name": "Tábor,Klokoty", + "isMetro": false, + "latitude": 14.645854, + "longitude": 49.418919, + "stopId": "U31868" + }, + { + "id": "U31868Z2", + "name": "Tábor,Klokoty", + "isMetro": false, + "latitude": 14.643365, + "longitude": 49.419464, + "stopId": "U31868" + }, + { + "id": "U31869Z1", + "name": "Tábor,nem.", + "isMetro": false, + "latitude": 14.652891, + "longitude": 49.419655, + "stopId": "U31869" + }, + { + "id": "U31869Z2", + "name": "Tábor,nem.", + "isMetro": false, + "latitude": 14.649828, + "longitude": 49.419453, + "stopId": "U31869" + }, + { + "id": "U3186Z1", + "name": "Kladno,Pod Zámkem", + "isMetro": false, + "latitude": 14.106437, + "longitude": 50.150108, + "stopId": "U3186" + }, + { + "id": "U3186Z2", + "name": "Kladno,Pod Zámkem", + "isMetro": false, + "latitude": 14.105351, + "longitude": 50.150093, + "stopId": "U3186" + }, + { + "id": "U31870Z1", + "name": "Tábor,Všechov", + "isMetro": false, + "latitude": 14.620804, + "longitude": 49.430397, + "stopId": "U31870" + }, + { + "id": "U31870Z2", + "name": "Tábor,Všechov", + "isMetro": false, + "latitude": 14.620306, + "longitude": 49.430771, + "stopId": "U31870" + }, + { + "id": "U31882Z1", + "name": "Útěchovice p.Stražištěm", + "isMetro": false, + "latitude": 15.029631, + "longitude": 49.539772, + "stopId": "U31882" + }, + { + "id": "U31882Z2", + "name": "Útěchovice p.Stražištěm", + "isMetro": false, + "latitude": 15.029839, + "longitude": 49.53989, + "stopId": "U31882" + }, + { + "id": "U31883Z1", + "name": "Uzenice", + "isMetro": false, + "latitude": 13.959661, + "longitude": 49.473396, + "stopId": "U31883" + }, + { + "id": "U31883Z2", + "name": "Uzenice", + "isMetro": false, + "latitude": 13.959774, + "longitude": 49.473331, + "stopId": "U31883" + }, + { + "id": "U31884Z1", + "name": "Uzeničky", + "isMetro": false, + "latitude": 13.953634, + "longitude": 49.488277, + "stopId": "U31884" + }, + { + "id": "U31884Z2", + "name": "Uzeničky", + "isMetro": false, + "latitude": 13.953813, + "longitude": 49.488258, + "stopId": "U31884" + }, + { + "id": "U31887Z1", + "name": "Velká Chyška", + "isMetro": false, + "latitude": 15.037032, + "longitude": 49.511639, + "stopId": "U31887" + }, + { + "id": "U31887Z2", + "name": "Velká Chyška", + "isMetro": false, + "latitude": 15.037222, + "longitude": 49.511707, + "stopId": "U31887" + }, + { + "id": "U31888Z1", + "name": "Velká Chyška,samota", + "isMetro": false, + "latitude": 15.027621, + "longitude": 49.524418, + "stopId": "U31888" + }, + { + "id": "U31888Z2", + "name": "Velká Chyška,samota", + "isMetro": false, + "latitude": 15.027732, + "longitude": 49.52449, + "stopId": "U31888" + }, + { + "id": "U31898Z1", + "name": "Vyklantice,rozc.1.0", + "isMetro": false, + "latitude": 15.037272, + "longitude": 49.551643, + "stopId": "U31898" + }, + { + "id": "U31898Z2", + "name": "Vyklantice,rozc.1.0", + "isMetro": false, + "latitude": 15.037432, + "longitude": 49.551758, + "stopId": "U31898" + }, + { + "id": "U31899Z1", + "name": "Vyklantice,Kateřinky", + "isMetro": false, + "latitude": 15.02516, + "longitude": 49.553829, + "stopId": "U31899" + }, + { + "id": "U31899Z2", + "name": "Vyklantice,Kateřinky", + "isMetro": false, + "latitude": 15.025218, + "longitude": 49.553905, + "stopId": "U31899" + }, + { + "id": "U318Z1", + "name": "Sídliště Jahodnice", + "isMetro": false, + "latitude": 14.550993, + "longitude": 50.088657, + "stopId": "U318" + }, + { + "id": "U318Z2", + "name": "Sídliště Jahodnice", + "isMetro": false, + "latitude": 14.550229, + "longitude": 50.088951, + "stopId": "U318" + }, + { + "id": "U31902Z1", + "name": "Zhoř,Březí,rozc.0.3", + "isMetro": false, + "latitude": 14.363249, + "longitude": 49.502251, + "stopId": "U31902" + }, + { + "id": "U31902Z2", + "name": "Zhoř,Březí,rozc.0.3", + "isMetro": false, + "latitude": 14.363417, + "longitude": 49.501957, + "stopId": "U31902" + }, + { + "id": "U31903Z1", + "name": "Zhoř,Zbislav,rozc.0.5", + "isMetro": false, + "latitude": 14.363872, + "longitude": 49.491714, + "stopId": "U31903" + }, + { + "id": "U31903Z2", + "name": "Zhoř,Zbislav,rozc.0.5", + "isMetro": false, + "latitude": 14.364054, + "longitude": 49.491753, + "stopId": "U31903" + }, + { + "id": "U31914Z1", + "name": "Milevsko,Petrovická", + "isMetro": false, + "latitude": 14.362879, + "longitude": 49.456627, + "stopId": "U31914" + }, + { + "id": "U31917Z1", + "name": "Chýstovice,rozc.0.5", + "isMetro": false, + "latitude": 15.079042, + "longitude": 49.587826, + "stopId": "U31917" + }, + { + "id": "U31917Z2", + "name": "Chýstovice,rozc.0.5", + "isMetro": false, + "latitude": 15.078787, + "longitude": 49.588085, + "stopId": "U31917" + }, + { + "id": "U31918Z1", + "name": "Pacov,Hrádek SOMPO", + "isMetro": false, + "latitude": 15.032345, + "longitude": 49.494247, + "stopId": "U31918" + }, + { + "id": "U31918Z2", + "name": "Pacov,Hrádek SOMPO", + "isMetro": false, + "latitude": 15.032265, + "longitude": 49.494167, + "stopId": "U31918" + }, + { + "id": "U31924Z1", + "name": "Plzeň,Slovany", + "isMetro": false, + "latitude": 13.401022, + "longitude": 49.722893, + "stopId": "U31924" + }, + { + "id": "U31924Z4", + "name": "Plzeň,Slovany", + "isMetro": false, + "latitude": 13.400867, + "longitude": 49.724339, + "stopId": "U31924" + }, + { + "id": "U3192Z1", + "name": "Kladno,u Tesca", + "isMetro": false, + "latitude": 14.118037, + "longitude": 50.125732, + "stopId": "U3192" + }, + { + "id": "U3192Z2", + "name": "Kladno,u Tesca", + "isMetro": false, + "latitude": 14.116501, + "longitude": 50.12693, + "stopId": "U3192" + }, + { + "id": "U31950Z1", + "name": "Dobřív,Melmatěj", + "isMetro": false, + "latitude": 13.724744, + "longitude": 49.728943, + "stopId": "U31950" + }, + { + "id": "U31950Z2", + "name": "Dobřív,Melmatěj", + "isMetro": false, + "latitude": 13.724936, + "longitude": 49.728924, + "stopId": "U31950" + }, + { + "id": "U31951Z1", + "name": "Dobřív,chaty", + "isMetro": false, + "latitude": 13.705419, + "longitude": 49.72226, + "stopId": "U31951" + }, + { + "id": "U31951Z2", + "name": "Dobřív,chaty", + "isMetro": false, + "latitude": 13.705699, + "longitude": 49.722286, + "stopId": "U31951" + }, + { + "id": "U31952Z1", + "name": "Dobřív,Na Fořtovně", + "isMetro": false, + "latitude": 13.694538, + "longitude": 49.717815, + "stopId": "U31952" + }, + { + "id": "U31952Z2", + "name": "Dobřív,Na Fořtovně", + "isMetro": false, + "latitude": 13.694633, + "longitude": 49.717758, + "stopId": "U31952" + }, + { + "id": "U31953Z1", + "name": "Dobřív", + "isMetro": false, + "latitude": 13.684644, + "longitude": 49.715408, + "stopId": "U31953" + }, + { + "id": "U31953Z2", + "name": "Dobřív", + "isMetro": false, + "latitude": 13.684983, + "longitude": 49.715218, + "stopId": "U31953" + }, + { + "id": "U31954Z1", + "name": "Dobřív,u hřbitova", + "isMetro": false, + "latitude": 13.678325, + "longitude": 49.716686, + "stopId": "U31954" + }, + { + "id": "U31954Z2", + "name": "Dobřív,u hřbitova", + "isMetro": false, + "latitude": 13.678465, + "longitude": 49.716621, + "stopId": "U31954" + }, + { + "id": "U31955Z1", + "name": "Dobřív,Pavlovsko", + "isMetro": false, + "latitude": 13.666193, + "longitude": 49.718132, + "stopId": "U31955" + }, + { + "id": "U31955Z2", + "name": "Dobřív,Pavlovsko", + "isMetro": false, + "latitude": 13.666169, + "longitude": 49.718021, + "stopId": "U31955" + }, + { + "id": "U31956Z1", + "name": "Hrádek,nad záv.", + "isMetro": false, + "latitude": 13.647848, + "longitude": 49.721817, + "stopId": "U31956" + }, + { + "id": "U31956Z2", + "name": "Hrádek,nad záv.", + "isMetro": false, + "latitude": 13.648024, + "longitude": 49.7216, + "stopId": "U31956" + }, + { + "id": "U31957Z1", + "name": "Kamenný Újezd,rozc.0.6", + "isMetro": false, + "latitude": 13.631898, + "longitude": 49.72578, + "stopId": "U31957" + }, + { + "id": "U31957Z2", + "name": "Kamenný Újezd,rozc.0.6", + "isMetro": false, + "latitude": 13.631903, + "longitude": 49.725716, + "stopId": "U31957" + }, + { + "id": "U31958Z1", + "name": "Rokycany,u statku", + "isMetro": false, + "latitude": 13.617902, + "longitude": 49.731483, + "stopId": "U31958" + }, + { + "id": "U31958Z2", + "name": "Rokycany,u statku", + "isMetro": false, + "latitude": 13.617918, + "longitude": 49.731403, + "stopId": "U31958" + }, + { + "id": "U31959Z1", + "name": "Rokycany,Pivovarská", + "isMetro": false, + "latitude": 13.602759, + "longitude": 49.742588, + "stopId": "U31959" + }, + { + "id": "U31960Z1", + "name": "Rokycany,Železná", + "isMetro": false, + "latitude": 13.601904, + "longitude": 49.742401, + "stopId": "U31960" + }, + { + "id": "U31961Z14", + "name": "Rokycany,aut.nádr.", + "isMetro": false, + "latitude": 13.590634, + "longitude": 49.741364, + "stopId": "U31961" + }, + { + "id": "U31961Z301", + "name": "Rokycany", + "isMetro": false, + "latitude": 13.592049, + "longitude": 49.740124, + "stopId": "U31961" + }, + { + "id": "U31970Z301", + "name": "Jičín", + "isMetro": false, + "latitude": 15.361211, + "longitude": 50.430473, + "stopId": "U31970" + }, + { + "id": "U31971Z1", + "name": "Semily,Komenského nám.", + "isMetro": false, + "latitude": 15.337234, + "longitude": 50.603321, + "stopId": "U31971" + }, + { + "id": "U31971Z2", + "name": "Semily,Komenského nám.", + "isMetro": false, + "latitude": 15.33744, + "longitude": 50.602962, + "stopId": "U31971" + }, + { + "id": "U31972Z1", + "name": "Semily,krematorium", + "isMetro": false, + "latitude": 15.335082, + "longitude": 50.607441, + "stopId": "U31972" + }, + { + "id": "U31972Z2", + "name": "Semily,krematorium", + "isMetro": false, + "latitude": 15.334169, + "longitude": 50.607265, + "stopId": "U31972" + }, + { + "id": "U31973Z1", + "name": "Semily,U 14 pomocníků", + "isMetro": false, + "latitude": 15.341223, + "longitude": 50.610611, + "stopId": "U31973" + }, + { + "id": "U31973Z2", + "name": "Semily,U 14 pomocníků", + "isMetro": false, + "latitude": 15.340116, + "longitude": 50.610413, + "stopId": "U31973" + }, + { + "id": "U31986Z1", + "name": "Benecko,Dolní Štěpanice,host.u Šmídů", + "isMetro": false, + "latitude": 15.517069, + "longitude": 50.637577, + "stopId": "U31986" + }, + { + "id": "U31986Z2", + "name": "Benecko,Dolní Štěpanice,host.u Šmídů", + "isMetro": false, + "latitude": 15.516953, + "longitude": 50.637539, + "stopId": "U31986" + }, + { + "id": "U31987Z1", + "name": "Podbořany,Nádražní", + "isMetro": false, + "latitude": 13.406424, + "longitude": 50.22543, + "stopId": "U31987" + }, + { + "id": "U31988Z1", + "name": "Deštnice,rozc.1.0", + "isMetro": false, + "latitude": 13.588539, + "longitude": 50.234646, + "stopId": "U31988" + }, + { + "id": "U31988Z2", + "name": "Deštnice,rozc.1.0", + "isMetro": false, + "latitude": 13.58854, + "longitude": 50.234596, + "stopId": "U31988" + }, + { + "id": "U31989Z1", + "name": "Deštnice,rozc.Sádek", + "isMetro": false, + "latitude": 13.57686, + "longitude": 50.243458, + "stopId": "U31989" + }, + { + "id": "U31989Z2", + "name": "Deštnice,rozc.Sádek", + "isMetro": false, + "latitude": 13.576468, + "longitude": 50.243828, + "stopId": "U31989" + }, + { + "id": "U31989Z301", + "name": "Sádek u Žatce", + "isMetro": false, + "latitude": 13.572347, + "longitude": 50.253727, + "stopId": "U31989" + }, + { + "id": "U31990Z1", + "name": "Holedeč,Holedeček", + "isMetro": false, + "latitude": 13.560328, + "longitude": 50.282948, + "stopId": "U31990" + }, + { + "id": "U31990Z2", + "name": "Holedeč,Holedeček", + "isMetro": false, + "latitude": 13.560136, + "longitude": 50.282837, + "stopId": "U31990" + }, + { + "id": "U31990Z301", + "name": "Holedeček", + "isMetro": false, + "latitude": 13.558665, + "longitude": 50.284969, + "stopId": "U31990" + }, + { + "id": "U31992Z1", + "name": "Žatec,Volyň.Čechů OSP", + "isMetro": false, + "latitude": 13.544995, + "longitude": 50.318207, + "stopId": "U31992" + }, + { + "id": "U31992Z2", + "name": "Žatec,Volyň.Čechů OSP", + "isMetro": false, + "latitude": 13.544847, + "longitude": 50.318172, + "stopId": "U31992" + }, + { + "id": "U31993Z1", + "name": "Žatec,Sv.Čecha", + "isMetro": false, + "latitude": 13.543491, + "longitude": 50.321037, + "stopId": "U31993" + }, + { + "id": "U31993Z2", + "name": "Žatec,Sv.Čecha", + "isMetro": false, + "latitude": 13.543361, + "longitude": 50.320862, + "stopId": "U31993" + }, + { + "id": "U31994Z2", + "name": "Žatec,aut.nádr.", + "isMetro": false, + "latitude": 13.546832, + "longitude": 50.327316, + "stopId": "U31994" + }, + { + "id": "U31994Z3", + "name": "Žatec,aut.nádr.", + "isMetro": false, + "latitude": 13.547001, + "longitude": 50.327435, + "stopId": "U31994" + }, + { + "id": "U31997Z301", + "name": "Mýto", + "isMetro": false, + "latitude": 13.740191, + "longitude": 49.783474, + "stopId": null + }, + { + "id": "U31998Z301", + "name": "Holoubkov", + "isMetro": false, + "latitude": 13.699974, + "longitude": 49.774124, + "stopId": null + }, + { + "id": "U31999Z301", + "name": "Svojkovice", + "isMetro": false, + "latitude": 13.656797, + "longitude": 49.755177, + "stopId": null + }, + { + "id": "U319Z1", + "name": "Laurová", + "isMetro": false, + "latitude": 14.398015, + "longitude": 50.061146, + "stopId": "U319" + }, + { + "id": "U319Z11", + "name": "Laurová", + "isMetro": false, + "latitude": 14.398015, + "longitude": 50.061146, + "stopId": "U319" + }, + { + "id": "U319Z12", + "name": "Laurová", + "isMetro": false, + "latitude": 14.397533, + "longitude": 50.061134, + "stopId": "U319" + }, + { + "id": "U319Z2", + "name": "Laurová", + "isMetro": false, + "latitude": 14.397533, + "longitude": 50.061134, + "stopId": "U319" + }, + { + "id": "U319Z3", + "name": "Laurová", + "isMetro": false, + "latitude": 14.399906, + "longitude": 50.061337, + "stopId": "U319" + }, + { + "id": "U319Z4", + "name": "Laurová", + "isMetro": false, + "latitude": 14.399585, + "longitude": 50.06144, + "stopId": "U319" + }, + { + "id": "U31Z1", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.322789, + "longitude": 50.075546, + "stopId": "U31" + }, + { + "id": "U31Z2", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.323386, + "longitude": 50.075859, + "stopId": "U31" + }, + { + "id": "U31Z3", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.322862, + "longitude": 50.075565, + "stopId": "U31" + }, + { + "id": "U31Z4", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.323382, + "longitude": 50.075798, + "stopId": "U31" + }, + { + "id": "U31Z5", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.323617, + "longitude": 50.075966, + "stopId": "U31" + }, + { + "id": "U31Z6", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.323833, + "longitude": 50.075733, + "stopId": "U31" + }, + { + "id": "U31Z7", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.32408, + "longitude": 50.075558, + "stopId": "U31" + }, + { + "id": "U31Z8", + "name": "Bílá Hora", + "isMetro": false, + "latitude": 14.3215, + "longitude": 50.075401, + "stopId": "U31" + }, + { + "id": "U32000Z301", + "name": "Klabava", + "isMetro": false, + "latitude": 13.538303, + "longitude": 49.749149, + "stopId": null + }, + { + "id": "U32001Z301", + "name": "Ejpovice", + "isMetro": false, + "latitude": 13.512749, + "longitude": 49.751507, + "stopId": null + }, + { + "id": "U32002Z301", + "name": "Plzeň-Doubravka", + "isMetro": false, + "latitude": 13.416059, + "longitude": 49.758522, + "stopId": null + }, + { + "id": "U32003Z301", + "name": "Plzeň hl.n.", + "isMetro": false, + "latitude": 13.388059, + "longitude": 49.743546, + "stopId": null + }, + { + "id": "U3201Z1", + "name": "Novochuchelská", + "isMetro": false, + "latitude": 14.384729, + "longitude": 50.009129, + "stopId": "U3201" + }, + { + "id": "U3201Z2", + "name": "Novochuchelská", + "isMetro": false, + "latitude": 14.384885, + "longitude": 50.009041, + "stopId": "U3201" + }, + { + "id": "U32024Z1", + "name": "Mladá Vožice,Táborská", + "isMetro": false, + "latitude": 14.805861, + "longitude": 49.528152, + "stopId": "U32024" + }, + { + "id": "U32024Z2", + "name": "Mladá Vožice,Táborská", + "isMetro": false, + "latitude": 14.805671, + "longitude": 49.527794, + "stopId": "U32024" + }, + { + "id": "U32025Z1", + "name": "Mladá Vožice,Agrospol a.s.", + "isMetro": false, + "latitude": 14.798927, + "longitude": 49.518654, + "stopId": "U32025" + }, + { + "id": "U32025Z2", + "name": "Mladá Vožice,Agrospol a.s.", + "isMetro": false, + "latitude": 14.798887, + "longitude": 49.51894, + "stopId": "U32025" + }, + { + "id": "U32026Z1", + "name": "Mladá Vožice,Blanice", + "isMetro": false, + "latitude": 14.796333, + "longitude": 49.507385, + "stopId": "U32026" + }, + { + "id": "U32026Z2", + "name": "Mladá Vožice,Blanice", + "isMetro": false, + "latitude": 14.796556, + "longitude": 49.507301, + "stopId": "U32026" + }, + { + "id": "U32027Z1", + "name": "Mladá Vožice,rozc.Řemíčov 1.0", + "isMetro": false, + "latitude": 14.793575, + "longitude": 49.517391, + "stopId": "U32027" + }, + { + "id": "U32027Z2", + "name": "Mladá Vožice,rozc.Řemíčov 1.0", + "isMetro": false, + "latitude": 14.793392, + "longitude": 49.517353, + "stopId": "U32027" + }, + { + "id": "U32028Z1", + "name": "Mladá Vožice,Blanice,rozc.1.0", + "isMetro": false, + "latitude": 14.784693, + "longitude": 49.509174, + "stopId": "U32028" + }, + { + "id": "U32028Z2", + "name": "Mladá Vožice,Blanice,rozc.1.0", + "isMetro": false, + "latitude": 14.784773, + "longitude": 49.509132, + "stopId": "U32028" + }, + { + "id": "U32029Z1", + "name": "Mladá Vožice,Stará Vožice", + "isMetro": false, + "latitude": 14.771916, + "longitude": 49.501556, + "stopId": "U32029" + }, + { + "id": "U32029Z2", + "name": "Mladá Vožice,Stará Vožice", + "isMetro": false, + "latitude": 14.772007, + "longitude": 49.501507, + "stopId": "U32029" + }, + { + "id": "U3202Z1", + "name": "Mrkosova", + "isMetro": false, + "latitude": 14.381014, + "longitude": 50.007359, + "stopId": "U3202" + }, + { + "id": "U3202Z2", + "name": "Mrkosova", + "isMetro": false, + "latitude": 14.380767, + "longitude": 50.007061, + "stopId": "U3202" + }, + { + "id": "U32030Z1", + "name": "Chotoviny,Jeníčkova Lhota", + "isMetro": false, + "latitude": 14.716455, + "longitude": 49.457226, + "stopId": "U32030" + }, + { + "id": "U32030Z2", + "name": "Chotoviny,Jeníčkova Lhota", + "isMetro": false, + "latitude": 14.716453, + "longitude": 49.457088, + "stopId": "U32030" + }, + { + "id": "U32031Z1", + "name": "Chotoviny,Jeníčkova Lhota,háj.", + "isMetro": false, + "latitude": 14.726863, + "longitude": 49.458725, + "stopId": "U32031" + }, + { + "id": "U32031Z2", + "name": "Chotoviny,Jeníčkova Lhota,háj.", + "isMetro": false, + "latitude": 14.726922, + "longitude": 49.458683, + "stopId": "U32031" + }, + { + "id": "U32032Z1", + "name": "Balkova Lhota,Černý les", + "isMetro": false, + "latitude": 14.591653, + "longitude": 49.453373, + "stopId": "U32032" + }, + { + "id": "U32032Z2", + "name": "Balkova Lhota,Černý les", + "isMetro": false, + "latitude": 14.591542, + "longitude": 49.453552, + "stopId": "U32032" + }, + { + "id": "U32033Z1", + "name": "Tábor,Písecké rozc.", + "isMetro": false, + "latitude": 14.660459, + "longitude": 49.419415, + "stopId": "U32033" + }, + { + "id": "U32034Z1", + "name": "Tábor,Stránského", + "isMetro": false, + "latitude": 14.683582, + "longitude": 49.415806, + "stopId": "U32034" + }, + { + "id": "U32034Z2", + "name": "Tábor,Stránského", + "isMetro": false, + "latitude": 14.683943, + "longitude": 49.41552, + "stopId": "U32034" + }, + { + "id": "U32035Z1", + "name": "Tábor,Čekanice,Na vyhlídce", + "isMetro": false, + "latitude": 14.67837, + "longitude": 49.422993, + "stopId": "U32035" + }, + { + "id": "U32035Z2", + "name": "Tábor,Čekanice,Na vyhlídce", + "isMetro": false, + "latitude": 14.678555, + "longitude": 49.423172, + "stopId": "U32035" + }, + { + "id": "U32036Z1", + "name": "Tábor,Čekanice,u cihelny", + "isMetro": false, + "latitude": 14.686077, + "longitude": 49.428341, + "stopId": "U32036" + }, + { + "id": "U32036Z2", + "name": "Tábor,Čekanice,u cihelny", + "isMetro": false, + "latitude": 14.686482, + "longitude": 49.428288, + "stopId": "U32036" + }, + { + "id": "U32037Z1", + "name": "Tábor,Čekanice,silo", + "isMetro": false, + "latitude": 14.688208, + "longitude": 49.43111, + "stopId": "U32037" + }, + { + "id": "U32037Z2", + "name": "Tábor,Čekanice,silo", + "isMetro": false, + "latitude": 14.688506, + "longitude": 49.431248, + "stopId": "U32037" + }, + { + "id": "U32038Z1", + "name": "Tábor,Hlinice,rozc.2.0", + "isMetro": false, + "latitude": 14.702795, + "longitude": 49.444595, + "stopId": "U32038" + }, + { + "id": "U32038Z2", + "name": "Tábor,Hlinice,rozc.2.0", + "isMetro": false, + "latitude": 14.70295, + "longitude": 49.444561, + "stopId": "U32038" + }, + { + "id": "U32039Z1", + "name": "Tábor,Hlinice,V chalupách", + "isMetro": false, + "latitude": 14.73819, + "longitude": 49.438538, + "stopId": "U32039" + }, + { + "id": "U32039Z2", + "name": "Tábor,Hlinice,V chalupách", + "isMetro": false, + "latitude": 14.738348, + "longitude": 49.438549, + "stopId": "U32039" + }, + { + "id": "U3203Z1", + "name": "Na Hvězdárně", + "isMetro": false, + "latitude": 14.375016, + "longitude": 50.005104, + "stopId": "U3203" + }, + { + "id": "U3203Z2", + "name": "Na Hvězdárně", + "isMetro": false, + "latitude": 14.375411, + "longitude": 50.00489, + "stopId": "U3203" + }, + { + "id": "U32040Z1", + "name": "Tábor,Hlinice,myslivna", + "isMetro": false, + "latitude": 14.728789, + "longitude": 49.434402, + "stopId": "U32040" + }, + { + "id": "U32040Z2", + "name": "Tábor,Hlinice,myslivna", + "isMetro": false, + "latitude": 14.728889, + "longitude": 49.434357, + "stopId": "U32040" + }, + { + "id": "U32041Z1", + "name": "Tábor,Hlinice", + "isMetro": false, + "latitude": 14.718451, + "longitude": 49.429253, + "stopId": "U32041" + }, + { + "id": "U32041Z2", + "name": "Tábor,Hlinice", + "isMetro": false, + "latitude": 14.719032, + "longitude": 49.429382, + "stopId": "U32041" + }, + { + "id": "U32042Z2", + "name": "Tábor,Záluží", + "isMetro": false, + "latitude": 14.703691, + "longitude": 49.423153, + "stopId": "U32042" + }, + { + "id": "U32043Z1", + "name": "Tábor,Vožická Elektroizola", + "isMetro": false, + "latitude": 14.689417, + "longitude": 49.415966, + "stopId": "U32043" + }, + { + "id": "U32043Z2", + "name": "Tábor,Vožická Elektroizola", + "isMetro": false, + "latitude": 14.690543, + "longitude": 49.416241, + "stopId": "U32043" + }, + { + "id": "U32044Z1", + "name": "Tábor,Brisk a.s.", + "isMetro": false, + "latitude": 14.686205, + "longitude": 49.414986, + "stopId": "U32044" + }, + { + "id": "U32044Z2", + "name": "Tábor,Brisk a.s.", + "isMetro": false, + "latitude": 14.686061, + "longitude": 49.414818, + "stopId": "U32044" + }, + { + "id": "U32045Z1", + "name": "Tábor,Zavadilská", + "isMetro": false, + "latitude": 14.684093, + "longitude": 49.411625, + "stopId": "U32045" + }, + { + "id": "U32045Z2", + "name": "Tábor,Zavadilská", + "isMetro": false, + "latitude": 14.684278, + "longitude": 49.411953, + "stopId": "U32045" + }, + { + "id": "U32047Z1", + "name": "Hlasivo", + "isMetro": false, + "latitude": 14.754527, + "longitude": 49.495678, + "stopId": "U32047" + }, + { + "id": "U32047Z2", + "name": "Hlasivo", + "isMetro": false, + "latitude": 14.754654, + "longitude": 49.495697, + "stopId": "U32047" + }, + { + "id": "U32048Z1", + "name": "Hlasivo,Hlasivko,rozc.1.0", + "isMetro": false, + "latitude": 14.754992, + "longitude": 49.485836, + "stopId": "U32048" + }, + { + "id": "U32048Z2", + "name": "Hlasivo,Hlasivko,rozc.1.0", + "isMetro": false, + "latitude": 14.755085, + "longitude": 49.48587, + "stopId": "U32048" + }, + { + "id": "U32049Z1", + "name": "Dolní Hrachovice,Vaněčkův mlýn", + "isMetro": false, + "latitude": 14.794782, + "longitude": 49.492294, + "stopId": "U32049" + }, + { + "id": "U32049Z2", + "name": "Dolní Hrachovice,Vaněčkův mlýn", + "isMetro": false, + "latitude": 14.79493, + "longitude": 49.492271, + "stopId": "U32049" + }, + { + "id": "U32050Z1", + "name": "Dolní Hrachovice", + "isMetro": false, + "latitude": 14.798057, + "longitude": 49.486237, + "stopId": "U32050" + }, + { + "id": "U32050Z2", + "name": "Dolní Hrachovice", + "isMetro": false, + "latitude": 14.798202, + "longitude": 49.486362, + "stopId": "U32050" + }, + { + "id": "U32051Z1", + "name": "Pohnánec,u cihelny", + "isMetro": false, + "latitude": 14.786642, + "longitude": 49.475193, + "stopId": "U32051" + }, + { + "id": "U32051Z2", + "name": "Pohnánec,u cihelny", + "isMetro": false, + "latitude": 14.786794, + "longitude": 49.475178, + "stopId": "U32051" + }, + { + "id": "U32052Z1", + "name": "Ratibořské Hory,U Menšíků", + "isMetro": false, + "latitude": 14.77141, + "longitude": 49.465984, + "stopId": "U32052" + }, + { + "id": "U32052Z2", + "name": "Ratibořské Hory,U Menšíků", + "isMetro": false, + "latitude": 14.771461, + "longitude": 49.465904, + "stopId": "U32052" + }, + { + "id": "U32053Z1", + "name": "Ratibořské Hory", + "isMetro": false, + "latitude": 14.769447, + "longitude": 49.462673, + "stopId": "U32053" + }, + { + "id": "U32053Z2", + "name": "Ratibořské Hory", + "isMetro": false, + "latitude": 14.769778, + "longitude": 49.462765, + "stopId": "U32053" + }, + { + "id": "U32054Z1", + "name": "Ratibořské Hory,Vřesce", + "isMetro": false, + "latitude": 14.755665, + "longitude": 49.448067, + "stopId": "U32054" + }, + { + "id": "U32054Z2", + "name": "Ratibořské Hory,Vřesce", + "isMetro": false, + "latitude": 14.75591, + "longitude": 49.448055, + "stopId": "U32054" + }, + { + "id": "U32055Z1", + "name": "Ratibořské Hory,Ratibořice,rozc.1.5", + "isMetro": false, + "latitude": 14.745317, + "longitude": 49.472706, + "stopId": "U32055" + }, + { + "id": "U32055Z2", + "name": "Ratibořské Hory,Ratibořice,rozc.1.5", + "isMetro": false, + "latitude": 14.745483, + "longitude": 49.472748, + "stopId": "U32055" + }, + { + "id": "U32056Z1", + "name": "Ratibořské Hory,Podolí,rozc.0.3", + "isMetro": false, + "latitude": 14.735629, + "longitude": 49.466728, + "stopId": "U32056" + }, + { + "id": "U32056Z2", + "name": "Ratibořské Hory,Podolí,rozc.0.3", + "isMetro": false, + "latitude": 14.735922, + "longitude": 49.466743, + "stopId": "U32056" + }, + { + "id": "U32060Z1", + "name": "Kryry,nám.", + "isMetro": false, + "latitude": 13.426641, + "longitude": 50.174431, + "stopId": "U32060" + }, + { + "id": "U32060Z2", + "name": "Kryry,nám.", + "isMetro": false, + "latitude": 13.426759, + "longitude": 50.174358, + "stopId": "U32060" + }, + { + "id": "U32061Z1", + "name": "Kryry,sklárna", + "isMetro": false, + "latitude": 13.417571, + "longitude": 50.171638, + "stopId": "U32061" + }, + { + "id": "U32061Z2", + "name": "Kryry,sklárna", + "isMetro": false, + "latitude": 13.418572, + "longitude": 50.171741, + "stopId": "U32061" + }, + { + "id": "U32062Z1", + "name": "Podbořany,ČSAD", + "isMetro": false, + "latitude": 13.395389, + "longitude": 50.216507, + "stopId": "U32062" + }, + { + "id": "U32062Z2", + "name": "Podbořany,ČSAD", + "isMetro": false, + "latitude": 13.395204, + "longitude": 50.216511, + "stopId": "U32062" + }, + { + "id": "U32063Z1", + "name": "Podbořany,OSP", + "isMetro": false, + "latitude": 13.399168, + "longitude": 50.221832, + "stopId": "U32063" + }, + { + "id": "U32063Z2", + "name": "Podbořany,OSP", + "isMetro": false, + "latitude": 13.398956, + "longitude": 50.221836, + "stopId": "U32063" + }, + { + "id": "U32064Z1", + "name": "Vroutek,Kryrská", + "isMetro": false, + "latitude": 13.384483, + "longitude": 50.17765, + "stopId": "U32064" + }, + { + "id": "U32064Z2", + "name": "Vroutek,Kryrská", + "isMetro": false, + "latitude": 13.384388, + "longitude": 50.177593, + "stopId": "U32064" + }, + { + "id": "U32065Z1", + "name": "Vroutek", + "isMetro": false, + "latitude": 13.381255, + "longitude": 50.181007, + "stopId": "U32065" + }, + { + "id": "U32065Z2", + "name": "Vroutek", + "isMetro": false, + "latitude": 13.380827, + "longitude": 50.18079, + "stopId": "U32065" + }, + { + "id": "U32066Z1", + "name": "Vinařice,Sokolovna", + "isMetro": false, + "latitude": 13.823055, + "longitude": 50.267586, + "stopId": "U32066" + }, + { + "id": "U32066Z2", + "name": "Vinařice,Sokolovna", + "isMetro": false, + "latitude": 13.822944, + "longitude": 50.267593, + "stopId": "U32066" + }, + { + "id": "U32067Z1", + "name": "Vinařice,Divice", + "isMetro": false, + "latitude": 13.81986, + "longitude": 50.276951, + "stopId": "U32067" + }, + { + "id": "U32067Z2", + "name": "Vinařice,Divice", + "isMetro": false, + "latitude": 13.819664, + "longitude": 50.276852, + "stopId": "U32067" + }, + { + "id": "U32068Z1", + "name": "Brodec,rozc.2.0", + "isMetro": false, + "latitude": 13.820991, + "longitude": 50.301769, + "stopId": "U32068" + }, + { + "id": "U32068Z2", + "name": "Brodec,rozc.2.0", + "isMetro": false, + "latitude": 13.820784, + "longitude": 50.301666, + "stopId": "U32068" + }, + { + "id": "U32069Z1", + "name": "Louny,Brloh,rozc.Smolnice", + "isMetro": false, + "latitude": 13.82478, + "longitude": 50.310177, + "stopId": "U32069" + }, + { + "id": "U32069Z2", + "name": "Louny,Brloh,rozc.Smolnice", + "isMetro": false, + "latitude": 13.824698, + "longitude": 50.310154, + "stopId": "U32069" + }, + { + "id": "U3206Z1", + "name": "Chýně,Žitná", + "isMetro": false, + "latitude": 14.243775, + "longitude": 50.059677, + "stopId": "U3206" + }, + { + "id": "U3206Z2", + "name": "Chýně,Žitná", + "isMetro": false, + "latitude": 14.24309, + "longitude": 50.059753, + "stopId": "U3206" + }, + { + "id": "U32070Z1", + "name": "Louny,Brloh", + "isMetro": false, + "latitude": 13.825533, + "longitude": 50.318867, + "stopId": "U32070" + }, + { + "id": "U32070Z2", + "name": "Louny,Brloh", + "isMetro": false, + "latitude": 13.825444, + "longitude": 50.318832, + "stopId": "U32070" + }, + { + "id": "U32071Z1", + "name": "Cítoliby,škola", + "isMetro": false, + "latitude": 13.812304, + "longitude": 50.330139, + "stopId": "U32071" + }, + { + "id": "U32071Z2", + "name": "Cítoliby,škola", + "isMetro": false, + "latitude": 13.812282, + "longitude": 50.329777, + "stopId": "U32071" + }, + { + "id": "U32072Z1", + "name": "Cítoliby", + "isMetro": false, + "latitude": 13.811404, + "longitude": 50.334286, + "stopId": "U32072" + }, + { + "id": "U32072Z2", + "name": "Cítoliby", + "isMetro": false, + "latitude": 13.811378, + "longitude": 50.333935, + "stopId": "U32072" + }, + { + "id": "U32073Z2", + "name": "Kralovice,ZVŠ", + "isMetro": false, + "latitude": 13.481803, + "longitude": 49.980091, + "stopId": "U32073" + }, + { + "id": "U32074Z1", + "name": "Kralovice,Mariánský Týnec", + "isMetro": false, + "latitude": 13.465476, + "longitude": 49.986004, + "stopId": "U32074" + }, + { + "id": "U32074Z2", + "name": "Kralovice,Mariánský Týnec", + "isMetro": false, + "latitude": 13.46545, + "longitude": 49.98595, + "stopId": "U32074" + }, + { + "id": "U32075Z1", + "name": "Kralovice,Trojany", + "isMetro": false, + "latitude": 13.406025, + "longitude": 49.984173, + "stopId": "U32075" + }, + { + "id": "U32075Z2", + "name": "Kralovice,Trojany", + "isMetro": false, + "latitude": 13.406231, + "longitude": 49.984112, + "stopId": "U32075" + }, + { + "id": "U32076Z1", + "name": "Kralovice,Trojany,rozc.", + "isMetro": false, + "latitude": 13.427022, + "longitude": 49.985649, + "stopId": "U32076" + }, + { + "id": "U32076Z2", + "name": "Kralovice,Trojany,rozc.", + "isMetro": false, + "latitude": 13.427034, + "longitude": 49.985588, + "stopId": "U32076" + }, + { + "id": "U32077Z1", + "name": "Kralovice,Řemešín,rozc.", + "isMetro": false, + "latitude": 13.389047, + "longitude": 49.982021, + "stopId": "U32077" + }, + { + "id": "U32077Z2", + "name": "Kralovice,Řemešín,rozc.", + "isMetro": false, + "latitude": 13.389038, + "longitude": 49.981964, + "stopId": "U32077" + }, + { + "id": "U32079Z1", + "name": "Mladotice", + "isMetro": false, + "latitude": 13.364067, + "longitude": 49.985477, + "stopId": "U32079" + }, + { + "id": "U32079Z2", + "name": "Mladotice", + "isMetro": false, + "latitude": 13.364319, + "longitude": 49.985382, + "stopId": "U32079" + }, + { + "id": "U32080Z1", + "name": "Mladotice,žel.st.", + "isMetro": false, + "latitude": 13.364367, + "longitude": 49.986416, + "stopId": "U32080" + }, + { + "id": "U32082Z1", + "name": "Mladotice,zastávka", + "isMetro": false, + "latitude": 13.341709, + "longitude": 49.974129, + "stopId": "U32082" + }, + { + "id": "U32082Z2", + "name": "Mladotice,zastávka", + "isMetro": false, + "latitude": 13.341573, + "longitude": 49.974049, + "stopId": "U32082" + }, + { + "id": "U32083Z1", + "name": "Štichovice,Křečov", + "isMetro": false, + "latitude": 13.322244, + "longitude": 49.972046, + "stopId": "U32083" + }, + { + "id": "U32083Z2", + "name": "Štichovice,Křečov", + "isMetro": false, + "latitude": 13.322267, + "longitude": 49.971985, + "stopId": "U32083" + }, + { + "id": "U32084Z1", + "name": "Štichovice,rozc.", + "isMetro": false, + "latitude": 13.303136, + "longitude": 49.972992, + "stopId": "U32084" + }, + { + "id": "U32084Z2", + "name": "Štichovice,rozc.", + "isMetro": false, + "latitude": 13.303053, + "longitude": 49.972908, + "stopId": "U32084" + }, + { + "id": "U32086Z1", + "name": "Manětín,Česká Doubravice,rozc.", + "isMetro": false, + "latitude": 13.271786, + "longitude": 49.975857, + "stopId": "U32086" + }, + { + "id": "U32086Z2", + "name": "Manětín,Česká Doubravice,rozc.", + "isMetro": false, + "latitude": 13.271658, + "longitude": 49.975758, + "stopId": "U32086" + }, + { + "id": "U32087Z2", + "name": "Manětín,Vladměřice,rozcestí", + "isMetro": false, + "latitude": 13.259948, + "longitude": 49.975864, + "stopId": "U32087" + }, + { + "id": "U32087Z3", + "name": "Manětín,Vladměřice,rozcestí", + "isMetro": false, + "latitude": 13.260205, + "longitude": 49.975723, + "stopId": "U32087" + }, + { + "id": "U32088Z1", + "name": "Manětín,nám.", + "isMetro": false, + "latitude": 13.233438, + "longitude": 49.992207, + "stopId": "U32088" + }, + { + "id": "U32088Z2", + "name": "Manětín,nám.", + "isMetro": false, + "latitude": 13.230879, + "longitude": 49.991627, + "stopId": "U32088" + }, + { + "id": "U3208Z1", + "name": "Svinařov", + "isMetro": false, + "latitude": 14.049706, + "longitude": 50.181297, + "stopId": "U3208" + }, + { + "id": "U3208Z2", + "name": "Svinařov", + "isMetro": false, + "latitude": 14.049935, + "longitude": 50.18121, + "stopId": "U3208" + }, + { + "id": "U32091Z1", + "name": "Hrejkovice,Pechova Lhota", + "isMetro": false, + "latitude": 14.2875, + "longitude": 49.495815, + "stopId": "U32091" + }, + { + "id": "U32091Z2", + "name": "Hrejkovice,Pechova Lhota", + "isMetro": false, + "latitude": 14.287648, + "longitude": 49.49585, + "stopId": "U32091" + }, + { + "id": "U32092Z1", + "name": "Kostelec n.Vlt.", + "isMetro": false, + "latitude": 14.213102, + "longitude": 49.499565, + "stopId": "U32092" + }, + { + "id": "U32093Z1", + "name": "Kostelec n.Vlt.,U rybníka", + "isMetro": false, + "latitude": 14.212157, + "longitude": 49.501335, + "stopId": "U32093" + }, + { + "id": "U32094Z1", + "name": "Kostelec n.Vlt.,Zahrádka", + "isMetro": false, + "latitude": 14.226795, + "longitude": 49.49284, + "stopId": "U32094" + }, + { + "id": "U32095Z1", + "name": "Kostelec n.Vlt.,Zahrádka,rozc.", + "isMetro": false, + "latitude": 14.231265, + "longitude": 49.494846, + "stopId": "U32095" + }, + { + "id": "U32096Z1", + "name": "Kostelec n.Vlt.,Sobědraž,rozc.s.19", + "isMetro": false, + "latitude": 14.241278, + "longitude": 49.489758, + "stopId": "U32096" + }, + { + "id": "U32097Z1", + "name": "Kostelec n.Vlt.,Přílepov,rozc.1.5", + "isMetro": false, + "latitude": 14.253969, + "longitude": 49.48645, + "stopId": "U32097" + }, + { + "id": "U32098Z1", + "name": "Hrejkovice,ObÚ", + "isMetro": false, + "latitude": 14.291977, + "longitude": 49.474461, + "stopId": "U32098" + }, + { + "id": "U32099Z1", + "name": "Hrejkovice,Chlumek,samoty", + "isMetro": false, + "latitude": 14.300816, + "longitude": 49.470818, + "stopId": "U32099" + }, + { + "id": "U32099Z2", + "name": "Hrejkovice,Chlumek,samoty", + "isMetro": false, + "latitude": 14.300728, + "longitude": 49.471012, + "stopId": "U32099" + }, + { + "id": "U3209Z1", + "name": "Návětrná", + "isMetro": false, + "latitude": 14.358598, + "longitude": 50.022942, + "stopId": "U3209" + }, + { + "id": "U320Z1", + "name": "Zentiva", + "isMetro": false, + "latitude": 14.546183, + "longitude": 50.061523, + "stopId": "U320" + }, + { + "id": "U320Z2", + "name": "Zentiva", + "isMetro": false, + "latitude": 14.546449, + "longitude": 50.061657, + "stopId": "U320" + }, + { + "id": "U32100Z1", + "name": "Hrejkovice,Chlumek,rozc.0.8", + "isMetro": false, + "latitude": 14.307129, + "longitude": 49.468449, + "stopId": "U32100" + }, + { + "id": "U32100Z2", + "name": "Hrejkovice,Chlumek,rozc.0.8", + "isMetro": false, + "latitude": 14.306687, + "longitude": 49.468697, + "stopId": "U32100" + }, + { + "id": "U32101Z1", + "name": "Hrejkovice,Chlumek,rybník Zlatina", + "isMetro": false, + "latitude": 14.33088, + "longitude": 49.461369, + "stopId": "U32101" + }, + { + "id": "U32101Z2", + "name": "Hrejkovice,Chlumek,rybník Zlatina", + "isMetro": false, + "latitude": 14.330591, + "longitude": 49.4617, + "stopId": "U32101" + }, + { + "id": "U32102Z1", + "name": "Milevsko,škola I", + "isMetro": false, + "latitude": 14.35994, + "longitude": 49.452904, + "stopId": "U32102" + }, + { + "id": "U32103Z1", + "name": "Hrejkovice", + "isMetro": false, + "latitude": 14.289938, + "longitude": 49.474216, + "stopId": "U32103" + }, + { + "id": "U32103Z2", + "name": "Hrejkovice", + "isMetro": false, + "latitude": 14.289928, + "longitude": 49.474304, + "stopId": "U32103" + }, + { + "id": "U32106Z1", + "name": "Terezín,škola", + "isMetro": false, + "latitude": 14.142067, + "longitude": 50.506821, + "stopId": "U32106" + }, + { + "id": "U32106Z2", + "name": "Terezín,škola", + "isMetro": false, + "latitude": 14.142105, + "longitude": 50.506771, + "stopId": "U32106" + }, + { + "id": "U32107Z1", + "name": "Petrohrad,rozc.", + "isMetro": false, + "latitude": 13.43621, + "longitude": 50.138802, + "stopId": "U32107" + }, + { + "id": "U32107Z2", + "name": "Petrohrad,rozc.", + "isMetro": false, + "latitude": 13.43647, + "longitude": 50.138851, + "stopId": "U32107" + }, + { + "id": "U32108Z1", + "name": "Lubenec,Ležky,rozc.0.3", + "isMetro": false, + "latitude": 13.356709, + "longitude": 50.121784, + "stopId": "U32108" + }, + { + "id": "U32108Z2", + "name": "Lubenec,Ležky,rozc.0.3", + "isMetro": false, + "latitude": 13.357053, + "longitude": 50.121658, + "stopId": "U32108" + }, + { + "id": "U32108Z301", + "name": "Ležky", + "isMetro": false, + "latitude": 13.354214, + "longitude": 50.119167, + "stopId": "U32108" + }, + { + "id": "U32109Z1", + "name": "Lubenec,Jelení", + "isMetro": false, + "latitude": 13.332894, + "longitude": 50.1264, + "stopId": "U32109" + }, + { + "id": "U3210Z1", + "name": "Zoo Praha - Sklenářka", + "isMetro": false, + "latitude": 14.403426, + "longitude": 50.120358, + "stopId": "U3210" + }, + { + "id": "U3210Z2", + "name": "Zoo Praha - Sklenářka", + "isMetro": false, + "latitude": 14.40347, + "longitude": 50.120251, + "stopId": "U3210" + }, + { + "id": "U32110Z1", + "name": "Lubenec,Pražská", + "isMetro": false, + "latitude": 13.315832, + "longitude": 50.132172, + "stopId": "U32110" + }, + { + "id": "U32110Z2", + "name": "Lubenec,Pražská", + "isMetro": false, + "latitude": 13.316124, + "longitude": 50.13203, + "stopId": "U32110" + }, + { + "id": "U32111Z11", + "name": "Mimoň,žel.st.", + "isMetro": false, + "latitude": 14.715206, + "longitude": 50.65789, + "stopId": "U32111" + }, + { + "id": "U3211Z1", + "name": "U Trezorky", + "isMetro": false, + "latitude": 14.375518, + "longitude": 50.05574, + "stopId": "U3211" + }, + { + "id": "U3211Z3", + "name": "U Trezorky", + "isMetro": false, + "latitude": 14.377726, + "longitude": 50.055637, + "stopId": "U3211" + }, + { + "id": "U32124Z1", + "name": "Semily,Podmoklice,rozc.", + "isMetro": false, + "latitude": 15.32417, + "longitude": 50.606209, + "stopId": "U32124" + }, + { + "id": "U32124Z2", + "name": "Semily,Podmoklice,rozc.", + "isMetro": false, + "latitude": 15.324244, + "longitude": 50.606293, + "stopId": "U32124" + }, + { + "id": "U32125Z1", + "name": "Semily,Luční", + "isMetro": false, + "latitude": 15.328972, + "longitude": 50.602272, + "stopId": "U32125" + }, + { + "id": "U32126Z1", + "name": "Semily,Letná", + "isMetro": false, + "latitude": 15.313578, + "longitude": 50.611046, + "stopId": "U32126" + }, + { + "id": "U32126Z2", + "name": "Semily,Letná", + "isMetro": false, + "latitude": 15.313505, + "longitude": 50.611172, + "stopId": "U32126" + }, + { + "id": "U32127Z1", + "name": "Železný Brod,nová škola", + "isMetro": false, + "latitude": 15.269948, + "longitude": 50.636944, + "stopId": "U32127" + }, + { + "id": "U32127Z2", + "name": "Železný Brod,nová škola", + "isMetro": false, + "latitude": 15.269938, + "longitude": 50.637035, + "stopId": "U32127" + }, + { + "id": "U32128Z1", + "name": "Turnov,U Benešů", + "isMetro": false, + "latitude": 15.13375, + "longitude": 50.589401, + "stopId": "U32128" + }, + { + "id": "U32128Z2", + "name": "Turnov,U Benešů", + "isMetro": false, + "latitude": 15.133351, + "longitude": 50.589756, + "stopId": "U32128" + }, + { + "id": "U3212Z1", + "name": "Nádraží Čakovice", + "isMetro": false, + "latitude": 14.520391, + "longitude": 50.14983, + "stopId": "U3212" + }, + { + "id": "U3212Z2", + "name": "Nádraží Čakovice", + "isMetro": false, + "latitude": 14.520284, + "longitude": 50.150803, + "stopId": "U3212" + }, + { + "id": "U3212Z301", + "name": "Praha-Čakovice", + "isMetro": false, + "latitude": 14.519135, + "longitude": 50.149044, + "stopId": "U3212" + }, + { + "id": "U32131Z301", + "name": "Lubenec zastávka", + "isMetro": false, + "latitude": 13.307083, + "longitude": 50.129478, + "stopId": "U32131" + }, + { + "id": "U3213Z1", + "name": "Ve Smečkách", + "isMetro": false, + "latitude": 14.426062, + "longitude": 50.077328, + "stopId": "U3213" + }, + { + "id": "U32149Z1", + "name": "Česká Lípa,U Jezu", + "isMetro": false, + "latitude": 14.539427, + "longitude": 50.683041, + "stopId": "U32149" + }, + { + "id": "U32150Z1", + "name": "Česká Lípa,Lada", + "isMetro": false, + "latitude": 14.544523, + "longitude": 50.709167, + "stopId": "U32150" + }, + { + "id": "U32150Z2", + "name": "Česká Lípa,Lada", + "isMetro": false, + "latitude": 14.544302, + "longitude": 50.70916, + "stopId": "U32150" + }, + { + "id": "U32151Z2", + "name": "Cvikov,rozc.Rousínov", + "isMetro": false, + "latitude": 14.616141, + "longitude": 50.783672, + "stopId": "U32151" + }, + { + "id": "U32152Z2", + "name": "Cvikov,sídliště", + "isMetro": false, + "latitude": 14.625299, + "longitude": 50.779716, + "stopId": "U32152" + }, + { + "id": "U32155Z1", + "name": "Držkov,u Rydvalů", + "isMetro": false, + "latitude": 15.309961, + "longitude": 50.690002, + "stopId": "U32155" + }, + { + "id": "U32155Z2", + "name": "Držkov,u Rydvalů", + "isMetro": false, + "latitude": 15.308867, + "longitude": 50.689808, + "stopId": "U32155" + }, + { + "id": "U32157Z1", + "name": "Lubenec,Libkovice,rozc.", + "isMetro": false, + "latitude": 13.268165, + "longitude": 50.135452, + "stopId": "U32157" + }, + { + "id": "U32157Z301", + "name": "Libkovice", + "isMetro": false, + "latitude": 13.270011, + "longitude": 50.130463, + "stopId": "U32157" + }, + { + "id": "U32158Z1", + "name": "Vrbice,Bošov", + "isMetro": false, + "latitude": 13.235305, + "longitude": 50.135456, + "stopId": "U32158" + }, + { + "id": "U32160Z1", + "name": "Verušičky,Hvězda", + "isMetro": false, + "latitude": 13.119884, + "longitude": 50.134911, + "stopId": "U32160" + }, + { + "id": "U32160Z2", + "name": "Verušičky,Hvězda", + "isMetro": false, + "latitude": 13.119953, + "longitude": 50.134663, + "stopId": "U32160" + }, + { + "id": "U32161Z1", + "name": "Bochov,Údrč,rozc.Skoky", + "isMetro": false, + "latitude": 13.088261, + "longitude": 50.143967, + "stopId": "U32161" + }, + { + "id": "U32161Z2", + "name": "Bochov,Údrč,rozc.Skoky", + "isMetro": false, + "latitude": 13.088564, + "longitude": 50.143753, + "stopId": "U32161" + }, + { + "id": "U32162Z1", + "name": "Bochov,nám.", + "isMetro": false, + "latitude": 13.045491, + "longitude": 50.150364, + "stopId": "U32162" + }, + { + "id": "U32162Z2", + "name": "Bochov,nám.", + "isMetro": false, + "latitude": 13.045408, + "longitude": 50.150265, + "stopId": "U32162" + }, + { + "id": "U32163Z1", + "name": "Andělská Hora,rozc.", + "isMetro": false, + "latitude": 12.960153, + "longitude": 50.200447, + "stopId": "U32163" + }, + { + "id": "U32163Z2", + "name": "Andělská Hora,rozc.", + "isMetro": false, + "latitude": 12.960019, + "longitude": 50.200287, + "stopId": "U32163" + }, + { + "id": "U32164Z1", + "name": "Karlovy Vary,Olšová Vrata,rozc.", + "isMetro": false, + "latitude": 12.920071, + "longitude": 50.212452, + "stopId": "U32164" + }, + { + "id": "U32164Z2", + "name": "Karlovy Vary,Olšová Vrata,rozc.", + "isMetro": false, + "latitude": 12.919601, + "longitude": 50.212234, + "stopId": "U32164" + }, + { + "id": "U32165Z1", + "name": "Karlovy Vary,Mattoniho nábř.", + "isMetro": false, + "latitude": 12.889396, + "longitude": 50.239815, + "stopId": "U32165" + }, + { + "id": "U32165Z2", + "name": "Karlovy Vary,Mattoniho nábř.", + "isMetro": false, + "latitude": 12.888571, + "longitude": 50.238712, + "stopId": "U32165" + }, + { + "id": "U32166Z1", + "name": "Karlovy Vary,tržnice", + "isMetro": false, + "latitude": 12.870209, + "longitude": 50.230957, + "stopId": "U32166" + }, + { + "id": "U32167Z1", + "name": "Karlovy Vary,terminál", + "isMetro": false, + "latitude": 12.864551, + "longitude": 50.230145, + "stopId": "U32167" + }, + { + "id": "U32167Z2", + "name": "Karlovy Vary,terminál", + "isMetro": false, + "latitude": 12.864244, + "longitude": 50.230003, + "stopId": "U32167" + }, + { + "id": "U32168Z1", + "name": "Bochov,SÚS", + "isMetro": false, + "latitude": 13.051988, + "longitude": 50.148907, + "stopId": "U32168" + }, + { + "id": "U32168Z2", + "name": "Bochov,SÚS", + "isMetro": false, + "latitude": 13.05192, + "longitude": 50.148823, + "stopId": "U32168" + }, + { + "id": "U3216Z1", + "name": "Radnice Praha 6", + "isMetro": false, + "latitude": 14.400976, + "longitude": 50.100487, + "stopId": "U3216" + }, + { + "id": "U3216Z2", + "name": "Radnice Praha 6", + "isMetro": false, + "latitude": 14.402247, + "longitude": 50.100475, + "stopId": "U3216" + }, + { + "id": "U3217Z1", + "name": "Studentský dům", + "isMetro": false, + "latitude": 14.389921, + "longitude": 50.105865, + "stopId": "U3217" + }, + { + "id": "U3217Z2", + "name": "Studentský dům", + "isMetro": false, + "latitude": 14.390102, + "longitude": 50.10593, + "stopId": "U3217" + }, + { + "id": "U32181Z1", + "name": "Ročov,Úlovice", + "isMetro": false, + "latitude": 13.792477, + "longitude": 50.264523, + "stopId": "U32181" + }, + { + "id": "U32181Z2", + "name": "Ročov,Úlovice", + "isMetro": false, + "latitude": 13.792362, + "longitude": 50.264465, + "stopId": "U32181" + }, + { + "id": "U32182Z1", + "name": "Ročov,Břínkov", + "isMetro": false, + "latitude": 13.788815, + "longitude": 50.277058, + "stopId": "U32182" + }, + { + "id": "U32182Z2", + "name": "Ročov,Břínkov", + "isMetro": false, + "latitude": 13.788736, + "longitude": 50.277016, + "stopId": "U32182" + }, + { + "id": "U32183Z1", + "name": "Brodec", + "isMetro": false, + "latitude": 13.796916, + "longitude": 50.293461, + "stopId": "U32183" + }, + { + "id": "U32183Z2", + "name": "Brodec", + "isMetro": false, + "latitude": 13.796899, + "longitude": 50.293522, + "stopId": "U32183" + }, + { + "id": "U32184Z1", + "name": "Líšťany,Hrabačov", + "isMetro": false, + "latitude": 13.800319, + "longitude": 50.310081, + "stopId": "U32184" + }, + { + "id": "U32184Z2", + "name": "Líšťany,Hrabačov", + "isMetro": false, + "latitude": 13.800232, + "longitude": 50.310078, + "stopId": "U32184" + }, + { + "id": "U32187Z1", + "name": "Líšťany", + "isMetro": false, + "latitude": 13.7995, + "longitude": 50.312614, + "stopId": "U32187" + }, + { + "id": "U32187Z2", + "name": "Líšťany", + "isMetro": false, + "latitude": 13.79936, + "longitude": 50.312599, + "stopId": "U32187" + }, + { + "id": "U3218Z1", + "name": "Národní technická knihovna", + "isMetro": false, + "latitude": 14.390903, + "longitude": 50.103489, + "stopId": "U3218" + }, + { + "id": "U3218Z2", + "name": "Národní technická knihovna", + "isMetro": false, + "latitude": 14.390322, + "longitude": 50.10294, + "stopId": "U3218" + }, + { + "id": "U32193Z1", + "name": "Manětín,Újezd,rozc.1.0", + "isMetro": false, + "latitude": 13.198611, + "longitude": 49.994408, + "stopId": "U32193" + }, + { + "id": "U32193Z2", + "name": "Manětín,Újezd,rozc.1.0", + "isMetro": false, + "latitude": 13.19864, + "longitude": 49.994354, + "stopId": "U32193" + }, + { + "id": "U32194Z1", + "name": "Nečtiny,Lešovice,rozc.0.3", + "isMetro": false, + "latitude": 13.190787, + "longitude": 49.991161, + "stopId": "U32194" + }, + { + "id": "U32194Z2", + "name": "Nečtiny,Lešovice,rozc.0.3", + "isMetro": false, + "latitude": 13.190953, + "longitude": 49.991154, + "stopId": "U32194" + }, + { + "id": "U32195Z1", + "name": "Nečtiny,Hamr", + "isMetro": false, + "latitude": 13.183396, + "longitude": 49.98777, + "stopId": "U32195" + }, + { + "id": "U32195Z2", + "name": "Nečtiny,Hamr", + "isMetro": false, + "latitude": 13.18345, + "longitude": 49.987732, + "stopId": "U32195" + }, + { + "id": "U32196Z1", + "name": "Nečtiny,Doubravice,rozc.", + "isMetro": false, + "latitude": 13.167958, + "longitude": 49.981091, + "stopId": "U32196" + }, + { + "id": "U32196Z2", + "name": "Nečtiny,Doubravice,rozc.", + "isMetro": false, + "latitude": 13.168109, + "longitude": 49.981079, + "stopId": "U32196" + }, + { + "id": "U32197Z1", + "name": "Nečtiny", + "isMetro": false, + "latitude": 13.164371, + "longitude": 49.975697, + "stopId": "U32197" + }, + { + "id": "U32197Z2", + "name": "Nečtiny", + "isMetro": false, + "latitude": 13.164651, + "longitude": 49.975353, + "stopId": "U32197" + }, + { + "id": "U32198Z1", + "name": "Nečtiny,Hrad Nečtiny", + "isMetro": false, + "latitude": 13.156267, + "longitude": 49.957108, + "stopId": "U32198" + }, + { + "id": "U321Z1", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.391483, + "longitude": 50.10033, + "stopId": "U321" + }, + { + "id": "U321Z101", + "name": "Dejvická", + "isMetro": true, + "latitude": 14.393177, + "longitude": 50.10041, + "stopId": "U321" + }, + { + "id": "U321Z102", + "name": "Dejvická", + "isMetro": true, + "latitude": 14.39316, + "longitude": 50.100528, + "stopId": "U321" + }, + { + "id": "U321Z12", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.392135, + "longitude": 50.101086, + "stopId": "U321" + }, + { + "id": "U321Z13", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.394101, + "longitude": 50.102554, + "stopId": "U321" + }, + { + "id": "U321Z18", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.393413, + "longitude": 50.100597, + "stopId": "U321" + }, + { + "id": "U321Z2", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.390614, + "longitude": 50.100372, + "stopId": "U321" + }, + { + "id": "U321Z22", + "name": "Vítězné náměstí", + "isMetro": false, + "latitude": 14.395687, + "longitude": 50.099792, + "stopId": "U321" + }, + { + "id": "U321Z3", + "name": "Vítězné náměstí", + "isMetro": false, + "latitude": 14.39549, + "longitude": 50.099525, + "stopId": "U321" + }, + { + "id": "U321Z4", + "name": "Vítězné náměstí", + "isMetro": false, + "latitude": 14.395535, + "longitude": 50.100075, + "stopId": "U321" + }, + { + "id": "U321Z5", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.394204, + "longitude": 50.100861, + "stopId": "U321" + }, + { + "id": "U321Z6", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.395029, + "longitude": 50.101368, + "stopId": "U321" + }, + { + "id": "U321Z7", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.394965, + "longitude": 50.101494, + "stopId": "U321" + }, + { + "id": "U321Z74", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.393413, + "longitude": 50.100597, + "stopId": "U321" + }, + { + "id": "U321Z81", + "name": "Vítězné náměstí", + "isMetro": false, + "latitude": 14.395383, + "longitude": 50.099575, + "stopId": "U321" + }, + { + "id": "U321Z82", + "name": "Vítězné náměstí", + "isMetro": false, + "latitude": 14.395687, + "longitude": 50.099792, + "stopId": "U321" + }, + { + "id": "U321Z9", + "name": "Dejvická", + "isMetro": false, + "latitude": 14.392684, + "longitude": 50.100582, + "stopId": "U321" + }, + { + "id": "U3220Z1", + "name": "Kolová", + "isMetro": false, + "latitude": 14.349879, + "longitude": 49.978275, + "stopId": "U3220" + }, + { + "id": "U3221Z1", + "name": "Viničky", + "isMetro": false, + "latitude": 14.347851, + "longitude": 49.979256, + "stopId": "U3221" + }, + { + "id": "U32226Z1", + "name": "Nadějkov,Kaliště,rozc.1.0", + "isMetro": false, + "latitude": 14.485662, + "longitude": 49.516472, + "stopId": "U32226" + }, + { + "id": "U32226Z2", + "name": "Nadějkov,Kaliště,rozc.1.0", + "isMetro": false, + "latitude": 14.485868, + "longitude": 49.516415, + "stopId": "U32226" + }, + { + "id": "U32227Z2", + "name": "Železný Brod,Dvírka", + "isMetro": false, + "latitude": 15.233585, + "longitude": 50.64505, + "stopId": "U32227" + }, + { + "id": "U3222Z1", + "name": "Příbramská", + "isMetro": false, + "latitude": 14.346405, + "longitude": 49.977764, + "stopId": "U3222" + }, + { + "id": "U32230Z1", + "name": "Měcholupy,Velká Černoc", + "isMetro": false, + "latitude": 13.585748, + "longitude": 50.202335, + "stopId": "U32230" + }, + { + "id": "U32230Z2", + "name": "Měcholupy,Velká Černoc", + "isMetro": false, + "latitude": 13.585834, + "longitude": 50.202152, + "stopId": "U32230" + }, + { + "id": "U32231Z1", + "name": "Deštnice,Nová Hospoda rozc.", + "isMetro": false, + "latitude": 13.588191, + "longitude": 50.217007, + "stopId": "U32231" + }, + { + "id": "U32231Z2", + "name": "Deštnice,Nová Hospoda rozc.", + "isMetro": false, + "latitude": 13.588104, + "longitude": 50.216972, + "stopId": "U32231" + }, + { + "id": "U32232Z1", + "name": "Měcholupy,škola", + "isMetro": false, + "latitude": 13.538884, + "longitude": 50.270229, + "stopId": "U32232" + }, + { + "id": "U32232Z2", + "name": "Měcholupy,škola", + "isMetro": false, + "latitude": 13.538638, + "longitude": 50.270237, + "stopId": "U32232" + }, + { + "id": "U32234Z1", + "name": "Kadaň,aut.nádr.", + "isMetro": false, + "latitude": 13.27586, + "longitude": 50.380451, + "stopId": "U32234" + }, + { + "id": "U32234Z2", + "name": "Kadaň,aut.nádr.", + "isMetro": false, + "latitude": 13.276112, + "longitude": 50.3801, + "stopId": "U32234" + }, + { + "id": "U32235Z301", + "name": "Čimelice", + "isMetro": false, + "latitude": 14.076678, + "longitude": 49.470341, + "stopId": "U32235" + }, + { + "id": "U32236Z301", + "name": "Horní Nerestce", + "isMetro": false, + "latitude": 14.056573, + "longitude": 49.497936, + "stopId": "U32236" + }, + { + "id": "U32237Z301", + "name": "Smetanova Lhota", + "isMetro": false, + "latitude": 14.081802, + "longitude": 49.445808, + "stopId": null + }, + { + "id": "U32238Z301", + "name": "Dolní Ostrovec", + "isMetro": false, + "latitude": 14.113014, + "longitude": 49.413891, + "stopId": null + }, + { + "id": "U32239Z301", + "name": "Vráž u Písku", + "isMetro": false, + "latitude": 14.124675, + "longitude": 49.391888, + "stopId": null + }, + { + "id": "U3223Z1", + "name": "Dehtínská", + "isMetro": false, + "latitude": 14.344787, + "longitude": 49.97665, + "stopId": "U3223" + }, + { + "id": "U32240Z301", + "name": "Čížová", + "isMetro": false, + "latitude": 14.097787, + "longitude": 49.353523, + "stopId": null + }, + { + "id": "U32241Z301", + "name": "Písek-Dobešice", + "isMetro": false, + "latitude": 14.110159, + "longitude": 49.327427, + "stopId": null + }, + { + "id": "U32242Z301", + "name": "Písek zastávka", + "isMetro": false, + "latitude": 14.135927, + "longitude": 49.312771, + "stopId": null + }, + { + "id": "U32243Z301", + "name": "Písek", + "isMetro": false, + "latitude": 14.14343, + "longitude": 49.296608, + "stopId": null + }, + { + "id": "U32244Z301", + "name": "Putim", + "isMetro": false, + "latitude": 14.131135, + "longitude": 49.264042, + "stopId": null + }, + { + "id": "U32245Z301", + "name": "Heřmaň", + "isMetro": false, + "latitude": 14.139434, + "longitude": 49.244663, + "stopId": null + }, + { + "id": "U32246Z301", + "name": "Protivín", + "isMetro": false, + "latitude": 14.211576, + "longitude": 49.212208, + "stopId": null + }, + { + "id": "U3224Z1", + "name": "Vojetická", + "isMetro": false, + "latitude": 14.348144, + "longitude": 49.976498, + "stopId": "U3224" + }, + { + "id": "U32255Z1", + "name": "Lubenec,závod", + "isMetro": false, + "latitude": 13.323853, + "longitude": 50.130421, + "stopId": "U32255" + }, + { + "id": "U32255Z2", + "name": "Lubenec,závod", + "isMetro": false, + "latitude": 13.324268, + "longitude": 50.130108, + "stopId": "U32255" + }, + { + "id": "U32255Z301", + "name": "Lubenec", + "isMetro": false, + "latitude": 13.32787, + "longitude": 50.126324, + "stopId": "U32255" + }, + { + "id": "U32256Z301", + "name": "Malměřice", + "isMetro": false, + "latitude": 13.381257, + "longitude": 50.113678, + "stopId": "U32256" + }, + { + "id": "U32259Z1", + "name": "Vrbice,Skřipová,rozc.", + "isMetro": false, + "latitude": 13.199394, + "longitude": 50.135799, + "stopId": "U32259" + }, + { + "id": "U32259Z2", + "name": "Vrbice,Skřipová,rozc.", + "isMetro": false, + "latitude": 13.201606, + "longitude": 50.13559, + "stopId": "U32259" + }, + { + "id": "U3225Z1", + "name": "Zdická", + "isMetro": false, + "latitude": 14.350594, + "longitude": 49.977566, + "stopId": "U3225" + }, + { + "id": "U32260Z1", + "name": "Verušičky,Budov,rozc.", + "isMetro": false, + "latitude": 13.150187, + "longitude": 50.135754, + "stopId": "U32260" + }, + { + "id": "U32260Z2", + "name": "Verušičky,Budov,rozc.", + "isMetro": false, + "latitude": 13.153672, + "longitude": 50.136021, + "stopId": "U32260" + }, + { + "id": "U32261Z1", + "name": "Bochov,Herstošice", + "isMetro": false, + "latitude": 13.10066, + "longitude": 50.14209, + "stopId": "U32261" + }, + { + "id": "U32261Z2", + "name": "Bochov,Herstošice", + "isMetro": false, + "latitude": 13.099965, + "longitude": 50.142017, + "stopId": "U32261" + }, + { + "id": "U32262Z1", + "name": "Stružná,Horní Tašovice", + "isMetro": false, + "latitude": 13.014761, + "longitude": 50.1716, + "stopId": "U32262" + }, + { + "id": "U32262Z2", + "name": "Stružná,Horní Tašovice", + "isMetro": false, + "latitude": 13.014741, + "longitude": 50.171486, + "stopId": "U32262" + }, + { + "id": "U32263Z1", + "name": "Stružná,rozc.", + "isMetro": false, + "latitude": 13.001954, + "longitude": 50.179527, + "stopId": "U32263" + }, + { + "id": "U32263Z2", + "name": "Stružná,rozc.", + "isMetro": false, + "latitude": 13.001843, + "longitude": 50.179485, + "stopId": "U32263" + }, + { + "id": "U32264Z1", + "name": "Stružná,Žalmanov", + "isMetro": false, + "latitude": 12.987741, + "longitude": 50.186958, + "stopId": "U32264" + }, + { + "id": "U32264Z2", + "name": "Stružná,Žalmanov", + "isMetro": false, + "latitude": 12.987761, + "longitude": 50.18689, + "stopId": "U32264" + }, + { + "id": "U32265Z1", + "name": "Andělská Hora,horní obec", + "isMetro": false, + "latitude": 12.96137, + "longitude": 50.204296, + "stopId": "U32265" + }, + { + "id": "U32265Z2", + "name": "Andělská Hora,horní obec", + "isMetro": false, + "latitude": 12.960707, + "longitude": 50.204796, + "stopId": "U32265" + }, + { + "id": "U32266Z1", + "name": "Andělská Hora,dolní obec", + "isMetro": false, + "latitude": 12.955358, + "longitude": 50.208042, + "stopId": "U32266" + }, + { + "id": "U32266Z2", + "name": "Andělská Hora,dolní obec", + "isMetro": false, + "latitude": 12.954838, + "longitude": 50.208134, + "stopId": "U32266" + }, + { + "id": "U32267Z1", + "name": "Andělská Hora,chaty", + "isMetro": false, + "latitude": 12.944779, + "longitude": 50.207153, + "stopId": "U32267" + }, + { + "id": "U32267Z2", + "name": "Andělská Hora,chaty", + "isMetro": false, + "latitude": 12.944569, + "longitude": 50.207039, + "stopId": "U32267" + }, + { + "id": "U32268Z1", + "name": "Karlovy Vary,Mlékárna", + "isMetro": false, + "latitude": 12.875894, + "longitude": 50.23489, + "stopId": "U32268" + }, + { + "id": "U32268Z2", + "name": "Karlovy Vary,Mlékárna", + "isMetro": false, + "latitude": 12.876042, + "longitude": 50.234802, + "stopId": "U32268" + }, + { + "id": "U32269Z1", + "name": "Verušičky", + "isMetro": false, + "latitude": 13.173372, + "longitude": 50.141724, + "stopId": "U32269" + }, + { + "id": "U32271Z1", + "name": "Karlovy Vary,Prašná", + "isMetro": false, + "latitude": 12.882222, + "longitude": 50.236271, + "stopId": "U32271" + }, + { + "id": "U32271Z2", + "name": "Karlovy Vary,Prašná", + "isMetro": false, + "latitude": 12.883963, + "longitude": 50.23703, + "stopId": "U32271" + }, + { + "id": "U32274Z1", + "name": "Dušníky", + "isMetro": false, + "latitude": 14.192926, + "longitude": 50.422447, + "stopId": "U32274" + }, + { + "id": "U32274Z2", + "name": "Dušníky", + "isMetro": false, + "latitude": 14.192645, + "longitude": 50.422676, + "stopId": "U32274" + }, + { + "id": "U3227Z1", + "name": "Nad Konvářkou", + "isMetro": false, + "latitude": 14.399128, + "longitude": 50.053806, + "stopId": "U3227" + }, + { + "id": "U3228Z1", + "name": "Kutvirtova", + "isMetro": false, + "latitude": 14.392773, + "longitude": 50.05727, + "stopId": "U3228" + }, + { + "id": "U3228Z2", + "name": "Kutvirtova", + "isMetro": false, + "latitude": 14.392953, + "longitude": 50.057308, + "stopId": "U3228" + }, + { + "id": "U3229Z1", + "name": "Nad Laurovou", + "isMetro": false, + "latitude": 14.396186, + "longitude": 50.062332, + "stopId": "U3229" + }, + { + "id": "U3229Z2", + "name": "Nad Laurovou", + "isMetro": false, + "latitude": 14.39557, + "longitude": 50.062439, + "stopId": "U3229" + }, + { + "id": "U322Z1", + "name": "Lešanská", + "isMetro": false, + "latitude": 14.482901, + "longitude": 50.045834, + "stopId": "U322" + }, + { + "id": "U322Z2", + "name": "Lešanská", + "isMetro": false, + "latitude": 14.483015, + "longitude": 50.046036, + "stopId": "U322" + }, + { + "id": "U322Z3", + "name": "Lešanská", + "isMetro": false, + "latitude": 14.484674, + "longitude": 50.045502, + "stopId": "U322" + }, + { + "id": "U32302Z1", + "name": "Žatec,VÚCh", + "isMetro": false, + "latitude": 13.526629, + "longitude": 50.32407, + "stopId": "U32302" + }, + { + "id": "U32302Z2", + "name": "Žatec,VÚCh", + "isMetro": false, + "latitude": 13.526565, + "longitude": 50.324146, + "stopId": "U32302" + }, + { + "id": "U32303Z1", + "name": "Žatec,Kadaňská", + "isMetro": false, + "latitude": 13.518215, + "longitude": 50.327137, + "stopId": "U32303" + }, + { + "id": "U32303Z2", + "name": "Žatec,Kadaňská", + "isMetro": false, + "latitude": 13.518225, + "longitude": 50.327229, + "stopId": "U32303" + }, + { + "id": "U32304Z1", + "name": "Libočany", + "isMetro": false, + "latitude": 13.51402, + "longitude": 50.33337, + "stopId": "U32304" + }, + { + "id": "U32304Z2", + "name": "Libočany", + "isMetro": false, + "latitude": 13.51402, + "longitude": 50.33337, + "stopId": "U32304" + }, + { + "id": "U32305Z1", + "name": "Nové Sedlo", + "isMetro": false, + "latitude": 13.474079, + "longitude": 50.338749, + "stopId": "U32305" + }, + { + "id": "U32306Z1", + "name": "Chbany,rozc.Chudeřín", + "isMetro": false, + "latitude": 13.446839, + "longitude": 50.33313, + "stopId": "U32306" + }, + { + "id": "U32306Z2", + "name": "Chbany,rozc.Chudeřín", + "isMetro": false, + "latitude": 13.446671, + "longitude": 50.333183, + "stopId": "U32306" + }, + { + "id": "U32307Z1", + "name": "Chbany", + "isMetro": false, + "latitude": 13.429469, + "longitude": 50.332554, + "stopId": "U32307" + }, + { + "id": "U32307Z2", + "name": "Chbany", + "isMetro": false, + "latitude": 13.429337, + "longitude": 50.332607, + "stopId": "U32307" + }, + { + "id": "U32308Z1", + "name": "Chbany,Soběsuky,rozc.", + "isMetro": false, + "latitude": 13.428115, + "longitude": 50.344742, + "stopId": "U32308" + }, + { + "id": "U32308Z2", + "name": "Chbany,Soběsuky,rozc.", + "isMetro": false, + "latitude": 13.42828, + "longitude": 50.344799, + "stopId": "U32308" + }, + { + "id": "U32309Z1", + "name": "Chbany,Vikletice,přehrada", + "isMetro": false, + "latitude": 13.416037, + "longitude": 50.346264, + "stopId": "U32309" + }, + { + "id": "U32309Z2", + "name": "Chbany,Vikletice,přehrada", + "isMetro": false, + "latitude": 13.415844, + "longitude": 50.346424, + "stopId": "U32309" + }, + { + "id": "U3230Z1", + "name": "Štorkánova", + "isMetro": false, + "latitude": 14.393401, + "longitude": 50.061661, + "stopId": "U3230" + }, + { + "id": "U3230Z2", + "name": "Štorkánova", + "isMetro": false, + "latitude": 14.391949, + "longitude": 50.061665, + "stopId": "U3230" + }, + { + "id": "U32310Z1", + "name": "Chbany,Vikletice", + "isMetro": false, + "latitude": 13.402842, + "longitude": 50.348278, + "stopId": "U32310" + }, + { + "id": "U32310Z2", + "name": "Chbany,Vikletice", + "isMetro": false, + "latitude": 13.402746, + "longitude": 50.348354, + "stopId": "U32310" + }, + { + "id": "U32311Z1", + "name": "Chbany,Vadkovice", + "isMetro": false, + "latitude": 13.385315, + "longitude": 50.339867, + "stopId": "U32311" + }, + { + "id": "U32311Z2", + "name": "Chbany,Vadkovice", + "isMetro": false, + "latitude": 13.385149, + "longitude": 50.339863, + "stopId": "U32311" + }, + { + "id": "U32312Z1", + "name": "Chbany,Malé Krhovice", + "isMetro": false, + "latitude": 13.377575, + "longitude": 50.335495, + "stopId": "U32312" + }, + { + "id": "U32312Z2", + "name": "Chbany,Malé Krhovice", + "isMetro": false, + "latitude": 13.377347, + "longitude": 50.335487, + "stopId": "U32312" + }, + { + "id": "U32313Z1", + "name": "Chbany,Poláky", + "isMetro": false, + "latitude": 13.352818, + "longitude": 50.335884, + "stopId": "U32313" + }, + { + "id": "U32313Z2", + "name": "Chbany,Poláky", + "isMetro": false, + "latitude": 13.352736, + "longitude": 50.33596, + "stopId": "U32313" + }, + { + "id": "U32314Z1", + "name": "Chbany,Hořenice,rozc.", + "isMetro": false, + "latitude": 13.344406, + "longitude": 50.336922, + "stopId": "U32314" + }, + { + "id": "U32314Z2", + "name": "Chbany,Hořenice,rozc.", + "isMetro": false, + "latitude": 13.344163, + "longitude": 50.337013, + "stopId": "U32314" + }, + { + "id": "U32315Z1", + "name": "Rokle,Hradec,rozvodna", + "isMetro": false, + "latitude": 13.323504, + "longitude": 50.341145, + "stopId": "U32315" + }, + { + "id": "U32315Z2", + "name": "Rokle,Hradec,rozvodna", + "isMetro": false, + "latitude": 13.323345, + "longitude": 50.341293, + "stopId": "U32315" + }, + { + "id": "U32316Z1", + "name": "Rokle", + "isMetro": false, + "latitude": 13.297635, + "longitude": 50.353344, + "stopId": "U32316" + }, + { + "id": "U32316Z2", + "name": "Rokle", + "isMetro": false, + "latitude": 13.297692, + "longitude": 50.353577, + "stopId": "U32316" + }, + { + "id": "U32317Z1", + "name": "Rokle,Želina,rozc.", + "isMetro": false, + "latitude": 13.285959, + "longitude": 50.360889, + "stopId": "U32317" + }, + { + "id": "U32317Z2", + "name": "Rokle,Želina,rozc.", + "isMetro": false, + "latitude": 13.285965, + "longitude": 50.360981, + "stopId": "U32317" + }, + { + "id": "U32318Z1", + "name": "Kadaň,u mostu", + "isMetro": false, + "latitude": 13.274318, + "longitude": 50.375847, + "stopId": "U32318" + }, + { + "id": "U32318Z2", + "name": "Kadaň,u mostu", + "isMetro": false, + "latitude": 13.274699, + "longitude": 50.375473, + "stopId": "U32318" + }, + { + "id": "U3231Z1", + "name": "Smíchovský hřbitov", + "isMetro": false, + "latitude": 14.389443, + "longitude": 50.062065, + "stopId": "U3231" + }, + { + "id": "U3231Z2", + "name": "Smíchovský hřbitov", + "isMetro": false, + "latitude": 14.389553, + "longitude": 50.062225, + "stopId": "U3231" + }, + { + "id": "U32323Z2", + "name": "Přepeře,u hřiště", + "isMetro": false, + "latitude": 15.113072, + "longitude": 50.583927, + "stopId": "U32323" + }, + { + "id": "U3232Z1", + "name": "Mrázovka", + "isMetro": false, + "latitude": 14.392549, + "longitude": 50.068329, + "stopId": "U3232" + }, + { + "id": "U3232Z2", + "name": "Mrázovka", + "isMetro": false, + "latitude": 14.39249, + "longitude": 50.068501, + "stopId": "U3232" + }, + { + "id": "U3233Z1", + "name": "Černý vrch", + "isMetro": false, + "latitude": 14.387283, + "longitude": 50.068283, + "stopId": "U3233" + }, + { + "id": "U3233Z2", + "name": "Černý vrch", + "isMetro": false, + "latitude": 14.387506, + "longitude": 50.068348, + "stopId": "U3233" + }, + { + "id": "U3234Z1", + "name": "U Blaženky", + "isMetro": false, + "latitude": 14.384913, + "longitude": 50.067928, + "stopId": "U3234" + }, + { + "id": "U32358Z301", + "name": "Chyše", + "isMetro": false, + "latitude": 13.247839, + "longitude": 50.111057, + "stopId": "U32358" + }, + { + "id": "U32359Z301", + "name": "Protivec", + "isMetro": false, + "latitude": 13.207038, + "longitude": 50.089581, + "stopId": "U32359" + }, + { + "id": "U3235Z2", + "name": "Květinková", + "isMetro": false, + "latitude": 14.489098, + "longitude": 50.090279, + "stopId": "U3235" + }, + { + "id": "U32360Z301", + "name": "Záhořice", + "isMetro": false, + "latitude": 13.193394, + "longitude": 50.078373, + "stopId": "U32360" + }, + { + "id": "U32362Z301", + "name": "Žlutice", + "isMetro": false, + "latitude": 13.159661, + "longitude": 50.084599, + "stopId": "U32362" + }, + { + "id": "U3236Z1", + "name": "Nové Komořany", + "isMetro": false, + "latitude": 14.419432, + "longitude": 49.992352, + "stopId": "U3236" + }, + { + "id": "U3236Z2", + "name": "Nové Komořany", + "isMetro": false, + "latitude": 14.419929, + "longitude": 49.992538, + "stopId": "U3236" + }, + { + "id": "U32379Z1", + "name": "Chbany,Přeskaky,rozc.", + "isMetro": false, + "latitude": 13.418535, + "longitude": 50.332348, + "stopId": "U32379" + }, + { + "id": "U32379Z2", + "name": "Chbany,Přeskaky,rozc.", + "isMetro": false, + "latitude": 13.418404, + "longitude": 50.332405, + "stopId": "U32379" + }, + { + "id": "U3237Z1", + "name": "Jizbická", + "isMetro": false, + "latitude": 14.622798, + "longitude": 50.110165, + "stopId": "U3237" + }, + { + "id": "U32380Z1", + "name": "Chbany,Vadkovice,rozc.", + "isMetro": false, + "latitude": 13.387969, + "longitude": 50.333199, + "stopId": "U32380" + }, + { + "id": "U32380Z2", + "name": "Chbany,Vadkovice,rozc.", + "isMetro": false, + "latitude": 13.38784, + "longitude": 50.333275, + "stopId": "U32380" + }, + { + "id": "U32381Z1", + "name": "Chbany,Malé Krhovice,rozc.", + "isMetro": false, + "latitude": 13.376954, + "longitude": 50.333683, + "stopId": "U32381" + }, + { + "id": "U32381Z2", + "name": "Chbany,Malé Krhovice,rozc.", + "isMetro": false, + "latitude": 13.37676, + "longitude": 50.333752, + "stopId": "U32381" + }, + { + "id": "U3238Z1", + "name": "Nad Dívčími hrady", + "isMetro": false, + "latitude": 14.397961, + "longitude": 50.054626, + "stopId": "U3238" + }, + { + "id": "U3239Z1", + "name": "Dvořákova", + "isMetro": false, + "latitude": 14.437532, + "longitude": 50.14526, + "stopId": "U3239" + }, + { + "id": "U3239Z2", + "name": "Dvořákova", + "isMetro": false, + "latitude": 14.437041, + "longitude": 50.145348, + "stopId": "U3239" + }, + { + "id": "U323Z1", + "name": "Sportovní centrum Kbely", + "isMetro": false, + "latitude": 14.544368, + "longitude": 50.135075, + "stopId": "U323" + }, + { + "id": "U323Z3", + "name": "Sportovní centrum Kbely", + "isMetro": false, + "latitude": 14.544159, + "longitude": 50.134922, + "stopId": "U323" + }, + { + "id": "U3240Z3", + "name": "Kardausova", + "isMetro": false, + "latitude": 14.553082, + "longitude": 50.066574, + "stopId": "U3240" + }, + { + "id": "U3242Z1", + "name": "Na Fabiánce", + "isMetro": false, + "latitude": 14.483596, + "longitude": 50.161343, + "stopId": "U3242" + }, + { + "id": "U3242Z2", + "name": "Na Fabiánce", + "isMetro": false, + "latitude": 14.483461, + "longitude": 50.160873, + "stopId": "U3242" + }, + { + "id": "U3243Z1", + "name": "K Juliáně", + "isMetro": false, + "latitude": 14.301021, + "longitude": 50.117847, + "stopId": "U3243" + }, + { + "id": "U3243Z2", + "name": "K Juliáně", + "isMetro": false, + "latitude": 14.301282, + "longitude": 50.117725, + "stopId": "U3243" + }, + { + "id": "U3245Z1", + "name": "Dopravní hřiště Vypich", + "isMetro": false, + "latitude": 14.343871, + "longitude": 50.081692, + "stopId": "U3245" + }, + { + "id": "U3245Z2", + "name": "Dopravní hřiště Vypich", + "isMetro": false, + "latitude": 14.343954, + "longitude": 50.081745, + "stopId": "U3245" + }, + { + "id": "U3246Z1", + "name": "Tuchoměřice,Ke Kopanině", + "isMetro": false, + "latitude": 14.27355, + "longitude": 50.126255, + "stopId": "U3246" + }, + { + "id": "U3246Z2", + "name": "Tuchoměřice,Ke Kopanině", + "isMetro": false, + "latitude": 14.273889, + "longitude": 50.126003, + "stopId": "U3246" + }, + { + "id": "U3249Z1", + "name": "Valdštejnské náměstí", + "isMetro": false, + "latitude": 14.405113, + "longitude": 50.090294, + "stopId": "U3249" + }, + { + "id": "U324Z1", + "name": "Letenské náměstí", + "isMetro": false, + "latitude": 14.424091, + "longitude": 50.099949, + "stopId": "U324" + }, + { + "id": "U324Z2", + "name": "Letenské náměstí", + "isMetro": false, + "latitude": 14.423119, + "longitude": 50.100002, + "stopId": "U324" + }, + { + "id": "U32501Z301", + "name": "Trnovany", + "isMetro": false, + "latitude": 13.597131, + "longitude": 50.319302, + "stopId": "U32501" + }, + { + "id": "U3250Z1", + "name": "Křenice,K Sibřině", + "isMetro": false, + "latitude": 14.667356, + "longitude": 50.040833, + "stopId": "U3250" + }, + { + "id": "U3250Z2", + "name": "Křenice,K Sibřině", + "isMetro": false, + "latitude": 14.667149, + "longitude": 50.040653, + "stopId": "U3250" + }, + { + "id": "U3251Z1", + "name": "Mnichovo Hradiště,Haškov", + "isMetro": false, + "latitude": 14.970674, + "longitude": 50.511238, + "stopId": "U3251" + }, + { + "id": "U3251Z2", + "name": "Mnichovo Hradiště,Haškov", + "isMetro": false, + "latitude": 14.96954, + "longitude": 50.509514, + "stopId": "U3251" + }, + { + "id": "U3252Z1", + "name": "Mnichovo Hradiště,u nadjezdu", + "isMetro": false, + "latitude": 14.971938, + "longitude": 50.513721, + "stopId": "U3252" + }, + { + "id": "U3252Z2", + "name": "Mnichovo Hradiště,u nadjezdu", + "isMetro": false, + "latitude": 14.971652, + "longitude": 50.51355, + "stopId": "U3252" + }, + { + "id": "U3253Z1", + "name": "Mnichovo Hradiště,nám.", + "isMetro": false, + "latitude": 14.974297, + "longitude": 50.522423, + "stopId": "U3253" + }, + { + "id": "U3253Z2", + "name": "Mnichovo Hradiště,nám.", + "isMetro": false, + "latitude": 14.975034, + "longitude": 50.522373, + "stopId": "U3253" + }, + { + "id": "U32541Z1", + "name": "Žatec,Volyň.Čechů SEPAP", + "isMetro": false, + "latitude": 13.543469, + "longitude": 50.322567, + "stopId": "U32541" + }, + { + "id": "U32541Z2", + "name": "Žatec,Volyň.Čechů SEPAP", + "isMetro": false, + "latitude": 13.543285, + "longitude": 50.322685, + "stopId": "U32541" + }, + { + "id": "U3254Z1", + "name": "Mnichovo Hradiště,zdrav.stř.", + "isMetro": false, + "latitude": 14.973405, + "longitude": 50.520218, + "stopId": "U3254" + }, + { + "id": "U3256Z1", + "name": "Mladá Boleslav,nám.Republiky", + "isMetro": false, + "latitude": 14.917232, + "longitude": 50.411053, + "stopId": "U3256" + }, + { + "id": "U3256Z2", + "name": "Mladá Boleslav,nám.Republiky", + "isMetro": false, + "latitude": 14.916438, + "longitude": 50.411201, + "stopId": "U3256" + }, + { + "id": "U3257Z2", + "name": "Brandýs n.L.-St.Bol.,Školní", + "isMetro": false, + "latitude": 14.677979, + "longitude": 50.19698, + "stopId": "U3257" + }, + { + "id": "U3258Z1", + "name": "Písková Lhota,hl.sil.", + "isMetro": false, + "latitude": 14.886558, + "longitude": 50.375568, + "stopId": "U3258" + }, + { + "id": "U3258Z2", + "name": "Písková Lhota,hl.sil.", + "isMetro": false, + "latitude": 14.886606, + "longitude": 50.375381, + "stopId": "U3258" + }, + { + "id": "U325Z1", + "name": "Rychnovská", + "isMetro": false, + "latitude": 14.514217, + "longitude": 50.135502, + "stopId": "U325" + }, + { + "id": "U325Z2", + "name": "Rychnovská", + "isMetro": false, + "latitude": 14.51385, + "longitude": 50.13475, + "stopId": "U325" + }, + { + "id": "U3261Z1", + "name": "Tuřice", + "isMetro": false, + "latitude": 14.771559, + "longitude": 50.249268, + "stopId": "U3261" + }, + { + "id": "U3261Z2", + "name": "Tuřice", + "isMetro": false, + "latitude": 14.7708, + "longitude": 50.249096, + "stopId": "U3261" + }, + { + "id": "U3262Z1", + "name": "Předměřice n.Jiz.,u kostela", + "isMetro": false, + "latitude": 14.782418, + "longitude": 50.255695, + "stopId": "U3262" + }, + { + "id": "U3262Z2", + "name": "Předměřice n.Jiz.,u kostela", + "isMetro": false, + "latitude": 14.782923, + "longitude": 50.255508, + "stopId": "U3262" + }, + { + "id": "U3262Z5", + "name": "Předměřice n.Jiz.", + "isMetro": false, + "latitude": 14.780171, + "longitude": 50.25436, + "stopId": "U3262" + }, + { + "id": "U3262Z6", + "name": "Předměřice n.Jiz.", + "isMetro": false, + "latitude": 14.779531, + "longitude": 50.253815, + "stopId": "U3262" + }, + { + "id": "U3263Z1", + "name": "Kochánky,Okrouhlík", + "isMetro": false, + "latitude": 14.803451, + "longitude": 50.266685, + "stopId": "U3263" + }, + { + "id": "U3263Z2", + "name": "Kochánky,Okrouhlík", + "isMetro": false, + "latitude": 14.803193, + "longitude": 50.266949, + "stopId": "U3263" + }, + { + "id": "U3264Z1", + "name": "Brodce,škola", + "isMetro": false, + "latitude": 14.867914, + "longitude": 50.333496, + "stopId": "U3264" + }, + { + "id": "U3264Z2", + "name": "Brodce,škola", + "isMetro": false, + "latitude": 14.868109, + "longitude": 50.333488, + "stopId": "U3264" + }, + { + "id": "U3265Z1", + "name": "Strašnov,u dálnice", + "isMetro": false, + "latitude": 14.870768, + "longitude": 50.345261, + "stopId": "U3265" + }, + { + "id": "U3265Z2", + "name": "Strašnov,u dálnice", + "isMetro": false, + "latitude": 14.871017, + "longitude": 50.345089, + "stopId": "U3265" + }, + { + "id": "U3266Z301", + "name": "Štětí", + "isMetro": false, + "latitude": 14.393837, + "longitude": 50.456528, + "stopId": "U3266" + }, + { + "id": "U3267Z1", + "name": "Lužec n.Vlt.", + "isMetro": false, + "latitude": 14.398882, + "longitude": 50.321671, + "stopId": "U3267" + }, + { + "id": "U3267Z2", + "name": "Lužec n.Vlt.", + "isMetro": false, + "latitude": 14.399234, + "longitude": 50.321568, + "stopId": "U3267" + }, + { + "id": "U3268Z1", + "name": "Stašov", + "isMetro": false, + "latitude": 13.957005, + "longitude": 49.883907, + "stopId": "U3268" + }, + { + "id": "U3268Z2", + "name": "Stašov", + "isMetro": false, + "latitude": 13.956685, + "longitude": 49.883896, + "stopId": "U3268" + }, + { + "id": "U3268Z301", + "name": "Stašov", + "isMetro": false, + "latitude": 13.95873, + "longitude": 49.885612, + "stopId": "U3268" + }, + { + "id": "U3269Z301", + "name": "Praskolesy", + "isMetro": false, + "latitude": 13.929346, + "longitude": 49.868771, + "stopId": "U3269" + }, + { + "id": "U326Z1", + "name": "Staré Letňany", + "isMetro": false, + "latitude": 14.517056, + "longitude": 50.137966, + "stopId": "U326" + }, + { + "id": "U326Z2", + "name": "Staré Letňany", + "isMetro": false, + "latitude": 14.516801, + "longitude": 50.137817, + "stopId": "U326" + }, + { + "id": "U3270Z1", + "name": "Hořovice,žel.st.", + "isMetro": false, + "latitude": 13.898614, + "longitude": 49.842522, + "stopId": "U3270" + }, + { + "id": "U3270Z2", + "name": "Hořovice,žel.st.", + "isMetro": false, + "latitude": 13.899082, + "longitude": 49.842731, + "stopId": "U3270" + }, + { + "id": "U3270Z3", + "name": "Hořovice,žel.st.", + "isMetro": false, + "latitude": 13.899372, + "longitude": 49.842815, + "stopId": "U3270" + }, + { + "id": "U3270Z301", + "name": "Hořovice", + "isMetro": false, + "latitude": 13.899038, + "longitude": 49.843307, + "stopId": "U3270" + }, + { + "id": "U3271Z1", + "name": "Hýskov,Prefa", + "isMetro": false, + "latitude": 14.048648, + "longitude": 49.987858, + "stopId": "U3271" + }, + { + "id": "U3271Z2", + "name": "Hýskov,Prefa", + "isMetro": false, + "latitude": 14.049248, + "longitude": 49.987606, + "stopId": "U3271" + }, + { + "id": "U3271Z301", + "name": "Hýskov", + "isMetro": false, + "latitude": 14.044634, + "longitude": 49.988876, + "stopId": "U3271" + }, + { + "id": "U3272Z1", + "name": "Nižbor,odb.žel.st.", + "isMetro": false, + "latitude": 14.00321, + "longitude": 50.002327, + "stopId": "U3272" + }, + { + "id": "U3272Z2", + "name": "Nižbor,odb.žel.st.", + "isMetro": false, + "latitude": 14.002586, + "longitude": 50.002796, + "stopId": "U3272" + }, + { + "id": "U3272Z301", + "name": "Nižbor", + "isMetro": false, + "latitude": 13.998436, + "longitude": 50.003342, + "stopId": "U3272" + }, + { + "id": "U3273Z301", + "name": "Žloukovice", + "isMetro": false, + "latitude": 13.955886, + "longitude": 50.016018, + "stopId": "U3273" + }, + { + "id": "U3274Z301", + "name": "Račice nad Berounkou", + "isMetro": false, + "latitude": 13.923375, + "longitude": 50.024822, + "stopId": "U3274" + }, + { + "id": "U3275Z301", + "name": "Zbečno", + "isMetro": false, + "latitude": 13.918208, + "longitude": 50.03577, + "stopId": "U3275" + }, + { + "id": "U3276Z301", + "name": "Újezd nad Zbečnem", + "isMetro": false, + "latitude": 13.892504, + "longitude": 50.045601, + "stopId": "U3276" + }, + { + "id": "U3277Z301", + "name": "Roztoky u Křivoklátu", + "isMetro": false, + "latitude": 13.874018, + "longitude": 50.023571, + "stopId": "U3277" + }, + { + "id": "U3278Z1", + "name": "Křivoklát,žel.zast.", + "isMetro": false, + "latitude": 13.870579, + "longitude": 50.036747, + "stopId": "U3278" + }, + { + "id": "U3278Z3", + "name": "Křivoklát,žel.zast.", + "isMetro": false, + "latitude": 13.870502, + "longitude": 50.036858, + "stopId": "U3278" + }, + { + "id": "U3278Z301", + "name": "Křivoklát", + "isMetro": false, + "latitude": 13.8688, + "longitude": 50.03825, + "stopId": "U3278" + }, + { + "id": "U3279Z301", + "name": "Městečko u Křivoklátu", + "isMetro": false, + "latitude": 13.857198, + "longitude": 50.050224, + "stopId": "U3279" + }, + { + "id": "U327Z1", + "name": "Toužimská", + "isMetro": false, + "latitude": 14.522401, + "longitude": 50.136353, + "stopId": "U327" + }, + { + "id": "U327Z2", + "name": "Toužimská", + "isMetro": false, + "latitude": 14.52302, + "longitude": 50.136204, + "stopId": "U327" + }, + { + "id": "U3280Z301", + "name": "Pustověty", + "isMetro": false, + "latitude": 13.816961, + "longitude": 50.055035, + "stopId": "U3280" + }, + { + "id": "U3281Z301", + "name": "Lašovice", + "isMetro": false, + "latitude": 13.799917, + "longitude": 50.065456, + "stopId": "U3281" + }, + { + "id": "U3282Z301", + "name": "Chlum u Rakovníka", + "isMetro": false, + "latitude": 13.777324, + "longitude": 50.076134, + "stopId": "U3282" + }, + { + "id": "U3284Z1", + "name": "Jince,Rejkovice,žel.st.", + "isMetro": false, + "latitude": 13.969154, + "longitude": 49.807709, + "stopId": "U3284" + }, + { + "id": "U3284Z2", + "name": "Jince,Rejkovice,žel.st.", + "isMetro": false, + "latitude": 13.969111, + "longitude": 49.808708, + "stopId": "U3284" + }, + { + "id": "U3284Z401", + "name": "Jince,Rejkovice,žel.st.", + "isMetro": false, + "latitude": 13.969154, + "longitude": 49.807709, + "stopId": "U3284" + }, + { + "id": "U3284Z402", + "name": "Jince,Rejkovice,žel.st.", + "isMetro": false, + "latitude": 13.969111, + "longitude": 49.808708, + "stopId": "U3284" + }, + { + "id": "U3285Z1", + "name": "Jince,Žel.st.", + "isMetro": false, + "latitude": 13.985622, + "longitude": 49.781818, + "stopId": "U3285" + }, + { + "id": "U3285Z2", + "name": "Jince,Žel.st.", + "isMetro": false, + "latitude": 13.985666, + "longitude": 49.781712, + "stopId": "U3285" + }, + { + "id": "U3285Z401", + "name": "Jince,Žel.st.", + "isMetro": false, + "latitude": 13.985622, + "longitude": 49.781818, + "stopId": "U3285" + }, + { + "id": "U3285Z402", + "name": "Jince,Žel.st.", + "isMetro": false, + "latitude": 13.985666, + "longitude": 49.781712, + "stopId": "U3285" + }, + { + "id": "U3287Z1", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.002927, + "longitude": 49.69025, + "stopId": "U3287" + }, + { + "id": "U3287Z10", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003551, + "longitude": 49.689571, + "stopId": "U3287" + }, + { + "id": "U3287Z11", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.00361, + "longitude": 49.689411, + "stopId": "U3287" + }, + { + "id": "U3287Z12", + "name": "Příbram,aut.nádr. (ul. Čs.armády)", + "isMetro": false, + "latitude": 14.003858, + "longitude": 49.69017, + "stopId": "U3287" + }, + { + "id": "U3287Z13", + "name": "Příbram,aut.nádr. (ul. Čs.armády)", + "isMetro": false, + "latitude": 14.003255, + "longitude": 49.691162, + "stopId": "U3287" + }, + { + "id": "U3287Z2", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.00297, + "longitude": 49.690197, + "stopId": "U3287" + }, + { + "id": "U3287Z3", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003026, + "longitude": 49.690136, + "stopId": "U3287" + }, + { + "id": "U3287Z414", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003575, + "longitude": 49.68906, + "stopId": "U3287" + }, + { + "id": "U3287Z5", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003197, + "longitude": 49.689938, + "stopId": "U3287" + }, + { + "id": "U3287Z6", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003282, + "longitude": 49.68985, + "stopId": "U3287" + }, + { + "id": "U3287Z7", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003408, + "longitude": 49.689762, + "stopId": "U3287" + }, + { + "id": "U3287Z8", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003451, + "longitude": 49.689682, + "stopId": "U3287" + }, + { + "id": "U3287Z9", + "name": "Příbram,aut.nádr.", + "isMetro": false, + "latitude": 14.003522, + "longitude": 49.689617, + "stopId": "U3287" + }, + { + "id": "U328Z1", + "name": "Lhotecký les", + "isMetro": false, + "latitude": 14.437184, + "longitude": 50.015602, + "stopId": "U328" + }, + { + "id": "U328Z2", + "name": "Lhotecký les", + "isMetro": false, + "latitude": 14.437334, + "longitude": 50.015701, + "stopId": "U328" + }, + { + "id": "U3290Z1", + "name": "Tochovice,žel.st.", + "isMetro": false, + "latitude": 13.985114, + "longitude": 49.589054, + "stopId": "U3290" + }, + { + "id": "U3290Z2", + "name": "Tochovice,žel.st.", + "isMetro": false, + "latitude": 13.985237, + "longitude": 49.589096, + "stopId": "U3290" + }, + { + "id": "U3291Z301", + "name": "Březnice", + "isMetro": false, + "latitude": 13.963954, + "longitude": 49.55846, + "stopId": "U3291" + }, + { + "id": "U3291Z451", + "name": "Březnice,žel.st.", + "isMetro": false, + "latitude": 13.963402, + "longitude": 49.558445, + "stopId": "U3291" + }, + { + "id": "U3292Z1", + "name": "Jesenice,Zdiměřice,Canadian School", + "isMetro": false, + "latitude": 14.536045, + "longitude": 49.974915, + "stopId": "U3292" + }, + { + "id": "U3292Z2", + "name": "Jesenice,Zdiměřice,Canadian School", + "isMetro": false, + "latitude": 14.536225, + "longitude": 49.975014, + "stopId": "U3292" + }, + { + "id": "U3295Z1", + "name": "Březí,V Jezírku", + "isMetro": false, + "latitude": 14.695292, + "longitude": 50.014103, + "stopId": "U3295" + }, + { + "id": "U3296Z1", + "name": "Poliklinika Lípa", + "isMetro": false, + "latitude": 14.346224, + "longitude": 50.051266, + "stopId": "U3296" + }, + { + "id": "U3296Z2", + "name": "Poliklinika Lípa", + "isMetro": false, + "latitude": 14.347021, + "longitude": 50.051205, + "stopId": "U3296" + }, + { + "id": "U3297Z1", + "name": "Lhota,Na Skalce", + "isMetro": false, + "latitude": 14.012216, + "longitude": 50.087315, + "stopId": "U3297" + }, + { + "id": "U3297Z2", + "name": "Lhota,Na Skalce", + "isMetro": false, + "latitude": 14.01211, + "longitude": 50.087238, + "stopId": "U3297" + }, + { + "id": "U3298Z1", + "name": "Za Mototechnou", + "isMetro": false, + "latitude": 14.328156, + "longitude": 50.059013, + "stopId": "U3298" + }, + { + "id": "U3298Z2", + "name": "Za Mototechnou", + "isMetro": false, + "latitude": 14.328054, + "longitude": 50.05891, + "stopId": "U3298" + }, + { + "id": "U3299Z1", + "name": "Ordovická", + "isMetro": false, + "latitude": 14.332113, + "longitude": 50.06004, + "stopId": "U3299" + }, + { + "id": "U3299Z2", + "name": "Ordovická", + "isMetro": false, + "latitude": 14.332321, + "longitude": 50.05994, + "stopId": "U3299" + }, + { + "id": "U329Z1", + "name": "Lhotka", + "isMetro": false, + "latitude": 14.438352, + "longitude": 50.021046, + "stopId": "U329" + }, + { + "id": "U329Z2", + "name": "Lhotka", + "isMetro": false, + "latitude": 14.438322, + "longitude": 50.02079, + "stopId": "U329" + }, + { + "id": "U32Z1", + "name": "Bílá labuť", + "isMetro": false, + "latitude": 14.435472, + "longitude": 50.090168, + "stopId": "U32" + }, + { + "id": "U32Z2", + "name": "Bílá labuť", + "isMetro": false, + "latitude": 14.436262, + "longitude": 50.090351, + "stopId": "U32" + }, + { + "id": "U3301Z1", + "name": "Mníšek p.Brdy,Hladový Vrch", + "isMetro": false, + "latitude": 14.274875, + "longitude": 49.864933, + "stopId": "U3301" + }, + { + "id": "U3301Z2", + "name": "Mníšek p.Brdy,Hladový Vrch", + "isMetro": false, + "latitude": 14.274896, + "longitude": 49.865356, + "stopId": "U3301" + }, + { + "id": "U3303Z1", + "name": "Neveklov", + "isMetro": false, + "latitude": 14.533835, + "longitude": 49.753036, + "stopId": "U3303" + }, + { + "id": "U3303Z2", + "name": "Neveklov", + "isMetro": false, + "latitude": 14.533823, + "longitude": 49.752899, + "stopId": "U3303" + }, + { + "id": "U3304Z1", + "name": "Netvořice,Všetice", + "isMetro": false, + "latitude": 14.513393, + "longitude": 49.789272, + "stopId": "U3304" + }, + { + "id": "U3304Z2", + "name": "Netvořice,Všetice", + "isMetro": false, + "latitude": 14.513327, + "longitude": 49.789013, + "stopId": "U3304" + }, + { + "id": "U3305Z2", + "name": "Lešany", + "isMetro": false, + "latitude": 14.52386, + "longitude": 49.844952, + "stopId": "U3305" + }, + { + "id": "U3308Z1", + "name": "Neratovice,Byškovická", + "isMetro": false, + "latitude": 14.49688, + "longitude": 50.25563, + "stopId": "U3308" + }, + { + "id": "U3308Z2", + "name": "Neratovice,Byškovická", + "isMetro": false, + "latitude": 14.49649, + "longitude": 50.255608, + "stopId": "U3308" + }, + { + "id": "U330Z1", + "name": "Libeňská", + "isMetro": false, + "latitude": 14.43015, + "longitude": 50.1366, + "stopId": "U330" + }, + { + "id": "U330Z2", + "name": "Libeňská", + "isMetro": false, + "latitude": 14.429934, + "longitude": 50.137718, + "stopId": "U330" + }, + { + "id": "U3310Z1", + "name": "Neratovice,Dům kultury", + "isMetro": false, + "latitude": 14.51513, + "longitude": 50.25872, + "stopId": "U3310" + }, + { + "id": "U3310Z2", + "name": "Neratovice,Dům kultury", + "isMetro": false, + "latitude": 14.514091, + "longitude": 50.259087, + "stopId": "U3310" + }, + { + "id": "U3311Z1", + "name": "Libiš,U Slávisty", + "isMetro": false, + "latitude": 14.50713, + "longitude": 50.2682, + "stopId": "U3311" + }, + { + "id": "U3311Z2", + "name": "Libiš,U Slávisty", + "isMetro": false, + "latitude": 14.50648, + "longitude": 50.269108, + "stopId": "U3311" + }, + { + "id": "U3314Z1", + "name": "Mělník,Vehlovice", + "isMetro": false, + "latitude": 14.46301, + "longitude": 50.3923, + "stopId": "U3314" + }, + { + "id": "U3314Z2", + "name": "Mělník,Vehlovice", + "isMetro": false, + "latitude": 14.46295, + "longitude": 50.39212, + "stopId": "U3314" + }, + { + "id": "U3315Z1", + "name": "Liběchov,Malý Liběchov", + "isMetro": false, + "latitude": 14.450109, + "longitude": 50.403179, + "stopId": "U3315" + }, + { + "id": "U3315Z2", + "name": "Liběchov,Malý Liběchov", + "isMetro": false, + "latitude": 14.450089, + "longitude": 50.403049, + "stopId": "U3315" + }, + { + "id": "U3316Z1", + "name": "Liběchov", + "isMetro": false, + "latitude": 14.446819, + "longitude": 50.40839, + "stopId": "U3316" + }, + { + "id": "U3316Z2", + "name": "Liběchov", + "isMetro": false, + "latitude": 14.44668, + "longitude": 50.408089, + "stopId": "U3316" + }, + { + "id": "U3316Z3", + "name": "Liběchov", + "isMetro": false, + "latitude": 14.447176, + "longitude": 50.407856, + "stopId": "U3316" + }, + { + "id": "U3316Z4", + "name": "Liběchov", + "isMetro": false, + "latitude": 14.447229, + "longitude": 50.407974, + "stopId": "U3316" + }, + { + "id": "U3317Z1", + "name": "Liběchov,Žel.st.", + "isMetro": false, + "latitude": 14.44042, + "longitude": 50.412529, + "stopId": "U3317" + }, + { + "id": "U3317Z2", + "name": "Liběchov,Žel.st.", + "isMetro": false, + "latitude": 14.44038, + "longitude": 50.412449, + "stopId": "U3317" + }, + { + "id": "U3317Z301", + "name": "Liběchov", + "isMetro": false, + "latitude": 14.435691, + "longitude": 50.414482, + "stopId": "U3317" + }, + { + "id": "U331Z1", + "name": "Libeňský most", + "isMetro": false, + "latitude": 14.463806, + "longitude": 50.103428, + "stopId": "U331" + }, + { + "id": "U331Z2", + "name": "Libeňský most", + "isMetro": false, + "latitude": 14.464249, + "longitude": 50.103378, + "stopId": "U331" + }, + { + "id": "U331Z51", + "name": "Libeňský most", + "isMetro": false, + "latitude": 14.46466, + "longitude": 50.10358, + "stopId": "U331" + }, + { + "id": "U331Z52", + "name": "Libeňský most", + "isMetro": false, + "latitude": 14.464805, + "longitude": 50.103233, + "stopId": "U331" + }, + { + "id": "U3320Z1", + "name": "Liběchov,Ješovice,Rozc.", + "isMetro": false, + "latitude": 14.414989, + "longitude": 50.428898, + "stopId": "U3320" + }, + { + "id": "U3320Z2", + "name": "Liběchov,Ješovice,Rozc.", + "isMetro": false, + "latitude": 14.4151, + "longitude": 50.428711, + "stopId": "U3320" + }, + { + "id": "U3321Z1", + "name": "Štětí,Počeplice", + "isMetro": false, + "latitude": 14.39515, + "longitude": 50.43166, + "stopId": "U3321" + }, + { + "id": "U3321Z2", + "name": "Štětí,Počeplice", + "isMetro": false, + "latitude": 14.39535, + "longitude": 50.431488, + "stopId": "U3321" + }, + { + "id": "U3322Z1", + "name": "Štětí,sídliště", + "isMetro": false, + "latitude": 14.37965, + "longitude": 50.449711, + "stopId": "U3322" + }, + { + "id": "U3322Z2", + "name": "Štětí,sídliště", + "isMetro": false, + "latitude": 14.37947, + "longitude": 50.44976, + "stopId": "U3322" + }, + { + "id": "U3323Z1", + "name": "Štětí,hotelový dům", + "isMetro": false, + "latitude": 14.382669, + "longitude": 50.456169, + "stopId": "U3323" + }, + { + "id": "U3323Z2", + "name": "Štětí,hotelový dům", + "isMetro": false, + "latitude": 14.38272, + "longitude": 50.45602, + "stopId": "U3323" + }, + { + "id": "U3324Z3", + "name": "Štětí,Cihelná", + "isMetro": false, + "latitude": 14.370598, + "longitude": 50.455696, + "stopId": "U3324" + }, + { + "id": "U3324Z4", + "name": "Štětí,Cihelná", + "isMetro": false, + "latitude": 14.370894, + "longitude": 50.455627, + "stopId": "U3324" + }, + { + "id": "U3325Z301", + "name": "Velký Borek", + "isMetro": false, + "latitude": 14.515494, + "longitude": 50.346714, + "stopId": "U3325" + }, + { + "id": "U3326Z3", + "name": "Velký Borek,Skuhrov", + "isMetro": false, + "latitude": 14.512223, + "longitude": 50.3391, + "stopId": "U3326" + }, + { + "id": "U3326Z4", + "name": "Velký Borek,Skuhrov", + "isMetro": false, + "latitude": 14.51232, + "longitude": 50.339279, + "stopId": "U3326" + }, + { + "id": "U3327Z1", + "name": "Mělník,Mladoboleslavská", + "isMetro": false, + "latitude": 14.507219, + "longitude": 50.3409, + "stopId": "U3327" + }, + { + "id": "U3328Z1", + "name": "Mělník,Rousovice", + "isMetro": false, + "latitude": 14.50101, + "longitude": 50.343159, + "stopId": "U3328" + }, + { + "id": "U3328Z2", + "name": "Mělník,Rousovice", + "isMetro": false, + "latitude": 14.50078, + "longitude": 50.3433, + "stopId": "U3328" + }, + { + "id": "U332Z1", + "name": "Střížkov", + "isMetro": false, + "latitude": 14.488887, + "longitude": 50.125977, + "stopId": "U332" + }, + { + "id": "U332Z101", + "name": "Střížkov", + "isMetro": true, + "latitude": 14.48947, + "longitude": 50.12615, + "stopId": "U332" + }, + { + "id": "U332Z102", + "name": "Střížkov", + "isMetro": true, + "latitude": 14.489546, + "longitude": 50.126178, + "stopId": "U332" + }, + { + "id": "U332Z2", + "name": "Střížkov", + "isMetro": false, + "latitude": 14.489599, + "longitude": 50.125862, + "stopId": "U332" + }, + { + "id": "U332Z3", + "name": "Střížkov", + "isMetro": false, + "latitude": 14.489246, + "longitude": 50.126923, + "stopId": "U332" + }, + { + "id": "U332Z4", + "name": "Střížkov", + "isMetro": false, + "latitude": 14.488644, + "longitude": 50.126968, + "stopId": "U332" + }, + { + "id": "U3330Z1", + "name": "Mělník,Slovany", + "isMetro": false, + "latitude": 14.49395, + "longitude": 50.341961, + "stopId": "U3330" + }, + { + "id": "U3330Z2", + "name": "Mělník,Slovany", + "isMetro": false, + "latitude": 14.494628, + "longitude": 50.34256, + "stopId": "U3330" + }, + { + "id": "U3335Z1", + "name": "Mělník,Poliklinika", + "isMetro": false, + "latitude": 14.48458, + "longitude": 50.346359, + "stopId": "U3335" + }, + { + "id": "U3335Z2", + "name": "Mělník,Poliklinika", + "isMetro": false, + "latitude": 14.483009, + "longitude": 50.347599, + "stopId": "U3335" + }, + { + "id": "U3336Z1", + "name": "Mělník,Fibichova", + "isMetro": false, + "latitude": 14.478911, + "longitude": 50.350666, + "stopId": "U3336" + }, + { + "id": "U3336Z2", + "name": "Mělník,Fibichova", + "isMetro": false, + "latitude": 14.478672, + "longitude": 50.350414, + "stopId": "U3336" + }, + { + "id": "U3337Z1", + "name": "Mělník,Tyršova", + "isMetro": false, + "latitude": 14.47431, + "longitude": 50.353729, + "stopId": "U3337" + }, + { + "id": "U3338Z1", + "name": "Mělník,Zádušní", + "isMetro": false, + "latitude": 14.471519, + "longitude": 50.357738, + "stopId": "U3338" + }, + { + "id": "U3338Z2", + "name": "Mělník,Zádušní", + "isMetro": false, + "latitude": 14.4713, + "longitude": 50.357929, + "stopId": "U3338" + }, + { + "id": "U333Z1", + "name": "Líbeznická", + "isMetro": false, + "latitude": 14.455213, + "longitude": 50.129288, + "stopId": "U333" + }, + { + "id": "U333Z2", + "name": "Líbeznická", + "isMetro": false, + "latitude": 14.455501, + "longitude": 50.129101, + "stopId": "U333" + }, + { + "id": "U3341Z1", + "name": "Mělník,Blata", + "isMetro": false, + "latitude": 14.49381, + "longitude": 50.3498, + "stopId": "U3341" + }, + { + "id": "U3341Z2", + "name": "Mělník,Blata", + "isMetro": false, + "latitude": 14.494599, + "longitude": 50.350689, + "stopId": "U3341" + }, + { + "id": "U3342Z1", + "name": "Mělník,silo", + "isMetro": false, + "latitude": 14.496956, + "longitude": 50.352833, + "stopId": "U3342" + }, + { + "id": "U3342Z2", + "name": "Mělník,silo", + "isMetro": false, + "latitude": 14.4981, + "longitude": 50.354084, + "stopId": "U3342" + }, + { + "id": "U3343Z1", + "name": "Mělník,Neuberk", + "isMetro": false, + "latitude": 14.49477, + "longitude": 50.357048, + "stopId": "U3343" + }, + { + "id": "U3343Z2", + "name": "Mělník,Neuberk", + "isMetro": false, + "latitude": 14.49533, + "longitude": 50.356758, + "stopId": "U3343" + }, + { + "id": "U3344Z1", + "name": "Mělník,Dobrovského", + "isMetro": false, + "latitude": 14.48693, + "longitude": 50.359051, + "stopId": "U3344" + }, + { + "id": "U3344Z2", + "name": "Mělník,Dobrovského", + "isMetro": false, + "latitude": 14.487, + "longitude": 50.358959, + "stopId": "U3344" + }, + { + "id": "U3345Z1", + "name": "Mělník,samoty", + "isMetro": false, + "latitude": 14.491529, + "longitude": 50.363869, + "stopId": "U3345" + }, + { + "id": "U3345Z2", + "name": "Mělník,samoty", + "isMetro": false, + "latitude": 14.49119, + "longitude": 50.363659, + "stopId": "U3345" + }, + { + "id": "U3346Z1", + "name": "Mělník,Chloumecká", + "isMetro": false, + "latitude": 14.498137, + "longitude": 50.371433, + "stopId": "U3346" + }, + { + "id": "U3346Z2", + "name": "Mělník,Chloumecká", + "isMetro": false, + "latitude": 14.499286, + "longitude": 50.372715, + "stopId": "U3346" + }, + { + "id": "U3347Z1", + "name": "Mělník,Chloumek", + "isMetro": false, + "latitude": 14.5019, + "longitude": 50.37418, + "stopId": "U3347" + }, + { + "id": "U3347Z2", + "name": "Mělník,Chloumek", + "isMetro": false, + "latitude": 14.50128, + "longitude": 50.374168, + "stopId": "U3347" + }, + { + "id": "U3348Z1", + "name": "Mělník,Lesní", + "isMetro": false, + "latitude": 14.50628, + "longitude": 50.373581, + "stopId": "U3348" + }, + { + "id": "U3348Z2", + "name": "Mělník,Lesní", + "isMetro": false, + "latitude": 14.50663, + "longitude": 50.373688, + "stopId": "U3348" + }, + { + "id": "U3349Z1", + "name": "Mělník,Kokořínská", + "isMetro": false, + "latitude": 14.512549, + "longitude": 50.37252, + "stopId": "U3349" + }, + { + "id": "U3349Z2", + "name": "Mělník,Kokořínská", + "isMetro": false, + "latitude": 14.51295, + "longitude": 50.372589, + "stopId": "U3349" + }, + { + "id": "U334Z1", + "name": "Libocká", + "isMetro": false, + "latitude": 14.329507, + "longitude": 50.086967, + "stopId": "U334" + }, + { + "id": "U334Z2", + "name": "Libocká", + "isMetro": false, + "latitude": 14.328985, + "longitude": 50.086555, + "stopId": "U334" + }, + { + "id": "U3350Z1", + "name": "Mělník,MŠ Chloumek", + "isMetro": false, + "latitude": 14.50965, + "longitude": 50.369061, + "stopId": "U3350" + }, + { + "id": "U3351Z1", + "name": "Mělník,Rybáře", + "isMetro": false, + "latitude": 14.469769, + "longitude": 50.353119, + "stopId": "U3351" + }, + { + "id": "U3351Z2", + "name": "Mělník,Rybáře", + "isMetro": false, + "latitude": 14.47018, + "longitude": 50.35289, + "stopId": "U3351" + }, + { + "id": "U3355Z1", + "name": "Nupaky,školka", + "isMetro": false, + "latitude": 14.606361, + "longitude": 49.992107, + "stopId": "U3355" + }, + { + "id": "U3355Z2", + "name": "Nupaky,školka", + "isMetro": false, + "latitude": 14.60615, + "longitude": 49.992363, + "stopId": "U3355" + }, + { + "id": "U3356Z1", + "name": "Brandýs n.L.-St.Bol.,Brázdimská", + "isMetro": false, + "latitude": 14.649252, + "longitude": 50.187954, + "stopId": "U3356" + }, + { + "id": "U3356Z2", + "name": "Brandýs n.L.-St.Bol.,Brázdimská", + "isMetro": false, + "latitude": 14.648424, + "longitude": 50.188068, + "stopId": "U3356" + }, + { + "id": "U3357Z1", + "name": "Dubenec", + "isMetro": false, + "latitude": 14.079309, + "longitude": 49.695198, + "stopId": "U3357" + }, + { + "id": "U3357Z2", + "name": "Dubenec", + "isMetro": false, + "latitude": 14.080702, + "longitude": 49.696297, + "stopId": "U3357" + }, + { + "id": "U3358Z1", + "name": "Žilina", + "isMetro": false, + "latitude": 14.006107, + "longitude": 50.101006, + "stopId": "U3358" + }, + { + "id": "U3358Z2", + "name": "Žilina", + "isMetro": false, + "latitude": 14.005979, + "longitude": 50.100929, + "stopId": "U3358" + }, + { + "id": "U335Z1", + "name": "Stará Libuš", + "isMetro": false, + "latitude": 14.463, + "longitude": 50.007866, + "stopId": "U335" + }, + { + "id": "U335Z2", + "name": "Stará Libuš", + "isMetro": false, + "latitude": 14.46275, + "longitude": 50.008335, + "stopId": "U335" + }, + { + "id": "U3362Z1", + "name": "Hředle", + "isMetro": false, + "latitude": 13.747423, + "longitude": 50.18784, + "stopId": "U3362" + }, + { + "id": "U3362Z2", + "name": "Hředle", + "isMetro": false, + "latitude": 13.747755, + "longitude": 50.188023, + "stopId": "U3362" + }, + { + "id": "U3366Z1", + "name": "Třeboc", + "isMetro": false, + "latitude": 13.750999, + "longitude": 50.214935, + "stopId": "U3366" + }, + { + "id": "U3368Z1", + "name": "Ročov,Třebocká", + "isMetro": false, + "latitude": 13.768597, + "longitude": 50.250202, + "stopId": "U3368" + }, + { + "id": "U3368Z2", + "name": "Ročov,Třebocká", + "isMetro": false, + "latitude": 13.768216, + "longitude": 50.249989, + "stopId": "U3368" + }, + { + "id": "U3369Z1", + "name": "Ročov", + "isMetro": false, + "latitude": 13.772783, + "longitude": 50.25227, + "stopId": "U3369" + }, + { + "id": "U3369Z2", + "name": "Ročov", + "isMetro": false, + "latitude": 13.772969, + "longitude": 50.252277, + "stopId": "U3369" + }, + { + "id": "U336Z1", + "name": "Nové náměstí", + "isMetro": false, + "latitude": 14.599351, + "longitude": 50.031101, + "stopId": "U336" + }, + { + "id": "U336Z2", + "name": "Nové náměstí", + "isMetro": false, + "latitude": 14.598132, + "longitude": 50.032143, + "stopId": "U336" + }, + { + "id": "U336Z3", + "name": "Nové náměstí", + "isMetro": false, + "latitude": 14.597283, + "longitude": 50.032551, + "stopId": "U336" + }, + { + "id": "U336Z4", + "name": "Nové náměstí", + "isMetro": false, + "latitude": 14.597264, + "longitude": 50.03093, + "stopId": "U336" + }, + { + "id": "U3370Z1", + "name": "Doksy,rozcestí", + "isMetro": false, + "latitude": 14.042719, + "longitude": 50.129807, + "stopId": "U3370" + }, + { + "id": "U3370Z2", + "name": "Doksy,rozcestí", + "isMetro": false, + "latitude": 14.042472, + "longitude": 50.12981, + "stopId": "U3370" + }, + { + "id": "U3370Z3", + "name": "Doksy,rozcestí", + "isMetro": false, + "latitude": 14.041936, + "longitude": 50.130203, + "stopId": "U3370" + }, + { + "id": "U3371Z1", + "name": "Mutějovice,Na Příči", + "isMetro": false, + "latitude": 13.709487, + "longitude": 50.196491, + "stopId": "U3371" + }, + { + "id": "U3372Z1", + "name": "Mutějovice", + "isMetro": false, + "latitude": 13.708065, + "longitude": 50.193958, + "stopId": "U3372" + }, + { + "id": "U3379Z2", + "name": "Benátky n.Jiz.,aut.st.", + "isMetro": false, + "latitude": 14.827858, + "longitude": 50.285542, + "stopId": "U3379" + }, + { + "id": "U3379Z3", + "name": "Benátky n.Jiz.,aut.st.", + "isMetro": false, + "latitude": 14.827569, + "longitude": 50.285686, + "stopId": "U3379" + }, + { + "id": "U3379Z4", + "name": "Benátky n.Jiz.,aut.st.", + "isMetro": false, + "latitude": 14.827638, + "longitude": 50.285915, + "stopId": "U3379" + }, + { + "id": "U3379Z5", + "name": "Benátky n.Jiz.,aut.st.", + "isMetro": false, + "latitude": 14.827789, + "longitude": 50.285877, + "stopId": "U3379" + }, + { + "id": "U3379Z6", + "name": "Benátky n.Jiz.,aut.st.", + "isMetro": false, + "latitude": 14.82794, + "longitude": 50.285851, + "stopId": "U3379" + }, + { + "id": "U3379Z7", + "name": "Benátky n.Jiz.,aut.st.", + "isMetro": false, + "latitude": 14.828059, + "longitude": 50.285805, + "stopId": "U3379" + }, + { + "id": "U337Z1", + "name": "Lihovar", + "isMetro": false, + "latitude": 14.409225, + "longitude": 50.05143, + "stopId": "U337" + }, + { + "id": "U337Z11", + "name": "Lihovar", + "isMetro": false, + "latitude": 14.410836, + "longitude": 50.048653, + "stopId": "U337" + }, + { + "id": "U337Z2", + "name": "Lihovar", + "isMetro": false, + "latitude": 14.409142, + "longitude": 50.051277, + "stopId": "U337" + }, + { + "id": "U337Z3", + "name": "Lihovar", + "isMetro": false, + "latitude": 14.410136, + "longitude": 50.050285, + "stopId": "U337" + }, + { + "id": "U337Z4", + "name": "Lihovar", + "isMetro": false, + "latitude": 14.41076, + "longitude": 50.051365, + "stopId": "U337" + }, + { + "id": "U3380Z1", + "name": "Benátky n.Jiz.,Kbel", + "isMetro": false, + "latitude": 14.844866, + "longitude": 50.291752, + "stopId": "U3380" + }, + { + "id": "U3380Z2", + "name": "Benátky n.Jiz.,Kbel", + "isMetro": false, + "latitude": 14.844459, + "longitude": 50.291752, + "stopId": "U3380" + }, + { + "id": "U3381Z1", + "name": "Benátky n.Jiz.,Ovčín", + "isMetro": false, + "latitude": 14.853993, + "longitude": 50.308182, + "stopId": "U3381" + }, + { + "id": "U3381Z2", + "name": "Benátky n.Jiz.,Ovčín", + "isMetro": false, + "latitude": 14.853712, + "longitude": 50.308342, + "stopId": "U3381" + }, + { + "id": "U3383Z1", + "name": "Brodce,sokolovna", + "isMetro": false, + "latitude": 14.865757, + "longitude": 50.328003, + "stopId": "U3383" + }, + { + "id": "U3383Z2", + "name": "Brodce,sokolovna", + "isMetro": false, + "latitude": 14.865938, + "longitude": 50.327953, + "stopId": "U3383" + }, + { + "id": "U3384Z1", + "name": "Písková Lhota", + "isMetro": false, + "latitude": 14.876812, + "longitude": 50.36554, + "stopId": "U3384" + }, + { + "id": "U3384Z2", + "name": "Písková Lhota", + "isMetro": false, + "latitude": 14.876828, + "longitude": 50.365246, + "stopId": "U3384" + }, + { + "id": "U3385Z51", + "name": "Mladá Boleslav,Bezděčín", + "isMetro": false, + "latitude": 14.89715, + "longitude": 50.386261, + "stopId": "U3385" + }, + { + "id": "U3385Z52", + "name": "Mladá Boleslav,Bezděčín", + "isMetro": false, + "latitude": 14.89802, + "longitude": 50.386757, + "stopId": "U3385" + }, + { + "id": "U3386Z1", + "name": "Mladá Boleslav,Na Hejtmánce", + "isMetro": false, + "latitude": 14.903844, + "longitude": 50.401817, + "stopId": "U3386" + }, + { + "id": "U3386Z2", + "name": "Mladá Boleslav,Na Hejtmánce", + "isMetro": false, + "latitude": 14.903613, + "longitude": 50.401638, + "stopId": "U3386" + }, + { + "id": "U3387Z1", + "name": "Mladá Boleslav,Podolec", + "isMetro": false, + "latitude": 14.903363, + "longitude": 50.408508, + "stopId": "U3387" + }, + { + "id": "U3387Z2", + "name": "Mladá Boleslav,Podolec", + "isMetro": false, + "latitude": 14.903275, + "longitude": 50.408688, + "stopId": "U3387" + }, + { + "id": "U3388Z1", + "name": "Mladá Boleslav,Viničná", + "isMetro": false, + "latitude": 14.919611, + "longitude": 50.409847, + "stopId": "U3388" + }, + { + "id": "U3389Z1", + "name": "Mladá Boleslav,U Sportu", + "isMetro": false, + "latitude": 14.909778, + "longitude": 50.412975, + "stopId": "U3389" + }, + { + "id": "U3389Z2", + "name": "Mladá Boleslav,U Sportu", + "isMetro": false, + "latitude": 14.910049, + "longitude": 50.412716, + "stopId": "U3389" + }, + { + "id": "U338Z1", + "name": "Jakobiho", + "isMetro": false, + "latitude": 14.559354, + "longitude": 50.033081, + "stopId": "U338" + }, + { + "id": "U338Z2", + "name": "Jakobiho", + "isMetro": false, + "latitude": 14.559768, + "longitude": 50.033417, + "stopId": "U338" + }, + { + "id": "U3390Z1", + "name": "Lišany,u rybníka", + "isMetro": false, + "latitude": 13.741703, + "longitude": 50.14782, + "stopId": "U3390" + }, + { + "id": "U3390Z2", + "name": "Lišany,u rybníka", + "isMetro": false, + "latitude": 13.742011, + "longitude": 50.147774, + "stopId": "U3390" + }, + { + "id": "U3391Z1", + "name": "Mladá Boleslav,Jaselská VZP", + "isMetro": false, + "latitude": 14.907526, + "longitude": 50.41428, + "stopId": "U3391" + }, + { + "id": "U3391Z2", + "name": "Mladá Boleslav,Jaselská VZP", + "isMetro": false, + "latitude": 14.90704, + "longitude": 50.414295, + "stopId": "U3391" + }, + { + "id": "U3392Z1", + "name": "Mladá Boleslav,Boleslavská", + "isMetro": false, + "latitude": 14.922993, + "longitude": 50.431015, + "stopId": "U3392" + }, + { + "id": "U3392Z2", + "name": "Mladá Boleslav,Boleslavská", + "isMetro": false, + "latitude": 14.922789, + "longitude": 50.431065, + "stopId": "U3392" + }, + { + "id": "U3393Z1", + "name": "Kosmonosy,Transcentrum", + "isMetro": false, + "latitude": 14.92635, + "longitude": 50.433598, + "stopId": "U3393" + }, + { + "id": "U3393Z2", + "name": "Kosmonosy,Transcentrum", + "isMetro": false, + "latitude": 14.926482, + "longitude": 50.433807, + "stopId": "U3393" + }, + { + "id": "U3394Z1", + "name": "Kosmonosy,nám.", + "isMetro": false, + "latitude": 14.928533, + "longitude": 50.439934, + "stopId": "U3394" + }, + { + "id": "U3394Z2", + "name": "Kosmonosy,nám.", + "isMetro": false, + "latitude": 14.92804, + "longitude": 50.43972, + "stopId": "U3394" + }, + { + "id": "U3395Z1", + "name": "Kosmonosy,nemocnice", + "isMetro": false, + "latitude": 14.930937, + "longitude": 50.444878, + "stopId": "U3395" + }, + { + "id": "U3395Z2", + "name": "Kosmonosy,nemocnice", + "isMetro": false, + "latitude": 14.930287, + "longitude": 50.444218, + "stopId": "U3395" + }, + { + "id": "U3396Z1", + "name": "Bakov n.Jiz.,Chudoplesy", + "isMetro": false, + "latitude": 14.930713, + "longitude": 50.457401, + "stopId": "U3396" + }, + { + "id": "U3396Z2", + "name": "Bakov n.Jiz.,Chudoplesy", + "isMetro": false, + "latitude": 14.930901, + "longitude": 50.458618, + "stopId": "U3396" + }, + { + "id": "U3397Z1", + "name": "Bakov n.Jiz.,Trenčín", + "isMetro": false, + "latitude": 14.941971, + "longitude": 50.471214, + "stopId": "U3397" + }, + { + "id": "U3397Z2", + "name": "Bakov n.Jiz.,Trenčín", + "isMetro": false, + "latitude": 14.942249, + "longitude": 50.471081, + "stopId": "U3397" + }, + { + "id": "U3398Z1", + "name": "Pětikozly", + "isMetro": false, + "latitude": 14.812357, + "longitude": 50.411121, + "stopId": "U3398" + }, + { + "id": "U3398Z2", + "name": "Pětikozly", + "isMetro": false, + "latitude": 14.812278, + "longitude": 50.411095, + "stopId": "U3398" + }, + { + "id": "U3399Z1", + "name": "Bakov n.Jiz.,Komenského sady", + "isMetro": false, + "latitude": 14.942989, + "longitude": 50.482243, + "stopId": "U3399" + }, + { + "id": "U3399Z2", + "name": "Bakov n.Jiz.,Komenského sady", + "isMetro": false, + "latitude": 14.942891, + "longitude": 50.482246, + "stopId": "U3399" + }, + { + "id": "U339Z1", + "name": "Lipanská", + "isMetro": false, + "latitude": 14.453712, + "longitude": 50.083916, + "stopId": "U339" + }, + { + "id": "U339Z2", + "name": "Lipanská", + "isMetro": false, + "latitude": 14.453156, + "longitude": 50.084007, + "stopId": "U339" + }, + { + "id": "U33Z1", + "name": "Bílý Beránek", + "isMetro": false, + "latitude": 14.310491, + "longitude": 50.061199, + "stopId": "U33" + }, + { + "id": "U33Z2", + "name": "Bílý Beránek", + "isMetro": false, + "latitude": 14.310207, + "longitude": 50.061039, + "stopId": "U33" + }, + { + "id": "U33Z3", + "name": "Bílý Beránek", + "isMetro": false, + "latitude": 14.308831, + "longitude": 50.061764, + "stopId": "U33" + }, + { + "id": "U33Z4", + "name": "Bílý Beránek", + "isMetro": false, + "latitude": 14.308852, + "longitude": 50.061646, + "stopId": "U33" + }, + { + "id": "U3400Z1", + "name": "Mnichovo Hradiště,Veselá", + "isMetro": false, + "latitude": 14.967674, + "longitude": 50.496861, + "stopId": "U3400" + }, + { + "id": "U3400Z2", + "name": "Mnichovo Hradiště,Veselá", + "isMetro": false, + "latitude": 14.967279, + "longitude": 50.496845, + "stopId": "U3400" + }, + { + "id": "U340Z1", + "name": "Lipany", + "isMetro": false, + "latitude": 14.617763, + "longitude": 49.99942, + "stopId": "U340" + }, + { + "id": "U340Z2", + "name": "Lipany", + "isMetro": false, + "latitude": 14.617951, + "longitude": 49.99939, + "stopId": "U340" + }, + { + "id": "U341Z1", + "name": "Škola Lipence", + "isMetro": false, + "latitude": 14.3561, + "longitude": 49.960682, + "stopId": "U341" + }, + { + "id": "U341Z2", + "name": "Škola Lipence", + "isMetro": false, + "latitude": 14.35635, + "longitude": 49.960682, + "stopId": "U341" + }, + { + "id": "U342Z1", + "name": "Lipnická", + "isMetro": false, + "latitude": 14.56017, + "longitude": 50.113106, + "stopId": "U342" + }, + { + "id": "U342Z2", + "name": "Lipnická", + "isMetro": false, + "latitude": 14.558555, + "longitude": 50.112003, + "stopId": "U342" + }, + { + "id": "U343Z1", + "name": "Lísek", + "isMetro": false, + "latitude": 14.456334, + "longitude": 50.042618, + "stopId": "U343" + }, + { + "id": "U343Z2", + "name": "Lísek", + "isMetro": false, + "latitude": 14.457101, + "longitude": 50.042683, + "stopId": "U343" + }, + { + "id": "U344Z1", + "name": "Litochlebské náměstí", + "isMetro": false, + "latitude": 14.505424, + "longitude": 50.031498, + "stopId": "U344" + }, + { + "id": "U344Z2", + "name": "Litochlebské náměstí", + "isMetro": false, + "latitude": 14.505021, + "longitude": 50.031918, + "stopId": "U344" + }, + { + "id": "U344Z3", + "name": "Litochlebské náměstí", + "isMetro": false, + "latitude": 14.507634, + "longitude": 50.032402, + "stopId": "U344" + }, + { + "id": "U344Z4", + "name": "Litochlebské náměstí", + "isMetro": false, + "latitude": 14.507271, + "longitude": 50.032169, + "stopId": "U344" + }, + { + "id": "U345Z1", + "name": "Katovická", + "isMetro": false, + "latitude": 14.4279, + "longitude": 50.132133, + "stopId": "U345" + }, + { + "id": "U345Z2", + "name": "Katovická", + "isMetro": false, + "latitude": 14.428249, + "longitude": 50.132092, + "stopId": "U345" + }, + { + "id": "U346Z1", + "name": "Lohenická", + "isMetro": false, + "latitude": 14.587817, + "longitude": 50.149551, + "stopId": "U346" + }, + { + "id": "U346Z2", + "name": "Lohenická", + "isMetro": false, + "latitude": 14.585951, + "longitude": 50.148518, + "stopId": "U346" + }, + { + "id": "U347Z1", + "name": "Lochkov", + "isMetro": false, + "latitude": 14.352567, + "longitude": 50.003185, + "stopId": "U347" + }, + { + "id": "U347Z2", + "name": "Lochkov", + "isMetro": false, + "latitude": 14.352901, + "longitude": 50.002785, + "stopId": "U347" + }, + { + "id": "U348Z1", + "name": "Arena Libeň jih", + "isMetro": false, + "latitude": 14.493353, + "longitude": 50.103104, + "stopId": "U348" + }, + { + "id": "U348Z2", + "name": "Arena Libeň jih", + "isMetro": false, + "latitude": 14.495833, + "longitude": 50.10268, + "stopId": "U348" + }, + { + "id": "U349Z1", + "name": "Lomnická", + "isMetro": false, + "latitude": 14.563552, + "longitude": 50.087513, + "stopId": "U349" + }, + { + "id": "U349Z2", + "name": "Lomnická", + "isMetro": false, + "latitude": 14.562546, + "longitude": 50.087673, + "stopId": "U349" + }, + { + "id": "U34Z1", + "name": "Biskupcova", + "isMetro": false, + "latitude": 14.468796, + "longitude": 50.088543, + "stopId": "U34" + }, + { + "id": "U34Z2", + "name": "Biskupcova", + "isMetro": false, + "latitude": 14.468635, + "longitude": 50.0891, + "stopId": "U34" + }, + { + "id": "U350Z1", + "name": "Lotyšská", + "isMetro": false, + "latitude": 14.394914, + "longitude": 50.103485, + "stopId": "U350" + }, + { + "id": "U350Z2", + "name": "Lotyšská", + "isMetro": false, + "latitude": 14.395032, + "longitude": 50.104179, + "stopId": "U350" + }, + { + "id": "U350Z3", + "name": "Lotyšská", + "isMetro": false, + "latitude": 14.395153, + "longitude": 50.10453, + "stopId": "U350" + }, + { + "id": "U350Z4", + "name": "Lotyšská", + "isMetro": false, + "latitude": 14.394744, + "longitude": 50.104855, + "stopId": "U350" + }, + { + "id": "U351Z1", + "name": "Poliklinika Prosek", + "isMetro": false, + "latitude": 14.492286, + "longitude": 50.128136, + "stopId": "U351" + }, + { + "id": "U351Z2", + "name": "Poliklinika Prosek", + "isMetro": false, + "latitude": 14.491588, + "longitude": 50.128006, + "stopId": "U351" + }, + { + "id": "U352Z1", + "name": "Lysolaje", + "isMetro": false, + "latitude": 14.366751, + "longitude": 50.126934, + "stopId": "U352" + }, + { + "id": "U352Z2", + "name": "Lysolaje", + "isMetro": false, + "latitude": 14.367299, + "longitude": 50.126743, + "stopId": "U352" + }, + { + "id": "U352Z3", + "name": "Lysolaje", + "isMetro": false, + "latitude": 14.368184, + "longitude": 50.126499, + "stopId": "U352" + }, + { + "id": "U353Z1", + "name": "Metodějova", + "isMetro": false, + "latitude": 14.521443, + "longitude": 50.026161, + "stopId": "U353" + }, + { + "id": "U353Z2", + "name": "Metodějova", + "isMetro": false, + "latitude": 14.520826, + "longitude": 50.026157, + "stopId": "U353" + }, + { + "id": "U354Z1", + "name": "Jana Masaryka", + "isMetro": false, + "latitude": 14.440681, + "longitude": 50.073513, + "stopId": "U354" + }, + { + "id": "U354Z2", + "name": "Jana Masaryka", + "isMetro": false, + "latitude": 14.441488, + "longitude": 50.073071, + "stopId": "U354" + }, + { + "id": "U355Z1", + "name": "Malá Chuchle", + "isMetro": false, + "latitude": 14.394483, + "longitude": 50.024807, + "stopId": "U355" + }, + { + "id": "U355Z2", + "name": "Malá Chuchle", + "isMetro": false, + "latitude": 14.394985, + "longitude": 50.025169, + "stopId": "U355" + }, + { + "id": "U356Z1", + "name": "Archeologická", + "isMetro": false, + "latitude": 14.336884, + "longitude": 50.043568, + "stopId": "U356" + }, + { + "id": "U356Z2", + "name": "Archeologická", + "isMetro": false, + "latitude": 14.338751, + "longitude": 50.044666, + "stopId": "U356" + }, + { + "id": "U357Z1", + "name": "Malešická", + "isMetro": false, + "latitude": 14.482, + "longitude": 50.086285, + "stopId": "U357" + }, + { + "id": "U357Z2", + "name": "Malešická", + "isMetro": false, + "latitude": 14.481942, + "longitude": 50.086727, + "stopId": "U357" + }, + { + "id": "U358Z1", + "name": "Malešická továrna", + "isMetro": false, + "latitude": 14.524714, + "longitude": 50.077274, + "stopId": "U358" + }, + { + "id": "U358Z2", + "name": "Malešická továrna", + "isMetro": false, + "latitude": 14.525237, + "longitude": 50.077183, + "stopId": "U358" + }, + { + "id": "U358Z3", + "name": "Malešická továrna", + "isMetro": false, + "latitude": 14.526284, + "longitude": 50.077049, + "stopId": "U358" + }, + { + "id": "U358Z4", + "name": "Malešická továrna", + "isMetro": false, + "latitude": 14.525915, + "longitude": 50.077351, + "stopId": "U358" + }, + { + "id": "U359Z1", + "name": "Malešické náměstí", + "isMetro": false, + "latitude": 14.510381, + "longitude": 50.084629, + "stopId": "U359" + }, + { + "id": "U359Z2", + "name": "Malešické náměstí", + "isMetro": false, + "latitude": 14.510926, + "longitude": 50.084774, + "stopId": "U359" + }, + { + "id": "U359Z3", + "name": "Malešické náměstí", + "isMetro": false, + "latitude": 14.512244, + "longitude": 50.085625, + "stopId": "U359" + }, + { + "id": "U35Z1", + "name": "Blatnická", + "isMetro": false, + "latitude": 14.2705, + "longitude": 50.064301, + "stopId": "U35" + }, + { + "id": "U35Z2", + "name": "Blatnická", + "isMetro": false, + "latitude": 14.270525, + "longitude": 50.06395, + "stopId": "U35" + }, + { + "id": "U360Z1", + "name": "Malostranská", + "isMetro": false, + "latitude": 14.410101, + "longitude": 50.090363, + "stopId": "U360" + }, + { + "id": "U360Z10", + "name": "Malostranská", + "isMetro": false, + "latitude": 14.410039, + "longitude": 50.090919, + "stopId": "U360" + }, + { + "id": "U360Z101", + "name": "Malostranská", + "isMetro": true, + "latitude": 14.409068, + "longitude": 50.091636, + "stopId": "U360" + }, + { + "id": "U360Z102", + "name": "Malostranská", + "isMetro": true, + "latitude": 14.409411, + "longitude": 50.091712, + "stopId": "U360" + }, + { + "id": "U360Z2", + "name": "Malostranská", + "isMetro": false, + "latitude": 14.409986, + "longitude": 50.090946, + "stopId": "U360" + }, + { + "id": "U360Z9", + "name": "Malostranská", + "isMetro": false, + "latitude": 14.411036, + "longitude": 50.089813, + "stopId": "U360" + }, + { + "id": "U361Z1", + "name": "Malostranské náměstí", + "isMetro": false, + "latitude": 14.404328, + "longitude": 50.087978, + "stopId": "U361" + }, + { + "id": "U361Z2", + "name": "Malostranské náměstí", + "isMetro": false, + "latitude": 14.40448, + "longitude": 50.088272, + "stopId": "U361" + }, + { + "id": "U361Z4", + "name": "Malostranské náměstí", + "isMetro": false, + "latitude": 14.404613, + "longitude": 50.087837, + "stopId": "U361" + }, + { + "id": "U361Z6", + "name": "Malostranské náměstí", + "isMetro": false, + "latitude": 14.40424, + "longitude": 50.087864, + "stopId": "U361" + }, + { + "id": "U362Z1", + "name": "Malovanka", + "isMetro": false, + "latitude": 14.382504, + "longitude": 50.085594, + "stopId": "U362" + }, + { + "id": "U362Z10", + "name": "Malovanka", + "isMetro": false, + "latitude": 14.383183, + "longitude": 50.085365, + "stopId": "U362" + }, + { + "id": "U362Z12", + "name": "Malovanka", + "isMetro": false, + "latitude": 14.38078, + "longitude": 50.08548, + "stopId": "U362" + }, + { + "id": "U362Z2", + "name": "Malovanka", + "isMetro": false, + "latitude": 14.381648, + "longitude": 50.085529, + "stopId": "U362" + }, + { + "id": "U362Z3", + "name": "Královka", + "isMetro": false, + "latitude": 14.380744, + "longitude": 50.084896, + "stopId": "U362" + }, + { + "id": "U362Z4", + "name": "Královka", + "isMetro": false, + "latitude": 14.379989, + "longitude": 50.084854, + "stopId": "U362" + }, + { + "id": "U362Z9", + "name": "Malovanka", + "isMetro": false, + "latitude": 14.38335, + "longitude": 50.085567, + "stopId": "U362" + }, + { + "id": "U363Z1", + "name": "Malvazinky", + "isMetro": false, + "latitude": 14.3883, + "longitude": 50.064968, + "stopId": "U363" + }, + { + "id": "U363Z2", + "name": "Malvazinky", + "isMetro": false, + "latitude": 14.3886, + "longitude": 50.065018, + "stopId": "U363" + }, + { + "id": "U364Z1", + "name": "Malý Břevnov", + "isMetro": false, + "latitude": 14.331241, + "longitude": 50.075909, + "stopId": "U364" + }, + { + "id": "U364Z2", + "name": "Malý Břevnov", + "isMetro": false, + "latitude": 14.333612, + "longitude": 50.076359, + "stopId": "U364" + }, + { + "id": "U364Z3", + "name": "Malý Břevnov", + "isMetro": false, + "latitude": 14.33285, + "longitude": 50.076233, + "stopId": "U364" + }, + { + "id": "U364Z4", + "name": "Malý Břevnov", + "isMetro": false, + "latitude": 14.332483, + "longitude": 50.076035, + "stopId": "U364" + }, + { + "id": "U365Z1", + "name": "Maniny", + "isMetro": false, + "latitude": 14.452658, + "longitude": 50.103348, + "stopId": "U365" + }, + { + "id": "U365Z2", + "name": "Maniny", + "isMetro": false, + "latitude": 14.453872, + "longitude": 50.103245, + "stopId": "U365" + }, + { + "id": "U366Z1", + "name": "Marjánka", + "isMetro": false, + "latitude": 14.375898, + "longitude": 50.084538, + "stopId": "U366" + }, + { + "id": "U366Z2", + "name": "Marjánka", + "isMetro": false, + "latitude": 14.375493, + "longitude": 50.084538, + "stopId": "U366" + }, + { + "id": "U367Z1", + "name": "Průmstav", + "isMetro": false, + "latitude": 14.575183, + "longitude": 50.047043, + "stopId": "U367" + }, + { + "id": "U367Z2", + "name": "Průmstav", + "isMetro": false, + "latitude": 14.575515, + "longitude": 50.047062, + "stopId": "U367" + }, + { + "id": "U368Z1", + "name": "Obchodní centrum Čakovice", + "isMetro": false, + "latitude": 14.50765, + "longitude": 50.149651, + "stopId": "U368" + }, + { + "id": "U368Z2", + "name": "Obchodní centrum Čakovice", + "isMetro": false, + "latitude": 14.508142, + "longitude": 50.149841, + "stopId": "U368" + }, + { + "id": "U368Z3", + "name": "Obchodní centrum Čakovice", + "isMetro": false, + "latitude": 14.508884, + "longitude": 50.150425, + "stopId": "U368" + }, + { + "id": "U369Z1", + "name": "Sídliště Písnice", + "isMetro": false, + "latitude": 14.466487, + "longitude": 50.00061, + "stopId": "U369" + }, + { + "id": "U369Z2", + "name": "Sídliště Písnice", + "isMetro": false, + "latitude": 14.4666, + "longitude": 50.001202, + "stopId": "U369" + }, + { + "id": "U369Z3", + "name": "Sídliště Písnice", + "isMetro": false, + "latitude": 14.466425, + "longitude": 50.000771, + "stopId": "U369" + }, + { + "id": "U36Z1", + "name": "Blatov", + "isMetro": false, + "latitude": 14.646183, + "longitude": 50.078587, + "stopId": "U36" + }, + { + "id": "U36Z2", + "name": "Blatov", + "isMetro": false, + "latitude": 14.6448, + "longitude": 50.078907, + "stopId": "U36" + }, + { + "id": "U370Z1", + "name": "Dolní Šárka", + "isMetro": false, + "latitude": 14.37425, + "longitude": 50.115551, + "stopId": "U370" + }, + { + "id": "U370Z2", + "name": "Dolní Šárka", + "isMetro": false, + "latitude": 14.373693, + "longitude": 50.115898, + "stopId": "U370" + }, + { + "id": "U371Z1", + "name": "Krakov", + "isMetro": false, + "latitude": 14.4168, + "longitude": 50.127686, + "stopId": "U371" + }, + { + "id": "U371Z2", + "name": "Krakov", + "isMetro": false, + "latitude": 14.417306, + "longitude": 50.127857, + "stopId": "U371" + }, + { + "id": "U372Z1", + "name": "Naskové", + "isMetro": false, + "latitude": 14.360867, + "longitude": 50.063358, + "stopId": "U372" + }, + { + "id": "U372Z2", + "name": "Naskové", + "isMetro": false, + "latitude": 14.3602, + "longitude": 50.0634, + "stopId": "U372" + }, + { + "id": "U373Z1", + "name": "Mezi Hřbitovy", + "isMetro": false, + "latitude": 14.471742, + "longitude": 50.081657, + "stopId": "U373" + }, + { + "id": "U374Z1", + "name": "Měděnecká", + "isMetro": false, + "latitude": 14.448851, + "longitude": 50.149685, + "stopId": "U374" + }, + { + "id": "U374Z2", + "name": "Měděnecká", + "isMetro": false, + "latitude": 14.448506, + "longitude": 50.149712, + "stopId": "U374" + }, + { + "id": "U375Z1", + "name": "Měchenická", + "isMetro": false, + "latitude": 14.488847, + "longitude": 50.049965, + "stopId": "U375" + }, + { + "id": "U375Z2", + "name": "Měchenická", + "isMetro": false, + "latitude": 14.488223, + "longitude": 50.05027, + "stopId": "U375" + }, + { + "id": "U376Z1", + "name": "Michelská", + "isMetro": false, + "latitude": 14.453829, + "longitude": 50.055065, + "stopId": "U376" + }, + { + "id": "U376Z2", + "name": "Michelská", + "isMetro": false, + "latitude": 14.454101, + "longitude": 50.055042, + "stopId": "U376" + }, + { + "id": "U376Z3", + "name": "Michelská", + "isMetro": false, + "latitude": 14.452465, + "longitude": 50.054089, + "stopId": "U376" + }, + { + "id": "U376Z4", + "name": "Michelská", + "isMetro": false, + "latitude": 14.453031, + "longitude": 50.054676, + "stopId": "U376" + }, + { + "id": "U377Z1", + "name": "U Labutě", + "isMetro": false, + "latitude": 14.456126, + "longitude": 50.03614, + "stopId": "U377" + }, + { + "id": "U377Z2", + "name": "U Labutě", + "isMetro": false, + "latitude": 14.456111, + "longitude": 50.035431, + "stopId": "U377" + }, + { + "id": "U378Z1", + "name": "Ústavy Akademie věd", + "isMetro": false, + "latitude": 14.46695, + "longitude": 50.017933, + "stopId": "U378" + }, + { + "id": "U378Z2", + "name": "Ústavy Akademie věd", + "isMetro": false, + "latitude": 14.466818, + "longitude": 50.018017, + "stopId": "U378" + }, + { + "id": "U379Z1", + "name": "Mikulova", + "isMetro": false, + "latitude": 14.515, + "longitude": 50.031879, + "stopId": "U379" + }, + { + "id": "U379Z2", + "name": "Mikulova", + "isMetro": false, + "latitude": 14.51438, + "longitude": 50.032013, + "stopId": "U379" + }, + { + "id": "U37Z1", + "name": "Bohdalec", + "isMetro": false, + "latitude": 14.469501, + "longitude": 50.060551, + "stopId": "U37" + }, + { + "id": "U37Z2", + "name": "Bohdalec", + "isMetro": false, + "latitude": 14.470104, + "longitude": 50.060055, + "stopId": "U37" + }, + { + "id": "U380Z1", + "name": "Maškův mlýn", + "isMetro": false, + "latitude": 14.318501, + "longitude": 49.998852, + "stopId": "U380" + }, + { + "id": "U380Z2", + "name": "Maškův mlýn", + "isMetro": false, + "latitude": 14.318501, + "longitude": 49.998901, + "stopId": "U380" + }, + { + "id": "U381Z1", + "name": "Mokrá", + "isMetro": false, + "latitude": 14.504244, + "longitude": 50.033546, + "stopId": "U381" + }, + { + "id": "U381Z2", + "name": "Mokrá", + "isMetro": false, + "latitude": 14.504718, + "longitude": 50.033566, + "stopId": "U381" + }, + { + "id": "U382Z1", + "name": "Křeslice", + "isMetro": false, + "latitude": 14.565202, + "longitude": 50.023384, + "stopId": "U382" + }, + { + "id": "U382Z2", + "name": "Křeslice", + "isMetro": false, + "latitude": 14.564969, + "longitude": 50.023499, + "stopId": "U382" + }, + { + "id": "U383Z1", + "name": "Reinerova", + "isMetro": false, + "latitude": 14.310303, + "longitude": 50.074837, + "stopId": "U383" + }, + { + "id": "U383Z2", + "name": "Reinerova", + "isMetro": false, + "latitude": 14.30999, + "longitude": 50.073589, + "stopId": "U383" + }, + { + "id": "U384Z1", + "name": "Miškovice", + "isMetro": false, + "latitude": 14.542006, + "longitude": 50.156021, + "stopId": "U384" + }, + { + "id": "U384Z2", + "name": "Miškovice", + "isMetro": false, + "latitude": 14.540866, + "longitude": 50.155914, + "stopId": "U384" + }, + { + "id": "U385Z1", + "name": "Pankrác", + "isMetro": false, + "latitude": 14.438168, + "longitude": 50.051868, + "stopId": "U385" + }, + { + "id": "U385Z101", + "name": "Pankrác", + "isMetro": true, + "latitude": 14.43971, + "longitude": 50.051101, + "stopId": "U385" + }, + { + "id": "U385Z102", + "name": "Pankrác", + "isMetro": true, + "latitude": 14.439543, + "longitude": 50.051058, + "stopId": "U385" + }, + { + "id": "U385Z2", + "name": "Pankrác", + "isMetro": false, + "latitude": 14.437867, + "longitude": 50.051548, + "stopId": "U385" + }, + { + "id": "U385Z4", + "name": "Pankrác", + "isMetro": false, + "latitude": 14.439106, + "longitude": 50.052498, + "stopId": "U385" + }, + { + "id": "U385Z6", + "name": "Pankrác", + "isMetro": false, + "latitude": 14.440308, + "longitude": 50.048969, + "stopId": "U385" + }, + { + "id": "U385Z7", + "name": "Pankrác", + "isMetro": false, + "latitude": 14.440056, + "longitude": 50.049141, + "stopId": "U385" + }, + { + "id": "U386Z1", + "name": "Modrá škola", + "isMetro": false, + "latitude": 14.524334, + "longitude": 50.030434, + "stopId": "U386" + }, + { + "id": "U386Z12", + "name": "Modrá škola", + "isMetro": false, + "latitude": 14.52315, + "longitude": 50.031967, + "stopId": "U386" + }, + { + "id": "U386Z2", + "name": "Modrá škola", + "isMetro": false, + "latitude": 14.52315, + "longitude": 50.031967, + "stopId": "U386" + }, + { + "id": "U387Z1", + "name": "Pobřežní cesta", + "isMetro": false, + "latitude": 14.407448, + "longitude": 50.034206, + "stopId": "U387" + }, + { + "id": "U387Z2", + "name": "Pobřežní cesta", + "isMetro": false, + "latitude": 14.407943, + "longitude": 50.033604, + "stopId": "U387" + }, + { + "id": "U387Z3", + "name": "Pobřežní cesta", + "isMetro": false, + "latitude": 14.40785, + "longitude": 50.033951, + "stopId": "U387" + }, + { + "id": "U387Z4", + "name": "Pobřežní cesta", + "isMetro": false, + "latitude": 14.408117, + "longitude": 50.034134, + "stopId": "U387" + }, + { + "id": "U388Z1", + "name": "Nádraží Modřany", + "isMetro": false, + "latitude": 14.403307, + "longitude": 50.004581, + "stopId": "U388" + }, + { + "id": "U388Z11", + "name": "Nádraží Modřany", + "isMetro": false, + "latitude": 14.402797, + "longitude": 50.002335, + "stopId": "U388" + }, + { + "id": "U388Z2", + "name": "Nádraží Modřany", + "isMetro": false, + "latitude": 14.403372, + "longitude": 50.003941, + "stopId": "U388" + }, + { + "id": "U388Z3", + "name": "Nádraží Modřany", + "isMetro": false, + "latitude": 14.403655, + "longitude": 50.004025, + "stopId": "U388" + }, + { + "id": "U388Z301", + "name": "Praha-Modřany zast.", + "isMetro": false, + "latitude": 14.403092, + "longitude": 50.003941, + "stopId": "U388" + }, + { + "id": "U388Z4", + "name": "Nádraží Modřany", + "isMetro": false, + "latitude": 14.403746, + "longitude": 50.004158, + "stopId": "U388" + }, + { + "id": "U389Z1", + "name": "Průmyslová", + "isMetro": false, + "latitude": 14.535475, + "longitude": 50.072414, + "stopId": "U389" + }, + { + "id": "U389Z2", + "name": "Průmyslová", + "isMetro": false, + "latitude": 14.535802, + "longitude": 50.072609, + "stopId": "U389" + }, + { + "id": "U38Z2", + "name": "Staré Bohnice", + "isMetro": false, + "latitude": 14.415805, + "longitude": 50.133312, + "stopId": "U38" + }, + { + "id": "U38Z3", + "name": "Staré Bohnice", + "isMetro": false, + "latitude": 14.415883, + "longitude": 50.133839, + "stopId": "U38" + }, + { + "id": "U391Z1", + "name": "Vršovické náměstí", + "isMetro": false, + "latitude": 14.45422, + "longitude": 50.069157, + "stopId": "U391" + }, + { + "id": "U391Z2", + "name": "Vršovické náměstí", + "isMetro": false, + "latitude": 14.454879, + "longitude": 50.069035, + "stopId": "U391" + }, + { + "id": "U392Z1", + "name": "Most Závodu míru", + "isMetro": false, + "latitude": 14.395116, + "longitude": 49.972683, + "stopId": "U392" + }, + { + "id": "U392Z2", + "name": "Most Závodu míru", + "isMetro": false, + "latitude": 14.394944, + "longitude": 49.972862, + "stopId": "U392" + }, + { + "id": "U394Z1", + "name": "Motol", + "isMetro": false, + "latitude": 14.336522, + "longitude": 50.067673, + "stopId": "U394" + }, + { + "id": "U394Z2", + "name": "Motol", + "isMetro": false, + "latitude": 14.335685, + "longitude": 50.067715, + "stopId": "U394" + }, + { + "id": "U394Z3", + "name": "Motol", + "isMetro": false, + "latitude": 14.335217, + "longitude": 50.068718, + "stopId": "U394" + }, + { + "id": "U394Z4", + "name": "Motol", + "isMetro": false, + "latitude": 14.335417, + "longitude": 50.068699, + "stopId": "U394" + }, + { + "id": "U395Z1", + "name": "Krematorium Motol", + "isMetro": false, + "latitude": 14.326459, + "longitude": 50.066227, + "stopId": "U395" + }, + { + "id": "U395Z2", + "name": "Krematorium Motol", + "isMetro": false, + "latitude": 14.325691, + "longitude": 50.065933, + "stopId": "U395" + }, + { + "id": "U395Z3", + "name": "Krematorium Motol", + "isMetro": false, + "latitude": 14.326059, + "longitude": 50.065895, + "stopId": "U395" + }, + { + "id": "U395Z4", + "name": "Krematorium Motol", + "isMetro": false, + "latitude": 14.324857, + "longitude": 50.065689, + "stopId": "U395" + }, + { + "id": "U396Z1", + "name": "U Waltrovky", + "isMetro": false, + "latitude": 14.371384, + "longitude": 50.058651, + "stopId": "U396" + }, + { + "id": "U396Z2", + "name": "U Waltrovky", + "isMetro": false, + "latitude": 14.373563, + "longitude": 50.059002, + "stopId": "U396" + }, + { + "id": "U397Z1", + "name": "V Sedlci", + "isMetro": false, + "latitude": 14.394642, + "longitude": 50.128254, + "stopId": "U397" + }, + { + "id": "U397Z2", + "name": "V Sedlci", + "isMetro": false, + "latitude": 14.39492, + "longitude": 50.128151, + "stopId": "U397" + }, + { + "id": "U398Z1", + "name": "Murmanská", + "isMetro": false, + "latitude": 14.480717, + "longitude": 50.073067, + "stopId": "U398" + }, + { + "id": "U398Z2", + "name": "Murmanská", + "isMetro": false, + "latitude": 14.478284, + "longitude": 50.073784, + "stopId": "U398" + }, + { + "id": "U399Z1", + "name": "Radonická", + "isMetro": false, + "latitude": 14.538398, + "longitude": 50.154827, + "stopId": "U399" + }, + { + "id": "U399Z2", + "name": "Radonická", + "isMetro": false, + "latitude": 14.537704, + "longitude": 50.154808, + "stopId": "U399" + }, + { + "id": "U39Z1", + "name": "Bojasova", + "isMetro": false, + "latitude": 14.462464, + "longitude": 50.132591, + "stopId": "U39" + }, + { + "id": "U39Z2", + "name": "Bojasova", + "isMetro": false, + "latitude": 14.462762, + "longitude": 50.132477, + "stopId": "U39" + }, + { + "id": "U3Z1", + "name": "Břetislavka", + "isMetro": false, + "latitude": 14.389533, + "longitude": 50.123241, + "stopId": "U3" + }, + { + "id": "U3Z2", + "name": "Břetislavka", + "isMetro": false, + "latitude": 14.389885, + "longitude": 50.123013, + "stopId": "U3" + }, + { + "id": "U4000Z2", + "name": "Kbelský pivovar", + "isMetro": false, + "latitude": 14.547434, + "longitude": 50.130413, + "stopId": "U4000" + }, + { + "id": "U4008Z1", + "name": "Kroučová,ObÚ", + "isMetro": false, + "latitude": 13.786917, + "longitude": 50.209408, + "stopId": "U4008" + }, + { + "id": "U4008Z2", + "name": "Kroučová,ObÚ", + "isMetro": false, + "latitude": 13.78732, + "longitude": 50.209812, + "stopId": "U4008" + }, + { + "id": "U4009Z1", + "name": "Pochvalov", + "isMetro": false, + "latitude": 13.793615, + "longitude": 50.226952, + "stopId": "U4009" + }, + { + "id": "U4009Z2", + "name": "Pochvalov", + "isMetro": false, + "latitude": 13.793745, + "longitude": 50.226948, + "stopId": "U4009" + }, + { + "id": "U400Z1", + "name": "Muzeum", + "isMetro": false, + "latitude": 14.432457, + "longitude": 50.078838, + "stopId": "U400" + }, + { + "id": "U400Z101", + "name": "Muzeum", + "isMetro": true, + "latitude": 14.43154, + "longitude": 50.079413, + "stopId": "U400" + }, + { + "id": "U400Z102", + "name": "Muzeum", + "isMetro": true, + "latitude": 14.43178, + "longitude": 50.07953, + "stopId": "U400" + }, + { + "id": "U400Z121", + "name": "Muzeum", + "isMetro": true, + "latitude": 14.431151, + "longitude": 50.080407, + "stopId": "U400" + }, + { + "id": "U400Z122", + "name": "Muzeum", + "isMetro": true, + "latitude": 14.431314, + "longitude": 50.080342, + "stopId": "U400" + }, + { + "id": "U400Z2", + "name": "Muzeum", + "isMetro": false, + "latitude": 14.432496, + "longitude": 50.078758, + "stopId": "U400" + }, + { + "id": "U400Z3", + "name": "Muzeum", + "isMetro": false, + "latitude": 14.42975, + "longitude": 50.078945, + "stopId": "U400" + }, + { + "id": "U400Z4", + "name": "Muzeum", + "isMetro": false, + "latitude": 14.432548, + "longitude": 50.078903, + "stopId": "U400" + }, + { + "id": "U4010Z1", + "name": "Smilovice", + "isMetro": false, + "latitude": 13.804546, + "longitude": 50.248024, + "stopId": "U4010" + }, + { + "id": "U4010Z2", + "name": "Smilovice", + "isMetro": false, + "latitude": 13.80476, + "longitude": 50.248028, + "stopId": "U4010" + }, + { + "id": "U4011Z1", + "name": "Kozojedy", + "isMetro": false, + "latitude": 13.815755, + "longitude": 50.255291, + "stopId": "U4011" + }, + { + "id": "U4011Z2", + "name": "Kozojedy", + "isMetro": false, + "latitude": 13.815916, + "longitude": 50.255325, + "stopId": "U4011" + }, + { + "id": "U4012Z1", + "name": "Vinařice", + "isMetro": false, + "latitude": 13.822507, + "longitude": 50.265236, + "stopId": "U4012" + }, + { + "id": "U4012Z2", + "name": "Vinařice", + "isMetro": false, + "latitude": 13.822598, + "longitude": 50.265202, + "stopId": "U4012" + }, + { + "id": "U4013Z1", + "name": "Nové Strašecí,rozc.Třtice", + "isMetro": false, + "latitude": 13.877695, + "longitude": 50.165615, + "stopId": "U4013" + }, + { + "id": "U4013Z2", + "name": "Nové Strašecí,rozc.Třtice", + "isMetro": false, + "latitude": 13.876414, + "longitude": 50.165913, + "stopId": "U4013" + }, + { + "id": "U4014Z1", + "name": "Tuchlovice,Srby", + "isMetro": false, + "latitude": 14.019453, + "longitude": 50.143551, + "stopId": "U4014" + }, + { + "id": "U4014Z2", + "name": "Tuchlovice,Srby", + "isMetro": false, + "latitude": 14.019266, + "longitude": 50.143955, + "stopId": "U4014" + }, + { + "id": "U4015Z1", + "name": "Kamenné Žehrovice,Vaňkovka", + "isMetro": false, + "latitude": 14.032188, + "longitude": 50.136631, + "stopId": "U4015" + }, + { + "id": "U4015Z2", + "name": "Kamenné Žehrovice,Vaňkovka", + "isMetro": false, + "latitude": 14.032418, + "longitude": 50.136612, + "stopId": "U4015" + }, + { + "id": "U401Z1", + "name": "Myslíkova", + "isMetro": false, + "latitude": 14.419049, + "longitude": 50.078171, + "stopId": "U401" + }, + { + "id": "U401Z2", + "name": "Myslíkova", + "isMetro": false, + "latitude": 14.41795, + "longitude": 50.077965, + "stopId": "U401" + }, + { + "id": "U4021Z1", + "name": "Křivoklát,Amalín", + "isMetro": false, + "latitude": 13.882825, + "longitude": 50.036682, + "stopId": "U4021" + }, + { + "id": "U402Z1", + "name": "Na Blanici", + "isMetro": false, + "latitude": 14.583227, + "longitude": 50.03701, + "stopId": "U402" + }, + { + "id": "U402Z2", + "name": "Na Blanici", + "isMetro": false, + "latitude": 14.582417, + "longitude": 50.036766, + "stopId": "U402" + }, + { + "id": "U4030Z1", + "name": "Křivoklát,škola", + "isMetro": false, + "latitude": 13.866113, + "longitude": 50.031055, + "stopId": "U4030" + }, + { + "id": "U4030Z2", + "name": "Křivoklát,škola", + "isMetro": false, + "latitude": 13.866069, + "longitude": 50.031067, + "stopId": "U4030" + }, + { + "id": "U4032Z1", + "name": "Dobrovice,Švermovy sady", + "isMetro": false, + "latitude": 14.956939, + "longitude": 50.368839, + "stopId": "U4032" + }, + { + "id": "U4032Z2", + "name": "Dobrovice,Švermovy sady", + "isMetro": false, + "latitude": 14.956952, + "longitude": 50.368908, + "stopId": "U4032" + }, + { + "id": "U4033Z1", + "name": "Vinařice,Vrbičky", + "isMetro": false, + "latitude": 14.950392, + "longitude": 50.368336, + "stopId": "U4033" + }, + { + "id": "U4033Z2", + "name": "Vinařice,Vrbičky", + "isMetro": false, + "latitude": 14.950457, + "longitude": 50.36842, + "stopId": "U4033" + }, + { + "id": "U403Z1", + "name": "Na Groši", + "isMetro": false, + "latitude": 14.524025, + "longitude": 50.052975, + "stopId": "U403" + }, + { + "id": "U403Z2", + "name": "Na Groši", + "isMetro": false, + "latitude": 14.52377, + "longitude": 50.052906, + "stopId": "U403" + }, + { + "id": "U403Z7", + "name": "Na Groši", + "isMetro": false, + "latitude": 14.523664, + "longitude": 50.052795, + "stopId": "U403" + }, + { + "id": "U403Z8", + "name": "Na Groši", + "isMetro": false, + "latitude": 14.524192, + "longitude": 50.053047, + "stopId": "U403" + }, + { + "id": "U4049Z1", + "name": "Vinec,Obecní úřad", + "isMetro": false, + "latitude": 14.871043, + "longitude": 50.394817, + "stopId": "U4049" + }, + { + "id": "U4049Z2", + "name": "Vinec,Obecní úřad", + "isMetro": false, + "latitude": 14.871218, + "longitude": 50.394783, + "stopId": "U4049" + }, + { + "id": "U404Z1", + "name": "Na Homoli", + "isMetro": false, + "latitude": 14.530346, + "longitude": 50.076324, + "stopId": "U404" + }, + { + "id": "U404Z2", + "name": "Na Homoli", + "isMetro": false, + "latitude": 14.530669, + "longitude": 50.076138, + "stopId": "U404" + }, + { + "id": "U404Z3", + "name": "Na Homoli", + "isMetro": false, + "latitude": 14.530213, + "longitude": 50.076172, + "stopId": "U404" + }, + { + "id": "U404Z4", + "name": "Na Homoli", + "isMetro": false, + "latitude": 14.530392, + "longitude": 50.076492, + "stopId": "U404" + }, + { + "id": "U4058Z2", + "name": "Sudoměř", + "isMetro": false, + "latitude": 14.744192, + "longitude": 50.44701, + "stopId": "U4058" + }, + { + "id": "U405Z1", + "name": "Výstaviště Letňany", + "isMetro": false, + "latitude": 14.511653, + "longitude": 50.128666, + "stopId": "U405" + }, + { + "id": "U405Z2", + "name": "Výstaviště Letňany", + "isMetro": false, + "latitude": 14.511781, + "longitude": 50.128441, + "stopId": "U405" + }, + { + "id": "U4068Z1", + "name": "Mladá Boleslav,Česana", + "isMetro": false, + "latitude": 14.90104, + "longitude": 50.41235, + "stopId": "U4068" + }, + { + "id": "U4068Z2", + "name": "Mladá Boleslav,Česana", + "isMetro": false, + "latitude": 14.901494, + "longitude": 50.413139, + "stopId": "U4068" + }, + { + "id": "U406Z1", + "name": "Na Hřebenech", + "isMetro": false, + "latitude": 14.428451, + "longitude": 50.051819, + "stopId": "U406" + }, + { + "id": "U406Z2", + "name": "Na Hřebenech", + "isMetro": false, + "latitude": 14.42806, + "longitude": 50.051468, + "stopId": "U406" + }, + { + "id": "U4073Z1", + "name": "Benešov,Čechova", + "isMetro": false, + "latitude": 14.689521, + "longitude": 49.785652, + "stopId": "U4073" + }, + { + "id": "U4073Z2", + "name": "Benešov,Čechova", + "isMetro": false, + "latitude": 14.68994, + "longitude": 49.785835, + "stopId": "U4073" + }, + { + "id": "U4074Z1", + "name": "Benešov,Pivovar Ferdinand", + "isMetro": false, + "latitude": 14.691594, + "longitude": 49.780354, + "stopId": "U4074" + }, + { + "id": "U4074Z2", + "name": "Benešov,Pivovar Ferdinand", + "isMetro": false, + "latitude": 14.692287, + "longitude": 49.779976, + "stopId": "U4074" + }, + { + "id": "U407Z1", + "name": "Libošovická", + "isMetro": false, + "latitude": 14.599901, + "longitude": 50.110901, + "stopId": "U407" + }, + { + "id": "U407Z2", + "name": "Libošovická", + "isMetro": false, + "latitude": 14.599085, + "longitude": 50.111485, + "stopId": "U407" + }, + { + "id": "U4080Z1", + "name": "Úžice,Radvanice", + "isMetro": false, + "latitude": 14.931369, + "longitude": 49.888477, + "stopId": "U4080" + }, + { + "id": "U4080Z2", + "name": "Úžice,Radvanice", + "isMetro": false, + "latitude": 14.931277, + "longitude": 49.888386, + "stopId": "U4080" + }, + { + "id": "U4082Z1", + "name": "Louňovice p.Blaníkem", + "isMetro": false, + "latitude": 14.847631, + "longitude": 49.63763, + "stopId": "U4082" + }, + { + "id": "U4082Z2", + "name": "Louňovice p.Blaníkem", + "isMetro": false, + "latitude": 14.847756, + "longitude": 49.637447, + "stopId": "U4082" + }, + { + "id": "U4083Z1", + "name": "Louňovice p.Blaníkem,Škola", + "isMetro": false, + "latitude": 14.844519, + "longitude": 49.63364, + "stopId": "U4083" + }, + { + "id": "U4083Z2", + "name": "Louňovice p.Blaníkem,Škola", + "isMetro": false, + "latitude": 14.844688, + "longitude": 49.633827, + "stopId": "U4083" + }, + { + "id": "U4084Z1", + "name": "Louňovice p.Blaníkem,U Mostu", + "isMetro": false, + "latitude": 14.842869, + "longitude": 49.642357, + "stopId": "U4084" + }, + { + "id": "U4084Z2", + "name": "Louňovice p.Blaníkem,U Mostu", + "isMetro": false, + "latitude": 14.842882, + "longitude": 49.642532, + "stopId": "U4084" + }, + { + "id": "U4085Z1", + "name": "Louňovice p.Blaníkem,Olešná", + "isMetro": false, + "latitude": 14.868936, + "longitude": 49.658325, + "stopId": "U4085" + }, + { + "id": "U4085Z2", + "name": "Louňovice p.Blaníkem,Olešná", + "isMetro": false, + "latitude": 14.868862, + "longitude": 49.658417, + "stopId": "U4085" + }, + { + "id": "U4086Z1", + "name": "Louňovice p.Blaníkem,rozc.Světlá", + "isMetro": false, + "latitude": 14.857371, + "longitude": 49.648052, + "stopId": "U4086" + }, + { + "id": "U4086Z2", + "name": "Louňovice p.Blaníkem,rozc.Světlá", + "isMetro": false, + "latitude": 14.857174, + "longitude": 49.648006, + "stopId": "U4086" + }, + { + "id": "U4087Z1", + "name": "Zvěstov,rozc.Vlastišov", + "isMetro": false, + "latitude": 14.822305, + "longitude": 49.647449, + "stopId": "U4087" + }, + { + "id": "U4087Z2", + "name": "Zvěstov,rozc.Vlastišov", + "isMetro": false, + "latitude": 14.822297, + "longitude": 49.647957, + "stopId": "U4087" + }, + { + "id": "U4087Z3", + "name": "Zvěstov,rozc.Vlastišov", + "isMetro": false, + "latitude": 14.821982, + "longitude": 49.648129, + "stopId": "U4087" + }, + { + "id": "U4088Z1", + "name": "Zvěstov,Smršťov", + "isMetro": false, + "latitude": 14.836388, + "longitude": 49.61739, + "stopId": "U4088" + }, + { + "id": "U4088Z2", + "name": "Zvěstov,Smršťov", + "isMetro": false, + "latitude": 14.837538, + "longitude": 49.61813, + "stopId": "U4088" + }, + { + "id": "U408Z1", + "name": "Třebešovská", + "isMetro": false, + "latitude": 14.62592, + "longitude": 50.11562, + "stopId": "U408" + }, + { + "id": "U408Z2", + "name": "Třebešovská", + "isMetro": false, + "latitude": 14.626072, + "longitude": 50.11549, + "stopId": "U408" + }, + { + "id": "U409Z1", + "name": "Na Košíku", + "isMetro": false, + "latitude": 14.51497, + "longitude": 50.047131, + "stopId": "U409" + }, + { + "id": "U409Z2", + "name": "Na Košíku", + "isMetro": false, + "latitude": 14.515557, + "longitude": 50.047085, + "stopId": "U409" + }, + { + "id": "U40Z1", + "name": "Na Pískách", + "isMetro": false, + "latitude": 14.369692, + "longitude": 50.098957, + "stopId": "U40" + }, + { + "id": "U40Z2", + "name": "Na Pískách", + "isMetro": false, + "latitude": 14.370345, + "longitude": 50.099087, + "stopId": "U40" + }, + { + "id": "U4100Z11", + "name": "Kotevní", + "isMetro": false, + "latitude": 14.412541, + "longitude": 50.065643, + "stopId": "U4100" + }, + { + "id": "U4101Z1", + "name": "Zdiby,Přemyšlení,V Remízkách", + "isMetro": false, + "latitude": 14.425307, + "longitude": 50.1726, + "stopId": "U4101" + }, + { + "id": "U4101Z2", + "name": "Zdiby,Přemyšlení,V Remízkách", + "isMetro": false, + "latitude": 14.425302, + "longitude": 50.171902, + "stopId": "U4101" + }, + { + "id": "U4103Z1", + "name": "Dobrovíz,Komerční zóna", + "isMetro": false, + "latitude": 14.213491, + "longitude": 50.107323, + "stopId": "U4103" + }, + { + "id": "U4103Z2", + "name": "Dobrovíz,Komerční zóna", + "isMetro": false, + "latitude": 14.213181, + "longitude": 50.10725, + "stopId": "U4103" + }, + { + "id": "U4103Z301", + "name": "Dobrovíz-Amazon", + "isMetro": false, + "latitude": 14.214047, + "longitude": 50.107471, + "stopId": "U4103" + }, + { + "id": "U4103Z401", + "name": "Dobrovíz,Komerční zóna", + "isMetro": false, + "latitude": 14.213491, + "longitude": 50.107323, + "stopId": "U4103" + }, + { + "id": "U4103Z402", + "name": "Dobrovíz,Komerční zóna", + "isMetro": false, + "latitude": 14.213181, + "longitude": 50.10725, + "stopId": "U4103" + }, + { + "id": "U4107Z1", + "name": "Nepasické náměstí", + "isMetro": false, + "latitude": 14.658772, + "longitude": 50.103767, + "stopId": "U4107" + }, + { + "id": "U4108Z1", + "name": "U Radiály", + "isMetro": false, + "latitude": 14.553626, + "longitude": 50.07563, + "stopId": "U4108" + }, + { + "id": "U4108Z2", + "name": "U Radiály", + "isMetro": false, + "latitude": 14.553793, + "longitude": 50.075668, + "stopId": "U4108" + }, + { + "id": "U410Z1", + "name": "Do Rybníčků", + "isMetro": false, + "latitude": 14.4452, + "longitude": 50.149651, + "stopId": "U410" + }, + { + "id": "U4110Z1", + "name": "Družec,náměstí", + "isMetro": false, + "latitude": 14.045798, + "longitude": 50.102978, + "stopId": "U4110" + }, + { + "id": "U4110Z2", + "name": "Družec,náměstí", + "isMetro": false, + "latitude": 14.045493, + "longitude": 50.102909, + "stopId": "U4110" + }, + { + "id": "U4111Z1", + "name": "Družec,most", + "isMetro": false, + "latitude": 14.050068, + "longitude": 50.104221, + "stopId": "U4111" + }, + { + "id": "U4111Z2", + "name": "Družec,most", + "isMetro": false, + "latitude": 14.050028, + "longitude": 50.104294, + "stopId": "U4111" + }, + { + "id": "U4112Z1", + "name": "Družec,U Rybníka", + "isMetro": false, + "latitude": 14.05257, + "longitude": 50.108067, + "stopId": "U4112" + }, + { + "id": "U4112Z2", + "name": "Družec,U Rybníka", + "isMetro": false, + "latitude": 14.052493, + "longitude": 50.108025, + "stopId": "U4112" + }, + { + "id": "U4113Z1", + "name": "Družec,Nový Mlýn", + "isMetro": false, + "latitude": 14.038125, + "longitude": 50.093452, + "stopId": "U4113" + }, + { + "id": "U4113Z2", + "name": "Družec,Nový Mlýn", + "isMetro": false, + "latitude": 14.038033, + "longitude": 50.093483, + "stopId": "U4113" + }, + { + "id": "U4114Z1", + "name": "Družec,Na Rybárně", + "isMetro": false, + "latitude": 14.033745, + "longitude": 50.088707, + "stopId": "U4114" + }, + { + "id": "U4114Z2", + "name": "Družec,Na Rybárně", + "isMetro": false, + "latitude": 14.033646, + "longitude": 50.088722, + "stopId": "U4114" + }, + { + "id": "U4115Z1", + "name": "Sibřina,Zahradní", + "isMetro": false, + "latitude": 14.668312, + "longitude": 50.054016, + "stopId": "U4115" + }, + { + "id": "U4115Z2", + "name": "Sibřina,Zahradní", + "isMetro": false, + "latitude": 14.667908, + "longitude": 50.053978, + "stopId": "U4115" + }, + { + "id": "U4117Z1", + "name": "Winklerova", + "isMetro": false, + "latitude": 14.596011, + "longitude": 50.065205, + "stopId": "U4117" + }, + { + "id": "U4117Z2", + "name": "Winklerova", + "isMetro": false, + "latitude": 14.597935, + "longitude": 50.065746, + "stopId": "U4117" + }, + { + "id": "U4119Z1", + "name": "Hostouň,Na Pohoří", + "isMetro": false, + "latitude": 14.202047, + "longitude": 50.114338, + "stopId": "U4119" + }, + { + "id": "U4119Z2", + "name": "Hostouň,Na Pohoří", + "isMetro": false, + "latitude": 14.201785, + "longitude": 50.114166, + "stopId": "U4119" + }, + { + "id": "U411Z1", + "name": "Na Pramenech", + "isMetro": false, + "latitude": 14.497041, + "longitude": 50.148605, + "stopId": "U411" + }, + { + "id": "U411Z2", + "name": "Na Pramenech", + "isMetro": false, + "latitude": 14.4973, + "longitude": 50.148735, + "stopId": "U411" + }, + { + "id": "U4120Z1", + "name": "Sulice,Nechánice", + "isMetro": false, + "latitude": 14.538886, + "longitude": 49.91544, + "stopId": "U4120" + }, + { + "id": "U4123Z1", + "name": "Milovice,Tyršova", + "isMetro": false, + "latitude": 14.864015, + "longitude": 50.229683, + "stopId": "U4123" + }, + { + "id": "U4123Z2", + "name": "Milovice,Tyršova", + "isMetro": false, + "latitude": 14.864338, + "longitude": 50.229496, + "stopId": "U4123" + }, + { + "id": "U4124Z1", + "name": "Záboří n.L.,žel.st.", + "isMetro": false, + "latitude": 15.350324, + "longitude": 50.029716, + "stopId": "U4124" + }, + { + "id": "U4124Z2", + "name": "Záboří n.L.,žel.st.", + "isMetro": false, + "latitude": 15.350248, + "longitude": 50.029518, + "stopId": "U4124" + }, + { + "id": "U4124Z301", + "name": "Záboří nad Labem", + "isMetro": false, + "latitude": 15.348694, + "longitude": 50.030769, + "stopId": "U4124" + }, + { + "id": "U4125Z1", + "name": "Poděbrady,Oáza", + "isMetro": false, + "latitude": 15.099938, + "longitude": 50.133396, + "stopId": "U4125" + }, + { + "id": "U4126Z1", + "name": "Úvaly,U Mlýna", + "isMetro": false, + "latitude": 14.723681, + "longitude": 50.076344, + "stopId": "U4126" + }, + { + "id": "U4127Z1", + "name": "Jeneč,Komerční zóna", + "isMetro": false, + "latitude": 14.206238, + "longitude": 50.092602, + "stopId": "U4127" + }, + { + "id": "U4127Z2", + "name": "Jeneč,Komerční zóna", + "isMetro": false, + "latitude": 14.206573, + "longitude": 50.092659, + "stopId": "U4127" + }, + { + "id": "U4128Z1", + "name": "Poliklinika Čumpelíkova", + "isMetro": false, + "latitude": 14.46057, + "longitude": 50.126957, + "stopId": "U4128" + }, + { + "id": "U4128Z2", + "name": "Poliklinika Čumpelíkova", + "isMetro": false, + "latitude": 14.460416, + "longitude": 50.126957, + "stopId": "U4128" + }, + { + "id": "U4129Z1", + "name": "Kobyliská střelnice", + "isMetro": false, + "latitude": 14.460876, + "longitude": 50.130905, + "stopId": "U4129" + }, + { + "id": "U4129Z2", + "name": "Kobyliská střelnice", + "isMetro": false, + "latitude": 14.460608, + "longitude": 50.131031, + "stopId": "U4129" + }, + { + "id": "U412Z1", + "name": "Na Lysinách", + "isMetro": false, + "latitude": 14.412441, + "longitude": 50.022308, + "stopId": "U412" + }, + { + "id": "U412Z2", + "name": "Na Lysinách", + "isMetro": false, + "latitude": 14.412884, + "longitude": 50.022316, + "stopId": "U412" + }, + { + "id": "U4130Z1", + "name": "Domov seniorů Ďáblice", + "isMetro": false, + "latitude": 14.474126, + "longitude": 50.13546, + "stopId": "U4130" + }, + { + "id": "U4130Z2", + "name": "Domov seniorů Ďáblice", + "isMetro": false, + "latitude": 14.474068, + "longitude": 50.135632, + "stopId": "U4130" + }, + { + "id": "U4132Z1", + "name": "Za Novákovou zahradou", + "isMetro": false, + "latitude": 14.576724, + "longitude": 50.124058, + "stopId": "U4132" + }, + { + "id": "U4132Z2", + "name": "Za Novákovou zahradou", + "isMetro": false, + "latitude": 14.578127, + "longitude": 50.123596, + "stopId": "U4132" + }, + { + "id": "U4133Z1", + "name": "Milíčov", + "isMetro": false, + "latitude": 14.530675, + "longitude": 50.026974, + "stopId": "U4133" + }, + { + "id": "U4134Z1", + "name": "Tismice,Na Kopečku", + "isMetro": false, + "latitude": 14.829091, + "longitude": 50.060764, + "stopId": "U4134" + }, + { + "id": "U4134Z2", + "name": "Tismice,Na Kopečku", + "isMetro": false, + "latitude": 14.830365, + "longitude": 50.061092, + "stopId": "U4134" + }, + { + "id": "U4136Z1", + "name": "Voňkova", + "isMetro": false, + "latitude": 14.667262, + "longitude": 50.098858, + "stopId": "U4136" + }, + { + "id": "U4136Z2", + "name": "Voňkova", + "isMetro": false, + "latitude": 14.668756, + "longitude": 50.098286, + "stopId": "U4136" + }, + { + "id": "U4137Z1", + "name": "Všestarská", + "isMetro": false, + "latitude": 14.662624, + "longitude": 50.100452, + "stopId": "U4137" + }, + { + "id": "U4137Z2", + "name": "Všestarská", + "isMetro": false, + "latitude": 14.662709, + "longitude": 50.100319, + "stopId": "U4137" + }, + { + "id": "U4138Z1", + "name": "Milovice,5.května", + "isMetro": false, + "latitude": 14.891351, + "longitude": 50.225651, + "stopId": "U4138" + }, + { + "id": "U4138Z2", + "name": "Milovice,5.května", + "isMetro": false, + "latitude": 14.891277, + "longitude": 50.224724, + "stopId": "U4138" + }, + { + "id": "U4138Z51", + "name": "Milovice,5.května", + "isMetro": false, + "latitude": 14.895277, + "longitude": 50.227585, + "stopId": "U4138" + }, + { + "id": "U4138Z52", + "name": "Milovice,5.května", + "isMetro": false, + "latitude": 14.895409, + "longitude": 50.227737, + "stopId": "U4138" + }, + { + "id": "U4139Z301", + "name": "Hostivice-Sadová", + "isMetro": false, + "latitude": 14.266779, + "longitude": 50.075108, + "stopId": "U4139" + }, + { + "id": "U413Z1", + "name": "Na Míčánkách", + "isMetro": false, + "latitude": 14.46484, + "longitude": 50.071251, + "stopId": "U413" + }, + { + "id": "U413Z2", + "name": "Na Míčánkách", + "isMetro": false, + "latitude": 14.463458, + "longitude": 50.070999, + "stopId": "U413" + }, + { + "id": "U4140Z1", + "name": "Tetín,křižovatka", + "isMetro": false, + "latitude": 14.099944, + "longitude": 49.947754, + "stopId": "U4140" + }, + { + "id": "U4141Z1", + "name": "Chýně,Nádraží", + "isMetro": false, + "latitude": 14.212698, + "longitude": 50.059074, + "stopId": "U4141" + }, + { + "id": "U4141Z2", + "name": "Chýně,Nádraží", + "isMetro": false, + "latitude": 14.212546, + "longitude": 50.058956, + "stopId": "U4141" + }, + { + "id": "U4141Z301", + "name": "Chýně", + "isMetro": false, + "latitude": 14.211965, + "longitude": 50.058964, + "stopId": "U4141" + }, + { + "id": "U4142Z301", + "name": "Jinočany", + "isMetro": false, + "latitude": 14.262738, + "longitude": 50.028992, + "stopId": "U4142" + }, + { + "id": "U4143Z301", + "name": "Rudná zast.", + "isMetro": false, + "latitude": 14.235704, + "longitude": 50.035202, + "stopId": "U4143" + }, + { + "id": "U4145Z1", + "name": "Libušín,náměstí", + "isMetro": false, + "latitude": 14.057034, + "longitude": 50.168877, + "stopId": "U4145" + }, + { + "id": "U4145Z2", + "name": "Libušín,náměstí", + "isMetro": false, + "latitude": 14.05691, + "longitude": 50.169022, + "stopId": "U4145" + }, + { + "id": "U4146Z301", + "name": "Chocerady", + "isMetro": false, + "latitude": 14.806171, + "longitude": 49.870018, + "stopId": "U4146" + }, + { + "id": "U4147Z301", + "name": "Chvatěruby", + "isMetro": false, + "latitude": 14.337731, + "longitude": 50.239929, + "stopId": "U4147" + }, + { + "id": "U4148Z1", + "name": "Kouřim,Žel.st.", + "isMetro": false, + "latitude": 14.9858, + "longitude": 50.004623, + "stopId": "U4148" + }, + { + "id": "U4148Z2", + "name": "Kouřim,Žel.st.", + "isMetro": false, + "latitude": 14.985745, + "longitude": 50.004692, + "stopId": "U4148" + }, + { + "id": "U4148Z301", + "name": "Kouřim", + "isMetro": false, + "latitude": 14.987793, + "longitude": 50.005653, + "stopId": "U4148" + }, + { + "id": "U414Z1", + "name": "Na Mlýnku", + "isMetro": false, + "latitude": 14.373317, + "longitude": 50.111935, + "stopId": "U414" + }, + { + "id": "U414Z2", + "name": "Na Mlýnku", + "isMetro": false, + "latitude": 14.373568, + "longitude": 50.111935, + "stopId": "U414" + }, + { + "id": "U4150Z301", + "name": "Netřeba", + "isMetro": false, + "latitude": 14.422288, + "longitude": 50.260082, + "stopId": "U4150" + }, + { + "id": "U4151Z301", + "name": "Samechov", + "isMetro": false, + "latitude": 14.835159, + "longitude": 49.886131, + "stopId": "U4151" + }, + { + "id": "U4153Z1", + "name": "Vinařice,Důl Mayrau", + "isMetro": false, + "latitude": 14.085044, + "longitude": 50.165161, + "stopId": "U4153" + }, + { + "id": "U4153Z2", + "name": "Vinařice,Důl Mayrau", + "isMetro": false, + "latitude": 14.08504, + "longitude": 50.165165, + "stopId": "U4153" + }, + { + "id": "U4154Z301", + "name": "Chlumín", + "isMetro": false, + "latitude": 14.456396, + "longitude": 50.267231, + "stopId": "U4154" + }, + { + "id": "U4155Z301", + "name": "Plužiny", + "isMetro": false, + "latitude": 14.875416, + "longitude": 49.878586, + "stopId": "U4155" + }, + { + "id": "U4158Z1", + "name": "Kunice,Vidovice", + "isMetro": false, + "latitude": 14.667814, + "longitude": 49.923805, + "stopId": "U4158" + }, + { + "id": "U4158Z2", + "name": "Kunice,Vidovice", + "isMetro": false, + "latitude": 14.66755, + "longitude": 49.923744, + "stopId": "U4158" + }, + { + "id": "U4159Z1", + "name": "Černošice,Kladenská", + "isMetro": false, + "latitude": 14.319594, + "longitude": 49.9538, + "stopId": "U4159" + }, + { + "id": "U4159Z2", + "name": "Černošice,Kladenská", + "isMetro": false, + "latitude": 14.318741, + "longitude": 49.953049, + "stopId": "U4159" + }, + { + "id": "U415Z1", + "name": "Pod Dálnicí", + "isMetro": false, + "latitude": 14.461248, + "longitude": 50.045177, + "stopId": "U415" + }, + { + "id": "U415Z2", + "name": "Pod Dálnicí", + "isMetro": false, + "latitude": 14.461938, + "longitude": 50.044823, + "stopId": "U415" + }, + { + "id": "U4160Z301", + "name": "Veleliby", + "isMetro": false, + "latitude": 15.02353, + "longitude": 50.214581, + "stopId": "U4160" + }, + { + "id": "U4161Z301", + "name": "Jíkev", + "isMetro": false, + "latitude": 15.051821, + "longitude": 50.239155, + "stopId": "U4161" + }, + { + "id": "U4163Z1", + "name": "Křinec,žel.st.", + "isMetro": false, + "latitude": 15.143149, + "longitude": 50.266117, + "stopId": "U4163" + }, + { + "id": "U4163Z2", + "name": "Křinec,žel.st.", + "isMetro": false, + "latitude": 15.14312, + "longitude": 50.266411, + "stopId": "U4163" + }, + { + "id": "U4163Z301", + "name": "Křinec", + "isMetro": false, + "latitude": 15.143591, + "longitude": 50.266048, + "stopId": "U4163" + }, + { + "id": "U4164Z301", + "name": "Rožďalovice", + "isMetro": false, + "latitude": 15.18034, + "longitude": 50.299183, + "stopId": "U4164" + }, + { + "id": "U4165Z301", + "name": "Kolín dílny", + "isMetro": false, + "latitude": 15.23419, + "longitude": 50.01149, + "stopId": "U4165" + }, + { + "id": "U4166Z301", + "name": "Starý Kolín", + "isMetro": false, + "latitude": 15.296359, + "longitude": 50.011074, + "stopId": "U4166" + }, + { + "id": "U4167Z1", + "name": "Pohoří,Pohorka", + "isMetro": false, + "latitude": 14.532883, + "longitude": 49.897449, + "stopId": "U4167" + }, + { + "id": "U4167Z2", + "name": "Pohoří,Pohorka", + "isMetro": false, + "latitude": 14.532777, + "longitude": 49.897442, + "stopId": "U4167" + }, + { + "id": "U4168Z1", + "name": "Bubovice,Višňovka", + "isMetro": false, + "latitude": 14.163399, + "longitude": 49.974663, + "stopId": "U4168" + }, + { + "id": "U416Z1", + "name": "Na Padesátníku", + "isMetro": false, + "latitude": 14.289297, + "longitude": 50.102543, + "stopId": "U416" + }, + { + "id": "U416Z2", + "name": "Na Padesátníku", + "isMetro": false, + "latitude": 14.289462, + "longitude": 50.101772, + "stopId": "U416" + }, + { + "id": "U4170Z1", + "name": "K Zelenči", + "isMetro": false, + "latitude": 14.62397, + "longitude": 50.123287, + "stopId": "U4170" + }, + { + "id": "U4171Z2", + "name": "Krňovická", + "isMetro": false, + "latitude": 14.65907, + "longitude": 50.101929, + "stopId": "U4171" + }, + { + "id": "U4172Z1", + "name": "Bukovinská", + "isMetro": false, + "latitude": 14.576719, + "longitude": 50.144089, + "stopId": "U4172" + }, + { + "id": "U4172Z2", + "name": "Bukovinská", + "isMetro": false, + "latitude": 14.577458, + "longitude": 50.143883, + "stopId": "U4172" + }, + { + "id": "U4174Z1", + "name": "Wagnerova", + "isMetro": false, + "latitude": 14.527305, + "longitude": 50.036034, + "stopId": "U4174" + }, + { + "id": "U4174Z2", + "name": "Wagnerova", + "isMetro": false, + "latitude": 14.527332, + "longitude": 50.036114, + "stopId": "U4174" + }, + { + "id": "U4176Z1", + "name": "Vestec,Obchodní centrum", + "isMetro": false, + "latitude": 14.495246, + "longitude": 49.984028, + "stopId": "U4176" + }, + { + "id": "U4176Z2", + "name": "Vestec,Obchodní centrum", + "isMetro": false, + "latitude": 14.495461, + "longitude": 49.983482, + "stopId": "U4176" + }, + { + "id": "U4178Z1", + "name": "Vestec,BIOCEV", + "isMetro": false, + "latitude": 14.48804, + "longitude": 49.983486, + "stopId": "U4178" + }, + { + "id": "U4178Z2", + "name": "Vestec,BIOCEV", + "isMetro": false, + "latitude": 14.487874, + "longitude": 49.983402, + "stopId": "U4178" + }, + { + "id": "U4179Z1", + "name": "Čelákovice,Toušeňská", + "isMetro": false, + "latitude": 14.744152, + "longitude": 50.15596, + "stopId": "U4179" + }, + { + "id": "U4179Z2", + "name": "Čelákovice,Toušeňská", + "isMetro": false, + "latitude": 14.744616, + "longitude": 50.155933, + "stopId": "U4179" + }, + { + "id": "U417Z1", + "name": "Nad Pahorkem", + "isMetro": false, + "latitude": 14.487783, + "longitude": 50.042862, + "stopId": "U417" + }, + { + "id": "U4181Z1", + "name": "Tuchoměřice,U Hřiště", + "isMetro": false, + "latitude": 14.283798, + "longitude": 50.133842, + "stopId": "U4181" + }, + { + "id": "U4181Z2", + "name": "Tuchoměřice,U Hřiště", + "isMetro": false, + "latitude": 14.284065, + "longitude": 50.134689, + "stopId": "U4181" + }, + { + "id": "U4182Z1", + "name": "Beroun,Wagnerovo nám.", + "isMetro": false, + "latitude": 14.070495, + "longitude": 49.965626, + "stopId": "U4182" + }, + { + "id": "U4182Z2", + "name": "Beroun,Wagnerovo nám.", + "isMetro": false, + "latitude": 14.070487, + "longitude": 49.965439, + "stopId": "U4182" + }, + { + "id": "U4183Z1", + "name": "Krhanice,Škola", + "isMetro": false, + "latitude": 14.559396, + "longitude": 49.852673, + "stopId": "U4183" + }, + { + "id": "U4183Z2", + "name": "Krhanice,Škola", + "isMetro": false, + "latitude": 14.559423, + "longitude": 49.852619, + "stopId": "U4183" + }, + { + "id": "U4184Z301", + "name": "Čachovice", + "isMetro": false, + "latitude": 14.949008, + "longitude": 50.272488, + "stopId": "U4184" + }, + { + "id": "U4185Z301", + "name": "Chýně jih", + "isMetro": false, + "latitude": 14.221222, + "longitude": 50.051506, + "stopId": "U4185" + }, + { + "id": "U4186Z301", + "name": "Ovčáry", + "isMetro": false, + "latitude": 14.614415, + "longitude": 50.253681, + "stopId": "U4186" + }, + { + "id": "U4188Z1", + "name": "Všetaty", + "isMetro": false, + "latitude": 14.58959, + "longitude": 50.28289, + "stopId": "U4188" + }, + { + "id": "U4188Z2", + "name": "Všetaty", + "isMetro": false, + "latitude": 14.590179, + "longitude": 50.282589, + "stopId": "U4188" + }, + { + "id": "U4189Z1", + "name": "Úholičky,Na Habří", + "isMetro": false, + "latitude": 14.335155, + "longitude": 50.158195, + "stopId": "U4189" + }, + { + "id": "U418Z1", + "name": "Na Palouku", + "isMetro": false, + "latitude": 14.488652, + "longitude": 50.080326, + "stopId": "U418" + }, + { + "id": "U418Z2", + "name": "Na Palouku", + "isMetro": false, + "latitude": 14.488534, + "longitude": 50.080536, + "stopId": "U418" + }, + { + "id": "U4190Z1", + "name": "Kralupy n.Vlt.,Gymnázium", + "isMetro": false, + "latitude": 14.299709, + "longitude": 50.240101, + "stopId": "U4190" + }, + { + "id": "U4190Z2", + "name": "Kralupy n.Vlt.,Gymnázium", + "isMetro": false, + "latitude": 14.29972, + "longitude": 50.240231, + "stopId": "U4190" + }, + { + "id": "U4191Z1", + "name": "Obchodní centrum Zličín", + "isMetro": false, + "latitude": 14.29667, + "longitude": 50.049553, + "stopId": "U4191" + }, + { + "id": "U4191Z2", + "name": "Obchodní centrum Zličín", + "isMetro": false, + "latitude": 14.29783, + "longitude": 50.050423, + "stopId": "U4191" + }, + { + "id": "U4193Z1", + "name": "Kladno,Seifertova", + "isMetro": false, + "latitude": 14.096906, + "longitude": 50.163612, + "stopId": "U4193" + }, + { + "id": "U4193Z2", + "name": "Kladno,Seifertova", + "isMetro": false, + "latitude": 14.095682, + "longitude": 50.163391, + "stopId": "U4193" + }, + { + "id": "U4198Z1", + "name": "Bratronice,Dolní Bezděkov", + "isMetro": false, + "latitude": 14.035193, + "longitude": 50.08453, + "stopId": "U4198" + }, + { + "id": "U4198Z2", + "name": "Bratronice,Dolní Bezděkov", + "isMetro": false, + "latitude": 14.035015, + "longitude": 50.084427, + "stopId": "U4198" + }, + { + "id": "U4199Z1", + "name": "Bratronice,odb.Mostecký Mlýn", + "isMetro": false, + "latitude": 14.034115, + "longitude": 50.080433, + "stopId": "U4199" + }, + { + "id": "U4199Z2", + "name": "Bratronice,odb.Mostecký Mlýn", + "isMetro": false, + "latitude": 14.034036, + "longitude": 50.080414, + "stopId": "U4199" + }, + { + "id": "U419Z1", + "name": "Na Parcelách", + "isMetro": false, + "latitude": 14.335601, + "longitude": 50.1105, + "stopId": "U419" + }, + { + "id": "U419Z2", + "name": "Na Parcelách", + "isMetro": false, + "latitude": 14.334967, + "longitude": 50.110516, + "stopId": "U419" + }, + { + "id": "U4200Z1", + "name": "Jíloviště,U Mostu", + "isMetro": false, + "latitude": 14.3384, + "longitude": 49.925766, + "stopId": "U4200" + }, + { + "id": "U4200Z2", + "name": "Jíloviště,U Mostu", + "isMetro": false, + "latitude": 14.338513, + "longitude": 49.925625, + "stopId": "U4200" + }, + { + "id": "U4203Z1", + "name": "Středokluky", + "isMetro": false, + "latitude": 14.236896, + "longitude": 50.13063, + "stopId": "U4203" + }, + { + "id": "U4203Z2", + "name": "Středokluky", + "isMetro": false, + "latitude": 14.237122, + "longitude": 50.130367, + "stopId": "U4203" + }, + { + "id": "U4204Z1", + "name": "Běloky", + "isMetro": false, + "latitude": 14.220868, + "longitude": 50.132301, + "stopId": "U4204" + }, + { + "id": "U4204Z2", + "name": "Běloky", + "isMetro": false, + "latitude": 14.220604, + "longitude": 50.132248, + "stopId": "U4204" + }, + { + "id": "U4205Z1", + "name": "Tuchoměřice,Statenická", + "isMetro": false, + "latitude": 14.284505, + "longitude": 50.132381, + "stopId": "U4205" + }, + { + "id": "U4205Z2", + "name": "Tuchoměřice,Statenická", + "isMetro": false, + "latitude": 14.283381, + "longitude": 50.132706, + "stopId": "U4205" + }, + { + "id": "U4207Z1", + "name": "Plaňany,Náměstí", + "isMetro": false, + "latitude": 15.029409, + "longitude": 50.05085, + "stopId": "U4207" + }, + { + "id": "U4207Z2", + "name": "Plaňany,Náměstí", + "isMetro": false, + "latitude": 15.02964, + "longitude": 50.051014, + "stopId": "U4207" + }, + { + "id": "U4208Z1", + "name": "Bratronice,Mostecký Mlýn", + "isMetro": false, + "latitude": 14.042486, + "longitude": 50.073334, + "stopId": "U4208" + }, + { + "id": "U4208Z2", + "name": "Bratronice,Mostecký Mlýn", + "isMetro": false, + "latitude": 14.042431, + "longitude": 50.073402, + "stopId": "U4208" + }, + { + "id": "U4211Z1", + "name": "Bratronice,křižovatka", + "isMetro": false, + "latitude": 14.01919, + "longitude": 50.068939, + "stopId": "U4211" + }, + { + "id": "U4211Z2", + "name": "Bratronice,křižovatka", + "isMetro": false, + "latitude": 14.019222, + "longitude": 50.068825, + "stopId": "U4211" + }, + { + "id": "U4212Z1", + "name": "Bratronice", + "isMetro": false, + "latitude": 14.015333, + "longitude": 50.068005, + "stopId": "U4212" + }, + { + "id": "U4212Z3", + "name": "Bratronice", + "isMetro": false, + "latitude": 14.014541, + "longitude": 50.067707, + "stopId": "U4212" + }, + { + "id": "U4212Z4", + "name": "Bratronice", + "isMetro": false, + "latitude": 14.014472, + "longitude": 50.06778, + "stopId": "U4212" + }, + { + "id": "U4213Z1", + "name": "Kralupy n.Vlt.,Zeměchy", + "isMetro": false, + "latitude": 14.26727, + "longitude": 50.229919, + "stopId": "U4213" + }, + { + "id": "U4214Z1", + "name": "Kralupy n.Vlt.,Na Hrázi", + "isMetro": false, + "latitude": 14.2807, + "longitude": 50.23291, + "stopId": "U4214" + }, + { + "id": "U4214Z2", + "name": "Kralupy n.Vlt.,Na Hrázi", + "isMetro": false, + "latitude": 14.28028, + "longitude": 50.232941, + "stopId": "U4214" + }, + { + "id": "U4214Z401", + "name": "Kralupy n.Vlt.,Na Hrázi", + "isMetro": false, + "latitude": 14.2807, + "longitude": 50.23291, + "stopId": "U4214" + }, + { + "id": "U4214Z402", + "name": "Kralupy n.Vlt.,Na Hrázi", + "isMetro": false, + "latitude": 14.28028, + "longitude": 50.232941, + "stopId": "U4214" + }, + { + "id": "U4215Z1", + "name": "Kralupy n.Vlt.,Růžové údolí", + "isMetro": false, + "latitude": 14.285906, + "longitude": 50.234303, + "stopId": "U4215" + }, + { + "id": "U4215Z2", + "name": "Kralupy n.Vlt.,Růžové údolí", + "isMetro": false, + "latitude": 14.285532, + "longitude": 50.234276, + "stopId": "U4215" + }, + { + "id": "U4216Z1", + "name": "Kralupy n.Vlt.,Lidové nám.", + "isMetro": false, + "latitude": 14.29083, + "longitude": 50.236839, + "stopId": "U4216" + }, + { + "id": "U4216Z2", + "name": "Kralupy n.Vlt.,Lidové nám.", + "isMetro": false, + "latitude": 14.2905, + "longitude": 50.236797, + "stopId": "U4216" + }, + { + "id": "U421Z1", + "name": "Na Plácku", + "isMetro": false, + "latitude": 14.396595, + "longitude": 49.966228, + "stopId": "U421" + }, + { + "id": "U421Z2", + "name": "Na Plácku", + "isMetro": false, + "latitude": 14.396872, + "longitude": 49.966354, + "stopId": "U421" + }, + { + "id": "U4220Z1", + "name": "Kralupy n.Vlt.,Modrá hvězda", + "isMetro": false, + "latitude": 14.2968, + "longitude": 50.22781, + "stopId": "U4220" + }, + { + "id": "U4220Z2", + "name": "Kralupy n.Vlt.,Modrá hvězda", + "isMetro": false, + "latitude": 14.29674, + "longitude": 50.227688, + "stopId": "U4220" + }, + { + "id": "U4221Z1", + "name": "Kralupy n.Vlt.,Na Krétě", + "isMetro": false, + "latitude": 14.2915, + "longitude": 50.2328, + "stopId": "U4221" + }, + { + "id": "U4221Z2", + "name": "Kralupy n.Vlt.,Na Krétě", + "isMetro": false, + "latitude": 14.291529, + "longitude": 50.233295, + "stopId": "U4221" + }, + { + "id": "U4222Z1", + "name": "Kralupy n.Vlt.,Čechova", + "isMetro": false, + "latitude": 14.293019, + "longitude": 50.236797, + "stopId": "U4222" + }, + { + "id": "U4222Z2", + "name": "Kralupy n.Vlt.,Čechova", + "isMetro": false, + "latitude": 14.293059, + "longitude": 50.237148, + "stopId": "U4222" + }, + { + "id": "U4223Z1", + "name": "Kralupy n.Vlt.,u požárního domu", + "isMetro": false, + "latitude": 14.29684, + "longitude": 50.24036, + "stopId": "U4223" + }, + { + "id": "U4223Z2", + "name": "Kralupy n.Vlt.,u požárního domu", + "isMetro": false, + "latitude": 14.29688, + "longitude": 50.240459, + "stopId": "U4223" + }, + { + "id": "U4224Z1", + "name": "Kralupy n.Vlt.,poliklinika", + "isMetro": false, + "latitude": 14.3067, + "longitude": 50.238819, + "stopId": "U4224" + }, + { + "id": "U4224Z2", + "name": "Kralupy n.Vlt.,poliklinika", + "isMetro": false, + "latitude": 14.307179, + "longitude": 50.239048, + "stopId": "U4224" + }, + { + "id": "U4224Z3", + "name": "Kralupy n.Vlt.,poliklinika", + "isMetro": false, + "latitude": 14.306479, + "longitude": 50.23896, + "stopId": "U4224" + }, + { + "id": "U4225Z1", + "name": "Kralupy n.Vlt.,U Jízku", + "isMetro": false, + "latitude": 14.30372, + "longitude": 50.239571, + "stopId": "U4225" + }, + { + "id": "U4225Z2", + "name": "Kralupy n.Vlt.,U Jízku", + "isMetro": false, + "latitude": 14.30337, + "longitude": 50.239731, + "stopId": "U4225" + }, + { + "id": "U4226Z1", + "name": "Kralupy n.Vlt.,V Zátiší", + "isMetro": false, + "latitude": 14.30429, + "longitude": 50.238857, + "stopId": "U4226" + }, + { + "id": "U4226Z2", + "name": "Kralupy n.Vlt.,V Zátiší", + "isMetro": false, + "latitude": 14.30417, + "longitude": 50.238918, + "stopId": "U4226" + }, + { + "id": "U4228Z1", + "name": "Kralupy n.Vlt.,Lobeč", + "isMetro": false, + "latitude": 14.30153, + "longitude": 50.24556, + "stopId": "U4228" + }, + { + "id": "U4228Z2", + "name": "Kralupy n.Vlt.,Lobeč", + "isMetro": false, + "latitude": 14.30138, + "longitude": 50.24575, + "stopId": "U4228" + }, + { + "id": "U4229Z1", + "name": "Kralupy n.Vlt.,V Luhu", + "isMetro": false, + "latitude": 14.30723, + "longitude": 50.244537, + "stopId": "U4229" + }, + { + "id": "U422Z1", + "name": "Jemnická", + "isMetro": false, + "latitude": 14.458926, + "longitude": 50.049473, + "stopId": "U422" + }, + { + "id": "U422Z2", + "name": "Jemnická", + "isMetro": false, + "latitude": 14.459234, + "longitude": 50.049351, + "stopId": "U422" + }, + { + "id": "U4230Z1", + "name": "Kralupy n.Vlt.,U Cukrovaru", + "isMetro": false, + "latitude": 14.3094, + "longitude": 50.2425, + "stopId": "U4230" + }, + { + "id": "U4236Z1", + "name": "Kralupy n.Vlt.,Revoluční", + "isMetro": false, + "latitude": 14.31122, + "longitude": 50.25169, + "stopId": "U4236" + }, + { + "id": "U4236Z2", + "name": "Kralupy n.Vlt.,Revoluční", + "isMetro": false, + "latitude": 14.31102, + "longitude": 50.25119, + "stopId": "U4236" + }, + { + "id": "U4237Z1", + "name": "Kralupy n.Vlt.,Koupaliště", + "isMetro": false, + "latitude": 14.30831, + "longitude": 50.253849, + "stopId": "U4237" + }, + { + "id": "U4238Z1", + "name": "Kralupy n.Vlt.,U Parku", + "isMetro": false, + "latitude": 14.308789, + "longitude": 50.252228, + "stopId": "U4238" + }, + { + "id": "U4239Z1", + "name": "Kralupy n.Vlt.,Masarykova", + "isMetro": false, + "latitude": 14.31316, + "longitude": 50.250099, + "stopId": "U4239" + }, + { + "id": "U4239Z2", + "name": "Kralupy n.Vlt.,Masarykova", + "isMetro": false, + "latitude": 14.31327, + "longitude": 50.25016, + "stopId": "U4239" + }, + { + "id": "U423Z1", + "name": "Betáň", + "isMetro": false, + "latitude": 14.479617, + "longitude": 50.007183, + "stopId": "U423" + }, + { + "id": "U423Z2", + "name": "Betáň", + "isMetro": false, + "latitude": 14.479786, + "longitude": 50.007385, + "stopId": "U423" + }, + { + "id": "U4240Z1", + "name": "Nad Rybníkem", + "isMetro": false, + "latitude": 14.58613, + "longitude": 50.087315, + "stopId": "U4240" + }, + { + "id": "U4241Z1", + "name": "Nelahozeves,Lešany,Rozc.", + "isMetro": false, + "latitude": 14.29698, + "longitude": 50.256821, + "stopId": "U4241" + }, + { + "id": "U4241Z2", + "name": "Nelahozeves,Lešany,Rozc.", + "isMetro": false, + "latitude": 14.29657, + "longitude": 50.256859, + "stopId": "U4241" + }, + { + "id": "U4242Z1", + "name": "Nelahozeves,Lešany", + "isMetro": false, + "latitude": 14.285299, + "longitude": 50.25618, + "stopId": "U4242" + }, + { + "id": "U4243Z1", + "name": "Nelahozeves", + "isMetro": false, + "latitude": 14.29902, + "longitude": 50.260834, + "stopId": "U4243" + }, + { + "id": "U4243Z2", + "name": "Nelahozeves", + "isMetro": false, + "latitude": 14.3012, + "longitude": 50.26173, + "stopId": "U4243" + }, + { + "id": "U4244Z1", + "name": "Nelahozeves,U Nadjezdu", + "isMetro": false, + "latitude": 14.30282, + "longitude": 50.267128, + "stopId": "U4244" + }, + { + "id": "U4244Z2", + "name": "Nelahozeves,U Nadjezdu", + "isMetro": false, + "latitude": 14.302988, + "longitude": 50.266739, + "stopId": "U4244" + }, + { + "id": "U4245Z1", + "name": "Nelahozeves,Tukové záv.", + "isMetro": false, + "latitude": 14.30949, + "longitude": 50.275909, + "stopId": "U4245" + }, + { + "id": "U4245Z2", + "name": "Nelahozeves,Tukové záv.", + "isMetro": false, + "latitude": 14.309569, + "longitude": 50.275879, + "stopId": "U4245" + }, + { + "id": "U4246Z1", + "name": "Nelahozeves,U Kaštanu", + "isMetro": false, + "latitude": 14.31477, + "longitude": 50.280899, + "stopId": "U4246" + }, + { + "id": "U4246Z2", + "name": "Nelahozeves,U Kaštanu", + "isMetro": false, + "latitude": 14.314879, + "longitude": 50.281189, + "stopId": "U4246" + }, + { + "id": "U4247Z1", + "name": "Nová Ves,Miřejovice,Most", + "isMetro": false, + "latitude": 14.3159, + "longitude": 50.281349, + "stopId": "U4247" + }, + { + "id": "U4247Z2", + "name": "Nová Ves,Miřejovice,Most", + "isMetro": false, + "latitude": 14.3159, + "longitude": 50.280937, + "stopId": "U4247" + }, + { + "id": "U4248Z1", + "name": "Kralupy n.Vlt.,obchodní centrum", + "isMetro": false, + "latitude": 14.31888, + "longitude": 50.252419, + "stopId": "U4248" + }, + { + "id": "U4249Z1", + "name": "Barchovice,ObÚ", + "isMetro": false, + "latitude": 14.968304, + "longitude": 49.945377, + "stopId": "U4249" + }, + { + "id": "U4249Z2", + "name": "Barchovice,ObÚ", + "isMetro": false, + "latitude": 14.968621, + "longitude": 49.944592, + "stopId": "U4249" + }, + { + "id": "U424Z1", + "name": "Chodovská tvrz", + "isMetro": false, + "latitude": 14.500425, + "longitude": 50.032948, + "stopId": "U424" + }, + { + "id": "U424Z2", + "name": "Chodovská tvrz", + "isMetro": false, + "latitude": 14.499784, + "longitude": 50.033501, + "stopId": "U424" + }, + { + "id": "U4250Z1", + "name": "Dobřejovice,Jesenická", + "isMetro": false, + "latitude": 14.572753, + "longitude": 49.980621, + "stopId": "U4250" + }, + { + "id": "U4250Z2", + "name": "Dobřejovice,Jesenická", + "isMetro": false, + "latitude": 14.573777, + "longitude": 49.98103, + "stopId": "U4250" + }, + { + "id": "U4251Z1", + "name": "Horoměřice,Švejkova", + "isMetro": false, + "latitude": 14.348584, + "longitude": 50.131821, + "stopId": "U4251" + }, + { + "id": "U4251Z2", + "name": "Horoměřice,Švejkova", + "isMetro": false, + "latitude": 14.350123, + "longitude": 50.131794, + "stopId": "U4251" + }, + { + "id": "U4252Z1", + "name": "Tehov,Hačálka", + "isMetro": false, + "latitude": 14.679288, + "longitude": 49.97118, + "stopId": "U4252" + }, + { + "id": "U4252Z2", + "name": "Tehov,Hačálka", + "isMetro": false, + "latitude": 14.678841, + "longitude": 49.971291, + "stopId": "U4252" + }, + { + "id": "U4253Z1", + "name": "Jinočany,nádraží", + "isMetro": false, + "latitude": 14.263047, + "longitude": 50.029613, + "stopId": "U4253" + }, + { + "id": "U4253Z2", + "name": "Jinočany,nádraží", + "isMetro": false, + "latitude": 14.263165, + "longitude": 50.029156, + "stopId": "U4253" + }, + { + "id": "U4254Z1", + "name": "Jinočany,Žižkova", + "isMetro": false, + "latitude": 14.263605, + "longitude": 50.035107, + "stopId": "U4254" + }, + { + "id": "U4254Z2", + "name": "Jinočany,Žižkova", + "isMetro": false, + "latitude": 14.263279, + "longitude": 50.036366, + "stopId": "U4254" + }, + { + "id": "U4256Z1", + "name": "Mořina", + "isMetro": false, + "latitude": 14.204582, + "longitude": 49.954689, + "stopId": "U4256" + }, + { + "id": "U4256Z2", + "name": "Mořina", + "isMetro": false, + "latitude": 14.204412, + "longitude": 49.954666, + "stopId": "U4256" + }, + { + "id": "U4257Z1", + "name": "Mělník,nám.Karla IV.", + "isMetro": false, + "latitude": 14.47672, + "longitude": 50.351208, + "stopId": "U4257" + }, + { + "id": "U4258Z1", + "name": "Hlávkova", + "isMetro": false, + "latitude": 14.314583, + "longitude": 50.036823, + "stopId": "U4258" + }, + { + "id": "U4258Z2", + "name": "Hlávkova", + "isMetro": false, + "latitude": 14.313953, + "longitude": 50.035984, + "stopId": "U4258" + }, + { + "id": "U4259Z1", + "name": "Tuchoměřice,Outlet", + "isMetro": false, + "latitude": 14.279805, + "longitude": 50.124989, + "stopId": "U4259" + }, + { + "id": "U4259Z12", + "name": "Tuchoměřice,Outlet", + "isMetro": false, + "latitude": 14.280462, + "longitude": 50.124966, + "stopId": "U4259" + }, + { + "id": "U4259Z2", + "name": "Tuchoměřice,Outlet", + "isMetro": false, + "latitude": 14.280462, + "longitude": 50.124966, + "stopId": "U4259" + }, + { + "id": "U425Z1", + "name": "Na Santince", + "isMetro": false, + "latitude": 14.388584, + "longitude": 50.107021, + "stopId": "U425" + }, + { + "id": "U425Z2", + "name": "Na Santince", + "isMetro": false, + "latitude": 14.38875, + "longitude": 50.106869, + "stopId": "U425" + }, + { + "id": "U4260Z1", + "name": "Hrdlořezská", + "isMetro": false, + "latitude": 14.509547, + "longitude": 50.093784, + "stopId": "U4260" + }, + { + "id": "U4260Z2", + "name": "Hrdlořezská", + "isMetro": false, + "latitude": 14.50941, + "longitude": 50.093594, + "stopId": "U4260" + }, + { + "id": "U4261Z1", + "name": "Na Lukách", + "isMetro": false, + "latitude": 14.511467, + "longitude": 50.097408, + "stopId": "U4261" + }, + { + "id": "U4261Z2", + "name": "Na Lukách", + "isMetro": false, + "latitude": 14.511772, + "longitude": 50.097668, + "stopId": "U4261" + }, + { + "id": "U4262Z1", + "name": "Vinice Hrdlořezy", + "isMetro": false, + "latitude": 14.517855, + "longitude": 50.100166, + "stopId": "U4262" + }, + { + "id": "U426Z1", + "name": "Na Sklonku", + "isMetro": false, + "latitude": 14.36382, + "longitude": 50.066872, + "stopId": "U426" + }, + { + "id": "U426Z2", + "name": "Na Sklonku", + "isMetro": false, + "latitude": 14.364634, + "longitude": 50.066868, + "stopId": "U426" + }, + { + "id": "U4271Z1", + "name": "Radonice,Spojovací", + "isMetro": false, + "latitude": 14.610049, + "longitude": 50.142776, + "stopId": "U4271" + }, + { + "id": "U4272Z1", + "name": "Beroun,U Slavaše", + "isMetro": false, + "latitude": 14.079421, + "longitude": 49.968895, + "stopId": "U4272" + }, + { + "id": "U4273Z1", + "name": "Beroun,Brožíkova", + "isMetro": false, + "latitude": 14.080723, + "longitude": 49.968445, + "stopId": "U4273" + }, + { + "id": "U4273Z2", + "name": "Beroun,Školní náměstí", + "isMetro": false, + "latitude": 14.080786, + "longitude": 49.967552, + "stopId": "U4273" + }, + { + "id": "U4273Z301", + "name": "Beroun-Závodí", + "isMetro": false, + "latitude": 14.084722, + "longitude": 49.966419, + "stopId": "U4273" + }, + { + "id": "U4274Z1", + "name": "Beroun,PAI", + "isMetro": false, + "latitude": 14.076285, + "longitude": 49.972607, + "stopId": "U4274" + }, + { + "id": "U4274Z2", + "name": "Beroun,PAI", + "isMetro": false, + "latitude": 14.075592, + "longitude": 49.973957, + "stopId": "U4274" + }, + { + "id": "U4275Z1", + "name": "Hořovice,u hřbitova", + "isMetro": false, + "latitude": 13.911618, + "longitude": 49.835499, + "stopId": "U4275" + }, + { + "id": "U4275Z2", + "name": "Hořovice,u hřbitova", + "isMetro": false, + "latitude": 13.911953, + "longitude": 49.835445, + "stopId": "U4275" + }, + { + "id": "U4279Z1", + "name": "Davle,Portus", + "isMetro": false, + "latitude": 14.390864, + "longitude": 49.875732, + "stopId": "U4279" + }, + { + "id": "U427Z1", + "name": "Na Smetance", + "isMetro": false, + "latitude": 14.437651, + "longitude": 50.079952, + "stopId": "U427" + }, + { + "id": "U427Z2", + "name": "Na Smetance", + "isMetro": false, + "latitude": 14.438117, + "longitude": 50.080051, + "stopId": "U427" + }, + { + "id": "U4281Z1", + "name": "Senohraby,U Školy", + "isMetro": false, + "latitude": 14.722077, + "longitude": 49.895679, + "stopId": "U4281" + }, + { + "id": "U4281Z2", + "name": "Senohraby,U Školy", + "isMetro": false, + "latitude": 14.723408, + "longitude": 49.896091, + "stopId": "U4281" + }, + { + "id": "U4283Z1", + "name": "Všeradice", + "isMetro": false, + "latitude": 14.105185, + "longitude": 49.872952, + "stopId": "U4283" + }, + { + "id": "U4283Z2", + "name": "Všeradice", + "isMetro": false, + "latitude": 14.105485, + "longitude": 49.872829, + "stopId": "U4283" + }, + { + "id": "U4283Z401", + "name": "Všeradice", + "isMetro": false, + "latitude": 14.105185, + "longitude": 49.872952, + "stopId": "U4283" + }, + { + "id": "U4283Z402", + "name": "Všeradice", + "isMetro": false, + "latitude": 14.105485, + "longitude": 49.872829, + "stopId": "U4283" + }, + { + "id": "U4284Z1", + "name": "Nesvačily", + "isMetro": false, + "latitude": 14.124716, + "longitude": 49.880714, + "stopId": "U4284" + }, + { + "id": "U4284Z401", + "name": "Nesvačily", + "isMetro": false, + "latitude": 14.124716, + "longitude": 49.880714, + "stopId": "U4284" + }, + { + "id": "U4284Z402", + "name": "Nesvačily", + "isMetro": false, + "latitude": 14.12485, + "longitude": 49.880764, + "stopId": "U4284" + }, + { + "id": "U428Z1", + "name": "Na Srpečku", + "isMetro": false, + "latitude": 14.399875, + "longitude": 50.037975, + "stopId": "U428" + }, + { + "id": "U428Z2", + "name": "Na Srpečku", + "isMetro": false, + "latitude": 14.400054, + "longitude": 50.037853, + "stopId": "U428" + }, + { + "id": "U4292Z1", + "name": "Čelákovice,Jiřinská", + "isMetro": false, + "latitude": 14.75747, + "longitude": 50.162857, + "stopId": "U4292" + }, + { + "id": "U4292Z2", + "name": "Čelákovice,Jiřinská", + "isMetro": false, + "latitude": 14.757639, + "longitude": 50.163174, + "stopId": "U4292" + }, + { + "id": "U4293Z301", + "name": "Dobrá Voda u Březnice", + "isMetro": false, + "latitude": 13.99946, + "longitude": 49.556141, + "stopId": "U4293" + }, + { + "id": "U4294Z301", + "name": "Myslín", + "isMetro": false, + "latitude": 14.023927, + "longitude": 49.529564, + "stopId": "U4294" + }, + { + "id": "U4295Z301", + "name": "Mirovice", + "isMetro": false, + "latitude": 14.034429, + "longitude": 49.50988, + "stopId": "U4295" + }, + { + "id": "U4298Z1", + "name": "Nové Strašecí,Palackého", + "isMetro": false, + "latitude": 13.899498, + "longitude": 50.152447, + "stopId": "U4298" + }, + { + "id": "U4298Z2", + "name": "Nové Strašecí,Palackého", + "isMetro": false, + "latitude": 13.898819, + "longitude": 50.152634, + "stopId": "U4298" + }, + { + "id": "U4299Z1", + "name": "Rynholec", + "isMetro": false, + "latitude": 13.921685, + "longitude": 50.138924, + "stopId": "U4299" + }, + { + "id": "U4299Z2", + "name": "Rynholec", + "isMetro": false, + "latitude": 13.921854, + "longitude": 50.138931, + "stopId": "U4299" + }, + { + "id": "U429Z1", + "name": "Na Strži", + "isMetro": false, + "latitude": 14.4375, + "longitude": 50.043518, + "stopId": "U429" + }, + { + "id": "U429Z2", + "name": "Na Strži", + "isMetro": false, + "latitude": 14.438355, + "longitude": 50.043259, + "stopId": "U429" + }, + { + "id": "U429Z3", + "name": "Na Strži", + "isMetro": false, + "latitude": 14.439668, + "longitude": 50.043198, + "stopId": "U429" + }, + { + "id": "U429Z5", + "name": "Na Strži", + "isMetro": false, + "latitude": 14.439211, + "longitude": 50.044003, + "stopId": "U429" + }, + { + "id": "U42Z1", + "name": "Botanická zahrada", + "isMetro": false, + "latitude": 14.419606, + "longitude": 50.070499, + "stopId": "U42" + }, + { + "id": "U42Z2", + "name": "Botanická zahrada", + "isMetro": false, + "latitude": 14.418922, + "longitude": 50.071053, + "stopId": "U42" + }, + { + "id": "U4300Z1", + "name": "Rakovník,sokolovna", + "isMetro": false, + "latitude": 13.732703, + "longitude": 50.102501, + "stopId": "U4300" + }, + { + "id": "U4300Z2", + "name": "Rakovník,sokolovna", + "isMetro": false, + "latitude": 13.733142, + "longitude": 50.102386, + "stopId": "U4300" + }, + { + "id": "U4301Z1", + "name": "Makotřasy,rozcestí", + "isMetro": false, + "latitude": 14.213698, + "longitude": 50.147377, + "stopId": "U4301" + }, + { + "id": "U4301Z2", + "name": "Makotřasy,rozcestí", + "isMetro": false, + "latitude": 14.214679, + "longitude": 50.147274, + "stopId": "U4301" + }, + { + "id": "U4302Z1", + "name": "Lidice,Památník", + "isMetro": false, + "latitude": 14.199353, + "longitude": 50.146812, + "stopId": "U4302" + }, + { + "id": "U4302Z2", + "name": "Lidice,Památník", + "isMetro": false, + "latitude": 14.199374, + "longitude": 50.146362, + "stopId": "U4302" + }, + { + "id": "U4303Z1", + "name": "Buštěhrad", + "isMetro": false, + "latitude": 14.1896, + "longitude": 50.154358, + "stopId": "U4303" + }, + { + "id": "U4303Z2", + "name": "Buštěhrad", + "isMetro": false, + "latitude": 14.189729, + "longitude": 50.154217, + "stopId": "U4303" + }, + { + "id": "U4304Z1", + "name": "Buštěhrad,U Kahance", + "isMetro": false, + "latitude": 14.181309, + "longitude": 50.151505, + "stopId": "U4304" + }, + { + "id": "U4304Z2", + "name": "Buštěhrad,U Kahance", + "isMetro": false, + "latitude": 14.18159, + "longitude": 50.151436, + "stopId": "U4304" + }, + { + "id": "U4306Z1", + "name": "Kladno,Pražská křiž.", + "isMetro": false, + "latitude": 14.126181, + "longitude": 50.136124, + "stopId": "U4306" + }, + { + "id": "U4306Z2", + "name": "Kladno,Pražská křiž.", + "isMetro": false, + "latitude": 14.125877, + "longitude": 50.135899, + "stopId": "U4306" + }, + { + "id": "U4306Z3", + "name": "Kladno,Pražská křiž.", + "isMetro": false, + "latitude": 14.124881, + "longitude": 50.135307, + "stopId": "U4306" + }, + { + "id": "U4308Z1", + "name": "Kladno,U Hvězdy", + "isMetro": false, + "latitude": 14.113318, + "longitude": 50.132755, + "stopId": "U4308" + }, + { + "id": "U4308Z2", + "name": "Kladno,U Hvězdy", + "isMetro": false, + "latitude": 14.114311, + "longitude": 50.13279, + "stopId": "U4308" + }, + { + "id": "U430Z1", + "name": "Na Štamberku", + "isMetro": false, + "latitude": 14.478628, + "longitude": 50.146568, + "stopId": "U430" + }, + { + "id": "U430Z2", + "name": "Na Štamberku", + "isMetro": false, + "latitude": 14.481596, + "longitude": 50.147076, + "stopId": "U430" + }, + { + "id": "U430Z3", + "name": "Na Štamberku", + "isMetro": false, + "latitude": 14.482121, + "longitude": 50.147297, + "stopId": "U430" + }, + { + "id": "U4310Z1", + "name": "Kladno,Sítná", + "isMetro": false, + "latitude": 14.104076, + "longitude": 50.136333, + "stopId": "U4310" + }, + { + "id": "U4310Z2", + "name": "Kladno,Sítná", + "isMetro": false, + "latitude": 14.103766, + "longitude": 50.13628, + "stopId": "U4310" + }, + { + "id": "U4312Z1", + "name": "Kladno,u tržnice", + "isMetro": false, + "latitude": 14.125078, + "longitude": 50.132942, + "stopId": "U4312" + }, + { + "id": "U4313Z3", + "name": "Kladno,nám.Svobody", + "isMetro": false, + "latitude": 14.094151, + "longitude": 50.145279, + "stopId": "U4313" + }, + { + "id": "U4313Z6", + "name": "Kladno,nám.Svobody", + "isMetro": false, + "latitude": 14.093597, + "longitude": 50.144745, + "stopId": "U4313" + }, + { + "id": "U4313Z7", + "name": "Kladno,nám.Svobody", + "isMetro": false, + "latitude": 14.092726, + "longitude": 50.14439, + "stopId": "U4313" + }, + { + "id": "U4313Z8", + "name": "Kladno,nám.Svobody", + "isMetro": false, + "latitude": 14.095881, + "longitude": 50.145737, + "stopId": "U4313" + }, + { + "id": "U4313Z9", + "name": "Kladno,nám.Svobody", + "isMetro": false, + "latitude": 14.09595, + "longitude": 50.146011, + "stopId": "U4313" + }, + { + "id": "U4314Z1", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.105816, + "longitude": 50.146084, + "stopId": "U4314" + }, + { + "id": "U4314Z10", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.106173, + "longitude": 50.146019, + "stopId": "U4314" + }, + { + "id": "U4314Z11", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.106315, + "longitude": 50.145836, + "stopId": "U4314" + }, + { + "id": "U4314Z18", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.105472, + "longitude": 50.146278, + "stopId": "U4314" + }, + { + "id": "U4314Z2", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.105905, + "longitude": 50.145939, + "stopId": "U4314" + }, + { + "id": "U4314Z3", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.105988, + "longitude": 50.145763, + "stopId": "U4314" + }, + { + "id": "U4314Z4", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.106103, + "longitude": 50.145588, + "stopId": "U4314" + }, + { + "id": "U4314Z9", + "name": "Kladno,autobusové nádraží", + "isMetro": false, + "latitude": 14.106113, + "longitude": 50.146168, + "stopId": "U4314" + }, + { + "id": "U4315Z1", + "name": "Kladno,Meta", + "isMetro": false, + "latitude": 14.13735, + "longitude": 50.134922, + "stopId": "U4315" + }, + { + "id": "U4315Z2", + "name": "Kladno,Meta", + "isMetro": false, + "latitude": 14.137663, + "longitude": 50.134655, + "stopId": "U4315" + }, + { + "id": "U4316Z1", + "name": "Kladno,Okrsek 4", + "isMetro": false, + "latitude": 14.136919, + "longitude": 50.130589, + "stopId": "U4316" + }, + { + "id": "U4316Z2", + "name": "Kladno,Okrsek 4", + "isMetro": false, + "latitude": 14.138144, + "longitude": 50.131554, + "stopId": "U4316" + }, + { + "id": "U4316Z5", + "name": "Kladno,Okrsek 4", + "isMetro": false, + "latitude": 14.137653, + "longitude": 50.130527, + "stopId": "U4316" + }, + { + "id": "U4317Z1", + "name": "Kladno,Růžové pole", + "isMetro": false, + "latitude": 14.128742, + "longitude": 50.128304, + "stopId": "U4317" + }, + { + "id": "U4317Z2", + "name": "Kladno,Růžové pole", + "isMetro": false, + "latitude": 14.129498, + "longitude": 50.128258, + "stopId": "U4317" + }, + { + "id": "U4318Z1", + "name": "Kladno,Americká", + "isMetro": false, + "latitude": 14.12335, + "longitude": 50.127247, + "stopId": "U4318" + }, + { + "id": "U4318Z2", + "name": "Kladno,Americká", + "isMetro": false, + "latitude": 14.123423, + "longitude": 50.127087, + "stopId": "U4318" + }, + { + "id": "U431Z1", + "name": "Pekárenská", + "isMetro": false, + "latitude": 14.463355, + "longitude": 50.049072, + "stopId": "U431" + }, + { + "id": "U4320Z1", + "name": "Kladno,u Kauflandu", + "isMetro": false, + "latitude": 14.114273, + "longitude": 50.130299, + "stopId": "U4320" + }, + { + "id": "U4320Z2", + "name": "Kladno,u Kauflandu", + "isMetro": false, + "latitude": 14.11589, + "longitude": 50.129124, + "stopId": "U4320" + }, + { + "id": "U4321Z1", + "name": "Kladno,ČSAD", + "isMetro": false, + "latitude": 14.104455, + "longitude": 50.130295, + "stopId": "U4321" + }, + { + "id": "U4321Z2", + "name": "Kladno,ČSAD", + "isMetro": false, + "latitude": 14.104247, + "longitude": 50.130211, + "stopId": "U4321" + }, + { + "id": "U4325Z1", + "name": "Kladno,u nemocnice", + "isMetro": false, + "latitude": 14.088036, + "longitude": 50.142818, + "stopId": "U4325" + }, + { + "id": "U4325Z2", + "name": "Kladno,u nemocnice", + "isMetro": false, + "latitude": 14.088583, + "longitude": 50.142723, + "stopId": "U4325" + }, + { + "id": "U4327Z1", + "name": "Kladno,Vašíčkova", + "isMetro": false, + "latitude": 14.069658, + "longitude": 50.144737, + "stopId": "U4327" + }, + { + "id": "U4327Z2", + "name": "Kladno,Vašíčkova", + "isMetro": false, + "latitude": 14.069377, + "longitude": 50.144783, + "stopId": "U4327" + }, + { + "id": "U4328Z1", + "name": "Kladno,Energie", + "isMetro": false, + "latitude": 14.069927, + "longitude": 50.147446, + "stopId": "U4328" + }, + { + "id": "U4328Z2", + "name": "Kladno,Energie", + "isMetro": false, + "latitude": 14.069286, + "longitude": 50.147297, + "stopId": "U4328" + }, + { + "id": "U4329Z1", + "name": "Kladno,Havlíčkovo náměstí", + "isMetro": false, + "latitude": 14.107145, + "longitude": 50.166824, + "stopId": "U4329" + }, + { + "id": "U4329Z2", + "name": "Kladno,Havlíčkovo náměstí", + "isMetro": false, + "latitude": 14.106869, + "longitude": 50.1674, + "stopId": "U4329" + }, + { + "id": "U432Z1", + "name": "Na Vaňhově", + "isMetro": false, + "latitude": 14.626108, + "longitude": 50.080086, + "stopId": "U432" + }, + { + "id": "U432Z2", + "name": "Na Vaňhově", + "isMetro": false, + "latitude": 14.627211, + "longitude": 50.080196, + "stopId": "U432" + }, + { + "id": "U4330Z301", + "name": "Zlonice", + "isMetro": false, + "latitude": 14.078166, + "longitude": 50.285004, + "stopId": "U4330" + }, + { + "id": "U4332Z1", + "name": "Malé Přítočno,U Hrnčírny", + "isMetro": false, + "latitude": 14.137279, + "longitude": 50.107025, + "stopId": "U4332" + }, + { + "id": "U4332Z2", + "name": "Malé Přítočno,U Hrnčírny", + "isMetro": false, + "latitude": 14.137424, + "longitude": 50.106754, + "stopId": "U4332" + }, + { + "id": "U4335Z1", + "name": "Tismice,Hřbitov", + "isMetro": false, + "latitude": 14.825411, + "longitude": 50.055161, + "stopId": "U4335" + }, + { + "id": "U4335Z2", + "name": "Tismice,Hřbitov", + "isMetro": false, + "latitude": 14.82572, + "longitude": 50.054665, + "stopId": "U4335" + }, + { + "id": "U4336Z1", + "name": "Beroun,Plzeňská brána", + "isMetro": false, + "latitude": 14.069523, + "longitude": 49.962608, + "stopId": "U4336" + }, + { + "id": "U4336Z2", + "name": "Beroun,Plzeňská brána", + "isMetro": false, + "latitude": 14.069151, + "longitude": 49.962231, + "stopId": "U4336" + }, + { + "id": "U4337Z1", + "name": "Beroun,pod dálnicí", + "isMetro": false, + "latitude": 14.070647, + "longitude": 49.957699, + "stopId": "U4337" + }, + { + "id": "U4337Z2", + "name": "Beroun,pod dálnicí", + "isMetro": false, + "latitude": 14.070881, + "longitude": 49.957844, + "stopId": "U4337" + }, + { + "id": "U4338Z1", + "name": "Rakovník,Na Sekyře", + "isMetro": false, + "latitude": 13.730591, + "longitude": 50.1026, + "stopId": "U4338" + }, + { + "id": "U4338Z2", + "name": "Rakovník,Na Sekyře", + "isMetro": false, + "latitude": 13.728668, + "longitude": 50.102985, + "stopId": "U4338" + }, + { + "id": "U433Z1", + "name": "Na Veselí", + "isMetro": false, + "latitude": 14.441221, + "longitude": 50.05624, + "stopId": "U433" + }, + { + "id": "U433Z2", + "name": "Na Veselí", + "isMetro": false, + "latitude": 14.441419, + "longitude": 50.05658, + "stopId": "U433" + }, + { + "id": "U433Z3", + "name": "Na Veselí", + "isMetro": false, + "latitude": 14.438859, + "longitude": 50.054554, + "stopId": "U433" + }, + { + "id": "U433Z4", + "name": "Na Veselí", + "isMetro": false, + "latitude": 14.43901, + "longitude": 50.054752, + "stopId": "U433" + }, + { + "id": "U4340Z1", + "name": "Rakovník,Čs.legií", + "isMetro": false, + "latitude": 13.725648, + "longitude": 50.103771, + "stopId": "U4340" + }, + { + "id": "U4340Z2", + "name": "Rakovník,Čs.legií", + "isMetro": false, + "latitude": 13.725137, + "longitude": 50.104733, + "stopId": "U4340" + }, + { + "id": "U4348Z2", + "name": "Benátky n.Jiz.,Husovo nám.", + "isMetro": false, + "latitude": 14.826429, + "longitude": 50.291874, + "stopId": "U4348" + }, + { + "id": "U4349Z301", + "name": "Mělnická Vrutice", + "isMetro": false, + "latitude": 14.546588, + "longitude": 50.344353, + "stopId": "U4349" + }, + { + "id": "U434Z1", + "name": "Na Viničkách", + "isMetro": false, + "latitude": 14.352182, + "longitude": 49.980045, + "stopId": "U434" + }, + { + "id": "U4350Z301", + "name": "Hleďsebe", + "isMetro": false, + "latitude": 14.562495, + "longitude": 50.363689, + "stopId": "U4350" + }, + { + "id": "U4351Z301", + "name": "Lhotka u Mělníka zast.", + "isMetro": false, + "latitude": 14.55099, + "longitude": 50.373322, + "stopId": "U4351" + }, + { + "id": "U4352Z1", + "name": "Lhotka,žel.st.", + "isMetro": false, + "latitude": 14.542232, + "longitude": 50.38102, + "stopId": "U4352" + }, + { + "id": "U4352Z2", + "name": "Lhotka,žel.st.", + "isMetro": false, + "latitude": 14.542117, + "longitude": 50.38102, + "stopId": "U4352" + }, + { + "id": "U4352Z3", + "name": "Lhotka,žel.st.", + "isMetro": false, + "latitude": 14.541499, + "longitude": 50.381435, + "stopId": "U4352" + }, + { + "id": "U4352Z301", + "name": "Lhotka u Mělníka", + "isMetro": false, + "latitude": 14.541856, + "longitude": 50.381958, + "stopId": "U4352" + }, + { + "id": "U4352Z4", + "name": "Lhotka,žel.st.", + "isMetro": false, + "latitude": 14.541494, + "longitude": 50.381401, + "stopId": "U4352" + }, + { + "id": "U4353Z301", + "name": "Nebužely", + "isMetro": false, + "latitude": 14.589688, + "longitude": 50.386192, + "stopId": "U4353" + }, + { + "id": "U4354Z1", + "name": "Řepín,Živonín,žel.zast.", + "isMetro": false, + "latitude": 14.613298, + "longitude": 50.393139, + "stopId": "U4354" + }, + { + "id": "U4354Z2", + "name": "Řepín,Živonín,žel.zast.", + "isMetro": false, + "latitude": 14.613074, + "longitude": 50.393074, + "stopId": "U4354" + }, + { + "id": "U4354Z301", + "name": "Živonín", + "isMetro": false, + "latitude": 14.613106, + "longitude": 50.393978, + "stopId": "U4354" + }, + { + "id": "U4355Z1", + "name": "Kanina,žel.zast.", + "isMetro": false, + "latitude": 14.617842, + "longitude": 50.414345, + "stopId": "U4355" + }, + { + "id": "U4355Z2", + "name": "Kanina,žel.zast.", + "isMetro": false, + "latitude": 14.617786, + "longitude": 50.414211, + "stopId": "U4355" + }, + { + "id": "U4355Z301", + "name": "Kanina", + "isMetro": false, + "latitude": 14.614871, + "longitude": 50.41568, + "stopId": "U4355" + }, + { + "id": "U4356Z1", + "name": "Mšeno,žel.st.", + "isMetro": false, + "latitude": 14.640411, + "longitude": 50.435982, + "stopId": "U4356" + }, + { + "id": "U4356Z2", + "name": "Mšeno,škola", + "isMetro": false, + "latitude": 14.638499, + "longitude": 50.437134, + "stopId": "U4356" + }, + { + "id": "U4356Z3", + "name": "Mšeno,škola", + "isMetro": false, + "latitude": 14.638706, + "longitude": 50.43718, + "stopId": "U4356" + }, + { + "id": "U4356Z301", + "name": "Mšeno", + "isMetro": false, + "latitude": 14.640865, + "longitude": 50.43573, + "stopId": "U4356" + }, + { + "id": "U435Z1", + "name": "Na Vrchách", + "isMetro": false, + "latitude": 14.587667, + "longitude": 50.039452, + "stopId": "U435" + }, + { + "id": "U435Z2", + "name": "Na Vrchách", + "isMetro": false, + "latitude": 14.587884, + "longitude": 50.039398, + "stopId": "U435" + }, + { + "id": "U435Z3", + "name": "Na Vrchách", + "isMetro": false, + "latitude": 14.588469, + "longitude": 50.037857, + "stopId": "U435" + }, + { + "id": "U435Z4", + "name": "Na Vrchách", + "isMetro": false, + "latitude": 14.587914, + "longitude": 50.037666, + "stopId": "U435" + }, + { + "id": "U4362Z1", + "name": "Kladno,zdrav.stř.", + "isMetro": false, + "latitude": 14.126094, + "longitude": 50.130173, + "stopId": "U4362" + }, + { + "id": "U4362Z2", + "name": "Kladno,zdrav.stř.", + "isMetro": false, + "latitude": 14.126156, + "longitude": 50.129066, + "stopId": "U4362" + }, + { + "id": "U4363Z1", + "name": "Nová Ves,Rozc.", + "isMetro": false, + "latitude": 14.314283, + "longitude": 50.30875, + "stopId": "U4363" + }, + { + "id": "U4363Z2", + "name": "Nová Ves,Rozc.", + "isMetro": false, + "latitude": 14.3145, + "longitude": 50.308681, + "stopId": "U4363" + }, + { + "id": "U4364Z1", + "name": "Nová Ves", + "isMetro": false, + "latitude": 14.3097, + "longitude": 50.312851, + "stopId": "U4364" + }, + { + "id": "U4364Z2", + "name": "Nová Ves", + "isMetro": false, + "latitude": 14.309784, + "longitude": 50.312908, + "stopId": "U4364" + }, + { + "id": "U4364Z3", + "name": "Nová Ves", + "isMetro": false, + "latitude": 14.309813, + "longitude": 50.313019, + "stopId": "U4364" + }, + { + "id": "U4365Z1", + "name": "Ledčice,Rozc.", + "isMetro": false, + "latitude": 14.283684, + "longitude": 50.335281, + "stopId": "U4365" + }, + { + "id": "U4365Z2", + "name": "Ledčice,Rozc.", + "isMetro": false, + "latitude": 14.283934, + "longitude": 50.335384, + "stopId": "U4365" + }, + { + "id": "U4366Z1", + "name": "Ledčice", + "isMetro": false, + "latitude": 14.294267, + "longitude": 50.341114, + "stopId": "U4366" + }, + { + "id": "U4366Z2", + "name": "Ledčice", + "isMetro": false, + "latitude": 14.293879, + "longitude": 50.340973, + "stopId": "U4366" + }, + { + "id": "U4367Z2", + "name": "Černouček", + "isMetro": false, + "latitude": 14.307217, + "longitude": 50.360966, + "stopId": "U4367" + }, + { + "id": "U4368Z1", + "name": "Dobrovice,Sýčina", + "isMetro": false, + "latitude": 14.936271, + "longitude": 50.366695, + "stopId": "U4368" + }, + { + "id": "U4368Z2", + "name": "Dobrovice,Sýčina", + "isMetro": false, + "latitude": 14.936076, + "longitude": 50.366673, + "stopId": "U4368" + }, + { + "id": "U4368Z3", + "name": "Dobrovice,Sýčina,Nádražní", + "isMetro": false, + "latitude": 14.937634, + "longitude": 50.366783, + "stopId": "U4368" + }, + { + "id": "U4368Z4", + "name": "Dobrovice,Sýčina,Nádražní", + "isMetro": false, + "latitude": 14.937545, + "longitude": 50.366726, + "stopId": "U4368" + }, + { + "id": "U436Z1", + "name": "Na Vrstevnici", + "isMetro": false, + "latitude": 14.435334, + "longitude": 50.036652, + "stopId": "U436" + }, + { + "id": "U436Z2", + "name": "Na Vrstevnici", + "isMetro": false, + "latitude": 14.436484, + "longitude": 50.036434, + "stopId": "U436" + }, + { + "id": "U4371Z1", + "name": "Spomyšl", + "isMetro": false, + "latitude": 14.36055, + "longitude": 50.334118, + "stopId": "U4371" + }, + { + "id": "U4371Z2", + "name": "Spomyšl", + "isMetro": false, + "latitude": 14.36055, + "longitude": 50.334118, + "stopId": "U4371" + }, + { + "id": "U4372Z1", + "name": "Spomyšl,U Lávky", + "isMetro": false, + "latitude": 14.368166, + "longitude": 50.336117, + "stopId": "U4372" + }, + { + "id": "U4372Z2", + "name": "Spomyšl,U Lávky", + "isMetro": false, + "latitude": 14.367416, + "longitude": 50.335983, + "stopId": "U4372" + }, + { + "id": "U4373Z1", + "name": "Vraňany,U Nadjezdu", + "isMetro": false, + "latitude": 14.377867, + "longitude": 50.338215, + "stopId": "U4373" + }, + { + "id": "U4373Z2", + "name": "Vraňany,U Nadjezdu", + "isMetro": false, + "latitude": 14.377883, + "longitude": 50.33815, + "stopId": "U4373" + }, + { + "id": "U4374Z1", + "name": "Vraňany,Škola", + "isMetro": false, + "latitude": 14.363299, + "longitude": 50.319065, + "stopId": "U4374" + }, + { + "id": "U4374Z2", + "name": "Vraňany,Škola", + "isMetro": false, + "latitude": 14.363417, + "longitude": 50.319183, + "stopId": "U4374" + }, + { + "id": "U4376Z1", + "name": "Vraňany,Mlčechvosty", + "isMetro": false, + "latitude": 14.3399, + "longitude": 50.318649, + "stopId": "U4376" + }, + { + "id": "U437Z1", + "name": "Slavínského", + "isMetro": false, + "latitude": 14.385565, + "longitude": 50.033161, + "stopId": "U437" + }, + { + "id": "U437Z2", + "name": "Slavínského", + "isMetro": false, + "latitude": 14.386137, + "longitude": 50.032734, + "stopId": "U437" + }, + { + "id": "U437Z3", + "name": "Slavínského", + "isMetro": false, + "latitude": 14.386228, + "longitude": 50.03331, + "stopId": "U437" + }, + { + "id": "U4383Z1", + "name": "Hořín,Brozánky", + "isMetro": false, + "latitude": 14.459249, + "longitude": 50.349331, + "stopId": "U4383" + }, + { + "id": "U4383Z2", + "name": "Hořín,Brozánky", + "isMetro": false, + "latitude": 14.459567, + "longitude": 50.349464, + "stopId": "U4383" + }, + { + "id": "U4384Z1", + "name": "Býkev", + "isMetro": false, + "latitude": 14.4168, + "longitude": 50.347164, + "stopId": "U4384" + }, + { + "id": "U4385Z1", + "name": "Býkev,Jenišovice", + "isMetro": false, + "latitude": 14.401533, + "longitude": 50.347065, + "stopId": "U4385" + }, + { + "id": "U4385Z2", + "name": "Býkev,Jenišovice", + "isMetro": false, + "latitude": 14.401683, + "longitude": 50.346931, + "stopId": "U4385" + }, + { + "id": "U4386Z1", + "name": "Kostomlaty n.L.,rozcestí Vápensko", + "isMetro": false, + "latitude": 14.924382, + "longitude": 50.225899, + "stopId": "U4386" + }, + { + "id": "U4386Z2", + "name": "Kostomlaty n.L.,rozcestí Vápensko", + "isMetro": false, + "latitude": 14.924381, + "longitude": 50.226063, + "stopId": "U4386" + }, + { + "id": "U4389Z1", + "name": "Dolany", + "isMetro": false, + "latitude": 14.149367, + "longitude": 50.115871, + "stopId": "U4389" + }, + { + "id": "U4389Z2", + "name": "Dolany", + "isMetro": false, + "latitude": 14.149202, + "longitude": 50.115742, + "stopId": "U4389" + }, + { + "id": "U438Z1", + "name": "Krahulčí", + "isMetro": false, + "latitude": 14.60406, + "longitude": 50.107101, + "stopId": "U438" + }, + { + "id": "U438Z2", + "name": "Krahulčí", + "isMetro": false, + "latitude": 14.603551, + "longitude": 50.10775, + "stopId": "U438" + }, + { + "id": "U4390Z1", + "name": "Hřebeč,Netřeby", + "isMetro": false, + "latitude": 14.153031, + "longitude": 50.131702, + "stopId": "U4390" + }, + { + "id": "U4390Z2", + "name": "Hřebeč,Netřeby", + "isMetro": false, + "latitude": 14.152602, + "longitude": 50.131447, + "stopId": "U4390" + }, + { + "id": "U4391Z1", + "name": "Hřebeč", + "isMetro": false, + "latitude": 14.160044, + "longitude": 50.137768, + "stopId": "U4391" + }, + { + "id": "U4391Z2", + "name": "Hřebeč", + "isMetro": false, + "latitude": 14.160338, + "longitude": 50.137745, + "stopId": "U4391" + }, + { + "id": "U4391Z3", + "name": "Hřebeč", + "isMetro": false, + "latitude": 14.158761, + "longitude": 50.136742, + "stopId": "U4391" + }, + { + "id": "U4391Z4", + "name": "Hřebeč", + "isMetro": false, + "latitude": 14.158317, + "longitude": 50.136551, + "stopId": "U4391" + }, + { + "id": "U4392Z1", + "name": "Lidice,ObÚ", + "isMetro": false, + "latitude": 14.189911, + "longitude": 50.143391, + "stopId": "U4392" + }, + { + "id": "U4392Z2", + "name": "Lidice,ObÚ", + "isMetro": false, + "latitude": 14.19017, + "longitude": 50.143799, + "stopId": "U4392" + }, + { + "id": "U4393Z1", + "name": "Makotřasy,náves", + "isMetro": false, + "latitude": 14.215149, + "longitude": 50.144215, + "stopId": "U4393" + }, + { + "id": "U4393Z2", + "name": "Makotřasy,náves", + "isMetro": false, + "latitude": 14.215271, + "longitude": 50.144447, + "stopId": "U4393" + }, + { + "id": "U4394Z1", + "name": "Středokluky,Nad Běloky", + "isMetro": false, + "latitude": 14.229116, + "longitude": 50.131664, + "stopId": "U4394" + }, + { + "id": "U4394Z2", + "name": "Středokluky,Nad Běloky", + "isMetro": false, + "latitude": 14.228166, + "longitude": 50.131634, + "stopId": "U4394" + }, + { + "id": "U4396Z1", + "name": "Středokluky,U Školy", + "isMetro": false, + "latitude": 14.237248, + "longitude": 50.132179, + "stopId": "U4396" + }, + { + "id": "U4396Z2", + "name": "Středokluky,U Školy", + "isMetro": false, + "latitude": 14.23698, + "longitude": 50.13232, + "stopId": "U4396" + }, + { + "id": "U4397Z1", + "name": "Buštěhrad,Bouchalka", + "isMetro": false, + "latitude": 14.208235, + "longitude": 50.161354, + "stopId": "U4397" + }, + { + "id": "U4397Z2", + "name": "Buštěhrad,Bouchalka", + "isMetro": false, + "latitude": 14.207959, + "longitude": 50.161076, + "stopId": "U4397" + }, + { + "id": "U4398Z1", + "name": "Stehelčeves,ObÚ", + "isMetro": false, + "latitude": 14.191135, + "longitude": 50.171154, + "stopId": "U4398" + }, + { + "id": "U4398Z2", + "name": "Stehelčeves,ObÚ", + "isMetro": false, + "latitude": 14.191072, + "longitude": 50.170776, + "stopId": "U4398" + }, + { + "id": "U4399Z1", + "name": "Stehelčeves,u brůdku", + "isMetro": false, + "latitude": 14.191021, + "longitude": 50.173824, + "stopId": "U4399" + }, + { + "id": "U4399Z2", + "name": "Stehelčeves,u brůdku", + "isMetro": false, + "latitude": 14.190836, + "longitude": 50.173965, + "stopId": "U4399" + }, + { + "id": "U439Z1", + "name": "Nábřeží Kapitána Jaroše", + "isMetro": false, + "latitude": 14.431299, + "longitude": 50.096321, + "stopId": "U439" + }, + { + "id": "U43Z1", + "name": "Brechtova", + "isMetro": false, + "latitude": 14.517246, + "longitude": 50.035534, + "stopId": "U43" + }, + { + "id": "U43Z2", + "name": "Brechtova", + "isMetro": false, + "latitude": 14.516258, + "longitude": 50.035191, + "stopId": "U43" + }, + { + "id": "U4400Z1", + "name": "Středokluky,rozc.Černovičky", + "isMetro": false, + "latitude": 14.245355, + "longitude": 50.137894, + "stopId": "U4400" + }, + { + "id": "U4400Z2", + "name": "Středokluky,rozc.Černovičky", + "isMetro": false, + "latitude": 14.245484, + "longitude": 50.137627, + "stopId": "U4400" + }, + { + "id": "U4401Z1", + "name": "Číčovice,Velké Číčovice", + "isMetro": false, + "latitude": 14.240953, + "longitude": 50.154354, + "stopId": "U4401" + }, + { + "id": "U4401Z2", + "name": "Číčovice,Velké Číčovice", + "isMetro": false, + "latitude": 14.240687, + "longitude": 50.154369, + "stopId": "U4401" + }, + { + "id": "U4402Z1", + "name": "Číčovice,Malé Číčovice", + "isMetro": false, + "latitude": 14.249325, + "longitude": 50.156799, + "stopId": "U4402" + }, + { + "id": "U4402Z2", + "name": "Číčovice,Malé Číčovice", + "isMetro": false, + "latitude": 14.248918, + "longitude": 50.156925, + "stopId": "U4402" + }, + { + "id": "U4403Z1", + "name": "Okoř,Křižovatka", + "isMetro": false, + "latitude": 14.248527, + "longitude": 50.161556, + "stopId": "U4403" + }, + { + "id": "U4404Z1", + "name": "Libochovičky", + "isMetro": false, + "latitude": 14.239402, + "longitude": 50.172794, + "stopId": "U4404" + }, + { + "id": "U4404Z2", + "name": "Libochovičky", + "isMetro": false, + "latitude": 14.239236, + "longitude": 50.172665, + "stopId": "U4404" + }, + { + "id": "U4405Z1", + "name": "Zákolany,Kováry", + "isMetro": false, + "latitude": 14.24842, + "longitude": 50.188622, + "stopId": "U4405" + }, + { + "id": "U4405Z2", + "name": "Zákolany,Kováry", + "isMetro": false, + "latitude": 14.248192, + "longitude": 50.188881, + "stopId": "U4405" + }, + { + "id": "U4406Z1", + "name": "Zákolany,u Kovár", + "isMetro": false, + "latitude": 14.253321, + "longitude": 50.194004, + "stopId": "U4406" + }, + { + "id": "U4406Z2", + "name": "Zákolany,u Kovár", + "isMetro": false, + "latitude": 14.25355, + "longitude": 50.194607, + "stopId": "U4406" + }, + { + "id": "U4407Z1", + "name": "Zákolany,rozc.Blevice", + "isMetro": false, + "latitude": 14.240952, + "longitude": 50.198624, + "stopId": "U4407" + }, + { + "id": "U4407Z2", + "name": "Zákolany,rozc.Blevice", + "isMetro": false, + "latitude": 14.241109, + "longitude": 50.198425, + "stopId": "U4407" + }, + { + "id": "U4408Z1", + "name": "Koleč,u trafiky", + "isMetro": false, + "latitude": 14.230847, + "longitude": 50.198151, + "stopId": "U4408" + }, + { + "id": "U4408Z2", + "name": "Koleč,u trafiky", + "isMetro": false, + "latitude": 14.230767, + "longitude": 50.197899, + "stopId": "U4408" + }, + { + "id": "U4409Z1", + "name": "Koleč,zámek", + "isMetro": false, + "latitude": 14.222698, + "longitude": 50.198006, + "stopId": "U4409" + }, + { + "id": "U4409Z2", + "name": "Koleč,zámek", + "isMetro": false, + "latitude": 14.222461, + "longitude": 50.197971, + "stopId": "U4409" + }, + { + "id": "U4409Z3", + "name": "Koleč,zámek", + "isMetro": false, + "latitude": 14.222207, + "longitude": 50.198093, + "stopId": "U4409" + }, + { + "id": "U4409Z401", + "name": "Koleč,zámek", + "isMetro": false, + "latitude": 14.222698, + "longitude": 50.198006, + "stopId": "U4409" + }, + { + "id": "U4409Z403", + "name": "Koleč,zámek", + "isMetro": false, + "latitude": 14.222207, + "longitude": 50.198093, + "stopId": "U4409" + }, + { + "id": "U440Z1", + "name": "Nad Habrovkou", + "isMetro": false, + "latitude": 14.344967, + "longitude": 50.109383, + "stopId": "U440" + }, + { + "id": "U440Z2", + "name": "Nad Habrovkou", + "isMetro": false, + "latitude": 14.3465, + "longitude": 50.108784, + "stopId": "U440" + }, + { + "id": "U4411Z1", + "name": "Kladno,Poldi", + "isMetro": false, + "latitude": 14.117765, + "longitude": 50.150311, + "stopId": "U4411" + }, + { + "id": "U4411Z2", + "name": "Kladno,Poldi", + "isMetro": false, + "latitude": 14.117453, + "longitude": 50.150578, + "stopId": "U4411" + }, + { + "id": "U4412Z1", + "name": "Kladno,Průmyslová", + "isMetro": false, + "latitude": 14.116403, + "longitude": 50.15591, + "stopId": "U4412" + }, + { + "id": "U4412Z2", + "name": "Kladno,Průmyslová", + "isMetro": false, + "latitude": 14.115866, + "longitude": 50.15696, + "stopId": "U4412" + }, + { + "id": "U4413Z1", + "name": "Kladno,Hnidousy", + "isMetro": false, + "latitude": 14.112597, + "longitude": 50.170231, + "stopId": "U4413" + }, + { + "id": "U4413Z2", + "name": "Kladno,Hnidousy", + "isMetro": false, + "latitude": 14.112329, + "longitude": 50.170353, + "stopId": "U4413" + }, + { + "id": "U4414Z1", + "name": "Kladno,Velvarská", + "isMetro": false, + "latitude": 14.121987, + "longitude": 50.172638, + "stopId": "U4414" + }, + { + "id": "U4414Z2", + "name": "Kladno,Velvarská", + "isMetro": false, + "latitude": 14.121427, + "longitude": 50.17268, + "stopId": "U4414" + }, + { + "id": "U4415Z1", + "name": "Cvrčovice,Čabárna", + "isMetro": false, + "latitude": 14.1391, + "longitude": 50.18005, + "stopId": "U4415" + }, + { + "id": "U4415Z2", + "name": "Cvrčovice,Čabárna", + "isMetro": false, + "latitude": 14.139054, + "longitude": 50.180244, + "stopId": "U4415" + }, + { + "id": "U4416Z1", + "name": "Brandýsek,Olšany", + "isMetro": false, + "latitude": 14.154137, + "longitude": 50.18718, + "stopId": "U4416" + }, + { + "id": "U4416Z2", + "name": "Brandýsek,Olšany", + "isMetro": false, + "latitude": 14.153659, + "longitude": 50.187248, + "stopId": "U4416" + }, + { + "id": "U4417Z1", + "name": "Brandýsek", + "isMetro": false, + "latitude": 14.160899, + "longitude": 50.18882, + "stopId": "U4417" + }, + { + "id": "U4417Z2", + "name": "Brandýsek", + "isMetro": false, + "latitude": 14.160756, + "longitude": 50.188999, + "stopId": "U4417" + }, + { + "id": "U4418Z1", + "name": "Brandýsek,u kina", + "isMetro": false, + "latitude": 14.162646, + "longitude": 50.188221, + "stopId": "U4418" + }, + { + "id": "U4418Z2", + "name": "Brandýsek,u kina", + "isMetro": false, + "latitude": 14.162663, + "longitude": 50.188808, + "stopId": "U4418" + }, + { + "id": "U4419Z1", + "name": "Cvrčovice,U Taušů", + "isMetro": false, + "latitude": 14.155163, + "longitude": 50.182171, + "stopId": "U4419" + }, + { + "id": "U4419Z2", + "name": "Cvrčovice,U Taušů", + "isMetro": false, + "latitude": 14.155252, + "longitude": 50.181892, + "stopId": "U4419" + }, + { + "id": "U441Z1", + "name": "Nad Havlem", + "isMetro": false, + "latitude": 14.448616, + "longitude": 50.034084, + "stopId": "U441" + }, + { + "id": "U441Z2", + "name": "Nad Havlem", + "isMetro": false, + "latitude": 14.449007, + "longitude": 50.0341, + "stopId": "U441" + }, + { + "id": "U4420Z1", + "name": "Cvrčovice,ObÚ", + "isMetro": false, + "latitude": 14.156659, + "longitude": 50.179134, + "stopId": "U4420" + }, + { + "id": "U4420Z2", + "name": "Cvrčovice,ObÚ", + "isMetro": false, + "latitude": 14.156921, + "longitude": 50.179333, + "stopId": "U4420" + }, + { + "id": "U4421Z1", + "name": "Třebusice", + "isMetro": false, + "latitude": 14.179644, + "longitude": 50.200562, + "stopId": "U4421" + }, + { + "id": "U4421Z2", + "name": "Třebusice", + "isMetro": false, + "latitude": 14.179501, + "longitude": 50.200741, + "stopId": "U4421" + }, + { + "id": "U4422Z1", + "name": "Blevice", + "isMetro": false, + "latitude": 14.236513, + "longitude": 50.209976, + "stopId": "U4422" + }, + { + "id": "U4422Z2", + "name": "Blevice", + "isMetro": false, + "latitude": 14.236483, + "longitude": 50.210175, + "stopId": "U4422" + }, + { + "id": "U4423Z1", + "name": "Slatina,u cihelny", + "isMetro": false, + "latitude": 14.23562, + "longitude": 50.227337, + "stopId": "U4423" + }, + { + "id": "U4423Z2", + "name": "Slatina,u cihelny", + "isMetro": false, + "latitude": 14.235945, + "longitude": 50.227135, + "stopId": "U4423" + }, + { + "id": "U4424Z1", + "name": "Slatina", + "isMetro": false, + "latitude": 14.221709, + "longitude": 50.224415, + "stopId": "U4424" + }, + { + "id": "U4428Z1", + "name": "Cholupické náměstí", + "isMetro": false, + "latitude": 14.449084, + "longitude": 49.988407, + "stopId": "U4428" + }, + { + "id": "U4428Z2", + "name": "Cholupické náměstí", + "isMetro": false, + "latitude": 14.448811, + "longitude": 49.988522, + "stopId": "U4428" + }, + { + "id": "U4429Z301", + "name": "Horní Beřkovice", + "isMetro": false, + "latitude": 14.355209, + "longitude": 50.357189, + "stopId": "U4429" + }, + { + "id": "U442Z1", + "name": "Nad Jetelkou", + "isMetro": false, + "latitude": 14.496643, + "longitude": 50.11525, + "stopId": "U442" + }, + { + "id": "U442Z2", + "name": "Nad Jetelkou", + "isMetro": false, + "latitude": 14.495668, + "longitude": 50.115303, + "stopId": "U442" + }, + { + "id": "U4430Z301", + "name": "Kostomlaty pod Řípem", + "isMetro": false, + "latitude": 14.330349, + "longitude": 50.380375, + "stopId": "U4430" + }, + { + "id": "U4432Z1", + "name": "Ctiněves,žel.st.", + "isMetro": false, + "latitude": 14.305824, + "longitude": 50.377754, + "stopId": "U4432" + }, + { + "id": "U4432Z2", + "name": "Ctiněves,žel.st.", + "isMetro": false, + "latitude": 14.306041, + "longitude": 50.377777, + "stopId": "U4432" + }, + { + "id": "U4432Z301", + "name": "Ctiněves", + "isMetro": false, + "latitude": 14.306419, + "longitude": 50.378368, + "stopId": "U4432" + }, + { + "id": "U4433Z301", + "name": "Straškov", + "isMetro": false, + "latitude": 14.242205, + "longitude": 50.361801, + "stopId": "U4433" + }, + { + "id": "U4434Z301", + "name": "Bříza obec", + "isMetro": false, + "latitude": 14.218555, + "longitude": 50.363571, + "stopId": "U4434" + }, + { + "id": "U4435Z1", + "name": "Sovákova", + "isMetro": false, + "latitude": 14.580855, + "longitude": 50.123356, + "stopId": "U4435" + }, + { + "id": "U4435Z2", + "name": "Sovákova", + "isMetro": false, + "latitude": 14.582411, + "longitude": 50.122982, + "stopId": "U4435" + }, + { + "id": "U4437Z1", + "name": "Jesenice,Zdiměřice,Sportovní areál", + "isMetro": false, + "latitude": 14.521491, + "longitude": 49.988033, + "stopId": "U4437" + }, + { + "id": "U4437Z2", + "name": "Jesenice,Zdiměřice,Sportovní areál", + "isMetro": false, + "latitude": 14.521289, + "longitude": 49.988697, + "stopId": "U4437" + }, + { + "id": "U4438Z1", + "name": "Martiněves,Radešín", + "isMetro": false, + "latitude": 14.145591, + "longitude": 50.341091, + "stopId": "U4438" + }, + { + "id": "U4438Z2", + "name": "Martiněves,Radešín", + "isMetro": false, + "latitude": 14.145748, + "longitude": 50.340931, + "stopId": "U4438" + }, + { + "id": "U4439Z1", + "name": "Horní Bezděkov,Pod Hřbitovem", + "isMetro": false, + "latitude": 14.062093, + "longitude": 50.08017, + "stopId": "U4439" + }, + { + "id": "U4439Z2", + "name": "Horní Bezděkov,Pod Hřbitovem", + "isMetro": false, + "latitude": 14.062762, + "longitude": 50.080437, + "stopId": "U4439" + }, + { + "id": "U443Z1", + "name": "Nad Klamovkou", + "isMetro": false, + "latitude": 14.37683, + "longitude": 50.072716, + "stopId": "U443" + }, + { + "id": "U443Z2", + "name": "Nad Klamovkou", + "isMetro": false, + "latitude": 14.377709, + "longitude": 50.072647, + "stopId": "U443" + }, + { + "id": "U4441Z1", + "name": "Cítov", + "isMetro": false, + "latitude": 14.399227, + "longitude": 50.371674, + "stopId": "U4441" + }, + { + "id": "U4441Z2", + "name": "Cítov", + "isMetro": false, + "latitude": 14.399186, + "longitude": 50.371555, + "stopId": "U4441" + }, + { + "id": "U4442Z1", + "name": "Benešov,Konopišťská", + "isMetro": false, + "latitude": 14.68012, + "longitude": 49.781277, + "stopId": "U4442" + }, + { + "id": "U4442Z2", + "name": "Benešov,Konopišťská", + "isMetro": false, + "latitude": 14.680301, + "longitude": 49.78117, + "stopId": "U4442" + }, + { + "id": "U4443Z1", + "name": "Benešov,Konopiště", + "isMetro": false, + "latitude": 14.657437, + "longitude": 49.782516, + "stopId": "U4443" + }, + { + "id": "U4443Z2", + "name": "Benešov,Konopiště", + "isMetro": false, + "latitude": 14.657313, + "longitude": 49.782364, + "stopId": "U4443" + }, + { + "id": "U4444Z1", + "name": "Václavice,Vatěkov,rozc.", + "isMetro": false, + "latitude": 14.643468, + "longitude": 49.780712, + "stopId": "U4444" + }, + { + "id": "U4444Z2", + "name": "Václavice,Vatěkov,rozc.", + "isMetro": false, + "latitude": 14.643344, + "longitude": 49.780529, + "stopId": "U4444" + }, + { + "id": "U4445Z1", + "name": "Václavice,Vatěkov", + "isMetro": false, + "latitude": 14.634728, + "longitude": 49.779652, + "stopId": "U4445" + }, + { + "id": "U4445Z2", + "name": "Václavice,Vatěkov", + "isMetro": false, + "latitude": 14.634674, + "longitude": 49.779461, + "stopId": "U4445" + }, + { + "id": "U4446Z1", + "name": "Václavice,Vatěkov,pod Chlumem", + "isMetro": false, + "latitude": 14.621283, + "longitude": 49.778584, + "stopId": "U4446" + }, + { + "id": "U4446Z2", + "name": "Václavice,Vatěkov,pod Chlumem", + "isMetro": false, + "latitude": 14.620993, + "longitude": 49.778374, + "stopId": "U4446" + }, + { + "id": "U4447Z1", + "name": "Neveklov,Přibyšice", + "isMetro": false, + "latitude": 14.599336, + "longitude": 49.771389, + "stopId": "U4447" + }, + { + "id": "U4447Z2", + "name": "Neveklov,Přibyšice", + "isMetro": false, + "latitude": 14.599538, + "longitude": 49.770744, + "stopId": "U4447" + }, + { + "id": "U4448Z1", + "name": "Neveklov,Rozc.Černíkovice", + "isMetro": false, + "latitude": 14.582581, + "longitude": 49.768063, + "stopId": "U4448" + }, + { + "id": "U4448Z2", + "name": "Neveklov,Rozc.Černíkovice", + "isMetro": false, + "latitude": 14.582818, + "longitude": 49.767956, + "stopId": "U4448" + }, + { + "id": "U4449Z1", + "name": "Neveklov,Neštětice,Rozc.", + "isMetro": false, + "latitude": 14.575417, + "longitude": 49.765106, + "stopId": "U4449" + }, + { + "id": "U4449Z2", + "name": "Neveklov,Neštětice,Rozc.", + "isMetro": false, + "latitude": 14.57575, + "longitude": 49.765011, + "stopId": "U4449" + }, + { + "id": "U444Z1", + "name": "Šafránecká", + "isMetro": false, + "latitude": 14.345051, + "longitude": 50.075882, + "stopId": "U444" + }, + { + "id": "U444Z2", + "name": "Šafránecká", + "isMetro": false, + "latitude": 14.344417, + "longitude": 50.075867, + "stopId": "U444" + }, + { + "id": "U4450Z1", + "name": "Neveklov,Chvojínek,Rozc.", + "isMetro": false, + "latitude": 14.562956, + "longitude": 49.763084, + "stopId": "U4450" + }, + { + "id": "U4450Z2", + "name": "Neveklov,Chvojínek,Rozc.", + "isMetro": false, + "latitude": 14.563138, + "longitude": 49.762894, + "stopId": "U4450" + }, + { + "id": "U4451Z1", + "name": "Stranný,Břevnice", + "isMetro": false, + "latitude": 14.51274, + "longitude": 49.753326, + "stopId": "U4451" + }, + { + "id": "U4451Z2", + "name": "Stranný,Břevnice", + "isMetro": false, + "latitude": 14.512866, + "longitude": 49.753181, + "stopId": "U4451" + }, + { + "id": "U4452Z1", + "name": "Stranný,Rozc.", + "isMetro": false, + "latitude": 14.502453, + "longitude": 49.750988, + "stopId": "U4452" + }, + { + "id": "U4452Z2", + "name": "Stranný,Rozc.", + "isMetro": false, + "latitude": 14.502622, + "longitude": 49.750847, + "stopId": "U4452" + }, + { + "id": "U4453Z1", + "name": "Stranný", + "isMetro": false, + "latitude": 14.495701, + "longitude": 49.753117, + "stopId": "U4453" + }, + { + "id": "U4453Z2", + "name": "Stranný", + "isMetro": false, + "latitude": 14.49541, + "longitude": 49.753098, + "stopId": "U4453" + }, + { + "id": "U4454Z1", + "name": "Neveklov,Rozc.Nouze", + "isMetro": false, + "latitude": 14.488009, + "longitude": 49.761356, + "stopId": "U4454" + }, + { + "id": "U4454Z2", + "name": "Neveklov,Rozc.Nouze", + "isMetro": false, + "latitude": 14.488204, + "longitude": 49.761349, + "stopId": "U4454" + }, + { + "id": "U4455Z1", + "name": "Neveklov,Bělice,Rozc.", + "isMetro": false, + "latitude": 14.477264, + "longitude": 49.762924, + "stopId": "U4455" + }, + { + "id": "U4455Z2", + "name": "Neveklov,Bělice,Rozc.", + "isMetro": false, + "latitude": 14.477197, + "longitude": 49.762764, + "stopId": "U4455" + }, + { + "id": "U4456Z1", + "name": "Neveklov,Bělice", + "isMetro": false, + "latitude": 14.473536, + "longitude": 49.766254, + "stopId": "U4456" + }, + { + "id": "U4456Z2", + "name": "Neveklov,Bělice", + "isMetro": false, + "latitude": 14.471941, + "longitude": 49.766182, + "stopId": "U4456" + }, + { + "id": "U4457Z1", + "name": "Neveklov,Blažim,Rozc.Chlum", + "isMetro": false, + "latitude": 14.460024, + "longitude": 49.761841, + "stopId": "U4457" + }, + { + "id": "U4457Z2", + "name": "Neveklov,Blažim,Rozc.Chlum", + "isMetro": false, + "latitude": 14.460151, + "longitude": 49.761642, + "stopId": "U4457" + }, + { + "id": "U4458Z1", + "name": "Neveklov,Blažim", + "isMetro": false, + "latitude": 14.453609, + "longitude": 49.762089, + "stopId": "U4458" + }, + { + "id": "U4458Z2", + "name": "Neveklov,Blažim", + "isMetro": false, + "latitude": 14.453374, + "longitude": 49.76199, + "stopId": "U4458" + }, + { + "id": "U4459Z2", + "name": "Neveklov,Nebřich", + "isMetro": false, + "latitude": 14.428218, + "longitude": 49.769653, + "stopId": "U4459" + }, + { + "id": "U445Z1", + "name": "Nad Parkánem", + "isMetro": false, + "latitude": 14.631473, + "longitude": 50.012543, + "stopId": "U445" + }, + { + "id": "U445Z2", + "name": "Nad Parkánem", + "isMetro": false, + "latitude": 14.631401, + "longitude": 50.012566, + "stopId": "U445" + }, + { + "id": "U4460Z1", + "name": "Neveklov,Kelce", + "isMetro": false, + "latitude": 14.46817, + "longitude": 49.773315, + "stopId": "U4460" + }, + { + "id": "U4460Z2", + "name": "Neveklov,Kelce", + "isMetro": false, + "latitude": 14.467964, + "longitude": 49.773186, + "stopId": "U4460" + }, + { + "id": "U4462Z1", + "name": "Neveklov,Tloskov", + "isMetro": false, + "latitude": 14.527815, + "longitude": 49.76004, + "stopId": "U4462" + }, + { + "id": "U4462Z2", + "name": "Neveklov,Tloskov", + "isMetro": false, + "latitude": 14.527551, + "longitude": 49.76004, + "stopId": "U4462" + }, + { + "id": "U4463Z1", + "name": "Neveklov,Tloskov,SÚS", + "isMetro": false, + "latitude": 14.526045, + "longitude": 49.76569, + "stopId": "U4463" + }, + { + "id": "U4463Z2", + "name": "Neveklov,Tloskov,SÚS", + "isMetro": false, + "latitude": 14.525702, + "longitude": 49.764637, + "stopId": "U4463" + }, + { + "id": "U4464Z1", + "name": "Neveklov,Borovka", + "isMetro": false, + "latitude": 14.526847, + "longitude": 49.775314, + "stopId": "U4464" + }, + { + "id": "U4464Z2", + "name": "Neveklov,Borovka", + "isMetro": false, + "latitude": 14.526151, + "longitude": 49.77549, + "stopId": "U4464" + }, + { + "id": "U4465Z1", + "name": "Neveklov,Rozc.Prchovka", + "isMetro": false, + "latitude": 14.523719, + "longitude": 49.781422, + "stopId": "U4465" + }, + { + "id": "U4465Z2", + "name": "Neveklov,Rozc.Prchovka", + "isMetro": false, + "latitude": 14.523232, + "longitude": 49.781483, + "stopId": "U4465" + }, + { + "id": "U4466Z1", + "name": "Netvořice,Radějovice,Rozc.", + "isMetro": false, + "latitude": 14.506102, + "longitude": 49.790707, + "stopId": "U4466" + }, + { + "id": "U4466Z2", + "name": "Netvořice,Radějovice,Rozc.", + "isMetro": false, + "latitude": 14.505965, + "longitude": 49.790508, + "stopId": "U4466" + }, + { + "id": "U4467Z1", + "name": "Neveklov,Dalešice,Rozc.", + "isMetro": false, + "latitude": 14.48702, + "longitude": 49.792072, + "stopId": "U4467" + }, + { + "id": "U4467Z2", + "name": "Neveklov,Dalešice,Rozc.", + "isMetro": false, + "latitude": 14.487798, + "longitude": 49.792023, + "stopId": "U4467" + }, + { + "id": "U4468Z1", + "name": "Horoměřice,Lidl", + "isMetro": false, + "latitude": 14.343501, + "longitude": 50.141449, + "stopId": "U4468" + }, + { + "id": "U4468Z2", + "name": "Horoměřice,Lidl", + "isMetro": false, + "latitude": 14.343375, + "longitude": 50.141476, + "stopId": "U4468" + }, + { + "id": "U4469Z1", + "name": "Václavice,rest.", + "isMetro": false, + "latitude": 14.620824, + "longitude": 49.78759, + "stopId": "U4469" + }, + { + "id": "U4469Z2", + "name": "Václavice,rest.", + "isMetro": false, + "latitude": 14.620686, + "longitude": 49.787453, + "stopId": "U4469" + }, + { + "id": "U446Z1", + "name": "Hasova", + "isMetro": false, + "latitude": 14.426805, + "longitude": 50.015388, + "stopId": "U446" + }, + { + "id": "U446Z2", + "name": "Hasova", + "isMetro": false, + "latitude": 14.42717, + "longitude": 50.015339, + "stopId": "U446" + }, + { + "id": "U4470Z1", + "name": "Václavice,statek", + "isMetro": false, + "latitude": 14.613172, + "longitude": 49.789406, + "stopId": "U4470" + }, + { + "id": "U4470Z2", + "name": "Václavice,statek", + "isMetro": false, + "latitude": 14.613131, + "longitude": 49.789272, + "stopId": "U4470" + }, + { + "id": "U4471Z1", + "name": "Chrášťany", + "isMetro": false, + "latitude": 14.586576, + "longitude": 49.79274, + "stopId": "U4471" + }, + { + "id": "U4471Z2", + "name": "Chrášťany", + "isMetro": false, + "latitude": 14.5868, + "longitude": 49.792667, + "stopId": "U4471" + }, + { + "id": "U4472Z1", + "name": "Chrášťany,Benice", + "isMetro": false, + "latitude": 14.5565, + "longitude": 49.793644, + "stopId": "U4472" + }, + { + "id": "U4472Z2", + "name": "Chrášťany,Benice", + "isMetro": false, + "latitude": 14.556544, + "longitude": 49.793446, + "stopId": "U4472" + }, + { + "id": "U4473Z1", + "name": "Chrášťany,Soběšovice", + "isMetro": false, + "latitude": 14.544021, + "longitude": 49.796024, + "stopId": "U4473" + }, + { + "id": "U4473Z2", + "name": "Chrášťany,Soběšovice", + "isMetro": false, + "latitude": 14.543869, + "longitude": 49.795918, + "stopId": "U4473" + }, + { + "id": "U4474Z1", + "name": "Netvořice,Dunávice", + "isMetro": false, + "latitude": 14.545445, + "longitude": 49.811413, + "stopId": "U4474" + }, + { + "id": "U4474Z2", + "name": "Netvořice,Dunávice", + "isMetro": false, + "latitude": 14.545195, + "longitude": 49.811512, + "stopId": "U4474" + }, + { + "id": "U4475Z1", + "name": "Chleby,Rozc.", + "isMetro": false, + "latitude": 14.548631, + "longitude": 49.818527, + "stopId": "U4475" + }, + { + "id": "U4475Z2", + "name": "Chleby,Rozc.", + "isMetro": false, + "latitude": 14.548493, + "longitude": 49.818348, + "stopId": "U4475" + }, + { + "id": "U4477Z1", + "name": "Netvořice,Vojtěchov", + "isMetro": false, + "latitude": 14.533831, + "longitude": 49.821564, + "stopId": "U4477" + }, + { + "id": "U4477Z2", + "name": "Netvořice,Vojtěchov", + "isMetro": false, + "latitude": 14.533819, + "longitude": 49.821339, + "stopId": "U4477" + }, + { + "id": "U4478Z2", + "name": "Netvořice,Rozc.Břežany", + "isMetro": false, + "latitude": 14.523899, + "longitude": 49.818249, + "stopId": "U4478" + }, + { + "id": "U4479Z1", + "name": "Netvořice,Škola", + "isMetro": false, + "latitude": 14.521224, + "longitude": 49.817562, + "stopId": "U4479" + }, + { + "id": "U447Z1", + "name": "Nad Trojou", + "isMetro": false, + "latitude": 14.438882, + "longitude": 50.120331, + "stopId": "U447" + }, + { + "id": "U447Z2", + "name": "Nad Trojou", + "isMetro": false, + "latitude": 14.439792, + "longitude": 50.120377, + "stopId": "U447" + }, + { + "id": "U4483Z1", + "name": "Benešov,Máchova", + "isMetro": false, + "latitude": 14.681507, + "longitude": 49.785614, + "stopId": "U4483" + }, + { + "id": "U4483Z2", + "name": "Benešov,Máchova", + "isMetro": false, + "latitude": 14.681522, + "longitude": 49.785435, + "stopId": "U4483" + }, + { + "id": "U4483Z3", + "name": "Benešov,Nemocnice Rudolfa a Stefanie", + "isMetro": false, + "latitude": 14.682224, + "longitude": 49.787148, + "stopId": "U4483" + }, + { + "id": "U4483Z4", + "name": "Benešov,Nemocnice Rudolfa a Stefanie", + "isMetro": false, + "latitude": 14.682313, + "longitude": 49.787292, + "stopId": "U4483" + }, + { + "id": "U4484Z1", + "name": "Chlístov", + "isMetro": false, + "latitude": 14.654558, + "longitude": 49.800777, + "stopId": "U4484" + }, + { + "id": "U4484Z2", + "name": "Chlístov", + "isMetro": false, + "latitude": 14.654323, + "longitude": 49.800694, + "stopId": "U4484" + }, + { + "id": "U4485Z1", + "name": "Benešov,Vidlákova Lhota,rozc.", + "isMetro": false, + "latitude": 14.64987, + "longitude": 49.807442, + "stopId": "U4485" + }, + { + "id": "U4485Z2", + "name": "Benešov,Vidlákova Lhota,rozc.", + "isMetro": false, + "latitude": 14.649593, + "longitude": 49.80735, + "stopId": "U4485" + }, + { + "id": "U4486Z1", + "name": "Benešov,Buková Lhota,rozc.", + "isMetro": false, + "latitude": 14.644176, + "longitude": 49.812801, + "stopId": "U4486" + }, + { + "id": "U4486Z2", + "name": "Benešov,Buková Lhota,rozc.", + "isMetro": false, + "latitude": 14.643858, + "longitude": 49.812737, + "stopId": "U4486" + }, + { + "id": "U4487Z1", + "name": "Benešov,Úročnice", + "isMetro": false, + "latitude": 14.62853, + "longitude": 49.805965, + "stopId": "U4487" + }, + { + "id": "U4487Z2", + "name": "Benešov,Úročnice", + "isMetro": false, + "latitude": 14.628628, + "longitude": 49.805794, + "stopId": "U4487" + }, + { + "id": "U4488Z1", + "name": "Benešov,Úročnice,rozc.Hrusice", + "isMetro": false, + "latitude": 14.620886, + "longitude": 49.804501, + "stopId": "U4488" + }, + { + "id": "U4488Z2", + "name": "Benešov,Úročnice,rozc.Hrusice", + "isMetro": false, + "latitude": 14.621013, + "longitude": 49.804356, + "stopId": "U4488" + }, + { + "id": "U4489Z1", + "name": "Bukovany,Rozc.", + "isMetro": false, + "latitude": 14.627444, + "longitude": 49.824219, + "stopId": "U4489" + }, + { + "id": "U4489Z2", + "name": "Bukovany,Rozc.", + "isMetro": false, + "latitude": 14.627362, + "longitude": 49.824032, + "stopId": "U4489" + }, + { + "id": "U448Z1", + "name": "Nádraží Běchovice", + "isMetro": false, + "latitude": 14.599597, + "longitude": 50.081017, + "stopId": "U448" + }, + { + "id": "U448Z2", + "name": "Nádraží Běchovice", + "isMetro": false, + "latitude": 14.59818, + "longitude": 50.081276, + "stopId": "U448" + }, + { + "id": "U448Z301", + "name": "Praha-Běchovice", + "isMetro": false, + "latitude": 14.598027, + "longitude": 50.082195, + "stopId": "U448" + }, + { + "id": "U4490Z1", + "name": "Bukovany", + "isMetro": false, + "latitude": 14.6183, + "longitude": 49.8242, + "stopId": "U4490" + }, + { + "id": "U4490Z2", + "name": "Bukovany", + "isMetro": false, + "latitude": 14.618191, + "longitude": 49.824001, + "stopId": "U4490" + }, + { + "id": "U4491Z1", + "name": "Týnec n.Sáz.,Krusičany,Rozc.", + "isMetro": false, + "latitude": 14.601819, + "longitude": 49.808868, + "stopId": "U4491" + }, + { + "id": "U4491Z2", + "name": "Týnec n.Sáz.,Krusičany,Rozc.", + "isMetro": false, + "latitude": 14.601639, + "longitude": 49.808788, + "stopId": "U4491" + }, + { + "id": "U4492Z1", + "name": "Petkovy,dolní", + "isMetro": false, + "latitude": 15.068148, + "longitude": 50.414623, + "stopId": "U4492" + }, + { + "id": "U4492Z2", + "name": "Petkovy,dolní", + "isMetro": false, + "latitude": 15.06814, + "longitude": 50.414742, + "stopId": "U4492" + }, + { + "id": "U4495Z1", + "name": "Týnec n.Sáz.,Kult.dům", + "isMetro": false, + "latitude": 14.589983, + "longitude": 49.830154, + "stopId": "U4495" + }, + { + "id": "U4495Z2", + "name": "Týnec n.Sáz.,Kult.dům", + "isMetro": false, + "latitude": 14.589843, + "longitude": 49.830288, + "stopId": "U4495" + }, + { + "id": "U4496Z1", + "name": "Týnec n.Sáz.,Krusičanská", + "isMetro": false, + "latitude": 14.597129, + "longitude": 49.824856, + "stopId": "U4496" + }, + { + "id": "U4496Z2", + "name": "Týnec n.Sáz.,Krusičanská", + "isMetro": false, + "latitude": 14.596881, + "longitude": 49.82465, + "stopId": "U4496" + }, + { + "id": "U4497Z1", + "name": "Týnec n.Sáz.,Škola", + "isMetro": false, + "latitude": 14.595108, + "longitude": 49.828896, + "stopId": "U4497" + }, + { + "id": "U4497Z2", + "name": "Týnec n.Sáz.,Škola", + "isMetro": false, + "latitude": 14.595235, + "longitude": 49.828697, + "stopId": "U4497" + }, + { + "id": "U4498Z1", + "name": "Týnec n.Sáz.,Sídliště", + "isMetro": false, + "latitude": 14.584188, + "longitude": 49.836605, + "stopId": "U4498" + }, + { + "id": "U4498Z2", + "name": "Týnec n.Sáz.,Sídliště", + "isMetro": false, + "latitude": 14.584022, + "longitude": 49.836445, + "stopId": "U4498" + }, + { + "id": "U4499Z1", + "name": "Krhanice,Lom", + "isMetro": false, + "latitude": 14.542598, + "longitude": 49.858593, + "stopId": "U4499" + }, + { + "id": "U4499Z2", + "name": "Krhanice,Lom", + "isMetro": false, + "latitude": 14.542418, + "longitude": 49.858459, + "stopId": "U4499" + }, + { + "id": "U449Z1", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.405406, + "longitude": 50.029251, + "stopId": "U449" + }, + { + "id": "U449Z2", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.40472, + "longitude": 50.028763, + "stopId": "U449" + }, + { + "id": "U449Z3", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.406003, + "longitude": 50.029129, + "stopId": "U449" + }, + { + "id": "U449Z301", + "name": "Praha-Braník", + "isMetro": false, + "latitude": 14.406996, + "longitude": 50.028019, + "stopId": "U449" + }, + { + "id": "U449Z4", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.405221, + "longitude": 50.028759, + "stopId": "U449" + }, + { + "id": "U449Z5", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.405875, + "longitude": 50.029118, + "stopId": "U449" + }, + { + "id": "U449Z6", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.406051, + "longitude": 50.028336, + "stopId": "U449" + }, + { + "id": "U449Z7", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.40575, + "longitude": 50.028069, + "stopId": "U449" + }, + { + "id": "U449Z8", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.407062, + "longitude": 50.028687, + "stopId": "U449" + }, + { + "id": "U449Z9", + "name": "Nádraží Braník", + "isMetro": false, + "latitude": 14.405796, + "longitude": 50.029442, + "stopId": "U449" + }, + { + "id": "U44Z1", + "name": "Břevnovská", + "isMetro": false, + "latitude": 14.365044, + "longitude": 50.085663, + "stopId": "U44" + }, + { + "id": "U44Z2", + "name": "Břevnovská", + "isMetro": false, + "latitude": 14.364766, + "longitude": 50.085361, + "stopId": "U44" + }, + { + "id": "U4501Z1", + "name": "Krhanice,K Žel.st.", + "isMetro": false, + "latitude": 14.552433, + "longitude": 49.850719, + "stopId": "U4501" + }, + { + "id": "U4501Z2", + "name": "Krhanice,K Žel.st.", + "isMetro": false, + "latitude": 14.552403, + "longitude": 49.850899, + "stopId": "U4501" + }, + { + "id": "U4504Z1", + "name": "Netvořice,Tuchyně,Rozc.", + "isMetro": false, + "latitude": 14.50021, + "longitude": 49.804512, + "stopId": "U4504" + }, + { + "id": "U4504Z2", + "name": "Netvořice,Tuchyně,Rozc.", + "isMetro": false, + "latitude": 14.500263, + "longitude": 49.80471, + "stopId": "U4504" + }, + { + "id": "U4505Z1", + "name": "Lešany,Břežany", + "isMetro": false, + "latitude": 14.528739, + "longitude": 49.837887, + "stopId": "U4505" + }, + { + "id": "U4505Z2", + "name": "Lešany,Břežany", + "isMetro": false, + "latitude": 14.528502, + "longitude": 49.837868, + "stopId": "U4505" + }, + { + "id": "U4505Z3", + "name": "Lešany,Břežany", + "isMetro": false, + "latitude": 14.528708, + "longitude": 49.838112, + "stopId": "U4505" + }, + { + "id": "U4505Z4", + "name": "Lešany,Břežany", + "isMetro": false, + "latitude": 14.528911, + "longitude": 49.83802, + "stopId": "U4505" + }, + { + "id": "U4506Z1", + "name": "Lešany,Obecní úřad", + "isMetro": false, + "latitude": 14.527481, + "longitude": 49.842834, + "stopId": "U4506" + }, + { + "id": "U4506Z2", + "name": "Lešany,Obecní úřad", + "isMetro": false, + "latitude": 14.527299, + "longitude": 49.842968, + "stopId": "U4506" + }, + { + "id": "U4508Z1", + "name": "Týnec n.Sáz.,Pecerady,Jednota", + "isMetro": false, + "latitude": 14.614529, + "longitude": 49.84063, + "stopId": "U4508" + }, + { + "id": "U4508Z2", + "name": "Týnec n.Sáz.,Pecerady,Jednota", + "isMetro": false, + "latitude": 14.615218, + "longitude": 49.8396, + "stopId": "U4508" + }, + { + "id": "U4509Z1", + "name": "Týnec n.Sáz.,Pecerady,Hřiště", + "isMetro": false, + "latitude": 14.609161, + "longitude": 49.837315, + "stopId": "U4509" + }, + { + "id": "U4509Z2", + "name": "Týnec n.Sáz.,Pecerady,Hřiště", + "isMetro": false, + "latitude": 14.609398, + "longitude": 49.837234, + "stopId": "U4509" + }, + { + "id": "U450Z1", + "name": "Goetheho", + "isMetro": false, + "latitude": 14.404092, + "longitude": 50.107437, + "stopId": "U450" + }, + { + "id": "U4510Z1", + "name": "Týnec n.Sáz.,Pecerady,Podhajský ryb.", + "isMetro": false, + "latitude": 14.606165, + "longitude": 49.834797, + "stopId": "U4510" + }, + { + "id": "U4510Z2", + "name": "Týnec n.Sáz.,Pecerady,Podhajský ryb.", + "isMetro": false, + "latitude": 14.606153, + "longitude": 49.834633, + "stopId": "U4510" + }, + { + "id": "U4511Z1", + "name": "Týnec n.Sáz.,Brodce", + "isMetro": false, + "latitude": 14.598676, + "longitude": 49.834473, + "stopId": "U4511" + }, + { + "id": "U4511Z2", + "name": "Týnec n.Sáz.,Brodce", + "isMetro": false, + "latitude": 14.598663, + "longitude": 49.834286, + "stopId": "U4511" + }, + { + "id": "U4514Z1", + "name": "Týnec n.Sáz.,Pila", + "isMetro": false, + "latitude": 14.583854, + "longitude": 49.831741, + "stopId": "U4514" + }, + { + "id": "U4514Z2", + "name": "Týnec n.Sáz.,Pila", + "isMetro": false, + "latitude": 14.58366, + "longitude": 49.831623, + "stopId": "U4514" + }, + { + "id": "U4515Z1", + "name": "Týnec n.Sáz.,Podělusy", + "isMetro": false, + "latitude": 14.574444, + "longitude": 49.836544, + "stopId": "U4515" + }, + { + "id": "U4515Z2", + "name": "Týnec n.Sáz.,Podělusy", + "isMetro": false, + "latitude": 14.574403, + "longitude": 49.836411, + "stopId": "U4515" + }, + { + "id": "U4516Z1", + "name": "Lešany,Brejlov", + "isMetro": false, + "latitude": 14.563066, + "longitude": 49.838802, + "stopId": "U4516" + }, + { + "id": "U4516Z2", + "name": "Lešany,Brejlov", + "isMetro": false, + "latitude": 14.562943, + "longitude": 49.838615, + "stopId": "U4516" + }, + { + "id": "U4517Z1", + "name": "Lešany,Rozc.Vazovnice", + "isMetro": false, + "latitude": 14.54641, + "longitude": 49.8391, + "stopId": "U4517" + }, + { + "id": "U4517Z2", + "name": "Lešany,Rozc.Vazovnice", + "isMetro": false, + "latitude": 14.546494, + "longitude": 49.838966, + "stopId": "U4517" + }, + { + "id": "U4519Z1", + "name": "Netvořice,U Vrby", + "isMetro": false, + "latitude": 14.525097, + "longitude": 49.823666, + "stopId": "U4519" + }, + { + "id": "U4519Z2", + "name": "Netvořice,U Vrby", + "isMetro": false, + "latitude": 14.524833, + "longitude": 49.823685, + "stopId": "U4519" + }, + { + "id": "U451Z1", + "name": "Za Avií", + "isMetro": false, + "latitude": 14.514184, + "longitude": 50.150734, + "stopId": "U451" + }, + { + "id": "U451Z2", + "name": "Za Avií", + "isMetro": false, + "latitude": 14.5144, + "longitude": 50.150902, + "stopId": "U451" + }, + { + "id": "U4521Z1", + "name": "Benešov,Jana Nohy", + "isMetro": false, + "latitude": 14.68036, + "longitude": 49.776485, + "stopId": "U4521" + }, + { + "id": "U4521Z2", + "name": "Benešov,Jana Nohy", + "isMetro": false, + "latitude": 14.680553, + "longitude": 49.776478, + "stopId": "U4521" + }, + { + "id": "U4522Z1", + "name": "Benešov,Benea", + "isMetro": false, + "latitude": 14.67998, + "longitude": 49.772942, + "stopId": "U4522" + }, + { + "id": "U4522Z2", + "name": "Benešov,Benea", + "isMetro": false, + "latitude": 14.680189, + "longitude": 49.772816, + "stopId": "U4522" + }, + { + "id": "U4523Z1", + "name": "Bystřice,Jírovice", + "isMetro": false, + "latitude": 14.666179, + "longitude": 49.757122, + "stopId": "U4523" + }, + { + "id": "U4523Z2", + "name": "Bystřice,Jírovice", + "isMetro": false, + "latitude": 14.666842, + "longitude": 49.756733, + "stopId": "U4523" + }, + { + "id": "U4524Z1", + "name": "Bystřice,Jírovice,Kukačka", + "isMetro": false, + "latitude": 14.660727, + "longitude": 49.758823, + "stopId": "U4524" + }, + { + "id": "U4524Z2", + "name": "Bystřice,Jírovice,Kukačka", + "isMetro": false, + "latitude": 14.660603, + "longitude": 49.75869, + "stopId": "U4524" + }, + { + "id": "U4525Z1", + "name": "Bystřice,rozc.Líšno", + "isMetro": false, + "latitude": 14.674676, + "longitude": 49.741982, + "stopId": "U4525" + }, + { + "id": "U4525Z2", + "name": "Bystřice,rozc.Líšno", + "isMetro": false, + "latitude": 14.674926, + "longitude": 49.742027, + "stopId": "U4525" + }, + { + "id": "U4526Z1", + "name": "Bystřice,Tvoršovice,Rozc.I", + "isMetro": false, + "latitude": 14.643403, + "longitude": 49.759323, + "stopId": "U4526" + }, + { + "id": "U4526Z2", + "name": "Bystřice,Tvoršovice,Rozc.I", + "isMetro": false, + "latitude": 14.643459, + "longitude": 49.759125, + "stopId": "U4526" + }, + { + "id": "U4527Z1", + "name": "Tisem", + "isMetro": false, + "latitude": 14.609381, + "longitude": 49.754807, + "stopId": "U4527" + }, + { + "id": "U4527Z2", + "name": "Tisem", + "isMetro": false, + "latitude": 14.609549, + "longitude": 49.754627, + "stopId": "U4527" + }, + { + "id": "U4528Z1", + "name": "Neveklov,Doloplazy,Rozc.", + "isMetro": false, + "latitude": 14.58326, + "longitude": 49.753681, + "stopId": "U4528" + }, + { + "id": "U4528Z2", + "name": "Neveklov,Doloplazy,Rozc.", + "isMetro": false, + "latitude": 14.582789, + "longitude": 49.753517, + "stopId": "U4528" + }, + { + "id": "U452Z1", + "name": "Nádraží Horní Počernice", + "isMetro": false, + "latitude": 14.613603, + "longitude": 50.115337, + "stopId": "U452" + }, + { + "id": "U452Z2", + "name": "Nádraží Horní Počernice", + "isMetro": false, + "latitude": 14.612334, + "longitude": 50.115383, + "stopId": "U452" + }, + { + "id": "U452Z301", + "name": "Praha-Horní Počernice", + "isMetro": false, + "latitude": 14.612695, + "longitude": 50.116688, + "stopId": "U452" + }, + { + "id": "U4530Z1", + "name": "Maršovice,Zaječí,Rozc.", + "isMetro": false, + "latitude": 14.565701, + "longitude": 49.751064, + "stopId": "U4530" + }, + { + "id": "U4530Z2", + "name": "Maršovice,Zaječí,Rozc.", + "isMetro": false, + "latitude": 14.56573, + "longitude": 49.7509, + "stopId": "U4530" + }, + { + "id": "U4531Z1", + "name": "Neveklov,Spolí", + "isMetro": false, + "latitude": 14.517547, + "longitude": 49.745838, + "stopId": "U4531" + }, + { + "id": "U4531Z2", + "name": "Neveklov,Spolí", + "isMetro": false, + "latitude": 14.517797, + "longitude": 49.745777, + "stopId": "U4531" + }, + { + "id": "U4532Z1", + "name": "Neveklov,Zádolí,Rozc.", + "isMetro": false, + "latitude": 14.507785, + "longitude": 49.736942, + "stopId": "U4532" + }, + { + "id": "U4532Z2", + "name": "Neveklov,Zádolí,Rozc.", + "isMetro": false, + "latitude": 14.507912, + "longitude": 49.736805, + "stopId": "U4532" + }, + { + "id": "U4533Z1", + "name": "Křečovice,Vlkonice", + "isMetro": false, + "latitude": 14.491297, + "longitude": 49.7351, + "stopId": "U4533" + }, + { + "id": "U4533Z2", + "name": "Křečovice,Vlkonice", + "isMetro": false, + "latitude": 14.491589, + "longitude": 49.73502, + "stopId": "U4533" + }, + { + "id": "U4534Z1", + "name": "Křečovice,Rozc.Košťálka", + "isMetro": false, + "latitude": 14.492616, + "longitude": 49.726952, + "stopId": "U4534" + }, + { + "id": "U4534Z2", + "name": "Křečovice,Rozc.Košťálka", + "isMetro": false, + "latitude": 14.492935, + "longitude": 49.726944, + "stopId": "U4534" + }, + { + "id": "U4535Z1", + "name": "Křečovice,Dráha", + "isMetro": false, + "latitude": 14.484869, + "longitude": 49.723778, + "stopId": "U4535" + }, + { + "id": "U4535Z2", + "name": "Křečovice,Dráha", + "isMetro": false, + "latitude": 14.484954, + "longitude": 49.723625, + "stopId": "U4535" + }, + { + "id": "U4536Z1", + "name": "Křečovice", + "isMetro": false, + "latitude": 14.476489, + "longitude": 49.721512, + "stopId": "U4536" + }, + { + "id": "U4536Z2", + "name": "Křečovice", + "isMetro": false, + "latitude": 14.47667, + "longitude": 49.721386, + "stopId": "U4536" + }, + { + "id": "U4537Z1", + "name": "Křečovice,Krchleby", + "isMetro": false, + "latitude": 14.465219, + "longitude": 49.734947, + "stopId": "U4537" + }, + { + "id": "U4537Z2", + "name": "Křečovice,Krchleby", + "isMetro": false, + "latitude": 14.464914, + "longitude": 49.734955, + "stopId": "U4537" + }, + { + "id": "U4538Z1", + "name": "Křečovice,Nahoruby,Rozc.", + "isMetro": false, + "latitude": 14.456808, + "longitude": 49.742802, + "stopId": "U4538" + }, + { + "id": "U4538Z2", + "name": "Křečovice,Nahoruby,Rozc.", + "isMetro": false, + "latitude": 14.45706, + "longitude": 49.742683, + "stopId": "U4538" + }, + { + "id": "U4539Z1", + "name": "Křečovice,Nahoruby", + "isMetro": false, + "latitude": 14.443871, + "longitude": 49.739727, + "stopId": "U4539" + }, + { + "id": "U4539Z2", + "name": "Křečovice,Nahoruby", + "isMetro": false, + "latitude": 14.44397, + "longitude": 49.73962, + "stopId": "U4539" + }, + { + "id": "U453Z1", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.536583, + "longitude": 50.053345, + "stopId": "U453" + }, + { + "id": "U453Z10", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.537046, + "longitude": 50.052971, + "stopId": "U453" + }, + { + "id": "U453Z12", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.538156, + "longitude": 50.054043, + "stopId": "U453" + }, + { + "id": "U453Z2", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.537609, + "longitude": 50.053226, + "stopId": "U453" + }, + { + "id": "U453Z3", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.536634, + "longitude": 50.053307, + "stopId": "U453" + }, + { + "id": "U453Z301", + "name": "Praha-Hostivař", + "isMetro": false, + "latitude": 14.53823, + "longitude": 50.054958, + "stopId": "U453" + }, + { + "id": "U453Z4", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.537439, + "longitude": 50.053242, + "stopId": "U453" + }, + { + "id": "U453Z6", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.535085, + "longitude": 50.053112, + "stopId": "U453" + }, + { + "id": "U453Z7", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.536209, + "longitude": 50.053509, + "stopId": "U453" + }, + { + "id": "U453Z9", + "name": "Nádraží Hostivař", + "isMetro": false, + "latitude": 14.536238, + "longitude": 50.053436, + "stopId": "U453" + }, + { + "id": "U4540Z1", + "name": "Křečovice,Nahoruby,Mlačina", + "isMetro": false, + "latitude": 14.449261, + "longitude": 49.745262, + "stopId": "U4540" + }, + { + "id": "U4540Z2", + "name": "Křečovice,Nahoruby,Mlačina", + "isMetro": false, + "latitude": 14.449151, + "longitude": 49.745163, + "stopId": "U4540" + }, + { + "id": "U4541Z1", + "name": "Křečovice,Nová Živohošť", + "isMetro": false, + "latitude": 14.415882, + "longitude": 49.750729, + "stopId": "U4541" + }, + { + "id": "U4541Z2", + "name": "Křečovice,Nová Živohošť", + "isMetro": false, + "latitude": 14.415857, + "longitude": 49.750469, + "stopId": "U4541" + }, + { + "id": "U4543Z1", + "name": "Neveklov,Zavadilka", + "isMetro": false, + "latitude": 14.535335, + "longitude": 49.739922, + "stopId": "U4543" + }, + { + "id": "U4543Z2", + "name": "Neveklov,Zavadilka", + "isMetro": false, + "latitude": 14.535599, + "longitude": 49.739914, + "stopId": "U4543" + }, + { + "id": "U4544Z1", + "name": "Maršovice,Záhoří", + "isMetro": false, + "latitude": 14.543784, + "longitude": 49.733879, + "stopId": "U4544" + }, + { + "id": "U4544Z2", + "name": "Maršovice,Záhoří", + "isMetro": false, + "latitude": 14.543937, + "longitude": 49.733925, + "stopId": "U4544" + }, + { + "id": "U4545Z1", + "name": "Maršovice,Mstětice", + "isMetro": false, + "latitude": 14.546686, + "longitude": 49.727703, + "stopId": "U4545" + }, + { + "id": "U4545Z2", + "name": "Maršovice,Mstětice", + "isMetro": false, + "latitude": 14.546839, + "longitude": 49.727676, + "stopId": "U4545" + }, + { + "id": "U4546Z1", + "name": "Maršovice,Zderadice,Rozc.", + "isMetro": false, + "latitude": 14.552136, + "longitude": 49.724697, + "stopId": "U4546" + }, + { + "id": "U4546Z2", + "name": "Maršovice,Zderadice,Rozc.", + "isMetro": false, + "latitude": 14.55226, + "longitude": 49.724812, + "stopId": "U4546" + }, + { + "id": "U4547Z1", + "name": "Maršovice", + "isMetro": false, + "latitude": 14.565294, + "longitude": 49.714279, + "stopId": "U4547" + }, + { + "id": "U4547Z2", + "name": "Maršovice", + "isMetro": false, + "latitude": 14.565281, + "longitude": 49.714127, + "stopId": "U4547" + }, + { + "id": "U454Z1", + "name": "Nádraží Klánovice", + "isMetro": false, + "latitude": 14.664894, + "longitude": 50.086746, + "stopId": "U454" + }, + { + "id": "U454Z2", + "name": "Nádraží Klánovice", + "isMetro": false, + "latitude": 14.664768, + "longitude": 50.086567, + "stopId": "U454" + }, + { + "id": "U454Z3", + "name": "Nádraží Klánovice-sever", + "isMetro": false, + "latitude": 14.665476, + "longitude": 50.087757, + "stopId": "U454" + }, + { + "id": "U454Z301", + "name": "Praha-Klánovice", + "isMetro": false, + "latitude": 14.663997, + "longitude": 50.087166, + "stopId": "U454" + }, + { + "id": "U454Z4", + "name": "Nádraží Klánovice-sever", + "isMetro": false, + "latitude": 14.665545, + "longitude": 50.087917, + "stopId": "U454" + }, + { + "id": "U454Z71", + "name": "Nádraží Klánovice", + "isMetro": false, + "latitude": 14.664894, + "longitude": 50.086746, + "stopId": "U454" + }, + { + "id": "U454Z72", + "name": "Nádraží Klánovice", + "isMetro": false, + "latitude": 14.664768, + "longitude": 50.086567, + "stopId": "U454" + }, + { + "id": "U4554Z1", + "name": "Bystřice,Jírovice,rozc.", + "isMetro": false, + "latitude": 14.672883, + "longitude": 49.754841, + "stopId": "U4554" + }, + { + "id": "U4554Z2", + "name": "Bystřice,Jírovice,rozc.", + "isMetro": false, + "latitude": 14.673255, + "longitude": 49.755257, + "stopId": "U4554" + }, + { + "id": "U4555Z1", + "name": "Bystřice,žel.st.", + "isMetro": false, + "latitude": 14.666208, + "longitude": 49.740662, + "stopId": "U4555" + }, + { + "id": "U4555Z2", + "name": "Bystřice,žel.st.", + "isMetro": false, + "latitude": 14.666279, + "longitude": 49.740501, + "stopId": "U4555" + }, + { + "id": "U4555Z301", + "name": "Bystřice u Benešova", + "isMetro": false, + "latitude": 14.666493, + "longitude": 49.741718, + "stopId": "U4555" + }, + { + "id": "U4556Z1", + "name": "Bystřice,škola", + "isMetro": false, + "latitude": 14.666353, + "longitude": 49.737686, + "stopId": "U4556" + }, + { + "id": "U4556Z2", + "name": "Bystřice,škola", + "isMetro": false, + "latitude": 14.666519, + "longitude": 49.737785, + "stopId": "U4556" + }, + { + "id": "U4557Z1", + "name": "Bystřice,nám.", + "isMetro": false, + "latitude": 14.667223, + "longitude": 49.732258, + "stopId": "U4557" + }, + { + "id": "U4557Z2", + "name": "Bystřice,nám.", + "isMetro": false, + "latitude": 14.667432, + "longitude": 49.732105, + "stopId": "U4557" + }, + { + "id": "U4558Z1", + "name": "Bystřice,Nesvačily,Nad Rybníkem", + "isMetro": false, + "latitude": 14.642992, + "longitude": 49.732098, + "stopId": "U4558" + }, + { + "id": "U4558Z2", + "name": "Bystřice,Nesvačily,Nad Rybníkem", + "isMetro": false, + "latitude": 14.642951, + "longitude": 49.731915, + "stopId": "U4558" + }, + { + "id": "U4559Z1", + "name": "Bystřice,Nesvačily,Rest.", + "isMetro": false, + "latitude": 14.633945, + "longitude": 49.734451, + "stopId": "U4559" + }, + { + "id": "U4559Z2", + "name": "Bystřice,Nesvačily,Rest.", + "isMetro": false, + "latitude": 14.633931, + "longitude": 49.734272, + "stopId": "U4559" + }, + { + "id": "U455Z1", + "name": "U Rozcestí", + "isMetro": false, + "latitude": 14.635017, + "longitude": 50.016636, + "stopId": "U455" + }, + { + "id": "U455Z2", + "name": "U Rozcestí", + "isMetro": false, + "latitude": 14.634851, + "longitude": 50.016632, + "stopId": "U455" + }, + { + "id": "U4561Z1", + "name": "Bystřice,Tvoršovice,Rozc.II", + "isMetro": false, + "latitude": 14.624772, + "longitude": 49.738457, + "stopId": "U4561" + }, + { + "id": "U4561Z2", + "name": "Bystřice,Tvoršovice,Rozc.II", + "isMetro": false, + "latitude": 14.624635, + "longitude": 49.738316, + "stopId": "U4561" + }, + { + "id": "U4562Z1", + "name": "Bystřice,Mlýny,Rozc.", + "isMetro": false, + "latitude": 14.607953, + "longitude": 49.739113, + "stopId": "U4562" + }, + { + "id": "U4562Z2", + "name": "Bystřice,Mlýny,Rozc.", + "isMetro": false, + "latitude": 14.607996, + "longitude": 49.73896, + "stopId": "U4562" + }, + { + "id": "U4563Z1", + "name": "Maršovice,Dlouhá Lhota", + "isMetro": false, + "latitude": 14.596313, + "longitude": 49.739109, + "stopId": "U4563" + }, + { + "id": "U4563Z2", + "name": "Maršovice,Dlouhá Lhota", + "isMetro": false, + "latitude": 14.596495, + "longitude": 49.739029, + "stopId": "U4563" + }, + { + "id": "U4564Z1", + "name": "Maršovice,Zahrádka", + "isMetro": false, + "latitude": 14.58888, + "longitude": 49.73074, + "stopId": "U4564" + }, + { + "id": "U4564Z2", + "name": "Maršovice,Zahrádka", + "isMetro": false, + "latitude": 14.58906, + "longitude": 49.730721, + "stopId": "U4564" + }, + { + "id": "U4565Z1", + "name": "Maršovice,Libeč", + "isMetro": false, + "latitude": 14.58727, + "longitude": 49.725834, + "stopId": "U4565" + }, + { + "id": "U4565Z2", + "name": "Maršovice,Libeč", + "isMetro": false, + "latitude": 14.587728, + "longitude": 49.725899, + "stopId": "U4565" + }, + { + "id": "U456Z1", + "name": "Nádraží Radotín", + "isMetro": false, + "latitude": 14.364532, + "longitude": 49.985626, + "stopId": "U456" + }, + { + "id": "U456Z2", + "name": "Nádraží Radotín", + "isMetro": false, + "latitude": 14.36223, + "longitude": 49.984146, + "stopId": "U456" + }, + { + "id": "U456Z3", + "name": "Nádraží Radotín", + "isMetro": false, + "latitude": 14.36202, + "longitude": 49.984001, + "stopId": "U456" + }, + { + "id": "U456Z301", + "name": "Praha-Radotín", + "isMetro": false, + "latitude": 14.364065, + "longitude": 49.985874, + "stopId": "U456" + }, + { + "id": "U456Z4", + "name": "Nádraží Radotín", + "isMetro": false, + "latitude": 14.363646, + "longitude": 49.984867, + "stopId": "U456" + }, + { + "id": "U456Z5", + "name": "Nádraží Radotín", + "isMetro": false, + "latitude": 14.363217, + "longitude": 49.984451, + "stopId": "U456" + }, + { + "id": "U456Z6", + "name": "Nádraží Radotín", + "isMetro": false, + "latitude": 14.363132, + "longitude": 49.984428, + "stopId": "U456" + }, + { + "id": "U4572Z1", + "name": "Malešický park", + "isMetro": false, + "latitude": 14.495872, + "longitude": 50.086472, + "stopId": "U4572" + }, + { + "id": "U4572Z2", + "name": "Malešický park", + "isMetro": false, + "latitude": 14.496533, + "longitude": 50.086151, + "stopId": "U4572" + }, + { + "id": "U4575Z1", + "name": "Dobrovice,žel.st.", + "isMetro": false, + "latitude": 14.939631, + "longitude": 50.355869, + "stopId": "U4575" + }, + { + "id": "U4575Z2", + "name": "Dobrovice,žel.st.", + "isMetro": false, + "latitude": 14.939554, + "longitude": 50.35582, + "stopId": "U4575" + }, + { + "id": "U4575Z301", + "name": "Dobrovice", + "isMetro": false, + "latitude": 14.940217, + "longitude": 50.355095, + "stopId": "U4575" + }, + { + "id": "U4576Z1", + "name": "Nepřevázka,křižovatka", + "isMetro": false, + "latitude": 14.907965, + "longitude": 50.371452, + "stopId": "U4576" + }, + { + "id": "U4576Z2", + "name": "Nepřevázka,křižovatka", + "isMetro": false, + "latitude": 14.907898, + "longitude": 50.371597, + "stopId": "U4576" + }, + { + "id": "U4576Z301", + "name": "Nepřevázka", + "isMetro": false, + "latitude": 14.910984, + "longitude": 50.374344, + "stopId": "U4576" + }, + { + "id": "U4577Z301", + "name": "Luštěnice", + "isMetro": false, + "latitude": 14.944572, + "longitude": 50.321201, + "stopId": "U4577" + }, + { + "id": "U457Z1", + "name": "Nádraží Satalice", + "isMetro": false, + "latitude": 14.57133, + "longitude": 50.123863, + "stopId": "U457" + }, + { + "id": "U457Z301", + "name": "Praha-Satalice", + "isMetro": false, + "latitude": 14.570904, + "longitude": 50.122959, + "stopId": "U457" + }, + { + "id": "U458Z1", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409273, + "longitude": 50.061462, + "stopId": "U458" + }, + { + "id": "U458Z10", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409167, + "longitude": 50.0602, + "stopId": "U458" + }, + { + "id": "U458Z101", + "name": "Smíchovské nádraží", + "isMetro": true, + "latitude": 14.408972, + "longitude": 50.061284, + "stopId": "U458" + }, + { + "id": "U458Z102", + "name": "Smíchovské nádraží", + "isMetro": true, + "latitude": 14.409241, + "longitude": 50.061295, + "stopId": "U458" + }, + { + "id": "U458Z11", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409372, + "longitude": 50.059959, + "stopId": "U458" + }, + { + "id": "U458Z13", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409403, + "longitude": 50.061844, + "stopId": "U458" + }, + { + "id": "U458Z16", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409457, + "longitude": 50.059765, + "stopId": "U458" + }, + { + "id": "U458Z17", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409075, + "longitude": 50.061092, + "stopId": "U458" + }, + { + "id": "U458Z2", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409199, + "longitude": 50.06118, + "stopId": "U458" + }, + { + "id": "U458Z301", + "name": "Praha-Smíchov", + "isMetro": false, + "latitude": 14.40813, + "longitude": 50.06131, + "stopId": "U458" + }, + { + "id": "U458Z7", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409027, + "longitude": 50.061378, + "stopId": "U458" + }, + { + "id": "U458Z8", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409017, + "longitude": 50.0597, + "stopId": "U458" + }, + { + "id": "U458Z9", + "name": "Smíchovské nádraží", + "isMetro": false, + "latitude": 14.409192, + "longitude": 50.059731, + "stopId": "U458" + }, + { + "id": "U4592Z1", + "name": "Kladno,sokolovna", + "isMetro": false, + "latitude": 14.139222, + "longitude": 50.160141, + "stopId": "U4592" + }, + { + "id": "U4592Z2", + "name": "Kladno,sokolovna", + "isMetro": false, + "latitude": 14.139806, + "longitude": 50.160431, + "stopId": "U4592" + }, + { + "id": "U4593Z1", + "name": "Kladno,VHS", + "isMetro": false, + "latitude": 14.155466, + "longitude": 50.165039, + "stopId": "U4593" + }, + { + "id": "U4593Z2", + "name": "Kladno,VHS", + "isMetro": false, + "latitude": 14.155587, + "longitude": 50.165344, + "stopId": "U4593" + }, + { + "id": "U4593Z301", + "name": "Kladno-Vrapice", + "isMetro": false, + "latitude": 14.153953, + "longitude": 50.166252, + "stopId": "U4593" + }, + { + "id": "U4594Z1", + "name": "Kladno,celnice", + "isMetro": false, + "latitude": 14.123852, + "longitude": 50.122231, + "stopId": "U4594" + }, + { + "id": "U4594Z2", + "name": "Kladno,celnice", + "isMetro": false, + "latitude": 14.125136, + "longitude": 50.122543, + "stopId": "U4594" + }, + { + "id": "U4594Z3", + "name": "Kladno,celnice", + "isMetro": false, + "latitude": 14.124539, + "longitude": 50.121887, + "stopId": "U4594" + }, + { + "id": "U4595Z1", + "name": "Kladno,Billundská", + "isMetro": false, + "latitude": 14.125449, + "longitude": 50.118763, + "stopId": "U4595" + }, + { + "id": "U4595Z2", + "name": "Kladno,Billundská", + "isMetro": false, + "latitude": 14.125459, + "longitude": 50.119331, + "stopId": "U4595" + }, + { + "id": "U4596Z1", + "name": "Kladno,Kožovská", + "isMetro": false, + "latitude": 14.120296, + "longitude": 50.116699, + "stopId": "U4596" + }, + { + "id": "U4596Z2", + "name": "Kladno,Kožovská", + "isMetro": false, + "latitude": 14.120657, + "longitude": 50.11673, + "stopId": "U4596" + }, + { + "id": "U4597Z1", + "name": "Kladno,pekárna", + "isMetro": false, + "latitude": 14.114952, + "longitude": 50.117634, + "stopId": "U4597" + }, + { + "id": "U4597Z2", + "name": "Kladno,pekárna", + "isMetro": false, + "latitude": 14.114704, + "longitude": 50.117607, + "stopId": "U4597" + }, + { + "id": "U459Z1", + "name": "Staré Strašnice", + "isMetro": false, + "latitude": 14.492631, + "longitude": 50.068436, + "stopId": "U459" + }, + { + "id": "U459Z2", + "name": "Staré Strašnice", + "isMetro": false, + "latitude": 14.493204, + "longitude": 50.068001, + "stopId": "U459" + }, + { + "id": "U459Z3", + "name": "Staré Strašnice", + "isMetro": false, + "latitude": 14.491965, + "longitude": 50.068645, + "stopId": "U459" + }, + { + "id": "U459Z5", + "name": "Staré Strašnice", + "isMetro": false, + "latitude": 14.492201, + "longitude": 50.068668, + "stopId": "U459" + }, + { + "id": "U45Z1", + "name": "Bruselská", + "isMetro": false, + "latitude": 14.433302, + "longitude": 50.073132, + "stopId": "U45" + }, + { + "id": "U45Z2", + "name": "Bruselská", + "isMetro": false, + "latitude": 14.433224, + "longitude": 50.07288, + "stopId": "U45" + }, + { + "id": "U4601Z1", + "name": "Kladno,Ronovka", + "isMetro": false, + "latitude": 14.107738, + "longitude": 50.175091, + "stopId": "U4601" + }, + { + "id": "U4601Z2", + "name": "Kladno,Ronovka", + "isMetro": false, + "latitude": 14.107431, + "longitude": 50.175484, + "stopId": "U4601" + }, + { + "id": "U4602Z1", + "name": "Kladno,U Knotků", + "isMetro": false, + "latitude": 14.106825, + "longitude": 50.163788, + "stopId": "U4602" + }, + { + "id": "U4602Z2", + "name": "Kladno,U Knotků", + "isMetro": false, + "latitude": 14.106972, + "longitude": 50.163677, + "stopId": "U4602" + }, + { + "id": "U4603Z1", + "name": "Kladno,Husova", + "isMetro": false, + "latitude": 14.101551, + "longitude": 50.163975, + "stopId": "U4603" + }, + { + "id": "U4603Z2", + "name": "Kladno,Husova", + "isMetro": false, + "latitude": 14.102369, + "longitude": 50.163876, + "stopId": "U4603" + }, + { + "id": "U4604Z1", + "name": "Vinařice,Tuháň", + "isMetro": false, + "latitude": 14.087924, + "longitude": 50.163158, + "stopId": "U4604" + }, + { + "id": "U4604Z2", + "name": "Vinařice,Tuháň", + "isMetro": false, + "latitude": 14.087825, + "longitude": 50.163216, + "stopId": "U4604" + }, + { + "id": "U4605Z1", + "name": "Studeněves,Krkavčí mlýn", + "isMetro": false, + "latitude": 14.052982, + "longitude": 50.22382, + "stopId": "U4605" + }, + { + "id": "U4605Z2", + "name": "Studeněves,Krkavčí mlýn", + "isMetro": false, + "latitude": 14.052946, + "longitude": 50.223713, + "stopId": "U4605" + }, + { + "id": "U4606Z1", + "name": "Studeněves", + "isMetro": false, + "latitude": 14.044724, + "longitude": 50.224159, + "stopId": "U4606" + }, + { + "id": "U4606Z2", + "name": "Studeněves", + "isMetro": false, + "latitude": 14.044674, + "longitude": 50.22401, + "stopId": "U4606" + }, + { + "id": "U4608Z1", + "name": "Roudnice n.L.,žel.st.", + "isMetro": false, + "latitude": 14.262226, + "longitude": 50.426319, + "stopId": "U4608" + }, + { + "id": "U4608Z301", + "name": "Roudnice nad Labem", + "isMetro": false, + "latitude": 14.264732, + "longitude": 50.426498, + "stopId": "U4608" + }, + { + "id": "U4609Z301", + "name": "Dobříň", + "isMetro": false, + "latitude": 14.296396, + "longitude": 50.437244, + "stopId": "U4609" + }, + { + "id": "U4610Z301", + "name": "Záluží", + "isMetro": false, + "latitude": 14.325495, + "longitude": 50.456821, + "stopId": "U4610" + }, + { + "id": "U4611Z301", + "name": "Roudnice n.L.-Bezděkov", + "isMetro": false, + "latitude": 14.282088, + "longitude": 50.428604, + "stopId": "U4611" + }, + { + "id": "U4612Z301", + "name": "Roudnice n.L.město", + "isMetro": false, + "latitude": 14.258687, + "longitude": 50.421654, + "stopId": "U4612" + }, + { + "id": "U4613Z301", + "name": "Roudnice n.L.-Hracholusky", + "isMetro": false, + "latitude": 14.253057, + "longitude": 50.416962, + "stopId": "U4613" + }, + { + "id": "U4614Z301", + "name": "Kleneč", + "isMetro": false, + "latitude": 14.246848, + "longitude": 50.394203, + "stopId": "U4614" + }, + { + "id": "U4615Z301", + "name": "Vražkov", + "isMetro": false, + "latitude": 14.264088, + "longitude": 50.367535, + "stopId": "U4615" + }, + { + "id": "U4616Z301", + "name": "Cerhovice", + "isMetro": false, + "latitude": 13.837087, + "longitude": 49.836334, + "stopId": "U4616" + }, + { + "id": "U4617Z301", + "name": "Kařez", + "isMetro": false, + "latitude": 13.779062, + "longitude": 49.822556, + "stopId": "U4617" + }, + { + "id": "U4618Z301", + "name": "Kařízek", + "isMetro": false, + "latitude": 13.767875, + "longitude": 49.800812, + "stopId": null + }, + { + "id": "U4619Z301", + "name": "Ledečky", + "isMetro": false, + "latitude": 15.186008, + "longitude": 50.284237, + "stopId": "U4619" + }, + { + "id": "U461Z1", + "name": "Nádraží Uhříněves", + "isMetro": false, + "latitude": 14.59216, + "longitude": 50.033817, + "stopId": "U461" + }, + { + "id": "U461Z2", + "name": "Nádraží Uhříněves", + "isMetro": false, + "latitude": 14.59304, + "longitude": 50.033253, + "stopId": "U461" + }, + { + "id": "U461Z301", + "name": "Praha-Uhříněves", + "isMetro": false, + "latitude": 14.591714, + "longitude": 50.033501, + "stopId": "U461" + }, + { + "id": "U461Z71", + "name": "Nádraží Uhříněves", + "isMetro": false, + "latitude": 14.59216, + "longitude": 50.033817, + "stopId": "U461" + }, + { + "id": "U4620Z301", + "name": "Mlýnec", + "isMetro": false, + "latitude": 15.220712, + "longitude": 50.317654, + "stopId": "U4620" + }, + { + "id": "U4621Z1", + "name": "Kopidlno,žel.st.", + "isMetro": false, + "latitude": 15.261122, + "longitude": 50.333755, + "stopId": "U4621" + }, + { + "id": "U4621Z301", + "name": "Kopidlno", + "isMetro": false, + "latitude": 15.260494, + "longitude": 50.333984, + "stopId": "U4621" + }, + { + "id": "U4625Z301", + "name": "Městec Králové", + "isMetro": false, + "latitude": 15.300321, + "longitude": 50.21059, + "stopId": "U4625" + }, + { + "id": "U462Z1", + "name": "Nádraží Veleslavín", + "isMetro": false, + "latitude": 14.348344, + "longitude": 50.095978, + "stopId": "U462" + }, + { + "id": "U462Z101", + "name": "Nádraží Veleslavín", + "isMetro": true, + "latitude": 14.348625, + "longitude": 50.095901, + "stopId": "U462" + }, + { + "id": "U462Z102", + "name": "Nádraží Veleslavín", + "isMetro": true, + "latitude": 14.348501, + "longitude": 50.096007, + "stopId": "U462" + }, + { + "id": "U462Z11", + "name": "Nádraží Veleslavín", + "isMetro": false, + "latitude": 14.346771, + "longitude": 50.095436, + "stopId": "U462" + }, + { + "id": "U462Z12", + "name": "Nádraží Veleslavín", + "isMetro": false, + "latitude": 14.346395, + "longitude": 50.09539, + "stopId": "U462" + }, + { + "id": "U462Z14", + "name": "Nádraží Veleslavín", + "isMetro": false, + "latitude": 14.347121, + "longitude": 50.095428, + "stopId": "U462" + }, + { + "id": "U462Z15", + "name": "Nádraží Veleslavín", + "isMetro": false, + "latitude": 14.346547, + "longitude": 50.095509, + "stopId": "U462" + }, + { + "id": "U462Z2", + "name": "Nádraží Veleslavín", + "isMetro": false, + "latitude": 14.346083, + "longitude": 50.095722, + "stopId": "U462" + }, + { + "id": "U462Z301", + "name": "Praha-Veleslavín", + "isMetro": false, + "latitude": 14.346188, + "longitude": 50.094994, + "stopId": "U462" + }, + { + "id": "U462Z4", + "name": "Nádraží Veleslavín", + "isMetro": false, + "latitude": 14.34705, + "longitude": 50.096283, + "stopId": "U462" + }, + { + "id": "U463Z1", + "name": "Nádraží Vršovice", + "isMetro": false, + "latitude": 14.447584, + "longitude": 50.066113, + "stopId": "U463" + }, + { + "id": "U463Z2", + "name": "Nádraží Vršovice", + "isMetro": false, + "latitude": 14.448458, + "longitude": 50.065994, + "stopId": "U463" + }, + { + "id": "U463Z3", + "name": "Nádraží Vršovice", + "isMetro": false, + "latitude": 14.447349, + "longitude": 50.065231, + "stopId": "U463" + }, + { + "id": "U463Z301", + "name": "Praha-Vršovice", + "isMetro": false, + "latitude": 14.44767, + "longitude": 50.064518, + "stopId": "U463" + }, + { + "id": "U463Z4", + "name": "Nádraží Vršovice", + "isMetro": false, + "latitude": 14.44796, + "longitude": 50.065075, + "stopId": "U463" + }, + { + "id": "U464Z1", + "name": "Poliklinika Vysočany", + "isMetro": false, + "latitude": 14.494864, + "longitude": 50.108974, + "stopId": "U464" + }, + { + "id": "U464Z2", + "name": "Poliklinika Vysočany", + "isMetro": false, + "latitude": 14.494761, + "longitude": 50.108864, + "stopId": "U464" + }, + { + "id": "U464Z3", + "name": "Poliklinika Vysočany", + "isMetro": false, + "latitude": 14.49365, + "longitude": 50.108433, + "stopId": "U464" + }, + { + "id": "U464Z5", + "name": "Poliklinika Vysočany", + "isMetro": false, + "latitude": 14.493668, + "longitude": 50.108685, + "stopId": "U464" + }, + { + "id": "U465Z1", + "name": "Nádraží Zbraslav", + "isMetro": false, + "latitude": 14.400117, + "longitude": 49.972866, + "stopId": "U465" + }, + { + "id": "U465Z2", + "name": "Nádraží Zbraslav", + "isMetro": false, + "latitude": 14.399139, + "longitude": 49.971909, + "stopId": "U465" + }, + { + "id": "U465Z301", + "name": "Praha-Zbraslav", + "isMetro": false, + "latitude": 14.399713, + "longitude": 49.970531, + "stopId": "U465" + }, + { + "id": "U466Z1", + "name": "Lidečská", + "isMetro": false, + "latitude": 14.301241, + "longitude": 50.060707, + "stopId": "U466" + }, + { + "id": "U466Z2", + "name": "Lidečská", + "isMetro": false, + "latitude": 14.303081, + "longitude": 50.060814, + "stopId": "U466" + }, + { + "id": "U467Z1", + "name": "Třebenická", + "isMetro": false, + "latitude": 14.480905, + "longitude": 50.129536, + "stopId": "U467" + }, + { + "id": "U467Z2", + "name": "Třebenická", + "isMetro": false, + "latitude": 14.482683, + "longitude": 50.129215, + "stopId": "U467" + }, + { + "id": "U467Z3", + "name": "Třebenická", + "isMetro": false, + "latitude": 14.480145, + "longitude": 50.129776, + "stopId": "U467" + }, + { + "id": "U467Z4", + "name": "Třebenická", + "isMetro": false, + "latitude": 14.481492, + "longitude": 50.128777, + "stopId": "U467" + }, + { + "id": "U468Z1", + "name": "Pod Děvínem", + "isMetro": false, + "latitude": 14.406134, + "longitude": 50.05275, + "stopId": "U468" + }, + { + "id": "U468Z2", + "name": "Pod Děvínem", + "isMetro": false, + "latitude": 14.405245, + "longitude": 50.053944, + "stopId": "U468" + }, + { + "id": "U469Z1", + "name": "Nákladové nádraží Žižkov", + "isMetro": false, + "latitude": 14.470428, + "longitude": 50.084972, + "stopId": "U469" + }, + { + "id": "U469Z2", + "name": "Nákladové nádraží Žižkov", + "isMetro": false, + "latitude": 14.470274, + "longitude": 50.085629, + "stopId": "U469" + }, + { + "id": "U469Z3", + "name": "Nákladové nádraží Žižkov", + "isMetro": false, + "latitude": 14.469066, + "longitude": 50.084141, + "stopId": "U469" + }, + { + "id": "U469Z4", + "name": "Nákladové nádraží Žižkov", + "isMetro": false, + "latitude": 14.469828, + "longitude": 50.084187, + "stopId": "U469" + }, + { + "id": "U46Z1", + "name": "Brusnice", + "isMetro": false, + "latitude": 14.391733, + "longitude": 50.092976, + "stopId": "U46" + }, + { + "id": "U46Z2", + "name": "Brusnice", + "isMetro": false, + "latitude": 14.391259, + "longitude": 50.093002, + "stopId": "U46" + }, + { + "id": "U4700Z1", + "name": "Hořín,Brozánky,Staré Brozánky", + "isMetro": false, + "latitude": 14.460386, + "longitude": 50.353111, + "stopId": "U4700" + }, + { + "id": "U4700Z2", + "name": "Hořín,Brozánky,Staré Brozánky", + "isMetro": false, + "latitude": 14.460294, + "longitude": 50.352589, + "stopId": "U4700" + }, + { + "id": "U4701Z1", + "name": "Dolní Beřkovice,Posadovice", + "isMetro": false, + "latitude": 14.451183, + "longitude": 50.366455, + "stopId": "U4701" + }, + { + "id": "U4701Z2", + "name": "Dolní Beřkovice,Posadovice", + "isMetro": false, + "latitude": 14.451059, + "longitude": 50.36623, + "stopId": "U4701" + }, + { + "id": "U4702Z1", + "name": "Dolní Beřkovice,Vliněves", + "isMetro": false, + "latitude": 14.44961, + "longitude": 50.37373, + "stopId": "U4702" + }, + { + "id": "U4702Z2", + "name": "Dolní Beřkovice,Vliněves", + "isMetro": false, + "latitude": 14.449356, + "longitude": 50.373753, + "stopId": "U4702" + }, + { + "id": "U4703Z1", + "name": "Dolní Beřkovice,Cukrovar", + "isMetro": false, + "latitude": 14.451361, + "longitude": 50.38644, + "stopId": "U4703" + }, + { + "id": "U4703Z2", + "name": "Dolní Beřkovice,Cukrovar", + "isMetro": false, + "latitude": 14.451188, + "longitude": 50.386753, + "stopId": "U4703" + }, + { + "id": "U4704Z1", + "name": "Dolní Beřkovice", + "isMetro": false, + "latitude": 14.451824, + "longitude": 50.392582, + "stopId": "U4704" + }, + { + "id": "U4704Z2", + "name": "Dolní Beřkovice", + "isMetro": false, + "latitude": 14.45196, + "longitude": 50.391449, + "stopId": "U4704" + }, + { + "id": "U4705Z1", + "name": "Horní Počaply,Křivenice", + "isMetro": false, + "latitude": 14.429924, + "longitude": 50.40934, + "stopId": "U4705" + }, + { + "id": "U4705Z2", + "name": "Horní Počaply,Křivenice", + "isMetro": false, + "latitude": 14.429049, + "longitude": 50.409668, + "stopId": "U4705" + }, + { + "id": "U4706Z1", + "name": "Horní Počaply,Porobeton", + "isMetro": false, + "latitude": 14.426122, + "longitude": 50.412018, + "stopId": "U4706" + }, + { + "id": "U4706Z2", + "name": "Horní Počaply,Porobeton", + "isMetro": false, + "latitude": 14.425515, + "longitude": 50.412178, + "stopId": "U4706" + }, + { + "id": "U4707Z1", + "name": "Horní Počaply,Elektrárna II", + "isMetro": false, + "latitude": 14.421275, + "longitude": 50.414963, + "stopId": "U4707" + }, + { + "id": "U4707Z2", + "name": "Horní Počaply,Elektrárna II", + "isMetro": false, + "latitude": 14.421064, + "longitude": 50.414871, + "stopId": "U4707" + }, + { + "id": "U4708Z1", + "name": "Horní Počaply,Elektrárna I", + "isMetro": false, + "latitude": 14.411393, + "longitude": 50.417046, + "stopId": "U4708" + }, + { + "id": "U4709Z2", + "name": "Horní Počaply", + "isMetro": false, + "latitude": 14.388691, + "longitude": 50.424713, + "stopId": "U4709" + }, + { + "id": "U470Z1", + "name": "Škola Slivenec", + "isMetro": false, + "latitude": 14.354153, + "longitude": 50.019382, + "stopId": "U470" + }, + { + "id": "U470Z2", + "name": "Škola Slivenec", + "isMetro": false, + "latitude": 14.354333, + "longitude": 50.019455, + "stopId": "U470" + }, + { + "id": "U4712Z1", + "name": "Kostomlaty p.Řípem,rozc.", + "isMetro": false, + "latitude": 14.33706, + "longitude": 50.387436, + "stopId": "U4712" + }, + { + "id": "U4712Z2", + "name": "Kostomlaty p.Řípem,rozc.", + "isMetro": false, + "latitude": 14.336949, + "longitude": 50.387299, + "stopId": "U4712" + }, + { + "id": "U4713Z1", + "name": "Krabčice", + "isMetro": false, + "latitude": 14.301546, + "longitude": 50.405281, + "stopId": "U4713" + }, + { + "id": "U4713Z2", + "name": "Krabčice", + "isMetro": false, + "latitude": 14.301379, + "longitude": 50.405125, + "stopId": "U4713" + }, + { + "id": "U4714Z1", + "name": "Krabčice,Vesce,rozc.1.0", + "isMetro": false, + "latitude": 14.288408, + "longitude": 50.410873, + "stopId": "U4714" + }, + { + "id": "U4714Z2", + "name": "Krabčice,Vesce,rozc.1.0", + "isMetro": false, + "latitude": 14.288482, + "longitude": 50.410721, + "stopId": "U4714" + }, + { + "id": "U4715Z1", + "name": "Roudnice n.L.,Čihadla", + "isMetro": false, + "latitude": 14.266106, + "longitude": 50.41938, + "stopId": "U4715" + }, + { + "id": "U4715Z2", + "name": "Roudnice n.L.,Čihadla", + "isMetro": false, + "latitude": 14.265684, + "longitude": 50.419361, + "stopId": "U4715" + }, + { + "id": "U4716Z1", + "name": "Roudnice n.L.,Purkyňovo nám.", + "isMetro": false, + "latitude": 14.254754, + "longitude": 50.422726, + "stopId": "U4716" + }, + { + "id": "U4716Z2", + "name": "Roudnice n.L.,Purkyňovo nám.", + "isMetro": false, + "latitude": 14.254557, + "longitude": 50.422806, + "stopId": "U4716" + }, + { + "id": "U4717Z1", + "name": "Roudnice n.L.,aut.nádr.", + "isMetro": false, + "latitude": 14.260473, + "longitude": 50.424164, + "stopId": "U4717" + }, + { + "id": "U4717Z2", + "name": "Roudnice n.L.,aut.nádr.", + "isMetro": false, + "latitude": 14.259995, + "longitude": 50.424152, + "stopId": "U4717" + }, + { + "id": "U4718Z1", + "name": "Stará Huť,Knínská", + "isMetro": false, + "latitude": 14.206578, + "longitude": 49.78524, + "stopId": "U4718" + }, + { + "id": "U4718Z2", + "name": "Stará Huť,Knínská", + "isMetro": false, + "latitude": 14.206581, + "longitude": 49.785061, + "stopId": "U4718" + }, + { + "id": "U471Z1", + "name": "Libeňský zámek", + "isMetro": false, + "latitude": 14.4722, + "longitude": 50.108311, + "stopId": "U471" + }, + { + "id": "U471Z2", + "name": "Libeňský zámek", + "isMetro": false, + "latitude": 14.472365, + "longitude": 50.108589, + "stopId": "U471" + }, + { + "id": "U4720Z1", + "name": "Mokrovraty,Pouště,Rozc.", + "isMetro": false, + "latitude": 14.223735, + "longitude": 49.787407, + "stopId": "U4720" + }, + { + "id": "U4720Z2", + "name": "Mokrovraty,Pouště,Rozc.", + "isMetro": false, + "latitude": 14.223904, + "longitude": 49.787292, + "stopId": "U4720" + }, + { + "id": "U4722Z1", + "name": "Mokrovraty,U Statku", + "isMetro": false, + "latitude": 14.258539, + "longitude": 49.79348, + "stopId": "U4722" + }, + { + "id": "U4722Z2", + "name": "Mokrovraty,U Statku", + "isMetro": false, + "latitude": 14.258514, + "longitude": 49.793289, + "stopId": "U4722" + }, + { + "id": "U4723Z1", + "name": "Nový Knín,Starý Knín", + "isMetro": false, + "latitude": 14.281914, + "longitude": 49.787846, + "stopId": "U4723" + }, + { + "id": "U4723Z2", + "name": "Nový Knín,Starý Knín", + "isMetro": false, + "latitude": 14.281664, + "longitude": 49.787861, + "stopId": "U4723" + }, + { + "id": "U4728Z1", + "name": "Cítov,Roudnická", + "isMetro": false, + "latitude": 14.389753, + "longitude": 50.373825, + "stopId": "U4728" + }, + { + "id": "U4728Z2", + "name": "Cítov,Roudnická", + "isMetro": false, + "latitude": 14.389713, + "longitude": 50.373619, + "stopId": "U4728" + }, + { + "id": "U472Z1", + "name": "Hostivařská", + "isMetro": false, + "latitude": 14.529498, + "longitude": 50.052773, + "stopId": "U472" + }, + { + "id": "U472Z2", + "name": "Hostivařská", + "isMetro": false, + "latitude": 14.53038, + "longitude": 50.05267, + "stopId": "U472" + }, + { + "id": "U472Z3", + "name": "Hostivařská", + "isMetro": false, + "latitude": 14.528652, + "longitude": 50.052692, + "stopId": "U472" + }, + { + "id": "U472Z4", + "name": "Hostivařská", + "isMetro": false, + "latitude": 14.527876, + "longitude": 50.052925, + "stopId": "U472" + }, + { + "id": "U4738Z1", + "name": "Buštěhrad,U Kapličky", + "isMetro": false, + "latitude": 14.195106, + "longitude": 50.152798, + "stopId": "U4738" + }, + { + "id": "U4738Z2", + "name": "Buštěhrad,U Kapličky", + "isMetro": false, + "latitude": 14.195148, + "longitude": 50.153034, + "stopId": "U4738" + }, + { + "id": "U473Z1", + "name": "Kubánské náměstí", + "isMetro": false, + "latitude": 14.47785, + "longitude": 50.070885, + "stopId": "U473" + }, + { + "id": "U473Z2", + "name": "Kubánské náměstí", + "isMetro": false, + "latitude": 14.476859, + "longitude": 50.070717, + "stopId": "U473" + }, + { + "id": "U473Z3", + "name": "Kubánské náměstí", + "isMetro": false, + "latitude": 14.477633, + "longitude": 50.070503, + "stopId": "U473" + }, + { + "id": "U4746Z1", + "name": "Borotice,Čelina", + "isMetro": false, + "latitude": 14.325607, + "longitude": 49.732456, + "stopId": "U4746" + }, + { + "id": "U4746Z2", + "name": "Borotice,Čelina", + "isMetro": false, + "latitude": 14.32572, + "longitude": 49.732304, + "stopId": "U4746" + }, + { + "id": "U4747Z1", + "name": "Borotice,Rozc.Smilovice", + "isMetro": false, + "latitude": 14.330558, + "longitude": 49.725506, + "stopId": "U4747" + }, + { + "id": "U4747Z2", + "name": "Borotice,Rozc.Smilovice", + "isMetro": false, + "latitude": 14.330527, + "longitude": 49.725697, + "stopId": "U4747" + }, + { + "id": "U4748Z1", + "name": "Borotice,Cholín", + "isMetro": false, + "latitude": 14.329709, + "longitude": 49.718624, + "stopId": "U4748" + }, + { + "id": "U4748Z2", + "name": "Borotice,Cholín", + "isMetro": false, + "latitude": 14.330015, + "longitude": 49.718544, + "stopId": "U4748" + }, + { + "id": "U4749Z1", + "name": "Křepenice,V Pekle", + "isMetro": false, + "latitude": 14.328952, + "longitude": 49.710148, + "stopId": "U4749" + }, + { + "id": "U4749Z2", + "name": "Křepenice,V Pekle", + "isMetro": false, + "latitude": 14.329175, + "longitude": 49.710087, + "stopId": "U4749" + }, + { + "id": "U474Z1", + "name": "Vysočanská", + "isMetro": false, + "latitude": 14.502682, + "longitude": 50.111504, + "stopId": "U474" + }, + { + "id": "U474Z101", + "name": "Vysočanská", + "isMetro": true, + "latitude": 14.501324, + "longitude": 50.110049, + "stopId": "U474" + }, + { + "id": "U474Z102", + "name": "Vysočanská", + "isMetro": true, + "latitude": 14.501213, + "longitude": 50.110177, + "stopId": "U474" + }, + { + "id": "U474Z2", + "name": "Vysočanská", + "isMetro": false, + "latitude": 14.503456, + "longitude": 50.11121, + "stopId": "U474" + }, + { + "id": "U474Z3", + "name": "Nádraží Vysočany", + "isMetro": false, + "latitude": 14.499, + "longitude": 50.110325, + "stopId": "U474" + }, + { + "id": "U474Z301", + "name": "Praha-Vysočany", + "isMetro": false, + "latitude": 14.497358, + "longitude": 50.11235, + "stopId": "U474" + }, + { + "id": "U474Z4", + "name": "Vysočanská", + "isMetro": false, + "latitude": 14.502466, + "longitude": 50.110626, + "stopId": "U474" + }, + { + "id": "U474Z5", + "name": "Vysočanská", + "isMetro": false, + "latitude": 14.502591, + "longitude": 50.110832, + "stopId": "U474" + }, + { + "id": "U474Z6", + "name": "Vysočanská", + "isMetro": false, + "latitude": 14.502212, + "longitude": 50.110825, + "stopId": "U474" + }, + { + "id": "U474Z7", + "name": "Vysočanská", + "isMetro": false, + "latitude": 14.502181, + "longitude": 50.110653, + "stopId": "U474" + }, + { + "id": "U474Z8", + "name": "Nádraží Vysočany", + "isMetro": false, + "latitude": 14.499093, + "longitude": 50.11013, + "stopId": "U474" + }, + { + "id": "U4750Z1", + "name": "Křepenice,Rozc.", + "isMetro": false, + "latitude": 14.347077, + "longitude": 49.699528, + "stopId": "U4750" + }, + { + "id": "U4750Z2", + "name": "Křepenice,Rozc.", + "isMetro": false, + "latitude": 14.34706, + "longitude": 49.699753, + "stopId": "U4750" + }, + { + "id": "U4752Z1", + "name": "Nalžovice", + "isMetro": false, + "latitude": 14.371981, + "longitude": 49.699944, + "stopId": "U4752" + }, + { + "id": "U4752Z2", + "name": "Nalžovice", + "isMetro": false, + "latitude": 14.372007, + "longitude": 49.700089, + "stopId": "U4752" + }, + { + "id": "U4753Z1", + "name": "Nalžovice,Chlum", + "isMetro": false, + "latitude": 14.378471, + "longitude": 49.697525, + "stopId": "U4753" + }, + { + "id": "U4753Z2", + "name": "Nalžovice,Chlum", + "isMetro": false, + "latitude": 14.378594, + "longitude": 49.697678, + "stopId": "U4753" + }, + { + "id": "U475Z1", + "name": "Mládí", + "isMetro": false, + "latitude": 14.321633, + "longitude": 50.050034, + "stopId": "U475" + }, + { + "id": "U475Z2", + "name": "Mládí", + "isMetro": false, + "latitude": 14.3232, + "longitude": 50.050152, + "stopId": "U475" + }, + { + "id": "U4760Z1", + "name": "Osečany", + "isMetro": false, + "latitude": 14.437543, + "longitude": 49.697941, + "stopId": "U4760" + }, + { + "id": "U4761Z1", + "name": "Kňovice", + "isMetro": false, + "latitude": 14.400627, + "longitude": 49.688065, + "stopId": "U4761" + }, + { + "id": "U4761Z2", + "name": "Kňovice", + "isMetro": false, + "latitude": 14.400736, + "longitude": 49.688236, + "stopId": "U4761" + }, + { + "id": "U4762Z1", + "name": "Kňovice,Kňovičky", + "isMetro": false, + "latitude": 14.404669, + "longitude": 49.681648, + "stopId": "U4762" + }, + { + "id": "U4762Z2", + "name": "Kňovice,Kňovičky", + "isMetro": false, + "latitude": 14.40488, + "longitude": 49.681442, + "stopId": "U4762" + }, + { + "id": "U4763Z1", + "name": "Sedlčany,Novoměstská", + "isMetro": false, + "latitude": 14.423253, + "longitude": 49.662689, + "stopId": "U4763" + }, + { + "id": "U4763Z2", + "name": "Sedlčany,Novoměstská", + "isMetro": false, + "latitude": 14.423743, + "longitude": 49.663422, + "stopId": "U4763" + }, + { + "id": "U4764Z1", + "name": "Sedlčany,aut.st.", + "isMetro": false, + "latitude": 14.428874, + "longitude": 49.657913, + "stopId": "U4764" + }, + { + "id": "U4764Z2", + "name": "Sedlčany,aut.st.", + "isMetro": false, + "latitude": 14.428622, + "longitude": 49.657906, + "stopId": "U4764" + }, + { + "id": "U4764Z3", + "name": "Sedlčany,aut.st.", + "isMetro": false, + "latitude": 14.428873, + "longitude": 49.657982, + "stopId": "U4764" + }, + { + "id": "U4764Z5", + "name": "Sedlčany,aut.st.", + "isMetro": false, + "latitude": 14.42886, + "longitude": 49.658024, + "stopId": "U4764" + }, + { + "id": "U4764Z6", + "name": "Sedlčany,aut.st.", + "isMetro": false, + "latitude": 14.4286, + "longitude": 49.658009, + "stopId": "U4764" + }, + { + "id": "U4764Z8", + "name": "Sedlčany,aut.st.", + "isMetro": false, + "latitude": 14.42856, + "longitude": 49.657764, + "stopId": "U4764" + }, + { + "id": "U4765Z301", + "name": "Rakovník západ", + "isMetro": false, + "latitude": 13.713891, + "longitude": 50.101749, + "stopId": "U4765" + }, + { + "id": "U4766Z1", + "name": "Beroun,třída Míru", + "isMetro": false, + "latitude": 14.049384, + "longitude": 49.95594, + "stopId": "U4766" + }, + { + "id": "U4766Z2", + "name": "Beroun,třída Míru", + "isMetro": false, + "latitude": 14.049112, + "longitude": 49.955643, + "stopId": "U4766" + }, + { + "id": "U4767Z1", + "name": "Brandýsek,škola", + "isMetro": false, + "latitude": 14.158219, + "longitude": 50.188717, + "stopId": "U4767" + }, + { + "id": "U4767Z2", + "name": "Brandýsek,škola", + "isMetro": false, + "latitude": 14.158262, + "longitude": 50.188602, + "stopId": "U4767" + }, + { + "id": "U4768Z1", + "name": "Pchery,Theodor", + "isMetro": false, + "latitude": 14.134315, + "longitude": 50.185215, + "stopId": "U4768" + }, + { + "id": "U4768Z2", + "name": "Pchery,Theodor", + "isMetro": false, + "latitude": 14.134248, + "longitude": 50.185387, + "stopId": "U4768" + }, + { + "id": "U4769Z1", + "name": "Pchery,ObÚ", + "isMetro": false, + "latitude": 14.114374, + "longitude": 50.191566, + "stopId": "U4769" + }, + { + "id": "U4769Z2", + "name": "Pchery,ObÚ", + "isMetro": false, + "latitude": 14.114467, + "longitude": 50.191574, + "stopId": "U4769" + }, + { + "id": "U476Z1", + "name": "Náměstí Míru", + "isMetro": false, + "latitude": 14.435997, + "longitude": 50.075008, + "stopId": "U476" + }, + { + "id": "U476Z101", + "name": "Náměstí Míru", + "isMetro": true, + "latitude": 14.439106, + "longitude": 50.075204, + "stopId": "U476" + }, + { + "id": "U476Z102", + "name": "Náměstí Míru", + "isMetro": true, + "latitude": 14.439105, + "longitude": 50.075411, + "stopId": "U476" + }, + { + "id": "U476Z2", + "name": "Náměstí Míru", + "isMetro": false, + "latitude": 14.436891, + "longitude": 50.074921, + "stopId": "U476" + }, + { + "id": "U476Z5", + "name": "Náměstí Míru", + "isMetro": false, + "latitude": 14.437944, + "longitude": 50.074753, + "stopId": "U476" + }, + { + "id": "U4770Z1", + "name": "Pchery", + "isMetro": false, + "latitude": 14.115175, + "longitude": 50.192249, + "stopId": "U4770" + }, + { + "id": "U4770Z2", + "name": "Pchery", + "isMetro": false, + "latitude": 14.115029, + "longitude": 50.192318, + "stopId": "U4770" + }, + { + "id": "U4771Z1", + "name": "Pchery,rozc.Jemníky", + "isMetro": false, + "latitude": 14.120318, + "longitude": 50.197056, + "stopId": "U4771" + }, + { + "id": "U4771Z2", + "name": "Pchery,rozc.Jemníky", + "isMetro": false, + "latitude": 14.120144, + "longitude": 50.196846, + "stopId": "U4771" + }, + { + "id": "U4772Z1", + "name": "Jemníky", + "isMetro": false, + "latitude": 14.12097, + "longitude": 50.208675, + "stopId": "U4772" + }, + { + "id": "U4772Z2", + "name": "Jemníky", + "isMetro": false, + "latitude": 14.120939, + "longitude": 50.208771, + "stopId": "U4772" + }, + { + "id": "U4773Z3", + "name": "Knovíz", + "isMetro": false, + "latitude": 14.136113, + "longitude": 50.212929, + "stopId": "U4773" + }, + { + "id": "U4774Z1", + "name": "Jemníky,křiž.Knovíz", + "isMetro": false, + "latitude": 14.123839, + "longitude": 50.215378, + "stopId": "U4774" + }, + { + "id": "U4774Z2", + "name": "Jemníky,křiž.Knovíz", + "isMetro": false, + "latitude": 14.123715, + "longitude": 50.21582, + "stopId": "U4774" + }, + { + "id": "U4775Z1", + "name": "Slaný,odb.Drnov", + "isMetro": false, + "latitude": 14.114423, + "longitude": 50.22525, + "stopId": "U4775" + }, + { + "id": "U4775Z2", + "name": "Slaný,odb.Drnov", + "isMetro": false, + "latitude": 14.114493, + "longitude": 50.225121, + "stopId": "U4775" + }, + { + "id": "U4776Z1", + "name": "Slaný,Pražská", + "isMetro": false, + "latitude": 14.09543, + "longitude": 50.228359, + "stopId": "U4776" + }, + { + "id": "U4776Z2", + "name": "Slaný,Pražská", + "isMetro": false, + "latitude": 14.095461, + "longitude": 50.228222, + "stopId": "U4776" + }, + { + "id": "U4777Z1", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.087832, + "longitude": 50.228329, + "stopId": "U4777" + }, + { + "id": "U4777Z10", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.08844, + "longitude": 50.22847, + "stopId": "U4777" + }, + { + "id": "U4777Z15", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088564, + "longitude": 50.228245, + "stopId": "U4777" + }, + { + "id": "U4777Z16", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088689, + "longitude": 50.228306, + "stopId": "U4777" + }, + { + "id": "U4777Z17", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.08882, + "longitude": 50.228176, + "stopId": "U4777" + }, + { + "id": "U4777Z3", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088284, + "longitude": 50.228733, + "stopId": "U4777" + }, + { + "id": "U4777Z4", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088488, + "longitude": 50.228767, + "stopId": "U4777" + }, + { + "id": "U4777Z5", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088316, + "longitude": 50.228638, + "stopId": "U4777" + }, + { + "id": "U4777Z6", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088552, + "longitude": 50.228676, + "stopId": "U4777" + }, + { + "id": "U4777Z7", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088235, + "longitude": 50.228535, + "stopId": "U4777" + }, + { + "id": "U4777Z8", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.088471, + "longitude": 50.228569, + "stopId": "U4777" + }, + { + "id": "U4777Z9", + "name": "Slaný,aut.nádr.", + "isMetro": false, + "latitude": 14.08822, + "longitude": 50.22842, + "stopId": "U4777" + }, + { + "id": "U4778Z1", + "name": "Slaný,Žižkova", + "isMetro": false, + "latitude": 14.081685, + "longitude": 50.228191, + "stopId": "U4778" + }, + { + "id": "U4778Z2", + "name": "Slaný,Žižkova", + "isMetro": false, + "latitude": 14.082857, + "longitude": 50.22794, + "stopId": "U4778" + }, + { + "id": "U4779Z1", + "name": "Slaný,ČSAD", + "isMetro": false, + "latitude": 14.074303, + "longitude": 50.225773, + "stopId": "U4779" + }, + { + "id": "U4779Z2", + "name": "Slaný,ČSAD", + "isMetro": false, + "latitude": 14.074657, + "longitude": 50.225727, + "stopId": "U4779" + }, + { + "id": "U4780Z1", + "name": "Slaný,u stadionu", + "isMetro": false, + "latitude": 14.069111, + "longitude": 50.225224, + "stopId": "U4780" + }, + { + "id": "U4781Z2", + "name": "Slaný,Mírová", + "isMetro": false, + "latitude": 14.071783, + "longitude": 50.227081, + "stopId": "U4781" + }, + { + "id": "U4782Z2", + "name": "Slaný,Rabasova", + "isMetro": false, + "latitude": 14.068194, + "longitude": 50.227448, + "stopId": "U4782" + }, + { + "id": "U4783Z1", + "name": "Slaný,Smetáčkova", + "isMetro": false, + "latitude": 14.069172, + "longitude": 50.228645, + "stopId": "U4783" + }, + { + "id": "U4783Z2", + "name": "Slaný,Smetáčkova", + "isMetro": false, + "latitude": 14.069129, + "longitude": 50.228703, + "stopId": "U4783" + }, + { + "id": "U4784Z1", + "name": "Slaný,P.Hrubého", + "isMetro": false, + "latitude": 14.072466, + "longitude": 50.230885, + "stopId": "U4784" + }, + { + "id": "U4784Z2", + "name": "Slaný,P.Hrubého", + "isMetro": false, + "latitude": 14.072341, + "longitude": 50.230484, + "stopId": "U4784" + }, + { + "id": "U4785Z1", + "name": "Slaný,Arbesova", + "isMetro": false, + "latitude": 14.06689, + "longitude": 50.232075, + "stopId": "U4785" + }, + { + "id": "U4785Z2", + "name": "Slaný,Arbesova", + "isMetro": false, + "latitude": 14.066912, + "longitude": 50.231956, + "stopId": "U4785" + }, + { + "id": "U4786Z1", + "name": "Slaný,Šultysova", + "isMetro": false, + "latitude": 14.083494, + "longitude": 50.230282, + "stopId": "U4786" + }, + { + "id": "U4786Z2", + "name": "Slaný,Šultysova", + "isMetro": false, + "latitude": 14.083548, + "longitude": 50.230103, + "stopId": "U4786" + }, + { + "id": "U4787Z1", + "name": "Slaný,sokolovna", + "isMetro": false, + "latitude": 14.080547, + "longitude": 50.233105, + "stopId": "U4787" + }, + { + "id": "U4787Z2", + "name": "Slaný,sokolovna", + "isMetro": false, + "latitude": 14.07984, + "longitude": 50.233269, + "stopId": "U4787" + }, + { + "id": "U4788Z1", + "name": "Slaný,Dražkovická", + "isMetro": false, + "latitude": 14.075953, + "longitude": 50.234295, + "stopId": "U4788" + }, + { + "id": "U4788Z2", + "name": "Slaný,Dražkovická", + "isMetro": false, + "latitude": 14.076035, + "longitude": 50.234211, + "stopId": "U4788" + }, + { + "id": "U4789Z1", + "name": "Slaný,Tomanova", + "isMetro": false, + "latitude": 14.07165, + "longitude": 50.233147, + "stopId": "U4789" + }, + { + "id": "U4789Z2", + "name": "Slaný,Tomanova", + "isMetro": false, + "latitude": 14.071759, + "longitude": 50.233097, + "stopId": "U4789" + }, + { + "id": "U4790Z1", + "name": "Malé Přítočno", + "isMetro": false, + "latitude": 14.135015, + "longitude": 50.110558, + "stopId": "U4790" + }, + { + "id": "U4790Z2", + "name": "Malé Přítočno", + "isMetro": false, + "latitude": 14.135015, + "longitude": 50.11084, + "stopId": "U4790" + }, + { + "id": "U4791Z1", + "name": "Libušín,rozc.Důl Max", + "isMetro": false, + "latitude": 14.05096, + "longitude": 50.155628, + "stopId": "U4791" + }, + { + "id": "U4791Z2", + "name": "Libušín,rozc.Důl Max", + "isMetro": false, + "latitude": 14.050871, + "longitude": 50.155605, + "stopId": "U4791" + }, + { + "id": "U4793Z1", + "name": "Libušín,Suchá Horka", + "isMetro": false, + "latitude": 14.0489, + "longitude": 50.160469, + "stopId": "U4793" + }, + { + "id": "U4793Z2", + "name": "Libušín,Suchá Horka", + "isMetro": false, + "latitude": 14.04857, + "longitude": 50.160271, + "stopId": "U4793" + }, + { + "id": "U4794Z1", + "name": "Libušín,škola", + "isMetro": false, + "latitude": 14.053649, + "longitude": 50.167191, + "stopId": "U4794" + }, + { + "id": "U4794Z2", + "name": "Libušín,škola", + "isMetro": false, + "latitude": 14.05353, + "longitude": 50.167213, + "stopId": "U4794" + }, + { + "id": "U4796Z1", + "name": "Vinařice,škola", + "isMetro": false, + "latitude": 14.090399, + "longitude": 50.177376, + "stopId": "U4796" + }, + { + "id": "U4797Z1", + "name": "Vinařice,Zahr.kolonie", + "isMetro": false, + "latitude": 14.077084, + "longitude": 50.182865, + "stopId": "U4797" + }, + { + "id": "U4797Z2", + "name": "Vinařice,Zahr.kolonie", + "isMetro": false, + "latitude": 14.076697, + "longitude": 50.183002, + "stopId": "U4797" + }, + { + "id": "U4798Z1", + "name": "Třebichovice", + "isMetro": false, + "latitude": 14.077578, + "longitude": 50.188789, + "stopId": "U4798" + }, + { + "id": "U4798Z2", + "name": "Třebichovice", + "isMetro": false, + "latitude": 14.077451, + "longitude": 50.188763, + "stopId": "U4798" + }, + { + "id": "U4799Z1", + "name": "Třebichovice,u kapličky", + "isMetro": false, + "latitude": 14.079557, + "longitude": 50.190632, + "stopId": "U4799" + }, + { + "id": "U4799Z2", + "name": "Třebichovice,u kapličky", + "isMetro": false, + "latitude": 14.079165, + "longitude": 50.190502, + "stopId": "U4799" + }, + { + "id": "U479Z1", + "name": "Velká Chuchle", + "isMetro": false, + "latitude": 14.380733, + "longitude": 50.01215, + "stopId": "U479" + }, + { + "id": "U47Z1", + "name": "Blatiny", + "isMetro": false, + "latitude": 14.303621, + "longitude": 50.065704, + "stopId": "U47" + }, + { + "id": "U47Z2", + "name": "Blatiny", + "isMetro": false, + "latitude": 14.302096, + "longitude": 50.065804, + "stopId": "U47" + }, + { + "id": "U47Z3", + "name": "Blatiny", + "isMetro": false, + "latitude": 14.30235, + "longitude": 50.065819, + "stopId": "U47" + }, + { + "id": "U47Z4", + "name": "Blatiny", + "isMetro": false, + "latitude": 14.302533, + "longitude": 50.065655, + "stopId": "U47" + }, + { + "id": "U4800Z1", + "name": "Třebichovice,u hřbitova", + "isMetro": false, + "latitude": 14.078201, + "longitude": 50.194843, + "stopId": "U4800" + }, + { + "id": "U4800Z2", + "name": "Třebichovice,u hřbitova", + "isMetro": false, + "latitude": 14.078135, + "longitude": 50.194759, + "stopId": "U4800" + }, + { + "id": "U4801Z1", + "name": "Hrdlív", + "isMetro": false, + "latitude": 14.072086, + "longitude": 50.199394, + "stopId": "U4801" + }, + { + "id": "U4801Z2", + "name": "Hrdlív", + "isMetro": false, + "latitude": 14.071917, + "longitude": 50.199299, + "stopId": "U4801" + }, + { + "id": "U4802Z1", + "name": "Slaný,Těhul", + "isMetro": false, + "latitude": 14.071093, + "longitude": 50.205338, + "stopId": "U4802" + }, + { + "id": "U4802Z2", + "name": "Slaný,Těhul", + "isMetro": false, + "latitude": 14.071072, + "longitude": 50.204525, + "stopId": "U4802" + }, + { + "id": "U4803Z1", + "name": "Slaný,Kvíc,u hrušky", + "isMetro": false, + "latitude": 14.069863, + "longitude": 50.210159, + "stopId": "U4803" + }, + { + "id": "U4803Z2", + "name": "Slaný,Kvíc,u hrušky", + "isMetro": false, + "latitude": 14.069617, + "longitude": 50.21019, + "stopId": "U4803" + }, + { + "id": "U4804Z1", + "name": "Slaný,Kvíček", + "isMetro": false, + "latitude": 14.077262, + "longitude": 50.219238, + "stopId": "U4804" + }, + { + "id": "U4804Z2", + "name": "Slaný,Kvíček", + "isMetro": false, + "latitude": 14.076942, + "longitude": 50.219177, + "stopId": "U4804" + }, + { + "id": "U4805Z1", + "name": "Slaný,Fantův mlýn", + "isMetro": false, + "latitude": 14.082658, + "longitude": 50.224205, + "stopId": "U4805" + }, + { + "id": "U4805Z2", + "name": "Slaný,Fantův mlýn", + "isMetro": false, + "latitude": 14.082245, + "longitude": 50.22393, + "stopId": "U4805" + }, + { + "id": "U4806Z1", + "name": "Pchery,Humny", + "isMetro": false, + "latitude": 14.110524, + "longitude": 50.188999, + "stopId": "U4806" + }, + { + "id": "U4806Z2", + "name": "Pchery,Humny", + "isMetro": false, + "latitude": 14.11032, + "longitude": 50.188972, + "stopId": "U4806" + }, + { + "id": "U480Z1", + "name": "Náměstí Republiky", + "isMetro": false, + "latitude": 14.430023, + "longitude": 50.088783, + "stopId": "U480" + }, + { + "id": "U480Z101", + "name": "Náměstí Republiky", + "isMetro": true, + "latitude": 14.430477, + "longitude": 50.08888, + "stopId": "U480" + }, + { + "id": "U480Z102", + "name": "Náměstí Republiky", + "isMetro": true, + "latitude": 14.430621, + "longitude": 50.088716, + "stopId": "U480" + }, + { + "id": "U480Z2", + "name": "Náměstí Republiky", + "isMetro": false, + "latitude": 14.429256, + "longitude": 50.088543, + "stopId": "U480" + }, + { + "id": "U480Z3", + "name": "Masarykovo nádraží", + "isMetro": false, + "latitude": 14.432513, + "longitude": 50.087685, + "stopId": "U480" + }, + { + "id": "U480Z301", + "name": "Praha Masarykovo nádr.", + "isMetro": false, + "latitude": 14.43374, + "longitude": 50.087936, + "stopId": "U480" + }, + { + "id": "U480Z4", + "name": "Masarykovo nádraží", + "isMetro": false, + "latitude": 14.432579, + "longitude": 50.088272, + "stopId": "U480" + }, + { + "id": "U4812Z1", + "name": "Slaný,modelářské středisko", + "isMetro": false, + "latitude": 14.082663, + "longitude": 50.225258, + "stopId": "U4812" + }, + { + "id": "U4812Z2", + "name": "Slaný,modelářské středisko", + "isMetro": false, + "latitude": 14.082813, + "longitude": 50.225601, + "stopId": "U4812" + }, + { + "id": "U4816Z1", + "name": "Buštěhrad,u školy", + "isMetro": false, + "latitude": 14.186357, + "longitude": 50.157505, + "stopId": "U4816" + }, + { + "id": "U4816Z2", + "name": "Buštěhrad,u školy", + "isMetro": false, + "latitude": 14.187015, + "longitude": 50.157719, + "stopId": "U4816" + }, + { + "id": "U4817Z1", + "name": "Buštěhrad,Bouchalka Křiž.", + "isMetro": false, + "latitude": 14.205989, + "longitude": 50.159634, + "stopId": "U4817" + }, + { + "id": "U4817Z2", + "name": "Buštěhrad,Bouchalka Křiž.", + "isMetro": false, + "latitude": 14.205788, + "longitude": 50.15963, + "stopId": "U4817" + }, + { + "id": "U4818Z1", + "name": "Zájezd,Bůhzdař", + "isMetro": false, + "latitude": 14.210945, + "longitude": 50.162731, + "stopId": "U4818" + }, + { + "id": "U4818Z2", + "name": "Zájezd,Bůhzdař", + "isMetro": false, + "latitude": 14.210945, + "longitude": 50.162731, + "stopId": "U4818" + }, + { + "id": "U4819Z1", + "name": "Zájezd", + "isMetro": false, + "latitude": 14.220517, + "longitude": 50.16597, + "stopId": "U4819" + }, + { + "id": "U4819Z2", + "name": "Zájezd", + "isMetro": false, + "latitude": 14.220422, + "longitude": 50.166012, + "stopId": "U4819" + }, + { + "id": "U481Z1", + "name": "Švandovo divadlo", + "isMetro": false, + "latitude": 14.404175, + "longitude": 50.078484, + "stopId": "U481" + }, + { + "id": "U481Z2", + "name": "Švandovo divadlo", + "isMetro": false, + "latitude": 14.404121, + "longitude": 50.077969, + "stopId": "U481" + }, + { + "id": "U481Z3", + "name": "Švandovo divadlo", + "isMetro": false, + "latitude": 14.404666, + "longitude": 50.078671, + "stopId": "U481" + }, + { + "id": "U481Z4", + "name": "Švandovo divadlo", + "isMetro": false, + "latitude": 14.404434, + "longitude": 50.078617, + "stopId": "U481" + }, + { + "id": "U481Z51", + "name": "Švandovo divadlo", + "isMetro": false, + "latitude": 14.404301, + "longitude": 50.078129, + "stopId": "U481" + }, + { + "id": "U481Z52", + "name": "Švandovo divadlo", + "isMetro": false, + "latitude": 14.406995, + "longitude": 50.078777, + "stopId": "U481" + }, + { + "id": "U4820Z1", + "name": "Dolní Břežany,Hradišťátko", + "isMetro": false, + "latitude": 14.447783, + "longitude": 49.962711, + "stopId": "U4820" + }, + { + "id": "U4820Z2", + "name": "Dolní Břežany,Hradišťátko", + "isMetro": false, + "latitude": 14.448203, + "longitude": 49.962971, + "stopId": "U4820" + }, + { + "id": "U4822Z401", + "name": "Zvoleněves,hostinec", + "isMetro": false, + "latitude": 14.18228, + "longitude": 50.231136, + "stopId": "U4822" + }, + { + "id": "U4822Z402", + "name": "Zvoleněves,hostinec", + "isMetro": false, + "latitude": 14.181997, + "longitude": 50.231339, + "stopId": "U4822" + }, + { + "id": "U4823Z1", + "name": "Kamenný Most,křiž.", + "isMetro": false, + "latitude": 14.205452, + "longitude": 50.241795, + "stopId": "U4823" + }, + { + "id": "U4823Z2", + "name": "Kamenný Most,křiž.", + "isMetro": false, + "latitude": 14.205533, + "longitude": 50.241665, + "stopId": "U4823" + }, + { + "id": "U4823Z401", + "name": "Kamenný Most,křiž.", + "isMetro": false, + "latitude": 14.205452, + "longitude": 50.241795, + "stopId": "U4823" + }, + { + "id": "U4823Z402", + "name": "Kamenný Most,křiž.", + "isMetro": false, + "latitude": 14.205533, + "longitude": 50.241665, + "stopId": "U4823" + }, + { + "id": "U4825Z1", + "name": "Neuměřice,rozcestí", + "isMetro": false, + "latitude": 14.214632, + "longitude": 50.243916, + "stopId": "U4825" + }, + { + "id": "U4825Z2", + "name": "Neuměřice,rozcestí", + "isMetro": false, + "latitude": 14.214642, + "longitude": 50.24398, + "stopId": "U4825" + }, + { + "id": "U4826Z1", + "name": "Neuměřice,přijímací stanice", + "isMetro": false, + "latitude": 14.22168, + "longitude": 50.259174, + "stopId": "U4826" + }, + { + "id": "U4826Z2", + "name": "Neuměřice,přijímací stanice", + "isMetro": false, + "latitude": 14.221607, + "longitude": 50.259178, + "stopId": "U4826" + }, + { + "id": "U4829Z1", + "name": "Velvary,Ješín", + "isMetro": false, + "latitude": 14.19066, + "longitude": 50.263771, + "stopId": "U4829" + }, + { + "id": "U4829Z2", + "name": "Velvary,Ješín", + "isMetro": false, + "latitude": 14.190473, + "longitude": 50.263836, + "stopId": "U4829" + }, + { + "id": "U482Z1", + "name": "Náměstí Bratří Synků", + "isMetro": false, + "latitude": 14.440574, + "longitude": 50.064514, + "stopId": "U482" + }, + { + "id": "U482Z2", + "name": "Náměstí Bratří Synků", + "isMetro": false, + "latitude": 14.441199, + "longitude": 50.064121, + "stopId": "U482" + }, + { + "id": "U482Z5", + "name": "Otakarova", + "isMetro": false, + "latitude": 14.440102, + "longitude": 50.065491, + "stopId": "U482" + }, + { + "id": "U482Z6", + "name": "Otakarova", + "isMetro": false, + "latitude": 14.440851, + "longitude": 50.065666, + "stopId": "U482" + }, + { + "id": "U482Z9", + "name": "Náměstí Bratří Synků", + "isMetro": false, + "latitude": 14.441423, + "longitude": 50.06461, + "stopId": "U482" + }, + { + "id": "U4830Z1", + "name": "Velvary,nám.", + "isMetro": false, + "latitude": 14.235074, + "longitude": 50.281925, + "stopId": "U4830" + }, + { + "id": "U4835Z1", + "name": "Slaný,Palackého", + "isMetro": false, + "latitude": 14.084897, + "longitude": 50.232296, + "stopId": "U4835" + }, + { + "id": "U4836Z1", + "name": "Slaný,U Sloupu", + "isMetro": false, + "latitude": 14.07407, + "longitude": 50.235886, + "stopId": "U4836" + }, + { + "id": "U4836Z2", + "name": "Slaný,U Sloupu", + "isMetro": false, + "latitude": 14.073909, + "longitude": 50.235806, + "stopId": "U4836" + }, + { + "id": "U4837Z3", + "name": "Třebusice,křiž.", + "isMetro": false, + "latitude": 14.182091, + "longitude": 50.202919, + "stopId": "U4837" + }, + { + "id": "U4837Z4", + "name": "Třebusice,křiž.", + "isMetro": false, + "latitude": 14.182078, + "longitude": 50.202824, + "stopId": "U4837" + }, + { + "id": "U4838Z2", + "name": "Želenice", + "isMetro": false, + "latitude": 14.164381, + "longitude": 50.209579, + "stopId": "U4838" + }, + { + "id": "U483Z1", + "name": "Národní divadlo", + "isMetro": false, + "latitude": 14.414886, + "longitude": 50.081413, + "stopId": "U483" + }, + { + "id": "U483Z2", + "name": "Národní divadlo", + "isMetro": false, + "latitude": 14.413723, + "longitude": 50.081448, + "stopId": "U483" + }, + { + "id": "U483Z5", + "name": "Národní divadlo", + "isMetro": false, + "latitude": 14.413563, + "longitude": 50.080391, + "stopId": "U483" + }, + { + "id": "U483Z6", + "name": "Národní divadlo", + "isMetro": false, + "latitude": 14.413808, + "longitude": 50.079815, + "stopId": "U483" + }, + { + "id": "U4843Z301", + "name": "Chlumec nad Cidlinou", + "isMetro": false, + "latitude": 15.457147, + "longitude": 50.163567, + "stopId": "U4843" + }, + { + "id": "U4843Z5", + "name": "Chlumec n.Cidl.,žel.st.", + "isMetro": false, + "latitude": 15.456012, + "longitude": 50.163258, + "stopId": "U4843" + }, + { + "id": "U4843Z7", + "name": "Chlumec n.Cidl.,žel.st.", + "isMetro": false, + "latitude": 15.457366, + "longitude": 50.16309, + "stopId": "U4843" + }, + { + "id": "U484Z1", + "name": "Vodičkova", + "isMetro": false, + "latitude": 14.422736, + "longitude": 50.079659, + "stopId": "U484" + }, + { + "id": "U484Z2", + "name": "Vodičkova", + "isMetro": false, + "latitude": 14.423432, + "longitude": 50.080036, + "stopId": "U484" + }, + { + "id": "U4850Z1", + "name": "Panenský Týnec", + "isMetro": false, + "latitude": 13.916684, + "longitude": 50.294891, + "stopId": "U4850" + }, + { + "id": "U4850Z2", + "name": "Panenský Týnec", + "isMetro": false, + "latitude": 13.916617, + "longitude": 50.294804, + "stopId": "U4850" + }, + { + "id": "U4851Z1", + "name": "Toužetín,Sulec", + "isMetro": false, + "latitude": 13.885367, + "longitude": 50.309067, + "stopId": "U4851" + }, + { + "id": "U4851Z2", + "name": "Toužetín,Sulec", + "isMetro": false, + "latitude": 13.885657, + "longitude": 50.308762, + "stopId": "U4851" + }, + { + "id": "U4853Z1", + "name": "Chlumčany,motorest", + "isMetro": false, + "latitude": 13.840582, + "longitude": 50.331932, + "stopId": "U4853" + }, + { + "id": "U4853Z2", + "name": "Chlumčany,motorest", + "isMetro": false, + "latitude": 13.840676, + "longitude": 50.331562, + "stopId": "U4853" + }, + { + "id": "U4854Z1", + "name": "Louny,U spravedlnosti", + "isMetro": false, + "latitude": 13.806015, + "longitude": 50.34798, + "stopId": "U4854" + }, + { + "id": "U4854Z2", + "name": "Louny,U spravedlnosti", + "isMetro": false, + "latitude": 13.805778, + "longitude": 50.348824, + "stopId": "U4854" + }, + { + "id": "U4857Z1", + "name": "Louny,sokolovna", + "isMetro": false, + "latitude": 13.795534, + "longitude": 50.355515, + "stopId": "U4857" + }, + { + "id": "U4857Z2", + "name": "Louny,sokolovna", + "isMetro": false, + "latitude": 13.794787, + "longitude": 50.355564, + "stopId": "U4857" + }, + { + "id": "U4858Z1", + "name": "Louny,Luna", + "isMetro": false, + "latitude": 13.78863, + "longitude": 50.357113, + "stopId": "U4858" + }, + { + "id": "U4858Z2", + "name": "Louny,Luna", + "isMetro": false, + "latitude": 13.789187, + "longitude": 50.356903, + "stopId": "U4858" + }, + { + "id": "U485Z1", + "name": "Nebušice", + "isMetro": false, + "latitude": 14.3212, + "longitude": 50.112118, + "stopId": "U485" + }, + { + "id": "U485Z2", + "name": "Nebušice", + "isMetro": false, + "latitude": 14.321563, + "longitude": 50.112076, + "stopId": "U485" + }, + { + "id": "U4860Z1", + "name": "Slaný,Trpoměchy", + "isMetro": false, + "latitude": 14.061844, + "longitude": 50.250195, + "stopId": "U4860" + }, + { + "id": "U4860Z2", + "name": "Slaný,Trpoměchy", + "isMetro": false, + "latitude": 14.061536, + "longitude": 50.250164, + "stopId": "U4860" + }, + { + "id": "U4861Z1", + "name": "Pramenná", + "isMetro": false, + "latitude": 14.487414, + "longitude": 49.994965, + "stopId": "U4861" + }, + { + "id": "U4861Z2", + "name": "Pramenná", + "isMetro": false, + "latitude": 14.487501, + "longitude": 49.995075, + "stopId": "U4861" + }, + { + "id": "U4862Z301", + "name": "Sány", + "isMetro": false, + "latitude": 15.241109, + "longitude": 50.130116, + "stopId": "U4862" + }, + { + "id": "U4863Z301", + "name": "Dobšice nad Cidlinou", + "isMetro": false, + "latitude": 15.263606, + "longitude": 50.140068, + "stopId": "U4863" + }, + { + "id": "U4864Z301", + "name": "Choťovice", + "isMetro": false, + "latitude": 15.329076, + "longitude": 50.146019, + "stopId": "U4864" + }, + { + "id": "U4865Z301", + "name": "Převýšov", + "isMetro": false, + "latitude": 15.407346, + "longitude": 50.152573, + "stopId": "U4865" + }, + { + "id": "U4866Z301", + "name": "Běrunice", + "isMetro": false, + "latitude": 15.341319, + "longitude": 50.185905, + "stopId": "U4866" + }, + { + "id": "U4867Z301", + "name": "Slibovice", + "isMetro": false, + "latitude": 15.366772, + "longitude": 50.175056, + "stopId": "U4867" + }, + { + "id": "U4868Z301", + "name": "Lovčice obec", + "isMetro": false, + "latitude": 15.38231, + "longitude": 50.170441, + "stopId": "U4868" + }, + { + "id": "U4869Z301", + "name": "Královice u Zlonic", + "isMetro": false, + "latitude": 14.068025, + "longitude": 50.259739, + "stopId": "U4869" + }, + { + "id": "U486Z1", + "name": "K Noskovně", + "isMetro": false, + "latitude": 14.3253, + "longitude": 50.111465, + "stopId": "U486" + }, + { + "id": "U486Z2", + "name": "K Noskovně", + "isMetro": false, + "latitude": 14.324883, + "longitude": 50.111435, + "stopId": "U486" + }, + { + "id": "U4870Z301", + "name": "Páleček", + "isMetro": false, + "latitude": 14.029727, + "longitude": 50.290951, + "stopId": "U4870" + }, + { + "id": "U4871Z301", + "name": "Klobuky v Čechách", + "isMetro": false, + "latitude": 13.996613, + "longitude": 50.298218, + "stopId": "U4871" + }, + { + "id": "U4872Z301", + "name": "Vrbičany", + "isMetro": false, + "latitude": 14.000738, + "longitude": 50.30965, + "stopId": "U4872" + }, + { + "id": "U4873Z301", + "name": "Peruc", + "isMetro": false, + "latitude": 13.958869, + "longitude": 50.335922, + "stopId": "U4873" + }, + { + "id": "U4874Z301", + "name": "Telce", + "isMetro": false, + "latitude": 13.971869, + "longitude": 50.311859, + "stopId": "U4874" + }, + { + "id": "U4875Z301", + "name": "Vrbno nad Lesy", + "isMetro": false, + "latitude": 13.905925, + "longitude": 50.32729, + "stopId": "U4875" + }, + { + "id": "U4876Z301", + "name": "Chlumčany u Loun", + "isMetro": false, + "latitude": 13.845606, + "longitude": 50.344345, + "stopId": "U4876" + }, + { + "id": "U4877Z301", + "name": "Louny", + "isMetro": false, + "latitude": 13.82319, + "longitude": 50.36132, + "stopId": "U4877" + }, + { + "id": "U4878Z1", + "name": "Zlonice,škola", + "isMetro": false, + "latitude": 14.092341, + "longitude": 50.28344, + "stopId": "U4878" + }, + { + "id": "U4878Z2", + "name": "Zlonice,škola", + "isMetro": false, + "latitude": 14.092525, + "longitude": 50.283382, + "stopId": "U4878" + }, + { + "id": "U487Z1", + "name": "Nedvězí", + "isMetro": false, + "latitude": 14.655518, + "longitude": 50.0168, + "stopId": "U487" + }, + { + "id": "U487Z2", + "name": "Nedvězí", + "isMetro": false, + "latitude": 14.655518, + "longitude": 50.016701, + "stopId": "U487" + }, + { + "id": "U4880Z1", + "name": "Kmetiněves,žel.st.", + "isMetro": false, + "latitude": 14.156547, + "longitude": 50.30669, + "stopId": "U4880" + }, + { + "id": "U4880Z2", + "name": "Kmetiněves,žel.st.", + "isMetro": false, + "latitude": 14.156493, + "longitude": 50.306625, + "stopId": "U4880" + }, + { + "id": "U4884Z1", + "name": "Bystřice,Tožice", + "isMetro": false, + "latitude": 14.654065, + "longitude": 49.700504, + "stopId": "U4884" + }, + { + "id": "U4884Z2", + "name": "Bystřice,Tožice", + "isMetro": false, + "latitude": 14.6534, + "longitude": 49.699551, + "stopId": "U4884" + }, + { + "id": "U4884Z301", + "name": "Tomice", + "isMetro": false, + "latitude": 14.652251, + "longitude": 49.698383, + "stopId": "U4884" + }, + { + "id": "U4885Z1", + "name": "Olbramovice,žel.st.", + "isMetro": false, + "latitude": 14.624634, + "longitude": 49.666782, + "stopId": "U4885" + }, + { + "id": "U4885Z2", + "name": "Olbramovice,žel.st.", + "isMetro": false, + "latitude": 14.624558, + "longitude": 49.666935, + "stopId": "U4885" + }, + { + "id": "U4885Z301", + "name": "Olbramovice", + "isMetro": false, + "latitude": 14.624346, + "longitude": 49.667381, + "stopId": "U4885" + }, + { + "id": "U4886Z1", + "name": "Tábor,aut.nádr.", + "isMetro": false, + "latitude": 14.675293, + "longitude": 49.414146, + "stopId": "U4886" + }, + { + "id": "U4886Z14", + "name": "Tábor,aut.nádr.", + "isMetro": false, + "latitude": 14.674337, + "longitude": 49.4142, + "stopId": "U4886" + }, + { + "id": "U4886Z16", + "name": "Tábor,aut.nádr.", + "isMetro": false, + "latitude": 14.6746, + "longitude": 49.414349, + "stopId": "U4886" + }, + { + "id": "U4886Z19", + "name": "Tábor,aut.nádr.", + "isMetro": false, + "latitude": 14.674136, + "longitude": 49.414219, + "stopId": "U4886" + }, + { + "id": "U4886Z301", + "name": "Tábor", + "isMetro": false, + "latitude": 14.676391, + "longitude": 49.414661, + "stopId": "U4886" + }, + { + "id": "U4886Z5", + "name": "Tábor,aut.nádr.", + "isMetro": false, + "latitude": 14.674471, + "longitude": 49.41391, + "stopId": "U4886" + }, + { + "id": "U4886Z7", + "name": "Tábor,aut.nádr.", + "isMetro": false, + "latitude": 14.674916, + "longitude": 49.414223, + "stopId": "U4886" + }, + { + "id": "U4887Z1", + "name": "U Jahodnice", + "isMetro": false, + "latitude": 14.550611, + "longitude": 50.084213, + "stopId": "U4887" + }, + { + "id": "U4887Z2", + "name": "U Jahodnice", + "isMetro": false, + "latitude": 14.550779, + "longitude": 50.084206, + "stopId": "U4887" + }, + { + "id": "U4888Z1", + "name": "Pletený Újezd,křižovatka", + "isMetro": false, + "latitude": 14.107285, + "longitude": 50.118, + "stopId": "U4888" + }, + { + "id": "U4888Z2", + "name": "Pletený Újezd,křižovatka", + "isMetro": false, + "latitude": 14.107425, + "longitude": 50.118, + "stopId": "U4888" + }, + { + "id": "U4889Z1", + "name": "Pletený Újezd", + "isMetro": false, + "latitude": 14.115559, + "longitude": 50.107609, + "stopId": "U4889" + }, + { + "id": "U4889Z2", + "name": "Pletený Újezd", + "isMetro": false, + "latitude": 14.11578, + "longitude": 50.107708, + "stopId": "U4889" + }, + { + "id": "U488Z1", + "name": "Nemocnice Krč", + "isMetro": false, + "latitude": 14.454884, + "longitude": 50.030384, + "stopId": "U488" + }, + { + "id": "U488Z2", + "name": "Nemocnice Krč", + "isMetro": false, + "latitude": 14.454867, + "longitude": 50.029968, + "stopId": "U488" + }, + { + "id": "U488Z3", + "name": "Nemocnice Krč", + "isMetro": false, + "latitude": 14.4552, + "longitude": 50.031265, + "stopId": "U488" + }, + { + "id": "U488Z4", + "name": "Nemocnice Krč", + "isMetro": false, + "latitude": 14.455117, + "longitude": 50.030815, + "stopId": "U488" + }, + { + "id": "U488Z6", + "name": "Nemocnice Krč", + "isMetro": false, + "latitude": 14.454879, + "longitude": 50.030781, + "stopId": "U488" + }, + { + "id": "U488Z7", + "name": "Nemocnice Krč", + "isMetro": false, + "latitude": 14.455149, + "longitude": 50.030384, + "stopId": "U488" + }, + { + "id": "U488Z8", + "name": "Nemocnice Krč", + "isMetro": false, + "latitude": 14.456151, + "longitude": 50.030598, + "stopId": "U488" + }, + { + "id": "U4890Z1", + "name": "Braškov,Toskánka", + "isMetro": false, + "latitude": 14.10623, + "longitude": 50.105587, + "stopId": "U4890" + }, + { + "id": "U4890Z2", + "name": "Braškov,Toskánka", + "isMetro": false, + "latitude": 14.108432, + "longitude": 50.105206, + "stopId": "U4890" + }, + { + "id": "U4891Z1", + "name": "Braškov", + "isMetro": false, + "latitude": 14.100914, + "longitude": 50.101318, + "stopId": "U4891" + }, + { + "id": "U4891Z2", + "name": "Braškov", + "isMetro": false, + "latitude": 14.100933, + "longitude": 50.101032, + "stopId": "U4891" + }, + { + "id": "U4892Z1", + "name": "Braškov,Valdek", + "isMetro": false, + "latitude": 14.087402, + "longitude": 50.098156, + "stopId": "U4892" + }, + { + "id": "U4892Z2", + "name": "Braškov,Valdek", + "isMetro": false, + "latitude": 14.087384, + "longitude": 50.098335, + "stopId": "U4892" + }, + { + "id": "U4893Z1", + "name": "Kyšice", + "isMetro": false, + "latitude": 14.105811, + "longitude": 50.091278, + "stopId": "U4893" + }, + { + "id": "U4893Z2", + "name": "Kyšice", + "isMetro": false, + "latitude": 14.105251, + "longitude": 50.092079, + "stopId": "U4893" + }, + { + "id": "U4894Z1", + "name": "Unhošť,Karlovarská", + "isMetro": false, + "latitude": 14.12434, + "longitude": 50.086761, + "stopId": "U4894" + }, + { + "id": "U4894Z2", + "name": "Unhošť,Karlovarská", + "isMetro": false, + "latitude": 14.124856, + "longitude": 50.086838, + "stopId": "U4894" + }, + { + "id": "U4895Z1", + "name": "Unhošť,Škola", + "isMetro": false, + "latitude": 14.131986, + "longitude": 50.085056, + "stopId": "U4895" + }, + { + "id": "U4896Z1", + "name": "Unhošť,U Křížku", + "isMetro": false, + "latitude": 14.122289, + "longitude": 50.085075, + "stopId": "U4896" + }, + { + "id": "U4896Z2", + "name": "Unhošť,U Křížku", + "isMetro": false, + "latitude": 14.122524, + "longitude": 50.085175, + "stopId": "U4896" + }, + { + "id": "U4898Z1", + "name": "Unhošť,pivovar", + "isMetro": false, + "latitude": 14.114035, + "longitude": 50.081829, + "stopId": "U4898" + }, + { + "id": "U4898Z2", + "name": "Unhošť,pivovar", + "isMetro": false, + "latitude": 14.11388, + "longitude": 50.081863, + "stopId": "U4898" + }, + { + "id": "U4899Z1", + "name": "Unhošť,Amerika", + "isMetro": false, + "latitude": 14.099934, + "longitude": 50.079769, + "stopId": "U4899" + }, + { + "id": "U4899Z2", + "name": "Unhošť,Amerika", + "isMetro": false, + "latitude": 14.099695, + "longitude": 50.079815, + "stopId": "U4899" + }, + { + "id": "U4899Z3", + "name": "Unhošť,Amerika", + "isMetro": false, + "latitude": 14.099663, + "longitude": 50.08009, + "stopId": "U4899" + }, + { + "id": "U4899Z4", + "name": "Unhošť,Amerika", + "isMetro": false, + "latitude": 14.10038, + "longitude": 50.079826, + "stopId": "U4899" + }, + { + "id": "U489Z1", + "name": "Kudrnova", + "isMetro": false, + "latitude": 14.34325, + "longitude": 50.072067, + "stopId": "U489" + }, + { + "id": "U489Z2", + "name": "Kudrnova", + "isMetro": false, + "latitude": 14.344684, + "longitude": 50.072502, + "stopId": "U489" + }, + { + "id": "U48Z1", + "name": "Argentinská", + "isMetro": false, + "latitude": 14.443435, + "longitude": 50.103676, + "stopId": "U48" + }, + { + "id": "U48Z2", + "name": "Argentinská", + "isMetro": false, + "latitude": 14.443085, + "longitude": 50.102432, + "stopId": "U48" + }, + { + "id": "U4900Z1", + "name": "Unhošť,Nouzov Čeperka", + "isMetro": false, + "latitude": 14.094148, + "longitude": 50.073944, + "stopId": "U4900" + }, + { + "id": "U4900Z2", + "name": "Unhošť,Nouzov Čeperka", + "isMetro": false, + "latitude": 14.093822, + "longitude": 50.074192, + "stopId": "U4900" + }, + { + "id": "U4901Z1", + "name": "Unhošť,Nouzov U Spalů", + "isMetro": false, + "latitude": 14.096274, + "longitude": 50.068565, + "stopId": "U4901" + }, + { + "id": "U4901Z2", + "name": "Unhošť,Nouzov U Spalů", + "isMetro": false, + "latitude": 14.096165, + "longitude": 50.068485, + "stopId": "U4901" + }, + { + "id": "U4902Z1", + "name": "Malé Kyšice", + "isMetro": false, + "latitude": 14.092116, + "longitude": 50.062447, + "stopId": "U4902" + }, + { + "id": "U4902Z2", + "name": "Malé Kyšice", + "isMetro": false, + "latitude": 14.091962, + "longitude": 50.062466, + "stopId": "U4902" + }, + { + "id": "U4903Z1", + "name": "Unhošť,rozc.Malé Kyšice", + "isMetro": false, + "latitude": 14.097193, + "longitude": 50.059071, + "stopId": "U4903" + }, + { + "id": "U4903Z2", + "name": "Unhošť,rozc.Malé Kyšice", + "isMetro": false, + "latitude": 14.097054, + "longitude": 50.059078, + "stopId": "U4903" + }, + { + "id": "U4904Z1", + "name": "Unhošť,Dědkův mlýn", + "isMetro": false, + "latitude": 14.097527, + "longitude": 50.052448, + "stopId": "U4904" + }, + { + "id": "U4904Z2", + "name": "Unhošť,Dědkův mlýn", + "isMetro": false, + "latitude": 14.096372, + "longitude": 50.051514, + "stopId": "U4904" + }, + { + "id": "U4907Z1", + "name": "Chyňava,u Nováků", + "isMetro": false, + "latitude": 14.079722, + "longitude": 50.0284, + "stopId": "U4907" + }, + { + "id": "U4907Z2", + "name": "Chyňava,u Nováků", + "isMetro": false, + "latitude": 14.080018, + "longitude": 50.028305, + "stopId": "U4907" + }, + { + "id": "U4908Z1", + "name": "Chyňava,u Jonášů", + "isMetro": false, + "latitude": 14.069775, + "longitude": 50.027538, + "stopId": "U4908" + }, + { + "id": "U4908Z2", + "name": "Chyňava,u Jonášů", + "isMetro": false, + "latitude": 14.069804, + "longitude": 50.027458, + "stopId": "U4908" + }, + { + "id": "U490Z1", + "name": "Netluky", + "isMetro": false, + "latitude": 14.613317, + "longitude": 50.041351, + "stopId": "U490" + }, + { + "id": "U490Z2", + "name": "Netluky", + "isMetro": false, + "latitude": 14.612951, + "longitude": 50.040833, + "stopId": "U490" + }, + { + "id": "U4913Z1", + "name": "Chyňava,Libečov,u mostu", + "isMetro": false, + "latitude": 14.094823, + "longitude": 50.026939, + "stopId": "U4913" + }, + { + "id": "U4913Z2", + "name": "Chyňava,Libečov,u mostu", + "isMetro": false, + "latitude": 14.094529, + "longitude": 50.02697, + "stopId": "U4913" + }, + { + "id": "U4915Z1", + "name": "Železná", + "isMetro": false, + "latitude": 14.092294, + "longitude": 50.010086, + "stopId": "U4915" + }, + { + "id": "U4915Z2", + "name": "Železná", + "isMetro": false, + "latitude": 14.091991, + "longitude": 50.009827, + "stopId": "U4915" + }, + { + "id": "U4916Z1", + "name": "Chyňava,Lhotka u Berouna", + "isMetro": false, + "latitude": 14.091853, + "longitude": 49.995689, + "stopId": "U4916" + }, + { + "id": "U4916Z2", + "name": "Chyňava,Lhotka u Berouna", + "isMetro": false, + "latitude": 14.091752, + "longitude": 49.995869, + "stopId": "U4916" + }, + { + "id": "U4918Z1", + "name": "Beroun,Eternitka", + "isMetro": false, + "latitude": 14.075132, + "longitude": 49.978916, + "stopId": "U4918" + }, + { + "id": "U4918Z2", + "name": "Beroun,Eternitka", + "isMetro": false, + "latitude": 14.075127, + "longitude": 49.978458, + "stopId": "U4918" + }, + { + "id": "U4919Z1", + "name": "Chyňava,Malé Přílepy", + "isMetro": false, + "latitude": 14.114424, + "longitude": 50.011391, + "stopId": "U4919" + }, + { + "id": "U491Z1", + "name": "Newtonova", + "isMetro": false, + "latitude": 14.551867, + "longitude": 50.035084, + "stopId": "U491" + }, + { + "id": "U491Z2", + "name": "Newtonova", + "isMetro": false, + "latitude": 14.551984, + "longitude": 50.035049, + "stopId": "U491" + }, + { + "id": "U4921Z1", + "name": "Nenačovice,Měchurka", + "isMetro": false, + "latitude": 14.147712, + "longitude": 50.011379, + "stopId": "U4921" + }, + { + "id": "U4921Z2", + "name": "Nenačovice,Měchurka", + "isMetro": false, + "latitude": 14.148025, + "longitude": 50.011051, + "stopId": "U4921" + }, + { + "id": "U4922Z1", + "name": "Nenačovice", + "isMetro": false, + "latitude": 14.142117, + "longitude": 50.018459, + "stopId": "U4922" + }, + { + "id": "U4923Z1", + "name": "Chrustenice", + "isMetro": false, + "latitude": 14.152723, + "longitude": 50.004055, + "stopId": "U4923" + }, + { + "id": "U4923Z2", + "name": "Chrustenice", + "isMetro": false, + "latitude": 14.152627, + "longitude": 50.003998, + "stopId": "U4923" + }, + { + "id": "U4924Z1", + "name": "Chrustenice,Na radosti", + "isMetro": false, + "latitude": 14.159245, + "longitude": 50.00053, + "stopId": "U4924" + }, + { + "id": "U4924Z2", + "name": "Chrustenice,Na radosti", + "isMetro": false, + "latitude": 14.158724, + "longitude": 50.000736, + "stopId": "U4924" + }, + { + "id": "U4926Z1", + "name": "Unhošť,Lidická", + "isMetro": false, + "latitude": 14.135292, + "longitude": 50.090816, + "stopId": "U4926" + }, + { + "id": "U4926Z2", + "name": "Unhošť,Lidická", + "isMetro": false, + "latitude": 14.134731, + "longitude": 50.090897, + "stopId": "U4926" + }, + { + "id": "U4929Z1", + "name": "Nehvizdy,Škola", + "isMetro": false, + "latitude": 14.72549, + "longitude": 50.131866, + "stopId": "U4929" + }, + { + "id": "U492Z1", + "name": "Nová kolonie", + "isMetro": false, + "latitude": 14.32705, + "longitude": 50.050617, + "stopId": "U492" + }, + { + "id": "U492Z2", + "name": "Nová kolonie", + "isMetro": false, + "latitude": 14.328918, + "longitude": 50.050667, + "stopId": "U492" + }, + { + "id": "U4930Z1", + "name": "Horní Bezděkov", + "isMetro": false, + "latitude": 14.067487, + "longitude": 50.082226, + "stopId": "U4930" + }, + { + "id": "U4930Z2", + "name": "Horní Bezděkov", + "isMetro": false, + "latitude": 14.068064, + "longitude": 50.082203, + "stopId": "U4930" + }, + { + "id": "U4932Z1", + "name": "Libušín,Důl Kladno", + "isMetro": false, + "latitude": 14.025847, + "longitude": 50.162949, + "stopId": "U4932" + }, + { + "id": "U4932Z2", + "name": "Libušín,Důl Kladno", + "isMetro": false, + "latitude": 14.026423, + "longitude": 50.16256, + "stopId": "U4932" + }, + { + "id": "U4933Z1", + "name": "Smečno,Na Kopaninách", + "isMetro": false, + "latitude": 14.01659, + "longitude": 50.168781, + "stopId": "U4933" + }, + { + "id": "U4933Z2", + "name": "Smečno,Na Kopaninách", + "isMetro": false, + "latitude": 14.016395, + "longitude": 50.168736, + "stopId": "U4933" + }, + { + "id": "U4934Z1", + "name": "Třebovle,Miškovice", + "isMetro": false, + "latitude": 14.988416, + "longitude": 50.034008, + "stopId": "U4934" + }, + { + "id": "U4934Z2", + "name": "Třebovle,Miškovice", + "isMetro": false, + "latitude": 14.988191, + "longitude": 50.033955, + "stopId": "U4934" + }, + { + "id": "U4935Z1", + "name": "Vrbčany", + "isMetro": false, + "latitude": 14.991881, + "longitude": 50.050289, + "stopId": "U4935" + }, + { + "id": "U4938Z1", + "name": "Třebovle,Dolní", + "isMetro": false, + "latitude": 14.96283, + "longitude": 50.027664, + "stopId": "U4938" + }, + { + "id": "U4938Z2", + "name": "Třebovle,Dolní", + "isMetro": false, + "latitude": 14.962844, + "longitude": 50.027821, + "stopId": "U4938" + }, + { + "id": "U4939Z1", + "name": "Klášterní Skalice", + "isMetro": false, + "latitude": 14.981436, + "longitude": 50.022957, + "stopId": "U4939" + }, + { + "id": "U4939Z2", + "name": "Klášterní Skalice", + "isMetro": false, + "latitude": 14.981335, + "longitude": 50.022911, + "stopId": "U4939" + }, + { + "id": "U493Z1", + "name": "Nová Šárka", + "isMetro": false, + "latitude": 14.314688, + "longitude": 50.093063, + "stopId": "U493" + }, + { + "id": "U493Z2", + "name": "Nová Šárka", + "isMetro": false, + "latitude": 14.31477, + "longitude": 50.092854, + "stopId": "U493" + }, + { + "id": "U4940Z1", + "name": "Lišany,rozvodna", + "isMetro": false, + "latitude": 13.731266, + "longitude": 50.135017, + "stopId": "U4940" + }, + { + "id": "U4940Z2", + "name": "Lišany,rozvodna", + "isMetro": false, + "latitude": 13.731356, + "longitude": 50.134979, + "stopId": "U4940" + }, + { + "id": "U4942Z1", + "name": "Žabonosy", + "isMetro": false, + "latitude": 15.031727, + "longitude": 50.036129, + "stopId": "U4942" + }, + { + "id": "U4942Z2", + "name": "Žabonosy", + "isMetro": false, + "latitude": 15.032203, + "longitude": 50.036018, + "stopId": "U4942" + }, + { + "id": "U4943Z1", + "name": "Křečhoř,Kamhajek", + "isMetro": false, + "latitude": 15.131155, + "longitude": 50.037151, + "stopId": "U4943" + }, + { + "id": "U4943Z2", + "name": "Křečhoř,Kamhajek", + "isMetro": false, + "latitude": 15.129504, + "longitude": 50.037395, + "stopId": "U4943" + }, + { + "id": "U4944Z2", + "name": "Plaňany,Blinka", + "isMetro": false, + "latitude": 15.060754, + "longitude": 50.039177, + "stopId": "U4944" + }, + { + "id": "U4945Z1", + "name": "Plaňany,Hradenín", + "isMetro": false, + "latitude": 15.042238, + "longitude": 50.02882, + "stopId": "U4945" + }, + { + "id": "U4945Z2", + "name": "Plaňany,Hradenín", + "isMetro": false, + "latitude": 15.042355, + "longitude": 50.028866, + "stopId": "U4945" + }, + { + "id": "U4946Z1", + "name": "Plaňany,Poboří", + "isMetro": false, + "latitude": 15.049327, + "longitude": 50.024296, + "stopId": "U4946" + }, + { + "id": "U4946Z2", + "name": "Plaňany,Poboří", + "isMetro": false, + "latitude": 15.049402, + "longitude": 50.02438, + "stopId": "U4946" + }, + { + "id": "U4947Z1", + "name": "Břežany I", + "isMetro": false, + "latitude": 15.078954, + "longitude": 50.034149, + "stopId": "U4947" + }, + { + "id": "U4947Z2", + "name": "Břežany I", + "isMetro": false, + "latitude": 15.079033, + "longitude": 50.034382, + "stopId": "U4947" + }, + { + "id": "U4948Z1", + "name": "Břežany I,Chocenice", + "isMetro": false, + "latitude": 15.097275, + "longitude": 50.030384, + "stopId": "U4948" + }, + { + "id": "U4948Z2", + "name": "Břežany I,Chocenice", + "isMetro": false, + "latitude": 15.097164, + "longitude": 50.030445, + "stopId": "U4948" + }, + { + "id": "U4949Z1", + "name": "Lhota", + "isMetro": false, + "latitude": 14.010146, + "longitude": 50.091549, + "stopId": "U4949" + }, + { + "id": "U4949Z2", + "name": "Lhota", + "isMetro": false, + "latitude": 14.010217, + "longitude": 50.091087, + "stopId": "U4949" + }, + { + "id": "U494Z1", + "name": "Nové Dvory", + "isMetro": false, + "latitude": 14.449323, + "longitude": 50.017303, + "stopId": "U494" + }, + { + "id": "U494Z2", + "name": "Nové Dvory", + "isMetro": false, + "latitude": 14.447634, + "longitude": 50.017532, + "stopId": "U494" + }, + { + "id": "U494Z3", + "name": "Nové Dvory", + "isMetro": false, + "latitude": 14.446662, + "longitude": 50.017464, + "stopId": "U494" + }, + { + "id": "U4950Z1", + "name": "Křečhoř,Bříství", + "isMetro": false, + "latitude": 15.114721, + "longitude": 50.029766, + "stopId": "U4950" + }, + { + "id": "U4950Z2", + "name": "Křečhoř,Bříství", + "isMetro": false, + "latitude": 15.114751, + "longitude": 50.029945, + "stopId": "U4950" + }, + { + "id": "U4951Z1", + "name": "Křečhoř", + "isMetro": false, + "latitude": 15.127395, + "longitude": 50.025452, + "stopId": "U4951" + }, + { + "id": "U4951Z2", + "name": "Křečhoř", + "isMetro": false, + "latitude": 15.127264, + "longitude": 50.025368, + "stopId": "U4951" + }, + { + "id": "U4952Z1", + "name": "Křečhoř,Kutlíře", + "isMetro": false, + "latitude": 15.141804, + "longitude": 50.028873, + "stopId": "U4952" + }, + { + "id": "U4952Z2", + "name": "Křečhoř,Kutlíře", + "isMetro": false, + "latitude": 15.141581, + "longitude": 50.028793, + "stopId": "U4952" + }, + { + "id": "U4955Z1", + "name": "Beroun,Vítězslava Hálka I", + "isMetro": false, + "latitude": 14.068063, + "longitude": 49.97031, + "stopId": "U4955" + }, + { + "id": "U4955Z2", + "name": "Beroun,Vítězslava Hálka I", + "isMetro": false, + "latitude": 14.068033, + "longitude": 49.970383, + "stopId": "U4955" + }, + { + "id": "U4956Z1", + "name": "Beroun,Brdatka", + "isMetro": false, + "latitude": 14.057154, + "longitude": 49.977135, + "stopId": "U4956" + }, + { + "id": "U4956Z2", + "name": "Beroun,Brdatka", + "isMetro": false, + "latitude": 14.057198, + "longitude": 49.977055, + "stopId": "U4956" + }, + { + "id": "U4957Z1", + "name": "Beroun,V Lužánkách", + "isMetro": false, + "latitude": 14.044626, + "longitude": 49.976864, + "stopId": "U4957" + }, + { + "id": "U4957Z2", + "name": "Beroun,V Lužánkách", + "isMetro": false, + "latitude": 14.044739, + "longitude": 49.976784, + "stopId": "U4957" + }, + { + "id": "U4958Z1", + "name": "Beroun,Zdejcina", + "isMetro": false, + "latitude": 14.032862, + "longitude": 49.978859, + "stopId": "U4958" + }, + { + "id": "U4958Z2", + "name": "Beroun,Zdejcina", + "isMetro": false, + "latitude": 14.032961, + "longitude": 49.978771, + "stopId": "U4958" + }, + { + "id": "U4959Z1", + "name": "Beroun,Vítězslava Hálka II", + "isMetro": false, + "latitude": 14.062723, + "longitude": 49.969181, + "stopId": "U4959" + }, + { + "id": "U4959Z2", + "name": "Beroun,Vítězslava Hálka II", + "isMetro": false, + "latitude": 14.063375, + "longitude": 49.969307, + "stopId": "U4959" + }, + { + "id": "U495Z1", + "name": "Nové Podolí", + "isMetro": false, + "latitude": 14.428728, + "longitude": 50.043468, + "stopId": "U495" + }, + { + "id": "U495Z2", + "name": "Nové Podolí", + "isMetro": false, + "latitude": 14.430619, + "longitude": 50.043488, + "stopId": "U495" + }, + { + "id": "U4960Z1", + "name": "Beroun,u hřbitova", + "isMetro": false, + "latitude": 14.061386, + "longitude": 49.966686, + "stopId": "U4960" + }, + { + "id": "U4960Z2", + "name": "Beroun,u hřbitova", + "isMetro": false, + "latitude": 14.061318, + "longitude": 49.966595, + "stopId": "U4960" + }, + { + "id": "U4961Z1", + "name": "Beroun,Bezručova", + "isMetro": false, + "latitude": 14.064955, + "longitude": 49.967373, + "stopId": "U4961" + }, + { + "id": "U4961Z2", + "name": "Beroun,Bezručova", + "isMetro": false, + "latitude": 14.065805, + "longitude": 49.967381, + "stopId": "U4961" + }, + { + "id": "U4962Z1", + "name": "Beroun,U Zelených", + "isMetro": false, + "latitude": 14.062222, + "longitude": 49.963818, + "stopId": "U4962" + }, + { + "id": "U4962Z2", + "name": "Beroun,U Zelených", + "isMetro": false, + "latitude": 14.062444, + "longitude": 49.963928, + "stopId": "U4962" + }, + { + "id": "U4963Z1", + "name": "Beroun,Jungmannova", + "isMetro": false, + "latitude": 14.059676, + "longitude": 49.960758, + "stopId": "U4963" + }, + { + "id": "U4963Z2", + "name": "Beroun,Jungmannova", + "isMetro": false, + "latitude": 14.060313, + "longitude": 49.960941, + "stopId": "U4963" + }, + { + "id": "U4964Z1", + "name": "Beroun,Hlinky", + "isMetro": false, + "latitude": 14.067353, + "longitude": 49.965725, + "stopId": "U4964" + }, + { + "id": "U4964Z2", + "name": "Beroun,Hlinky", + "isMetro": false, + "latitude": 14.066822, + "longitude": 49.965549, + "stopId": "U4964" + }, + { + "id": "U4965Z1", + "name": "Beroun,Lidl", + "isMetro": false, + "latitude": 14.047231, + "longitude": 49.952259, + "stopId": "U4965" + }, + { + "id": "U4965Z2", + "name": "Beroun,Lidl", + "isMetro": false, + "latitude": 14.047967, + "longitude": 49.952389, + "stopId": "U4965" + }, + { + "id": "U4966Z1", + "name": "Beroun,Zavadilka", + "isMetro": false, + "latitude": 14.071729, + "longitude": 49.953644, + "stopId": "U4966" + }, + { + "id": "U4966Z2", + "name": "Beroun,Zavadilka", + "isMetro": false, + "latitude": 14.071451, + "longitude": 49.953579, + "stopId": "U4966" + }, + { + "id": "U4967Z1", + "name": "Beroun,Jarov,odb.", + "isMetro": false, + "latitude": 14.070246, + "longitude": 49.948158, + "stopId": "U4967" + }, + { + "id": "U4967Z2", + "name": "Beroun,Jarov,odb.", + "isMetro": false, + "latitude": 14.07015, + "longitude": 49.94804, + "stopId": "U4967" + }, + { + "id": "U4967Z3", + "name": "Beroun,Jarov,odb.", + "isMetro": false, + "latitude": 14.069967, + "longitude": 49.94812, + "stopId": "U4967" + }, + { + "id": "U4967Z4", + "name": "Beroun,Jarov,odb.", + "isMetro": false, + "latitude": 14.069716, + "longitude": 49.948162, + "stopId": "U4967" + }, + { + "id": "U4968Z1", + "name": "Beroun,Jarov,náves", + "isMetro": false, + "latitude": 14.064014, + "longitude": 49.946857, + "stopId": "U4968" + }, + { + "id": "U4969Z1", + "name": "Beroun,Na Ratince", + "isMetro": false, + "latitude": 14.079128, + "longitude": 49.95507, + "stopId": "U4969" + }, + { + "id": "U4969Z2", + "name": "Beroun,Na Ratince", + "isMetro": false, + "latitude": 14.078892, + "longitude": 49.95504, + "stopId": "U4969" + }, + { + "id": "U4971Z1", + "name": "Beroun,Delvita", + "isMetro": false, + "latitude": 14.057412, + "longitude": 49.957245, + "stopId": "U4971" + }, + { + "id": "U4971Z2", + "name": "Beroun,Delvita", + "isMetro": false, + "latitude": 14.057694, + "longitude": 49.957291, + "stopId": "U4971" + }, + { + "id": "U4972Z1", + "name": "Králův Dvůr,Na knížecí", + "isMetro": false, + "latitude": 14.035295, + "longitude": 49.946304, + "stopId": "U4972" + }, + { + "id": "U4972Z2", + "name": "Králův Dvůr,Na knížecí", + "isMetro": false, + "latitude": 14.034115, + "longitude": 49.946011, + "stopId": "U4972" + }, + { + "id": "U4972Z3", + "name": "Králův Dvůr,Jungmannova", + "isMetro": false, + "latitude": 14.03413, + "longitude": 49.946766, + "stopId": "U4972" + }, + { + "id": "U4972Z4", + "name": "Králův Dvůr,Jungmannova", + "isMetro": false, + "latitude": 14.034043, + "longitude": 49.946941, + "stopId": "U4972" + }, + { + "id": "U4972Z401", + "name": "Králův Dvůr,Na knížecí", + "isMetro": false, + "latitude": 14.035295, + "longitude": 49.946304, + "stopId": "U4972" + }, + { + "id": "U4972Z402", + "name": "Králův Dvůr,Na knížecí", + "isMetro": false, + "latitude": 14.034115, + "longitude": 49.946011, + "stopId": "U4972" + }, + { + "id": "U4974Z1", + "name": "Králův Dvůr,Zahořany", + "isMetro": false, + "latitude": 14.02299, + "longitude": 49.953747, + "stopId": "U4974" + }, + { + "id": "U4974Z2", + "name": "Králův Dvůr,Zahořany", + "isMetro": false, + "latitude": 14.021197, + "longitude": 49.953518, + "stopId": "U4974" + }, + { + "id": "U4976Z1", + "name": "Králův Dvůr,U Tří zvonků", + "isMetro": false, + "latitude": 14.027967, + "longitude": 49.942719, + "stopId": "U4976" + }, + { + "id": "U4976Z2", + "name": "Králův Dvůr,U Tří zvonků", + "isMetro": false, + "latitude": 14.028374, + "longitude": 49.94278, + "stopId": "U4976" + }, + { + "id": "U4977Z1", + "name": "Králův Dvůr,Počaply,škola", + "isMetro": false, + "latitude": 14.022321, + "longitude": 49.941452, + "stopId": "U4977" + }, + { + "id": "U4977Z2", + "name": "Králův Dvůr,Počaply,škola", + "isMetro": false, + "latitude": 14.022159, + "longitude": 49.941494, + "stopId": "U4977" + }, + { + "id": "U4978Z1", + "name": "Králův Dvůr,Počaply", + "isMetro": false, + "latitude": 14.019185, + "longitude": 49.939053, + "stopId": "U4978" + }, + { + "id": "U4978Z2", + "name": "Králův Dvůr,Počaply", + "isMetro": false, + "latitude": 14.019171, + "longitude": 49.939041, + "stopId": "U4978" + }, + { + "id": "U4979Z1", + "name": "Králův Dvůr,Počaply,Plzeňská", + "isMetro": false, + "latitude": 14.021985, + "longitude": 49.93932, + "stopId": "U4979" + }, + { + "id": "U4979Z2", + "name": "Králův Dvůr,Počaply,Plzeňská", + "isMetro": false, + "latitude": 14.0207, + "longitude": 49.938889, + "stopId": "U4979" + }, + { + "id": "U497Z1", + "name": "Novodvorská", + "isMetro": false, + "latitude": 14.439623, + "longitude": 50.023018, + "stopId": "U497" + }, + { + "id": "U497Z2", + "name": "Novodvorská", + "isMetro": false, + "latitude": 14.439557, + "longitude": 50.023338, + "stopId": "U497" + }, + { + "id": "U497Z3", + "name": "Novodvorská", + "isMetro": false, + "latitude": 14.440961, + "longitude": 50.023796, + "stopId": "U497" + }, + { + "id": "U497Z4", + "name": "Novodvorská", + "isMetro": false, + "latitude": 14.441334, + "longitude": 50.023869, + "stopId": "U497" + }, + { + "id": "U497Z5", + "name": "Novodvorská", + "isMetro": false, + "latitude": 14.4411, + "longitude": 50.022518, + "stopId": "U497" + }, + { + "id": "U4980Z1", + "name": "Kolín,Lučební", + "isMetro": false, + "latitude": 15.184943, + "longitude": 50.031422, + "stopId": "U4980" + }, + { + "id": "U4980Z2", + "name": "Kolín,Lučební", + "isMetro": false, + "latitude": 15.185227, + "longitude": 50.031551, + "stopId": "U4980" + }, + { + "id": "U4981Z3", + "name": "Svojšice", + "isMetro": false, + "latitude": 15.043571, + "longitude": 50.003555, + "stopId": "U4981" + }, + { + "id": "U4981Z4", + "name": "Svojšice", + "isMetro": false, + "latitude": 15.043262, + "longitude": 50.003429, + "stopId": "U4981" + }, + { + "id": "U4982Z1", + "name": "Svojšice,Bošice,Rozc.", + "isMetro": false, + "latitude": 15.046779, + "longitude": 50.0103, + "stopId": "U4982" + }, + { + "id": "U4982Z2", + "name": "Svojšice,Bošice,Rozc.", + "isMetro": false, + "latitude": 15.046661, + "longitude": 50.010265, + "stopId": "U4982" + }, + { + "id": "U4983Z1", + "name": "Svojšice,Bošice", + "isMetro": false, + "latitude": 15.031211, + "longitude": 50.014622, + "stopId": "U4983" + }, + { + "id": "U4983Z2", + "name": "Svojšice,Bošice", + "isMetro": false, + "latitude": 15.032166, + "longitude": 50.015575, + "stopId": "U4983" + }, + { + "id": "U4984Z1", + "name": "Svojšice,Karlov", + "isMetro": false, + "latitude": 15.043681, + "longitude": 50.012699, + "stopId": "U4984" + }, + { + "id": "U4984Z2", + "name": "Svojšice,Karlov", + "isMetro": false, + "latitude": 15.043484, + "longitude": 50.012672, + "stopId": "U4984" + }, + { + "id": "U4986Z1", + "name": "Toušice,Mlékovice", + "isMetro": false, + "latitude": 15.024742, + "longitude": 49.981567, + "stopId": "U4986" + }, + { + "id": "U4986Z2", + "name": "Toušice,Mlékovice", + "isMetro": false, + "latitude": 15.024713, + "longitude": 49.981659, + "stopId": "U4986" + }, + { + "id": "U4987Z1", + "name": "Dolní Chvatliny,Horní Chvatliny", + "isMetro": false, + "latitude": 15.057386, + "longitude": 49.974831, + "stopId": "U4987" + }, + { + "id": "U4987Z2", + "name": "Dolní Chvatliny,Horní Chvatliny", + "isMetro": false, + "latitude": 15.057544, + "longitude": 49.974873, + "stopId": "U4987" + }, + { + "id": "U4988Z1", + "name": "Dolní Chvatliny", + "isMetro": false, + "latitude": 15.068045, + "longitude": 49.980721, + "stopId": "U4988" + }, + { + "id": "U4988Z2", + "name": "Dolní Chvatliny", + "isMetro": false, + "latitude": 15.068211, + "longitude": 49.980766, + "stopId": "U4988" + }, + { + "id": "U4989Z1", + "name": "Dolní Chvatliny,Mančice", + "isMetro": false, + "latitude": 15.092629, + "longitude": 49.982792, + "stopId": "U4989" + }, + { + "id": "U4989Z2", + "name": "Dolní Chvatliny,Mančice", + "isMetro": false, + "latitude": 15.092546, + "longitude": 49.982857, + "stopId": "U4989" + }, + { + "id": "U498Z1", + "name": "Novovysočanská", + "isMetro": false, + "latitude": 14.491428, + "longitude": 50.100258, + "stopId": "U498" + }, + { + "id": "U498Z2", + "name": "Novovysočanská", + "isMetro": false, + "latitude": 14.491615, + "longitude": 50.100433, + "stopId": "U498" + }, + { + "id": "U4990Z1", + "name": "Polní Voděrady,ObÚ", + "isMetro": false, + "latitude": 15.095434, + "longitude": 49.992241, + "stopId": "U4990" + }, + { + "id": "U4990Z2", + "name": "Polní Voděrady,ObÚ", + "isMetro": false, + "latitude": 15.095249, + "longitude": 49.992222, + "stopId": "U4990" + }, + { + "id": "U4991Z1", + "name": "Polní Voděrady", + "isMetro": false, + "latitude": 15.094893, + "longitude": 49.994175, + "stopId": "U4991" + }, + { + "id": "U4991Z2", + "name": "Polní Voděrady", + "isMetro": false, + "latitude": 15.094888, + "longitude": 49.994263, + "stopId": "U4991" + }, + { + "id": "U4992Z1", + "name": "Lošany", + "isMetro": false, + "latitude": 15.126395, + "longitude": 49.998035, + "stopId": "U4992" + }, + { + "id": "U4992Z2", + "name": "Lošany", + "isMetro": false, + "latitude": 15.126105, + "longitude": 49.997997, + "stopId": "U4992" + }, + { + "id": "U4993Z1", + "name": "Radovesnice I", + "isMetro": false, + "latitude": 15.151377, + "longitude": 50.009903, + "stopId": "U4993" + }, + { + "id": "U4993Z2", + "name": "Radovesnice I", + "isMetro": false, + "latitude": 15.151269, + "longitude": 50.00985, + "stopId": "U4993" + }, + { + "id": "U4994Z1", + "name": "Kolín,Štítary", + "isMetro": false, + "latitude": 15.17452, + "longitude": 50.019291, + "stopId": "U4994" + }, + { + "id": "U4994Z2", + "name": "Kolín,Štítary", + "isMetro": false, + "latitude": 15.174336, + "longitude": 50.019314, + "stopId": "U4994" + }, + { + "id": "U4995Z1", + "name": "Kolín,Výfuk", + "isMetro": false, + "latitude": 15.181773, + "longitude": 50.01944, + "stopId": "U4995" + }, + { + "id": "U4995Z2", + "name": "Kolín,Výfuk", + "isMetro": false, + "latitude": 15.18152, + "longitude": 50.019409, + "stopId": "U4995" + }, + { + "id": "U4996Z1", + "name": "Kolín,Gymnázium", + "isMetro": false, + "latitude": 15.197763, + "longitude": 50.021, + "stopId": "U4996" + }, + { + "id": "U4996Z2", + "name": "Kolín,Gymnázium", + "isMetro": false, + "latitude": 15.197257, + "longitude": 50.020992, + "stopId": "U4996" + }, + { + "id": "U4997Z1", + "name": "Kolín,Bezovka", + "isMetro": false, + "latitude": 15.199382, + "longitude": 50.022667, + "stopId": "U4997" + }, + { + "id": "U4997Z2", + "name": "Kolín,Bezovka", + "isMetro": false, + "latitude": 15.199096, + "longitude": 50.02264, + "stopId": "U4997" + }, + { + "id": "U4998Z1", + "name": "Kolín,Družstevní dům", + "isMetro": false, + "latitude": 15.200302, + "longitude": 50.025356, + "stopId": "U4998" + }, + { + "id": "U4998Z2", + "name": "Kolín,Družstevní dům", + "isMetro": false, + "latitude": 15.200047, + "longitude": 50.025303, + "stopId": "U4998" + }, + { + "id": "U499Z1", + "name": "Nový Hloubětín", + "isMetro": false, + "latitude": 14.528187, + "longitude": 50.109859, + "stopId": "U499" + }, + { + "id": "U499Z2", + "name": "Nový Hloubětín", + "isMetro": false, + "latitude": 14.528078, + "longitude": 50.109291, + "stopId": "U499" + }, + { + "id": "U499Z5", + "name": "Nový Hloubětín", + "isMetro": false, + "latitude": 14.531292, + "longitude": 50.108978, + "stopId": "U499" + }, + { + "id": "U499Z6", + "name": "Nový Hloubětín", + "isMetro": false, + "latitude": 14.531367, + "longitude": 50.110817, + "stopId": "U499" + }, + { + "id": "U49Z1", + "name": "Geologická", + "isMetro": false, + "latitude": 14.387, + "longitude": 50.036499, + "stopId": "U49" + }, + { + "id": "U49Z2", + "name": "Geologická", + "isMetro": false, + "latitude": 14.387162, + "longitude": 50.036331, + "stopId": "U49" + }, + { + "id": "U49Z3", + "name": "Geologická", + "isMetro": false, + "latitude": 14.387547, + "longitude": 50.035862, + "stopId": "U49" + }, + { + "id": "U49Z4", + "name": "Geologická", + "isMetro": false, + "latitude": 14.38843, + "longitude": 50.03651, + "stopId": "U49" + }, + { + "id": "U49Z5", + "name": "Geologická", + "isMetro": false, + "latitude": 14.389439, + "longitude": 50.036255, + "stopId": "U49" + }, + { + "id": "U4Z1", + "name": "Arbesovo náměstí", + "isMetro": false, + "latitude": 14.404202, + "longitude": 50.076248, + "stopId": "U4" + }, + { + "id": "U4Z2", + "name": "Arbesovo náměstí", + "isMetro": false, + "latitude": 14.403978, + "longitude": 50.075886, + "stopId": "U4" + }, + { + "id": "U4Z3", + "name": "Arbesovo náměstí", + "isMetro": false, + "latitude": 14.405704, + "longitude": 50.076405, + "stopId": "U4" + }, + { + "id": "U4Z4", + "name": "Arbesovo náměstí", + "isMetro": false, + "latitude": 14.405448, + "longitude": 50.076561, + "stopId": "U4" + }, + { + "id": "U4Z52", + "name": "Arbesovo náměstí", + "isMetro": false, + "latitude": 14.404537, + "longitude": 50.074791, + "stopId": "U4" + }, + { + "id": "U5000Z1", + "name": "Libodřice", + "isMetro": false, + "latitude": 15.087185, + "longitude": 50.00441, + "stopId": "U5000" + }, + { + "id": "U5000Z2", + "name": "Libodřice", + "isMetro": false, + "latitude": 15.086974, + "longitude": 50.004501, + "stopId": "U5000" + }, + { + "id": "U5002Z1", + "name": "Holubice,Na vodotoči", + "isMetro": false, + "latitude": 14.301342, + "longitude": 50.200764, + "stopId": "U5002" + }, + { + "id": "U5002Z2", + "name": "Holubice,Na vodotoči", + "isMetro": false, + "latitude": 14.2998, + "longitude": 50.200817, + "stopId": "U5002" + }, + { + "id": "U5003Z1", + "name": "Drozdov", + "isMetro": false, + "latitude": 13.840225, + "longitude": 49.863907, + "stopId": "U5003" + }, + { + "id": "U5003Z2", + "name": "Drozdov", + "isMetro": false, + "latitude": 13.839771, + "longitude": 49.863705, + "stopId": "U5003" + }, + { + "id": "U5004Z1", + "name": "Drozdov,škola", + "isMetro": false, + "latitude": 13.8406, + "longitude": 49.859882, + "stopId": "U5004" + }, + { + "id": "U5004Z2", + "name": "Drozdov,škola", + "isMetro": false, + "latitude": 13.840947, + "longitude": 49.859905, + "stopId": "U5004" + }, + { + "id": "U5005Z1", + "name": "Chlustina", + "isMetro": false, + "latitude": 13.919752, + "longitude": 49.8797, + "stopId": "U5005" + }, + { + "id": "U5005Z2", + "name": "Chlustina", + "isMetro": false, + "latitude": 13.91984, + "longitude": 49.87952, + "stopId": "U5005" + }, + { + "id": "U5008Z301", + "name": "Jestřebí", + "isMetro": false, + "latitude": 14.600232, + "longitude": 50.614174, + "stopId": null + }, + { + "id": "U500Z1", + "name": "Nový Prosek", + "isMetro": false, + "latitude": 14.503967, + "longitude": 50.120953, + "stopId": "U500" + }, + { + "id": "U500Z2", + "name": "Nový Prosek", + "isMetro": false, + "latitude": 14.504117, + "longitude": 50.121269, + "stopId": "U500" + }, + { + "id": "U501Z1", + "name": "Nový Slivenec", + "isMetro": false, + "latitude": 14.373143, + "longitude": 50.026546, + "stopId": "U501" + }, + { + "id": "U501Z2", + "name": "Nový Slivenec", + "isMetro": false, + "latitude": 14.373889, + "longitude": 50.026371, + "stopId": "U501" + }, + { + "id": "U5021Z1", + "name": "Klokočná,náves", + "isMetro": false, + "latitude": 14.720111, + "longitude": 49.959091, + "stopId": "U5021" + }, + { + "id": "U5026Z301", + "name": "Srní u České Lípy", + "isMetro": false, + "latitude": 14.584558, + "longitude": 50.637001, + "stopId": null + }, + { + "id": "U502Z1", + "name": "Nový Střížkov", + "isMetro": false, + "latitude": 14.483946, + "longitude": 50.118538, + "stopId": "U502" + }, + { + "id": "U502Z2", + "name": "Nový Střížkov", + "isMetro": false, + "latitude": 14.483884, + "longitude": 50.1185, + "stopId": "U502" + }, + { + "id": "U503Z1", + "name": "Nuselská radnice", + "isMetro": false, + "latitude": 14.442379, + "longitude": 50.06287, + "stopId": "U503" + }, + { + "id": "U503Z2", + "name": "Nuselská radnice", + "isMetro": false, + "latitude": 14.440803, + "longitude": 50.062862, + "stopId": "U503" + }, + { + "id": "U504Z1", + "name": "Nuselské schody", + "isMetro": false, + "latitude": 14.435332, + "longitude": 50.06831, + "stopId": "U504" + }, + { + "id": "U504Z2", + "name": "Nuselské schody", + "isMetro": false, + "latitude": 14.435752, + "longitude": 50.06823, + "stopId": "U504" + }, + { + "id": "U5052Z301", + "name": "Pševes", + "isMetro": false, + "latitude": 15.295629, + "longitude": 50.345222, + "stopId": "U5052" + }, + { + "id": "U5053Z301", + "name": "Bartoušov zast.", + "isMetro": false, + "latitude": 15.310781, + "longitude": 50.354927, + "stopId": "U5053" + }, + { + "id": "U5054Z301", + "name": "Žitětín", + "isMetro": false, + "latitude": 15.324533, + "longitude": 50.36158, + "stopId": "U5054" + }, + { + "id": "U5055Z301", + "name": "Jičíněves", + "isMetro": false, + "latitude": 15.336693, + "longitude": 50.373985, + "stopId": "U5055" + }, + { + "id": "U5056Z301", + "name": "Nemyčeves", + "isMetro": false, + "latitude": 15.360517, + "longitude": 50.387142, + "stopId": "U5056" + }, + { + "id": "U5058Z301", + "name": "Libuň", + "isMetro": false, + "latitude": 15.303567, + "longitude": 50.489815, + "stopId": null + }, + { + "id": "U505Z1", + "name": "K Třebonicům", + "isMetro": false, + "latitude": 14.29833, + "longitude": 50.037159, + "stopId": "U505" + }, + { + "id": "U505Z2", + "name": "K Třebonicům", + "isMetro": false, + "latitude": 14.299893, + "longitude": 50.036213, + "stopId": "U505" + }, + { + "id": "U5064Z301", + "name": "Turnov město", + "isMetro": false, + "latitude": 15.152009, + "longitude": 50.579567, + "stopId": "U5064" + }, + { + "id": "U5065Z301", + "name": "Karlovice-Sedmihorky", + "isMetro": false, + "latitude": 15.196841, + "longitude": 50.561562, + "stopId": null + }, + { + "id": "U5066Z301", + "name": "Hrubá Skála", + "isMetro": false, + "latitude": 15.212828, + "longitude": 50.550514, + "stopId": null + }, + { + "id": "U5067Z301", + "name": "Borek pod Troskami", + "isMetro": false, + "latitude": 15.232176, + "longitude": 50.535561, + "stopId": null + }, + { + "id": "U5068Z301", + "name": "Ktová", + "isMetro": false, + "latitude": 15.247671, + "longitude": 50.527931, + "stopId": null + }, + { + "id": "U5069Z301", + "name": "Rovensko pod Troskami", + "isMetro": false, + "latitude": 15.264297, + "longitude": 50.531387, + "stopId": null + }, + { + "id": "U506Z1", + "name": "V Podbabě", + "isMetro": false, + "latitude": 14.393636, + "longitude": 50.12117, + "stopId": "U506" + }, + { + "id": "U506Z11", + "name": "V Podbabě", + "isMetro": false, + "latitude": 14.395524, + "longitude": 50.122814, + "stopId": "U506" + }, + { + "id": "U506Z2", + "name": "V Podbabě", + "isMetro": false, + "latitude": 14.393316, + "longitude": 50.121296, + "stopId": "U506" + }, + { + "id": "U5070Z301", + "name": "Semínova Lhota", + "isMetro": false, + "latitude": 15.280973, + "longitude": 50.517948, + "stopId": null + }, + { + "id": "U5071Z301", + "name": "Jivany", + "isMetro": false, + "latitude": 15.29922, + "longitude": 50.513447, + "stopId": null + }, + { + "id": "U5072Z301", + "name": "Libuň zast.", + "isMetro": false, + "latitude": 15.300864, + "longitude": 50.500061, + "stopId": null + }, + { + "id": "U5076Z301", + "name": "Želeč", + "isMetro": false, + "latitude": 13.557178, + "longitude": 50.241837, + "stopId": "U5076" + }, + { + "id": "U5077Z1", + "name": "Měcholupy", + "isMetro": false, + "latitude": 13.537629, + "longitude": 50.2663, + "stopId": "U5077" + }, + { + "id": "U5077Z2", + "name": "Měcholupy", + "isMetro": false, + "latitude": 13.537548, + "longitude": 50.266193, + "stopId": "U5077" + }, + { + "id": "U5077Z301", + "name": "Měcholupy", + "isMetro": false, + "latitude": 13.53234, + "longitude": 50.266808, + "stopId": "U5077" + }, + { + "id": "U5078Z301", + "name": "Veletice", + "isMetro": false, + "latitude": 13.57251, + "longitude": 50.296932, + "stopId": "U5078" + }, + { + "id": "U5079Z1", + "name": "Žatec,žel.st.", + "isMetro": false, + "latitude": 13.554264, + "longitude": 50.335667, + "stopId": "U5079" + }, + { + "id": "U5079Z2", + "name": "Žatec,žel.st.", + "isMetro": false, + "latitude": 13.554251, + "longitude": 50.335873, + "stopId": "U5079" + }, + { + "id": "U5079Z301", + "name": "Žatec", + "isMetro": false, + "latitude": 13.555173, + "longitude": 50.336636, + "stopId": "U5079" + }, + { + "id": "U507Z1", + "name": "Petřiny", + "isMetro": false, + "latitude": 14.34518, + "longitude": 50.0882, + "stopId": "U507" + }, + { + "id": "U507Z101", + "name": "Petřiny", + "isMetro": true, + "latitude": 14.345054, + "longitude": 50.086745, + "stopId": "U507" + }, + { + "id": "U507Z102", + "name": "Petřiny", + "isMetro": true, + "latitude": 14.344882, + "longitude": 50.086696, + "stopId": "U507" + }, + { + "id": "U507Z2", + "name": "Petřiny", + "isMetro": false, + "latitude": 14.344635, + "longitude": 50.088142, + "stopId": "U507" + }, + { + "id": "U5082Z1", + "name": "Úvaly,OC Pražská", + "isMetro": false, + "latitude": 14.707891, + "longitude": 50.072594, + "stopId": "U5082" + }, + { + "id": "U5084Z301", + "name": "Střezimíř", + "isMetro": false, + "latitude": 14.62207, + "longitude": 49.543026, + "stopId": "U5084" + }, + { + "id": "U5085Z1", + "name": "Milovice,průmyslová zóna", + "isMetro": false, + "latitude": 14.851006, + "longitude": 50.235489, + "stopId": "U5085" + }, + { + "id": "U5085Z2", + "name": "Milovice,průmyslová zóna", + "isMetro": false, + "latitude": 14.852275, + "longitude": 50.235607, + "stopId": "U5085" + }, + { + "id": "U5088Z1", + "name": "Zlatníky-Hodkovice,Na Drahách", + "isMetro": false, + "latitude": 14.48387, + "longitude": 49.95525, + "stopId": "U5088" + }, + { + "id": "U5088Z2", + "name": "Zlatníky-Hodkovice,Na Drahách", + "isMetro": false, + "latitude": 14.484004, + "longitude": 49.954948, + "stopId": "U5088" + }, + { + "id": "U508Z1", + "name": "Bohemians", + "isMetro": false, + "latitude": 14.454185, + "longitude": 50.066204, + "stopId": "U508" + }, + { + "id": "U508Z2", + "name": "Bohemians", + "isMetro": false, + "latitude": 14.456394, + "longitude": 50.066467, + "stopId": "U508" + }, + { + "id": "U5093Z1", + "name": "Měcholupy,Želeč,rozc.", + "isMetro": false, + "latitude": 13.554338, + "longitude": 50.257839, + "stopId": "U5093" + }, + { + "id": "U5093Z2", + "name": "Měcholupy,Želeč,rozc.", + "isMetro": false, + "latitude": 13.554517, + "longitude": 50.257713, + "stopId": "U5093" + }, + { + "id": "U5095Z1", + "name": "Buštěhrad,Závod Dříň", + "isMetro": false, + "latitude": 14.165161, + "longitude": 50.154804, + "stopId": "U5095" + }, + { + "id": "U5095Z2", + "name": "Buštěhrad,Závod Dříň", + "isMetro": false, + "latitude": 14.16251, + "longitude": 50.153938, + "stopId": "U5095" + }, + { + "id": "U5099Z1", + "name": "Králův Dvůr,Zahořany,Pod Hájem", + "isMetro": false, + "latitude": 14.028637, + "longitude": 49.95118, + "stopId": "U5099" + }, + { + "id": "U5099Z2", + "name": "Králův Dvůr,Zahořany,Pod Hájem", + "isMetro": false, + "latitude": 14.028508, + "longitude": 49.95203, + "stopId": "U5099" + }, + { + "id": "U509Z3", + "name": "Observatoř Libuš", + "isMetro": false, + "latitude": 14.446877, + "longitude": 50.006531, + "stopId": "U509" + }, + { + "id": "U509Z4", + "name": "Observatoř Libuš", + "isMetro": false, + "latitude": 14.447301, + "longitude": 50.006382, + "stopId": "U509" + }, + { + "id": "U50Z1", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.447591, + "longitude": 50.044762, + "stopId": "U50" + }, + { + "id": "U50Z101", + "name": "Budějovická", + "isMetro": true, + "latitude": 14.448829, + "longitude": 50.044459, + "stopId": "U50" + }, + { + "id": "U50Z102", + "name": "Budějovická", + "isMetro": true, + "latitude": 14.4487, + "longitude": 50.044377, + "stopId": "U50" + }, + { + "id": "U50Z15", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.449234, + "longitude": 50.044777, + "stopId": "U50" + }, + { + "id": "U50Z2", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.447893, + "longitude": 50.044842, + "stopId": "U50" + }, + { + "id": "U50Z3", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.447827, + "longitude": 50.044437, + "stopId": "U50" + }, + { + "id": "U50Z4", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.448335, + "longitude": 50.044735, + "stopId": "U50" + }, + { + "id": "U50Z5", + "name": "Poliklinika Budějovická", + "isMetro": false, + "latitude": 14.45003, + "longitude": 50.043232, + "stopId": "U50" + }, + { + "id": "U50Z6", + "name": "Poliklinika Budějovická", + "isMetro": false, + "latitude": 14.4498, + "longitude": 50.043282, + "stopId": "U50" + }, + { + "id": "U50Z7", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.449316, + "longitude": 50.045769, + "stopId": "U50" + }, + { + "id": "U50Z8", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.447405, + "longitude": 50.04623, + "stopId": "U50" + }, + { + "id": "U50Z84", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.447591, + "longitude": 50.044762, + "stopId": "U50" + }, + { + "id": "U50Z9", + "name": "Budějovická", + "isMetro": false, + "latitude": 14.448105, + "longitude": 50.044601, + "stopId": "U50" + }, + { + "id": "U510Z1", + "name": "Českomoravská", + "isMetro": false, + "latitude": 14.493439, + "longitude": 50.10593, + "stopId": "U510" + }, + { + "id": "U510Z101", + "name": "Českomoravská", + "isMetro": true, + "latitude": 14.491707, + "longitude": 50.106219, + "stopId": "U510" + }, + { + "id": "U510Z102", + "name": "Českomoravská", + "isMetro": true, + "latitude": 14.491818, + "longitude": 50.1061, + "stopId": "U510" + }, + { + "id": "U510Z2", + "name": "Českomoravská", + "isMetro": false, + "latitude": 14.492088, + "longitude": 50.10598, + "stopId": "U510" + }, + { + "id": "U510Z3", + "name": "Českomoravská", + "isMetro": false, + "latitude": 14.492279, + "longitude": 50.105583, + "stopId": "U510" + }, + { + "id": "U511Z1", + "name": "Odra", + "isMetro": false, + "latitude": 14.424676, + "longitude": 50.130939, + "stopId": "U511" + }, + { + "id": "U511Z2", + "name": "Odra", + "isMetro": false, + "latitude": 14.423635, + "longitude": 50.130775, + "stopId": "U511" + }, + { + "id": "U512Z1", + "name": "Ohrada", + "isMetro": false, + "latitude": 14.469093, + "longitude": 50.090591, + "stopId": "U512" + }, + { + "id": "U512Z2", + "name": "Ohrada", + "isMetro": false, + "latitude": 14.470092, + "longitude": 50.090672, + "stopId": "U512" + }, + { + "id": "U512Z3", + "name": "Ohrada", + "isMetro": false, + "latitude": 14.468384, + "longitude": 50.091167, + "stopId": "U512" + }, + { + "id": "U512Z4", + "name": "Ohrada", + "isMetro": false, + "latitude": 14.468584, + "longitude": 50.0914, + "stopId": "U512" + }, + { + "id": "U512Z5", + "name": "Ohrada", + "isMetro": false, + "latitude": 14.466946, + "longitude": 50.090221, + "stopId": "U512" + }, + { + "id": "U512Z8", + "name": "Ohrada", + "isMetro": false, + "latitude": 14.466908, + "longitude": 50.090092, + "stopId": "U512" + }, + { + "id": "U513Z1", + "name": "Suchdol", + "isMetro": false, + "latitude": 14.378922, + "longitude": 50.13903, + "stopId": "U513" + }, + { + "id": "U513Z2", + "name": "Suchdol", + "isMetro": false, + "latitude": 14.379635, + "longitude": 50.139301, + "stopId": "U513" + }, + { + "id": "U514Z1", + "name": "Okrouhlická", + "isMetro": false, + "latitude": 14.460747, + "longitude": 50.119587, + "stopId": "U514" + }, + { + "id": "U514Z2", + "name": "Okrouhlická", + "isMetro": false, + "latitude": 14.459915, + "longitude": 50.11977, + "stopId": "U514" + }, + { + "id": "U515Z1", + "name": "Olšanské hřbitovy", + "isMetro": false, + "latitude": 14.466456, + "longitude": 50.07814, + "stopId": "U515" + }, + { + "id": "U515Z14", + "name": "Olšanské hřbitovy", + "isMetro": false, + "latitude": 14.466932, + "longitude": 50.077728, + "stopId": "U515" + }, + { + "id": "U515Z2", + "name": "Olšanské hřbitovy", + "isMetro": false, + "latitude": 14.467348, + "longitude": 50.078114, + "stopId": "U515" + }, + { + "id": "U515Z4", + "name": "Olšanské hřbitovy", + "isMetro": false, + "latitude": 14.466932, + "longitude": 50.077728, + "stopId": "U515" + }, + { + "id": "U516Z1", + "name": "Olšanské náměstí", + "isMetro": false, + "latitude": 14.457467, + "longitude": 50.082489, + "stopId": "U516" + }, + { + "id": "U516Z2", + "name": "Olšanské náměstí", + "isMetro": false, + "latitude": 14.457738, + "longitude": 50.082451, + "stopId": "U516" + }, + { + "id": "U516Z3", + "name": "Olšanské náměstí", + "isMetro": false, + "latitude": 14.459234, + "longitude": 50.082302, + "stopId": "U516" + }, + { + "id": "U516Z4", + "name": "Olšanské náměstí", + "isMetro": false, + "latitude": 14.458678, + "longitude": 50.083141, + "stopId": "U516" + }, + { + "id": "U517Z1", + "name": "Opálová", + "isMetro": false, + "latitude": 14.363988, + "longitude": 50.021667, + "stopId": "U517" + }, + { + "id": "U518Z1", + "name": "Orionka", + "isMetro": false, + "latitude": 14.459496, + "longitude": 50.075615, + "stopId": "U518" + }, + { + "id": "U518Z2", + "name": "Orionka", + "isMetro": false, + "latitude": 14.45895, + "longitude": 50.075504, + "stopId": "U518" + }, + { + "id": "U518Z3", + "name": "Orionka", + "isMetro": false, + "latitude": 14.459101, + "longitude": 50.075935, + "stopId": "U518" + }, + { + "id": "U518Z4", + "name": "Orionka", + "isMetro": false, + "latitude": 14.460084, + "longitude": 50.075565, + "stopId": "U518" + }, + { + "id": "U519Z1", + "name": "Ořechovka", + "isMetro": false, + "latitude": 14.379548, + "longitude": 50.092838, + "stopId": "U519" + }, + { + "id": "U519Z2", + "name": "Ořechovka", + "isMetro": false, + "latitude": 14.378879, + "longitude": 50.092915, + "stopId": "U519" + }, + { + "id": "U51Z1", + "name": "Sportareál Satalice", + "isMetro": false, + "latitude": 14.566884, + "longitude": 50.123547, + "stopId": "U51" + }, + { + "id": "U51Z2", + "name": "Sportareál Satalice", + "isMetro": false, + "latitude": 14.566565, + "longitude": 50.123249, + "stopId": "U51" + }, + { + "id": "U5209Z51", + "name": "Libeňské doky", + "isMetro": false, + "latitude": 14.470427, + "longitude": 50.105247, + "stopId": "U5209" + }, + { + "id": "U5209Z52", + "name": "Libeňské doky", + "isMetro": false, + "latitude": 14.470214, + "longitude": 50.104801, + "stopId": "U5209" + }, + { + "id": "U520Z1", + "name": "Strnady", + "isMetro": false, + "latitude": 14.394417, + "longitude": 49.945568, + "stopId": "U520" + }, + { + "id": "U520Z2", + "name": "Strnady", + "isMetro": false, + "latitude": 14.3947, + "longitude": 49.945732, + "stopId": "U520" + }, + { + "id": "U5210Z52", + "name": "Štorchova", + "isMetro": false, + "latitude": 14.468471, + "longitude": 50.10302, + "stopId": "U5210" + }, + { + "id": "U521Z1", + "name": "Ortenovo náměstí", + "isMetro": false, + "latitude": 14.44708, + "longitude": 50.107826, + "stopId": "U521" + }, + { + "id": "U521Z2", + "name": "Ortenovo náměstí", + "isMetro": false, + "latitude": 14.448573, + "longitude": 50.107609, + "stopId": "U521" + }, + { + "id": "U522Z1", + "name": "Ostrčilovo náměstí", + "isMetro": false, + "latitude": 14.425223, + "longitude": 50.065056, + "stopId": "U522" + }, + { + "id": "U522Z2", + "name": "Ostrčilovo náměstí", + "isMetro": false, + "latitude": 14.424358, + "longitude": 50.065071, + "stopId": "U522" + }, + { + "id": "U5242Z1", + "name": "Úvaly,MŠ Pražská", + "isMetro": false, + "latitude": 14.715641, + "longitude": 50.072983, + "stopId": "U5242" + }, + { + "id": "U524Z1", + "name": "Otínská", + "isMetro": false, + "latitude": 14.356031, + "longitude": 49.982536, + "stopId": "U524" + }, + { + "id": "U524Z2", + "name": "Otínská", + "isMetro": false, + "latitude": 14.355783, + "longitude": 49.982342, + "stopId": "U524" + }, + { + "id": "U525Z1", + "name": "Do Lipan", + "isMetro": false, + "latitude": 14.626531, + "longitude": 50.008419, + "stopId": "U525" + }, + { + "id": "U525Z2", + "name": "Do Lipan", + "isMetro": false, + "latitude": 14.626231, + "longitude": 50.00761, + "stopId": "U525" + }, + { + "id": "U526Z1", + "name": "Huntířovská", + "isMetro": false, + "latitude": 14.544917, + "longitude": 50.129551, + "stopId": "U526" + }, + { + "id": "U526Z2", + "name": "Huntířovská", + "isMetro": false, + "latitude": 14.542934, + "longitude": 50.128967, + "stopId": "U526" + }, + { + "id": "U527Z1", + "name": "Vyšehrad", + "isMetro": false, + "latitude": 14.430634, + "longitude": 50.059101, + "stopId": "U527" + }, + { + "id": "U527Z101", + "name": "Vyšehrad", + "isMetro": true, + "latitude": 14.430549, + "longitude": 50.063171, + "stopId": "U527" + }, + { + "id": "U527Z102", + "name": "Vyšehrad", + "isMetro": true, + "latitude": 14.430488, + "longitude": 50.063171, + "stopId": "U527" + }, + { + "id": "U527Z2", + "name": "Vyšehrad", + "isMetro": false, + "latitude": 14.430467, + "longitude": 50.059269, + "stopId": "U527" + }, + { + "id": "U529Z1", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.473387, + "longitude": 50.102474, + "stopId": "U529" + }, + { + "id": "U529Z10", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.47615, + "longitude": 50.104881, + "stopId": "U529" + }, + { + "id": "U529Z101", + "name": "Palmovka", + "isMetro": true, + "latitude": 14.474488, + "longitude": 50.103951, + "stopId": "U529" + }, + { + "id": "U529Z102", + "name": "Palmovka", + "isMetro": true, + "latitude": 14.474595, + "longitude": 50.103837, + "stopId": "U529" + }, + { + "id": "U529Z2", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.474789, + "longitude": 50.103764, + "stopId": "U529" + }, + { + "id": "U529Z4", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.47317, + "longitude": 50.104504, + "stopId": "U529" + }, + { + "id": "U529Z5", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.475851, + "longitude": 50.104317, + "stopId": "U529" + }, + { + "id": "U529Z8", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.475304, + "longitude": 50.104584, + "stopId": "U529" + }, + { + "id": "U529Z88", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.475304, + "longitude": 50.104584, + "stopId": "U529" + }, + { + "id": "U529Z9", + "name": "Palmovka", + "isMetro": false, + "latitude": 14.474955, + "longitude": 50.104492, + "stopId": "U529" + }, + { + "id": "U52Z101", + "name": "Chodov", + "isMetro": true, + "latitude": 14.49109, + "longitude": 50.031696, + "stopId": "U52" + }, + { + "id": "U52Z102", + "name": "Chodov", + "isMetro": true, + "latitude": 14.49097, + "longitude": 50.031611, + "stopId": "U52" + }, + { + "id": "U52Z2", + "name": "Chodov", + "isMetro": false, + "latitude": 14.49146, + "longitude": 50.030766, + "stopId": "U52" + }, + { + "id": "U52Z4", + "name": "Chodov", + "isMetro": false, + "latitude": 14.491751, + "longitude": 50.030884, + "stopId": "U52" + }, + { + "id": "U52Z5", + "name": "Chodov", + "isMetro": false, + "latitude": 14.491517, + "longitude": 50.031082, + "stopId": "U52" + }, + { + "id": "U530Z1", + "name": "Palouček", + "isMetro": false, + "latitude": 14.4376, + "longitude": 50.061859, + "stopId": "U530" + }, + { + "id": "U530Z2", + "name": "Palouček", + "isMetro": false, + "latitude": 14.436819, + "longitude": 50.061127, + "stopId": "U530" + }, + { + "id": "U531Z1", + "name": "Pohořelec", + "isMetro": false, + "latitude": 14.388266, + "longitude": 50.087696, + "stopId": "U531" + }, + { + "id": "U531Z2", + "name": "Pohořelec", + "isMetro": false, + "latitude": 14.388129, + "longitude": 50.087898, + "stopId": "U531" + }, + { + "id": "U532Z52", + "name": "Výstaviště", + "isMetro": false, + "latitude": 14.432585, + "longitude": 50.105259, + "stopId": "U532" + }, + { + "id": "U533Z1", + "name": "Libuš", + "isMetro": false, + "latitude": 14.455454, + "longitude": 50.009212, + "stopId": "U533" + }, + { + "id": "U533Z2", + "name": "Libuš", + "isMetro": false, + "latitude": 14.455893, + "longitude": 50.00898, + "stopId": "U533" + }, + { + "id": "U533Z3", + "name": "Libuš", + "isMetro": false, + "latitude": 14.45576, + "longitude": 50.008667, + "stopId": "U533" + }, + { + "id": "U533Z4", + "name": "Libuš", + "isMetro": false, + "latitude": 14.455747, + "longitude": 50.008972, + "stopId": "U533" + }, + { + "id": "U5354Z1", + "name": "Olbramovice,parcely", + "isMetro": false, + "latitude": 14.631429, + "longitude": 49.671471, + "stopId": "U5354" + }, + { + "id": "U5354Z2", + "name": "Olbramovice,parcely", + "isMetro": false, + "latitude": 14.631452, + "longitude": 49.67112, + "stopId": "U5354" + }, + { + "id": "U5355Z1", + "name": "Velké Přílepy,Podmoráňská", + "isMetro": false, + "latitude": 14.316973, + "longitude": 50.161144, + "stopId": "U5355" + }, + { + "id": "U5355Z2", + "name": "Velké Přílepy,Podmoráňská", + "isMetro": false, + "latitude": 14.317422, + "longitude": 50.161194, + "stopId": "U5355" + }, + { + "id": "U535Z1", + "name": "Pávovské náměstí", + "isMetro": false, + "latitude": 14.540251, + "longitude": 50.093166, + "stopId": "U535" + }, + { + "id": "U535Z2", + "name": "Pávovské náměstí", + "isMetro": false, + "latitude": 14.541468, + "longitude": 50.09325, + "stopId": "U535" + }, + { + "id": "U536Z3", + "name": "Pelc Tyrolka", + "isMetro": false, + "latitude": 14.443846, + "longitude": 50.115936, + "stopId": "U536" + }, + { + "id": "U537Z1", + "name": "Peluněk", + "isMetro": false, + "latitude": 14.375901, + "longitude": 49.969093, + "stopId": "U537" + }, + { + "id": "U537Z2", + "name": "Peluněk", + "isMetro": false, + "latitude": 14.375665, + "longitude": 49.968906, + "stopId": "U537" + }, + { + "id": "U538Z1", + "name": "Perlit", + "isMetro": false, + "latitude": 14.537897, + "longitude": 50.085739, + "stopId": "U538" + }, + { + "id": "U538Z2", + "name": "Perlit", + "isMetro": false, + "latitude": 14.53764, + "longitude": 50.085312, + "stopId": "U538" + }, + { + "id": "U539Z1", + "name": "Národní třída", + "isMetro": false, + "latitude": 14.419593, + "longitude": 50.081158, + "stopId": "U539" + }, + { + "id": "U539Z101", + "name": "Národní třída", + "isMetro": true, + "latitude": 14.420147, + "longitude": 50.079951, + "stopId": "U539" + }, + { + "id": "U539Z102", + "name": "Národní třída", + "isMetro": true, + "latitude": 14.42044, + "longitude": 50.079944, + "stopId": "U539" + }, + { + "id": "U539Z2", + "name": "Národní třída", + "isMetro": false, + "latitude": 14.419497, + "longitude": 50.081688, + "stopId": "U539" + }, + { + "id": "U53Z1", + "name": "Budovec", + "isMetro": false, + "latitude": 14.383867, + "longitude": 50.13385, + "stopId": "U53" + }, + { + "id": "U53Z2", + "name": "Budovec", + "isMetro": false, + "latitude": 14.383433, + "longitude": 50.134701, + "stopId": "U53" + }, + { + "id": "U540Z1", + "name": "Perunova", + "isMetro": false, + "latitude": 14.454484, + "longitude": 50.075459, + "stopId": "U540" + }, + { + "id": "U540Z2", + "name": "Perunova", + "isMetro": false, + "latitude": 14.454094, + "longitude": 50.075386, + "stopId": "U540" + }, + { + "id": "U540Z3", + "name": "Perunova", + "isMetro": false, + "latitude": 14.454432, + "longitude": 50.075153, + "stopId": "U540" + }, + { + "id": "U541Z1", + "name": "Sídliště Petřiny", + "isMetro": false, + "latitude": 14.339774, + "longitude": 50.086975, + "stopId": "U541" + }, + { + "id": "U541Z2", + "name": "Sídliště Petřiny", + "isMetro": false, + "latitude": 14.339738, + "longitude": 50.086613, + "stopId": "U541" + }, + { + "id": "U541Z4", + "name": "Sídliště Petřiny", + "isMetro": false, + "latitude": 14.339676, + "longitude": 50.086662, + "stopId": "U541" + }, + { + "id": "U541Z6", + "name": "Sídliště Petřiny", + "isMetro": false, + "latitude": 14.338817, + "longitude": 50.085899, + "stopId": "U541" + }, + { + "id": "U541Z7", + "name": "Sídliště Petřiny", + "isMetro": false, + "latitude": 14.33954, + "longitude": 50.086376, + "stopId": "U541" + }, + { + "id": "U542Z1", + "name": "Picassova", + "isMetro": false, + "latitude": 14.593468, + "longitude": 50.035301, + "stopId": "U542" + }, + { + "id": "U542Z12", + "name": "Picassova", + "isMetro": false, + "latitude": 14.594649, + "longitude": 50.034531, + "stopId": "U542" + }, + { + "id": "U542Z2", + "name": "Picassova", + "isMetro": false, + "latitude": 14.594649, + "longitude": 50.034531, + "stopId": "U542" + }, + { + "id": "U543Z1", + "name": "Písečná", + "isMetro": false, + "latitude": 14.442784, + "longitude": 50.1259, + "stopId": "U543" + }, + { + "id": "U543Z2", + "name": "Písečná", + "isMetro": false, + "latitude": 14.444245, + "longitude": 50.125584, + "stopId": "U543" + }, + { + "id": "U544Z1", + "name": "Čimický háj", + "isMetro": false, + "latitude": 14.435367, + "longitude": 50.127567, + "stopId": "U544" + }, + { + "id": "U544Z2", + "name": "Čimický háj", + "isMetro": false, + "latitude": 14.435851, + "longitude": 50.12709, + "stopId": "U544" + }, + { + "id": "U545Z1", + "name": "Písnice", + "isMetro": false, + "latitude": 14.46825, + "longitude": 49.991001, + "stopId": "U545" + }, + { + "id": "U545Z2", + "name": "Písnice", + "isMetro": false, + "latitude": 14.468528, + "longitude": 49.991634, + "stopId": "U545" + }, + { + "id": "U545Z3", + "name": "Písnice", + "isMetro": false, + "latitude": 14.46876, + "longitude": 49.990852, + "stopId": "U545" + }, + { + "id": "U546Z1", + "name": "Ke Březině", + "isMetro": false, + "latitude": 14.467896, + "longitude": 49.993225, + "stopId": "U546" + }, + { + "id": "U546Z2", + "name": "Ke Březině", + "isMetro": false, + "latitude": 14.467683, + "longitude": 49.994957, + "stopId": "U546" + }, + { + "id": "U548Z1", + "name": "Plaňanská", + "isMetro": false, + "latitude": 14.500506, + "longitude": 50.081749, + "stopId": "U548" + }, + { + "id": "U548Z2", + "name": "Plaňanská", + "isMetro": false, + "latitude": 14.499303, + "longitude": 50.081776, + "stopId": "U548" + }, + { + "id": "U548Z3", + "name": "Poliklinika Malešice", + "isMetro": false, + "latitude": 14.50116, + "longitude": 50.080631, + "stopId": "U548" + }, + { + "id": "U548Z4", + "name": "Poliklinika Malešice", + "isMetro": false, + "latitude": 14.502143, + "longitude": 50.080124, + "stopId": "U548" + }, + { + "id": "U54Z1", + "name": "Bulovka", + "isMetro": false, + "latitude": 14.468149, + "longitude": 50.116058, + "stopId": "U54" + }, + { + "id": "U54Z2", + "name": "Bulovka", + "isMetro": false, + "latitude": 14.467761, + "longitude": 50.116543, + "stopId": "U54" + }, + { + "id": "U54Z3", + "name": "Bulovka", + "isMetro": false, + "latitude": 14.467168, + "longitude": 50.116627, + "stopId": "U54" + }, + { + "id": "U54Z4", + "name": "Bulovka", + "isMetro": false, + "latitude": 14.468926, + "longitude": 50.117592, + "stopId": "U54" + }, + { + "id": "U54Z5", + "name": "Bulovka", + "isMetro": false, + "latitude": 14.467166, + "longitude": 50.116039, + "stopId": "U54" + }, + { + "id": "U54Z6", + "name": "Bulovka", + "isMetro": false, + "latitude": 14.468527, + "longitude": 50.115597, + "stopId": "U54" + }, + { + "id": "U54Z76", + "name": "Bulovka", + "isMetro": false, + "latitude": 14.468527, + "longitude": 50.115597, + "stopId": "U54" + }, + { + "id": "U550Z1", + "name": "Plynárna Michle", + "isMetro": false, + "latitude": 14.464609, + "longitude": 50.056549, + "stopId": "U550" + }, + { + "id": "U550Z2", + "name": "Plynárna Michle", + "isMetro": false, + "latitude": 14.465298, + "longitude": 50.056503, + "stopId": "U550" + }, + { + "id": "U552Z1", + "name": "Radiová", + "isMetro": false, + "latitude": 14.537068, + "longitude": 50.069427, + "stopId": "U552" + }, + { + "id": "U552Z2", + "name": "Radiová", + "isMetro": false, + "latitude": 14.537526, + "longitude": 50.069923, + "stopId": "U552" + }, + { + "id": "U553Z1", + "name": "Plzeňka", + "isMetro": false, + "latitude": 14.408817, + "longitude": 50.063702, + "stopId": "U553" + }, + { + "id": "U553Z2", + "name": "Plzeňka", + "isMetro": false, + "latitude": 14.408719, + "longitude": 50.063465, + "stopId": "U553" + }, + { + "id": "U554Z1", + "name": "Dědina", + "isMetro": false, + "latitude": 14.301905, + "longitude": 50.089329, + "stopId": "U554" + }, + { + "id": "U554Z2", + "name": "Dědina", + "isMetro": false, + "latitude": 14.301223, + "longitude": 50.089928, + "stopId": "U554" + }, + { + "id": "U554Z5", + "name": "Dědina", + "isMetro": false, + "latitude": 14.301283, + "longitude": 50.090149, + "stopId": "U554" + }, + { + "id": "U554Z6", + "name": "Dědina", + "isMetro": false, + "latitude": 14.301363, + "longitude": 50.089832, + "stopId": "U554" + }, + { + "id": "U555Z1", + "name": "Počeradská", + "isMetro": false, + "latitude": 14.451917, + "longitude": 50.139256, + "stopId": "U555" + }, + { + "id": "U555Z2", + "name": "Počeradská", + "isMetro": false, + "latitude": 14.451617, + "longitude": 50.139217, + "stopId": "U555" + }, + { + "id": "U556Z1", + "name": "Pod Hájem", + "isMetro": false, + "latitude": 14.381101, + "longitude": 50.124649, + "stopId": "U556" + }, + { + "id": "U556Z2", + "name": "Pod Hájem", + "isMetro": false, + "latitude": 14.38175, + "longitude": 50.124718, + "stopId": "U556" + }, + { + "id": "U557Z1", + "name": "Botanická zahrada Troja", + "isMetro": false, + "latitude": 14.409901, + "longitude": 50.118969, + "stopId": "U557" + }, + { + "id": "U557Z2", + "name": "Botanická zahrada Troja", + "isMetro": false, + "latitude": 14.410984, + "longitude": 50.119083, + "stopId": "U557" + }, + { + "id": "U557Z3", + "name": "Botanická zahrada Troja", + "isMetro": false, + "latitude": 14.41057, + "longitude": 50.119316, + "stopId": "U557" + }, + { + "id": "U558Z1", + "name": "Ruzyňský hřbitov", + "isMetro": false, + "latitude": 14.312366, + "longitude": 50.076069, + "stopId": "U558" + }, + { + "id": "U558Z2", + "name": "Ruzyňský hřbitov", + "isMetro": false, + "latitude": 14.311928, + "longitude": 50.075989, + "stopId": "U558" + }, + { + "id": "U559Z1", + "name": "Pod Jezerkou", + "isMetro": false, + "latitude": 14.449987, + "longitude": 50.058399, + "stopId": "U559" + }, + { + "id": "U559Z2", + "name": "Pod Jezerkou", + "isMetro": false, + "latitude": 14.450202, + "longitude": 50.057793, + "stopId": "U559" + }, + { + "id": "U55Z1", + "name": "Šimůnkova", + "isMetro": false, + "latitude": 14.470134, + "longitude": 50.132652, + "stopId": "U55" + }, + { + "id": "U55Z2", + "name": "Šimůnkova", + "isMetro": false, + "latitude": 14.470634, + "longitude": 50.132618, + "stopId": "U55" + }, + { + "id": "U55Z3", + "name": "Šimůnkova", + "isMetro": false, + "latitude": 14.470651, + "longitude": 50.133533, + "stopId": "U55" + }, + { + "id": "U560Z1", + "name": "Pod Karlovem", + "isMetro": false, + "latitude": 14.432828, + "longitude": 50.06979, + "stopId": "U560" + }, + { + "id": "U560Z2", + "name": "Pod Karlovem", + "isMetro": false, + "latitude": 14.432657, + "longitude": 50.068542, + "stopId": "U560" + }, + { + "id": "U561Z1", + "name": "Pod Kesnerkou", + "isMetro": false, + "latitude": 14.403062, + "longitude": 50.059292, + "stopId": "U561" + }, + { + "id": "U562Z1", + "name": "Pod Konvářkou", + "isMetro": false, + "latitude": 14.404967, + "longitude": 50.055534, + "stopId": "U562" + }, + { + "id": "U562Z2", + "name": "Pod Konvářkou", + "isMetro": false, + "latitude": 14.40515, + "longitude": 50.055485, + "stopId": "U562" + }, + { + "id": "U563Z1", + "name": "Pod Královkou", + "isMetro": false, + "latitude": 14.378973, + "longitude": 50.085728, + "stopId": "U563" + }, + { + "id": "U563Z2", + "name": "Pod Královkou", + "isMetro": false, + "latitude": 14.378705, + "longitude": 50.085773, + "stopId": "U563" + }, + { + "id": "U564Z1", + "name": "Pod Kyjovem", + "isMetro": false, + "latitude": 14.369217, + "longitude": 49.965832, + "stopId": "U564" + }, + { + "id": "U564Z2", + "name": "Pod Kyjovem", + "isMetro": false, + "latitude": 14.3689, + "longitude": 49.965599, + "stopId": "U564" + }, + { + "id": "U565Z1", + "name": "Pod Lipkami", + "isMetro": false, + "latitude": 14.373112, + "longitude": 50.07296, + "stopId": "U565" + }, + { + "id": "U566Z1", + "name": "Pod Mezí", + "isMetro": false, + "latitude": 14.355349, + "longitude": 50.026962, + "stopId": "U566" + }, + { + "id": "U566Z2", + "name": "Pod Mezí", + "isMetro": false, + "latitude": 14.355208, + "longitude": 50.026966, + "stopId": "U566" + }, + { + "id": "U567Z1", + "name": "Hotel Golf", + "isMetro": false, + "latitude": 14.346667, + "longitude": 50.068031, + "stopId": "U567" + }, + { + "id": "U567Z2", + "name": "Hotel Golf", + "isMetro": false, + "latitude": 14.346782, + "longitude": 50.0681, + "stopId": "U567" + }, + { + "id": "U568Z1", + "name": "Pod Oborou", + "isMetro": false, + "latitude": 14.636034, + "longitude": 50.063118, + "stopId": "U568" + }, + { + "id": "U568Z2", + "name": "Pod Oborou", + "isMetro": false, + "latitude": 14.636588, + "longitude": 50.063026, + "stopId": "U568" + }, + { + "id": "U569Z1", + "name": "Pod Pekařkou", + "isMetro": false, + "latitude": 14.424684, + "longitude": 50.043865, + "stopId": "U569" + }, + { + "id": "U569Z2", + "name": "Pod Pekařkou", + "isMetro": false, + "latitude": 14.424495, + "longitude": 50.043686, + "stopId": "U569" + }, + { + "id": "U56Z1", + "name": "Kuliška", + "isMetro": false, + "latitude": 14.364482, + "longitude": 50.10775, + "stopId": "U56" + }, + { + "id": "U56Z2", + "name": "Kuliška", + "isMetro": false, + "latitude": 14.364359, + "longitude": 50.107635, + "stopId": "U56" + }, + { + "id": "U5701Z1", + "name": "Vysoký Chlumec,Hrabří,kaple Medná", + "isMetro": false, + "latitude": 14.335806, + "longitude": 49.647415, + "stopId": "U5701" + }, + { + "id": "U5701Z2", + "name": "Vysoký Chlumec,Hrabří,kaple Medná", + "isMetro": false, + "latitude": 14.335835, + "longitude": 49.647369, + "stopId": "U5701" + }, + { + "id": "U5702Z1", + "name": "Svatý Jan,rozc.", + "isMetro": false, + "latitude": 14.315397, + "longitude": 49.635071, + "stopId": "U5702" + }, + { + "id": "U5702Z2", + "name": "Svatý Jan,rozc.", + "isMetro": false, + "latitude": 14.315454, + "longitude": 49.634945, + "stopId": "U5702" + }, + { + "id": "U5703Z1", + "name": "Svatý Jan,Řadovy,Radobyl", + "isMetro": false, + "latitude": 14.272796, + "longitude": 49.635708, + "stopId": "U5703" + }, + { + "id": "U5703Z2", + "name": "Svatý Jan,Řadovy,Radobyl", + "isMetro": false, + "latitude": 14.272916, + "longitude": 49.635727, + "stopId": "U5703" + }, + { + "id": "U5705Z1", + "name": "Svatý Jan,v jedlinách", + "isMetro": false, + "latitude": 14.32494, + "longitude": 49.637932, + "stopId": "U5705" + }, + { + "id": "U5707Z1", + "name": "Svatý Jan,Drážkov", + "isMetro": false, + "latitude": 14.287066, + "longitude": 49.650635, + "stopId": "U5707" + }, + { + "id": "U5707Z2", + "name": "Svatý Jan,Drážkov", + "isMetro": false, + "latitude": 14.287054, + "longitude": 49.650539, + "stopId": "U5707" + }, + { + "id": "U5708Z1", + "name": "Svatý Jan,Hojšín", + "isMetro": false, + "latitude": 14.269094, + "longitude": 49.654091, + "stopId": "U5708" + }, + { + "id": "U5708Z2", + "name": "Svatý Jan,Hojšín", + "isMetro": false, + "latitude": 14.269319, + "longitude": 49.654083, + "stopId": "U5708" + }, + { + "id": "U570Z1", + "name": "Pod Rapidem", + "isMetro": false, + "latitude": 14.48435, + "longitude": 50.072166, + "stopId": "U570" + }, + { + "id": "U570Z2", + "name": "Pod Rapidem", + "isMetro": false, + "latitude": 14.483984, + "longitude": 50.07235, + "stopId": "U570" + }, + { + "id": "U5710Z1", + "name": "Svatý Jan,Hrachov", + "isMetro": false, + "latitude": 14.297462, + "longitude": 49.664288, + "stopId": "U5710" + }, + { + "id": "U5711Z1", + "name": "Svatý Jan,Hrachov,Vestecký most", + "isMetro": false, + "latitude": 14.266609, + "longitude": 49.673981, + "stopId": "U5711" + }, + { + "id": "U5711Z2", + "name": "Svatý Jan,Hrachov,Vestecký most", + "isMetro": false, + "latitude": 14.266741, + "longitude": 49.673885, + "stopId": "U5711" + }, + { + "id": "U5712Z1", + "name": "Svatý Jan,Řadovy", + "isMetro": false, + "latitude": 14.275778, + "longitude": 49.631748, + "stopId": "U5712" + }, + { + "id": "U5712Z2", + "name": "Svatý Jan,Řadovy", + "isMetro": false, + "latitude": 14.275981, + "longitude": 49.631817, + "stopId": "U5712" + }, + { + "id": "U5713Z1", + "name": "Svatý Jan,Skrýšov", + "isMetro": false, + "latitude": 14.300655, + "longitude": 49.645924, + "stopId": "U5713" + }, + { + "id": "U5713Z2", + "name": "Svatý Jan,Skrýšov", + "isMetro": false, + "latitude": 14.30047, + "longitude": 49.645908, + "stopId": "U5713" + }, + { + "id": "U5714Z1", + "name": "Svatý Jan,Hrachov,Zrůbek", + "isMetro": false, + "latitude": 14.288021, + "longitude": 49.676838, + "stopId": "U5714" + }, + { + "id": "U5714Z2", + "name": "Svatý Jan,Hrachov,Zrůbek", + "isMetro": false, + "latitude": 14.288354, + "longitude": 49.676769, + "stopId": "U5714" + }, + { + "id": "U5717Z1", + "name": "Šetějovice", + "isMetro": false, + "latitude": 15.222001, + "longitude": 49.645035, + "stopId": "U5717" + }, + { + "id": "U5717Z2", + "name": "Šetějovice", + "isMetro": false, + "latitude": 15.222107, + "longitude": 49.645046, + "stopId": "U5717" + }, + { + "id": "U5718Z1", + "name": "Šetějovice,Nechyba", + "isMetro": false, + "latitude": 15.216415, + "longitude": 49.648087, + "stopId": "U5718" + }, + { + "id": "U5718Z2", + "name": "Šetějovice,Nechyba", + "isMetro": false, + "latitude": 15.216367, + "longitude": 49.648167, + "stopId": "U5718" + }, + { + "id": "U5719Z1", + "name": "Šetějovice,Dolní Rápotice", + "isMetro": false, + "latitude": 15.233447, + "longitude": 49.638062, + "stopId": "U5719" + }, + { + "id": "U5719Z2", + "name": "Šetějovice,Dolní Rápotice", + "isMetro": false, + "latitude": 15.233589, + "longitude": 49.638042, + "stopId": "U5719" + }, + { + "id": "U571Z1", + "name": "Pod Ryšánkou", + "isMetro": false, + "latitude": 14.426333, + "longitude": 50.036701, + "stopId": "U571" + }, + { + "id": "U571Z2", + "name": "Pod Ryšánkou", + "isMetro": false, + "latitude": 14.427484, + "longitude": 50.036736, + "stopId": "U571" + }, + { + "id": "U5725Z1", + "name": "Teplýšovice", + "isMetro": false, + "latitude": 14.801774, + "longitude": 49.806065, + "stopId": "U5725" + }, + { + "id": "U5725Z2", + "name": "Teplýšovice", + "isMetro": false, + "latitude": 14.80159, + "longitude": 49.806072, + "stopId": "U5725" + }, + { + "id": "U5726Z1", + "name": "Teplýšovice,Čeňovice", + "isMetro": false, + "latitude": 14.794051, + "longitude": 49.793251, + "stopId": "U5726" + }, + { + "id": "U5726Z2", + "name": "Teplýšovice,Čeňovice", + "isMetro": false, + "latitude": 14.794044, + "longitude": 49.793167, + "stopId": "U5726" + }, + { + "id": "U5727Z1", + "name": "Teplýšovice,Čeňovice,rozc.", + "isMetro": false, + "latitude": 14.790424, + "longitude": 49.797131, + "stopId": "U5727" + }, + { + "id": "U5727Z2", + "name": "Teplýšovice,Čeňovice,rozc.", + "isMetro": false, + "latitude": 14.790257, + "longitude": 49.797119, + "stopId": "U5727" + }, + { + "id": "U5728Z1", + "name": "Teplýšovice,Humenec,rozc.", + "isMetro": false, + "latitude": 14.801786, + "longitude": 49.802658, + "stopId": "U5728" + }, + { + "id": "U5728Z2", + "name": "Teplýšovice,Humenec,rozc.", + "isMetro": false, + "latitude": 14.801877, + "longitude": 49.802937, + "stopId": "U5728" + }, + { + "id": "U572Z1", + "name": "Pod Šafránkou", + "isMetro": false, + "latitude": 14.3478, + "longitude": 50.073299, + "stopId": "U572" + }, + { + "id": "U572Z2", + "name": "Pod Šafránkou", + "isMetro": false, + "latitude": 14.349067, + "longitude": 50.073399, + "stopId": "U572" + }, + { + "id": "U5730Z1", + "name": "Teplýšovice,Smilov", + "isMetro": false, + "latitude": 14.816869, + "longitude": 49.806, + "stopId": "U5730" + }, + { + "id": "U5730Z2", + "name": "Teplýšovice,Smilov", + "isMetro": false, + "latitude": 14.816834, + "longitude": 49.806042, + "stopId": "U5730" + }, + { + "id": "U5731Z1", + "name": "Čakov,rozc.Zálesí", + "isMetro": false, + "latitude": 14.820524, + "longitude": 49.809772, + "stopId": "U5731" + }, + { + "id": "U5731Z2", + "name": "Čakov,rozc.Zálesí", + "isMetro": false, + "latitude": 14.820374, + "longitude": 49.809795, + "stopId": "U5731" + }, + { + "id": "U5736Z1", + "name": "Tochovice", + "isMetro": false, + "latitude": 13.985791, + "longitude": 49.595459, + "stopId": "U5736" + }, + { + "id": "U5736Z2", + "name": "Tochovice", + "isMetro": false, + "latitude": 13.985721, + "longitude": 49.595531, + "stopId": "U5736" + }, + { + "id": "U5737Z401", + "name": "Tochovice,Obecní úřad", + "isMetro": false, + "latitude": 13.988215, + "longitude": 49.598824, + "stopId": "U5737" + }, + { + "id": "U5739Z1", + "name": "Tomice", + "isMetro": false, + "latitude": 15.155082, + "longitude": 49.64547, + "stopId": "U5739" + }, + { + "id": "U5739Z2", + "name": "Tomice", + "isMetro": false, + "latitude": 15.155178, + "longitude": 49.645447, + "stopId": "U5739" + }, + { + "id": "U573Z1", + "name": "Pod Šmukýřkou", + "isMetro": false, + "latitude": 14.375584, + "longitude": 50.060951, + "stopId": "U573" + }, + { + "id": "U573Z2", + "name": "Pod Šmukýřkou", + "isMetro": false, + "latitude": 14.375284, + "longitude": 50.061417, + "stopId": "U573" + }, + { + "id": "U5740Z1", + "name": "Tomice,u mostu", + "isMetro": false, + "latitude": 15.156888, + "longitude": 49.642868, + "stopId": "U5740" + }, + { + "id": "U5740Z2", + "name": "Tomice,u mostu", + "isMetro": false, + "latitude": 15.15685, + "longitude": 49.642967, + "stopId": "U5740" + }, + { + "id": "U5741Z1", + "name": "Trhový Štěpánov,Vlašimská", + "isMetro": false, + "latitude": 15.008628, + "longitude": 49.712875, + "stopId": "U5741" + }, + { + "id": "U5741Z2", + "name": "Trhový Štěpánov,Vlašimská", + "isMetro": false, + "latitude": 15.008577, + "longitude": 49.712803, + "stopId": "U5741" + }, + { + "id": "U5742Z1", + "name": "Trhový Štěpánov,mlýn", + "isMetro": false, + "latitude": 15.031805, + "longitude": 49.705715, + "stopId": "U5742" + }, + { + "id": "U5742Z2", + "name": "Trhový Štěpánov,mlýn", + "isMetro": false, + "latitude": 15.031746, + "longitude": 49.705639, + "stopId": "U5742" + }, + { + "id": "U5743Z1", + "name": "Trhový Štěpánov,nám.", + "isMetro": false, + "latitude": 15.012924, + "longitude": 49.711628, + "stopId": "U5743" + }, + { + "id": "U5743Z2", + "name": "Trhový Štěpánov,nám.", + "isMetro": false, + "latitude": 15.012924, + "longitude": 49.711704, + "stopId": "U5743" + }, + { + "id": "U5744Z1", + "name": "Trhový Štěpánov,městský úřad", + "isMetro": false, + "latitude": 15.014633, + "longitude": 49.710247, + "stopId": "U5744" + }, + { + "id": "U5744Z2", + "name": "Trhový Štěpánov,městský úřad", + "isMetro": false, + "latitude": 15.014837, + "longitude": 49.710308, + "stopId": "U5744" + }, + { + "id": "U5748Z1", + "name": "Trhový Štěpánov,Dubějovice", + "isMetro": false, + "latitude": 15.050364, + "longitude": 49.701645, + "stopId": "U5748" + }, + { + "id": "U5748Z2", + "name": "Trhový Štěpánov,Dubějovice", + "isMetro": false, + "latitude": 15.050652, + "longitude": 49.701527, + "stopId": "U5748" + }, + { + "id": "U5749Z1", + "name": "Trhový Štěpánov,Sedmpány", + "isMetro": false, + "latitude": 15.066642, + "longitude": 49.69931, + "stopId": "U5749" + }, + { + "id": "U5749Z2", + "name": "Trhový Štěpánov,Sedmpány", + "isMetro": false, + "latitude": 15.066687, + "longitude": 49.69923, + "stopId": "U5749" + }, + { + "id": "U574Z1", + "name": "Pod Táborem", + "isMetro": false, + "latitude": 14.509307, + "longitude": 50.091602, + "stopId": "U574" + }, + { + "id": "U574Z2", + "name": "Pod Táborem", + "isMetro": false, + "latitude": 14.512152, + "longitude": 50.092327, + "stopId": "U574" + }, + { + "id": "U5750Z1", + "name": "Trhový Štěpánov,Sedmpány,háj.", + "isMetro": false, + "latitude": 15.068109, + "longitude": 49.692165, + "stopId": "U5750" + }, + { + "id": "U5750Z2", + "name": "Trhový Štěpánov,Sedmpány,háj.", + "isMetro": false, + "latitude": 15.068019, + "longitude": 49.692104, + "stopId": "U5750" + }, + { + "id": "U5753Z1", + "name": "Třebešice,rozc.", + "isMetro": false, + "latitude": 14.821758, + "longitude": 49.784416, + "stopId": "U5753" + }, + { + "id": "U5753Z2", + "name": "Třebešice,rozc.", + "isMetro": false, + "latitude": 14.82185, + "longitude": 49.784565, + "stopId": "U5753" + }, + { + "id": "U5755Z1", + "name": "Třebsko", + "isMetro": false, + "latitude": 13.967898, + "longitude": 49.625259, + "stopId": "U5755" + }, + { + "id": "U5755Z2", + "name": "Třebsko", + "isMetro": false, + "latitude": 13.968166, + "longitude": 49.625366, + "stopId": "U5755" + }, + { + "id": "U575Z1", + "name": "Pod Třebešínem", + "isMetro": false, + "latitude": 14.485868, + "longitude": 50.080952, + "stopId": "U575" + }, + { + "id": "U575Z2", + "name": "Pod Třebešínem", + "isMetro": false, + "latitude": 14.485434, + "longitude": 50.081017, + "stopId": "U575" + }, + { + "id": "U5764Z1", + "name": "Veliš,bytovky", + "isMetro": false, + "latitude": 14.822692, + "longitude": 49.670948, + "stopId": "U5764" + }, + { + "id": "U5764Z2", + "name": "Veliš,bytovky", + "isMetro": false, + "latitude": 14.822728, + "longitude": 49.671005, + "stopId": "U5764" + }, + { + "id": "U5765Z1", + "name": "Veliš,Nespery", + "isMetro": false, + "latitude": 14.803538, + "longitude": 49.680866, + "stopId": "U5765" + }, + { + "id": "U5765Z2", + "name": "Veliš,Nespery", + "isMetro": false, + "latitude": 14.803619, + "longitude": 49.68087, + "stopId": "U5765" + }, + { + "id": "U5768Z1", + "name": "Věšín", + "isMetro": false, + "latitude": 13.824917, + "longitude": 49.615307, + "stopId": "U5768" + }, + { + "id": "U5768Z2", + "name": "Věšín", + "isMetro": false, + "latitude": 13.824783, + "longitude": 49.615177, + "stopId": "U5768" + }, + { + "id": "U576Z1", + "name": "Pod Vinicí", + "isMetro": false, + "latitude": 14.484084, + "longitude": 50.055618, + "stopId": "U576" + }, + { + "id": "U576Z2", + "name": "Pod Vinicí", + "isMetro": false, + "latitude": 14.483502, + "longitude": 50.055534, + "stopId": "U576" + }, + { + "id": "U5773Z1", + "name": "Višňová", + "isMetro": false, + "latitude": 14.1452, + "longitude": 49.704998, + "stopId": "U5773" + }, + { + "id": "U5773Z2", + "name": "Višňová", + "isMetro": false, + "latitude": 14.145299, + "longitude": 49.704773, + "stopId": "U5773" + }, + { + "id": "U5774Z1", + "name": "Višňová,Buda", + "isMetro": false, + "latitude": 14.147369, + "longitude": 49.692783, + "stopId": "U5774" + }, + { + "id": "U5774Z2", + "name": "Višňová,Buda", + "isMetro": false, + "latitude": 14.147568, + "longitude": 49.692852, + "stopId": "U5774" + }, + { + "id": "U5775Z1", + "name": "Višňová,Hlinovka", + "isMetro": false, + "latitude": 14.142912, + "longitude": 49.702297, + "stopId": "U5775" + }, + { + "id": "U5775Z2", + "name": "Višňová,Hlinovka", + "isMetro": false, + "latitude": 14.143123, + "longitude": 49.702286, + "stopId": "U5775" + }, + { + "id": "U5776Z1", + "name": "Višňová,rozc.", + "isMetro": false, + "latitude": 14.142686, + "longitude": 49.700363, + "stopId": "U5776" + }, + { + "id": "U5776Z2", + "name": "Višňová,rozc.", + "isMetro": false, + "latitude": 14.142846, + "longitude": 49.700249, + "stopId": "U5776" + }, + { + "id": "U5777Z1", + "name": "Vlašim,Budvar", + "isMetro": false, + "latitude": 14.899844, + "longitude": 49.70071, + "stopId": "U5777" + }, + { + "id": "U5777Z2", + "name": "Vlašim,Budvar", + "isMetro": false, + "latitude": 14.8995, + "longitude": 49.700798, + "stopId": "U5777" + }, + { + "id": "U5779Z1", + "name": "Vlašim,Sukova", + "isMetro": false, + "latitude": 14.893027, + "longitude": 49.700592, + "stopId": "U5779" + }, + { + "id": "U5779Z2", + "name": "Vlašim,Sukova", + "isMetro": false, + "latitude": 14.893542, + "longitude": 49.7005, + "stopId": "U5779" + }, + { + "id": "U5780Z1", + "name": "Vlašim,kolonie", + "isMetro": false, + "latitude": 14.90457, + "longitude": 49.696533, + "stopId": "U5780" + }, + { + "id": "U5780Z2", + "name": "Vlašim,kolonie", + "isMetro": false, + "latitude": 14.904497, + "longitude": 49.696598, + "stopId": "U5780" + }, + { + "id": "U5782Z1", + "name": "Vlašim,Navrátilova", + "isMetro": false, + "latitude": 14.895063, + "longitude": 49.696659, + "stopId": "U5782" + }, + { + "id": "U5782Z2", + "name": "Vlašim,Navrátilova", + "isMetro": false, + "latitude": 14.895214, + "longitude": 49.696754, + "stopId": "U5782" + }, + { + "id": "U5783Z1", + "name": "Vlašim,Navrátilova-školka", + "isMetro": false, + "latitude": 14.900517, + "longitude": 49.696445, + "stopId": "U5783" + }, + { + "id": "U5783Z2", + "name": "Vlašim,Navrátilova-školka", + "isMetro": false, + "latitude": 14.89947, + "longitude": 49.69656, + "stopId": "U5783" + }, + { + "id": "U5784Z1", + "name": "Vlašim,Obora", + "isMetro": false, + "latitude": 14.913241, + "longitude": 49.691357, + "stopId": "U5784" + }, + { + "id": "U5784Z2", + "name": "Vlašim,Obora", + "isMetro": false, + "latitude": 14.913099, + "longitude": 49.691647, + "stopId": "U5784" + }, + { + "id": "U5785Z1", + "name": "Vlašim,ZŠ Sídliště", + "isMetro": false, + "latitude": 14.89446, + "longitude": 49.711376, + "stopId": "U5785" + }, + { + "id": "U5785Z2", + "name": "Vlašim,ZŠ Sídliště", + "isMetro": false, + "latitude": 14.894418, + "longitude": 49.71146, + "stopId": "U5785" + }, + { + "id": "U5786Z1", + "name": "Vlašim,Politických vězňů", + "isMetro": false, + "latitude": 14.893735, + "longitude": 49.709957, + "stopId": "U5786" + }, + { + "id": "U5786Z2", + "name": "Vlašim,Politických vězňů", + "isMetro": false, + "latitude": 14.8938, + "longitude": 49.709789, + "stopId": "U5786" + }, + { + "id": "U5787Z1", + "name": "Vlašim,U Vorliny", + "isMetro": false, + "latitude": 14.891328, + "longitude": 49.699196, + "stopId": "U5787" + }, + { + "id": "U5787Z2", + "name": "Vlašim,U Vorliny", + "isMetro": false, + "latitude": 14.891408, + "longitude": 49.699211, + "stopId": "U5787" + }, + { + "id": "U5789Z1", + "name": "Vlašim,ZŠ Vorlina", + "isMetro": false, + "latitude": 14.8915, + "longitude": 49.696838, + "stopId": "U5789" + }, + { + "id": "U5789Z2", + "name": "Vlašim,ZŠ Vorlina", + "isMetro": false, + "latitude": 14.890933, + "longitude": 49.697754, + "stopId": "U5789" + }, + { + "id": "U578Z1", + "name": "Pod Zatáčkou", + "isMetro": false, + "latitude": 14.381543, + "longitude": 49.956039, + "stopId": "U578" + }, + { + "id": "U578Z2", + "name": "Pod Zatáčkou", + "isMetro": false, + "latitude": 14.381632, + "longitude": 49.955971, + "stopId": "U578" + }, + { + "id": "U5792Z1", + "name": "Vlašim,Šebíř", + "isMetro": false, + "latitude": 14.930848, + "longitude": 49.678246, + "stopId": "U5792" + }, + { + "id": "U5792Z2", + "name": "Vlašim,Šebíř", + "isMetro": false, + "latitude": 14.931014, + "longitude": 49.678211, + "stopId": "U5792" + }, + { + "id": "U5793Z1", + "name": "Vlašim,Bolinka", + "isMetro": false, + "latitude": 14.93725, + "longitude": 49.686733, + "stopId": "U5793" + }, + { + "id": "U5793Z2", + "name": "Vlašim,Bolinka", + "isMetro": false, + "latitude": 14.937206, + "longitude": 49.686848, + "stopId": "U5793" + }, + { + "id": "U5794Z1", + "name": "Vlašim,Bolinka-hájovna", + "isMetro": false, + "latitude": 14.929877, + "longitude": 49.687622, + "stopId": "U5794" + }, + { + "id": "U5794Z2", + "name": "Vlašim,Bolinka-hájovna", + "isMetro": false, + "latitude": 14.929684, + "longitude": 49.687756, + "stopId": "U5794" + }, + { + "id": "U5795Z1", + "name": "Vlašim,Březina", + "isMetro": false, + "latitude": 14.898896, + "longitude": 49.725853, + "stopId": "U5795" + }, + { + "id": "U5795Z2", + "name": "Vlašim,Březina", + "isMetro": false, + "latitude": 14.898786, + "longitude": 49.725864, + "stopId": "U5795" + }, + { + "id": "U5796Z1", + "name": "Vlašim,Domašín,brána", + "isMetro": false, + "latitude": 14.883243, + "longitude": 49.712563, + "stopId": "U5796" + }, + { + "id": "U5796Z2", + "name": "Vlašim,Domašín,brána", + "isMetro": false, + "latitude": 14.883243, + "longitude": 49.712742, + "stopId": "U5796" + }, + { + "id": "U5797Z1", + "name": "Vlašim,Domašín,kolonie", + "isMetro": false, + "latitude": 14.846765, + "longitude": 49.714916, + "stopId": "U5797" + }, + { + "id": "U5797Z2", + "name": "Vlašim,Domašín,kolonie", + "isMetro": false, + "latitude": 14.8468, + "longitude": 49.714985, + "stopId": "U5797" + }, + { + "id": "U5798Z1", + "name": "Vlašim,Domašín,nám.", + "isMetro": false, + "latitude": 14.877269, + "longitude": 49.713413, + "stopId": "U5798" + }, + { + "id": "U5798Z2", + "name": "Vlašim,Domašín,nám.", + "isMetro": false, + "latitude": 14.877264, + "longitude": 49.713539, + "stopId": "U5798" + }, + { + "id": "U5799Z1", + "name": "Vlašim,Domašín,u transformátoru", + "isMetro": false, + "latitude": 14.871146, + "longitude": 49.712955, + "stopId": "U5799" + }, + { + "id": "U5799Z2", + "name": "Vlašim,Domašín,u transformátoru", + "isMetro": false, + "latitude": 14.871219, + "longitude": 49.713017, + "stopId": "U5799" + }, + { + "id": "U579Z1", + "name": "Podbělohorská", + "isMetro": false, + "latitude": 14.373779, + "longitude": 50.075062, + "stopId": "U579" + }, + { + "id": "U579Z2", + "name": "Podbělohorská", + "isMetro": false, + "latitude": 14.373217, + "longitude": 50.075085, + "stopId": "U579" + }, + { + "id": "U579Z3", + "name": "Podbělohorská", + "isMetro": false, + "latitude": 14.372024, + "longitude": 50.075649, + "stopId": "U579" + }, + { + "id": "U579Z4", + "name": "Podbělohorská", + "isMetro": false, + "latitude": 14.3724, + "longitude": 50.0751, + "stopId": "U579" + }, + { + "id": "U57Z1", + "name": "Cementárna Radotín", + "isMetro": false, + "latitude": 14.342617, + "longitude": 49.99382, + "stopId": "U57" + }, + { + "id": "U57Z2", + "name": "Cementárna Radotín", + "isMetro": false, + "latitude": 14.342505, + "longitude": 49.994373, + "stopId": "U57" + }, + { + "id": "U5806Z1", + "name": "Vlašim,Skalkov", + "isMetro": false, + "latitude": 14.920368, + "longitude": 49.687012, + "stopId": "U5806" + }, + { + "id": "U5806Z2", + "name": "Vlašim,Skalkov", + "isMetro": false, + "latitude": 14.920462, + "longitude": 49.68708, + "stopId": "U5806" + }, + { + "id": "U580Z1", + "name": "Poštovka", + "isMetro": false, + "latitude": 14.3543, + "longitude": 50.06855, + "stopId": "U580" + }, + { + "id": "U580Z2", + "name": "Poštovka", + "isMetro": false, + "latitude": 14.353424, + "longitude": 50.068462, + "stopId": "U580" + }, + { + "id": "U5816Z1", + "name": "Vracovice", + "isMetro": false, + "latitude": 14.932325, + "longitude": 49.662636, + "stopId": "U5816" + }, + { + "id": "U5816Z2", + "name": "Vracovice", + "isMetro": false, + "latitude": 14.933027, + "longitude": 49.662464, + "stopId": "U5816" + }, + { + "id": "U5817Z1", + "name": "Vracovice,u hřiště", + "isMetro": false, + "latitude": 14.938408, + "longitude": 49.661957, + "stopId": "U5817" + }, + { + "id": "U5817Z2", + "name": "Vracovice,u hřiště", + "isMetro": false, + "latitude": 14.938395, + "longitude": 49.662037, + "stopId": "U5817" + }, + { + "id": "U5818Z1", + "name": "Vracovice,Malovidy", + "isMetro": false, + "latitude": 14.958655, + "longitude": 49.661819, + "stopId": "U5818" + }, + { + "id": "U5818Z2", + "name": "Vracovice,Malovidy", + "isMetro": false, + "latitude": 14.958664, + "longitude": 49.661903, + "stopId": "U5818" + }, + { + "id": "U5819Z1", + "name": "Vracovice,Malovidy,rozc.", + "isMetro": false, + "latitude": 14.961706, + "longitude": 49.662548, + "stopId": "U5819" + }, + { + "id": "U5819Z2", + "name": "Vracovice,Malovidy,rozc.", + "isMetro": false, + "latitude": 14.961674, + "longitude": 49.662472, + "stopId": "U5819" + }, + { + "id": "U581Z1", + "name": "Podhajská pole", + "isMetro": false, + "latitude": 14.430905, + "longitude": 50.130154, + "stopId": "U581" + }, + { + "id": "U581Z2", + "name": "Podhajská pole", + "isMetro": false, + "latitude": 14.430839, + "longitude": 50.12925, + "stopId": "U581" + }, + { + "id": "U5822Z1", + "name": "Vranov", + "isMetro": false, + "latitude": 14.775832, + "longitude": 49.852264, + "stopId": "U5822" + }, + { + "id": "U5822Z2", + "name": "Vranov", + "isMetro": false, + "latitude": 14.775693, + "longitude": 49.852329, + "stopId": "U5822" + }, + { + "id": "U5823Z1", + "name": "Vranov,Bezděkov,rozc.", + "isMetro": false, + "latitude": 14.765809, + "longitude": 49.854542, + "stopId": "U5823" + }, + { + "id": "U5823Z2", + "name": "Vranov,Bezděkov,rozc.", + "isMetro": false, + "latitude": 14.765925, + "longitude": 49.854496, + "stopId": "U5823" + }, + { + "id": "U5825Z1", + "name": "Vranov,Vranovská Lhota,u kovárny", + "isMetro": false, + "latitude": 14.761041, + "longitude": 49.84618, + "stopId": "U5825" + }, + { + "id": "U5825Z2", + "name": "Vranov,Vranovská Lhota,u kovárny", + "isMetro": false, + "latitude": 14.760916, + "longitude": 49.846172, + "stopId": "U5825" + }, + { + "id": "U5826Z1", + "name": "Vranovice", + "isMetro": false, + "latitude": 13.898616, + "longitude": 49.623367, + "stopId": "U5826" + }, + { + "id": "U5826Z2", + "name": "Vranovice", + "isMetro": false, + "latitude": 13.898377, + "longitude": 49.622284, + "stopId": "U5826" + }, + { + "id": "U5827Z1", + "name": "Vranovice,dvůr", + "isMetro": false, + "latitude": 13.902007, + "longitude": 49.634041, + "stopId": "U5827" + }, + { + "id": "U5827Z2", + "name": "Vranovice,dvůr", + "isMetro": false, + "latitude": 13.902146, + "longitude": 49.633911, + "stopId": "U5827" + }, + { + "id": "U5828Z1", + "name": "Sedlice,Hoděmyšl", + "isMetro": false, + "latitude": 13.889116, + "longitude": 49.611591, + "stopId": "U5828" + }, + { + "id": "U5828Z2", + "name": "Sedlice,Hoděmyšl", + "isMetro": false, + "latitude": 13.889138, + "longitude": 49.611401, + "stopId": "U5828" + }, + { + "id": "U582Z1", + "name": "Podhoří", + "isMetro": false, + "latitude": 14.400741, + "longitude": 50.122707, + "stopId": "U582" + }, + { + "id": "U582Z11", + "name": "Podhoří", + "isMetro": false, + "latitude": 14.397789, + "longitude": 50.12228, + "stopId": "U582" + }, + { + "id": "U582Z3", + "name": "Podhoří", + "isMetro": false, + "latitude": 14.400571, + "longitude": 50.12286, + "stopId": "U582" + }, + { + "id": "U5833Z1", + "name": "Všechlapy", + "isMetro": false, + "latitude": 14.914584, + "longitude": 49.777714, + "stopId": "U5833" + }, + { + "id": "U5833Z2", + "name": "Všechlapy", + "isMetro": false, + "latitude": 14.914563, + "longitude": 49.777622, + "stopId": "U5833" + }, + { + "id": "U5834Z1", + "name": "Všechlapy,Nový mlýn", + "isMetro": false, + "latitude": 14.924973, + "longitude": 49.764565, + "stopId": "U5834" + }, + { + "id": "U5834Z2", + "name": "Všechlapy,Nový mlýn", + "isMetro": false, + "latitude": 14.924924, + "longitude": 49.764599, + "stopId": "U5834" + }, + { + "id": "U5835Z1", + "name": "Všechlapy,Želivka", + "isMetro": false, + "latitude": 14.91813, + "longitude": 49.775173, + "stopId": "U5835" + }, + { + "id": "U5835Z2", + "name": "Všechlapy,Želivka", + "isMetro": false, + "latitude": 14.918013, + "longitude": 49.775146, + "stopId": "U5835" + }, + { + "id": "U5836Z1", + "name": "Vševily", + "isMetro": false, + "latitude": 13.882668, + "longitude": 49.565392, + "stopId": "U5836" + }, + { + "id": "U5836Z2", + "name": "Vševily", + "isMetro": false, + "latitude": 13.882361, + "longitude": 49.565369, + "stopId": "U5836" + }, + { + "id": "U5837Z1", + "name": "Vysoká u Příbramě", + "isMetro": false, + "latitude": 13.947891, + "longitude": 49.634384, + "stopId": "U5837" + }, + { + "id": "U5838Z1", + "name": "Vysoká u Příbramě,u kapličky", + "isMetro": false, + "latitude": 13.953722, + "longitude": 49.633881, + "stopId": "U5838" + }, + { + "id": "U5838Z2", + "name": "Vysoká u Příbramě,u kapličky", + "isMetro": false, + "latitude": 13.954013, + "longitude": 49.633888, + "stopId": "U5838" + }, + { + "id": "U5839Z1", + "name": "Vysoký Chlumec", + "isMetro": false, + "latitude": 14.388693, + "longitude": 49.618046, + "stopId": "U5839" + }, + { + "id": "U5839Z2", + "name": "Vysoký Chlumec", + "isMetro": false, + "latitude": 14.389709, + "longitude": 49.617725, + "stopId": "U5839" + }, + { + "id": "U583Z1", + "name": "Podolská vodárna", + "isMetro": false, + "latitude": 14.419362, + "longitude": 50.059887, + "stopId": "U583" + }, + { + "id": "U583Z2", + "name": "Podolská vodárna", + "isMetro": false, + "latitude": 14.41935, + "longitude": 50.058414, + "stopId": "U583" + }, + { + "id": "U583Z4", + "name": "Podolská vodárna", + "isMetro": false, + "latitude": 14.420616, + "longitude": 50.059147, + "stopId": "U583" + }, + { + "id": "U583Z5", + "name": "Podolská vodárna", + "isMetro": false, + "latitude": 14.420412, + "longitude": 50.058456, + "stopId": "U583" + }, + { + "id": "U5840Z1", + "name": "Vysoký Chlumec,pivovar", + "isMetro": false, + "latitude": 14.394508, + "longitude": 49.615463, + "stopId": "U5840" + }, + { + "id": "U5840Z2", + "name": "Vysoký Chlumec,pivovar", + "isMetro": false, + "latitude": 14.394535, + "longitude": 49.615406, + "stopId": "U5840" + }, + { + "id": "U5841Z1", + "name": "Vysoký Chlumec,Víska", + "isMetro": false, + "latitude": 14.385831, + "longitude": 49.612583, + "stopId": "U5841" + }, + { + "id": "U5841Z2", + "name": "Vysoký Chlumec,Víska", + "isMetro": false, + "latitude": 14.38631, + "longitude": 49.612736, + "stopId": "U5841" + }, + { + "id": "U5841Z3", + "name": "Vysoký Chlumec,Víska", + "isMetro": false, + "latitude": 14.385697, + "longitude": 49.612831, + "stopId": "U5841" + }, + { + "id": "U5845Z1", + "name": "Vysoký Chlumec,Bláhova Lhota", + "isMetro": false, + "latitude": 14.341881, + "longitude": 49.60508, + "stopId": "U5845" + }, + { + "id": "U5845Z2", + "name": "Vysoký Chlumec,Bláhova Lhota", + "isMetro": false, + "latitude": 14.341876, + "longitude": 49.605026, + "stopId": "U5845" + }, + { + "id": "U5848Z1", + "name": "Vysoký Chlumec,Pořešice", + "isMetro": false, + "latitude": 14.354908, + "longitude": 49.61153, + "stopId": "U5848" + }, + { + "id": "U5848Z2", + "name": "Vysoký Chlumec,Pořešice", + "isMetro": false, + "latitude": 14.354978, + "longitude": 49.611504, + "stopId": "U5848" + }, + { + "id": "U5849Z1", + "name": "Vysoký Chlumec,Vápenice", + "isMetro": false, + "latitude": 14.407056, + "longitude": 49.618584, + "stopId": "U5849" + }, + { + "id": "U5849Z2", + "name": "Vysoký Chlumec,Vápenice", + "isMetro": false, + "latitude": 14.406017, + "longitude": 49.618351, + "stopId": "U5849" + }, + { + "id": "U584Z1", + "name": "Dubečská", + "isMetro": false, + "latitude": 14.501875, + "longitude": 50.065495, + "stopId": "U584" + }, + { + "id": "U584Z2", + "name": "Dubečská", + "isMetro": false, + "latitude": 14.502828, + "longitude": 50.06522, + "stopId": "U584" + }, + { + "id": "U5850Z1", + "name": "Vysoký Chlumec,Pořešice,Zvěstovice", + "isMetro": false, + "latitude": 14.353025, + "longitude": 49.60331, + "stopId": "U5850" + }, + { + "id": "U5851Z1", + "name": "Xaverov", + "isMetro": false, + "latitude": 14.883573, + "longitude": 49.842754, + "stopId": "U5851" + }, + { + "id": "U5851Z2", + "name": "Xaverov", + "isMetro": false, + "latitude": 14.883463, + "longitude": 49.8428, + "stopId": "U5851" + }, + { + "id": "U5852Z1", + "name": "Xaverov,u hřbitova", + "isMetro": false, + "latitude": 14.883295, + "longitude": 49.846039, + "stopId": "U5852" + }, + { + "id": "U5852Z2", + "name": "Xaverov,u hřbitova", + "isMetro": false, + "latitude": 14.883179, + "longitude": 49.846081, + "stopId": "U5852" + }, + { + "id": "U585Z1", + "name": "Polygrafická", + "isMetro": false, + "latitude": 14.519439, + "longitude": 50.079716, + "stopId": "U585" + }, + { + "id": "U585Z2", + "name": "Polygrafická", + "isMetro": false, + "latitude": 14.519531, + "longitude": 50.080677, + "stopId": "U585" + }, + { + "id": "U5861Z1", + "name": "Kutná Hora,Žižkov,u hřbitova", + "isMetro": false, + "latitude": 15.260131, + "longitude": 49.955124, + "stopId": "U5861" + }, + { + "id": "U5861Z2", + "name": "Kutná Hora,Žižkov,u hřbitova", + "isMetro": false, + "latitude": 15.261571, + "longitude": 49.953262, + "stopId": "U5861" + }, + { + "id": "U5863Z1", + "name": "Zdislavice", + "isMetro": false, + "latitude": 14.975379, + "longitude": 49.686161, + "stopId": "U5863" + }, + { + "id": "U5866Z1", + "name": "Zduchovice", + "isMetro": false, + "latitude": 14.209321, + "longitude": 49.63866, + "stopId": "U5866" + }, + { + "id": "U5866Z2", + "name": "Zduchovice", + "isMetro": false, + "latitude": 14.209042, + "longitude": 49.638695, + "stopId": "U5866" + }, + { + "id": "U5868Z1", + "name": "Zruč n.Sáz.,Nesměřice", + "isMetro": false, + "latitude": 15.078315, + "longitude": 49.728416, + "stopId": "U5868" + }, + { + "id": "U5868Z2", + "name": "Zruč n.Sáz.,Nesměřice", + "isMetro": false, + "latitude": 15.078131, + "longitude": 49.728371, + "stopId": "U5868" + }, + { + "id": "U586Z1", + "name": "Olšanská", + "isMetro": false, + "latitude": 14.46454, + "longitude": 50.083424, + "stopId": "U586" + }, + { + "id": "U586Z2", + "name": "Olšanská", + "isMetro": false, + "latitude": 14.465398, + "longitude": 50.083477, + "stopId": "U586" + }, + { + "id": "U5870Z1", + "name": "Županovice", + "isMetro": false, + "latitude": 14.298495, + "longitude": 49.706902, + "stopId": "U5870" + }, + { + "id": "U5873Z1", + "name": "Horčápsko,Hráze", + "isMetro": false, + "latitude": 13.976176, + "longitude": 49.581726, + "stopId": "U5873" + }, + { + "id": "U5873Z2", + "name": "Horčápsko,Hráze", + "isMetro": false, + "latitude": 13.976304, + "longitude": 49.581837, + "stopId": "U5873" + }, + { + "id": "U5876Z1", + "name": "Kamýk n.Vlt.,hřiště", + "isMetro": false, + "latitude": 14.252145, + "longitude": 49.646839, + "stopId": "U5876" + }, + { + "id": "U5876Z2", + "name": "Kamýk n.Vlt.,hřiště", + "isMetro": false, + "latitude": 14.252271, + "longitude": 49.646828, + "stopId": "U5876" + }, + { + "id": "U5879Z1", + "name": "Vysoký Chlumec,Vápenice,u sloupu", + "isMetro": false, + "latitude": 14.415082, + "longitude": 49.616886, + "stopId": "U5879" + }, + { + "id": "U5879Z2", + "name": "Vysoký Chlumec,Vápenice,u sloupu", + "isMetro": false, + "latitude": 14.415192, + "longitude": 49.616825, + "stopId": "U5879" + }, + { + "id": "U587Z1", + "name": "Ohradské náměstí", + "isMetro": false, + "latitude": 14.335455, + "longitude": 50.037334, + "stopId": "U587" + }, + { + "id": "U5882Z1", + "name": "Benešov,Křižíkova", + "isMetro": false, + "latitude": 14.678179, + "longitude": 49.770245, + "stopId": "U5882" + }, + { + "id": "U5882Z2", + "name": "Benešov,Křižíkova", + "isMetro": false, + "latitude": 14.678245, + "longitude": 49.770218, + "stopId": "U5882" + }, + { + "id": "U5887Z1", + "name": "Loket u Čechtic,Brzotice,rozc.I", + "isMetro": false, + "latitude": 15.128173, + "longitude": 49.660866, + "stopId": "U5887" + }, + { + "id": "U5887Z2", + "name": "Loket u Čechtic,Brzotice,rozc.I", + "isMetro": false, + "latitude": 15.128139, + "longitude": 49.661072, + "stopId": "U5887" + }, + { + "id": "U5888Z1", + "name": "Vlašim,Městský úřad", + "isMetro": false, + "latitude": 14.897637, + "longitude": 49.703449, + "stopId": "U5888" + }, + { + "id": "U5888Z2", + "name": "Vlašim,Městský úřad", + "isMetro": false, + "latitude": 14.897562, + "longitude": 49.703281, + "stopId": "U5888" + }, + { + "id": "U5889Z1", + "name": "Bernartice,SSÚD", + "isMetro": false, + "latitude": 15.118914, + "longitude": 49.675076, + "stopId": "U5889" + }, + { + "id": "U5889Z2", + "name": "Bernartice,SSÚD", + "isMetro": false, + "latitude": 15.118799, + "longitude": 49.675152, + "stopId": "U5889" + }, + { + "id": "U588Z1", + "name": "Povltavská", + "isMetro": false, + "latitude": 14.433817, + "longitude": 50.116077, + "stopId": "U588" + }, + { + "id": "U5893Z1", + "name": "Loket u Čechtic,motorest", + "isMetro": false, + "latitude": 15.123858, + "longitude": 49.658741, + "stopId": "U5893" + }, + { + "id": "U5897Z1", + "name": "Čáslav,Hudební škola", + "isMetro": false, + "latitude": 15.396661, + "longitude": 49.906723, + "stopId": "U5897" + }, + { + "id": "U5897Z2", + "name": "Čáslav,Hudební škola", + "isMetro": false, + "latitude": 15.396459, + "longitude": 49.907021, + "stopId": "U5897" + }, + { + "id": "U5898Z1", + "name": "Benešov,Penny Market", + "isMetro": false, + "latitude": 14.694228, + "longitude": 49.786949, + "stopId": "U5898" + }, + { + "id": "U5898Z2", + "name": "Benešov,Penny Market", + "isMetro": false, + "latitude": 14.696209, + "longitude": 49.787548, + "stopId": "U5898" + }, + { + "id": "U589Z1", + "name": "Kavčí hory", + "isMetro": false, + "latitude": 14.429542, + "longitude": 50.048981, + "stopId": "U589" + }, + { + "id": "U589Z2", + "name": "Kavčí hory", + "isMetro": false, + "latitude": 14.428434, + "longitude": 50.049782, + "stopId": "U589" + }, + { + "id": "U589Z3", + "name": "Kavčí hory", + "isMetro": false, + "latitude": 14.42923, + "longitude": 50.049347, + "stopId": "U589" + }, + { + "id": "U589Z4", + "name": "Kavčí hory", + "isMetro": false, + "latitude": 14.428554, + "longitude": 50.049992, + "stopId": "U589" + }, + { + "id": "U58Z1", + "name": "Nádraží Cibulka", + "isMetro": false, + "latitude": 14.363, + "longitude": 50.065582, + "stopId": "U58" + }, + { + "id": "U58Z2", + "name": "Nádraží Cibulka", + "isMetro": false, + "latitude": 14.363738, + "longitude": 50.065483, + "stopId": "U58" + }, + { + "id": "U5900Z1", + "name": "Třebešice", + "isMetro": false, + "latitude": 14.830594, + "longitude": 49.777721, + "stopId": "U5900" + }, + { + "id": "U5902Z1", + "name": "Postupice,Benešovská", + "isMetro": false, + "latitude": 14.780084, + "longitude": 49.730026, + "stopId": "U5902" + }, + { + "id": "U5902Z2", + "name": "Postupice,Benešovská", + "isMetro": false, + "latitude": 14.780028, + "longitude": 49.730087, + "stopId": "U5902" + }, + { + "id": "U5903Z1", + "name": "Sedlčany,Oříkov,rozc.", + "isMetro": false, + "latitude": 14.379274, + "longitude": 49.651524, + "stopId": "U5903" + }, + { + "id": "U5904Z1", + "name": "Trhový Štěpánov,na potoce", + "isMetro": false, + "latitude": 15.035842, + "longitude": 49.720032, + "stopId": "U5904" + }, + { + "id": "U5904Z2", + "name": "Trhový Štěpánov,na potoce", + "isMetro": false, + "latitude": 15.035779, + "longitude": 49.720146, + "stopId": "U5904" + }, + { + "id": "U5909Z1", + "name": "Svaté Pole,u kostela", + "isMetro": false, + "latitude": 14.168917, + "longitude": 49.751675, + "stopId": "U5909" + }, + { + "id": "U5909Z2", + "name": "Svaté Pole,u kostela", + "isMetro": false, + "latitude": 14.168711, + "longitude": 49.752037, + "stopId": "U5909" + }, + { + "id": "U590Z1", + "name": "Prašná", + "isMetro": false, + "latitude": 14.520884, + "longitude": 50.035, + "stopId": "U590" + }, + { + "id": "U5913Z1", + "name": "Kutná Hora,Malín,Mincovní", + "isMetro": false, + "latitude": 15.304208, + "longitude": 49.96677, + "stopId": "U5913" + }, + { + "id": "U5914Z1", + "name": "Milovice,Sluneční vrch", + "isMetro": false, + "latitude": 14.857409, + "longitude": 50.229454, + "stopId": "U5914" + }, + { + "id": "U5914Z2", + "name": "Milovice,Sluneční vrch", + "isMetro": false, + "latitude": 14.856867, + "longitude": 50.229351, + "stopId": "U5914" + }, + { + "id": "U5918Z1", + "name": "Bohostice,sídliště", + "isMetro": false, + "latitude": 14.137776, + "longitude": 49.602089, + "stopId": "U5918" + }, + { + "id": "U591Z1", + "name": "Pod Krocínkou", + "isMetro": false, + "latitude": 14.512401, + "longitude": 50.114002, + "stopId": "U591" + }, + { + "id": "U591Z2", + "name": "Pod Krocínkou", + "isMetro": false, + "latitude": 14.511283, + "longitude": 50.114014, + "stopId": "U591" + }, + { + "id": "U5920Z1", + "name": "Divišov,Vrcha", + "isMetro": false, + "latitude": 14.882884, + "longitude": 49.793808, + "stopId": "U5920" + }, + { + "id": "U5920Z2", + "name": "Divišov,Vrcha", + "isMetro": false, + "latitude": 14.882932, + "longitude": 49.793983, + "stopId": "U5920" + }, + { + "id": "U5922Z1", + "name": "Rožmitál p.Tř.,Pňovice,bytovky", + "isMetro": false, + "latitude": 13.909746, + "longitude": 49.591373, + "stopId": "U5922" + }, + { + "id": "U5923Z1", + "name": "Nýrská", + "isMetro": false, + "latitude": 14.332507, + "longitude": 49.977303, + "stopId": "U5923" + }, + { + "id": "U5928Z1", + "name": "Sluštice", + "isMetro": false, + "latitude": 14.684434, + "longitude": 50.036884, + "stopId": "U5928" + }, + { + "id": "U5928Z2", + "name": "Sluštice", + "isMetro": false, + "latitude": 14.685002, + "longitude": 50.036926, + "stopId": "U5928" + }, + { + "id": "U592Z1", + "name": "Prašný most", + "isMetro": false, + "latitude": 14.396276, + "longitude": 50.09491, + "stopId": "U592" + }, + { + "id": "U592Z2", + "name": "Prašný most", + "isMetro": false, + "latitude": 14.393871, + "longitude": 50.09473, + "stopId": "U592" + }, + { + "id": "U5931Z1", + "name": "Jílové u Prahy,Za Humny", + "isMetro": false, + "latitude": 14.494782, + "longitude": 49.90189, + "stopId": "U5931" + }, + { + "id": "U5931Z2", + "name": "Jílové u Prahy,Za Humny", + "isMetro": false, + "latitude": 14.495743, + "longitude": 49.902496, + "stopId": "U5931" + }, + { + "id": "U5934Z1", + "name": "Kutná Hora,Sedlec,Nad Sady", + "isMetro": false, + "latitude": 15.284163, + "longitude": 49.961975, + "stopId": "U5934" + }, + { + "id": "U5934Z2", + "name": "Kutná Hora,Sedlec,Nad Sady", + "isMetro": false, + "latitude": 15.284052, + "longitude": 49.962589, + "stopId": "U5934" + }, + { + "id": "U5935Z301", + "name": "Řečany nad Labem", + "isMetro": false, + "latitude": 15.478498, + "longitude": 50.031754, + "stopId": "U5935" + }, + { + "id": "U5937Z1", + "name": "Benešov,Vlašimská", + "isMetro": false, + "latitude": 14.705656, + "longitude": 49.780148, + "stopId": "U5937" + }, + { + "id": "U5937Z2", + "name": "Benešov,Vlašimská", + "isMetro": false, + "latitude": 14.705367, + "longitude": 49.78027, + "stopId": "U5937" + }, + { + "id": "U5939Z1", + "name": "Lysá n.L.,Litol,Husova", + "isMetro": false, + "latitude": 14.84921, + "longitude": 50.187962, + "stopId": "U5939" + }, + { + "id": "U5939Z2", + "name": "Lysá n.L.,Litol,Husova", + "isMetro": false, + "latitude": 14.849091, + "longitude": 50.188427, + "stopId": "U5939" + }, + { + "id": "U593Z1", + "name": "Právnická fakulta", + "isMetro": false, + "latitude": 14.417862, + "longitude": 50.091705, + "stopId": "U593" + }, + { + "id": "U593Z2", + "name": "Právnická fakulta", + "isMetro": false, + "latitude": 14.417603, + "longitude": 50.091251, + "stopId": "U593" + }, + { + "id": "U5942Z1", + "name": "Příbram,Nový rybník", + "isMetro": false, + "latitude": 14.003893, + "longitude": 49.678009, + "stopId": "U5942" + }, + { + "id": "U5942Z2", + "name": "Příbram,Nový rybník", + "isMetro": false, + "latitude": 14.004027, + "longitude": 49.677937, + "stopId": "U5942" + }, + { + "id": "U5943Z1", + "name": "Nelahozeves,Lešany,dolní resort", + "isMetro": false, + "latitude": 14.292095, + "longitude": 50.257633, + "stopId": "U5943" + }, + { + "id": "U5943Z2", + "name": "Nelahozeves,Lešany,dolní resort", + "isMetro": false, + "latitude": 14.291505, + "longitude": 50.257446, + "stopId": "U5943" + }, + { + "id": "U5945Z1", + "name": "Cítov,Mělnická", + "isMetro": false, + "latitude": 14.406785, + "longitude": 50.370094, + "stopId": "U5945" + }, + { + "id": "U5945Z2", + "name": "Cítov,Mělnická", + "isMetro": false, + "latitude": 14.408026, + "longitude": 50.369644, + "stopId": "U5945" + }, + { + "id": "U5947Z1", + "name": "Ferrariho", + "isMetro": false, + "latitude": 14.30453, + "longitude": 50.041313, + "stopId": "U5947" + }, + { + "id": "U5947Z2", + "name": "Ferrariho", + "isMetro": false, + "latitude": 14.304943, + "longitude": 50.042076, + "stopId": "U5947" + }, + { + "id": "U5948Z1", + "name": "Jinočany,Logport vodojem", + "isMetro": false, + "latitude": 14.279939, + "longitude": 50.031174, + "stopId": "U5948" + }, + { + "id": "U5948Z2", + "name": "Jinočany,Logport", + "isMetro": false, + "latitude": 14.276343, + "longitude": 50.033154, + "stopId": "U5948" + }, + { + "id": "U5948Z3", + "name": "Jinočany,Logport", + "isMetro": false, + "latitude": 14.276252, + "longitude": 50.033127, + "stopId": "U5948" + }, + { + "id": "U5948Z4", + "name": "Jinočany,Logport vodojem", + "isMetro": false, + "latitude": 14.279111, + "longitude": 50.031494, + "stopId": "U5948" + }, + { + "id": "U5953Z1", + "name": "Hostomice,Radouš,u křížku", + "isMetro": false, + "latitude": 14.021392, + "longitude": 49.837631, + "stopId": "U5953" + }, + { + "id": "U5953Z2", + "name": "Hostomice,Radouš,u křížku", + "isMetro": false, + "latitude": 14.021344, + "longitude": 49.837502, + "stopId": "U5953" + }, + { + "id": "U5954Z1", + "name": "Doubravčice,Na Čtvrtích", + "isMetro": false, + "latitude": 14.783813, + "longitude": 50.022526, + "stopId": "U5954" + }, + { + "id": "U5954Z2", + "name": "Doubravčice,Na Čtvrtích", + "isMetro": false, + "latitude": 14.783044, + "longitude": 50.022152, + "stopId": "U5954" + }, + { + "id": "U5956Z1", + "name": "Votice,koupaliště", + "isMetro": false, + "latitude": 14.630722, + "longitude": 49.637058, + "stopId": "U5956" + }, + { + "id": "U5956Z2", + "name": "Votice,koupaliště", + "isMetro": false, + "latitude": 14.630556, + "longitude": 49.636971, + "stopId": "U5956" + }, + { + "id": "U5957Z1", + "name": "Sedlec-Prčice,Sušetice,U Šiků", + "isMetro": false, + "latitude": 14.496172, + "longitude": 49.557041, + "stopId": "U5957" + }, + { + "id": "U5957Z2", + "name": "Sedlec-Prčice,Sušetice,U Šiků", + "isMetro": false, + "latitude": 14.496292, + "longitude": 49.556992, + "stopId": "U5957" + }, + { + "id": "U5958Z1", + "name": "Věšín,na drahách", + "isMetro": false, + "latitude": 13.817533, + "longitude": 49.616337, + "stopId": "U5958" + }, + { + "id": "U5958Z2", + "name": "Věšín,na drahách", + "isMetro": false, + "latitude": 13.816649, + "longitude": 49.616283, + "stopId": "U5958" + }, + { + "id": "U5959Z1", + "name": "Věšín,ozdravovna Brdy", + "isMetro": false, + "latitude": 13.790923, + "longitude": 49.619095, + "stopId": "U5959" + }, + { + "id": "U5959Z2", + "name": "Věšín,ozdravovna Brdy", + "isMetro": false, + "latitude": 13.791315, + "longitude": 49.618946, + "stopId": "U5959" + }, + { + "id": "U595Z1", + "name": "Holešovická tržnice", + "isMetro": false, + "latitude": 14.444301, + "longitude": 50.098339, + "stopId": "U595" + }, + { + "id": "U595Z2", + "name": "Holešovická tržnice", + "isMetro": false, + "latitude": 14.445042, + "longitude": 50.098236, + "stopId": "U595" + }, + { + "id": "U5960Z1", + "name": "Věšín,Teslíny", + "isMetro": false, + "latitude": 13.755722, + "longitude": 49.622665, + "stopId": "U5960" + }, + { + "id": "U5960Z2", + "name": "Věšín,Teslíny", + "isMetro": false, + "latitude": 13.75671, + "longitude": 49.62254, + "stopId": "U5960" + }, + { + "id": "U5961Z1", + "name": "Stehelčeves,obchodní centrum", + "isMetro": false, + "latitude": 14.199923, + "longitude": 50.167618, + "stopId": "U5961" + }, + { + "id": "U5961Z2", + "name": "Stehelčeves,obchodní centrum", + "isMetro": false, + "latitude": 14.199923, + "longitude": 50.167618, + "stopId": "U5961" + }, + { + "id": "U5964Z1", + "name": "Jirny,LE&CO", + "isMetro": false, + "latitude": 14.680215, + "longitude": 50.121571, + "stopId": "U5964" + }, + { + "id": "U5968Z1", + "name": "Bělá p.Bezd.,Táborová", + "isMetro": false, + "latitude": 14.802044, + "longitude": 50.505966, + "stopId": "U5968" + }, + { + "id": "U596Z1", + "name": "Obchodní centrum Hostivař", + "isMetro": false, + "latitude": 14.519171, + "longitude": 50.053852, + "stopId": "U596" + }, + { + "id": "U596Z2", + "name": "Obchodní centrum Hostivař", + "isMetro": false, + "latitude": 14.518919, + "longitude": 50.053871, + "stopId": "U596" + }, + { + "id": "U596Z3", + "name": "Obchodní centrum Hostivař", + "isMetro": false, + "latitude": 14.51945, + "longitude": 50.053829, + "stopId": "U596" + }, + { + "id": "U596Z4", + "name": "Obchodní centrum Hostivař", + "isMetro": false, + "latitude": 14.519537, + "longitude": 50.053478, + "stopId": "U596" + }, + { + "id": "U597Z1", + "name": "Pražského povstání", + "isMetro": false, + "latitude": 14.434529, + "longitude": 50.056541, + "stopId": "U597" + }, + { + "id": "U597Z101", + "name": "Pražského povstání", + "isMetro": true, + "latitude": 14.433429, + "longitude": 50.056868, + "stopId": "U597" + }, + { + "id": "U597Z102", + "name": "Pražského povstání", + "isMetro": true, + "latitude": 14.433293, + "longitude": 50.05679, + "stopId": "U597" + }, + { + "id": "U597Z2", + "name": "Pražského povstání", + "isMetro": false, + "latitude": 14.434892, + "longitude": 50.056072, + "stopId": "U597" + }, + { + "id": "U597Z3", + "name": "Pražského povstání", + "isMetro": false, + "latitude": 14.434167, + "longitude": 50.055801, + "stopId": "U597" + }, + { + "id": "U597Z4", + "name": "Pražského povstání", + "isMetro": false, + "latitude": 14.433869, + "longitude": 50.055264, + "stopId": "U597" + }, + { + "id": "U597Z5", + "name": "Pražského povstání", + "isMetro": false, + "latitude": 14.435549, + "longitude": 50.055443, + "stopId": "U597" + }, + { + "id": "U597Z7", + "name": "Pražského povstání", + "isMetro": false, + "latitude": 14.433917, + "longitude": 50.057335, + "stopId": "U597" + }, + { + "id": "U597Z9", + "name": "Pražského povstání", + "isMetro": false, + "latitude": 14.434437, + "longitude": 50.055378, + "stopId": "U597" + }, + { + "id": "U598Z1", + "name": "Pražský hrad", + "isMetro": false, + "latitude": 14.397963, + "longitude": 50.093315, + "stopId": "U598" + }, + { + "id": "U598Z2", + "name": "Pražský hrad", + "isMetro": false, + "latitude": 14.398507, + "longitude": 50.093334, + "stopId": "U598" + }, + { + "id": "U599Z1", + "name": "Na Hroudě", + "isMetro": false, + "latitude": 14.4887, + "longitude": 50.070507, + "stopId": "U599" + }, + { + "id": "U599Z2", + "name": "Na Hroudě", + "isMetro": false, + "latitude": 14.489271, + "longitude": 50.07, + "stopId": "U599" + }, + { + "id": "U59Z1", + "name": "Cikánka", + "isMetro": false, + "latitude": 14.322583, + "longitude": 49.997482, + "stopId": "U59" + }, + { + "id": "U59Z2", + "name": "Cikánka", + "isMetro": false, + "latitude": 14.322667, + "longitude": 49.997417, + "stopId": "U59" + }, + { + "id": "U6001Z1", + "name": "Dercsenyiho", + "isMetro": false, + "latitude": 14.579908, + "longitude": 50.092247, + "stopId": "U6001" + }, + { + "id": "U6001Z2", + "name": "Dercsenyiho", + "isMetro": false, + "latitude": 14.579997, + "longitude": 50.092197, + "stopId": "U6001" + }, + { + "id": "U6004Z1", + "name": "Na Svěcence", + "isMetro": false, + "latitude": 14.611837, + "longitude": 50.100632, + "stopId": "U6004" + }, + { + "id": "U6004Z2", + "name": "Na Svěcence", + "isMetro": false, + "latitude": 14.611732, + "longitude": 50.101315, + "stopId": "U6004" + }, + { + "id": "U6005Z1", + "name": "Chodovická", + "isMetro": false, + "latitude": 14.617727, + "longitude": 50.112598, + "stopId": "U6005" + }, + { + "id": "U6005Z2", + "name": "Chodovická", + "isMetro": false, + "latitude": 14.61762, + "longitude": 50.112633, + "stopId": "U6005" + }, + { + "id": "U6006Z1", + "name": "Pavlišovská", + "isMetro": false, + "latitude": 14.622429, + "longitude": 50.111294, + "stopId": "U6006" + }, + { + "id": "U6006Z2", + "name": "Pavlišovská", + "isMetro": false, + "latitude": 14.62254, + "longitude": 50.111393, + "stopId": "U6006" + }, + { + "id": "U600Z1", + "name": "Přeštínská", + "isMetro": false, + "latitude": 14.377459, + "longitude": 49.993217, + "stopId": "U600" + }, + { + "id": "U600Z2", + "name": "Přeštínská", + "isMetro": false, + "latitude": 14.376942, + "longitude": 49.993378, + "stopId": "U600" + }, + { + "id": "U600Z3", + "name": "Přeštínská", + "isMetro": false, + "latitude": 14.37556, + "longitude": 49.9944, + "stopId": "U600" + }, + { + "id": "U600Z4", + "name": "Přeštínská", + "isMetro": false, + "latitude": 14.375287, + "longitude": 49.993938, + "stopId": "U600" + }, + { + "id": "U6010Z1", + "name": "Sídliště Černý Most", + "isMetro": false, + "latitude": 14.582933, + "longitude": 50.102135, + "stopId": "U6010" + }, + { + "id": "U6010Z2", + "name": "Sídliště Černý Most", + "isMetro": false, + "latitude": 14.582698, + "longitude": 50.102215, + "stopId": "U6010" + }, + { + "id": "U6018Z1", + "name": "Kolín,poliklinika", + "isMetro": false, + "latitude": 15.208496, + "longitude": 50.024757, + "stopId": "U6018" + }, + { + "id": "U6019Z1", + "name": "Kamenice,Štiřín,U Rybníka", + "isMetro": false, + "latitude": 14.595715, + "longitude": 49.917027, + "stopId": "U6019" + }, + { + "id": "U6019Z2", + "name": "Kamenice,Štiřín,U Rybníka", + "isMetro": false, + "latitude": 14.593678, + "longitude": 49.91713, + "stopId": "U6019" + }, + { + "id": "U601Z1", + "name": "Roztyly", + "isMetro": false, + "latitude": 14.478843, + "longitude": 50.037525, + "stopId": "U601" + }, + { + "id": "U601Z101", + "name": "Roztyly", + "isMetro": true, + "latitude": 14.476783, + "longitude": 50.037723, + "stopId": "U601" + }, + { + "id": "U601Z102", + "name": "Roztyly", + "isMetro": true, + "latitude": 14.47671, + "longitude": 50.03763, + "stopId": "U601" + }, + { + "id": "U601Z2", + "name": "Roztyly", + "isMetro": false, + "latitude": 14.478539, + "longitude": 50.037716, + "stopId": "U601" + }, + { + "id": "U601Z21", + "name": "Roztyly", + "isMetro": false, + "latitude": 14.477356, + "longitude": 50.037895, + "stopId": "U601" + }, + { + "id": "U601Z3", + "name": "Roztyly", + "isMetro": false, + "latitude": 14.477759, + "longitude": 50.037498, + "stopId": "U601" + }, + { + "id": "U6022Z1", + "name": "Kácov,Jirsíkova", + "isMetro": false, + "latitude": 15.020884, + "longitude": 49.778072, + "stopId": "U6022" + }, + { + "id": "U6022Z2", + "name": "Kácov,Jirsíkova", + "isMetro": false, + "latitude": 15.02077, + "longitude": 49.778175, + "stopId": "U6022" + }, + { + "id": "U6023Z1", + "name": "Kácov,nám.", + "isMetro": false, + "latitude": 15.029059, + "longitude": 49.779995, + "stopId": "U6023" + }, + { + "id": "U6023Z2", + "name": "Kácov,nám.", + "isMetro": false, + "latitude": 15.028927, + "longitude": 49.779858, + "stopId": "U6023" + }, + { + "id": "U6024Z1", + "name": "Uhlířské Janovice,škola", + "isMetro": false, + "latitude": 15.06163, + "longitude": 49.879368, + "stopId": "U6024" + }, + { + "id": "U6025Z1", + "name": "Tichonice,rozc.", + "isMetro": false, + "latitude": 14.993571, + "longitude": 49.771877, + "stopId": "U6025" + }, + { + "id": "U6025Z2", + "name": "Tichonice,rozc.", + "isMetro": false, + "latitude": 14.993558, + "longitude": 49.771931, + "stopId": "U6025" + }, + { + "id": "U6026Z1", + "name": "Tichonice,Licoměrsko", + "isMetro": false, + "latitude": 14.977374, + "longitude": 49.764805, + "stopId": "U6026" + }, + { + "id": "U6026Z2", + "name": "Tichonice,Licoměrsko", + "isMetro": false, + "latitude": 14.977215, + "longitude": 49.764801, + "stopId": "U6026" + }, + { + "id": "U6027Z1", + "name": "Psáře,Lipina", + "isMetro": false, + "latitude": 14.97708, + "longitude": 49.755497, + "stopId": "U6027" + }, + { + "id": "U6027Z2", + "name": "Psáře,Lipina", + "isMetro": false, + "latitude": 14.976954, + "longitude": 49.755516, + "stopId": "U6027" + }, + { + "id": "U6028Z1", + "name": "Psáře,Veselka", + "isMetro": false, + "latitude": 14.973795, + "longitude": 49.751129, + "stopId": "U6028" + }, + { + "id": "U6029Z1", + "name": "Tehov,rozc.Nemíž", + "isMetro": false, + "latitude": 14.965593, + "longitude": 49.742817, + "stopId": "U6029" + }, + { + "id": "U6029Z2", + "name": "Tehov,rozc.Nemíž", + "isMetro": false, + "latitude": 14.96544, + "longitude": 49.742832, + "stopId": "U6029" + }, + { + "id": "U602Z1", + "name": "Nové Butovice", + "isMetro": false, + "latitude": 14.353251, + "longitude": 50.051144, + "stopId": "U602" + }, + { + "id": "U602Z101", + "name": "Nové Butovice", + "isMetro": true, + "latitude": 14.352178, + "longitude": 50.050907, + "stopId": "U602" + }, + { + "id": "U602Z102", + "name": "Nové Butovice", + "isMetro": true, + "latitude": 14.352194, + "longitude": 50.050792, + "stopId": "U602" + }, + { + "id": "U602Z4", + "name": "Nové Butovice", + "isMetro": false, + "latitude": 14.351531, + "longitude": 50.051357, + "stopId": "U602" + }, + { + "id": "U602Z5", + "name": "Nové Butovice", + "isMetro": false, + "latitude": 14.35146, + "longitude": 50.050529, + "stopId": "U602" + }, + { + "id": "U602Z7", + "name": "Nové Butovice", + "isMetro": false, + "latitude": 14.352916, + "longitude": 50.051205, + "stopId": "U602" + }, + { + "id": "U6030Z1", + "name": "Tehov,náves", + "isMetro": false, + "latitude": 14.967084, + "longitude": 49.734913, + "stopId": "U6030" + }, + { + "id": "U6030Z2", + "name": "Tehov,náves", + "isMetro": false, + "latitude": 14.966844, + "longitude": 49.734837, + "stopId": "U6030" + }, + { + "id": "U6031Z1", + "name": "Tehov,háj.rozc.", + "isMetro": false, + "latitude": 14.970762, + "longitude": 49.724384, + "stopId": "U6031" + }, + { + "id": "U6031Z2", + "name": "Tehov,háj.rozc.", + "isMetro": false, + "latitude": 14.970616, + "longitude": 49.724659, + "stopId": "U6031" + }, + { + "id": "U6032Z1", + "name": "Tehov,Kostelík", + "isMetro": false, + "latitude": 14.967758, + "longitude": 49.71962, + "stopId": "U6032" + }, + { + "id": "U6032Z2", + "name": "Tehov,Kostelík", + "isMetro": false, + "latitude": 14.967817, + "longitude": 49.71973, + "stopId": "U6032" + }, + { + "id": "U6034Z1", + "name": "Kladruby,rehab.ústav", + "isMetro": false, + "latitude": 14.961053, + "longitude": 49.720119, + "stopId": "U6034" + }, + { + "id": "U6034Z2", + "name": "Kladruby,rehab.ústav", + "isMetro": false, + "latitude": 14.960326, + "longitude": 49.720219, + "stopId": "U6034" + }, + { + "id": "U6035Z1", + "name": "Kladruby,rozc.", + "isMetro": false, + "latitude": 14.95392, + "longitude": 49.72142, + "stopId": "U6035" + }, + { + "id": "U6035Z2", + "name": "Kladruby,rozc.", + "isMetro": false, + "latitude": 14.954007, + "longitude": 49.72147, + "stopId": "U6035" + }, + { + "id": "U6036Z1", + "name": "Kladruby", + "isMetro": false, + "latitude": 14.94912, + "longitude": 49.721809, + "stopId": "U6036" + }, + { + "id": "U6036Z2", + "name": "Kladruby", + "isMetro": false, + "latitude": 14.94902, + "longitude": 49.721813, + "stopId": "U6036" + }, + { + "id": "U6037Z1", + "name": "Pavlovice,rozc.", + "isMetro": false, + "latitude": 14.929446, + "longitude": 49.714554, + "stopId": "U6037" + }, + { + "id": "U6037Z2", + "name": "Pavlovice,rozc.", + "isMetro": false, + "latitude": 14.929258, + "longitude": 49.714542, + "stopId": "U6037" + }, + { + "id": "U6038Z1", + "name": "Pavlovice", + "isMetro": false, + "latitude": 14.935676, + "longitude": 49.715675, + "stopId": "U6038" + }, + { + "id": "U6038Z2", + "name": "Pavlovice", + "isMetro": false, + "latitude": 14.935557, + "longitude": 49.715797, + "stopId": "U6038" + }, + { + "id": "U6039Z1", + "name": "Vlašim,hřbitov", + "isMetro": false, + "latitude": 14.912669, + "longitude": 49.713688, + "stopId": "U6039" + }, + { + "id": "U603Z1", + "name": "Prosek", + "isMetro": false, + "latitude": 14.500463, + "longitude": 50.119041, + "stopId": "U603" + }, + { + "id": "U603Z101", + "name": "Prosek", + "isMetro": true, + "latitude": 14.498528, + "longitude": 50.119274, + "stopId": "U603" + }, + { + "id": "U603Z102", + "name": "Prosek", + "isMetro": true, + "latitude": 14.49859, + "longitude": 50.119299, + "stopId": "U603" + }, + { + "id": "U603Z2", + "name": "Prosek", + "isMetro": false, + "latitude": 14.499786, + "longitude": 50.118954, + "stopId": "U603" + }, + { + "id": "U603Z3", + "name": "Prosek", + "isMetro": false, + "latitude": 14.497655, + "longitude": 50.119701, + "stopId": "U603" + }, + { + "id": "U603Z4", + "name": "Prosek", + "isMetro": false, + "latitude": 14.498258, + "longitude": 50.118858, + "stopId": "U603" + }, + { + "id": "U603Z5", + "name": "Prosek", + "isMetro": false, + "latitude": 14.495886, + "longitude": 50.119576, + "stopId": "U603" + }, + { + "id": "U603Z6", + "name": "Prosek", + "isMetro": false, + "latitude": 14.496508, + "longitude": 50.119667, + "stopId": "U603" + }, + { + "id": "U6042Z1", + "name": "Vlašim,Spořilov", + "isMetro": false, + "latitude": 14.901133, + "longitude": 49.709896, + "stopId": "U6042" + }, + { + "id": "U6042Z2", + "name": "Vlašim,Spořilov", + "isMetro": false, + "latitude": 14.900703, + "longitude": 49.709717, + "stopId": "U6042" + }, + { + "id": "U6042Z3", + "name": "Vlašim,rest.U kozla", + "isMetro": false, + "latitude": 14.899613, + "longitude": 49.709316, + "stopId": "U6042" + }, + { + "id": "U6042Z4", + "name": "Vlašim,rest.U kozla", + "isMetro": false, + "latitude": 14.900875, + "longitude": 49.707985, + "stopId": "U6042" + }, + { + "id": "U6043Z1", + "name": "Vlašim,obchodní centrum", + "isMetro": false, + "latitude": 14.904713, + "longitude": 49.701283, + "stopId": "U6043" + }, + { + "id": "U6043Z2", + "name": "Vlašim,obchodní centrum", + "isMetro": false, + "latitude": 14.904757, + "longitude": 49.699738, + "stopId": "U6043" + }, + { + "id": "U604Z1", + "name": "Hněvkovského", + "isMetro": false, + "latitude": 14.518587, + "longitude": 50.032269, + "stopId": "U604" + }, + { + "id": "U604Z2", + "name": "Hněvkovského", + "isMetro": false, + "latitude": 14.517997, + "longitude": 50.032406, + "stopId": "U604" + }, + { + "id": "U6052Z1", + "name": "Úžice,Čekanov", + "isMetro": false, + "latitude": 14.950229, + "longitude": 49.881756, + "stopId": "U6052" + }, + { + "id": "U6052Z2", + "name": "Úžice,Čekanov", + "isMetro": false, + "latitude": 14.950295, + "longitude": 49.881725, + "stopId": "U6052" + }, + { + "id": "U6056Z1", + "name": "Jirny,Luční", + "isMetro": false, + "latitude": 14.702731, + "longitude": 50.110764, + "stopId": "U6056" + }, + { + "id": "U6056Z2", + "name": "Jirny,Luční", + "isMetro": false, + "latitude": 14.7029, + "longitude": 50.11097, + "stopId": "U6056" + }, + { + "id": "U605Z1", + "name": "Průběžná", + "isMetro": false, + "latitude": 14.485649, + "longitude": 50.071434, + "stopId": "U605" + }, + { + "id": "U605Z2", + "name": "Průběžná", + "isMetro": false, + "latitude": 14.486572, + "longitude": 50.071594, + "stopId": "U605" + }, + { + "id": "U605Z3", + "name": "Průběžná", + "isMetro": false, + "latitude": 14.486501, + "longitude": 50.071712, + "stopId": "U605" + }, + { + "id": "U605Z4", + "name": "Průběžná", + "isMetro": false, + "latitude": 14.486016, + "longitude": 50.07135, + "stopId": "U605" + }, + { + "id": "U6060Z1", + "name": "Želízy", + "isMetro": false, + "latitude": 14.464145, + "longitude": 50.422626, + "stopId": "U6060" + }, + { + "id": "U6060Z2", + "name": "Želízy", + "isMetro": false, + "latitude": 14.463967, + "longitude": 50.422577, + "stopId": "U6060" + }, + { + "id": "U606Z1", + "name": "Letňanská", + "isMetro": false, + "latitude": 14.507057, + "longitude": 50.122456, + "stopId": "U606" + }, + { + "id": "U606Z2", + "name": "Letňanská", + "isMetro": false, + "latitude": 14.50825, + "longitude": 50.123486, + "stopId": "U606" + }, + { + "id": "U606Z5", + "name": "Letňanská", + "isMetro": false, + "latitude": 14.506701, + "longitude": 50.123055, + "stopId": "U606" + }, + { + "id": "U6070Z1", + "name": "Tupadly", + "isMetro": false, + "latitude": 14.474644, + "longitude": 50.442024, + "stopId": "U6070" + }, + { + "id": "U6070Z2", + "name": "Tupadly", + "isMetro": false, + "latitude": 14.474266, + "longitude": 50.442589, + "stopId": "U6070" + }, + { + "id": "U6072Z1", + "name": "Medonosy,Chudolazy,mlýn", + "isMetro": false, + "latitude": 14.473714, + "longitude": 50.467197, + "stopId": "U6072" + }, + { + "id": "U6072Z2", + "name": "Medonosy,Chudolazy,mlýn", + "isMetro": false, + "latitude": 14.473605, + "longitude": 50.467091, + "stopId": "U6072" + }, + { + "id": "U6073Z1", + "name": "Medonosy,Chudolazy", + "isMetro": false, + "latitude": 14.476466, + "longitude": 50.474644, + "stopId": "U6073" + }, + { + "id": "U6073Z2", + "name": "Medonosy,Chudolazy", + "isMetro": false, + "latitude": 14.476491, + "longitude": 50.474731, + "stopId": "U6073" + }, + { + "id": "U6077Z1", + "name": "Medonosy,Osinaličky", + "isMetro": false, + "latitude": 14.485096, + "longitude": 50.487766, + "stopId": "U6077" + }, + { + "id": "U6077Z2", + "name": "Medonosy,Osinaličky", + "isMetro": false, + "latitude": 14.485038, + "longitude": 50.487652, + "stopId": "U6077" + }, + { + "id": "U6078Z1", + "name": "Medonosy", + "isMetro": false, + "latitude": 14.486917, + "longitude": 50.494095, + "stopId": "U6078" + }, + { + "id": "U6078Z2", + "name": "Medonosy", + "isMetro": false, + "latitude": 14.486667, + "longitude": 50.493797, + "stopId": "U6078" + }, + { + "id": "U607Z1", + "name": "Zámky", + "isMetro": false, + "latitude": 14.395817, + "longitude": 50.137432, + "stopId": "U607" + }, + { + "id": "U607Z11", + "name": "Zámky", + "isMetro": false, + "latitude": 14.393662, + "longitude": 50.135654, + "stopId": "U607" + }, + { + "id": "U607Z2", + "name": "Zámky", + "isMetro": false, + "latitude": 14.395657, + "longitude": 50.137218, + "stopId": "U607" + }, + { + "id": "U6089Z1", + "name": "Střemy,Štampach", + "isMetro": false, + "latitude": 14.556867, + "longitude": 50.396889, + "stopId": "U6089" + }, + { + "id": "U6089Z2", + "name": "Střemy,Štampach", + "isMetro": false, + "latitude": 14.556867, + "longitude": 50.396889, + "stopId": "U6089" + }, + { + "id": "U608Z1", + "name": "Prvomájová", + "isMetro": false, + "latitude": 14.357117, + "longitude": 49.985065, + "stopId": "U608" + }, + { + "id": "U608Z2", + "name": "Prvomájová", + "isMetro": false, + "latitude": 14.35715, + "longitude": 49.985935, + "stopId": "U608" + }, + { + "id": "U6091Z1", + "name": "Vysoká,Harasov", + "isMetro": false, + "latitude": 14.570887, + "longitude": 50.410561, + "stopId": "U6091" + }, + { + "id": "U6091Z2", + "name": "Vysoká,Harasov", + "isMetro": false, + "latitude": 14.570611, + "longitude": 50.410843, + "stopId": "U6091" + }, + { + "id": "U6092Z1", + "name": "Kokořín,Kokořínský Důl,Harakoko", + "isMetro": false, + "latitude": 14.576567, + "longitude": 50.418358, + "stopId": "U6092" + }, + { + "id": "U6092Z2", + "name": "Kokořín,Kokořínský Důl,Harakoko", + "isMetro": false, + "latitude": 14.576612, + "longitude": 50.418327, + "stopId": "U6092" + }, + { + "id": "U6093Z1", + "name": "Kokořín,Kokořínský Důl,U Grobiána", + "isMetro": false, + "latitude": 14.579987, + "longitude": 50.42783, + "stopId": "U6093" + }, + { + "id": "U6093Z2", + "name": "Kokořín,Kokořínský Důl,U Grobiána", + "isMetro": false, + "latitude": 14.579287, + "longitude": 50.427601, + "stopId": "U6093" + }, + { + "id": "U6094Z1", + "name": "Kokořín,Kokořínský Důl,Rapín", + "isMetro": false, + "latitude": 14.58263, + "longitude": 50.432518, + "stopId": "U6094" + }, + { + "id": "U6094Z2", + "name": "Kokořín,Kokořínský Důl,Rapín", + "isMetro": false, + "latitude": 14.58263, + "longitude": 50.432518, + "stopId": "U6094" + }, + { + "id": "U6095Z1", + "name": "Kokořín,Kokořínský Důl,Podhradí", + "isMetro": false, + "latitude": 14.580666, + "longitude": 50.440113, + "stopId": "U6095" + }, + { + "id": "U6095Z2", + "name": "Kokořín,Kokořínský Důl,Podhradí", + "isMetro": false, + "latitude": 14.580649, + "longitude": 50.440098, + "stopId": "U6095" + }, + { + "id": "U6096Z1", + "name": "Kokořín,Kokořínský Důl,Pokličky", + "isMetro": false, + "latitude": 14.586426, + "longitude": 50.45462, + "stopId": "U6096" + }, + { + "id": "U6096Z2", + "name": "Kokořín,Kokořínský Důl,Pokličky", + "isMetro": false, + "latitude": 14.586426, + "longitude": 50.45462, + "stopId": "U6096" + }, + { + "id": "U6097Z1", + "name": "Mšeno,Vojtěchov", + "isMetro": false, + "latitude": 14.601757, + "longitude": 50.462509, + "stopId": "U6097" + }, + { + "id": "U6097Z2", + "name": "Mšeno,Vojtěchov", + "isMetro": false, + "latitude": 14.601757, + "longitude": 50.462509, + "stopId": "U6097" + }, + { + "id": "U6098Z1", + "name": "Mšeno,Ráj", + "isMetro": false, + "latitude": 14.61471, + "longitude": 50.463894, + "stopId": "U6098" + }, + { + "id": "U6098Z2", + "name": "Mšeno,Ráj", + "isMetro": false, + "latitude": 14.614847, + "longitude": 50.463989, + "stopId": "U6098" + }, + { + "id": "U6099Z1", + "name": "Mšeno,Romanov,Na Rovinách", + "isMetro": false, + "latitude": 14.622424, + "longitude": 50.451984, + "stopId": "U6099" + }, + { + "id": "U6099Z2", + "name": "Mšeno,Romanov,Na Rovinách", + "isMetro": false, + "latitude": 14.622424, + "longitude": 50.451984, + "stopId": "U6099" + }, + { + "id": "U609Z1", + "name": "Přední Kopanina", + "isMetro": false, + "latitude": 14.298817, + "longitude": 50.116817, + "stopId": "U609" + }, + { + "id": "U609Z2", + "name": "Přední Kopanina", + "isMetro": false, + "latitude": 14.298583, + "longitude": 50.116669, + "stopId": "U609" + }, + { + "id": "U609Z3", + "name": "Přední Kopanina", + "isMetro": false, + "latitude": 14.29742, + "longitude": 50.117722, + "stopId": "U609" + }, + { + "id": "U609Z4", + "name": "Přední Kopanina", + "isMetro": false, + "latitude": 14.297533, + "longitude": 50.117538, + "stopId": "U609" + }, + { + "id": "U60Z1", + "name": "Cílkova", + "isMetro": false, + "latitude": 14.443467, + "longitude": 50.016449, + "stopId": "U60" + }, + { + "id": "U60Z2", + "name": "Cílkova", + "isMetro": false, + "latitude": 14.443151, + "longitude": 50.016552, + "stopId": "U60" + }, + { + "id": "U6100Z1", + "name": "Mšeno,Romanov", + "isMetro": false, + "latitude": 14.626755, + "longitude": 50.449245, + "stopId": "U6100" + }, + { + "id": "U6100Z2", + "name": "Mšeno,Romanov", + "isMetro": false, + "latitude": 14.626755, + "longitude": 50.449245, + "stopId": "U6100" + }, + { + "id": "U6101Z1", + "name": "Mšeno,Podolec", + "isMetro": false, + "latitude": 14.635131, + "longitude": 50.441246, + "stopId": "U6101" + }, + { + "id": "U6101Z2", + "name": "Mšeno,Podolec", + "isMetro": false, + "latitude": 14.635088, + "longitude": 50.441067, + "stopId": "U6101" + }, + { + "id": "U6103Z1", + "name": "Benátky n.Jiz.,Obodř", + "isMetro": false, + "latitude": 14.818394, + "longitude": 50.288269, + "stopId": "U6103" + }, + { + "id": "U6103Z2", + "name": "Benátky n.Jiz.,Obodř", + "isMetro": false, + "latitude": 14.818339, + "longitude": 50.288319, + "stopId": "U6103" + }, + { + "id": "U6104Z1", + "name": "Benátky n.Jiz.,rozc.Sedlec", + "isMetro": false, + "latitude": 14.790773, + "longitude": 50.293327, + "stopId": "U6104" + }, + { + "id": "U6104Z2", + "name": "Benátky n.Jiz.,rozc.Sedlec", + "isMetro": false, + "latitude": 14.789674, + "longitude": 50.293079, + "stopId": "U6104" + }, + { + "id": "U6105Z1", + "name": "Kochánky,V Kateřinkách", + "isMetro": false, + "latitude": 14.785971, + "longitude": 50.278622, + "stopId": "U6105" + }, + { + "id": "U6105Z2", + "name": "Kochánky,V Kateřinkách", + "isMetro": false, + "latitude": 14.785557, + "longitude": 50.278503, + "stopId": "U6105" + }, + { + "id": "U6106Z1", + "name": "Benátky n.Jiz.,Soumarova", + "isMetro": false, + "latitude": 14.823982, + "longitude": 50.288887, + "stopId": "U6106" + }, + { + "id": "U6106Z2", + "name": "Benátky n.Jiz.,Soumarova", + "isMetro": false, + "latitude": 14.823951, + "longitude": 50.288933, + "stopId": "U6106" + }, + { + "id": "U6107Z1", + "name": "Předměřice n.Jiz.,Kačov", + "isMetro": false, + "latitude": 14.778367, + "longitude": 50.268799, + "stopId": "U6107" + }, + { + "id": "U6107Z2", + "name": "Předměřice n.Jiz.,Kačov", + "isMetro": false, + "latitude": 14.778309, + "longitude": 50.268845, + "stopId": "U6107" + }, + { + "id": "U610Z1", + "name": "Obora Hvězda", + "isMetro": false, + "latitude": 14.341566, + "longitude": 50.07827, + "stopId": "U610" + }, + { + "id": "U610Z2", + "name": "Obora Hvězda", + "isMetro": false, + "latitude": 14.340642, + "longitude": 50.078106, + "stopId": "U610" + }, + { + "id": "U610Z3", + "name": "Obora Hvězda", + "isMetro": false, + "latitude": 14.341573, + "longitude": 50.078495, + "stopId": "U610" + }, + { + "id": "U610Z4", + "name": "Obora Hvězda", + "isMetro": false, + "latitude": 14.342613, + "longitude": 50.078392, + "stopId": "U610" + }, + { + "id": "U610Z6", + "name": "Obora Hvězda", + "isMetro": false, + "latitude": 14.342257, + "longitude": 50.078308, + "stopId": "U610" + }, + { + "id": "U6111Z1", + "name": "Svojetín,ObÚ", + "isMetro": false, + "latitude": 13.621778, + "longitude": 50.190403, + "stopId": "U6111" + }, + { + "id": "U6111Z2", + "name": "Svojetín,ObÚ", + "isMetro": false, + "latitude": 13.62173, + "longitude": 50.190216, + "stopId": "U6111" + }, + { + "id": "U6112Z1", + "name": "Kochánky", + "isMetro": false, + "latitude": 14.779992, + "longitude": 50.276722, + "stopId": "U6112" + }, + { + "id": "U6112Z2", + "name": "Kochánky", + "isMetro": false, + "latitude": 14.779795, + "longitude": 50.276684, + "stopId": "U6112" + }, + { + "id": "U6114Z1", + "name": "Střemy", + "isMetro": false, + "latitude": 14.564965, + "longitude": 50.383831, + "stopId": "U6114" + }, + { + "id": "U6114Z2", + "name": "Střemy", + "isMetro": false, + "latitude": 14.564795, + "longitude": 50.38385, + "stopId": "U6114" + }, + { + "id": "U6115Z1", + "name": "Střemy,Jenichov", + "isMetro": false, + "latitude": 14.586528, + "longitude": 50.377117, + "stopId": "U6115" + }, + { + "id": "U6115Z2", + "name": "Střemy,Jenichov", + "isMetro": false, + "latitude": 14.586531, + "longitude": 50.37698, + "stopId": "U6115" + }, + { + "id": "U6116Z1", + "name": "Nebužely", + "isMetro": false, + "latitude": 14.591409, + "longitude": 50.389828, + "stopId": "U6116" + }, + { + "id": "U6116Z2", + "name": "Nebužely", + "isMetro": false, + "latitude": 14.591451, + "longitude": 50.390274, + "stopId": "U6116" + }, + { + "id": "U6117Z1", + "name": "Nebužely,u hřbitova", + "isMetro": false, + "latitude": 14.599351, + "longitude": 50.391426, + "stopId": "U6117" + }, + { + "id": "U6117Z2", + "name": "Nebužely,u hřbitova", + "isMetro": false, + "latitude": 14.599351, + "longitude": 50.391426, + "stopId": "U6117" + }, + { + "id": "U6118Z1", + "name": "Řepín,Živonín", + "isMetro": false, + "latitude": 14.634002, + "longitude": 50.379639, + "stopId": "U6118" + }, + { + "id": "U6118Z2", + "name": "Řepín,Živonín", + "isMetro": false, + "latitude": 14.634081, + "longitude": 50.379738, + "stopId": "U6118" + }, + { + "id": "U6119Z1", + "name": "Řepín,u dvora", + "isMetro": false, + "latitude": 14.631932, + "longitude": 50.37228, + "stopId": "U6119" + }, + { + "id": "U6119Z2", + "name": "Řepín,u dvora", + "isMetro": false, + "latitude": 14.631932, + "longitude": 50.37228, + "stopId": "U6119" + }, + { + "id": "U611Z1", + "name": "Kunratická škola", + "isMetro": false, + "latitude": 14.482844, + "longitude": 50.013367, + "stopId": "U611" + }, + { + "id": "U611Z2", + "name": "Kunratická škola", + "isMetro": false, + "latitude": 14.480426, + "longitude": 50.013283, + "stopId": "U611" + }, + { + "id": "U6120Z1", + "name": "Řepín", + "isMetro": false, + "latitude": 14.632037, + "longitude": 50.367245, + "stopId": "U6120" + }, + { + "id": "U6120Z2", + "name": "Řepín", + "isMetro": false, + "latitude": 14.632037, + "longitude": 50.367245, + "stopId": "U6120" + }, + { + "id": "U612Z1", + "name": "Sídliště Řepy", + "isMetro": false, + "latitude": 14.298904, + "longitude": 50.065144, + "stopId": "U612" + }, + { + "id": "U612Z12", + "name": "Sídliště Řepy", + "isMetro": false, + "latitude": 14.298032, + "longitude": 50.065437, + "stopId": "U612" + }, + { + "id": "U612Z2", + "name": "Sídliště Řepy", + "isMetro": false, + "latitude": 14.298059, + "longitude": 50.065472, + "stopId": "U612" + }, + { + "id": "U612Z3", + "name": "Sídliště Řepy", + "isMetro": false, + "latitude": 14.298885, + "longitude": 50.065174, + "stopId": "U612" + }, + { + "id": "U612Z301", + "name": "Praha-Zličín", + "isMetro": false, + "latitude": 14.297819, + "longitude": 50.064144, + "stopId": "U612" + }, + { + "id": "U612Z4", + "name": "Sídliště Řepy", + "isMetro": false, + "latitude": 14.298201, + "longitude": 50.065533, + "stopId": "U612" + }, + { + "id": "U612Z41", + "name": "Sídliště Řepy", + "isMetro": false, + "latitude": 14.2971, + "longitude": 50.064983, + "stopId": "U612" + }, + { + "id": "U612Z5", + "name": "Sídliště Řepy", + "isMetro": false, + "latitude": 14.298984, + "longitude": 50.065102, + "stopId": "U612" + }, + { + "id": "U6139Z1", + "name": "Katusice", + "isMetro": false, + "latitude": 14.777529, + "longitude": 50.445972, + "stopId": "U6139" + }, + { + "id": "U6139Z2", + "name": "Katusice", + "isMetro": false, + "latitude": 14.777789, + "longitude": 50.446079, + "stopId": "U6139" + }, + { + "id": "U613Z1", + "name": "Přírodní", + "isMetro": false, + "latitude": 14.452817, + "longitude": 50.013134, + "stopId": "U613" + }, + { + "id": "U613Z2", + "name": "Přírodní", + "isMetro": false, + "latitude": 14.452845, + "longitude": 50.013451, + "stopId": "U613" + }, + { + "id": "U6143Z1", + "name": "Nebužely,Kroužek", + "isMetro": false, + "latitude": 14.567698, + "longitude": 50.404278, + "stopId": "U6143" + }, + { + "id": "U6143Z2", + "name": "Nebužely,Kroužek", + "isMetro": false, + "latitude": 14.567622, + "longitude": 50.404247, + "stopId": "U6143" + }, + { + "id": "U6147Z1", + "name": "Doksy", + "isMetro": false, + "latitude": 14.048289, + "longitude": 50.11866, + "stopId": "U6147" + }, + { + "id": "U6147Z2", + "name": "Doksy", + "isMetro": false, + "latitude": 14.048421, + "longitude": 50.118713, + "stopId": "U6147" + }, + { + "id": "U6148Z1", + "name": "Ruda,sv.Alžběta", + "isMetro": false, + "latitude": 13.868264, + "longitude": 50.09153, + "stopId": "U6148" + }, + { + "id": "U6148Z2", + "name": "Ruda,sv.Alžběta", + "isMetro": false, + "latitude": 13.868264, + "longitude": 50.09153, + "stopId": "U6148" + }, + { + "id": "U6149Z1", + "name": "Lišany,u sokolovny", + "isMetro": false, + "latitude": 13.749361, + "longitude": 50.145084, + "stopId": "U6149" + }, + { + "id": "U6149Z2", + "name": "Lišany,u sokolovny", + "isMetro": false, + "latitude": 13.749396, + "longitude": 50.145142, + "stopId": "U6149" + }, + { + "id": "U614Z1", + "name": "Přístaviště", + "isMetro": false, + "latitude": 14.409638, + "longitude": 50.040314, + "stopId": "U614" + }, + { + "id": "U614Z2", + "name": "Přístaviště", + "isMetro": false, + "latitude": 14.409231, + "longitude": 50.039738, + "stopId": "U614" + }, + { + "id": "U614Z3", + "name": "Přístaviště", + "isMetro": false, + "latitude": 14.409484, + "longitude": 50.039383, + "stopId": "U614" + }, + { + "id": "U614Z4", + "name": "Přístaviště", + "isMetro": false, + "latitude": 14.410382, + "longitude": 50.039791, + "stopId": "U614" + }, + { + "id": "U6154Z1", + "name": "Lubná,u hřbitova", + "isMetro": false, + "latitude": 13.70168, + "longitude": 50.075043, + "stopId": "U6154" + }, + { + "id": "U6154Z2", + "name": "Lubná,u hřbitova", + "isMetro": false, + "latitude": 13.701572, + "longitude": 50.075138, + "stopId": "U6154" + }, + { + "id": "U6155Z1", + "name": "Dlouhá Lhota,U Křížku", + "isMetro": false, + "latitude": 14.126973, + "longitude": 49.724274, + "stopId": "U6155" + }, + { + "id": "U6155Z2", + "name": "Dlouhá Lhota,U Křížku", + "isMetro": false, + "latitude": 14.127451, + "longitude": 49.72448, + "stopId": "U6155" + }, + { + "id": "U6156Z2", + "name": "Strančice,rozc.Sklenka", + "isMetro": false, + "latitude": 14.6316, + "longitude": 49.951809, + "stopId": "U6156" + }, + { + "id": "U6157Z1", + "name": "Plužná", + "isMetro": false, + "latitude": 14.805104, + "longitude": 50.474472, + "stopId": "U6157" + }, + { + "id": "U6157Z2", + "name": "Plužná", + "isMetro": false, + "latitude": 14.805016, + "longitude": 50.474586, + "stopId": "U6157" + }, + { + "id": "U615Z1", + "name": "Přívorská", + "isMetro": false, + "latitude": 14.43619, + "longitude": 50.136124, + "stopId": "U615" + }, + { + "id": "U615Z2", + "name": "Přívorská", + "isMetro": false, + "latitude": 14.436567, + "longitude": 50.136036, + "stopId": "U615" + }, + { + "id": "U6160Z1", + "name": "Bělá p.Bezd.,Na Výsluní", + "isMetro": false, + "latitude": 14.827998, + "longitude": 50.493275, + "stopId": "U6160" + }, + { + "id": "U6160Z2", + "name": "Bělá p.Bezd.,Na Výsluní", + "isMetro": false, + "latitude": 14.8299, + "longitude": 50.493122, + "stopId": "U6160" + }, + { + "id": "U6161Z1", + "name": "Bělá p.Bezd.,u továrny", + "isMetro": false, + "latitude": 14.821164, + "longitude": 50.495514, + "stopId": "U6161" + }, + { + "id": "U6161Z2", + "name": "Bělá p.Bezd.,u továrny", + "isMetro": false, + "latitude": 14.819681, + "longitude": 50.496277, + "stopId": "U6161" + }, + { + "id": "U6162Z2", + "name": "Bělá p.Bezd.,u koníčka", + "isMetro": false, + "latitude": 14.811357, + "longitude": 50.500195, + "stopId": "U6162" + }, + { + "id": "U6162Z51", + "name": "Bělá p.Bezd.,u koníčka", + "isMetro": false, + "latitude": 14.811196, + "longitude": 50.500389, + "stopId": "U6162" + }, + { + "id": "U6163Z1", + "name": "Bělá p.Bezd.,nám.", + "isMetro": false, + "latitude": 14.802573, + "longitude": 50.501205, + "stopId": "U6163" + }, + { + "id": "U6163Z4", + "name": "Bělá p.Bezd.,nám.", + "isMetro": false, + "latitude": 14.80318, + "longitude": 50.501083, + "stopId": "U6163" + }, + { + "id": "U6164Z1", + "name": "Bělá p.Bezd.,u kapličky", + "isMetro": false, + "latitude": 14.79494, + "longitude": 50.505424, + "stopId": "U6164" + }, + { + "id": "U6164Z2", + "name": "Bělá p.Bezd.,u kapličky", + "isMetro": false, + "latitude": 14.795332, + "longitude": 50.505108, + "stopId": "U6164" + }, + { + "id": "U6165Z1", + "name": "Bělá p.Bezd.,Atmos", + "isMetro": false, + "latitude": 14.790164, + "longitude": 50.507465, + "stopId": "U6165" + }, + { + "id": "U6165Z2", + "name": "Bělá p.Bezd.,Atmos", + "isMetro": false, + "latitude": 14.790094, + "longitude": 50.507378, + "stopId": "U6165" + }, + { + "id": "U616Z1", + "name": "Radhošťská", + "isMetro": false, + "latitude": 14.457279, + "longitude": 50.077652, + "stopId": "U616" + }, + { + "id": "U616Z2", + "name": "Radhošťská", + "isMetro": false, + "latitude": 14.457685, + "longitude": 50.077614, + "stopId": "U616" + }, + { + "id": "U6172Z1", + "name": "Mladá Boleslav,Nový hřbitov", + "isMetro": false, + "latitude": 14.918777, + "longitude": 50.425617, + "stopId": "U6172" + }, + { + "id": "U6172Z2", + "name": "Mladá Boleslav,Nový hřbitov", + "isMetro": false, + "latitude": 14.918391, + "longitude": 50.425385, + "stopId": "U6172" + }, + { + "id": "U6175Z1", + "name": "Mladá Boleslav,Pod Skalou", + "isMetro": false, + "latitude": 14.900602, + "longitude": 50.421886, + "stopId": "U6175" + }, + { + "id": "U6175Z2", + "name": "Mladá Boleslav,Pod Skalou", + "isMetro": false, + "latitude": 14.900536, + "longitude": 50.421627, + "stopId": "U6175" + }, + { + "id": "U6176Z1", + "name": "Mladá Boleslav,rozc.Podlázky 0.5", + "isMetro": false, + "latitude": 14.897351, + "longitude": 50.431122, + "stopId": "U6176" + }, + { + "id": "U6176Z2", + "name": "Mladá Boleslav,rozc.Podlázky 0.5", + "isMetro": false, + "latitude": 14.896917, + "longitude": 50.431541, + "stopId": "U6176" + }, + { + "id": "U6177Z1", + "name": "Mladá Boleslav,Debř,hl.sil.", + "isMetro": false, + "latitude": 14.889852, + "longitude": 50.44025, + "stopId": "U6177" + }, + { + "id": "U6177Z2", + "name": "Mladá Boleslav,Debř,hl.sil.", + "isMetro": false, + "latitude": 14.889939, + "longitude": 50.439743, + "stopId": "U6177" + }, + { + "id": "U6182Z1", + "name": "Dobrovice,Úherce", + "isMetro": false, + "latitude": 14.987927, + "longitude": 50.369156, + "stopId": "U6182" + }, + { + "id": "U6182Z2", + "name": "Dobrovice,Úherce", + "isMetro": false, + "latitude": 14.987948, + "longitude": 50.369198, + "stopId": "U6182" + }, + { + "id": "U6183Z1", + "name": "Semčice", + "isMetro": false, + "latitude": 15.005488, + "longitude": 50.369755, + "stopId": "U6183" + }, + { + "id": "U6183Z2", + "name": "Semčice", + "isMetro": false, + "latitude": 15.005439, + "longitude": 50.369881, + "stopId": "U6183" + }, + { + "id": "U6184Z1", + "name": "Žerčice", + "isMetro": false, + "latitude": 15.034753, + "longitude": 50.37109, + "stopId": "U6184" + }, + { + "id": "U6184Z2", + "name": "Žerčice", + "isMetro": false, + "latitude": 15.034634, + "longitude": 50.371197, + "stopId": "U6184" + }, + { + "id": "U6185Z1", + "name": "Žerčice,pod Kobylnicí", + "isMetro": false, + "latitude": 15.048652, + "longitude": 50.367558, + "stopId": "U6185" + }, + { + "id": "U6185Z2", + "name": "Žerčice,pod Kobylnicí", + "isMetro": false, + "latitude": 15.048708, + "longitude": 50.367599, + "stopId": "U6185" + }, + { + "id": "U6187Z1", + "name": "Ledce", + "isMetro": false, + "latitude": 15.08454, + "longitude": 50.353626, + "stopId": "U6187" + }, + { + "id": "U6187Z2", + "name": "Ledce", + "isMetro": false, + "latitude": 15.084457, + "longitude": 50.353695, + "stopId": "U6187" + }, + { + "id": "U6188Z1", + "name": "Prodašice", + "isMetro": false, + "latitude": 15.116663, + "longitude": 50.349998, + "stopId": "U6188" + }, + { + "id": "U6189Z1", + "name": "Prodašice,křižovatka", + "isMetro": false, + "latitude": 15.114701, + "longitude": 50.348648, + "stopId": "U6189" + }, + { + "id": "U6189Z2", + "name": "Prodašice,křižovatka", + "isMetro": false, + "latitude": 15.114791, + "longitude": 50.348618, + "stopId": "U6189" + }, + { + "id": "U618Z1", + "name": "Radošovická", + "isMetro": false, + "latitude": 14.496042, + "longitude": 50.06694, + "stopId": "U618" + }, + { + "id": "U618Z2", + "name": "Radošovická", + "isMetro": false, + "latitude": 14.496798, + "longitude": 50.066639, + "stopId": "U618" + }, + { + "id": "U618Z3", + "name": "Radošovická", + "isMetro": false, + "latitude": 14.494868, + "longitude": 50.06694, + "stopId": "U618" + }, + { + "id": "U6195Z1", + "name": "Čistá,hlavní silnice", + "isMetro": false, + "latitude": 14.86003, + "longitude": 50.474468, + "stopId": "U6195" + }, + { + "id": "U6195Z2", + "name": "Čistá,hlavní silnice", + "isMetro": false, + "latitude": 14.859978, + "longitude": 50.474194, + "stopId": "U6195" + }, + { + "id": "U6196Z1", + "name": "Čistá,Stránka", + "isMetro": false, + "latitude": 14.851382, + "longitude": 50.473896, + "stopId": "U6196" + }, + { + "id": "U6196Z2", + "name": "Čistá,Stránka", + "isMetro": false, + "latitude": 14.851274, + "longitude": 50.473804, + "stopId": "U6196" + }, + { + "id": "U6198Z1", + "name": "Čistá,hřiště", + "isMetro": false, + "latitude": 14.841165, + "longitude": 50.475231, + "stopId": "U6198" + }, + { + "id": "U6198Z2", + "name": "Čistá,hřiště", + "isMetro": false, + "latitude": 14.841968, + "longitude": 50.475212, + "stopId": "U6198" + }, + { + "id": "U6199Z1", + "name": "Bělá p.Bezd.,Pražská", + "isMetro": false, + "latitude": 14.841364, + "longitude": 50.489922, + "stopId": "U6199" + }, + { + "id": "U6199Z2", + "name": "Bělá p.Bezd.,Pražská", + "isMetro": false, + "latitude": 14.841395, + "longitude": 50.489861, + "stopId": "U6199" + }, + { + "id": "U619Z1", + "name": "U Staré pošty", + "isMetro": false, + "latitude": 14.411521, + "longitude": 50.036026, + "stopId": "U619" + }, + { + "id": "U619Z2", + "name": "U Staré pošty", + "isMetro": false, + "latitude": 14.412024, + "longitude": 50.036041, + "stopId": "U619" + }, + { + "id": "U61Z1", + "name": "Ciolkovského", + "isMetro": false, + "latitude": 14.307127, + "longitude": 50.087997, + "stopId": "U61" + }, + { + "id": "U61Z2", + "name": "Ciolkovského", + "isMetro": false, + "latitude": 14.306657, + "longitude": 50.087879, + "stopId": "U61" + }, + { + "id": "U620Z1", + "name": "Nemocnice Na Františku", + "isMetro": false, + "latitude": 14.421279, + "longitude": 50.092831, + "stopId": "U620" + }, + { + "id": "U620Z2", + "name": "Nemocnice Na Františku", + "isMetro": false, + "latitude": 14.423032, + "longitude": 50.093174, + "stopId": "U620" + }, + { + "id": "U6213Z1", + "name": "Bakov n.Jiz.,Pražská", + "isMetro": false, + "latitude": 14.944095, + "longitude": 50.472843, + "stopId": "U6213" + }, + { + "id": "U6213Z2", + "name": "Bakov n.Jiz.,Pražská", + "isMetro": false, + "latitude": 14.943667, + "longitude": 50.472618, + "stopId": "U6213" + }, + { + "id": "U6216Z2", + "name": "Kosmonosy,Průmyslová", + "isMetro": false, + "latitude": 14.929787, + "longitude": 50.431137, + "stopId": "U6216" + }, + { + "id": "U6218Z1", + "name": "Kosmonosy,Horní Stakory", + "isMetro": false, + "latitude": 14.964025, + "longitude": 50.448265, + "stopId": "U6218" + }, + { + "id": "U6218Z2", + "name": "Kosmonosy,Horní Stakory", + "isMetro": false, + "latitude": 14.963727, + "longitude": 50.448181, + "stopId": "U6218" + }, + { + "id": "U6219Z1", + "name": "Kněžmost,Násedlnice", + "isMetro": false, + "latitude": 14.996455, + "longitude": 50.460445, + "stopId": "U6219" + }, + { + "id": "U621Z1", + "name": "Rohožnická", + "isMetro": false, + "latitude": 14.678699, + "longitude": 50.073158, + "stopId": "U621" + }, + { + "id": "U621Z2", + "name": "Rohožnická", + "isMetro": false, + "latitude": 14.677167, + "longitude": 50.073349, + "stopId": "U621" + }, + { + "id": "U621Z81", + "name": "Rohožnická", + "isMetro": false, + "latitude": 14.678699, + "longitude": 50.073158, + "stopId": "U621" + }, + { + "id": "U6220Z1", + "name": "Kněžmost,Koprník", + "isMetro": false, + "latitude": 15.014392, + "longitude": 50.469818, + "stopId": "U6220" + }, + { + "id": "U6220Z2", + "name": "Kněžmost,Koprník", + "isMetro": false, + "latitude": 15.014267, + "longitude": 50.469837, + "stopId": "U6220" + }, + { + "id": "U6223Z1", + "name": "Kněžmost,Nádražní", + "isMetro": false, + "latitude": 15.034052, + "longitude": 50.485569, + "stopId": "U6223" + }, + { + "id": "U6223Z2", + "name": "Kněžmost,Nádražní", + "isMetro": false, + "latitude": 15.033929, + "longitude": 50.485611, + "stopId": "U6223" + }, + { + "id": "U6224Z1", + "name": "Kněžmost,nám.", + "isMetro": false, + "latitude": 15.037875, + "longitude": 50.489315, + "stopId": "U6224" + }, + { + "id": "U6228Z3", + "name": "Kněžmost,Žabokliky", + "isMetro": false, + "latitude": 15.003673, + "longitude": 50.457314, + "stopId": "U6228" + }, + { + "id": "U6228Z4", + "name": "Kněžmost,Žabokliky", + "isMetro": false, + "latitude": 15.003619, + "longitude": 50.45726, + "stopId": "U6228" + }, + { + "id": "U6229Z1", + "name": "Kněžmost,Úhelnice", + "isMetro": false, + "latitude": 15.003602, + "longitude": 50.448162, + "stopId": "U6229" + }, + { + "id": "U6229Z2", + "name": "Kněžmost,Úhelnice", + "isMetro": false, + "latitude": 15.003516, + "longitude": 50.448109, + "stopId": "U6229" + }, + { + "id": "U622Z1", + "name": "Rokoska", + "isMetro": false, + "latitude": 14.457933, + "longitude": 50.117218, + "stopId": "U622" + }, + { + "id": "U622Z2", + "name": "Rokoska", + "isMetro": false, + "latitude": 14.457092, + "longitude": 50.117535, + "stopId": "U622" + }, + { + "id": "U6230Z1", + "name": "Husí Lhota", + "isMetro": false, + "latitude": 15.000053, + "longitude": 50.437428, + "stopId": "U6230" + }, + { + "id": "U6230Z2", + "name": "Husí Lhota", + "isMetro": false, + "latitude": 15.000361, + "longitude": 50.437656, + "stopId": "U6230" + }, + { + "id": "U6231Z1", + "name": "Plazy,Valy", + "isMetro": false, + "latitude": 14.974513, + "longitude": 50.427097, + "stopId": "U6231" + }, + { + "id": "U6231Z2", + "name": "Plazy,Valy", + "isMetro": false, + "latitude": 14.974303, + "longitude": 50.427139, + "stopId": "U6231" + }, + { + "id": "U6232Z1", + "name": "Dolní Stakory", + "isMetro": false, + "latitude": 14.973186, + "longitude": 50.438454, + "stopId": "U6232" + }, + { + "id": "U6232Z2", + "name": "Dolní Stakory", + "isMetro": false, + "latitude": 14.973405, + "longitude": 50.438473, + "stopId": "U6232" + }, + { + "id": "U6233Z1", + "name": "Plazy,u mlýna", + "isMetro": false, + "latitude": 14.97695, + "longitude": 50.410431, + "stopId": "U6233" + }, + { + "id": "U6233Z2", + "name": "Plazy,u mlýna", + "isMetro": false, + "latitude": 14.976548, + "longitude": 50.410618, + "stopId": "U6233" + }, + { + "id": "U6234Z1", + "name": "Dobrovice,Holé Vrchy", + "isMetro": false, + "latitude": 14.979055, + "longitude": 50.391102, + "stopId": "U6234" + }, + { + "id": "U6234Z2", + "name": "Dobrovice,Holé Vrchy", + "isMetro": false, + "latitude": 14.979216, + "longitude": 50.391159, + "stopId": "U6234" + }, + { + "id": "U6235Z1", + "name": "Dobrovice,Holé Vrchy,Ctiměřická", + "isMetro": false, + "latitude": 14.989764, + "longitude": 50.384895, + "stopId": "U6235" + }, + { + "id": "U6235Z2", + "name": "Dobrovice,Holé Vrchy,Ctiměřická", + "isMetro": false, + "latitude": 14.990183, + "longitude": 50.384708, + "stopId": "U6235" + }, + { + "id": "U6236Z1", + "name": "Ctiměřice", + "isMetro": false, + "latitude": 14.995494, + "longitude": 50.378292, + "stopId": "U6236" + }, + { + "id": "U6236Z2", + "name": "Ctiměřice", + "isMetro": false, + "latitude": 14.995713, + "longitude": 50.378498, + "stopId": "U6236" + }, + { + "id": "U6237Z1", + "name": "Semčice,zdravotní středisko", + "isMetro": false, + "latitude": 15.003921, + "longitude": 50.366123, + "stopId": "U6237" + }, + { + "id": "U6237Z2", + "name": "Semčice,zdravotní středisko", + "isMetro": false, + "latitude": 15.004084, + "longitude": 50.366226, + "stopId": "U6237" + }, + { + "id": "U6238Z1", + "name": "Pěčice", + "isMetro": false, + "latitude": 15.004127, + "longitude": 50.349827, + "stopId": "U6238" + }, + { + "id": "U6238Z2", + "name": "Pěčice", + "isMetro": false, + "latitude": 15.004262, + "longitude": 50.349815, + "stopId": "U6238" + }, + { + "id": "U6239Z1", + "name": "Jabkenice", + "isMetro": false, + "latitude": 15.013154, + "longitude": 50.326172, + "stopId": "U6239" + }, + { + "id": "U6239Z2", + "name": "Jabkenice", + "isMetro": false, + "latitude": 15.013664, + "longitude": 50.325592, + "stopId": "U6239" + }, + { + "id": "U623Z1", + "name": "Roztocká", + "isMetro": false, + "latitude": 14.39883, + "longitude": 50.127365, + "stopId": "U623" + }, + { + "id": "U623Z2", + "name": "Roztocká", + "isMetro": false, + "latitude": 14.39853, + "longitude": 50.127056, + "stopId": "U623" + }, + { + "id": "U623Z3", + "name": "Roztocká", + "isMetro": false, + "latitude": 14.398413, + "longitude": 50.125755, + "stopId": "U623" + }, + { + "id": "U623Z4", + "name": "Roztocká", + "isMetro": false, + "latitude": 14.399151, + "longitude": 50.127869, + "stopId": "U623" + }, + { + "id": "U6240Z1", + "name": "Jabkenice,křižovatka", + "isMetro": false, + "latitude": 15.013467, + "longitude": 50.322163, + "stopId": "U6240" + }, + { + "id": "U6240Z2", + "name": "Jabkenice,křižovatka", + "isMetro": false, + "latitude": 15.013546, + "longitude": 50.322136, + "stopId": "U6240" + }, + { + "id": "U6243Z1", + "name": "Charvatce,Květník", + "isMetro": false, + "latitude": 15.016915, + "longitude": 50.314461, + "stopId": "U6243" + }, + { + "id": "U6243Z2", + "name": "Charvatce,Květník", + "isMetro": false, + "latitude": 15.017033, + "longitude": 50.314457, + "stopId": "U6243" + }, + { + "id": "U6244Z1", + "name": "Chudíř", + "isMetro": false, + "latitude": 15.015103, + "longitude": 50.308624, + "stopId": "U6244" + }, + { + "id": "U6244Z2", + "name": "Chudíř", + "isMetro": false, + "latitude": 15.015265, + "longitude": 50.308628, + "stopId": "U6244" + }, + { + "id": "U6247Z1", + "name": "Kosořice,křižovatka", + "isMetro": false, + "latitude": 14.968564, + "longitude": 50.333202, + "stopId": "U6247" + }, + { + "id": "U6247Z2", + "name": "Kosořice,křižovatka", + "isMetro": false, + "latitude": 14.968738, + "longitude": 50.333179, + "stopId": "U6247" + }, + { + "id": "U6248Z1", + "name": "Březovice", + "isMetro": false, + "latitude": 14.73381, + "longitude": 50.471069, + "stopId": "U6248" + }, + { + "id": "U624Z1", + "name": "Roztylské náměstí", + "isMetro": false, + "latitude": 14.478797, + "longitude": 50.044495, + "stopId": "U624" + }, + { + "id": "U624Z2", + "name": "Roztylské náměstí", + "isMetro": false, + "latitude": 14.478353, + "longitude": 50.044479, + "stopId": "U624" + }, + { + "id": "U6252Z1", + "name": "Miličín,Podměští", + "isMetro": false, + "latitude": 14.668544, + "longitude": 49.571014, + "stopId": "U6252" + }, + { + "id": "U6252Z2", + "name": "Miličín,Podměští", + "isMetro": false, + "latitude": 14.668458, + "longitude": 49.571125, + "stopId": "U6252" + }, + { + "id": "U6255Z1", + "name": "Brodce,Cukrovarská", + "isMetro": false, + "latitude": 14.866191, + "longitude": 50.323093, + "stopId": "U6255" + }, + { + "id": "U6255Z2", + "name": "Brodce,Cukrovarská", + "isMetro": false, + "latitude": 14.865545, + "longitude": 50.323608, + "stopId": "U6255" + }, + { + "id": "U6256Z1", + "name": "Vinec,dolní část", + "isMetro": false, + "latitude": 14.875071, + "longitude": 50.396751, + "stopId": "U6256" + }, + { + "id": "U6256Z2", + "name": "Vinec,dolní část", + "isMetro": false, + "latitude": 14.875141, + "longitude": 50.396675, + "stopId": "U6256" + }, + { + "id": "U625Z1", + "name": "Labe", + "isMetro": false, + "latitude": 14.420934, + "longitude": 50.013802, + "stopId": "U625" + }, + { + "id": "U625Z2", + "name": "Labe", + "isMetro": false, + "latitude": 14.421384, + "longitude": 50.013668, + "stopId": "U625" + }, + { + "id": "U6260Z51", + "name": "Dobrovice,Libichov", + "isMetro": false, + "latitude": 14.91603, + "longitude": 50.351589, + "stopId": "U6260" + }, + { + "id": "U6260Z52", + "name": "Dobrovice,Libichov", + "isMetro": false, + "latitude": 14.916174, + "longitude": 50.351669, + "stopId": "U6260" + }, + { + "id": "U6261Z1", + "name": "Židněves", + "isMetro": false, + "latitude": 14.995136, + "longitude": 50.411591, + "stopId": "U6261" + }, + { + "id": "U6261Z2", + "name": "Židněves", + "isMetro": false, + "latitude": 14.9949, + "longitude": 50.411644, + "stopId": "U6261" + }, + { + "id": "U6261Z3", + "name": "Židněves,Březenská", + "isMetro": false, + "latitude": 14.994556, + "longitude": 50.411247, + "stopId": "U6261" + }, + { + "id": "U6261Z4", + "name": "Židněves,Březenská", + "isMetro": false, + "latitude": 14.994612, + "longitude": 50.411289, + "stopId": "U6261" + }, + { + "id": "U6262Z1", + "name": "Březno", + "isMetro": false, + "latitude": 15.005793, + "longitude": 50.406269, + "stopId": "U6262" + }, + { + "id": "U6262Z2", + "name": "Březno", + "isMetro": false, + "latitude": 15.005455, + "longitude": 50.406612, + "stopId": "U6262" + }, + { + "id": "U6269Z1", + "name": "Lhotky,křižovatka", + "isMetro": false, + "latitude": 15.045464, + "longitude": 50.403713, + "stopId": "U6269" + }, + { + "id": "U6269Z2", + "name": "Lhotky,křižovatka", + "isMetro": false, + "latitude": 15.045457, + "longitude": 50.403782, + "stopId": "U6269" + }, + { + "id": "U626Z1", + "name": "Rozýnova", + "isMetro": false, + "latitude": 14.368234, + "longitude": 50.080051, + "stopId": "U626" + }, + { + "id": "U626Z2", + "name": "Rozýnova", + "isMetro": false, + "latitude": 14.36925, + "longitude": 50.080051, + "stopId": "U626" + }, + { + "id": "U6272Z1", + "name": "Petkovy,Čížovky", + "isMetro": false, + "latitude": 15.078063, + "longitude": 50.401455, + "stopId": "U6272" + }, + { + "id": "U6272Z2", + "name": "Petkovy,Čížovky", + "isMetro": false, + "latitude": 15.078103, + "longitude": 50.401497, + "stopId": "U6272" + }, + { + "id": "U6273Z1", + "name": "Domousnice", + "isMetro": false, + "latitude": 15.101521, + "longitude": 50.392082, + "stopId": "U6273" + }, + { + "id": "U6273Z2", + "name": "Domousnice", + "isMetro": false, + "latitude": 15.101718, + "longitude": 50.392212, + "stopId": "U6273" + }, + { + "id": "U6274Z1", + "name": "Veselice,dvůr", + "isMetro": false, + "latitude": 15.127361, + "longitude": 50.396534, + "stopId": "U6274" + }, + { + "id": "U6274Z2", + "name": "Veselice,dvůr", + "isMetro": false, + "latitude": 15.127446, + "longitude": 50.396599, + "stopId": "U6274" + }, + { + "id": "U6275Z1", + "name": "Veselice", + "isMetro": false, + "latitude": 15.120176, + "longitude": 50.398331, + "stopId": "U6275" + }, + { + "id": "U6275Z2", + "name": "Veselice", + "isMetro": false, + "latitude": 15.120111, + "longitude": 50.398403, + "stopId": "U6275" + }, + { + "id": "U6276Z1", + "name": "Řitonice", + "isMetro": false, + "latitude": 15.106667, + "longitude": 50.407955, + "stopId": "U6276" + }, + { + "id": "U6276Z2", + "name": "Řitonice", + "isMetro": false, + "latitude": 15.106649, + "longitude": 50.408009, + "stopId": "U6276" + }, + { + "id": "U6277Z51", + "name": "Řitonice,Domousnická", + "isMetro": false, + "latitude": 15.109125, + "longitude": 50.407532, + "stopId": "U6277" + }, + { + "id": "U6277Z52", + "name": "Řitonice,Domousnická", + "isMetro": false, + "latitude": 15.109066, + "longitude": 50.407375, + "stopId": "U6277" + }, + { + "id": "U6278Z1", + "name": "Domousnice,žel.zast.", + "isMetro": false, + "latitude": 15.106979, + "longitude": 50.397255, + "stopId": "U6278" + }, + { + "id": "U6278Z2", + "name": "Domousnice,žel.zast.", + "isMetro": false, + "latitude": 15.10686, + "longitude": 50.397293, + "stopId": "U6278" + }, + { + "id": "U6278Z3", + "name": "Domousnice,žel.zast.", + "isMetro": false, + "latitude": 15.107352, + "longitude": 50.397034, + "stopId": "U6278" + }, + { + "id": "U6278Z4", + "name": "Domousnice,žel.zast.", + "isMetro": false, + "latitude": 15.107382, + "longitude": 50.397102, + "stopId": "U6278" + }, + { + "id": "U6279Z1", + "name": "Petkovy,horní", + "isMetro": false, + "latitude": 15.077898, + "longitude": 50.411907, + "stopId": "U6279" + }, + { + "id": "U6279Z2", + "name": "Petkovy,horní", + "isMetro": false, + "latitude": 15.077884, + "longitude": 50.411976, + "stopId": "U6279" + }, + { + "id": "U627Z1", + "name": "Ruská", + "isMetro": false, + "latitude": 14.451273, + "longitude": 50.071659, + "stopId": "U627" + }, + { + "id": "U627Z2", + "name": "Ruská", + "isMetro": false, + "latitude": 14.451376, + "longitude": 50.071228, + "stopId": "U627" + }, + { + "id": "U6280Z1", + "name": "Dlouhá Lhota,U Lochmanů", + "isMetro": false, + "latitude": 15.061321, + "longitude": 50.41925, + "stopId": "U6280" + }, + { + "id": "U6280Z2", + "name": "Dlouhá Lhota,U Lochmanů", + "isMetro": false, + "latitude": 15.061316, + "longitude": 50.419323, + "stopId": "U6280" + }, + { + "id": "U6281Z1", + "name": "Dlouhá Lhota,U Zachařů", + "isMetro": false, + "latitude": 15.052281, + "longitude": 50.419735, + "stopId": "U6281" + }, + { + "id": "U6281Z2", + "name": "Dlouhá Lhota,U Zachařů", + "isMetro": false, + "latitude": 15.052273, + "longitude": 50.419811, + "stopId": "U6281" + }, + { + "id": "U6282Z1", + "name": "Sukorady", + "isMetro": false, + "latitude": 15.030504, + "longitude": 50.426453, + "stopId": "U6282" + }, + { + "id": "U6282Z2", + "name": "Sukorady", + "isMetro": false, + "latitude": 15.029969, + "longitude": 50.426479, + "stopId": "U6282" + }, + { + "id": "U6283Z1", + "name": "Sukorady,Martinovice", + "isMetro": false, + "latitude": 15.043576, + "longitude": 50.432816, + "stopId": "U6283" + }, + { + "id": "U6283Z2", + "name": "Sukorady,Martinovice", + "isMetro": false, + "latitude": 15.043297, + "longitude": 50.432903, + "stopId": "U6283" + }, + { + "id": "U6284Z1", + "name": "Dolní Bousov,Příhonská", + "isMetro": false, + "latitude": 15.11801, + "longitude": 50.43544, + "stopId": "U6284" + }, + { + "id": "U6284Z2", + "name": "Dolní Bousov,Příhonská", + "isMetro": false, + "latitude": 15.117999, + "longitude": 50.435547, + "stopId": "U6284" + }, + { + "id": "U6285Z1", + "name": "Dolní Bousov,nám.", + "isMetro": false, + "latitude": 15.127901, + "longitude": 50.43869, + "stopId": "U6285" + }, + { + "id": "U6287Z2", + "name": "Dolní Bousov,Vlčí Pole", + "isMetro": false, + "latitude": 15.136165, + "longitude": 50.415409, + "stopId": "U6287" + }, + { + "id": "U6288Z1", + "name": "Ujkovice,křižovatka", + "isMetro": false, + "latitude": 15.104185, + "longitude": 50.364479, + "stopId": "U6288" + }, + { + "id": "U6288Z2", + "name": "Ujkovice,křižovatka", + "isMetro": false, + "latitude": 15.104458, + "longitude": 50.364296, + "stopId": "U6288" + }, + { + "id": "U6289Z1", + "name": "Ujkovice", + "isMetro": false, + "latitude": 15.100736, + "longitude": 50.364716, + "stopId": "U6289" + }, + { + "id": "U6289Z2", + "name": "Ujkovice", + "isMetro": false, + "latitude": 15.100763, + "longitude": 50.364643, + "stopId": "U6289" + }, + { + "id": "U628Z1", + "name": "Terminál 1", + "isMetro": false, + "latitude": 14.268832, + "longitude": 50.107899, + "stopId": "U628" + }, + { + "id": "U628Z10", + "name": "Terminál 1", + "isMetro": false, + "latitude": 14.26969, + "longitude": 50.107807, + "stopId": "U628" + }, + { + "id": "U628Z5", + "name": "Terminál 1", + "isMetro": false, + "latitude": 14.268102, + "longitude": 50.10717, + "stopId": "U628" + }, + { + "id": "U628Z7", + "name": "Terminál 1", + "isMetro": false, + "latitude": 14.26783, + "longitude": 50.106949, + "stopId": "U628" + }, + { + "id": "U6290Z1", + "name": "Rabakov", + "isMetro": false, + "latitude": 15.102179, + "longitude": 50.381676, + "stopId": "U6290" + }, + { + "id": "U6290Z2", + "name": "Rabakov", + "isMetro": false, + "latitude": 15.102077, + "longitude": 50.381748, + "stopId": "U6290" + }, + { + "id": "U6291Z1", + "name": "Rabakov,chaty", + "isMetro": false, + "latitude": 15.101472, + "longitude": 50.38834, + "stopId": "U6291" + }, + { + "id": "U6291Z2", + "name": "Rabakov,chaty", + "isMetro": false, + "latitude": 15.101412, + "longitude": 50.388336, + "stopId": "U6291" + }, + { + "id": "U6292Z1", + "name": "Domousnice,Skyšice", + "isMetro": false, + "latitude": 15.10653, + "longitude": 50.42131, + "stopId": "U6292" + }, + { + "id": "U6292Z2", + "name": "Domousnice,Skyšice", + "isMetro": false, + "latitude": 15.106471, + "longitude": 50.421352, + "stopId": "U6292" + }, + { + "id": "U6293Z1", + "name": "Dolní Bousov,rozc.Ošťovice", + "isMetro": false, + "latitude": 15.131561, + "longitude": 50.459858, + "stopId": "U6293" + }, + { + "id": "U6293Z2", + "name": "Dolní Bousov,rozc.Ošťovice", + "isMetro": false, + "latitude": 15.132108, + "longitude": 50.459927, + "stopId": "U6293" + }, + { + "id": "U6294Z1", + "name": "Obruby,Na Místech", + "isMetro": false, + "latitude": 15.086642, + "longitude": 50.455898, + "stopId": "U6294" + }, + { + "id": "U6294Z2", + "name": "Obruby,Na Místech", + "isMetro": false, + "latitude": 15.086607, + "longitude": 50.455837, + "stopId": "U6294" + }, + { + "id": "U6295Z1", + "name": "Obruby,U Holubičků", + "isMetro": false, + "latitude": 15.082103, + "longitude": 50.460041, + "stopId": "U6295" + }, + { + "id": "U6295Z2", + "name": "Obruby,U Holubičků", + "isMetro": false, + "latitude": 15.081919, + "longitude": 50.460022, + "stopId": "U6295" + }, + { + "id": "U6296Z1", + "name": "Přepeře", + "isMetro": false, + "latitude": 15.104832, + "longitude": 50.464214, + "stopId": "U6296" + }, + { + "id": "U6296Z2", + "name": "Přepeře", + "isMetro": false, + "latitude": 15.104698, + "longitude": 50.464367, + "stopId": "U6296" + }, + { + "id": "U6297Z1", + "name": "Dolní Bousov,Horní Bousov", + "isMetro": false, + "latitude": 15.115112, + "longitude": 50.461643, + "stopId": "U6297" + }, + { + "id": "U6297Z2", + "name": "Dolní Bousov,Horní Bousov", + "isMetro": false, + "latitude": 15.115896, + "longitude": 50.461655, + "stopId": "U6297" + }, + { + "id": "U6298Z2", + "name": "Dolní Bousov,V Lipkách", + "isMetro": false, + "latitude": 15.126998, + "longitude": 50.445168, + "stopId": "U6298" + }, + { + "id": "U629Z1", + "name": "Terminál 2", + "isMetro": false, + "latitude": 14.267689, + "longitude": 50.105206, + "stopId": "U629" + }, + { + "id": "U629Z2", + "name": "Terminál 2", + "isMetro": false, + "latitude": 14.26811, + "longitude": 50.105045, + "stopId": "U629" + }, + { + "id": "U629Z3", + "name": "Terminál 2", + "isMetro": false, + "latitude": 14.268364, + "longitude": 50.104939, + "stopId": "U629" + }, + { + "id": "U62Z1", + "name": "Cukrovar Modřany", + "isMetro": false, + "latitude": 14.406422, + "longitude": 49.9986, + "stopId": "U62" + }, + { + "id": "U62Z2", + "name": "Cukrovar Modřany", + "isMetro": false, + "latitude": 14.406411, + "longitude": 49.999527, + "stopId": "U62" + }, + { + "id": "U6300Z2", + "name": "Dobšín", + "isMetro": false, + "latitude": 15.111947, + "longitude": 50.483032, + "stopId": "U6300" + }, + { + "id": "U6301Z1", + "name": "Dobšín,Kamenice,křiž.", + "isMetro": false, + "latitude": 15.11162, + "longitude": 50.490055, + "stopId": "U6301" + }, + { + "id": "U6307Z1", + "name": "Kněžmost,Na Dolích", + "isMetro": false, + "latitude": 15.050194, + "longitude": 50.492287, + "stopId": "U6307" + }, + { + "id": "U6307Z2", + "name": "Kněžmost,Na Dolích", + "isMetro": false, + "latitude": 15.050092, + "longitude": 50.492325, + "stopId": "U6307" + }, + { + "id": "U630Z1", + "name": "Ruzyňská", + "isMetro": false, + "latitude": 14.324862, + "longitude": 50.085533, + "stopId": "U630" + }, + { + "id": "U630Z2", + "name": "Ruzyňská", + "isMetro": false, + "latitude": 14.325334, + "longitude": 50.086102, + "stopId": "U630" + }, + { + "id": "U6313Z1", + "name": "Branžež,na křižovatce", + "isMetro": false, + "latitude": 15.057251, + "longitude": 50.505032, + "stopId": "U6313" + }, + { + "id": "U6313Z2", + "name": "Branžež,na křižovatce", + "isMetro": false, + "latitude": 15.057588, + "longitude": 50.504917, + "stopId": "U6313" + }, + { + "id": "U6314Z1", + "name": "Branžež,Nová Ves,na kopečku", + "isMetro": false, + "latitude": 15.063016, + "longitude": 50.504326, + "stopId": "U6314" + }, + { + "id": "U6314Z2", + "name": "Branžež,Nová Ves,na kopečku", + "isMetro": false, + "latitude": 15.063004, + "longitude": 50.504372, + "stopId": "U6314" + }, + { + "id": "U6315Z1", + "name": "Branžež,Nová Ves", + "isMetro": false, + "latitude": 15.068834, + "longitude": 50.50325, + "stopId": "U6315" + }, + { + "id": "U6315Z2", + "name": "Branžež,Nová Ves", + "isMetro": false, + "latitude": 15.068738, + "longitude": 50.503284, + "stopId": "U6315" + }, + { + "id": "U6316Z1", + "name": "Branžež", + "isMetro": false, + "latitude": 15.06248, + "longitude": 50.507946, + "stopId": "U6316" + }, + { + "id": "U6316Z2", + "name": "Branžež", + "isMetro": false, + "latitude": 15.062459, + "longitude": 50.508022, + "stopId": "U6316" + }, + { + "id": "U6317Z1", + "name": "Branžež,Zakopaná", + "isMetro": false, + "latitude": 15.077253, + "longitude": 50.511787, + "stopId": "U6317" + }, + { + "id": "U6317Z2", + "name": "Branžež,Zakopaná", + "isMetro": false, + "latitude": 15.077271, + "longitude": 50.511837, + "stopId": "U6317" + }, + { + "id": "U6319Z1", + "name": "Kněžmost,Srbsko", + "isMetro": false, + "latitude": 15.099767, + "longitude": 50.507034, + "stopId": "U6319" + }, + { + "id": "U6319Z2", + "name": "Kněžmost,Srbsko", + "isMetro": false, + "latitude": 15.099765, + "longitude": 50.507095, + "stopId": "U6319" + }, + { + "id": "U631Z1", + "name": "Ruzyňská škola", + "isMetro": false, + "latitude": 14.318334, + "longitude": 50.083569, + "stopId": "U631" + }, + { + "id": "U631Z2", + "name": "Ruzyňská škola", + "isMetro": false, + "latitude": 14.317867, + "longitude": 50.08345, + "stopId": "U631" + }, + { + "id": "U6321Z1", + "name": "Senice", + "isMetro": false, + "latitude": 15.207534, + "longitude": 50.183537, + "stopId": "U6321" + }, + { + "id": "U6321Z2", + "name": "Senice", + "isMetro": false, + "latitude": 15.207287, + "longitude": 50.18354, + "stopId": "U6321" + }, + { + "id": "U6322Z1", + "name": "Svojetín", + "isMetro": false, + "latitude": 13.629829, + "longitude": 50.191513, + "stopId": "U6322" + }, + { + "id": "U6322Z2", + "name": "Svojetín", + "isMetro": false, + "latitude": 13.630012, + "longitude": 50.191444, + "stopId": "U6322" + }, + { + "id": "U6324Z1", + "name": "Mnichovo Hradiště,Klášterská", + "isMetro": false, + "latitude": 14.968653, + "longitude": 50.527214, + "stopId": "U6324" + }, + { + "id": "U6324Z2", + "name": "Mnichovo Hradiště,Klášterská", + "isMetro": false, + "latitude": 14.969284, + "longitude": 50.527214, + "stopId": "U6324" + }, + { + "id": "U6329Z1", + "name": "Klášter Hradiště n.Jiz.,Habr", + "isMetro": false, + "latitude": 14.941417, + "longitude": 50.522415, + "stopId": "U6329" + }, + { + "id": "U6329Z2", + "name": "Klášter Hradiště n.Jiz.,Habr", + "isMetro": false, + "latitude": 14.941695, + "longitude": 50.522076, + "stopId": "U6329" + }, + { + "id": "U632Z1", + "name": "Ryšánka", + "isMetro": false, + "latitude": 14.436367, + "longitude": 50.040379, + "stopId": "U632" + }, + { + "id": "U632Z3", + "name": "Ryšánka", + "isMetro": false, + "latitude": 14.439749, + "longitude": 50.040653, + "stopId": "U632" + }, + { + "id": "U632Z4", + "name": "Ryšánka", + "isMetro": false, + "latitude": 14.439196, + "longitude": 50.040733, + "stopId": "U632" + }, + { + "id": "U6330Z1", + "name": "Bílá Hlína", + "isMetro": false, + "latitude": 14.925096, + "longitude": 50.532848, + "stopId": "U6330" + }, + { + "id": "U6330Z2", + "name": "Bílá Hlína", + "isMetro": false, + "latitude": 14.925294, + "longitude": 50.532597, + "stopId": "U6330" + }, + { + "id": "U6332Z2", + "name": "Horní Bukovina,Dolní Bukovina", + "isMetro": false, + "latitude": 14.93563, + "longitude": 50.542686, + "stopId": "U6332" + }, + { + "id": "U6333Z2", + "name": "Horní Bukovina,odb.", + "isMetro": false, + "latitude": 14.937716, + "longitude": 50.53566, + "stopId": "U6333" + }, + { + "id": "U6334Z2", + "name": "Horní Bukovina,Dolní Bukovina,koupaliště", + "isMetro": false, + "latitude": 14.93351, + "longitude": 50.546787, + "stopId": "U6334" + }, + { + "id": "U6335Z4", + "name": "Mukařov,Borovice", + "isMetro": false, + "latitude": 14.931487, + "longitude": 50.563553, + "stopId": "U6335" + }, + { + "id": "U6338Z1", + "name": "Rokytá,Dolní Rokytá,rozc.", + "isMetro": false, + "latitude": 14.894252, + "longitude": 50.543781, + "stopId": "U6338" + }, + { + "id": "U6338Z2", + "name": "Rokytá,Dolní Rokytá,rozc.", + "isMetro": false, + "latitude": 14.894654, + "longitude": 50.543636, + "stopId": "U6338" + }, + { + "id": "U633Z1", + "name": "Řepčická", + "isMetro": false, + "latitude": 14.545034, + "longitude": 50.04805, + "stopId": "U633" + }, + { + "id": "U633Z2", + "name": "Řepčická", + "isMetro": false, + "latitude": 14.544972, + "longitude": 50.047813, + "stopId": "U633" + }, + { + "id": "U6343Z1", + "name": "Dolní Krupá,u mostu", + "isMetro": false, + "latitude": 14.878225, + "longitude": 50.544147, + "stopId": "U6343" + }, + { + "id": "U6343Z2", + "name": "Dolní Krupá,u mostu", + "isMetro": false, + "latitude": 14.878193, + "longitude": 50.544067, + "stopId": "U6343" + }, + { + "id": "U6344Z1", + "name": "Dolní Krupá,pošta", + "isMetro": false, + "latitude": 14.870121, + "longitude": 50.54615, + "stopId": "U6344" + }, + { + "id": "U6344Z2", + "name": "Dolní Krupá,pošta", + "isMetro": false, + "latitude": 14.870104, + "longitude": 50.546047, + "stopId": "U6344" + }, + { + "id": "U6345Z1", + "name": "Dolní Krupá,u lípy", + "isMetro": false, + "latitude": 14.853817, + "longitude": 50.550842, + "stopId": "U6345" + }, + { + "id": "U6345Z2", + "name": "Dolní Krupá,u lípy", + "isMetro": false, + "latitude": 14.853763, + "longitude": 50.550808, + "stopId": "U6345" + }, + { + "id": "U6346Z1", + "name": "Klášter Hradiště n.Jiz.", + "isMetro": false, + "latitude": 14.944832, + "longitude": 50.523346, + "stopId": "U6346" + }, + { + "id": "U6346Z2", + "name": "Klášter Hradiště n.Jiz.", + "isMetro": false, + "latitude": 14.945266, + "longitude": 50.523346, + "stopId": "U6346" + }, + { + "id": "U6347Z2", + "name": "Klášter Hradiště n.Jiz.,pod pivovarem", + "isMetro": false, + "latitude": 14.945555, + "longitude": 50.523811, + "stopId": "U6347" + }, + { + "id": "U6348Z1", + "name": "Klášter Hradiště n.Jiz.,pošta", + "isMetro": false, + "latitude": 14.947032, + "longitude": 50.526638, + "stopId": "U6348" + }, + { + "id": "U6348Z2", + "name": "Klášter Hradiště n.Jiz.,pošta", + "isMetro": false, + "latitude": 14.947026, + "longitude": 50.526459, + "stopId": "U6348" + }, + { + "id": "U634Z1", + "name": "Řeporyjské náměstí", + "isMetro": false, + "latitude": 14.311884, + "longitude": 50.032749, + "stopId": "U634" + }, + { + "id": "U634Z2", + "name": "Řeporyjské náměstí", + "isMetro": false, + "latitude": 14.312134, + "longitude": 50.032867, + "stopId": "U634" + }, + { + "id": "U6359Z1", + "name": "Mnichovo Hradiště,U Bažantnice", + "isMetro": false, + "latitude": 14.969187, + "longitude": 50.506653, + "stopId": "U6359" + }, + { + "id": "U6359Z2", + "name": "Mnichovo Hradiště,U Bažantnice", + "isMetro": false, + "latitude": 14.96886, + "longitude": 50.506645, + "stopId": "U6359" + }, + { + "id": "U635Z1", + "name": "Škola Řepy", + "isMetro": false, + "latitude": 14.296316, + "longitude": 50.069, + "stopId": "U635" + }, + { + "id": "U635Z2", + "name": "Škola Řepy", + "isMetro": false, + "latitude": 14.295508, + "longitude": 50.068901, + "stopId": "U635" + }, + { + "id": "U636Z1", + "name": "Říčanova", + "isMetro": false, + "latitude": 14.353347, + "longitude": 50.081448, + "stopId": "U636" + }, + { + "id": "U636Z2", + "name": "Říčanova", + "isMetro": false, + "latitude": 14.352768, + "longitude": 50.081326, + "stopId": "U636" + }, + { + "id": "U6370Z1", + "name": "Jivina", + "isMetro": false, + "latitude": 14.946799, + "longitude": 50.554745, + "stopId": "U6370" + }, + { + "id": "U6370Z2", + "name": "Jivina", + "isMetro": false, + "latitude": 14.946652, + "longitude": 50.554886, + "stopId": "U6370" + }, + { + "id": "U6371Z1", + "name": "Neveklovice", + "isMetro": false, + "latitude": 14.948621, + "longitude": 50.571564, + "stopId": "U6371" + }, + { + "id": "U6371Z2", + "name": "Neveklovice", + "isMetro": false, + "latitude": 14.9485, + "longitude": 50.571529, + "stopId": "U6371" + }, + { + "id": "U6372Z1", + "name": "Strážiště", + "isMetro": false, + "latitude": 14.929959, + "longitude": 50.592823, + "stopId": "U6372" + }, + { + "id": "U6372Z2", + "name": "Strážiště", + "isMetro": false, + "latitude": 14.929729, + "longitude": 50.592735, + "stopId": "U6372" + }, + { + "id": "U6373Z1", + "name": "Strážiště,Kozmice", + "isMetro": false, + "latitude": 14.924147, + "longitude": 50.614197, + "stopId": "U6373" + }, + { + "id": "U6373Z2", + "name": "Strážiště,Kozmice", + "isMetro": false, + "latitude": 14.92403, + "longitude": 50.614231, + "stopId": "U6373" + }, + { + "id": "U637Z1", + "name": "Safírová", + "isMetro": false, + "latitude": 14.350417, + "longitude": 49.989567, + "stopId": "U637" + }, + { + "id": "U637Z2", + "name": "Safírová", + "isMetro": false, + "latitude": 14.350301, + "longitude": 49.989983, + "stopId": "U637" + }, + { + "id": "U638Z1", + "name": "Santoška", + "isMetro": false, + "latitude": 14.399107, + "longitude": 50.066711, + "stopId": "U638" + }, + { + "id": "U638Z2", + "name": "Santoška", + "isMetro": false, + "latitude": 14.399167, + "longitude": 50.066235, + "stopId": "U638" + }, + { + "id": "U6390Z1", + "name": "Loukovec", + "isMetro": false, + "latitude": 15.015609, + "longitude": 50.562057, + "stopId": "U6390" + }, + { + "id": "U6391Z1", + "name": "Loukovec,Hubálov", + "isMetro": false, + "latitude": 15.013259, + "longitude": 50.559105, + "stopId": "U6391" + }, + { + "id": "U6392Z1", + "name": "Loukov,škola", + "isMetro": false, + "latitude": 15.035788, + "longitude": 50.560211, + "stopId": "U6392" + }, + { + "id": "U6392Z2", + "name": "Loukov,škola", + "isMetro": false, + "latitude": 15.035509, + "longitude": 50.560116, + "stopId": "U6392" + }, + { + "id": "U6393Z1", + "name": "Loukov,Na Veselici", + "isMetro": false, + "latitude": 15.049655, + "longitude": 50.552776, + "stopId": "U6393" + }, + { + "id": "U6393Z2", + "name": "Loukov,Na Veselici", + "isMetro": false, + "latitude": 15.04946, + "longitude": 50.552837, + "stopId": "U6393" + }, + { + "id": "U6394Z1", + "name": "Vinec,u hřbitova", + "isMetro": false, + "latitude": 14.861457, + "longitude": 50.400726, + "stopId": "U6394" + }, + { + "id": "U6394Z2", + "name": "Vinec,u hřbitova", + "isMetro": false, + "latitude": 14.861423, + "longitude": 50.400677, + "stopId": "U6394" + }, + { + "id": "U6396Z1", + "name": "Březina,Honsob", + "isMetro": false, + "latitude": 15.019639, + "longitude": 50.53952, + "stopId": "U6396" + }, + { + "id": "U6396Z2", + "name": "Březina,Honsob", + "isMetro": false, + "latitude": 15.019579, + "longitude": 50.539654, + "stopId": "U6396" + }, + { + "id": "U6398Z1", + "name": "Mnichovo Hradiště,Hoškovice", + "isMetro": false, + "latitude": 15.00257, + "longitude": 50.532375, + "stopId": "U6398" + }, + { + "id": "U6398Z2", + "name": "Mnichovo Hradiště,Hoškovice", + "isMetro": false, + "latitude": 15.001575, + "longitude": 50.532196, + "stopId": "U6398" + }, + { + "id": "U639Z1", + "name": "Satalická obora", + "isMetro": false, + "latitude": 14.575217, + "longitude": 50.126469, + "stopId": "U639" + }, + { + "id": "U639Z2", + "name": "Satalická obora", + "isMetro": false, + "latitude": 14.574744, + "longitude": 50.12677, + "stopId": "U639" + }, + { + "id": "U63Z1", + "name": "Cukrovar Čakovice", + "isMetro": false, + "latitude": 14.519168, + "longitude": 50.15155, + "stopId": "U63" + }, + { + "id": "U63Z2", + "name": "Cukrovar Čakovice", + "isMetro": false, + "latitude": 14.518834, + "longitude": 50.151669, + "stopId": "U63" + }, + { + "id": "U6408Z1", + "name": "Milostín,Povlčín", + "isMetro": false, + "latitude": 13.655306, + "longitude": 50.197254, + "stopId": "U6408" + }, + { + "id": "U6408Z3", + "name": "Milostín,Povlčín", + "isMetro": false, + "latitude": 13.653905, + "longitude": 50.196926, + "stopId": "U6408" + }, + { + "id": "U640Z1", + "name": "Sdružení", + "isMetro": false, + "latitude": 14.442451, + "longitude": 50.054417, + "stopId": "U640" + }, + { + "id": "U640Z2", + "name": "Sdružení", + "isMetro": false, + "latitude": 14.442667, + "longitude": 50.054516, + "stopId": "U640" + }, + { + "id": "U6411Z1", + "name": "Krakovany", + "isMetro": false, + "latitude": 15.368049, + "longitude": 50.068661, + "stopId": "U6411" + }, + { + "id": "U6411Z2", + "name": "Krakovany", + "isMetro": false, + "latitude": 15.36799, + "longitude": 50.068542, + "stopId": "U6411" + }, + { + "id": "U6413Z1", + "name": "Kováň", + "isMetro": false, + "latitude": 14.778469, + "longitude": 50.424301, + "stopId": "U6413" + }, + { + "id": "U6413Z2", + "name": "Kováň", + "isMetro": false, + "latitude": 14.778577, + "longitude": 50.424229, + "stopId": "U6413" + }, + { + "id": "U6414Z1", + "name": "Katusice,Spikaly", + "isMetro": false, + "latitude": 14.767152, + "longitude": 50.435532, + "stopId": "U6414" + }, + { + "id": "U6414Z2", + "name": "Katusice,Spikaly", + "isMetro": false, + "latitude": 14.767039, + "longitude": 50.435417, + "stopId": "U6414" + }, + { + "id": "U6416Z2", + "name": "Bělá p.Bezd.,Březinka,Valovická", + "isMetro": false, + "latitude": 14.754552, + "longitude": 50.473488, + "stopId": "U6416" + }, + { + "id": "U6417Z2", + "name": "Bělá p.Bezd.,Březinka", + "isMetro": false, + "latitude": 14.777062, + "longitude": 50.478455, + "stopId": "U6417" + }, + { + "id": "U6419Z1", + "name": "Tři Dvory", + "isMetro": false, + "latitude": 15.256801, + "longitude": 50.031715, + "stopId": "U6419" + }, + { + "id": "U6419Z2", + "name": "Tři Dvory", + "isMetro": false, + "latitude": 15.257413, + "longitude": 50.031776, + "stopId": "U6419" + }, + { + "id": "U641Z1", + "name": "Hostivařský hřbitov", + "isMetro": false, + "latitude": 14.523317, + "longitude": 50.046734, + "stopId": "U641" + }, + { + "id": "U641Z2", + "name": "Hostivařský hřbitov", + "isMetro": false, + "latitude": 14.524284, + "longitude": 50.046165, + "stopId": "U641" + }, + { + "id": "U641Z3", + "name": "Hostivařský hřbitov", + "isMetro": false, + "latitude": 14.523767, + "longitude": 50.045818, + "stopId": "U641" + }, + { + "id": "U641Z4", + "name": "Hostivařský hřbitov", + "isMetro": false, + "latitude": 14.525214, + "longitude": 50.045616, + "stopId": "U641" + }, + { + "id": "U6420Z1", + "name": "Konárovice,Labuť", + "isMetro": false, + "latitude": 15.280483, + "longitude": 50.03146, + "stopId": "U6420" + }, + { + "id": "U6420Z2", + "name": "Konárovice,Labuť", + "isMetro": false, + "latitude": 15.280353, + "longitude": 50.031563, + "stopId": "U6420" + }, + { + "id": "U6424Z1", + "name": "Týnec n.L.,nám.", + "isMetro": false, + "latitude": 15.358291, + "longitude": 50.042225, + "stopId": "U6424" + }, + { + "id": "U6424Z2", + "name": "Týnec n.L.,nám.", + "isMetro": false, + "latitude": 15.358147, + "longitude": 50.041866, + "stopId": "U6424" + }, + { + "id": "U6425Z1", + "name": "Týnec n.L.,prům.areál", + "isMetro": false, + "latitude": 15.36317, + "longitude": 50.051014, + "stopId": "U6425" + }, + { + "id": "U6425Z2", + "name": "Týnec n.L.,prům.areál", + "isMetro": false, + "latitude": 15.363058, + "longitude": 50.050938, + "stopId": "U6425" + }, + { + "id": "U6426Z1", + "name": "Uhlířská Lhota", + "isMetro": false, + "latitude": 15.389531, + "longitude": 50.078835, + "stopId": "U6426" + }, + { + "id": "U6426Z2", + "name": "Uhlířská Lhota", + "isMetro": false, + "latitude": 15.389362, + "longitude": 50.078846, + "stopId": "U6426" + }, + { + "id": "U6427Z1", + "name": "Uhlířská Lhota,Rasochy,rozc.", + "isMetro": false, + "latitude": 15.39754, + "longitude": 50.089619, + "stopId": "U6427" + }, + { + "id": "U6427Z2", + "name": "Uhlířská Lhota,Rasochy,rozc.", + "isMetro": false, + "latitude": 15.397575, + "longitude": 50.089661, + "stopId": "U6427" + }, + { + "id": "U6428Z1", + "name": "Milostín", + "isMetro": false, + "latitude": 13.667858, + "longitude": 50.194016, + "stopId": "U6428" + }, + { + "id": "U6428Z2", + "name": "Milostín", + "isMetro": false, + "latitude": 13.667895, + "longitude": 50.194092, + "stopId": "U6428" + }, + { + "id": "U6429Z1", + "name": "Uhlířská Lhota,Rasochy", + "isMetro": false, + "latitude": 15.407227, + "longitude": 50.089561, + "stopId": "U6429" + }, + { + "id": "U6429Z2", + "name": "Uhlířská Lhota,Rasochy", + "isMetro": false, + "latitude": 15.406849, + "longitude": 50.089565, + "stopId": "U6429" + }, + { + "id": "U642Z1", + "name": "Serpentina", + "isMetro": false, + "latitude": 14.401023, + "longitude": 50.036079, + "stopId": "U642" + }, + { + "id": "U6433Z1", + "name": "Krakovany,křiž.", + "isMetro": false, + "latitude": 15.372849, + "longitude": 50.066315, + "stopId": "U6433" + }, + { + "id": "U6433Z2", + "name": "Krakovany,křiž.", + "isMetro": false, + "latitude": 15.372718, + "longitude": 50.066242, + "stopId": "U6433" + }, + { + "id": "U6435Z1", + "name": "Krakovany,Božec", + "isMetro": false, + "latitude": 15.3649, + "longitude": 50.07439, + "stopId": "U6435" + }, + { + "id": "U6435Z2", + "name": "Krakovany,Božec", + "isMetro": false, + "latitude": 15.364813, + "longitude": 50.074295, + "stopId": "U6435" + }, + { + "id": "U6436Z1", + "name": "Lipec", + "isMetro": false, + "latitude": 15.364929, + "longitude": 50.083622, + "stopId": "U6436" + }, + { + "id": "U6436Z2", + "name": "Lipec", + "isMetro": false, + "latitude": 15.364831, + "longitude": 50.08353, + "stopId": "U6436" + }, + { + "id": "U6438Z1", + "name": "Miličín", + "isMetro": false, + "latitude": 14.659289, + "longitude": 49.572788, + "stopId": "U6438" + }, + { + "id": "U6438Z2", + "name": "Miličín,škola", + "isMetro": false, + "latitude": 14.659392, + "longitude": 49.571968, + "stopId": "U6438" + }, + { + "id": "U6438Z3", + "name": "Miličín,škola", + "isMetro": false, + "latitude": 14.659405, + "longitude": 49.571865, + "stopId": "U6438" + }, + { + "id": "U6438Z4", + "name": "Miličín", + "isMetro": false, + "latitude": 14.658634, + "longitude": 49.57164, + "stopId": "U6438" + }, + { + "id": "U6439Z1", + "name": "Mladá Boleslav,Neuberk", + "isMetro": false, + "latitude": 14.880997, + "longitude": 50.402519, + "stopId": "U6439" + }, + { + "id": "U6439Z2", + "name": "Mladá Boleslav,Neuberk", + "isMetro": false, + "latitude": 14.881289, + "longitude": 50.402611, + "stopId": "U6439" + }, + { + "id": "U643Z1", + "name": "Severozápadní", + "isMetro": false, + "latitude": 14.476438, + "longitude": 50.046913, + "stopId": "U643" + }, + { + "id": "U643Z2", + "name": "Severozápadní", + "isMetro": false, + "latitude": 14.475993, + "longitude": 50.046822, + "stopId": "U643" + }, + { + "id": "U6440Z2", + "name": "Mladá Boleslav,Václava Klementa", + "isMetro": false, + "latitude": 14.915695, + "longitude": 50.42194, + "stopId": "U6440" + }, + { + "id": "U6441Z301", + "name": "Mezno", + "isMetro": false, + "latitude": 14.654257, + "longitude": 49.536694, + "stopId": "U6441" + }, + { + "id": "U6442Z2", + "name": "Mezno,hl.silnice", + "isMetro": false, + "latitude": 14.660302, + "longitude": 49.537663, + "stopId": "U6442" + }, + { + "id": "U6442Z4", + "name": "Mezno,hl.silnice", + "isMetro": false, + "latitude": 14.65874, + "longitude": 49.536694, + "stopId": "U6442" + }, + { + "id": "U6443Z1", + "name": "Mezno,Lažany", + "isMetro": false, + "latitude": 14.663327, + "longitude": 49.5448, + "stopId": "U6443" + }, + { + "id": "U6443Z2", + "name": "Mezno,Lažany", + "isMetro": false, + "latitude": 14.663607, + "longitude": 49.544823, + "stopId": "U6443" + }, + { + "id": "U644Z1", + "name": "Schodová", + "isMetro": false, + "latitude": 14.363236, + "longitude": 50.068241, + "stopId": "U644" + }, + { + "id": "U644Z2", + "name": "Schodová", + "isMetro": false, + "latitude": 14.363872, + "longitude": 50.068241, + "stopId": "U644" + }, + { + "id": "U6457Z1", + "name": "Miličín,rozc.Malovice", + "isMetro": false, + "latitude": 14.696487, + "longitude": 49.563763, + "stopId": "U6457" + }, + { + "id": "U6457Z2", + "name": "Miličín,rozc.Malovice", + "isMetro": false, + "latitude": 14.69654, + "longitude": 49.563812, + "stopId": "U6457" + }, + { + "id": "U645Z1", + "name": "Sibeliova", + "isMetro": false, + "latitude": 14.384204, + "longitude": 50.092781, + "stopId": "U645" + }, + { + "id": "U645Z2", + "name": "Sibeliova", + "isMetro": false, + "latitude": 14.383686, + "longitude": 50.092869, + "stopId": "U645" + }, + { + "id": "U645Z3", + "name": "Sibeliova", + "isMetro": false, + "latitude": 14.384236, + "longitude": 50.092495, + "stopId": "U645" + }, + { + "id": "U645Z4", + "name": "Sibeliova", + "isMetro": false, + "latitude": 14.384641, + "longitude": 50.092552, + "stopId": "U645" + }, + { + "id": "U6460Z1", + "name": "Miličín,Petrovice", + "isMetro": false, + "latitude": 14.718998, + "longitude": 49.553963, + "stopId": "U6460" + }, + { + "id": "U6460Z2", + "name": "Miličín,Petrovice", + "isMetro": false, + "latitude": 14.719314, + "longitude": 49.554005, + "stopId": "U6460" + }, + { + "id": "U6462Z1", + "name": "Miličín,Záhoří", + "isMetro": false, + "latitude": 14.68392, + "longitude": 49.565762, + "stopId": "U6462" + }, + { + "id": "U6462Z2", + "name": "Miličín,Záhoří", + "isMetro": false, + "latitude": 14.683938, + "longitude": 49.565819, + "stopId": "U6462" + }, + { + "id": "U6464Z1", + "name": "Heřmaničky,rozc.Arnoštovice", + "isMetro": false, + "latitude": 14.594103, + "longitude": 49.607399, + "stopId": "U6464" + }, + { + "id": "U6464Z2", + "name": "Heřmaničky,rozc.Arnoštovice", + "isMetro": false, + "latitude": 14.594187, + "longitude": 49.607353, + "stopId": "U6464" + }, + { + "id": "U6465Z1", + "name": "Heřmaničky,rozc.Durdice", + "isMetro": false, + "latitude": 14.58616, + "longitude": 49.608608, + "stopId": "U6465" + }, + { + "id": "U6465Z2", + "name": "Heřmaničky,rozc.Durdice", + "isMetro": false, + "latitude": 14.586231, + "longitude": 49.608559, + "stopId": "U6465" + }, + { + "id": "U6466Z1", + "name": "Heřmaničky,Arnoštovice", + "isMetro": false, + "latitude": 14.603476, + "longitude": 49.614189, + "stopId": "U6466" + }, + { + "id": "U6466Z2", + "name": "Heřmaničky,Arnoštovice", + "isMetro": false, + "latitude": 14.603601, + "longitude": 49.614029, + "stopId": "U6466" + }, + { + "id": "U646Z1", + "name": "Sibiřské náměstí", + "isMetro": false, + "latitude": 14.406, + "longitude": 50.104702, + "stopId": "U646" + }, + { + "id": "U646Z2", + "name": "Sibiřské náměstí", + "isMetro": false, + "latitude": 14.405917, + "longitude": 50.104519, + "stopId": "U646" + }, + { + "id": "U6473Z2", + "name": "Katusice,Valovice,křiž.", + "isMetro": false, + "latitude": 14.749672, + "longitude": 50.459866, + "stopId": "U6473" + }, + { + "id": "U6474Z1", + "name": "Rokytovec", + "isMetro": false, + "latitude": 14.831704, + "longitude": 50.40654, + "stopId": "U6474" + }, + { + "id": "U6474Z2", + "name": "Rokytovec", + "isMetro": false, + "latitude": 14.831653, + "longitude": 50.40646, + "stopId": "U6474" + }, + { + "id": "U6475Z1", + "name": "Heřmaničky,rozc.Dolejší mlýn", + "isMetro": false, + "latitude": 14.609443, + "longitude": 49.615978, + "stopId": "U6475" + }, + { + "id": "U6475Z2", + "name": "Heřmaničky,rozc.Dolejší mlýn", + "isMetro": false, + "latitude": 14.610147, + "longitude": 49.616409, + "stopId": "U6475" + }, + { + "id": "U6478Z1", + "name": "Heřmaničky,Jestřebice", + "isMetro": false, + "latitude": 14.616596, + "longitude": 49.622246, + "stopId": "U6478" + }, + { + "id": "U6478Z2", + "name": "Heřmaničky,Jestřebice", + "isMetro": false, + "latitude": 14.616667, + "longitude": 49.622196, + "stopId": "U6478" + }, + { + "id": "U6479Z1", + "name": "Heřmaničky,rozc.Karasova Lhota", + "isMetro": false, + "latitude": 14.596535, + "longitude": 49.606449, + "stopId": "U6479" + }, + { + "id": "U6479Z2", + "name": "Heřmaničky,rozc.Karasova Lhota", + "isMetro": false, + "latitude": 14.596481, + "longitude": 49.606415, + "stopId": "U6479" + }, + { + "id": "U6481Z1", + "name": "Heřmaničky,Loudilka", + "isMetro": false, + "latitude": 14.574924, + "longitude": 49.598297, + "stopId": "U6481" + }, + { + "id": "U6481Z2", + "name": "Heřmaničky,Loudilka", + "isMetro": false, + "latitude": 14.575089, + "longitude": 49.598259, + "stopId": "U6481" + }, + { + "id": "U6483Z1", + "name": "Smilkov", + "isMetro": false, + "latitude": 14.617486, + "longitude": 49.602264, + "stopId": "U6483" + }, + { + "id": "U6483Z2", + "name": "Smilkov", + "isMetro": false, + "latitude": 14.617599, + "longitude": 49.602264, + "stopId": "U6483" + }, + { + "id": "U6487Z1", + "name": "Smilkov,Oldřichovec", + "isMetro": false, + "latitude": 14.659897, + "longitude": 49.600094, + "stopId": "U6487" + }, + { + "id": "U6487Z2", + "name": "Smilkov,Oldřichovec", + "isMetro": false, + "latitude": 14.659967, + "longitude": 49.600319, + "stopId": "U6487" + }, + { + "id": "U6489Z1", + "name": "Votice,aut.st.", + "isMetro": false, + "latitude": 14.642846, + "longitude": 49.638855, + "stopId": "U6489" + }, + { + "id": "U6489Z2", + "name": "Votice,aut.st.", + "isMetro": false, + "latitude": 14.642948, + "longitude": 49.638809, + "stopId": "U6489" + }, + { + "id": "U6489Z3", + "name": "Votice,aut.st.", + "isMetro": false, + "latitude": 14.64287, + "longitude": 49.638699, + "stopId": "U6489" + }, + { + "id": "U6489Z4", + "name": "Votice,aut.st.", + "isMetro": false, + "latitude": 14.643004, + "longitude": 49.638767, + "stopId": "U6489" + }, + { + "id": "U6489Z5", + "name": "Votice,aut.st.", + "isMetro": false, + "latitude": 14.642951, + "longitude": 49.638676, + "stopId": "U6489" + }, + { + "id": "U6489Z6", + "name": "Votice,aut.st.", + "isMetro": false, + "latitude": 14.643111, + "longitude": 49.638756, + "stopId": "U6489" + }, + { + "id": "U6489Z7", + "name": "Votice,aut.st.", + "isMetro": false, + "latitude": 14.643045, + "longitude": 49.638641, + "stopId": "U6489" + }, + { + "id": "U648Z1", + "name": "Sídliště Bohnice", + "isMetro": false, + "latitude": 14.409617, + "longitude": 50.131802, + "stopId": "U648" + }, + { + "id": "U648Z2", + "name": "Sídliště Bohnice", + "isMetro": false, + "latitude": 14.410096, + "longitude": 50.131584, + "stopId": "U648" + }, + { + "id": "U648Z4", + "name": "Sídliště Bohnice", + "isMetro": false, + "latitude": 14.412117, + "longitude": 50.131451, + "stopId": "U648" + }, + { + "id": "U6490Z1", + "name": "Votice,kino", + "isMetro": false, + "latitude": 14.63783, + "longitude": 49.638016, + "stopId": "U6490" + }, + { + "id": "U6490Z2", + "name": "Votice,kino", + "isMetro": false, + "latitude": 14.638064, + "longitude": 49.637928, + "stopId": "U6490" + }, + { + "id": "U6491Z1", + "name": "Votice,Lidl", + "isMetro": false, + "latitude": 14.649273, + "longitude": 49.637672, + "stopId": "U6491" + }, + { + "id": "U6491Z2", + "name": "Votice,Lidl", + "isMetro": false, + "latitude": 14.648722, + "longitude": 49.637962, + "stopId": "U6491" + }, + { + "id": "U6492Z1", + "name": "Votice,Pražská", + "isMetro": false, + "latitude": 14.639084, + "longitude": 49.642906, + "stopId": "U6492" + }, + { + "id": "U6492Z2", + "name": "Votice,Pražská", + "isMetro": false, + "latitude": 14.638836, + "longitude": 49.643387, + "stopId": "U6492" + }, + { + "id": "U6493Z3", + "name": "Votice,Marila", + "isMetro": false, + "latitude": 14.62601, + "longitude": 49.636063, + "stopId": "U6493" + }, + { + "id": "U6493Z4", + "name": "Votice,Marila", + "isMetro": false, + "latitude": 14.626168, + "longitude": 49.636017, + "stopId": "U6493" + }, + { + "id": "U6497Z1", + "name": "Votice,Buchov", + "isMetro": false, + "latitude": 14.660763, + "longitude": 49.613209, + "stopId": "U6497" + }, + { + "id": "U6497Z2", + "name": "Votice,Buchov", + "isMetro": false, + "latitude": 14.661067, + "longitude": 49.613037, + "stopId": "U6497" + }, + { + "id": "U6499Z1", + "name": "Votice,Hostišov", + "isMetro": false, + "latitude": 14.658257, + "longitude": 49.618397, + "stopId": "U6499" + }, + { + "id": "U6499Z2", + "name": "Votice,Hostišov", + "isMetro": false, + "latitude": 14.658956, + "longitude": 49.617233, + "stopId": "U6499" + }, + { + "id": "U649Z1", + "name": "Poliklinika Mazurská", + "isMetro": false, + "latitude": 14.413306, + "longitude": 50.12746, + "stopId": "U649" + }, + { + "id": "U649Z2", + "name": "Poliklinika Mazurská", + "isMetro": false, + "latitude": 14.413783, + "longitude": 50.127174, + "stopId": "U649" + }, + { + "id": "U649Z3", + "name": "Poliklinika Mazurská", + "isMetro": false, + "latitude": 14.413803, + "longitude": 50.127266, + "stopId": "U649" + }, + { + "id": "U64Z1", + "name": "Čakovice", + "isMetro": false, + "latitude": 14.528819, + "longitude": 50.151806, + "stopId": "U64" + }, + { + "id": "U64Z2", + "name": "Čakovice", + "isMetro": false, + "latitude": 14.530984, + "longitude": 50.151485, + "stopId": "U64" + }, + { + "id": "U64Z3", + "name": "Čakovice", + "isMetro": false, + "latitude": 14.531084, + "longitude": 50.151283, + "stopId": "U64" + }, + { + "id": "U64Z6", + "name": "Čakovice", + "isMetro": false, + "latitude": 14.530662, + "longitude": 50.151176, + "stopId": "U64" + }, + { + "id": "U6502Z1", + "name": "Velký Chlumec,I", + "isMetro": false, + "latitude": 14.086066, + "longitude": 49.831402, + "stopId": "U6502" + }, + { + "id": "U6502Z2", + "name": "Velký Chlumec,I", + "isMetro": false, + "latitude": 14.086246, + "longitude": 49.831459, + "stopId": "U6502" + }, + { + "id": "U6503Z1", + "name": "Velký Chlumec,II", + "isMetro": false, + "latitude": 14.086744, + "longitude": 49.827831, + "stopId": "U6503" + }, + { + "id": "U6503Z2", + "name": "Velký Chlumec,II", + "isMetro": false, + "latitude": 14.086937, + "longitude": 49.827976, + "stopId": "U6503" + }, + { + "id": "U6504Z1", + "name": "Velký Chlumec,Malý Chlumec", + "isMetro": false, + "latitude": 14.085835, + "longitude": 49.820065, + "stopId": "U6504" + }, + { + "id": "U6504Z2", + "name": "Velký Chlumec,Malý Chlumec", + "isMetro": false, + "latitude": 14.086038, + "longitude": 49.820282, + "stopId": "U6504" + }, + { + "id": "U6505Z1", + "name": "Horní Bezděkov,křižovatka", + "isMetro": false, + "latitude": 14.076319, + "longitude": 50.082966, + "stopId": "U6505" + }, + { + "id": "U6505Z2", + "name": "Horní Bezděkov,křižovatka", + "isMetro": false, + "latitude": 14.076837, + "longitude": 50.082817, + "stopId": "U6505" + }, + { + "id": "U6506Z2", + "name": "Nesuchyně", + "isMetro": false, + "latitude": 13.686685, + "longitude": 50.178764, + "stopId": "U6506" + }, + { + "id": "U6508Z1", + "name": "Rakovník,vila Vácha", + "isMetro": false, + "latitude": 13.763433, + "longitude": 50.094372, + "stopId": "U6508" + }, + { + "id": "U6508Z2", + "name": "Rakovník,vila Vácha", + "isMetro": false, + "latitude": 13.763322, + "longitude": 50.094406, + "stopId": "U6508" + }, + { + "id": "U650Z1", + "name": "Ronešova", + "isMetro": false, + "latitude": 14.566183, + "longitude": 50.107155, + "stopId": "U650" + }, + { + "id": "U650Z2", + "name": "Ronešova", + "isMetro": false, + "latitude": 14.565582, + "longitude": 50.107193, + "stopId": "U650" + }, + { + "id": "U6511Z1", + "name": "Votice,rozc.Mladoušov", + "isMetro": false, + "latitude": 14.633207, + "longitude": 49.660442, + "stopId": "U6511" + }, + { + "id": "U6511Z2", + "name": "Votice,rozc.Mladoušov", + "isMetro": false, + "latitude": 14.633413, + "longitude": 49.660702, + "stopId": "U6511" + }, + { + "id": "U6514Z1", + "name": "Votice,Ohrada", + "isMetro": false, + "latitude": 14.669993, + "longitude": 49.638466, + "stopId": "U6514" + }, + { + "id": "U6514Z2", + "name": "Votice,Ohrada", + "isMetro": false, + "latitude": 14.669968, + "longitude": 49.638592, + "stopId": "U6514" + }, + { + "id": "U6515Z1", + "name": "Votice,Otradovice", + "isMetro": false, + "latitude": 14.678443, + "longitude": 49.64122, + "stopId": "U6515" + }, + { + "id": "U6515Z2", + "name": "Votice,Otradovice", + "isMetro": false, + "latitude": 14.678143, + "longitude": 49.641048, + "stopId": "U6515" + }, + { + "id": "U6516Z1", + "name": "Votice,Srbice", + "isMetro": false, + "latitude": 14.632305, + "longitude": 49.650291, + "stopId": "U6516" + }, + { + "id": "U6516Z2", + "name": "Votice,Srbice", + "isMetro": false, + "latitude": 14.632423, + "longitude": 49.65044, + "stopId": "U6516" + }, + { + "id": "U651Z1", + "name": "Sídliště Ďáblice", + "isMetro": false, + "latitude": 14.479489, + "longitude": 50.132706, + "stopId": "U651" + }, + { + "id": "U651Z2", + "name": "Sídliště Ďáblice", + "isMetro": false, + "latitude": 14.479397, + "longitude": 50.13208, + "stopId": "U651" + }, + { + "id": "U651Z5", + "name": "Sídliště Ďáblice", + "isMetro": false, + "latitude": 14.479234, + "longitude": 50.131943, + "stopId": "U651" + }, + { + "id": "U651Z6", + "name": "Sídliště Ďáblice", + "isMetro": false, + "latitude": 14.478403, + "longitude": 50.132721, + "stopId": "U651" + }, + { + "id": "U6525Z1", + "name": "Olbramovice,Ves", + "isMetro": false, + "latitude": 14.638949, + "longitude": 49.671486, + "stopId": "U6525" + }, + { + "id": "U6525Z2", + "name": "Olbramovice,Ves", + "isMetro": false, + "latitude": 14.638971, + "longitude": 49.671555, + "stopId": "U6525" + }, + { + "id": "U6525Z3", + "name": "Olbramovice,u svatých", + "isMetro": false, + "latitude": 14.638521, + "longitude": 49.673157, + "stopId": "U6525" + }, + { + "id": "U6525Z4", + "name": "Olbramovice,u svatých", + "isMetro": false, + "latitude": 14.638698, + "longitude": 49.67337, + "stopId": "U6525" + }, + { + "id": "U6526Z1", + "name": "Olbramovice,STS", + "isMetro": false, + "latitude": 14.628531, + "longitude": 49.662457, + "stopId": "U6526" + }, + { + "id": "U6526Z2", + "name": "Olbramovice,STS", + "isMetro": false, + "latitude": 14.628562, + "longitude": 49.662525, + "stopId": "U6526" + }, + { + "id": "U6527Z3", + "name": "Olbramovice,Veselka", + "isMetro": false, + "latitude": 14.624468, + "longitude": 49.662922, + "stopId": "U6527" + }, + { + "id": "U6527Z4", + "name": "Olbramovice,Veselka", + "isMetro": false, + "latitude": 14.624543, + "longitude": 49.66301, + "stopId": "U6527" + }, + { + "id": "U6528Z1", + "name": "Olbramovice,Křešice", + "isMetro": false, + "latitude": 14.609887, + "longitude": 49.659775, + "stopId": "U6528" + }, + { + "id": "U6528Z2", + "name": "Olbramovice,Křešice", + "isMetro": false, + "latitude": 14.609851, + "longitude": 49.659851, + "stopId": "U6528" + }, + { + "id": "U6529Z1", + "name": "Olbramovice,rozc.Slavkov", + "isMetro": false, + "latitude": 14.592999, + "longitude": 49.682186, + "stopId": "U6529" + }, + { + "id": "U6529Z2", + "name": "Olbramovice,rozc.Slavkov", + "isMetro": false, + "latitude": 14.592957, + "longitude": 49.682102, + "stopId": "U6529" + }, + { + "id": "U652Z1", + "name": "Sídliště Hloubětín", + "isMetro": false, + "latitude": 14.542891, + "longitude": 50.106552, + "stopId": "U652" + }, + { + "id": "U652Z2", + "name": "Sídliště Hloubětín", + "isMetro": false, + "latitude": 14.543568, + "longitude": 50.106537, + "stopId": "U652" + }, + { + "id": "U652Z3", + "name": "Sídliště Hloubětín", + "isMetro": false, + "latitude": 14.542179, + "longitude": 50.106285, + "stopId": "U652" + }, + { + "id": "U652Z4", + "name": "Sídliště Hloubětín", + "isMetro": false, + "latitude": 14.541332, + "longitude": 50.106518, + "stopId": "U652" + }, + { + "id": "U6530Z1", + "name": "Olbramovice,Tomice II", + "isMetro": false, + "latitude": 14.667106, + "longitude": 49.687836, + "stopId": "U6530" + }, + { + "id": "U6530Z2", + "name": "Olbramovice,Tomice II", + "isMetro": false, + "latitude": 14.667033, + "longitude": 49.687592, + "stopId": "U6530" + }, + { + "id": "U6531Z1", + "name": "Olbramovice,rozc.Zahradnice", + "isMetro": false, + "latitude": 14.645378, + "longitude": 49.686241, + "stopId": "U6531" + }, + { + "id": "U6531Z2", + "name": "Olbramovice,rozc.Zahradnice", + "isMetro": false, + "latitude": 14.645165, + "longitude": 49.686256, + "stopId": "U6531" + }, + { + "id": "U6531Z3", + "name": "Olbramovice,rozc.Tomice II", + "isMetro": false, + "latitude": 14.64706, + "longitude": 49.686279, + "stopId": "U6531" + }, + { + "id": "U6531Z4", + "name": "Olbramovice,rozc.Tomice II", + "isMetro": false, + "latitude": 14.646294, + "longitude": 49.686424, + "stopId": "U6531" + }, + { + "id": "U6533Z1", + "name": "Vrchotovy Janovice,Městečko", + "isMetro": false, + "latitude": 14.577351, + "longitude": 49.671551, + "stopId": "U6533" + }, + { + "id": "U6533Z2", + "name": "Vrchotovy Janovice,Městečko", + "isMetro": false, + "latitude": 14.577463, + "longitude": 49.671535, + "stopId": "U6533" + }, + { + "id": "U6534Z1", + "name": "Vrchotovy Janovice,Zrcadlo", + "isMetro": false, + "latitude": 14.584702, + "longitude": 49.677666, + "stopId": "U6534" + }, + { + "id": "U6534Z2", + "name": "Vrchotovy Janovice,Zrcadlo", + "isMetro": false, + "latitude": 14.584774, + "longitude": 49.677635, + "stopId": "U6534" + }, + { + "id": "U6536Z1", + "name": "Vrchotovy Janovice,u sokolovny", + "isMetro": false, + "latitude": 14.577824, + "longitude": 49.66692, + "stopId": "U6536" + }, + { + "id": "U6536Z2", + "name": "Vrchotovy Janovice,u sokolovny", + "isMetro": false, + "latitude": 14.577822, + "longitude": 49.667507, + "stopId": "U6536" + }, + { + "id": "U6539Z1", + "name": "Vrchotovy Janovice,Rudoltice", + "isMetro": false, + "latitude": 14.598242, + "longitude": 49.6926, + "stopId": "U6539" + }, + { + "id": "U6539Z2", + "name": "Vrchotovy Janovice,Rudoltice", + "isMetro": false, + "latitude": 14.598334, + "longitude": 49.692677, + "stopId": "U6539" + }, + { + "id": "U653Z1", + "name": "Sídliště Homolka", + "isMetro": false, + "latitude": 14.351434, + "longitude": 50.0737, + "stopId": "U653" + }, + { + "id": "U653Z2", + "name": "Sídliště Homolka", + "isMetro": false, + "latitude": 14.352083, + "longitude": 50.073566, + "stopId": "U653" + }, + { + "id": "U6542Z1", + "name": "Bystřice,Božkovice,rozc.", + "isMetro": false, + "latitude": 14.607723, + "longitude": 49.701046, + "stopId": "U6542" + }, + { + "id": "U6542Z2", + "name": "Bystřice,Božkovice,rozc.", + "isMetro": false, + "latitude": 14.60778, + "longitude": 49.701004, + "stopId": "U6542" + }, + { + "id": "U6543Z1", + "name": "Bystřice,Drachkov", + "isMetro": false, + "latitude": 14.619852, + "longitude": 49.713676, + "stopId": "U6543" + }, + { + "id": "U6543Z2", + "name": "Bystřice,Drachkov", + "isMetro": false, + "latitude": 14.619965, + "longitude": 49.713661, + "stopId": "U6543" + }, + { + "id": "U6544Z1", + "name": "Bystřice,Drachkov,bytovky", + "isMetro": false, + "latitude": 14.623316, + "longitude": 49.715065, + "stopId": "U6544" + }, + { + "id": "U6544Z2", + "name": "Bystřice,Drachkov,bytovky", + "isMetro": false, + "latitude": 14.623276, + "longitude": 49.714996, + "stopId": "U6544" + }, + { + "id": "U6545Z1", + "name": "Bystřice,Hlivín", + "isMetro": false, + "latitude": 14.722647, + "longitude": 49.68647, + "stopId": "U6545" + }, + { + "id": "U6545Z2", + "name": "Bystřice,Hlivín", + "isMetro": false, + "latitude": 14.722697, + "longitude": 49.686436, + "stopId": "U6545" + }, + { + "id": "U6546Z1", + "name": "Bystřice,Jinošice,rozc.Hutě", + "isMetro": false, + "latitude": 14.687135, + "longitude": 49.707561, + "stopId": "U6546" + }, + { + "id": "U6546Z2", + "name": "Bystřice,Jinošice,rozc.Hutě", + "isMetro": false, + "latitude": 14.687045, + "longitude": 49.707577, + "stopId": "U6546" + }, + { + "id": "U6547Z1", + "name": "Bystřice,Jinošice", + "isMetro": false, + "latitude": 14.688886, + "longitude": 49.704365, + "stopId": "U6547" + }, + { + "id": "U6547Z2", + "name": "Bystřice,Jinošice", + "isMetro": false, + "latitude": 14.688763, + "longitude": 49.70438, + "stopId": "U6547" + }, + { + "id": "U6548Z1", + "name": "Bystřice,Ouběnice,rozc.Jiřín", + "isMetro": false, + "latitude": 14.681771, + "longitude": 49.691628, + "stopId": "U6548" + }, + { + "id": "U6548Z2", + "name": "Bystřice,Ouběnice,rozc.Jiřín", + "isMetro": false, + "latitude": 14.681858, + "longitude": 49.691635, + "stopId": "U6548" + }, + { + "id": "U6549Z1", + "name": "Bystřice,Knihovka", + "isMetro": false, + "latitude": 14.655632, + "longitude": 49.718201, + "stopId": "U6549" + }, + { + "id": "U6549Z2", + "name": "Bystřice,Knihovka", + "isMetro": false, + "latitude": 14.654542, + "longitude": 49.71661, + "stopId": "U6549" + }, + { + "id": "U654Z1", + "name": "Gercenova", + "isMetro": false, + "latitude": 14.543517, + "longitude": 50.050014, + "stopId": "U654" + }, + { + "id": "U654Z2", + "name": "Gercenova", + "isMetro": false, + "latitude": 14.543534, + "longitude": 50.050434, + "stopId": "U654" + }, + { + "id": "U6550Z1", + "name": "Bystřice,rozc.Kobylí", + "isMetro": false, + "latitude": 14.697874, + "longitude": 49.689816, + "stopId": "U6550" + }, + { + "id": "U6550Z2", + "name": "Bystřice,rozc.Kobylí", + "isMetro": false, + "latitude": 14.697727, + "longitude": 49.689743, + "stopId": "U6550" + }, + { + "id": "U6554Z1", + "name": "Bystřice,Nesvačily,vodárna", + "isMetro": false, + "latitude": 14.640653, + "longitude": 49.727852, + "stopId": "U6554" + }, + { + "id": "U6554Z2", + "name": "Bystřice,Nesvačily,vodárna", + "isMetro": false, + "latitude": 14.640725, + "longitude": 49.727879, + "stopId": "U6554" + }, + { + "id": "U6555Z1", + "name": "Bystřice,Opřetice", + "isMetro": false, + "latitude": 14.672989, + "longitude": 49.71365, + "stopId": "U6555" + }, + { + "id": "U6555Z2", + "name": "Bystřice,Opřetice", + "isMetro": false, + "latitude": 14.67288, + "longitude": 49.713581, + "stopId": "U6555" + }, + { + "id": "U6556Z1", + "name": "Bystřice,Ouběnice", + "isMetro": false, + "latitude": 14.68653, + "longitude": 49.693787, + "stopId": "U6556" + }, + { + "id": "U6556Z2", + "name": "Bystřice,Ouběnice", + "isMetro": false, + "latitude": 14.686707, + "longitude": 49.693745, + "stopId": "U6556" + }, + { + "id": "U6557Z1", + "name": "Bystřice,Ouběnice,Dubovka", + "isMetro": false, + "latitude": 14.69206, + "longitude": 49.695435, + "stopId": "U6557" + }, + { + "id": "U6557Z2", + "name": "Bystřice,Ouběnice,Dubovka", + "isMetro": false, + "latitude": 14.692017, + "longitude": 49.695362, + "stopId": "U6557" + }, + { + "id": "U6557Z3", + "name": "Bystřice,Ouběnice,Dubovka", + "isMetro": false, + "latitude": 14.691578, + "longitude": 49.695313, + "stopId": "U6557" + }, + { + "id": "U6557Z4", + "name": "Bystřice,Ouběnice,Dubovka", + "isMetro": false, + "latitude": 14.69146, + "longitude": 49.695343, + "stopId": "U6557" + }, + { + "id": "U6558Z1", + "name": "Bystřice,Petrovice", + "isMetro": false, + "latitude": 14.641627, + "longitude": 49.720314, + "stopId": "U6558" + }, + { + "id": "U6558Z2", + "name": "Bystřice,Petrovice", + "isMetro": false, + "latitude": 14.641714, + "longitude": 49.72031, + "stopId": "U6558" + }, + { + "id": "U6559Z1", + "name": "Bystřice,Radošovice,rozc.", + "isMetro": false, + "latitude": 14.655274, + "longitude": 49.709164, + "stopId": "U6559" + }, + { + "id": "U6559Z2", + "name": "Bystřice,Radošovice,rozc.", + "isMetro": false, + "latitude": 14.65506, + "longitude": 49.709049, + "stopId": "U6559" + }, + { + "id": "U655Z1", + "name": "Invalidovna", + "isMetro": false, + "latitude": 14.465092, + "longitude": 50.097874, + "stopId": "U655" + }, + { + "id": "U655Z101", + "name": "Invalidovna", + "isMetro": true, + "latitude": 14.463438, + "longitude": 50.097014, + "stopId": "U655" + }, + { + "id": "U655Z102", + "name": "Invalidovna", + "isMetro": true, + "latitude": 14.463568, + "longitude": 50.096899, + "stopId": "U655" + }, + { + "id": "U655Z2", + "name": "Invalidovna", + "isMetro": false, + "latitude": 14.465915, + "longitude": 50.098099, + "stopId": "U655" + }, + { + "id": "U6560Z1", + "name": "Bystřice,Strženec", + "isMetro": false, + "latitude": 14.705604, + "longitude": 49.682461, + "stopId": "U6560" + }, + { + "id": "U6560Z2", + "name": "Bystřice,Strženec", + "isMetro": false, + "latitude": 14.705661, + "longitude": 49.682423, + "stopId": "U6560" + }, + { + "id": "U6562Z1", + "name": "Jankov", + "isMetro": false, + "latitude": 14.73058, + "longitude": 49.653099, + "stopId": "U6562" + }, + { + "id": "U6562Z2", + "name": "Jankov", + "isMetro": false, + "latitude": 14.73104, + "longitude": 49.653236, + "stopId": "U6562" + }, + { + "id": "U6563Z1", + "name": "Jankov,pivovar", + "isMetro": false, + "latitude": 14.724815, + "longitude": 49.651695, + "stopId": "U6563" + }, + { + "id": "U6563Z2", + "name": "Jankov,pivovar", + "isMetro": false, + "latitude": 14.724718, + "longitude": 49.651737, + "stopId": "U6563" + }, + { + "id": "U6563Z3", + "name": "Jankov,pivovar", + "isMetro": false, + "latitude": 14.725894, + "longitude": 49.652393, + "stopId": "U6563" + }, + { + "id": "U6563Z4", + "name": "Jankov,pivovar", + "isMetro": false, + "latitude": 14.725978, + "longitude": 49.652378, + "stopId": "U6563" + }, + { + "id": "U6567Z1", + "name": "Jankov,Malostranská", + "isMetro": false, + "latitude": 14.726532, + "longitude": 49.658272, + "stopId": "U6567" + }, + { + "id": "U6567Z2", + "name": "Jankov,Malostranská", + "isMetro": false, + "latitude": 14.726456, + "longitude": 49.658295, + "stopId": "U6567" + }, + { + "id": "U6568Z1", + "name": "Jankov,Jitra", + "isMetro": false, + "latitude": 14.731156, + "longitude": 49.664658, + "stopId": "U6568" + }, + { + "id": "U6568Z2", + "name": "Jankov,Jitra", + "isMetro": false, + "latitude": 14.731002, + "longitude": 49.664677, + "stopId": "U6568" + }, + { + "id": "U656Z1", + "name": "Sídliště Krč", + "isMetro": false, + "latitude": 14.451305, + "longitude": 50.022778, + "stopId": "U656" + }, + { + "id": "U656Z2", + "name": "Sídliště Krč", + "isMetro": false, + "latitude": 14.45149, + "longitude": 50.023178, + "stopId": "U656" + }, + { + "id": "U6570Z1", + "name": "Jankov,Odlochovice", + "isMetro": false, + "latitude": 14.763784, + "longitude": 49.628098, + "stopId": "U6570" + }, + { + "id": "U6570Z2", + "name": "Jankov,Odlochovice", + "isMetro": false, + "latitude": 14.763926, + "longitude": 49.628212, + "stopId": "U6570" + }, + { + "id": "U6571Z1", + "name": "Jankov,Otradovice", + "isMetro": false, + "latitude": 14.702169, + "longitude": 49.648823, + "stopId": "U6571" + }, + { + "id": "U6571Z2", + "name": "Jankov,Otradovice", + "isMetro": false, + "latitude": 14.701612, + "longitude": 49.648891, + "stopId": "U6571" + }, + { + "id": "U6572Z1", + "name": "Jankov,Pičín", + "isMetro": false, + "latitude": 14.736574, + "longitude": 49.676811, + "stopId": "U6572" + }, + { + "id": "U6572Z2", + "name": "Jankov,Pičín", + "isMetro": false, + "latitude": 14.736464, + "longitude": 49.67675, + "stopId": "U6572" + }, + { + "id": "U6573Z1", + "name": "Ratměřice", + "isMetro": false, + "latitude": 14.755568, + "longitude": 49.643223, + "stopId": "U6573" + }, + { + "id": "U6573Z2", + "name": "Ratměřice", + "isMetro": false, + "latitude": 14.755216, + "longitude": 49.643219, + "stopId": "U6573" + }, + { + "id": "U6574Z1", + "name": "Ratměřice,Habrovka", + "isMetro": false, + "latitude": 14.743488, + "longitude": 49.643295, + "stopId": "U6574" + }, + { + "id": "U6574Z2", + "name": "Ratměřice,Habrovka", + "isMetro": false, + "latitude": 14.743548, + "longitude": 49.643421, + "stopId": "U6574" + }, + { + "id": "U6575Z1", + "name": "Ratměřice,u hřiště", + "isMetro": false, + "latitude": 14.749588, + "longitude": 49.640961, + "stopId": "U6575" + }, + { + "id": "U6575Z2", + "name": "Ratměřice,u hřiště", + "isMetro": false, + "latitude": 14.749656, + "longitude": 49.641041, + "stopId": "U6575" + }, + { + "id": "U657Z1", + "name": "Sídliště Lehovec", + "isMetro": false, + "latitude": 14.548934, + "longitude": 50.103252, + "stopId": "U657" + }, + { + "id": "U657Z2", + "name": "Sídliště Lehovec", + "isMetro": false, + "latitude": 14.548351, + "longitude": 50.103268, + "stopId": "U657" + }, + { + "id": "U6584Z1", + "name": "Zvěstov", + "isMetro": false, + "latitude": 14.794068, + "longitude": 49.633823, + "stopId": "U6584" + }, + { + "id": "U6584Z2", + "name": "Zvěstov", + "isMetro": false, + "latitude": 14.794071, + "longitude": 49.633953, + "stopId": "U6584" + }, + { + "id": "U6585Z1", + "name": "Zvěstov,Libouň", + "isMetro": false, + "latitude": 14.818972, + "longitude": 49.634285, + "stopId": "U6585" + }, + { + "id": "U6585Z2", + "name": "Zvěstov,Libouň", + "isMetro": false, + "latitude": 14.818517, + "longitude": 49.634224, + "stopId": "U6585" + }, + { + "id": "U6588Z1", + "name": "Zvěstov,rozc.Vestec", + "isMetro": false, + "latitude": 14.804646, + "longitude": 49.633492, + "stopId": "U6588" + }, + { + "id": "U6588Z2", + "name": "Zvěstov,rozc.Vestec", + "isMetro": false, + "latitude": 14.805039, + "longitude": 49.633568, + "stopId": "U6588" + }, + { + "id": "U6589Z1", + "name": "Kamberk", + "isMetro": false, + "latitude": 14.840043, + "longitude": 49.596981, + "stopId": "U6589" + }, + { + "id": "U6589Z2", + "name": "Kamberk", + "isMetro": false, + "latitude": 14.840081, + "longitude": 49.597107, + "stopId": "U6589" + }, + { + "id": "U658Z1", + "name": "Sídliště Lhotka", + "isMetro": false, + "latitude": 14.432684, + "longitude": 50.017151, + "stopId": "U658" + }, + { + "id": "U658Z2", + "name": "Sídliště Lhotka", + "isMetro": false, + "latitude": 14.43311, + "longitude": 50.017036, + "stopId": "U658" + }, + { + "id": "U658Z4", + "name": "Sídliště Lhotka", + "isMetro": false, + "latitude": 14.435289, + "longitude": 50.016674, + "stopId": "U658" + }, + { + "id": "U658Z5", + "name": "Sídliště Lhotka", + "isMetro": false, + "latitude": 14.435134, + "longitude": 50.017017, + "stopId": "U658" + }, + { + "id": "U658Z6", + "name": "Sídliště Lhotka", + "isMetro": false, + "latitude": 14.436012, + "longitude": 50.018227, + "stopId": "U658" + }, + { + "id": "U6590Z1", + "name": "Kamberk,Předbořice", + "isMetro": false, + "latitude": 14.829824, + "longitude": 49.606213, + "stopId": "U6590" + }, + { + "id": "U6590Z2", + "name": "Kamberk,Předbořice", + "isMetro": false, + "latitude": 14.829885, + "longitude": 49.60638, + "stopId": "U6590" + }, + { + "id": "U6591Z1", + "name": "Veliš", + "isMetro": false, + "latitude": 14.823491, + "longitude": 49.66885, + "stopId": "U6591" + }, + { + "id": "U6591Z2", + "name": "Veliš", + "isMetro": false, + "latitude": 14.823431, + "longitude": 49.668694, + "stopId": "U6591" + }, + { + "id": "U6592Z1", + "name": "Veliš,Sedlečko,rozc.", + "isMetro": false, + "latitude": 14.817699, + "longitude": 49.663288, + "stopId": "U6592" + }, + { + "id": "U6592Z2", + "name": "Veliš,Sedlečko,rozc.", + "isMetro": false, + "latitude": 14.817516, + "longitude": 49.663319, + "stopId": "U6592" + }, + { + "id": "U659Z1", + "name": "Sídliště Libuš", + "isMetro": false, + "latitude": 14.454284, + "longitude": 50.006149, + "stopId": "U659" + }, + { + "id": "U659Z2", + "name": "Sídliště Libuš", + "isMetro": false, + "latitude": 14.45421, + "longitude": 50.006023, + "stopId": "U659" + }, + { + "id": "U659Z3", + "name": "Sídliště Libuš", + "isMetro": false, + "latitude": 14.453671, + "longitude": 50.006008, + "stopId": "U659" + }, + { + "id": "U659Z4", + "name": "Sídliště Libuš", + "isMetro": false, + "latitude": 14.454156, + "longitude": 50.005928, + "stopId": "U659" + }, + { + "id": "U65Z1", + "name": "Čakovická", + "isMetro": false, + "latitude": 14.51895, + "longitude": 50.119019, + "stopId": "U65" + }, + { + "id": "U65Z2", + "name": "Čakovická", + "isMetro": false, + "latitude": 14.518501, + "longitude": 50.119133, + "stopId": "U65" + }, + { + "id": "U6600Z1", + "name": "Radovesnice II,u mostu", + "isMetro": false, + "latitude": 15.369404, + "longitude": 50.102364, + "stopId": "U6600" + }, + { + "id": "U6600Z2", + "name": "Radovesnice II,u mostu", + "isMetro": false, + "latitude": 15.369459, + "longitude": 50.102516, + "stopId": "U6600" + }, + { + "id": "U6601Z1", + "name": "Radovesnice II", + "isMetro": false, + "latitude": 15.368469, + "longitude": 50.105843, + "stopId": "U6601" + }, + { + "id": "U6601Z2", + "name": "Radovesnice II", + "isMetro": false, + "latitude": 15.368264, + "longitude": 50.10585, + "stopId": "U6601" + }, + { + "id": "U6603Z1", + "name": "Žiželice,Končice", + "isMetro": false, + "latitude": 15.385898, + "longitude": 50.132927, + "stopId": "U6603" + }, + { + "id": "U6603Z2", + "name": "Žiželice,Končice", + "isMetro": false, + "latitude": 15.385608, + "longitude": 50.132912, + "stopId": "U6603" + }, + { + "id": "U6604Z1", + "name": "Žiželice,nám.", + "isMetro": false, + "latitude": 15.392723, + "longitude": 50.13168, + "stopId": "U6604" + }, + { + "id": "U6606Z1", + "name": "Žiželice,Loukonosy", + "isMetro": false, + "latitude": 15.422583, + "longitude": 50.126671, + "stopId": "U6606" + }, + { + "id": "U6606Z2", + "name": "Žiželice,Loukonosy", + "isMetro": false, + "latitude": 15.422636, + "longitude": 50.126736, + "stopId": "U6606" + }, + { + "id": "U6607Z1", + "name": "Žiželice,Hradišťko II", + "isMetro": false, + "latitude": 15.421108, + "longitude": 50.117924, + "stopId": "U6607" + }, + { + "id": "U6607Z2", + "name": "Žiželice,Hradišťko II", + "isMetro": false, + "latitude": 15.421006, + "longitude": 50.118011, + "stopId": "U6607" + }, + { + "id": "U6608Z1", + "name": "Kolín,Na Louži", + "isMetro": false, + "latitude": 15.206945, + "longitude": 50.032913, + "stopId": "U6608" + }, + { + "id": "U6608Z2", + "name": "Kolín,Na Louži", + "isMetro": false, + "latitude": 15.206693, + "longitude": 50.033127, + "stopId": "U6608" + }, + { + "id": "U6609Z1", + "name": "Kolín,Tatradomy", + "isMetro": false, + "latitude": 15.208299, + "longitude": 50.034836, + "stopId": "U6609" + }, + { + "id": "U6609Z2", + "name": "Kolín,Tatradomy", + "isMetro": false, + "latitude": 15.2082, + "longitude": 50.035057, + "stopId": "U6609" + }, + { + "id": "U660Z1", + "name": "Sídliště Malešice", + "isMetro": false, + "latitude": 14.506446, + "longitude": 50.082668, + "stopId": "U660" + }, + { + "id": "U660Z2", + "name": "Sídliště Malešice", + "isMetro": false, + "latitude": 14.506818, + "longitude": 50.082935, + "stopId": "U660" + }, + { + "id": "U660Z4", + "name": "Sídliště Malešice", + "isMetro": false, + "latitude": 14.508301, + "longitude": 50.083168, + "stopId": "U660" + }, + { + "id": "U660Z5", + "name": "Sídliště Malešice", + "isMetro": false, + "latitude": 14.509672, + "longitude": 50.083038, + "stopId": "U660" + }, + { + "id": "U660Z6", + "name": "Sídliště Malešice", + "isMetro": false, + "latitude": 14.508826, + "longitude": 50.082928, + "stopId": "U660" + }, + { + "id": "U6610Z1", + "name": "Kolín,Strojírny", + "isMetro": false, + "latitude": 15.213579, + "longitude": 50.041115, + "stopId": "U6610" + }, + { + "id": "U6610Z2", + "name": "Kolín,Strojírny", + "isMetro": false, + "latitude": 15.213355, + "longitude": 50.0411, + "stopId": "U6610" + }, + { + "id": "U6611Z1", + "name": "Kolín,Sendražice,rozc.0.2", + "isMetro": false, + "latitude": 15.220622, + "longitude": 50.049419, + "stopId": "U6611" + }, + { + "id": "U6611Z2", + "name": "Kolín,Sendražice,rozc.0.2", + "isMetro": false, + "latitude": 15.219069, + "longitude": 50.047852, + "stopId": "U6611" + }, + { + "id": "U6612Z1", + "name": "Ovčáry,ZD", + "isMetro": false, + "latitude": 15.232116, + "longitude": 50.060162, + "stopId": "U6612" + }, + { + "id": "U6612Z2", + "name": "Ovčáry,ZD", + "isMetro": false, + "latitude": 15.231724, + "longitude": 50.060017, + "stopId": "U6612" + }, + { + "id": "U6613Z1", + "name": "Ovčáry", + "isMetro": false, + "latitude": 15.23884, + "longitude": 50.062828, + "stopId": "U6613" + }, + { + "id": "U6613Z2", + "name": "Ovčáry", + "isMetro": false, + "latitude": 15.238991, + "longitude": 50.062992, + "stopId": "U6613" + }, + { + "id": "U6614Z1", + "name": "Jestřabí Lhota", + "isMetro": false, + "latitude": 15.260509, + "longitude": 50.089836, + "stopId": "U6614" + }, + { + "id": "U6614Z2", + "name": "Jestřabí Lhota", + "isMetro": false, + "latitude": 15.260599, + "longitude": 50.089916, + "stopId": "U6614" + }, + { + "id": "U6615Z2", + "name": "Sány", + "isMetro": false, + "latitude": 15.247345, + "longitude": 50.12532, + "stopId": "U6615" + }, + { + "id": "U6616Z2", + "name": "Opolany,Opolánky,k žel.zast.", + "isMetro": false, + "latitude": 15.240539, + "longitude": 50.132313, + "stopId": "U6616" + }, + { + "id": "U6619Z1", + "name": "Dobšice", + "isMetro": false, + "latitude": 15.269534, + "longitude": 50.134239, + "stopId": "U6619" + }, + { + "id": "U6619Z2", + "name": "Dobšice", + "isMetro": false, + "latitude": 15.269428, + "longitude": 50.134327, + "stopId": "U6619" + }, + { + "id": "U661Z1", + "name": "Sídliště Na Dědině", + "isMetro": false, + "latitude": 14.309918, + "longitude": 50.089775, + "stopId": "U661" + }, + { + "id": "U661Z2", + "name": "Sídliště Na Dědině", + "isMetro": false, + "latitude": 14.309441, + "longitude": 50.089649, + "stopId": "U661" + }, + { + "id": "U661Z3", + "name": "Sídliště Na Dědině", + "isMetro": false, + "latitude": 14.309131, + "longitude": 50.089504, + "stopId": "U661" + }, + { + "id": "U6620Z1", + "name": "Žehuň", + "isMetro": false, + "latitude": 15.29249, + "longitude": 50.135227, + "stopId": "U6620" + }, + { + "id": "U6620Z2", + "name": "Žehuň", + "isMetro": false, + "latitude": 15.292327, + "longitude": 50.135227, + "stopId": "U6620" + }, + { + "id": "U6623Z1", + "name": "Žiželice,Zbraň", + "isMetro": false, + "latitude": 15.363682, + "longitude": 50.137268, + "stopId": "U6623" + }, + { + "id": "U6623Z2", + "name": "Žiželice,Zbraň", + "isMetro": false, + "latitude": 15.363598, + "longitude": 50.137325, + "stopId": "U6623" + }, + { + "id": "U6624Z1", + "name": "Svatý Mikuláš,zámek Kačina", + "isMetro": false, + "latitude": 15.347099, + "longitude": 49.984337, + "stopId": "U6624" + }, + { + "id": "U6624Z2", + "name": "Svatý Mikuláš,zámek Kačina", + "isMetro": false, + "latitude": 15.347234, + "longitude": 49.984371, + "stopId": "U6624" + }, + { + "id": "U6625Z1", + "name": "Okřínek,hl.sil.", + "isMetro": false, + "latitude": 15.192709, + "longitude": 50.164707, + "stopId": "U6625" + }, + { + "id": "U6625Z2", + "name": "Okřínek,hl.sil.", + "isMetro": false, + "latitude": 15.192497, + "longitude": 50.164719, + "stopId": "U6625" + }, + { + "id": "U6625Z3", + "name": "Okřínek,prodejna", + "isMetro": false, + "latitude": 15.192635, + "longitude": 50.164207, + "stopId": "U6625" + }, + { + "id": "U6625Z4", + "name": "Okřínek,prodejna", + "isMetro": false, + "latitude": 15.1926, + "longitude": 50.164345, + "stopId": "U6625" + }, + { + "id": "U6626Z1", + "name": "Vrbice,u váhy", + "isMetro": false, + "latitude": 15.228481, + "longitude": 50.180256, + "stopId": "U6626" + }, + { + "id": "U6626Z2", + "name": "Vrbice,u váhy", + "isMetro": false, + "latitude": 15.228434, + "longitude": 50.180313, + "stopId": "U6626" + }, + { + "id": "U6626Z3", + "name": "Vrbice,kult.dům", + "isMetro": false, + "latitude": 15.227109, + "longitude": 50.179718, + "stopId": "U6626" + }, + { + "id": "U6626Z4", + "name": "Vrbice,kult.dům", + "isMetro": false, + "latitude": 15.226871, + "longitude": 50.179676, + "stopId": "U6626" + }, + { + "id": "U6627Z1", + "name": "Vrbice,u kostela", + "isMetro": false, + "latitude": 15.232753, + "longitude": 50.183201, + "stopId": "U6627" + }, + { + "id": "U6627Z2", + "name": "Vrbice,u kostela", + "isMetro": false, + "latitude": 15.232669, + "longitude": 50.183178, + "stopId": "U6627" + }, + { + "id": "U662Z1", + "name": "Sídliště Novodvorská", + "isMetro": false, + "latitude": 14.434504, + "longitude": 50.024918, + "stopId": "U662" + }, + { + "id": "U662Z2", + "name": "Sídliště Novodvorská", + "isMetro": false, + "latitude": 14.434284, + "longitude": 50.025299, + "stopId": "U662" + }, + { + "id": "U6630Z1", + "name": "Podmoky,u kovárny", + "isMetro": false, + "latitude": 15.233669, + "longitude": 50.191902, + "stopId": "U6630" + }, + { + "id": "U6630Z2", + "name": "Podmoky,u kovárny", + "isMetro": false, + "latitude": 15.233503, + "longitude": 50.191689, + "stopId": "U6630" + }, + { + "id": "U6631Z1", + "name": "Městec Králové,nem.", + "isMetro": false, + "latitude": 15.289676, + "longitude": 50.204967, + "stopId": "U6631" + }, + { + "id": "U6631Z2", + "name": "Městec Králové,nem.", + "isMetro": false, + "latitude": 15.289207, + "longitude": 50.204956, + "stopId": "U6631" + }, + { + "id": "U6633Z1", + "name": "Býchory", + "isMetro": false, + "latitude": 15.274131, + "longitude": 50.067425, + "stopId": "U6633" + }, + { + "id": "U6633Z2", + "name": "Býchory", + "isMetro": false, + "latitude": 15.273759, + "longitude": 50.067577, + "stopId": "U6633" + }, + { + "id": "U6635Z1", + "name": "Němčice", + "isMetro": false, + "latitude": 15.294155, + "longitude": 50.084213, + "stopId": "U6635" + }, + { + "id": "U6635Z2", + "name": "Němčice", + "isMetro": false, + "latitude": 15.294008, + "longitude": 50.084217, + "stopId": "U6635" + }, + { + "id": "U6636Z1", + "name": "Ohaře", + "isMetro": false, + "latitude": 15.294908, + "longitude": 50.097858, + "stopId": "U6636" + }, + { + "id": "U6636Z2", + "name": "Ohaře", + "isMetro": false, + "latitude": 15.29474, + "longitude": 50.097786, + "stopId": "U6636" + }, + { + "id": "U6637Z1", + "name": "Polní Chrčice", + "isMetro": false, + "latitude": 15.296141, + "longitude": 50.110069, + "stopId": "U6637" + }, + { + "id": "U6637Z2", + "name": "Polní Chrčice", + "isMetro": false, + "latitude": 15.296076, + "longitude": 50.110168, + "stopId": "U6637" + }, + { + "id": "U6638Z1", + "name": "Dománovice", + "isMetro": false, + "latitude": 15.322599, + "longitude": 50.111664, + "stopId": "U6638" + }, + { + "id": "U6638Z2", + "name": "Dománovice", + "isMetro": false, + "latitude": 15.322728, + "longitude": 50.11174, + "stopId": "U6638" + }, + { + "id": "U6639Z1", + "name": "Konárovice", + "isMetro": false, + "latitude": 15.281422, + "longitude": 50.037754, + "stopId": "U6639" + }, + { + "id": "U6639Z2", + "name": "Konárovice", + "isMetro": false, + "latitude": 15.281317, + "longitude": 50.037621, + "stopId": "U6639" + }, + { + "id": "U663Z1", + "name": "Sídliště Pankrác", + "isMetro": false, + "latitude": 14.434033, + "longitude": 50.048901, + "stopId": "U663" + }, + { + "id": "U663Z2", + "name": "Sídliště Pankrác", + "isMetro": false, + "latitude": 14.434896, + "longitude": 50.04958, + "stopId": "U663" + }, + { + "id": "U663Z3", + "name": "Sídliště Pankrác", + "isMetro": false, + "latitude": 14.435685, + "longitude": 50.048672, + "stopId": "U663" + }, + { + "id": "U663Z4", + "name": "Sídliště Pankrác", + "isMetro": false, + "latitude": 14.435393, + "longitude": 50.048775, + "stopId": "U663" + }, + { + "id": "U6640Z1", + "name": "Konárovice,ObÚ", + "isMetro": false, + "latitude": 15.286406, + "longitude": 50.041367, + "stopId": "U6640" + }, + { + "id": "U6640Z2", + "name": "Konárovice,ObÚ", + "isMetro": false, + "latitude": 15.286275, + "longitude": 50.041382, + "stopId": "U6640" + }, + { + "id": "U6641Z1", + "name": "Konárovice,Jelen", + "isMetro": false, + "latitude": 15.291856, + "longitude": 50.053734, + "stopId": "U6641" + }, + { + "id": "U6641Z2", + "name": "Konárovice,Jelen", + "isMetro": false, + "latitude": 15.291683, + "longitude": 50.053707, + "stopId": "U6641" + }, + { + "id": "U6642Z1", + "name": "Bělušice", + "isMetro": false, + "latitude": 15.321495, + "longitude": 50.068707, + "stopId": "U6642" + }, + { + "id": "U6642Z2", + "name": "Bělušice", + "isMetro": false, + "latitude": 15.321477, + "longitude": 50.068832, + "stopId": "U6642" + }, + { + "id": "U6643Z1", + "name": "Bělušice,Na Dolejšku", + "isMetro": false, + "latitude": 15.326368, + "longitude": 50.064014, + "stopId": "U6643" + }, + { + "id": "U6643Z2", + "name": "Bělušice,Na Dolejšku", + "isMetro": false, + "latitude": 15.326414, + "longitude": 50.064068, + "stopId": "U6643" + }, + { + "id": "U6645Z2", + "name": "Kolín,PZKO-TOYOTA", + "isMetro": false, + "latitude": 15.233304, + "longitude": 50.069035, + "stopId": "U6645" + }, + { + "id": "U6646Z2", + "name": "Kolín,PZKO - Thermo King", + "isMetro": false, + "latitude": 15.243503, + "longitude": 50.072598, + "stopId": "U6646" + }, + { + "id": "U6647Z1", + "name": "Volárna", + "isMetro": false, + "latitude": 15.241527, + "longitude": 50.091606, + "stopId": "U6647" + }, + { + "id": "U6647Z2", + "name": "Volárna", + "isMetro": false, + "latitude": 15.241881, + "longitude": 50.091759, + "stopId": "U6647" + }, + { + "id": "U664Z1", + "name": "Děkanka", + "isMetro": false, + "latitude": 14.430867, + "longitude": 50.0536, + "stopId": "U664" + }, + { + "id": "U664Z2", + "name": "Děkanka", + "isMetro": false, + "latitude": 14.431072, + "longitude": 50.053093, + "stopId": "U664" + }, + { + "id": "U6652Z1", + "name": "Choťovice", + "isMetro": false, + "latitude": 15.320456, + "longitude": 50.141285, + "stopId": "U6652" + }, + { + "id": "U6652Z2", + "name": "Choťovice", + "isMetro": false, + "latitude": 15.320392, + "longitude": 50.141418, + "stopId": "U6652" + }, + { + "id": "U6654Z1", + "name": "Svatý Mikuláš,Svatá Kateřina,ObÚ", + "isMetro": false, + "latitude": 15.336246, + "longitude": 50.002319, + "stopId": "U6654" + }, + { + "id": "U6744Z1", + "name": "Velenice", + "isMetro": false, + "latitude": 15.226358, + "longitude": 50.214931, + "stopId": "U6744" + }, + { + "id": "U6654Z2", + "name": "Svatý Mikuláš,Svatá Kateřina,ObÚ", + "isMetro": false, + "latitude": 15.335995, + "longitude": 50.002285, + "stopId": "U6654" + }, + { + "id": "U6659Z1", + "name": "Kutná Hora,Malín,Novodvorská", + "isMetro": false, + "latitude": 15.305372, + "longitude": 49.966637, + "stopId": "U6659" + }, + { + "id": "U6659Z2", + "name": "Kutná Hora,Malín,Novodvorská", + "isMetro": false, + "latitude": 15.305829, + "longitude": 49.966908, + "stopId": "U6659" + }, + { + "id": "U665Z1", + "name": "Sídliště Prosek", + "isMetro": false, + "latitude": 14.49404, + "longitude": 50.122063, + "stopId": "U665" + }, + { + "id": "U665Z2", + "name": "Sídliště Prosek", + "isMetro": false, + "latitude": 14.493425, + "longitude": 50.122932, + "stopId": "U665" + }, + { + "id": "U6660Z1", + "name": "Nové Dvory", + "isMetro": false, + "latitude": 15.323893, + "longitude": 49.970413, + "stopId": "U6660" + }, + { + "id": "U6660Z2", + "name": "Nové Dvory", + "isMetro": false, + "latitude": 15.323945, + "longitude": 49.970558, + "stopId": "U6660" + }, + { + "id": "U6661Z1", + "name": "Svatý Mikuláš,rozc.Rohozec", + "isMetro": false, + "latitude": 15.3496, + "longitude": 49.980305, + "stopId": "U6661" + }, + { + "id": "U6661Z2", + "name": "Svatý Mikuláš,rozc.Rohozec", + "isMetro": false, + "latitude": 15.349796, + "longitude": 49.979572, + "stopId": "U6661" + }, + { + "id": "U6662Z1", + "name": "Svatý Mikuláš,Svatá Kateřina,bioplyn.st.", + "isMetro": false, + "latitude": 15.336429, + "longitude": 49.990944, + "stopId": "U6662" + }, + { + "id": "U6662Z2", + "name": "Svatý Mikuláš,Svatá Kateřina,bioplyn.st.", + "isMetro": false, + "latitude": 15.336515, + "longitude": 49.990795, + "stopId": "U6662" + }, + { + "id": "U6663Z1", + "name": "Záboří n.L.,Na Písku", + "isMetro": false, + "latitude": 15.351446, + "longitude": 50.024597, + "stopId": "U6663" + }, + { + "id": "U6663Z2", + "name": "Záboří n.L.,Na Písku", + "isMetro": false, + "latitude": 15.351435, + "longitude": 50.024712, + "stopId": "U6663" + }, + { + "id": "U6666Z1", + "name": "Kolín,Tylova", + "isMetro": false, + "latitude": 15.214984, + "longitude": 50.019577, + "stopId": "U6666" + }, + { + "id": "U6666Z2", + "name": "Kolín,Tylova", + "isMetro": false, + "latitude": 15.213601, + "longitude": 50.020882, + "stopId": "U6666" + }, + { + "id": "U6667Z1", + "name": "Kolín,Tesla", + "isMetro": false, + "latitude": 15.219028, + "longitude": 50.016506, + "stopId": "U6667" + }, + { + "id": "U6667Z2", + "name": "Kolín,Tesla", + "isMetro": false, + "latitude": 15.217667, + "longitude": 50.017796, + "stopId": "U6667" + }, + { + "id": "U666Z1", + "name": "Sídliště Radotín", + "isMetro": false, + "latitude": 14.353333, + "longitude": 49.980251, + "stopId": "U666" + }, + { + "id": "U666Z2", + "name": "Sídliště Radotín", + "isMetro": false, + "latitude": 14.35375, + "longitude": 49.980167, + "stopId": "U666" + }, + { + "id": "U6670Z1", + "name": "Nebovidy,ObÚ", + "isMetro": false, + "latitude": 15.219136, + "longitude": 49.991428, + "stopId": "U6670" + }, + { + "id": "U6670Z2", + "name": "Nebovidy,ObÚ", + "isMetro": false, + "latitude": 15.219887, + "longitude": 49.991367, + "stopId": "U6670" + }, + { + "id": "U6671Z1", + "name": "Nebovidy,hřbitov", + "isMetro": false, + "latitude": 15.214129, + "longitude": 49.982792, + "stopId": "U6671" + }, + { + "id": "U6671Z2", + "name": "Nebovidy,hřbitov", + "isMetro": false, + "latitude": 15.214205, + "longitude": 49.98283, + "stopId": "U6671" + }, + { + "id": "U6672Z1", + "name": "Červené Pečky,škola", + "isMetro": false, + "latitude": 15.213508, + "longitude": 49.979717, + "stopId": "U6672" + }, + { + "id": "U6673Z1", + "name": "Červené Pečky,nám.", + "isMetro": false, + "latitude": 15.210785, + "longitude": 49.979073, + "stopId": "U6673" + }, + { + "id": "U6673Z2", + "name": "Červené Pečky,nám.", + "isMetro": false, + "latitude": 15.210878, + "longitude": 49.978931, + "stopId": "U6673" + }, + { + "id": "U6674Z1", + "name": "Červené Pečky,Horní", + "isMetro": false, + "latitude": 15.20557, + "longitude": 49.975021, + "stopId": "U6674" + }, + { + "id": "U6674Z2", + "name": "Červené Pečky,Horní", + "isMetro": false, + "latitude": 15.205744, + "longitude": 49.975151, + "stopId": "U6674" + }, + { + "id": "U6675Z1", + "name": "Červené Pečky,Bojiště", + "isMetro": false, + "latitude": 15.20172, + "longitude": 49.971928, + "stopId": "U6675" + }, + { + "id": "U6675Z2", + "name": "Červené Pečky,Bojiště", + "isMetro": false, + "latitude": 15.201824, + "longitude": 49.971878, + "stopId": "U6675" + }, + { + "id": "U6676Z1", + "name": "Červené Pečky,Opatovice", + "isMetro": false, + "latitude": 15.19448, + "longitude": 49.966972, + "stopId": "U6676" + }, + { + "id": "U6676Z2", + "name": "Červené Pečky,Opatovice", + "isMetro": false, + "latitude": 15.194612, + "longitude": 49.967033, + "stopId": "U6676" + }, + { + "id": "U6677Z1", + "name": "Polepy", + "isMetro": false, + "latitude": 15.205113, + "longitude": 50.005356, + "stopId": "U6677" + }, + { + "id": "U6677Z2", + "name": "Polepy", + "isMetro": false, + "latitude": 15.207222, + "longitude": 50.003693, + "stopId": "U6677" + }, + { + "id": "U6678Z1", + "name": "Červené Pečky,Dobešovice", + "isMetro": false, + "latitude": 15.198813, + "longitude": 49.983009, + "stopId": "U6678" + }, + { + "id": "U6678Z2", + "name": "Červené Pečky,Dobešovice", + "isMetro": false, + "latitude": 15.198862, + "longitude": 49.983067, + "stopId": "U6678" + }, + { + "id": "U6679Z1", + "name": "Červené Pečky,Amálka", + "isMetro": false, + "latitude": 15.208197, + "longitude": 49.980453, + "stopId": "U6679" + }, + { + "id": "U6679Z2", + "name": "Červené Pečky,Amálka", + "isMetro": false, + "latitude": 15.207887, + "longitude": 49.980587, + "stopId": "U6679" + }, + { + "id": "U667Z1", + "name": "Nevanova", + "isMetro": false, + "latitude": 14.311522, + "longitude": 50.066055, + "stopId": "U667" + }, + { + "id": "U667Z2", + "name": "Nevanova", + "isMetro": false, + "latitude": 14.311168, + "longitude": 50.066315, + "stopId": "U667" + }, + { + "id": "U6680Z1", + "name": "Červené Pečky,Dolany", + "isMetro": false, + "latitude": 15.229648, + "longitude": 49.980309, + "stopId": "U6680" + }, + { + "id": "U6680Z2", + "name": "Červené Pečky,Dolany", + "isMetro": false, + "latitude": 15.230058, + "longitude": 49.980377, + "stopId": "U6680" + }, + { + "id": "U6681Z1", + "name": "Červené Pečky,Čertovka", + "isMetro": false, + "latitude": 15.234356, + "longitude": 49.979416, + "stopId": "U6681" + }, + { + "id": "U6681Z2", + "name": "Červené Pečky,Čertovka", + "isMetro": false, + "latitude": 15.23433, + "longitude": 49.979473, + "stopId": "U6681" + }, + { + "id": "U6682Z1", + "name": "Miskovice,Hořany", + "isMetro": false, + "latitude": 15.236062, + "longitude": 49.972828, + "stopId": "U6682" + }, + { + "id": "U6682Z2", + "name": "Miskovice,Hořany", + "isMetro": false, + "latitude": 15.236149, + "longitude": 49.972862, + "stopId": "U6682" + }, + { + "id": "U6683Z3", + "name": "Kutná Hora,Česká", + "isMetro": false, + "latitude": 15.262735, + "longitude": 49.952114, + "stopId": "U6683" + }, + { + "id": "U668Z1", + "name": "Rembrandtova", + "isMetro": false, + "latitude": 14.512701, + "longitude": 50.067867, + "stopId": "U668" + }, + { + "id": "U668Z2", + "name": "Rembrandtova", + "isMetro": false, + "latitude": 14.512201, + "longitude": 50.068501, + "stopId": "U668" + }, + { + "id": "U6690Z1", + "name": "Kutná Hora,Kaňk,Na Pašince", + "isMetro": false, + "latitude": 15.273494, + "longitude": 49.971039, + "stopId": "U6690" + }, + { + "id": "U6691Z2", + "name": "Kutná Hora,Sedlec,Čechova", + "isMetro": false, + "latitude": 15.284748, + "longitude": 49.961063, + "stopId": "U6691" + }, + { + "id": "U6691Z3", + "name": "Kutná Hora,Sedlec,Čechova", + "isMetro": false, + "latitude": 15.28456, + "longitude": 49.96093, + "stopId": "U6691" + }, + { + "id": "U6692Z1", + "name": "Kutná Hora,Sedlec,U Nadjezdu", + "isMetro": false, + "latitude": 15.29524, + "longitude": 49.962761, + "stopId": "U6692" + }, + { + "id": "U6692Z2", + "name": "Kutná Hora,Sedlec,U Nadjezdu", + "isMetro": false, + "latitude": 15.294742, + "longitude": 49.9627, + "stopId": "U6692" + }, + { + "id": "U669Z1", + "name": "Sídliště Spořilov", + "isMetro": false, + "latitude": 14.49075, + "longitude": 50.048, + "stopId": "U669" + }, + { + "id": "U669Z2", + "name": "Sídliště Spořilov", + "isMetro": false, + "latitude": 14.489667, + "longitude": 50.047585, + "stopId": "U669" + }, + { + "id": "U66Z1", + "name": "Čechova škola", + "isMetro": false, + "latitude": 14.424298, + "longitude": 50.117382, + "stopId": "U66" + }, + { + "id": "U66Z2", + "name": "Čechova škola", + "isMetro": false, + "latitude": 14.422552, + "longitude": 50.116985, + "stopId": "U66" + }, + { + "id": "U6701Z1", + "name": "Činěves,u kovárny", + "isMetro": false, + "latitude": 15.213857, + "longitude": 50.230652, + "stopId": "U6701" + }, + { + "id": "U6701Z2", + "name": "Činěves,u kovárny", + "isMetro": false, + "latitude": 15.213717, + "longitude": 50.230602, + "stopId": "U6701" + }, + { + "id": "U6702Z1", + "name": "Dymokury", + "isMetro": false, + "latitude": 15.203914, + "longitude": 50.247562, + "stopId": "U6702" + }, + { + "id": "U670Z1", + "name": "Sídliště Zahradní Město", + "isMetro": false, + "latitude": 14.512601, + "longitude": 50.057289, + "stopId": "U670" + }, + { + "id": "U670Z2", + "name": "Sídliště Zahradní Město", + "isMetro": false, + "latitude": 14.513263, + "longitude": 50.056717, + "stopId": "U670" + }, + { + "id": "U670Z3", + "name": "Sídliště Zahradní Město", + "isMetro": false, + "latitude": 14.513867, + "longitude": 50.056313, + "stopId": "U670" + }, + { + "id": "U670Z4", + "name": "Sídliště Zahradní Město", + "isMetro": false, + "latitude": 14.512938, + "longitude": 50.057182, + "stopId": "U670" + }, + { + "id": "U671Z1", + "name": "Jesenická", + "isMetro": false, + "latitude": 14.493184, + "longitude": 50.058132, + "stopId": "U671" + }, + { + "id": "U671Z3", + "name": "Jesenická", + "isMetro": false, + "latitude": 14.493817, + "longitude": 50.057152, + "stopId": "U671" + }, + { + "id": "U671Z4", + "name": "Jesenická", + "isMetro": false, + "latitude": 14.493768, + "longitude": 50.056335, + "stopId": "U671" + }, + { + "id": "U6720Z1", + "name": "Popovice,Kondratice,rozc.", + "isMetro": false, + "latitude": 14.731548, + "longitude": 49.684723, + "stopId": "U6720" + }, + { + "id": "U6720Z2", + "name": "Popovice,Kondratice,rozc.", + "isMetro": false, + "latitude": 14.731479, + "longitude": 49.684692, + "stopId": "U6720" + }, + { + "id": "U6721Z1", + "name": "Dlouhopolsko", + "isMetro": false, + "latitude": 15.305492, + "longitude": 50.175209, + "stopId": "U6721" + }, + { + "id": "U6721Z2", + "name": "Dlouhopolsko", + "isMetro": false, + "latitude": 15.305186, + "longitude": 50.175285, + "stopId": "U6721" + }, + { + "id": "U672Z1", + "name": "Sídliště Zbraslav", + "isMetro": false, + "latitude": 14.38455, + "longitude": 49.968201, + "stopId": "U672" + }, + { + "id": "U672Z2", + "name": "Sídliště Zbraslav", + "isMetro": false, + "latitude": 14.384717, + "longitude": 49.968018, + "stopId": "U672" + }, + { + "id": "U673Z3", + "name": "Na Padesátém", + "isMetro": false, + "latitude": 14.505017, + "longitude": 50.064484, + "stopId": "U673" + }, + { + "id": "U673Z4", + "name": "Na Padesátém", + "isMetro": false, + "latitude": 14.505351, + "longitude": 50.064552, + "stopId": "U673" + }, + { + "id": "U6741Z1", + "name": "Pátek,Nové Mlýny", + "isMetro": false, + "latitude": 15.178292, + "longitude": 50.154545, + "stopId": "U6741" + }, + { + "id": "U6741Z2", + "name": "Pátek,Nové Mlýny", + "isMetro": false, + "latitude": 15.177911, + "longitude": 50.154339, + "stopId": "U6741" + }, + { + "id": "U6743Z1", + "name": "Podmoky,ObÚ", + "isMetro": false, + "latitude": 15.233904, + "longitude": 50.19294, + "stopId": "U6743" + }, + { + "id": "U6743Z2", + "name": "Podmoky,ObÚ", + "isMetro": false, + "latitude": 15.233811, + "longitude": 50.19294, + "stopId": "U6743" + }, + { + "id": "U6744Z2", + "name": "Velenice", + "isMetro": false, + "latitude": 15.22614, + "longitude": 50.214817, + "stopId": "U6744" + }, + { + "id": "U6745Z1", + "name": "Dymokury,Černá Hora", + "isMetro": false, + "latitude": 15.178746, + "longitude": 50.249252, + "stopId": "U6745" + }, + { + "id": "U6745Z2", + "name": "Dymokury,Černá Hora", + "isMetro": false, + "latitude": 15.178718, + "longitude": 50.249165, + "stopId": "U6745" + }, + { + "id": "U6746Z51", + "name": "Dymokury,Svídnice", + "isMetro": false, + "latitude": 15.181808, + "longitude": 50.262836, + "stopId": "U6746" + }, + { + "id": "U6747Z2", + "name": "Opolany,u kostela", + "isMetro": false, + "latitude": 15.220891, + "longitude": 50.130455, + "stopId": "U6747" + }, + { + "id": "U674Z1", + "name": "Královická", + "isMetro": false, + "latitude": 14.5158, + "longitude": 50.064983, + "stopId": "U674" + }, + { + "id": "U674Z2", + "name": "Královická", + "isMetro": false, + "latitude": 14.51525, + "longitude": 50.065567, + "stopId": "U674" + }, + { + "id": "U6752Z2", + "name": "Libice n.Cidl.,u sokolovny", + "isMetro": false, + "latitude": 15.180821, + "longitude": 50.130749, + "stopId": "U6752" + }, + { + "id": "U6753Z2", + "name": "Opolany,Kanín", + "isMetro": false, + "latitude": 15.200926, + "longitude": 50.123772, + "stopId": "U6753" + }, + { + "id": "U6754Z2", + "name": "Libice n.Cidl.,u kostela", + "isMetro": false, + "latitude": 15.180289, + "longitude": 50.125492, + "stopId": "U6754" + }, + { + "id": "U6757Z1", + "name": "Vlašim,Blanická", + "isMetro": false, + "latitude": 14.894437, + "longitude": 49.696491, + "stopId": "U6757" + }, + { + "id": "U6757Z2", + "name": "Vlašim,Blanická", + "isMetro": false, + "latitude": 14.894288, + "longitude": 49.696358, + "stopId": "U6757" + }, + { + "id": "U6758Z1", + "name": "Vlašim,Jinošov", + "isMetro": false, + "latitude": 14.894793, + "longitude": 49.687614, + "stopId": "U6758" + }, + { + "id": "U6758Z2", + "name": "Vlašim,Jinošov", + "isMetro": false, + "latitude": 14.894678, + "longitude": 49.687542, + "stopId": "U6758" + }, + { + "id": "U6759Z1", + "name": "Vlašim,záv.", + "isMetro": false, + "latitude": 14.908263, + "longitude": 49.694946, + "stopId": "U6759" + }, + { + "id": "U6759Z2", + "name": "Vlašim,záv.", + "isMetro": false, + "latitude": 14.908423, + "longitude": 49.694832, + "stopId": "U6759" + }, + { + "id": "U675Z1", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.456311, + "longitude": 50.124683, + "stopId": "U675" + }, + { + "id": "U675Z10", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.45289, + "longitude": 50.123062, + "stopId": "U675" + }, + { + "id": "U675Z101", + "name": "Kobylisy", + "isMetro": true, + "latitude": 14.45428, + "longitude": 50.12408, + "stopId": "U675" + }, + { + "id": "U675Z102", + "name": "Kobylisy", + "isMetro": true, + "latitude": 14.45423, + "longitude": 50.12416, + "stopId": "U675" + }, + { + "id": "U675Z11", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.453181, + "longitude": 50.123241, + "stopId": "U675" + }, + { + "id": "U675Z12", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.454075, + "longitude": 50.124374, + "stopId": "U675" + }, + { + "id": "U675Z2", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.456691, + "longitude": 50.124943, + "stopId": "U675" + }, + { + "id": "U675Z3", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.455379, + "longitude": 50.124855, + "stopId": "U675" + }, + { + "id": "U675Z4", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.454753, + "longitude": 50.124638, + "stopId": "U675" + }, + { + "id": "U675Z5", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.4537, + "longitude": 50.124264, + "stopId": "U675" + }, + { + "id": "U675Z6", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.453411, + "longitude": 50.123856, + "stopId": "U675" + }, + { + "id": "U675Z7", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.45586, + "longitude": 50.124733, + "stopId": "U675" + }, + { + "id": "U675Z8", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.456267, + "longitude": 50.124878, + "stopId": "U675" + }, + { + "id": "U675Z9", + "name": "Kobylisy", + "isMetro": false, + "latitude": 14.451943, + "longitude": 50.12484, + "stopId": "U675" + }, + { + "id": "U6760Z1", + "name": "Vlašim,jesle", + "isMetro": false, + "latitude": 14.893616, + "longitude": 49.704937, + "stopId": "U6760" + }, + { + "id": "U6760Z2", + "name": "Vlašim,jesle", + "isMetro": false, + "latitude": 14.892153, + "longitude": 49.705036, + "stopId": "U6760" + }, + { + "id": "U6766Z1", + "name": "Sedlec-Prčice,Prčice", + "isMetro": false, + "latitude": 14.539259, + "longitude": 49.577866, + "stopId": "U6766" + }, + { + "id": "U6766Z2", + "name": "Sedlec-Prčice,Prčice", + "isMetro": false, + "latitude": 14.539204, + "longitude": 49.577728, + "stopId": "U6766" + }, + { + "id": "U6767Z1", + "name": "Sedlec-Prčice,nám.", + "isMetro": false, + "latitude": 14.532809, + "longitude": 49.572796, + "stopId": "U6767" + }, + { + "id": "U6767Z2", + "name": "Sedlec-Prčice,nám.", + "isMetro": false, + "latitude": 14.532813, + "longitude": 49.572857, + "stopId": "U6767" + }, + { + "id": "U6769Z1", + "name": "Sedlec-Prčice,u Milotů", + "isMetro": false, + "latitude": 14.542562, + "longitude": 49.580853, + "stopId": "U6769" + }, + { + "id": "U6769Z2", + "name": "Sedlec-Prčice,u Milotů", + "isMetro": false, + "latitude": 14.54269, + "longitude": 49.58083, + "stopId": "U6769" + }, + { + "id": "U676Z1", + "name": "Střelničná", + "isMetro": false, + "latitude": 14.458662, + "longitude": 50.125774, + "stopId": "U676" + }, + { + "id": "U676Z2", + "name": "Střelničná", + "isMetro": false, + "latitude": 14.459195, + "longitude": 50.125771, + "stopId": "U676" + }, + { + "id": "U6770Z1", + "name": "Sedlec-Prčice,rozc.Mrákotice", + "isMetro": false, + "latitude": 14.560499, + "longitude": 49.591915, + "stopId": "U6770" + }, + { + "id": "U6770Z2", + "name": "Sedlec-Prčice,rozc.Mrákotice", + "isMetro": false, + "latitude": 14.56066, + "longitude": 49.591934, + "stopId": "U6770" + }, + { + "id": "U6775Z1", + "name": "Ostrov,rozc.", + "isMetro": false, + "latitude": 14.849793, + "longitude": 49.672943, + "stopId": "U6775" + }, + { + "id": "U6775Z2", + "name": "Ostrov,rozc.", + "isMetro": false, + "latitude": 14.849354, + "longitude": 49.672806, + "stopId": "U6775" + }, + { + "id": "U6776Z1", + "name": "Hradiště,rozc.", + "isMetro": false, + "latitude": 14.852779, + "longitude": 49.678623, + "stopId": "U6776" + }, + { + "id": "U6776Z2", + "name": "Hradiště,rozc.", + "isMetro": false, + "latitude": 14.852521, + "longitude": 49.678562, + "stopId": "U6776" + }, + { + "id": "U677Z1", + "name": "Sklářská", + "isMetro": false, + "latitude": 14.53637, + "longitude": 50.057198, + "stopId": "U677" + }, + { + "id": "U677Z2", + "name": "Sklářská", + "isMetro": false, + "latitude": 14.536869, + "longitude": 50.057289, + "stopId": "U677" + }, + { + "id": "U6784Z1", + "name": "Kondrac", + "isMetro": false, + "latitude": 14.883697, + "longitude": 49.667103, + "stopId": "U6784" + }, + { + "id": "U6784Z2", + "name": "Kondrac", + "isMetro": false, + "latitude": 14.883716, + "longitude": 49.666847, + "stopId": "U6784" + }, + { + "id": "U6785Z1", + "name": "Kondrac,předměstí", + "isMetro": false, + "latitude": 14.883644, + "longitude": 49.670723, + "stopId": "U6785" + }, + { + "id": "U6785Z2", + "name": "Kondrac,předměstí", + "isMetro": false, + "latitude": 14.883522, + "longitude": 49.67075, + "stopId": "U6785" + }, + { + "id": "U6785Z3", + "name": "Kondrac,předměstí", + "isMetro": false, + "latitude": 14.883075, + "longitude": 49.670609, + "stopId": "U6785" + }, + { + "id": "U6785Z4", + "name": "Kondrac,předměstí", + "isMetro": false, + "latitude": 14.883225, + "longitude": 49.670494, + "stopId": "U6785" + }, + { + "id": "U6786Z1", + "name": "Kondrac,Vítův Mlýn", + "isMetro": false, + "latitude": 14.854842, + "longitude": 49.68235, + "stopId": "U6786" + }, + { + "id": "U6786Z2", + "name": "Kondrac,Vítův Mlýn", + "isMetro": false, + "latitude": 14.854693, + "longitude": 49.682343, + "stopId": "U6786" + }, + { + "id": "U6787Z1", + "name": "Kondrac,Dub", + "isMetro": false, + "latitude": 14.869465, + "longitude": 49.677841, + "stopId": "U6787" + }, + { + "id": "U6787Z2", + "name": "Kondrac,Dub", + "isMetro": false, + "latitude": 14.869457, + "longitude": 49.677689, + "stopId": "U6787" + }, + { + "id": "U6788Z1", + "name": "Kondrac,Ovčiny", + "isMetro": false, + "latitude": 14.87448, + "longitude": 49.693283, + "stopId": "U6788" + }, + { + "id": "U6788Z2", + "name": "Kondrac,Ovčiny", + "isMetro": false, + "latitude": 14.874427, + "longitude": 49.693291, + "stopId": "U6788" + }, + { + "id": "U6789Z1", + "name": "Olešná", + "isMetro": false, + "latitude": 13.696792, + "longitude": 50.128529, + "stopId": "U6789" + }, + { + "id": "U6789Z2", + "name": "Olešná", + "isMetro": false, + "latitude": 13.697019, + "longitude": 50.128651, + "stopId": "U6789" + }, + { + "id": "U678Z1", + "name": "Skloněná", + "isMetro": false, + "latitude": 14.486826, + "longitude": 50.100216, + "stopId": "U678" + }, + { + "id": "U678Z2", + "name": "Skloněná", + "isMetro": false, + "latitude": 14.488333, + "longitude": 50.100449, + "stopId": "U678" + }, + { + "id": "U679Z1", + "name": "Slatinová", + "isMetro": false, + "latitude": 14.322796, + "longitude": 50.037674, + "stopId": "U679" + }, + { + "id": "U679Z2", + "name": "Slatinová", + "isMetro": false, + "latitude": 14.324, + "longitude": 50.037811, + "stopId": "U679" + }, + { + "id": "U67Z2", + "name": "Čechovo náměstí", + "isMetro": false, + "latitude": 14.459471, + "longitude": 50.068066, + "stopId": "U67" + }, + { + "id": "U67Z4", + "name": "Čechovo náměstí", + "isMetro": false, + "latitude": 14.458237, + "longitude": 50.067863, + "stopId": "U67" + }, + { + "id": "U67Z7", + "name": "Čechovo náměstí", + "isMetro": false, + "latitude": 14.459037, + "longitude": 50.068172, + "stopId": "U67" + }, + { + "id": "U680Z1", + "name": "Slavia - Nádraží Eden", + "isMetro": false, + "latitude": 14.470657, + "longitude": 50.069553, + "stopId": "U680" + }, + { + "id": "U680Z2", + "name": "Slavia - Nádraží Eden", + "isMetro": false, + "latitude": 14.470544, + "longitude": 50.069439, + "stopId": "U680" + }, + { + "id": "U680Z3", + "name": "Slavia - Nádraží Eden", + "isMetro": false, + "latitude": 14.469232, + "longitude": 50.06831, + "stopId": "U680" + }, + { + "id": "U680Z301", + "name": "Praha-Eden", + "isMetro": false, + "latitude": 14.471769, + "longitude": 50.065784, + "stopId": "U680" + }, + { + "id": "U680Z4", + "name": "Slavia - Nádraží Eden", + "isMetro": false, + "latitude": 14.469817, + "longitude": 50.067932, + "stopId": "U680" + }, + { + "id": "U6811Z1", + "name": "Olešná,Kokrdy", + "isMetro": false, + "latitude": 13.71364, + "longitude": 50.120094, + "stopId": "U6811" + }, + { + "id": "U6811Z2", + "name": "Olešná,Kokrdy", + "isMetro": false, + "latitude": 13.713431, + "longitude": 50.120251, + "stopId": "U6811" + }, + { + "id": "U6814Z1", + "name": "Kněževes,žel.zast.", + "isMetro": false, + "latitude": 13.644829, + "longitude": 50.14172, + "stopId": "U6814" + }, + { + "id": "U6814Z2", + "name": "Kněževes,žel.zast.", + "isMetro": false, + "latitude": 13.644955, + "longitude": 50.141846, + "stopId": "U6814" + }, + { + "id": "U6816Z1", + "name": "Kněževes,ObÚ", + "isMetro": false, + "latitude": 13.636733, + "longitude": 50.145824, + "stopId": "U6816" + }, + { + "id": "U6816Z2", + "name": "Kněževes,ObÚ", + "isMetro": false, + "latitude": 13.63658, + "longitude": 50.14595, + "stopId": "U6816" + }, + { + "id": "U6818Z1", + "name": "Kolešovice", + "isMetro": false, + "latitude": 13.609849, + "longitude": 50.140285, + "stopId": "U6818" + }, + { + "id": "U6818Z2", + "name": "Kolešovice", + "isMetro": false, + "latitude": 13.610147, + "longitude": 50.140091, + "stopId": "U6818" + }, + { + "id": "U6820Z1", + "name": "Kolešovice,Heřmanov", + "isMetro": false, + "latitude": 13.575573, + "longitude": 50.148903, + "stopId": "U6820" + }, + { + "id": "U6820Z2", + "name": "Kolešovice,Heřmanov", + "isMetro": false, + "latitude": 13.575602, + "longitude": 50.149017, + "stopId": "U6820" + }, + { + "id": "U6821Z1", + "name": "Hořesedly,u školy", + "isMetro": false, + "latitude": 13.599457, + "longitude": 50.161934, + "stopId": "U6821" + }, + { + "id": "U6821Z2", + "name": "Hořesedly,u školy", + "isMetro": false, + "latitude": 13.599538, + "longitude": 50.161869, + "stopId": "U6821" + }, + { + "id": "U6823Z3", + "name": "Děkov,Nová Ves,rozc.", + "isMetro": false, + "latitude": 13.572447, + "longitude": 50.160889, + "stopId": "U6823" + }, + { + "id": "U6823Z4", + "name": "Děkov,Nová Ves,rozc.", + "isMetro": false, + "latitude": 13.571257, + "longitude": 50.160965, + "stopId": "U6823" + }, + { + "id": "U6824Z2", + "name": "Děkov,Nová Ves", + "isMetro": false, + "latitude": 13.568526, + "longitude": 50.172314, + "stopId": "U6824" + }, + { + "id": "U6825Z1", + "name": "Děkov", + "isMetro": false, + "latitude": 13.555704, + "longitude": 50.172443, + "stopId": "U6825" + }, + { + "id": "U6825Z2", + "name": "Děkov", + "isMetro": false, + "latitude": 13.555643, + "longitude": 50.172489, + "stopId": "U6825" + }, + { + "id": "U6826Z2", + "name": "Děkov,jednota", + "isMetro": false, + "latitude": 13.554057, + "longitude": 50.171875, + "stopId": "U6826" + }, + { + "id": "U6827Z1", + "name": "Děkov,Vlkov", + "isMetro": false, + "latitude": 13.566027, + "longitude": 50.184521, + "stopId": "U6827" + }, + { + "id": "U6828Z2", + "name": "Hořovičky,Vrbice", + "isMetro": false, + "latitude": 13.525727, + "longitude": 50.170429, + "stopId": "U6828" + }, + { + "id": "U6829Z1", + "name": "Hořovičky", + "isMetro": false, + "latitude": 13.530422, + "longitude": 50.155548, + "stopId": "U6829" + }, + { + "id": "U6829Z2", + "name": "Hořovičky", + "isMetro": false, + "latitude": 13.530523, + "longitude": 50.155716, + "stopId": "U6829" + }, + { + "id": "U682Z2", + "name": "V Bokách", + "isMetro": false, + "latitude": 14.389767, + "longitude": 50.038017, + "stopId": "U682" + }, + { + "id": "U682Z3", + "name": "V Bokách", + "isMetro": false, + "latitude": 14.390767, + "longitude": 50.037949, + "stopId": "U682" + }, + { + "id": "U6830Z1", + "name": "Hořovičky,Hokov,rozc.", + "isMetro": false, + "latitude": 13.556681, + "longitude": 50.159481, + "stopId": "U6830" + }, + { + "id": "U6830Z2", + "name": "Hořovičky,Hokov,rozc.", + "isMetro": false, + "latitude": 13.556528, + "longitude": 50.159576, + "stopId": "U6830" + }, + { + "id": "U6831Z1", + "name": "Hořovičky,Hokov", + "isMetro": false, + "latitude": 13.562021, + "longitude": 50.156513, + "stopId": "U6831" + }, + { + "id": "U6831Z2", + "name": "Hořovičky,Hokov", + "isMetro": false, + "latitude": 13.561913, + "longitude": 50.156597, + "stopId": "U6831" + }, + { + "id": "U6833Z1", + "name": "Kolešov", + "isMetro": false, + "latitude": 13.510771, + "longitude": 50.156731, + "stopId": "U6833" + }, + { + "id": "U683Z1", + "name": "Teplická", + "isMetro": false, + "latitude": 14.486348, + "longitude": 50.125233, + "stopId": "U683" + }, + { + "id": "U683Z2", + "name": "Teplická", + "isMetro": false, + "latitude": 14.486138, + "longitude": 50.125492, + "stopId": "U683" + }, + { + "id": "U6843Z1", + "name": "Rakovník,nem.", + "isMetro": false, + "latitude": 13.717476, + "longitude": 50.107124, + "stopId": "U6843" + }, + { + "id": "U6843Z2", + "name": "Rakovník,nem.", + "isMetro": false, + "latitude": 13.713505, + "longitude": 50.107761, + "stopId": "U6843" + }, + { + "id": "U684Z1", + "name": "Smiřická", + "isMetro": false, + "latitude": 14.666489, + "longitude": 50.089752, + "stopId": "U684" + }, + { + "id": "U684Z2", + "name": "Smiřická", + "isMetro": false, + "latitude": 14.666347, + "longitude": 50.089775, + "stopId": "U684" + }, + { + "id": "U6851Z1", + "name": "Příčina", + "isMetro": false, + "latitude": 13.664815, + "longitude": 50.068146, + "stopId": "U6851" + }, + { + "id": "U6851Z2", + "name": "Příčina", + "isMetro": false, + "latitude": 13.664934, + "longitude": 50.068066, + "stopId": "U6851" + }, + { + "id": "U6852Z1", + "name": "Petrovice,statek", + "isMetro": false, + "latitude": 13.647039, + "longitude": 50.06741, + "stopId": "U6852" + }, + { + "id": "U6852Z2", + "name": "Petrovice,statek", + "isMetro": false, + "latitude": 13.647293, + "longitude": 50.067326, + "stopId": "U6852" + }, + { + "id": "U6853Z1", + "name": "Petrovice", + "isMetro": false, + "latitude": 13.638068, + "longitude": 50.067123, + "stopId": "U6853" + }, + { + "id": "U6853Z2", + "name": "Petrovice", + "isMetro": false, + "latitude": 13.63835, + "longitude": 50.066898, + "stopId": "U6853" + }, + { + "id": "U685Z101", + "name": "Jinonice", + "isMetro": true, + "latitude": 14.369789, + "longitude": 50.054286, + "stopId": "U685" + }, + { + "id": "U685Z102", + "name": "Jinonice", + "isMetro": true, + "latitude": 14.369908, + "longitude": 50.054112, + "stopId": "U685" + }, + { + "id": "U685Z13", + "name": "Jinonice", + "isMetro": false, + "latitude": 14.371594, + "longitude": 50.054623, + "stopId": "U685" + }, + { + "id": "U685Z2", + "name": "Jinonice", + "isMetro": false, + "latitude": 14.369583, + "longitude": 50.054684, + "stopId": "U685" + }, + { + "id": "U685Z3", + "name": "Jinonice", + "isMetro": false, + "latitude": 14.371594, + "longitude": 50.054623, + "stopId": "U685" + }, + { + "id": "U685Z4", + "name": "Jinonice", + "isMetro": false, + "latitude": 14.371651, + "longitude": 50.054485, + "stopId": "U685" + }, + { + "id": "U6865Z1", + "name": "Břežany,rozc.", + "isMetro": false, + "latitude": 13.568722, + "longitude": 49.999157, + "stopId": "U6865" + }, + { + "id": "U6865Z2", + "name": "Břežany,rozc.", + "isMetro": false, + "latitude": 13.568845, + "longitude": 49.9991, + "stopId": "U6865" + }, + { + "id": "U6866Z1", + "name": "Břežany", + "isMetro": false, + "latitude": 13.580604, + "longitude": 50.005295, + "stopId": "U6866" + }, + { + "id": "U6866Z2", + "name": "Břežany", + "isMetro": false, + "latitude": 13.580582, + "longitude": 50.005348, + "stopId": "U6866" + }, + { + "id": "U6867Z1", + "name": "Čistá", + "isMetro": false, + "latitude": 13.570015, + "longitude": 50.027981, + "stopId": "U6867" + }, + { + "id": "U686Z1", + "name": "Smržovská", + "isMetro": false, + "latitude": 14.669044, + "longitude": 50.095089, + "stopId": "U686" + }, + { + "id": "U686Z2", + "name": "Smržovská", + "isMetro": false, + "latitude": 14.668634, + "longitude": 50.094734, + "stopId": "U686" + }, + { + "id": "U687Z1", + "name": "Sobín", + "isMetro": false, + "latitude": 14.263911, + "longitude": 50.067554, + "stopId": "U687" + }, + { + "id": "U687Z2", + "name": "Sobín", + "isMetro": false, + "latitude": 14.264194, + "longitude": 50.06749, + "stopId": "U687" + }, + { + "id": "U687Z3", + "name": "Sobín", + "isMetro": false, + "latitude": 14.263351, + "longitude": 50.068424, + "stopId": "U687" + }, + { + "id": "U687Z4", + "name": "Sobín", + "isMetro": false, + "latitude": 14.263386, + "longitude": 50.068138, + "stopId": "U687" + }, + { + "id": "U6884Z1", + "name": "Všesulov", + "isMetro": false, + "latitude": 13.613221, + "longitude": 50.039925, + "stopId": "U6884" + }, + { + "id": "U6884Z2", + "name": "Všesulov", + "isMetro": false, + "latitude": 13.61361, + "longitude": 50.039845, + "stopId": "U6884" + }, + { + "id": "U6888Z1", + "name": "Lubná,sídliště", + "isMetro": false, + "latitude": 13.708404, + "longitude": 50.077766, + "stopId": "U6888" + }, + { + "id": "U6888Z2", + "name": "Lubná,sídliště", + "isMetro": false, + "latitude": 13.708309, + "longitude": 50.07761, + "stopId": "U6888" + }, + { + "id": "U6889Z1", + "name": "Lubná,Filipka", + "isMetro": false, + "latitude": 13.70411, + "longitude": 50.071918, + "stopId": "U6889" + }, + { + "id": "U6889Z2", + "name": "Lubná,Filipka", + "isMetro": false, + "latitude": 13.70358, + "longitude": 50.072887, + "stopId": "U6889" + }, + { + "id": "U688Z1", + "name": "Sídliště Kobylisy", + "isMetro": false, + "latitude": 14.45225, + "longitude": 50.127533, + "stopId": "U688" + }, + { + "id": "U688Z2", + "name": "Sídliště Kobylisy", + "isMetro": false, + "latitude": 14.451967, + "longitude": 50.126553, + "stopId": "U688" + }, + { + "id": "U6890Z1", + "name": "Senec", + "isMetro": false, + "latitude": 13.705667, + "longitude": 50.06694, + "stopId": "U6890" + }, + { + "id": "U6890Z2", + "name": "Senec", + "isMetro": false, + "latitude": 13.705784, + "longitude": 50.066891, + "stopId": "U6890" + }, + { + "id": "U6892Z1", + "name": "Hvozd", + "isMetro": false, + "latitude": 13.697956, + "longitude": 50.052391, + "stopId": "U6892" + }, + { + "id": "U6892Z2", + "name": "Hvozd", + "isMetro": false, + "latitude": 13.698002, + "longitude": 50.052319, + "stopId": "U6892" + }, + { + "id": "U6893Z1", + "name": "Hvozd,Žďáry", + "isMetro": false, + "latitude": 13.677239, + "longitude": 50.058647, + "stopId": "U6893" + }, + { + "id": "U6894Z1", + "name": "Malinová", + "isMetro": false, + "latitude": 13.667485, + "longitude": 50.048065, + "stopId": "U6894" + }, + { + "id": "U6894Z2", + "name": "Malinová", + "isMetro": false, + "latitude": 13.667539, + "longitude": 50.048, + "stopId": "U6894" + }, + { + "id": "U6895Z1", + "name": "Krakov", + "isMetro": false, + "latitude": 13.64782, + "longitude": 50.037888, + "stopId": "U6895" + }, + { + "id": "U6895Z2", + "name": "Krakov", + "isMetro": false, + "latitude": 13.64789, + "longitude": 50.037773, + "stopId": "U6895" + }, + { + "id": "U6896Z1", + "name": "Krakovec,u lipky", + "isMetro": false, + "latitude": 13.640034, + "longitude": 50.030888, + "stopId": "U6896" + }, + { + "id": "U6896Z2", + "name": "Krakovec,u lipky", + "isMetro": false, + "latitude": 13.640113, + "longitude": 50.030888, + "stopId": "U6896" + }, + { + "id": "U6897Z1", + "name": "Krakovec", + "isMetro": false, + "latitude": 13.637484, + "longitude": 50.020195, + "stopId": "U6897" + }, + { + "id": "U6898Z1", + "name": "Krakovec,Zhoř,rozc.", + "isMetro": false, + "latitude": 13.668993, + "longitude": 50.027622, + "stopId": "U6898" + }, + { + "id": "U6898Z2", + "name": "Krakovec,Zhoř,rozc.", + "isMetro": false, + "latitude": 13.669256, + "longitude": 50.027676, + "stopId": "U6898" + }, + { + "id": "U6899Z1", + "name": "Slabce,Rousínov", + "isMetro": false, + "latitude": 13.674951, + "longitude": 50.019451, + "stopId": "U6899" + }, + { + "id": "U6899Z2", + "name": "Slabce,Rousínov", + "isMetro": false, + "latitude": 13.675073, + "longitude": 50.019459, + "stopId": "U6899" + }, + { + "id": "U689Z1", + "name": "Florenc", + "isMetro": false, + "latitude": 14.439114, + "longitude": 50.091244, + "stopId": "U689" + }, + { + "id": "U689Z101", + "name": "Florenc", + "isMetro": true, + "latitude": 14.43762, + "longitude": 50.09056, + "stopId": "U689" + }, + { + "id": "U689Z102", + "name": "Florenc", + "isMetro": true, + "latitude": 14.43766, + "longitude": 50.09041, + "stopId": "U689" + }, + { + "id": "U689Z121", + "name": "Florenc", + "isMetro": true, + "latitude": 14.439256, + "longitude": 50.090026, + "stopId": "U689" + }, + { + "id": "U689Z122", + "name": "Florenc", + "isMetro": true, + "latitude": 14.439093, + "longitude": 50.090058, + "stopId": "U689" + }, + { + "id": "U689Z2", + "name": "Florenc", + "isMetro": false, + "latitude": 14.439999, + "longitude": 50.091427, + "stopId": "U689" + }, + { + "id": "U689Z3", + "name": "Florenc", + "isMetro": false, + "latitude": 14.439584, + "longitude": 50.09148, + "stopId": "U689" + }, + { + "id": "U689Z6", + "name": "Florenc", + "isMetro": false, + "latitude": 14.440372, + "longitude": 50.090099, + "stopId": "U689" + }, + { + "id": "U689Z7", + "name": "Florenc", + "isMetro": false, + "latitude": 14.43801, + "longitude": 50.091587, + "stopId": "U689" + }, + { + "id": "U689Z8", + "name": "Florenc", + "isMetro": false, + "latitude": 14.438491, + "longitude": 50.089676, + "stopId": "U689" + }, + { + "id": "U68Z1", + "name": "Čechův most", + "isMetro": false, + "latitude": 14.41689, + "longitude": 50.094048, + "stopId": "U68" + }, + { + "id": "U68Z2", + "name": "Čechův most", + "isMetro": false, + "latitude": 14.417685, + "longitude": 50.094063, + "stopId": "U68" + }, + { + "id": "U6900Z1", + "name": "Slabce,Svinařov", + "isMetro": false, + "latitude": 13.692853, + "longitude": 50.006313, + "stopId": "U6900" + }, + { + "id": "U6900Z2", + "name": "Slabce,Svinařov", + "isMetro": false, + "latitude": 13.69294, + "longitude": 50.006382, + "stopId": "U6900" + }, + { + "id": "U6901Z1", + "name": "Slabce,pošta", + "isMetro": false, + "latitude": 13.712779, + "longitude": 49.999866, + "stopId": "U6901" + }, + { + "id": "U6902Z1", + "name": "Slabce,ovčín", + "isMetro": false, + "latitude": 13.699552, + "longitude": 49.994751, + "stopId": "U6902" + }, + { + "id": "U6902Z2", + "name": "Slabce,ovčín", + "isMetro": false, + "latitude": 13.699755, + "longitude": 49.994701, + "stopId": "U6902" + }, + { + "id": "U6903Z1", + "name": "Slabce,Modřejovice", + "isMetro": false, + "latitude": 13.690992, + "longitude": 49.994125, + "stopId": "U6903" + }, + { + "id": "U6903Z2", + "name": "Slabce,Modřejovice", + "isMetro": false, + "latitude": 13.691134, + "longitude": 49.994114, + "stopId": "U6903" + }, + { + "id": "U6904Z1", + "name": "Slabce,Kostelík", + "isMetro": false, + "latitude": 13.706093, + "longitude": 49.974541, + "stopId": "U6904" + }, + { + "id": "U6904Z2", + "name": "Slabce,Kostelík", + "isMetro": false, + "latitude": 13.706383, + "longitude": 49.97467, + "stopId": "U6904" + }, + { + "id": "U6905Z1", + "name": "Slabce,Kostelík,pila", + "isMetro": false, + "latitude": 13.699671, + "longitude": 49.962154, + "stopId": "U6905" + }, + { + "id": "U6905Z2", + "name": "Slabce,Kostelík,pila", + "isMetro": false, + "latitude": 13.700025, + "longitude": 49.962105, + "stopId": "U6905" + }, + { + "id": "U6906Z1", + "name": "Slabce,u Reformy", + "isMetro": false, + "latitude": 13.714736, + "longitude": 50.00301, + "stopId": "U6906" + }, + { + "id": "U6906Z2", + "name": "Slabce,u Reformy", + "isMetro": false, + "latitude": 13.714856, + "longitude": 50.002907, + "stopId": "U6906" + }, + { + "id": "U6907Z1", + "name": "Slabce,rozc.", + "isMetro": false, + "latitude": 13.714441, + "longitude": 50.010918, + "stopId": "U6907" + }, + { + "id": "U6907Z2", + "name": "Slabce,rozc.", + "isMetro": false, + "latitude": 13.71454, + "longitude": 50.010914, + "stopId": "U6907" + }, + { + "id": "U6908Z1", + "name": "Slabce,Skupá,rozc.", + "isMetro": false, + "latitude": 13.712923, + "longitude": 50.01722, + "stopId": "U6908" + }, + { + "id": "U6908Z2", + "name": "Slabce,Skupá,rozc.", + "isMetro": false, + "latitude": 13.712997, + "longitude": 50.017258, + "stopId": "U6908" + }, + { + "id": "U6909Z1", + "name": "Panoší Újezd,u pomníku", + "isMetro": false, + "latitude": 13.705375, + "longitude": 50.028275, + "stopId": "U6909" + }, + { + "id": "U6909Z2", + "name": "Panoší Újezd,u pomníku", + "isMetro": false, + "latitude": 13.705433, + "longitude": 50.028564, + "stopId": "U6909" + }, + { + "id": "U690Z1", + "name": "Solidarita", + "isMetro": false, + "latitude": 14.493829, + "longitude": 50.076889, + "stopId": "U690" + }, + { + "id": "U690Z2", + "name": "Solidarita", + "isMetro": false, + "latitude": 14.494723, + "longitude": 50.076881, + "stopId": "U690" + }, + { + "id": "U6910Z1", + "name": "Panoší Újezd", + "isMetro": false, + "latitude": 13.716193, + "longitude": 50.035885, + "stopId": "U6910" + }, + { + "id": "U6910Z2", + "name": "Panoší Újezd", + "isMetro": false, + "latitude": 13.71629, + "longitude": 50.035835, + "stopId": "U6910" + }, + { + "id": "U6911Z3", + "name": "Pavlíkov,křiž.", + "isMetro": false, + "latitude": 13.735555, + "longitude": 50.041607, + "stopId": "U6911" + }, + { + "id": "U6911Z4", + "name": "Pavlíkov,křiž.", + "isMetro": false, + "latitude": 13.736309, + "longitude": 50.041542, + "stopId": "U6911" + }, + { + "id": "U6914Z1", + "name": "Všetaty,rozc.", + "isMetro": false, + "latitude": 13.756517, + "longitude": 50.048042, + "stopId": "U6914" + }, + { + "id": "U6914Z2", + "name": "Všetaty,rozc.", + "isMetro": false, + "latitude": 13.756579, + "longitude": 50.048019, + "stopId": "U6914" + }, + { + "id": "U6918Z1", + "name": "Dobříš,U Pivovaru", + "isMetro": false, + "latitude": 14.178407, + "longitude": 49.787884, + "stopId": "U6918" + }, + { + "id": "U6918Z2", + "name": "Dobříš,U Pivovaru", + "isMetro": false, + "latitude": 14.179472, + "longitude": 49.788002, + "stopId": "U6918" + }, + { + "id": "U6919Z1", + "name": "Pavlíkov,Pošta", + "isMetro": false, + "latitude": 13.736521, + "longitude": 50.05695, + "stopId": "U6919" + }, + { + "id": "U6919Z2", + "name": "Pavlíkov,Pošta", + "isMetro": false, + "latitude": 13.736872, + "longitude": 50.057014, + "stopId": "U6919" + }, + { + "id": "U691Z1", + "name": "Podkovářská", + "isMetro": false, + "latitude": 14.513454, + "longitude": 50.102951, + "stopId": "U691" + }, + { + "id": "U691Z2", + "name": "Podkovářská", + "isMetro": false, + "latitude": 14.514375, + "longitude": 50.102966, + "stopId": "U691" + }, + { + "id": "U6920Z1", + "name": "Pavlíkov,Za branou", + "isMetro": false, + "latitude": 13.741796, + "longitude": 50.061325, + "stopId": "U6920" + }, + { + "id": "U6920Z2", + "name": "Pavlíkov,Za branou", + "isMetro": false, + "latitude": 13.742112, + "longitude": 50.062042, + "stopId": "U6920" + }, + { + "id": "U6923Z1", + "name": "Hřebečníky,Újezdec,rozc.", + "isMetro": false, + "latitude": 13.744267, + "longitude": 49.99725, + "stopId": "U6923" + }, + { + "id": "U6923Z2", + "name": "Hřebečníky,Újezdec,rozc.", + "isMetro": false, + "latitude": 13.744218, + "longitude": 49.997711, + "stopId": "U6923" + }, + { + "id": "U6924Z1", + "name": "Hracholusky,rozc.Novosedly", + "isMetro": false, + "latitude": 13.755155, + "longitude": 50.000507, + "stopId": "U6924" + }, + { + "id": "U6924Z2", + "name": "Hracholusky,rozc.Novosedly", + "isMetro": false, + "latitude": 13.755004, + "longitude": 50.000565, + "stopId": "U6924" + }, + { + "id": "U6925Z1", + "name": "Hracholusky", + "isMetro": false, + "latitude": 13.767348, + "longitude": 50.001835, + "stopId": "U6925" + }, + { + "id": "U6926Z1", + "name": "Hřebečníky", + "isMetro": false, + "latitude": 13.752956, + "longitude": 49.98542, + "stopId": "U6926" + }, + { + "id": "U6926Z2", + "name": "Hřebečníky", + "isMetro": false, + "latitude": 13.753197, + "longitude": 49.985447, + "stopId": "U6926" + }, + { + "id": "U6927Z1", + "name": "Hřebečníky,Týřovice", + "isMetro": false, + "latitude": 13.784923, + "longitude": 49.980179, + "stopId": "U6927" + }, + { + "id": "U6927Z2", + "name": "Hřebečníky,Týřovice", + "isMetro": false, + "latitude": 13.784972, + "longitude": 49.980114, + "stopId": "U6927" + }, + { + "id": "U6928Z1", + "name": "Skryje,u mostu", + "isMetro": false, + "latitude": 13.773046, + "longitude": 49.969841, + "stopId": "U6928" + }, + { + "id": "U6928Z2", + "name": "Skryje,u mostu", + "isMetro": false, + "latitude": 13.771995, + "longitude": 49.970074, + "stopId": "U6928" + }, + { + "id": "U6929Z1", + "name": "Rakovník,rozc.Lubná", + "isMetro": false, + "latitude": 13.724186, + "longitude": 50.082241, + "stopId": "U6929" + }, + { + "id": "U6929Z2", + "name": "Rakovník,rozc.Lubná", + "isMetro": false, + "latitude": 13.724391, + "longitude": 50.082336, + "stopId": "U6929" + }, + { + "id": "U692Z1", + "name": "Sparta", + "isMetro": false, + "latitude": 14.4186, + "longitude": 50.099258, + "stopId": "U692" + }, + { + "id": "U692Z2", + "name": "Sparta", + "isMetro": false, + "latitude": 14.416131, + "longitude": 50.098988, + "stopId": "U692" + }, + { + "id": "U692Z3", + "name": "Sparta", + "isMetro": false, + "latitude": 14.418045, + "longitude": 50.099072, + "stopId": "U692" + }, + { + "id": "U692Z4", + "name": "Sparta", + "isMetro": false, + "latitude": 14.417972, + "longitude": 50.099323, + "stopId": "U692" + }, + { + "id": "U693Z1", + "name": "U Palaty", + "isMetro": false, + "latitude": 14.38787, + "longitude": 50.077278, + "stopId": "U693" + }, + { + "id": "U693Z2", + "name": "U Palaty", + "isMetro": false, + "latitude": 14.388167, + "longitude": 50.077106, + "stopId": "U693" + }, + { + "id": "U6941Z1", + "name": "Štětí,záv.", + "isMetro": false, + "latitude": 14.367521, + "longitude": 50.460747, + "stopId": "U6941" + }, + { + "id": "U6941Z2", + "name": "Štětí,záv.", + "isMetro": false, + "latitude": 14.367575, + "longitude": 50.460323, + "stopId": "U6941" + }, + { + "id": "U6942Z1", + "name": "Roztoky,Záv.", + "isMetro": false, + "latitude": 13.867249, + "longitude": 50.029144, + "stopId": "U6942" + }, + { + "id": "U6944Z1", + "name": "Kolín,Třídvorská", + "isMetro": false, + "latitude": 15.215495, + "longitude": 50.032997, + "stopId": "U6944" + }, + { + "id": "U6944Z2", + "name": "Kolín,Třídvorská", + "isMetro": false, + "latitude": 15.215135, + "longitude": 50.033123, + "stopId": "U6944" + }, + { + "id": "U6946Z1", + "name": "Činěves", + "isMetro": false, + "latitude": 15.216852, + "longitude": 50.226879, + "stopId": "U6946" + }, + { + "id": "U6946Z2", + "name": "Činěves", + "isMetro": false, + "latitude": 15.216988, + "longitude": 50.22657, + "stopId": "U6946" + }, + { + "id": "U6947Z1", + "name": "Rakovník,Plzeňská", + "isMetro": false, + "latitude": 13.727568, + "longitude": 50.09465, + "stopId": "U6947" + }, + { + "id": "U6947Z2", + "name": "Rakovník,Plzeňská", + "isMetro": false, + "latitude": 13.72855, + "longitude": 50.095291, + "stopId": "U6947" + }, + { + "id": "U6948Z5", + "name": "Kolín,Jiráskovo nám.", + "isMetro": false, + "latitude": 15.206144, + "longitude": 50.030628, + "stopId": "U6948" + }, + { + "id": "U6948Z51", + "name": "Kolín,Jiráskovo nám.", + "isMetro": false, + "latitude": 15.207494, + "longitude": 50.030579, + "stopId": "U6948" + }, + { + "id": "U694Z1", + "name": "Spojovací", + "isMetro": false, + "latitude": 14.498599, + "longitude": 50.091843, + "stopId": "U694" + }, + { + "id": "U694Z2", + "name": "Spojovací", + "isMetro": false, + "latitude": 14.499409, + "longitude": 50.091507, + "stopId": "U694" + }, + { + "id": "U694Z3", + "name": "Spojovací", + "isMetro": false, + "latitude": 14.499193, + "longitude": 50.091324, + "stopId": "U694" + }, + { + "id": "U694Z4", + "name": "Spojovací", + "isMetro": false, + "latitude": 14.498015, + "longitude": 50.092316, + "stopId": "U694" + }, + { + "id": "U6954Z1", + "name": "Zálužická", + "isMetro": false, + "latitude": 14.442232, + "longitude": 49.990543, + "stopId": "U6954" + }, + { + "id": "U6954Z2", + "name": "Zálužická", + "isMetro": false, + "latitude": 14.442165, + "longitude": 49.990715, + "stopId": "U6954" + }, + { + "id": "U6955Z1", + "name": "Ohrobec,Zvolská", + "isMetro": false, + "latitude": 14.427337, + "longitude": 49.939117, + "stopId": "U6955" + }, + { + "id": "U6955Z2", + "name": "Ohrobec,Zvolská", + "isMetro": false, + "latitude": 14.427958, + "longitude": 49.939449, + "stopId": "U6955" + }, + { + "id": "U695Z1", + "name": "Spolská", + "isMetro": false, + "latitude": 14.541322, + "longitude": 50.09058, + "stopId": "U695" + }, + { + "id": "U695Z2", + "name": "Spolská", + "isMetro": false, + "latitude": 14.541793, + "longitude": 50.090649, + "stopId": "U695" + }, + { + "id": "U6962Z1", + "name": "Zbraslavice,nám.", + "isMetro": false, + "latitude": 15.183999, + "longitude": 49.811749, + "stopId": "U6962" + }, + { + "id": "U6962Z2", + "name": "Zbraslavice,nám.", + "isMetro": false, + "latitude": 15.183678, + "longitude": 49.811741, + "stopId": "U6962" + }, + { + "id": "U696Z1", + "name": "V Kratinách", + "isMetro": false, + "latitude": 14.442217, + "longitude": 50.145576, + "stopId": "U696" + }, + { + "id": "U696Z2", + "name": "V Kratinách", + "isMetro": false, + "latitude": 14.442818, + "longitude": 50.145756, + "stopId": "U696" + }, + { + "id": "U6976Z1", + "name": "Narysov,rozc.Vysoká", + "isMetro": false, + "latitude": 13.970069, + "longitude": 49.643936, + "stopId": "U6976" + }, + { + "id": "U6976Z2", + "name": "Narysov,rozc.Vysoká", + "isMetro": false, + "latitude": 13.970104, + "longitude": 49.644127, + "stopId": "U6976" + }, + { + "id": "U6977Z1", + "name": "Narysov,Na Výfuku", + "isMetro": false, + "latitude": 13.970364, + "longitude": 49.648205, + "stopId": "U6977" + }, + { + "id": "U6977Z2", + "name": "Narysov,Na Výfuku", + "isMetro": false, + "latitude": 13.970507, + "longitude": 49.648689, + "stopId": "U6977" + }, + { + "id": "U697Z1", + "name": "Spořilov", + "isMetro": false, + "latitude": 14.482206, + "longitude": 50.050941, + "stopId": "U697" + }, + { + "id": "U697Z2", + "name": "Spořilov", + "isMetro": false, + "latitude": 14.482008, + "longitude": 50.05056, + "stopId": "U697" + }, + { + "id": "U697Z3", + "name": "Spořilov", + "isMetro": false, + "latitude": 14.4811, + "longitude": 50.048344, + "stopId": "U697" + }, + { + "id": "U697Z4", + "name": "Spořilov", + "isMetro": false, + "latitude": 14.481091, + "longitude": 50.048531, + "stopId": "U697" + }, + { + "id": "U697Z5", + "name": "Spořilov", + "isMetro": false, + "latitude": 14.482752, + "longitude": 50.048401, + "stopId": "U697" + }, + { + "id": "U697Z6", + "name": "Spořilov", + "isMetro": false, + "latitude": 14.48258, + "longitude": 50.04998, + "stopId": "U697" + }, + { + "id": "U697Z7", + "name": "Spořilov", + "isMetro": false, + "latitude": 14.483484, + "longitude": 50.050552, + "stopId": "U697" + }, + { + "id": "U698Z1", + "name": "Terminál 3", + "isMetro": false, + "latitude": 14.288949, + "longitude": 50.098976, + "stopId": "U698" + }, + { + "id": "U698Z2", + "name": "Terminál 3", + "isMetro": false, + "latitude": 14.288819, + "longitude": 50.098816, + "stopId": "U698" + }, + { + "id": "U698Z3", + "name": "Terminál 3", + "isMetro": false, + "latitude": 14.288391, + "longitude": 50.099373, + "stopId": "U698" + }, + { + "id": "U699Z1", + "name": "Stadion Strahov", + "isMetro": false, + "latitude": 14.388195, + "longitude": 50.078354, + "stopId": "U699" + }, + { + "id": "U699Z12", + "name": "Stadion Strahov", + "isMetro": false, + "latitude": 14.387836, + "longitude": 50.078186, + "stopId": "U699" + }, + { + "id": "U699Z2", + "name": "Stadion Strahov", + "isMetro": false, + "latitude": 14.387836, + "longitude": 50.078186, + "stopId": "U699" + }, + { + "id": "U699Z3", + "name": "Stadion Strahov", + "isMetro": false, + "latitude": 14.389114, + "longitude": 50.078484, + "stopId": "U699" + }, + { + "id": "U699Z4", + "name": "Stadion Strahov", + "isMetro": false, + "latitude": 14.388543, + "longitude": 50.078709, + "stopId": "U699" + }, + { + "id": "U69Z1", + "name": "Černínova", + "isMetro": false, + "latitude": 14.462293, + "longitude": 50.088974, + "stopId": "U69" + }, + { + "id": "U69Z2", + "name": "Černínova", + "isMetro": false, + "latitude": 14.461117, + "longitude": 50.088955, + "stopId": "U69" + }, + { + "id": "U6Z1", + "name": "Dolnokřeslická", + "isMetro": false, + "latitude": 14.560534, + "longitude": 50.024277, + "stopId": "U6" + }, + { + "id": "U6Z2", + "name": "Dolnokřeslická", + "isMetro": false, + "latitude": 14.560828, + "longitude": 50.024208, + "stopId": "U6" + }, + { + "id": "U7002Z1", + "name": "Benešov,Pinko", + "isMetro": false, + "latitude": 14.697479, + "longitude": 49.782642, + "stopId": "U7002" + }, + { + "id": "U7002Z2", + "name": "Benešov,Pinko", + "isMetro": false, + "latitude": 14.698152, + "longitude": 49.78231, + "stopId": "U7002" + }, + { + "id": "U7004Z1", + "name": "Benešov,Baba", + "isMetro": false, + "latitude": 14.71138, + "longitude": 49.795376, + "stopId": "U7004" + }, + { + "id": "U7004Z2", + "name": "Benešov,Baba", + "isMetro": false, + "latitude": 14.711235, + "longitude": 49.795383, + "stopId": "U7004" + }, + { + "id": "U7005Z1", + "name": "Benešov,Bedrč", + "isMetro": false, + "latitude": 14.717411, + "longitude": 49.807816, + "stopId": "U7005" + }, + { + "id": "U7005Z2", + "name": "Benešov,Bedrč", + "isMetro": false, + "latitude": 14.717271, + "longitude": 49.80793, + "stopId": "U7005" + }, + { + "id": "U7006Z1", + "name": "Benešov,Boušice", + "isMetro": false, + "latitude": 14.738317, + "longitude": 49.775127, + "stopId": "U7006" + }, + { + "id": "U7006Z2", + "name": "Benešov,Boušice", + "isMetro": false, + "latitude": 14.738275, + "longitude": 49.775192, + "stopId": "U7006" + }, + { + "id": "U7007Z1", + "name": "Benešov,Červený Dvůr", + "isMetro": false, + "latitude": 14.736043, + "longitude": 49.785126, + "stopId": "U7007" + }, + { + "id": "U7007Z2", + "name": "Benešov,Červený Dvůr", + "isMetro": false, + "latitude": 14.735874, + "longitude": 49.785137, + "stopId": "U7007" + }, + { + "id": "U7008Z1", + "name": "Benešov,Dlouhé Pole", + "isMetro": false, + "latitude": 14.736626, + "longitude": 49.78215, + "stopId": "U7008" + }, + { + "id": "U7008Z2", + "name": "Benešov,Dlouhé Pole", + "isMetro": false, + "latitude": 14.736609, + "longitude": 49.781876, + "stopId": "U7008" + }, + { + "id": "U700Z1", + "name": "Staré náměstí", + "isMetro": false, + "latitude": 14.31069, + "longitude": 50.082214, + "stopId": "U700" + }, + { + "id": "U700Z2", + "name": "Stochovská", + "isMetro": false, + "latitude": 14.311311, + "longitude": 50.083069, + "stopId": "U700" + }, + { + "id": "U700Z3", + "name": "Staré náměstí", + "isMetro": false, + "latitude": 14.310411, + "longitude": 50.08149, + "stopId": "U700" + }, + { + "id": "U700Z4", + "name": "Stochovská", + "isMetro": false, + "latitude": 14.310839, + "longitude": 50.082878, + "stopId": "U700" + }, + { + "id": "U7011Z1", + "name": "Horoměřice,Velká Brána", + "isMetro": false, + "latitude": 14.336085, + "longitude": 50.138702, + "stopId": "U7011" + }, + { + "id": "U7011Z2", + "name": "Horoměřice,Velká Brána", + "isMetro": false, + "latitude": 14.335882, + "longitude": 50.138718, + "stopId": "U7011" + }, + { + "id": "U7012Z1", + "name": "Benešov,Dlouhé Pole,rozc.", + "isMetro": false, + "latitude": 14.719579, + "longitude": 49.77739, + "stopId": "U7012" + }, + { + "id": "U7012Z2", + "name": "Benešov,Dlouhé Pole,rozc.", + "isMetro": false, + "latitude": 14.720008, + "longitude": 49.77726, + "stopId": "U7012" + }, + { + "id": "U7013Z1", + "name": "Benešov,Okrouhlice", + "isMetro": false, + "latitude": 14.752984, + "longitude": 49.790886, + "stopId": "U7013" + }, + { + "id": "U7013Z2", + "name": "Benešov,Okrouhlice", + "isMetro": false, + "latitude": 14.752901, + "longitude": 49.790974, + "stopId": "U7013" + }, + { + "id": "U7014Z1", + "name": "Benešov,Okrouhlice,lom", + "isMetro": false, + "latitude": 14.741659, + "longitude": 49.787678, + "stopId": "U7014" + }, + { + "id": "U7014Z2", + "name": "Benešov,Okrouhlice,lom", + "isMetro": false, + "latitude": 14.741577, + "longitude": 49.78775, + "stopId": "U7014" + }, + { + "id": "U7015Z1", + "name": "Bernartice", + "isMetro": false, + "latitude": 15.129319, + "longitude": 49.676243, + "stopId": "U7015" + }, + { + "id": "U7015Z2", + "name": "Bernartice", + "isMetro": false, + "latitude": 15.129159, + "longitude": 49.676392, + "stopId": "U7015" + }, + { + "id": "U7016Z1", + "name": "Bernartice,most", + "isMetro": false, + "latitude": 15.145304, + "longitude": 49.676304, + "stopId": "U7016" + }, + { + "id": "U7016Z2", + "name": "Bernartice,most", + "isMetro": false, + "latitude": 15.144842, + "longitude": 49.676178, + "stopId": "U7016" + }, + { + "id": "U7017Z1", + "name": "Bernartice,rozc.", + "isMetro": false, + "latitude": 15.123475, + "longitude": 49.675678, + "stopId": "U7017" + }, + { + "id": "U7017Z2", + "name": "Bernartice,rozc.", + "isMetro": false, + "latitude": 15.123604, + "longitude": 49.675789, + "stopId": "U7017" + }, + { + "id": "U7019Z1", + "name": "Bezděkov p.Tř.", + "isMetro": false, + "latitude": 13.878585, + "longitude": 49.57806, + "stopId": "U7019" + }, + { + "id": "U7019Z2", + "name": "Bezděkov p.Tř.", + "isMetro": false, + "latitude": 13.878782, + "longitude": 49.578133, + "stopId": "U7019" + }, + { + "id": "U7021Z1", + "name": "Bílkovice", + "isMetro": false, + "latitude": 14.864371, + "longitude": 49.758739, + "stopId": "U7021" + }, + { + "id": "U7021Z2", + "name": "Bílkovice", + "isMetro": false, + "latitude": 14.864368, + "longitude": 49.758804, + "stopId": "U7021" + }, + { + "id": "U7022Z1", + "name": "Bílkovice,mlýn", + "isMetro": false, + "latitude": 14.860751, + "longitude": 49.755333, + "stopId": "U7022" + }, + { + "id": "U7022Z2", + "name": "Bílkovice,mlýn", + "isMetro": false, + "latitude": 14.860622, + "longitude": 49.755333, + "stopId": "U7022" + }, + { + "id": "U7024Z2", + "name": "Blažejovice", + "isMetro": false, + "latitude": 15.200163, + "longitude": 49.619522, + "stopId": "U7024" + }, + { + "id": "U7025Z2", + "name": "Blažejovice,Vítonice,rozc.", + "isMetro": false, + "latitude": 15.18608, + "longitude": 49.622208, + "stopId": "U7025" + }, + { + "id": "U7026Z1", + "name": "Bohostice", + "isMetro": false, + "latitude": 14.140238, + "longitude": 49.60154, + "stopId": "U7026" + }, + { + "id": "U7026Z2", + "name": "Bohostice", + "isMetro": false, + "latitude": 14.139969, + "longitude": 49.601555, + "stopId": "U7026" + }, + { + "id": "U7027Z1", + "name": "Bohostice,Zalaby", + "isMetro": false, + "latitude": 14.158211, + "longitude": 49.60783, + "stopId": "U7027" + }, + { + "id": "U7027Z2", + "name": "Bohostice,Zalaby", + "isMetro": false, + "latitude": 14.158276, + "longitude": 49.607941, + "stopId": "U7027" + }, + { + "id": "U7028Z1", + "name": "Borotice", + "isMetro": false, + "latitude": 14.278607, + "longitude": 49.734989, + "stopId": "U7028" + }, + { + "id": "U7028Z2", + "name": "Borotice", + "isMetro": false, + "latitude": 14.278597, + "longitude": 49.735081, + "stopId": "U7028" + }, + { + "id": "U7029Z1", + "name": "Borotice,rozc.", + "isMetro": false, + "latitude": 14.294394, + "longitude": 49.73365, + "stopId": "U7029" + }, + { + "id": "U7029Z3", + "name": "Borotice,rozc.", + "isMetro": false, + "latitude": 14.294598, + "longitude": 49.73341, + "stopId": "U7029" + }, + { + "id": "U702Z1", + "name": "Starochuchelská", + "isMetro": false, + "latitude": 14.385867, + "longitude": 50.011452, + "stopId": "U702" + }, + { + "id": "U7032Z1", + "name": "Pyšely,u vily", + "isMetro": false, + "latitude": 14.694271, + "longitude": 49.872757, + "stopId": "U7032" + }, + { + "id": "U7032Z2", + "name": "Pyšely,u vily", + "isMetro": false, + "latitude": 14.694798, + "longitude": 49.872658, + "stopId": "U7032" + }, + { + "id": "U7033Z1", + "name": "Borotice,Hubenov", + "isMetro": false, + "latitude": 14.290976, + "longitude": 49.726627, + "stopId": "U7033" + }, + { + "id": "U7033Z2", + "name": "Borotice,Hubenov", + "isMetro": false, + "latitude": 14.291138, + "longitude": 49.726719, + "stopId": "U7033" + }, + { + "id": "U7035Z1", + "name": "Borovnice,rozc.", + "isMetro": false, + "latitude": 15.013264, + "longitude": 49.648743, + "stopId": "U7035" + }, + { + "id": "U7035Z2", + "name": "Borovnice,rozc.", + "isMetro": false, + "latitude": 15.013486, + "longitude": 49.648712, + "stopId": "U7035" + }, + { + "id": "U7038Z1", + "name": "Říčany,Politických vězňů", + "isMetro": false, + "latitude": 14.667669, + "longitude": 49.994312, + "stopId": "U7038" + }, + { + "id": "U7038Z2", + "name": "Říčany,Politických vězňů", + "isMetro": false, + "latitude": 14.667598, + "longitude": 49.994228, + "stopId": "U7038" + }, + { + "id": "U703Z1", + "name": "Staroměstská", + "isMetro": false, + "latitude": 14.415323, + "longitude": 50.0882, + "stopId": "U703" + }, + { + "id": "U703Z101", + "name": "Staroměstská", + "isMetro": true, + "latitude": 14.417581, + "longitude": 50.088116, + "stopId": "U703" + }, + { + "id": "U703Z102", + "name": "Staroměstská", + "isMetro": true, + "latitude": 14.417708, + "longitude": 50.088309, + "stopId": "U703" + }, + { + "id": "U703Z2", + "name": "Staroměstská", + "isMetro": false, + "latitude": 14.415547, + "longitude": 50.088459, + "stopId": "U703" + }, + { + "id": "U703Z3", + "name": "Staroměstská", + "isMetro": false, + "latitude": 14.416533, + "longitude": 50.089134, + "stopId": "U703" + }, + { + "id": "U703Z4", + "name": "Staroměstská", + "isMetro": false, + "latitude": 14.416117, + "longitude": 50.089718, + "stopId": "U703" + }, + { + "id": "U703Z5", + "name": "Staroměstská", + "isMetro": false, + "latitude": 14.415824, + "longitude": 50.08865, + "stopId": "U703" + }, + { + "id": "U7045Z1", + "name": "Březnice,aut.st.", + "isMetro": false, + "latitude": 13.946624, + "longitude": 49.558784, + "stopId": "U7045" + }, + { + "id": "U7045Z2", + "name": "Březnice,aut.st.", + "isMetro": false, + "latitude": 13.946925, + "longitude": 49.558559, + "stopId": "U7045" + }, + { + "id": "U7045Z3", + "name": "Březnice,aut.st.", + "isMetro": false, + "latitude": 13.946654, + "longitude": 49.558605, + "stopId": "U7045" + }, + { + "id": "U7046Z1", + "name": "Březnice,nám.", + "isMetro": false, + "latitude": 13.951772, + "longitude": 49.557137, + "stopId": "U7046" + }, + { + "id": "U7047Z1", + "name": "Březnice,Dolní Valy", + "isMetro": false, + "latitude": 13.953693, + "longitude": 49.55648, + "stopId": "U7047" + }, + { + "id": "U7048Z1", + "name": "Sedlčany,Třebnice,rozc.", + "isMetro": false, + "latitude": 14.372824, + "longitude": 49.653419, + "stopId": "U7048" + }, + { + "id": "U7049Z51", + "name": "Březnice,Tochovická", + "isMetro": false, + "latitude": 13.955193, + "longitude": 49.559788, + "stopId": "U7049" + }, + { + "id": "U7049Z52", + "name": "Březnice,Tochovická", + "isMetro": false, + "latitude": 13.954018, + "longitude": 49.559952, + "stopId": "U7049" + }, + { + "id": "U704Z1", + "name": "Starý Spořilov", + "isMetro": false, + "latitude": 14.473634, + "longitude": 50.0425, + "stopId": "U704" + }, + { + "id": "U704Z2", + "name": "Starý Spořilov", + "isMetro": false, + "latitude": 14.473389, + "longitude": 50.042583, + "stopId": "U704" + }, + { + "id": "U7050Z1", + "name": "Březnice,Počapská", + "isMetro": false, + "latitude": 13.959432, + "longitude": 49.553387, + "stopId": "U7050" + }, + { + "id": "U7050Z2", + "name": "Březnice,Počapská", + "isMetro": false, + "latitude": 13.959543, + "longitude": 49.553429, + "stopId": "U7050" + }, + { + "id": "U7053Z1", + "name": "Zruč n.Sáz.,prům.zóna Jih", + "isMetro": false, + "latitude": 15.090661, + "longitude": 49.734406, + "stopId": "U7053" + }, + { + "id": "U7053Z2", + "name": "Zruč n.Sáz.,prům.zóna Jih", + "isMetro": false, + "latitude": 15.092039, + "longitude": 49.734932, + "stopId": "U7053" + }, + { + "id": "U7057Z1", + "name": "Zruč n.Sáz.,nám.", + "isMetro": false, + "latitude": 15.102966, + "longitude": 49.742931, + "stopId": "U7057" + }, + { + "id": "U7057Z2", + "name": "Zruč n.Sáz.,nám.", + "isMetro": false, + "latitude": 15.10304, + "longitude": 49.743031, + "stopId": "U7057" + }, + { + "id": "U7058Z1", + "name": "Březnice,Přední Poříčí", + "isMetro": false, + "latitude": 13.93942, + "longitude": 49.57542, + "stopId": "U7058" + }, + { + "id": "U7058Z2", + "name": "Březnice,Přední Poříčí", + "isMetro": false, + "latitude": 13.939644, + "longitude": 49.575516, + "stopId": "U7058" + }, + { + "id": "U705Z1", + "name": "Závodiště Chuchle", + "isMetro": false, + "latitude": 14.388796, + "longitude": 50.007614, + "stopId": "U705" + }, + { + "id": "U705Z3", + "name": "Závodiště Chuchle", + "isMetro": false, + "latitude": 14.388976, + "longitude": 50.007568, + "stopId": "U705" + }, + { + "id": "U7061Z1", + "name": "Cetyně", + "isMetro": false, + "latitude": 14.12115, + "longitude": 49.599823, + "stopId": "U7061" + }, + { + "id": "U7061Z2", + "name": "Cetyně", + "isMetro": false, + "latitude": 14.121113, + "longitude": 49.600002, + "stopId": "U7061" + }, + { + "id": "U7062Z1", + "name": "Zbraslavice,Borová", + "isMetro": false, + "latitude": 15.181804, + "longitude": 49.799335, + "stopId": "U7062" + }, + { + "id": "U7062Z2", + "name": "Zbraslavice,Borová", + "isMetro": false, + "latitude": 15.181562, + "longitude": 49.799213, + "stopId": "U7062" + }, + { + "id": "U7063Z1", + "name": "Zbraslavice,letiště", + "isMetro": false, + "latitude": 15.197944, + "longitude": 49.81852, + "stopId": "U7063" + }, + { + "id": "U7063Z2", + "name": "Zbraslavice,letiště", + "isMetro": false, + "latitude": 15.197848, + "longitude": 49.818554, + "stopId": "U7063" + }, + { + "id": "U7064Z1", + "name": "Štipoklasy", + "isMetro": false, + "latitude": 15.213305, + "longitude": 49.824478, + "stopId": "U7064" + }, + { + "id": "U7064Z2", + "name": "Štipoklasy", + "isMetro": false, + "latitude": 15.213237, + "longitude": 49.824589, + "stopId": "U7064" + }, + { + "id": "U7065Z1", + "name": "Černíny,Zdeslavice", + "isMetro": false, + "latitude": 15.23362, + "longitude": 49.826168, + "stopId": "U7065" + }, + { + "id": "U7065Z2", + "name": "Černíny,Zdeslavice", + "isMetro": false, + "latitude": 15.233514, + "longitude": 49.826237, + "stopId": "U7065" + }, + { + "id": "U7067Z1", + "name": "Krchleby", + "isMetro": false, + "latitude": 15.350015, + "longitude": 49.88834, + "stopId": "U7067" + }, + { + "id": "U7067Z2", + "name": "Krchleby", + "isMetro": false, + "latitude": 15.349898, + "longitude": 49.88842, + "stopId": "U7067" + }, + { + "id": "U706Z1", + "name": "Strojírenská", + "isMetro": false, + "latitude": 14.288399, + "longitude": 50.065865, + "stopId": "U706" + }, + { + "id": "U706Z2", + "name": "Strojírenská", + "isMetro": false, + "latitude": 14.28835, + "longitude": 50.065918, + "stopId": "U706" + }, + { + "id": "U707Z1", + "name": "Tiskařská", + "isMetro": false, + "latitude": 14.53435, + "longitude": 50.082649, + "stopId": "U707" + }, + { + "id": "U707Z2", + "name": "Tiskařská", + "isMetro": false, + "latitude": 14.533834, + "longitude": 50.083252, + "stopId": "U707" + }, + { + "id": "U708Z1", + "name": "Zamenhofova", + "isMetro": false, + "latitude": 14.537533, + "longitude": 50.076088, + "stopId": "U708" + }, + { + "id": "U708Z2", + "name": "Zamenhofova", + "isMetro": false, + "latitude": 14.538163, + "longitude": 50.077408, + "stopId": "U708" + }, + { + "id": "U7091Z1", + "name": "Dolní Pohleď", + "isMetro": false, + "latitude": 15.133996, + "longitude": 49.74577, + "stopId": "U7091" + }, + { + "id": "U7091Z2", + "name": "Dolní Pohleď", + "isMetro": false, + "latitude": 15.133546, + "longitude": 49.745911, + "stopId": "U7091" + }, + { + "id": "U7092Z1", + "name": "Slavošov", + "isMetro": false, + "latitude": 15.152769, + "longitude": 49.762474, + "stopId": "U7092" + }, + { + "id": "U7092Z2", + "name": "Slavošov", + "isMetro": false, + "latitude": 15.152472, + "longitude": 49.762451, + "stopId": "U7092" + }, + { + "id": "U7093Z1", + "name": "Slavošov,Věžníkov,rozc.", + "isMetro": false, + "latitude": 15.172735, + "longitude": 49.774815, + "stopId": "U7093" + }, + { + "id": "U7093Z2", + "name": "Slavošov,Věžníkov,rozc.", + "isMetro": false, + "latitude": 15.172552, + "longitude": 49.77483, + "stopId": "U7093" + }, + { + "id": "U7094Z1", + "name": "Slavošov,Hranice", + "isMetro": false, + "latitude": 15.177634, + "longitude": 49.785889, + "stopId": "U7094" + }, + { + "id": "U7094Z2", + "name": "Slavošov,Hranice", + "isMetro": false, + "latitude": 15.177505, + "longitude": 49.785847, + "stopId": "U7094" + }, + { + "id": "U7095Z1", + "name": "Červené Janovice,Katlov", + "isMetro": false, + "latitude": 15.249169, + "longitude": 49.830795, + "stopId": "U7095" + }, + { + "id": "U7095Z2", + "name": "Červené Janovice,Katlov", + "isMetro": false, + "latitude": 15.249068, + "longitude": 49.830807, + "stopId": "U7095" + }, + { + "id": "U7096Z1", + "name": "Červené Janovice", + "isMetro": false, + "latitude": 15.252594, + "longitude": 49.834366, + "stopId": "U7096" + }, + { + "id": "U7097Z1", + "name": "Červené Janovice,škola", + "isMetro": false, + "latitude": 15.259401, + "longitude": 49.835777, + "stopId": "U7097" + }, + { + "id": "U7097Z2", + "name": "Červené Janovice,škola", + "isMetro": false, + "latitude": 15.259192, + "longitude": 49.835835, + "stopId": "U7097" + }, + { + "id": "U7098Z1", + "name": "Červené Janovice,Vilémovice,rozc.", + "isMetro": false, + "latitude": 15.270108, + "longitude": 49.843201, + "stopId": "U7098" + }, + { + "id": "U7098Z2", + "name": "Červené Janovice,Vilémovice,rozc.", + "isMetro": false, + "latitude": 15.269879, + "longitude": 49.843212, + "stopId": "U7098" + }, + { + "id": "U7099Z1", + "name": "Červené Janovice,Lány", + "isMetro": false, + "latitude": 15.287408, + "longitude": 49.848621, + "stopId": "U7099" + }, + { + "id": "U7099Z2", + "name": "Červené Janovice,Lány", + "isMetro": false, + "latitude": 15.287234, + "longitude": 49.848682, + "stopId": "U7099" + }, + { + "id": "U709Z1", + "name": "Nárožní", + "isMetro": false, + "latitude": 14.329804, + "longitude": 50.053478, + "stopId": "U709" + }, + { + "id": "U709Z2", + "name": "Nárožní", + "isMetro": false, + "latitude": 14.330237, + "longitude": 50.05336, + "stopId": "U709" + }, + { + "id": "U70Z1", + "name": "Nové Strašnice", + "isMetro": false, + "latitude": 14.510651, + "longitude": 50.077885, + "stopId": "U70" + }, + { + "id": "U70Z2", + "name": "Nové Strašnice", + "isMetro": false, + "latitude": 14.511354, + "longitude": 50.07782, + "stopId": "U70" + }, + { + "id": "U70Z6", + "name": "Nové Strašnice", + "isMetro": false, + "latitude": 14.508816, + "longitude": 50.077869, + "stopId": "U70" + }, + { + "id": "U70Z7", + "name": "Nové Strašnice", + "isMetro": false, + "latitude": 14.510993, + "longitude": 50.077744, + "stopId": "U70" + }, + { + "id": "U7101Z1", + "name": "Paběnice,rozc.", + "isMetro": false, + "latitude": 15.303824, + "longitude": 49.856331, + "stopId": "U7101" + }, + { + "id": "U7101Z2", + "name": "Paběnice,rozc.", + "isMetro": false, + "latitude": 15.30322, + "longitude": 49.856186, + "stopId": "U7101" + }, + { + "id": "U7103Z1", + "name": "Třebonín,rozc.", + "isMetro": false, + "latitude": 15.3208, + "longitude": 49.86702, + "stopId": "U7103" + }, + { + "id": "U7103Z2", + "name": "Třebonín,rozc.", + "isMetro": false, + "latitude": 15.320741, + "longitude": 49.867096, + "stopId": "U7103" + }, + { + "id": "U7104Z1", + "name": "Třebonín,rozc.Chedrbí", + "isMetro": false, + "latitude": 15.323946, + "longitude": 49.869495, + "stopId": "U7104" + }, + { + "id": "U7104Z2", + "name": "Třebonín,rozc.Chedrbí", + "isMetro": false, + "latitude": 15.322803, + "longitude": 49.868797, + "stopId": "U7104" + }, + { + "id": "U7105Z1", + "name": "Močovice,rozc.", + "isMetro": false, + "latitude": 15.358576, + "longitude": 49.89473, + "stopId": "U7105" + }, + { + "id": "U7105Z2", + "name": "Močovice,rozc.", + "isMetro": false, + "latitude": 15.358508, + "longitude": 49.894787, + "stopId": "U7105" + }, + { + "id": "U710Z1", + "name": "Vackova", + "isMetro": false, + "latitude": 14.315333, + "longitude": 50.045052, + "stopId": "U710" + }, + { + "id": "U710Z2", + "name": "Vackova", + "isMetro": false, + "latitude": 14.31525, + "longitude": 50.044552, + "stopId": "U710" + }, + { + "id": "U711Z1", + "name": "Kovářova - KD Mlejn", + "isMetro": false, + "latitude": 14.317783, + "longitude": 50.048435, + "stopId": "U711" + }, + { + "id": "U711Z2", + "name": "Kovářova - KD Mlejn", + "isMetro": false, + "latitude": 14.317867, + "longitude": 50.048199, + "stopId": "U711" + }, + { + "id": "U7121Z1", + "name": "Křesetice,Bykánec", + "isMetro": false, + "latitude": 15.251911, + "longitude": 49.907452, + "stopId": "U7121" + }, + { + "id": "U7121Z2", + "name": "Křesetice,Bykánec", + "isMetro": false, + "latitude": 15.251938, + "longitude": 49.907528, + "stopId": "U7121" + }, + { + "id": "U7122Z1", + "name": "Křesetice,u rybníku", + "isMetro": false, + "latitude": 15.259902, + "longitude": 49.907722, + "stopId": "U7122" + }, + { + "id": "U7122Z2", + "name": "Křesetice,u rybníku", + "isMetro": false, + "latitude": 15.259575, + "longitude": 49.907867, + "stopId": "U7122" + }, + { + "id": "U7124Z1", + "name": "Křesetice", + "isMetro": false, + "latitude": 15.265546, + "longitude": 49.908367, + "stopId": "U7124" + }, + { + "id": "U7124Z2", + "name": "Křesetice", + "isMetro": false, + "latitude": 15.265431, + "longitude": 49.908463, + "stopId": "U7124" + }, + { + "id": "U7125Z1", + "name": "Kutná Hora,Poličany,rozc.", + "isMetro": false, + "latitude": 15.269291, + "longitude": 49.923576, + "stopId": "U7125" + }, + { + "id": "U7125Z2", + "name": "Kutná Hora,Poličany,rozc.", + "isMetro": false, + "latitude": 15.269171, + "longitude": 49.923504, + "stopId": "U7125" + }, + { + "id": "U7126Z1", + "name": "Kutná Hora,Karlov,celní úřad", + "isMetro": false, + "latitude": 15.272848, + "longitude": 49.928833, + "stopId": "U7126" + }, + { + "id": "U7126Z2", + "name": "Kutná Hora,Karlov,celní úřad", + "isMetro": false, + "latitude": 15.2721, + "longitude": 49.927692, + "stopId": "U7126" + }, + { + "id": "U7127Z1", + "name": "Kutná Hora,Karlov,prům.zóna", + "isMetro": false, + "latitude": 15.27614, + "longitude": 49.934364, + "stopId": "U7127" + }, + { + "id": "U7127Z2", + "name": "Kutná Hora,Karlov,prům.zóna", + "isMetro": false, + "latitude": 15.275805, + "longitude": 49.934162, + "stopId": "U7127" + }, + { + "id": "U7128Z1", + "name": "Kutná Hora,Karlov,Na Rovinách", + "isMetro": false, + "latitude": 15.279428, + "longitude": 49.939388, + "stopId": "U7128" + }, + { + "id": "U7137Z1", + "name": "Uhlířské Janovice,Janovická Lhota", + "isMetro": false, + "latitude": 15.079659, + "longitude": 49.860287, + "stopId": "U7137" + }, + { + "id": "U7137Z2", + "name": "Uhlířské Janovice,Janovická Lhota", + "isMetro": false, + "latitude": 15.079683, + "longitude": 49.860363, + "stopId": "U7137" + }, + { + "id": "U7139Z1", + "name": "Petrovice II,Staré Nespeřice", + "isMetro": false, + "latitude": 15.086205, + "longitude": 49.832882, + "stopId": "U7139" + }, + { + "id": "U7139Z2", + "name": "Petrovice II,Staré Nespeřice", + "isMetro": false, + "latitude": 15.086121, + "longitude": 49.832996, + "stopId": "U7139" + }, + { + "id": "U713Z1", + "name": "Strašnická", + "isMetro": false, + "latitude": 14.49049, + "longitude": 50.072601, + "stopId": "U713" + }, + { + "id": "U713Z101", + "name": "Strašnická", + "isMetro": true, + "latitude": 14.490409, + "longitude": 50.07306, + "stopId": "U713" + }, + { + "id": "U713Z102", + "name": "Strašnická", + "isMetro": true, + "latitude": 14.490506, + "longitude": 50.073145, + "stopId": "U713" + }, + { + "id": "U713Z2", + "name": "Strašnická", + "isMetro": false, + "latitude": 14.491093, + "longitude": 50.073017, + "stopId": "U713" + }, + { + "id": "U713Z4", + "name": "Strašnická", + "isMetro": false, + "latitude": 14.490684, + "longitude": 50.072449, + "stopId": "U713" + }, + { + "id": "U713Z5", + "name": "Strašnická", + "isMetro": false, + "latitude": 14.4925, + "longitude": 50.072369, + "stopId": "U713" + }, + { + "id": "U713Z6", + "name": "Strašnická", + "isMetro": false, + "latitude": 14.491717, + "longitude": 50.072285, + "stopId": "U713" + }, + { + "id": "U7140Z1", + "name": "Petrovice II,Stará Huť", + "isMetro": false, + "latitude": 15.087212, + "longitude": 49.828064, + "stopId": "U7140" + }, + { + "id": "U7140Z2", + "name": "Petrovice II,Stará Huť", + "isMetro": false, + "latitude": 15.087549, + "longitude": 49.828121, + "stopId": "U7140" + }, + { + "id": "U7142Z1", + "name": "Ondřejov,škola", + "isMetro": false, + "latitude": 14.7798, + "longitude": 49.90538, + "stopId": "U7142" + }, + { + "id": "U7142Z2", + "name": "Ondřejov,škola", + "isMetro": false, + "latitude": 14.779703, + "longitude": 49.905457, + "stopId": "U7142" + }, + { + "id": "U7143Z1", + "name": "Čestín,Milotice", + "isMetro": false, + "latitude": 15.095981, + "longitude": 49.813988, + "stopId": "U7143" + }, + { + "id": "U7143Z2", + "name": "Čestín,Milotice", + "isMetro": false, + "latitude": 15.095875, + "longitude": 49.813683, + "stopId": "U7143" + }, + { + "id": "U7144Z1", + "name": "Čestín,Čentice", + "isMetro": false, + "latitude": 15.087049, + "longitude": 49.812, + "stopId": "U7144" + }, + { + "id": "U7144Z2", + "name": "Čestín,Čentice", + "isMetro": false, + "latitude": 15.086988, + "longitude": 49.811886, + "stopId": "U7144" + }, + { + "id": "U7145Z1", + "name": "Čestín,Kasanice,rozc.", + "isMetro": false, + "latitude": 15.081861, + "longitude": 49.807869, + "stopId": "U7145" + }, + { + "id": "U7145Z2", + "name": "Čestín,Kasanice,rozc.", + "isMetro": false, + "latitude": 15.082112, + "longitude": 49.808117, + "stopId": "U7145" + }, + { + "id": "U7146Z1", + "name": "Čestín,u mlýna", + "isMetro": false, + "latitude": 15.096953, + "longitude": 49.807961, + "stopId": "U7146" + }, + { + "id": "U7146Z2", + "name": "Čestín,u mlýna", + "isMetro": false, + "latitude": 15.096913, + "longitude": 49.808014, + "stopId": "U7146" + }, + { + "id": "U7147Z1", + "name": "Čestín", + "isMetro": false, + "latitude": 15.103763, + "longitude": 49.80719, + "stopId": "U7147" + }, + { + "id": "U7147Z2", + "name": "Čestín", + "isMetro": false, + "latitude": 15.104259, + "longitude": 49.807457, + "stopId": "U7147" + }, + { + "id": "U7149Z1", + "name": "Čestín,Čenovice,rozc.", + "isMetro": false, + "latitude": 15.108072, + "longitude": 49.798981, + "stopId": "U7149" + }, + { + "id": "U7149Z2", + "name": "Čestín,Čenovice,rozc.", + "isMetro": false, + "latitude": 15.108136, + "longitude": 49.798923, + "stopId": "U7149" + }, + { + "id": "U714Z1", + "name": "Strážní", + "isMetro": false, + "latitude": 14.481536, + "longitude": 50.092316, + "stopId": "U714" + }, + { + "id": "U714Z2", + "name": "Strážní", + "isMetro": false, + "latitude": 14.481013, + "longitude": 50.09219, + "stopId": "U714" + }, + { + "id": "U7150Z1", + "name": "Čestín,Kněž,rozc.", + "isMetro": false, + "latitude": 15.100515, + "longitude": 49.796688, + "stopId": "U7150" + }, + { + "id": "U7150Z2", + "name": "Čestín,Kněž,rozc.", + "isMetro": false, + "latitude": 15.100613, + "longitude": 49.79665, + "stopId": "U7150" + }, + { + "id": "U7152Z1", + "name": "Řendějov,Starý Samechov", + "isMetro": false, + "latitude": 15.094151, + "longitude": 49.776382, + "stopId": "U7152" + }, + { + "id": "U7152Z2", + "name": "Řendějov,Starý Samechov", + "isMetro": false, + "latitude": 15.094296, + "longitude": 49.776421, + "stopId": "U7152" + }, + { + "id": "U7153Z1", + "name": "Řendějov", + "isMetro": false, + "latitude": 15.080077, + "longitude": 49.767857, + "stopId": "U7153" + }, + { + "id": "U7155Z1", + "name": "Řendějov,Nový Samechov", + "isMetro": false, + "latitude": 15.087547, + "longitude": 49.769135, + "stopId": "U7155" + }, + { + "id": "U7155Z2", + "name": "Řendějov,Nový Samechov", + "isMetro": false, + "latitude": 15.087505, + "longitude": 49.769184, + "stopId": "U7155" + }, + { + "id": "U7156Z1", + "name": "Řendějov,Jiřice", + "isMetro": false, + "latitude": 15.10137, + "longitude": 49.77079, + "stopId": "U7156" + }, + { + "id": "U7156Z2", + "name": "Řendějov,Jiřice", + "isMetro": false, + "latitude": 15.101611, + "longitude": 49.770882, + "stopId": "U7156" + }, + { + "id": "U7157Z1", + "name": "Zruč n.Sáz.,Nový hřbitov", + "isMetro": false, + "latitude": 15.099904, + "longitude": 49.752567, + "stopId": "U7157" + }, + { + "id": "U7157Z2", + "name": "Zruč n.Sáz.,Nový hřbitov", + "isMetro": false, + "latitude": 15.100036, + "longitude": 49.752533, + "stopId": "U7157" + }, + { + "id": "U7158Z1", + "name": "Zruč n.Sáz.,rozhledna Babka", + "isMetro": false, + "latitude": 15.100573, + "longitude": 49.755497, + "stopId": "U7158" + }, + { + "id": "U7158Z2", + "name": "Zruč n.Sáz.,rozhledna Babka", + "isMetro": false, + "latitude": 15.10063, + "longitude": 49.755062, + "stopId": "U7158" + }, + { + "id": "U7159Z1", + "name": "Zruč n.Sáz.,Na Pohoří", + "isMetro": false, + "latitude": 15.097247, + "longitude": 49.746555, + "stopId": "U7159" + }, + { + "id": "U7159Z2", + "name": "Zruč n.Sáz.,Na Pohoří", + "isMetro": false, + "latitude": 15.097722, + "longitude": 49.746483, + "stopId": "U7159" + }, + { + "id": "U7160Z1", + "name": "Kutná Hora,Malín,Starokolínská", + "isMetro": false, + "latitude": 15.303391, + "longitude": 49.968555, + "stopId": "U7160" + }, + { + "id": "U7162Z1", + "name": "Kutná Hora,Žižkov,Kremnická", + "isMetro": false, + "latitude": 15.261322, + "longitude": 49.947495, + "stopId": "U7162" + }, + { + "id": "U7162Z2", + "name": "Kutná Hora,Žižkov,Kremnická", + "isMetro": false, + "latitude": 15.261431, + "longitude": 49.947868, + "stopId": "U7162" + }, + { + "id": "U716Z1", + "name": "Jíloviště,Výzkumný ústav", + "isMetro": false, + "latitude": 14.391952, + "longitude": 49.942539, + "stopId": "U716" + }, + { + "id": "U716Z2", + "name": "Jíloviště,Výzkumný ústav", + "isMetro": false, + "latitude": 14.392509, + "longitude": 49.942551, + "stopId": "U716" + }, + { + "id": "U7179Z1", + "name": "Rpety,rozc.2.0", + "isMetro": false, + "latitude": 13.935496, + "longitude": 49.841423, + "stopId": "U7179" + }, + { + "id": "U7179Z2", + "name": "Rpety,rozc.2.0", + "isMetro": false, + "latitude": 13.935285, + "longitude": 49.841557, + "stopId": "U7179" + }, + { + "id": "U717Z1", + "name": "Strossmayerovo náměstí", + "isMetro": false, + "latitude": 14.432893, + "longitude": 50.098896, + "stopId": "U717" + }, + { + "id": "U717Z2", + "name": "Strossmayerovo náměstí", + "isMetro": false, + "latitude": 14.433692, + "longitude": 50.098881, + "stopId": "U717" + }, + { + "id": "U717Z4", + "name": "Strossmayerovo náměstí", + "isMetro": false, + "latitude": 14.433256, + "longitude": 50.098644, + "stopId": "U717" + }, + { + "id": "U718Z1", + "name": "Březiněveská", + "isMetro": false, + "latitude": 14.457125, + "longitude": 50.126026, + "stopId": "U718" + }, + { + "id": "U718Z2", + "name": "Březiněveská", + "isMetro": false, + "latitude": 14.456717, + "longitude": 50.127033, + "stopId": "U718" + }, + { + "id": "U719Z1", + "name": "Sudějovická", + "isMetro": false, + "latitude": 14.666211, + "longitude": 50.075108, + "stopId": "U719" + }, + { + "id": "U719Z2", + "name": "Sudějovická", + "isMetro": false, + "latitude": 14.665278, + "longitude": 50.075386, + "stopId": "U719" + }, + { + "id": "U71Z1", + "name": "Černý kůň", + "isMetro": false, + "latitude": 14.403732, + "longitude": 50.023079, + "stopId": "U71" + }, + { + "id": "U71Z2", + "name": "Černý kůň", + "isMetro": false, + "latitude": 14.403528, + "longitude": 50.022518, + "stopId": "U71" + }, + { + "id": "U71Z3", + "name": "Černý kůň", + "isMetro": false, + "latitude": 14.403733, + "longitude": 50.02235, + "stopId": "U71" + }, + { + "id": "U71Z4", + "name": "Černý kůň", + "isMetro": false, + "latitude": 14.404094, + "longitude": 50.022442, + "stopId": "U71" + }, + { + "id": "U71Z5", + "name": "Černý kůň", + "isMetro": false, + "latitude": 14.405139, + "longitude": 50.022602, + "stopId": "U71" + }, + { + "id": "U71Z6", + "name": "Černý kůň", + "isMetro": false, + "latitude": 14.404976, + "longitude": 50.022709, + "stopId": "U71" + }, + { + "id": "U720Z1", + "name": "Smaragdová", + "isMetro": false, + "latitude": 14.36071, + "longitude": 50.026482, + "stopId": "U720" + }, + { + "id": "U721Z1", + "name": "Suchdolské náměstí", + "isMetro": false, + "latitude": 14.380697, + "longitude": 50.136089, + "stopId": "U721" + }, + { + "id": "U721Z2", + "name": "Suchdolské náměstí", + "isMetro": false, + "latitude": 14.379962, + "longitude": 50.135635, + "stopId": "U721" + }, + { + "id": "U722Z1", + "name": "Sulická", + "isMetro": false, + "latitude": 14.445868, + "longitude": 50.026485, + "stopId": "U722" + }, + { + "id": "U722Z2", + "name": "Sulická", + "isMetro": false, + "latitude": 14.445434, + "longitude": 50.026466, + "stopId": "U722" + }, + { + "id": "U723Z1", + "name": "Vršovický hřbitov", + "isMetro": false, + "latitude": 14.466984, + "longitude": 50.062965, + "stopId": "U723" + }, + { + "id": "U723Z2", + "name": "Vršovický hřbitov", + "isMetro": false, + "latitude": 14.466437, + "longitude": 50.063541, + "stopId": "U723" + }, + { + "id": "U724Z1", + "name": "Svatoplukova", + "isMetro": false, + "latitude": 14.429173, + "longitude": 50.065102, + "stopId": "U724" + }, + { + "id": "U724Z2", + "name": "Svatoplukova", + "isMetro": false, + "latitude": 14.430032, + "longitude": 50.065018, + "stopId": "U724" + }, + { + "id": "U725Z1", + "name": "Tehovičky", + "isMetro": false, + "latitude": 14.622818, + "longitude": 50.013535, + "stopId": "U725" + }, + { + "id": "U725Z2", + "name": "Tehovičky", + "isMetro": false, + "latitude": 14.624002, + "longitude": 50.012383, + "stopId": "U725" + }, + { + "id": "U726Z1", + "name": "Ke Xaverovu", + "isMetro": false, + "latitude": 14.623684, + "longitude": 50.099716, + "stopId": "U726" + }, + { + "id": "U726Z2", + "name": "Ke Xaverovu", + "isMetro": false, + "latitude": 14.623918, + "longitude": 50.099617, + "stopId": "U726" + }, + { + "id": "U727Z1", + "name": "Darwinova", + "isMetro": false, + "latitude": 14.409934, + "longitude": 50.010933, + "stopId": "U727" + }, + { + "id": "U727Z2", + "name": "Darwinova", + "isMetro": false, + "latitude": 14.409984, + "longitude": 50.010685, + "stopId": "U727" + }, + { + "id": "U728Z1", + "name": "Šatovka", + "isMetro": false, + "latitude": 14.374867, + "longitude": 50.117535, + "stopId": "U728" + }, + { + "id": "U728Z2", + "name": "Šatovka", + "isMetro": false, + "latitude": 14.374901, + "longitude": 50.117516, + "stopId": "U728" + }, + { + "id": "U7290Z1", + "name": "Krchleby,Chedrbí", + "isMetro": false, + "latitude": 15.3325, + "longitude": 49.875256, + "stopId": "U7290" + }, + { + "id": "U7290Z2", + "name": "Krchleby,Chedrbí", + "isMetro": false, + "latitude": 15.332072, + "longitude": 49.875343, + "stopId": "U7290" + }, + { + "id": "U729Z1", + "name": "Šeberák", + "isMetro": false, + "latitude": 14.490634, + "longitude": 50.012001, + "stopId": "U729" + }, + { + "id": "U729Z3", + "name": "Šeberák", + "isMetro": false, + "latitude": 14.492001, + "longitude": 50.011452, + "stopId": "U729" + }, + { + "id": "U72Z1", + "name": "Lehovec", + "isMetro": false, + "latitude": 14.547227, + "longitude": 50.106884, + "stopId": "U72" + }, + { + "id": "U72Z2", + "name": "Lehovec", + "isMetro": false, + "latitude": 14.547981, + "longitude": 50.106815, + "stopId": "U72" + }, + { + "id": "U72Z3", + "name": "Lehovec", + "isMetro": false, + "latitude": 14.54738, + "longitude": 50.106865, + "stopId": "U72" + }, + { + "id": "U72Z4", + "name": "Lehovec", + "isMetro": false, + "latitude": 14.54728, + "longitude": 50.106964, + "stopId": "U72" + }, + { + "id": "U72Z5", + "name": "Lehovec", + "isMetro": false, + "latitude": 14.547967, + "longitude": 50.107304, + "stopId": "U72" + }, + { + "id": "U7307Z1", + "name": "Křesetice,Bykáň", + "isMetro": false, + "latitude": 15.244101, + "longitude": 49.896774, + "stopId": "U7307" + }, + { + "id": "U7307Z2", + "name": "Křesetice,Bykáň", + "isMetro": false, + "latitude": 15.244046, + "longitude": 49.897026, + "stopId": "U7307" + }, + { + "id": "U730Z1", + "name": "Šeberov", + "isMetro": false, + "latitude": 14.510818, + "longitude": 50.017784, + "stopId": "U730" + }, + { + "id": "U730Z2", + "name": "Šeberov", + "isMetro": false, + "latitude": 14.510568, + "longitude": 50.018532, + "stopId": "U730" + }, + { + "id": "U7311Z2", + "name": "Opatovice I", + "isMetro": false, + "latitude": 15.248372, + "longitude": 49.854767, + "stopId": "U7311" + }, + { + "id": "U7316Z1", + "name": "Čáslav,Za Rybníkem", + "isMetro": false, + "latitude": 15.386591, + "longitude": 49.910412, + "stopId": "U7316" + }, + { + "id": "U7316Z2", + "name": "Čáslav,Za Rybníkem", + "isMetro": false, + "latitude": 15.386507, + "longitude": 49.910393, + "stopId": "U7316" + }, + { + "id": "U7317Z1", + "name": "Soutice", + "isMetro": false, + "latitude": 15.052832, + "longitude": 49.725636, + "stopId": "U7317" + }, + { + "id": "U7318Z1", + "name": "Ostředek", + "isMetro": false, + "latitude": 14.830202, + "longitude": 49.834515, + "stopId": "U7318" + }, + { + "id": "U7318Z2", + "name": "Ostředek", + "isMetro": false, + "latitude": 14.831091, + "longitude": 49.834782, + "stopId": "U7318" + }, + { + "id": "U7319Z1", + "name": "Čáslav,u mostu", + "isMetro": false, + "latitude": 15.387255, + "longitude": 49.91188, + "stopId": "U7319" + }, + { + "id": "U7319Z2", + "name": "Čáslav,u mostu", + "isMetro": false, + "latitude": 15.387129, + "longitude": 49.911911, + "stopId": "U7319" + }, + { + "id": "U731Z1", + "name": "V Ladech", + "isMetro": false, + "latitude": 14.513734, + "longitude": 50.013218, + "stopId": "U731" + }, + { + "id": "U731Z2", + "name": "V Ladech", + "isMetro": false, + "latitude": 14.513743, + "longitude": 50.013294, + "stopId": "U731" + }, + { + "id": "U7320Z1", + "name": "Čáslav,aut.st.", + "isMetro": false, + "latitude": 15.396309, + "longitude": 49.911613, + "stopId": "U7320" + }, + { + "id": "U7320Z10", + "name": "Čáslav,aut.st.", + "isMetro": false, + "latitude": 15.397076, + "longitude": 49.912361, + "stopId": "U7320" + }, + { + "id": "U7320Z2", + "name": "Čáslav,aut.st.", + "isMetro": false, + "latitude": 15.396477, + "longitude": 49.91172, + "stopId": "U7320" + }, + { + "id": "U7320Z5", + "name": "Čáslav,aut.st.", + "isMetro": false, + "latitude": 15.396283, + "longitude": 49.911777, + "stopId": "U7320" + }, + { + "id": "U7322Z1", + "name": "Čáslav,Budín", + "isMetro": false, + "latitude": 15.383287, + "longitude": 49.920868, + "stopId": "U7322" + }, + { + "id": "U7322Z2", + "name": "Čáslav,Budín", + "isMetro": false, + "latitude": 15.383173, + "longitude": 49.920647, + "stopId": "U7322" + }, + { + "id": "U7323Z1", + "name": "Čáslav,Zahradní", + "isMetro": false, + "latitude": 15.389637, + "longitude": 49.904297, + "stopId": "U7323" + }, + { + "id": "U7323Z2", + "name": "Čáslav,Zahradní", + "isMetro": false, + "latitude": 15.389729, + "longitude": 49.90432, + "stopId": "U7323" + }, + { + "id": "U7324Z1", + "name": "Čáslav,Žacká", + "isMetro": false, + "latitude": 15.387211, + "longitude": 49.908772, + "stopId": "U7324" + }, + { + "id": "U7324Z2", + "name": "Čáslav,Žacká", + "isMetro": false, + "latitude": 15.3873, + "longitude": 49.90905, + "stopId": "U7324" + }, + { + "id": "U7325Z1", + "name": "Čáslav,Kalabousek", + "isMetro": false, + "latitude": 15.365266, + "longitude": 49.928146, + "stopId": "U7325" + }, + { + "id": "U7325Z2", + "name": "Čáslav,Kalabousek", + "isMetro": false, + "latitude": 15.364627, + "longitude": 49.928589, + "stopId": "U7325" + }, + { + "id": "U7327Z1", + "name": "Čáslav,Balkán", + "isMetro": false, + "latitude": 15.388978, + "longitude": 49.917248, + "stopId": "U7327" + }, + { + "id": "U7327Z2", + "name": "Čáslav,Balkán", + "isMetro": false, + "latitude": 15.388805, + "longitude": 49.917358, + "stopId": "U7327" + }, + { + "id": "U7328Z1", + "name": "Čáslav,B.Smetany", + "isMetro": false, + "latitude": 15.397577, + "longitude": 49.90583, + "stopId": "U7328" + }, + { + "id": "U7328Z2", + "name": "Čáslav,B.Smetany", + "isMetro": false, + "latitude": 15.397719, + "longitude": 49.905815, + "stopId": "U7328" + }, + { + "id": "U7329Z1", + "name": "Čáslav,U Čápa", + "isMetro": false, + "latitude": 15.385973, + "longitude": 49.906467, + "stopId": "U7329" + }, + { + "id": "U7329Z2", + "name": "Čáslav,U Čápa", + "isMetro": false, + "latitude": 15.385977, + "longitude": 49.906303, + "stopId": "U7329" + }, + { + "id": "U732Z1", + "name": "Bolevecká", + "isMetro": false, + "latitude": 14.555067, + "longitude": 50.043034, + "stopId": "U732" + }, + { + "id": "U732Z2", + "name": "Bolevecká", + "isMetro": false, + "latitude": 14.557194, + "longitude": 50.043209, + "stopId": "U732" + }, + { + "id": "U7330Z1", + "name": "Čáslav,u hřbitova", + "isMetro": false, + "latitude": 15.386007, + "longitude": 49.922993, + "stopId": "U7330" + }, + { + "id": "U7330Z2", + "name": "Čáslav,u hřbitova", + "isMetro": false, + "latitude": 15.385837, + "longitude": 49.922947, + "stopId": "U7330" + }, + { + "id": "U7331Z1", + "name": "Čáslav,zem.škola", + "isMetro": false, + "latitude": 15.392671, + "longitude": 49.903408, + "stopId": "U7331" + }, + { + "id": "U7331Z2", + "name": "Čáslav,zem.škola", + "isMetro": false, + "latitude": 15.392488, + "longitude": 49.903439, + "stopId": "U7331" + }, + { + "id": "U7333Z1", + "name": "Ledeč n.Sáz.,sídl.Plácky", + "isMetro": false, + "latitude": 15.277389, + "longitude": 49.689415, + "stopId": "U7333" + }, + { + "id": "U7333Z2", + "name": "Ledeč n.Sáz.,sídl.Plácky", + "isMetro": false, + "latitude": 15.277069, + "longitude": 49.689274, + "stopId": "U7333" + }, + { + "id": "U7334Z1", + "name": "Kutná Hora,Karlov,Hrnčířská", + "isMetro": false, + "latitude": 15.288176, + "longitude": 49.950169, + "stopId": "U7334" + }, + { + "id": "U7334Z2", + "name": "Kutná Hora,Karlov,Hrnčířská", + "isMetro": false, + "latitude": 15.286423, + "longitude": 49.949059, + "stopId": "U7334" + }, + { + "id": "U7337Z2", + "name": "Kutná Hora,Žižkov,Fučíkova", + "isMetro": false, + "latitude": 15.257057, + "longitude": 49.945744, + "stopId": "U7337" + }, + { + "id": "U7338Z1", + "name": "Kutná Hora,Šipší,Opletalova", + "isMetro": false, + "latitude": 15.281439, + "longitude": 49.961212, + "stopId": "U7338" + }, + { + "id": "U7338Z2", + "name": "Kutná Hora,Šipší,Opletalova", + "isMetro": false, + "latitude": 15.281387, + "longitude": 49.961357, + "stopId": "U7338" + }, + { + "id": "U7339Z1", + "name": "Kutná Hora,Kamenná kašna", + "isMetro": false, + "latitude": 15.262548, + "longitude": 49.948662, + "stopId": "U7339" + }, + { + "id": "U7339Z2", + "name": "Kutná Hora,Kamenná kašna", + "isMetro": false, + "latitude": 15.26303, + "longitude": 49.948868, + "stopId": "U7339" + }, + { + "id": "U733Z1", + "name": "Šmukýřka", + "isMetro": false, + "latitude": 14.370483, + "longitude": 50.064167, + "stopId": "U733" + }, + { + "id": "U733Z2", + "name": "Šmukýřka", + "isMetro": false, + "latitude": 14.37075, + "longitude": 50.064365, + "stopId": "U733" + }, + { + "id": "U7340Z1", + "name": "Kutná Hora,Palackého náměstí", + "isMetro": false, + "latitude": 15.268226, + "longitude": 49.949345, + "stopId": "U7340" + }, + { + "id": "U7341Z1", + "name": "Kutná Hora,Sokolská", + "isMetro": false, + "latitude": 15.272801, + "longitude": 49.94862, + "stopId": "U7341" + }, + { + "id": "U7342Z1", + "name": "Kutná Hora,Šipší,Sběrná", + "isMetro": false, + "latitude": 15.276921, + "longitude": 49.957695, + "stopId": "U7342" + }, + { + "id": "U7342Z2", + "name": "Kutná Hora,Šipší,Sběrná", + "isMetro": false, + "latitude": 15.27644, + "longitude": 49.958107, + "stopId": "U7342" + }, + { + "id": "U7343Z1", + "name": "Kutná Hora,Šipší,Jana Zajíce", + "isMetro": false, + "latitude": 15.276334, + "longitude": 49.961811, + "stopId": "U7343" + }, + { + "id": "U7343Z2", + "name": "Kutná Hora,Šipší,Jana Zajíce", + "isMetro": false, + "latitude": 15.27615, + "longitude": 49.961903, + "stopId": "U7343" + }, + { + "id": "U7344Z1", + "name": "Kutná Hora,Kamenný dům", + "isMetro": false, + "latitude": 15.265047, + "longitude": 49.949768, + "stopId": "U7344" + }, + { + "id": "U7345Z1", + "name": "Kutná Hora,Hlouška,Masarykova", + "isMetro": false, + "latitude": 15.278295, + "longitude": 49.95509, + "stopId": "U7345" + }, + { + "id": "U7345Z2", + "name": "Kutná Hora,Hlouška,Masarykova", + "isMetro": false, + "latitude": 15.277749, + "longitude": 49.954807, + "stopId": "U7345" + }, + { + "id": "U7348Z1", + "name": "Cerhovice,nám.", + "isMetro": false, + "latitude": 13.835059, + "longitude": 49.850002, + "stopId": "U7348" + }, + { + "id": "U7348Z2", + "name": "Cerhovice,nám.", + "isMetro": false, + "latitude": 13.835271, + "longitude": 49.84985, + "stopId": "U7348" + }, + { + "id": "U734Z1", + "name": "Špejchar", + "isMetro": false, + "latitude": 14.410297, + "longitude": 50.09734, + "stopId": "U734" + }, + { + "id": "U734Z2", + "name": "Špejchar", + "isMetro": false, + "latitude": 14.409677, + "longitude": 50.097572, + "stopId": "U734" + }, + { + "id": "U7357Z1", + "name": "Kolín,banka", + "isMetro": false, + "latitude": 15.205092, + "longitude": 50.026718, + "stopId": "U7357" + }, + { + "id": "U7357Z2", + "name": "Kolín,banka", + "isMetro": false, + "latitude": 15.204853, + "longitude": 50.026661, + "stopId": "U7357" + }, + { + "id": "U735Z1", + "name": "Šperlova", + "isMetro": false, + "latitude": 14.5109, + "longitude": 50.034267, + "stopId": "U735" + }, + { + "id": "U735Z2", + "name": "Šperlova", + "isMetro": false, + "latitude": 14.510834, + "longitude": 50.034199, + "stopId": "U735" + }, + { + "id": "U7366Z1", + "name": "Kolín,Polepská", + "isMetro": false, + "latitude": 15.208235, + "longitude": 50.018784, + "stopId": "U7366" + }, + { + "id": "U7366Z2", + "name": "Kolín,Polepská", + "isMetro": false, + "latitude": 15.207873, + "longitude": 50.018669, + "stopId": "U7366" + }, + { + "id": "U7368Z1", + "name": "Kolín,Plynárna", + "isMetro": false, + "latitude": 15.210333, + "longitude": 50.020977, + "stopId": "U7368" + }, + { + "id": "U7368Z2", + "name": "Kolín,Plynárna", + "isMetro": false, + "latitude": 15.210217, + "longitude": 50.021103, + "stopId": "U7368" + }, + { + "id": "U737Z1", + "name": "Štefkova", + "isMetro": false, + "latitude": 14.353284, + "longitude": 50.079784, + "stopId": "U737" + }, + { + "id": "U737Z2", + "name": "Štefkova", + "isMetro": false, + "latitude": 14.352782, + "longitude": 50.079685, + "stopId": "U737" + }, + { + "id": "U738Z1", + "name": "Štěchovická", + "isMetro": false, + "latitude": 14.50101, + "longitude": 50.072029, + "stopId": "U738" + }, + { + "id": "U738Z2", + "name": "Štěchovická", + "isMetro": false, + "latitude": 14.500534, + "longitude": 50.072159, + "stopId": "U738" + }, + { + "id": "U739Z1", + "name": "Štěpánská", + "isMetro": false, + "latitude": 14.422432, + "longitude": 50.075687, + "stopId": "U739" + }, + { + "id": "U739Z2", + "name": "Štěpánská", + "isMetro": false, + "latitude": 14.423319, + "longitude": 50.0756, + "stopId": "U739" + }, + { + "id": "U739Z3", + "name": "Štěpánská", + "isMetro": false, + "latitude": 14.424449, + "longitude": 50.07552, + "stopId": "U739" + }, + { + "id": "U73Z1", + "name": "Červený Vrch", + "isMetro": false, + "latitude": 14.352972, + "longitude": 50.09684, + "stopId": "U73" + }, + { + "id": "U73Z2", + "name": "Červený Vrch", + "isMetro": false, + "latitude": 14.352312, + "longitude": 50.096821, + "stopId": "U73" + }, + { + "id": "U7406Z1", + "name": "Parkoviště Trojský most", + "isMetro": false, + "latitude": 14.436971, + "longitude": 50.115616, + "stopId": "U7406" + }, + { + "id": "U7406Z3", + "name": "Parkoviště Trojský most", + "isMetro": false, + "latitude": 14.436452, + "longitude": 50.115677, + "stopId": "U7406" + }, + { + "id": "U740Z1", + "name": "Štěpničná", + "isMetro": false, + "latitude": 14.477281, + "longitude": 50.127975, + "stopId": "U740" + }, + { + "id": "U740Z2", + "name": "Štěpničná", + "isMetro": false, + "latitude": 14.477662, + "longitude": 50.128006, + "stopId": "U740" + }, + { + "id": "U740Z3", + "name": "Štěpničná", + "isMetro": false, + "latitude": 14.476117, + "longitude": 50.127735, + "stopId": "U740" + }, + { + "id": "U740Z4", + "name": "Štěpničná", + "isMetro": false, + "latitude": 14.478148, + "longitude": 50.127991, + "stopId": "U740" + }, + { + "id": "U7413Z1", + "name": "Církvice,Jakub", + "isMetro": false, + "latitude": 15.33838, + "longitude": 49.953594, + "stopId": "U7413" + }, + { + "id": "U7413Z2", + "name": "Církvice,Jakub", + "isMetro": false, + "latitude": 15.338459, + "longitude": 49.953777, + "stopId": "U7413" + }, + { + "id": "U7414Z1", + "name": "Církvice,Jakub,u hřiště", + "isMetro": false, + "latitude": 15.340078, + "longitude": 49.948143, + "stopId": "U7414" + }, + { + "id": "U7414Z2", + "name": "Církvice,Jakub,u hřiště", + "isMetro": false, + "latitude": 15.340194, + "longitude": 49.948166, + "stopId": "U7414" + }, + { + "id": "U7415Z1", + "name": "Ctiboř", + "isMetro": false, + "latitude": 14.904037, + "longitude": 49.736652, + "stopId": "U7415" + }, + { + "id": "U7415Z2", + "name": "Ctiboř", + "isMetro": false, + "latitude": 14.904057, + "longitude": 49.736549, + "stopId": "U7415" + }, + { + "id": "U7416Z1", + "name": "Čakov", + "isMetro": false, + "latitude": 14.836307, + "longitude": 49.825729, + "stopId": "U7416" + }, + { + "id": "U7416Z2", + "name": "Čakov", + "isMetro": false, + "latitude": 14.836148, + "longitude": 49.825699, + "stopId": "U7416" + }, + { + "id": "U7417Z1", + "name": "Čakov,Tatouňovice", + "isMetro": false, + "latitude": 14.836162, + "longitude": 49.820354, + "stopId": "U7417" + }, + { + "id": "U7417Z2", + "name": "Čakov,Tatouňovice", + "isMetro": false, + "latitude": 14.836105, + "longitude": 49.82032, + "stopId": "U7417" + }, + { + "id": "U7418Z1", + "name": "Čakov,Vlkov", + "isMetro": false, + "latitude": 14.832281, + "longitude": 49.81321, + "stopId": "U7418" + }, + { + "id": "U7418Z2", + "name": "Čakov,Vlkov", + "isMetro": false, + "latitude": 14.832203, + "longitude": 49.81319, + "stopId": "U7418" + }, + { + "id": "U7419Z1", + "name": "Čechtice", + "isMetro": false, + "latitude": 15.048779, + "longitude": 49.623371, + "stopId": "U7419" + }, + { + "id": "U7419Z2", + "name": "Čechtice", + "isMetro": false, + "latitude": 15.048684, + "longitude": 49.622971, + "stopId": "U7419" + }, + { + "id": "U741Z1", + "name": "Ústřední", + "isMetro": false, + "latitude": 14.543499, + "longitude": 50.069038, + "stopId": "U741" + }, + { + "id": "U741Z2", + "name": "Ústřední", + "isMetro": false, + "latitude": 14.542245, + "longitude": 50.069916, + "stopId": "U741" + }, + { + "id": "U741Z3", + "name": "Ústřední", + "isMetro": false, + "latitude": 14.5446, + "longitude": 50.070019, + "stopId": "U741" + }, + { + "id": "U7421Z1", + "name": "Čechtice,prodejna", + "isMetro": false, + "latitude": 15.047917, + "longitude": 49.624802, + "stopId": "U7421" + }, + { + "id": "U7421Z2", + "name": "Čechtice,prodejna", + "isMetro": false, + "latitude": 15.047758, + "longitude": 49.624729, + "stopId": "U7421" + }, + { + "id": "U7423Z1", + "name": "Čechtice,Dobříkovice", + "isMetro": false, + "latitude": 14.972354, + "longitude": 49.625813, + "stopId": "U7423" + }, + { + "id": "U7423Z2", + "name": "Čechtice,Dobříkovice", + "isMetro": false, + "latitude": 14.972391, + "longitude": 49.625885, + "stopId": "U7423" + }, + { + "id": "U7424Z1", + "name": "Čechtice,Jeníkov", + "isMetro": false, + "latitude": 14.999726, + "longitude": 49.626991, + "stopId": "U7424" + }, + { + "id": "U7424Z2", + "name": "Čechtice,Jeníkov", + "isMetro": false, + "latitude": 14.99979, + "longitude": 49.627163, + "stopId": "U7424" + }, + { + "id": "U7425Z1", + "name": "Čechtice,Malá Paseka", + "isMetro": false, + "latitude": 15.058856, + "longitude": 49.605145, + "stopId": "U7425" + }, + { + "id": "U7425Z2", + "name": "Čechtice,Malá Paseka", + "isMetro": false, + "latitude": 15.058974, + "longitude": 49.605221, + "stopId": "U7425" + }, + { + "id": "U7426Z1", + "name": "Čechtice,Nakvasovice", + "isMetro": false, + "latitude": 14.988811, + "longitude": 49.623817, + "stopId": "U7426" + }, + { + "id": "U7426Z2", + "name": "Čechtice,Nakvasovice", + "isMetro": false, + "latitude": 14.988595, + "longitude": 49.623924, + "stopId": "U7426" + }, + { + "id": "U7428Z1", + "name": "Čechtice,Otročice,rozc.", + "isMetro": false, + "latitude": 15.025168, + "longitude": 49.637383, + "stopId": "U7428" + }, + { + "id": "U7428Z2", + "name": "Čechtice,Otročice,rozc.", + "isMetro": false, + "latitude": 15.025151, + "longitude": 49.637497, + "stopId": "U7428" + }, + { + "id": "U7429Z1", + "name": "Čechtice,Staré Práchňany", + "isMetro": false, + "latitude": 15.017833, + "longitude": 49.60236, + "stopId": "U7429" + }, + { + "id": "U7429Z2", + "name": "Čechtice,Staré Práchňany", + "isMetro": false, + "latitude": 15.017929, + "longitude": 49.602249, + "stopId": "U7429" + }, + { + "id": "U742Z3", + "name": "Novoštěrboholská", + "isMetro": false, + "latitude": 14.561535, + "longitude": 50.074509, + "stopId": "U742" + }, + { + "id": "U742Z4", + "name": "Novoštěrboholská", + "isMetro": false, + "latitude": 14.560706, + "longitude": 50.074337, + "stopId": "U742" + }, + { + "id": "U7430Z1", + "name": "Čerčany,ke hřbitovu", + "isMetro": false, + "latitude": 14.710224, + "longitude": 49.84742, + "stopId": "U7430" + }, + { + "id": "U7430Z2", + "name": "Čerčany,ke hřbitovu", + "isMetro": false, + "latitude": 14.710219, + "longitude": 49.847324, + "stopId": "U7430" + }, + { + "id": "U7431Z1", + "name": "Čerčany,Vysoká Lhota", + "isMetro": false, + "latitude": 14.699538, + "longitude": 49.858494, + "stopId": "U7431" + }, + { + "id": "U7431Z2", + "name": "Čerčany,Vysoká Lhota", + "isMetro": false, + "latitude": 14.699365, + "longitude": 49.858444, + "stopId": "U7431" + }, + { + "id": "U7434Z1", + "name": "Český Šternberk", + "isMetro": false, + "latitude": 14.927702, + "longitude": 49.810532, + "stopId": "U7434" + }, + { + "id": "U7434Z2", + "name": "Český Šternberk", + "isMetro": false, + "latitude": 14.92754, + "longitude": 49.810699, + "stopId": "U7434" + }, + { + "id": "U7435Z1", + "name": "Český Šternberk,Čejkovice", + "isMetro": false, + "latitude": 14.937675, + "longitude": 49.803379, + "stopId": "U7435" + }, + { + "id": "U7435Z2", + "name": "Český Šternberk,Čejkovice", + "isMetro": false, + "latitude": 14.937506, + "longitude": 49.803577, + "stopId": "U7435" + }, + { + "id": "U7438Z1", + "name": "Daleké Dušníky", + "isMetro": false, + "latitude": 14.182598, + "longitude": 49.727604, + "stopId": "U7438" + }, + { + "id": "U7438Z2", + "name": "Daleké Dušníky", + "isMetro": false, + "latitude": 14.182875, + "longitude": 49.727654, + "stopId": "U7438" + }, + { + "id": "U743Z1", + "name": "Rokycanova", + "isMetro": false, + "latitude": 14.45553, + "longitude": 50.08622, + "stopId": "U743" + }, + { + "id": "U743Z2", + "name": "Rokycanova", + "isMetro": false, + "latitude": 14.455434, + "longitude": 50.086117, + "stopId": "U743" + }, + { + "id": "U7440Z1", + "name": "Daleké Dušníky,Druhlice", + "isMetro": false, + "latitude": 14.168428, + "longitude": 49.726242, + "stopId": "U7440" + }, + { + "id": "U7440Z2", + "name": "Daleké Dušníky,Druhlice", + "isMetro": false, + "latitude": 14.168514, + "longitude": 49.726383, + "stopId": "U7440" + }, + { + "id": "U7440Z3", + "name": "Daleké Dušníky,Druhlice", + "isMetro": false, + "latitude": 14.168847, + "longitude": 49.726055, + "stopId": "U7440" + }, + { + "id": "U7441Z1", + "name": "Děkanovice", + "isMetro": false, + "latitude": 15.151085, + "longitude": 49.618378, + "stopId": "U7441" + }, + { + "id": "U7441Z2", + "name": "Děkanovice", + "isMetro": false, + "latitude": 15.151188, + "longitude": 49.618275, + "stopId": "U7441" + }, + { + "id": "U7442Z1", + "name": "Třebešice,Čapek", + "isMetro": false, + "latitude": 14.803787, + "longitude": 49.778267, + "stopId": "U7442" + }, + { + "id": "U7442Z2", + "name": "Třebešice,Čapek", + "isMetro": false, + "latitude": 14.803743, + "longitude": 49.778324, + "stopId": "U7442" + }, + { + "id": "U7443Z1", + "name": "Divišov,Benešovská", + "isMetro": false, + "latitude": 14.872005, + "longitude": 49.790234, + "stopId": "U7443" + }, + { + "id": "U7443Z2", + "name": "Divišov,Benešovská", + "isMetro": false, + "latitude": 14.872366, + "longitude": 49.790192, + "stopId": "U7443" + }, + { + "id": "U7444Z1", + "name": "Divišov,nám.", + "isMetro": false, + "latitude": 14.876208, + "longitude": 49.788231, + "stopId": "U7444" + }, + { + "id": "U7444Z2", + "name": "Divišov,nám.", + "isMetro": false, + "latitude": 14.87635, + "longitude": 49.788322, + "stopId": "U7444" + }, + { + "id": "U7445Z1", + "name": "Divišov,koupaliště", + "isMetro": false, + "latitude": 14.877417, + "longitude": 49.784504, + "stopId": "U7445" + }, + { + "id": "U7445Z2", + "name": "Divišov,koupaliště", + "isMetro": false, + "latitude": 14.877369, + "longitude": 49.784451, + "stopId": "U7445" + }, + { + "id": "U7446Z1", + "name": "Divišov,Všechlapská", + "isMetro": false, + "latitude": 14.879519, + "longitude": 49.789913, + "stopId": "U7446" + }, + { + "id": "U7446Z2", + "name": "Divišov,Všechlapská", + "isMetro": false, + "latitude": 14.879479, + "longitude": 49.789867, + "stopId": "U7446" + }, + { + "id": "U7447Z1", + "name": "Divišov,rozc.Dalovy", + "isMetro": false, + "latitude": 14.852011, + "longitude": 49.787785, + "stopId": "U7447" + }, + { + "id": "U7447Z2", + "name": "Divišov,rozc.Dalovy", + "isMetro": false, + "latitude": 14.852232, + "longitude": 49.787952, + "stopId": "U7447" + }, + { + "id": "U7448Z2", + "name": "Divišov,rozc.Křešice", + "isMetro": false, + "latitude": 14.862506, + "longitude": 49.807079, + "stopId": "U7448" + }, + { + "id": "U7449Z1", + "name": "Divišov,Lbosín,rozc.", + "isMetro": false, + "latitude": 14.837483, + "longitude": 49.787132, + "stopId": "U7449" + }, + { + "id": "U7449Z2", + "name": "Divišov,Lbosín,rozc.", + "isMetro": false, + "latitude": 14.837342, + "longitude": 49.787228, + "stopId": "U7449" + }, + { + "id": "U744Z1", + "name": "Šumavská", + "isMetro": false, + "latitude": 14.444185, + "longitude": 50.075401, + "stopId": "U744" + }, + { + "id": "U744Z2", + "name": "Šumavská", + "isMetro": false, + "latitude": 14.443556, + "longitude": 50.075291, + "stopId": "U744" + }, + { + "id": "U7450Z1", + "name": "Divišov,Měchnov,rozc.", + "isMetro": false, + "latitude": 14.897819, + "longitude": 49.80056, + "stopId": "U7450" + }, + { + "id": "U7450Z2", + "name": "Divišov,Měchnov,rozc.", + "isMetro": false, + "latitude": 14.898235, + "longitude": 49.80064, + "stopId": "U7450" + }, + { + "id": "U7453Z1", + "name": "Divišov,Šternov", + "isMetro": false, + "latitude": 14.909719, + "longitude": 49.804031, + "stopId": "U7453" + }, + { + "id": "U7453Z2", + "name": "Divišov,Šternov", + "isMetro": false, + "latitude": 14.909229, + "longitude": 49.804142, + "stopId": "U7453" + }, + { + "id": "U7454Z1", + "name": "Divišov,Brtnice", + "isMetro": false, + "latitude": 14.924444, + "longitude": 49.798801, + "stopId": "U7454" + }, + { + "id": "U7454Z2", + "name": "Divišov,Brtnice", + "isMetro": false, + "latitude": 14.924438, + "longitude": 49.798882, + "stopId": "U7454" + }, + { + "id": "U7457Z1", + "name": "Dolní Hbity", + "isMetro": false, + "latitude": 14.169246, + "longitude": 49.657475, + "stopId": "U7457" + }, + { + "id": "U7457Z2", + "name": "Dolní Hbity", + "isMetro": false, + "latitude": 14.169483, + "longitude": 49.657459, + "stopId": "U7457" + }, + { + "id": "U7457Z3", + "name": "Dolní Hbity", + "isMetro": false, + "latitude": 14.169192, + "longitude": 49.656952, + "stopId": "U7457" + }, + { + "id": "U7459Z1", + "name": "Dolní Hbity,Brodce", + "isMetro": false, + "latitude": 14.16401, + "longitude": 49.651073, + "stopId": "U7459" + }, + { + "id": "U7459Z2", + "name": "Dolní Hbity,Brodce", + "isMetro": false, + "latitude": 14.16419, + "longitude": 49.651134, + "stopId": "U7459" + }, + { + "id": "U745Z1", + "name": "Tachovské náměstí", + "isMetro": false, + "latitude": 14.452273, + "longitude": 50.087185, + "stopId": "U745" + }, + { + "id": "U745Z2", + "name": "Tachovské náměstí", + "isMetro": false, + "latitude": 14.452387, + "longitude": 50.087387, + "stopId": "U745" + }, + { + "id": "U7461Z1", + "name": "Dolní Hbity,Jelence", + "isMetro": false, + "latitude": 14.156975, + "longitude": 49.67065, + "stopId": "U7461" + }, + { + "id": "U7461Z2", + "name": "Dolní Hbity,Jelence", + "isMetro": false, + "latitude": 14.157093, + "longitude": 49.670708, + "stopId": "U7461" + }, + { + "id": "U7462Z1", + "name": "Dolní Hbity,Káciň", + "isMetro": false, + "latitude": 14.1214, + "longitude": 49.648884, + "stopId": "U7462" + }, + { + "id": "U7462Z2", + "name": "Dolní Hbity,Káciň", + "isMetro": false, + "latitude": 14.121503, + "longitude": 49.648952, + "stopId": "U7462" + }, + { + "id": "U7463Z1", + "name": "Dolní Hbity,Kaliště", + "isMetro": false, + "latitude": 14.188063, + "longitude": 49.647724, + "stopId": "U7463" + }, + { + "id": "U7463Z2", + "name": "Dolní Hbity,Kaliště", + "isMetro": false, + "latitude": 14.188187, + "longitude": 49.647793, + "stopId": "U7463" + }, + { + "id": "U7466Z1", + "name": "Dolní Hbity,Nepřejov,rozc.", + "isMetro": false, + "latitude": 14.17344, + "longitude": 49.650631, + "stopId": "U7466" + }, + { + "id": "U7466Z2", + "name": "Dolní Hbity,Nepřejov,rozc.", + "isMetro": false, + "latitude": 14.172649, + "longitude": 49.650928, + "stopId": "U7466" + }, + { + "id": "U746Z1", + "name": "U Jankovky", + "isMetro": false, + "latitude": 14.367333, + "longitude": 49.987885, + "stopId": "U746" + }, + { + "id": "U746Z2", + "name": "U Jankovky", + "isMetro": false, + "latitude": 14.368535, + "longitude": 49.988529, + "stopId": "U746" + }, + { + "id": "U7470Z2", + "name": "Dolní Kralovice", + "isMetro": false, + "latitude": 15.178309, + "longitude": 49.644226, + "stopId": "U7470" + }, + { + "id": "U7471Z1", + "name": "Dolní Kralovice,záv.", + "isMetro": false, + "latitude": 15.173615, + "longitude": 49.641247, + "stopId": "U7471" + }, + { + "id": "U7471Z2", + "name": "Dolní Kralovice,záv.", + "isMetro": false, + "latitude": 15.173479, + "longitude": 49.641277, + "stopId": "U7471" + }, + { + "id": "U7472Z1", + "name": "Dolní Kralovice,Martinice", + "isMetro": false, + "latitude": 15.20564, + "longitude": 49.639431, + "stopId": "U7472" + }, + { + "id": "U7472Z2", + "name": "Dolní Kralovice,Martinice", + "isMetro": false, + "latitude": 15.205753, + "longitude": 49.639332, + "stopId": "U7472" + }, + { + "id": "U7474Z1", + "name": "Snět", + "isMetro": false, + "latitude": 15.227127, + "longitude": 49.62677, + "stopId": "U7474" + }, + { + "id": "U7474Z2", + "name": "Snět", + "isMetro": false, + "latitude": 15.227217, + "longitude": 49.626575, + "stopId": "U7474" + }, + { + "id": "U7475Z1", + "name": "Dolní Kralovice,Střítež,rozc.", + "isMetro": false, + "latitude": 15.156893, + "longitude": 49.661652, + "stopId": "U7475" + }, + { + "id": "U7475Z2", + "name": "Dolní Kralovice,Střítež,rozc.", + "isMetro": false, + "latitude": 15.156822, + "longitude": 49.661766, + "stopId": "U7475" + }, + { + "id": "U7476Z1", + "name": "Dolní Kralovice,Zahrádčice", + "isMetro": false, + "latitude": 15.19439, + "longitude": 49.658669, + "stopId": "U7476" + }, + { + "id": "U7476Z2", + "name": "Dolní Kralovice,Zahrádčice", + "isMetro": false, + "latitude": 15.194535, + "longitude": 49.658695, + "stopId": "U7476" + }, + { + "id": "U7477Z1", + "name": "Drahenice", + "isMetro": false, + "latitude": 13.961471, + "longitude": 49.517651, + "stopId": "U7477" + }, + { + "id": "U7477Z2", + "name": "Drahenice", + "isMetro": false, + "latitude": 13.961584, + "longitude": 49.517563, + "stopId": "U7477" + }, + { + "id": "U7479Z1", + "name": "Drásov", + "isMetro": false, + "latitude": 14.118629, + "longitude": 49.702839, + "stopId": "U7479" + }, + { + "id": "U7479Z2", + "name": "Drásov", + "isMetro": false, + "latitude": 14.118273, + "longitude": 49.702679, + "stopId": "U7479" + }, + { + "id": "U747Z1", + "name": "Spalovna Malešice", + "isMetro": false, + "latitude": 14.537845, + "longitude": 50.078915, + "stopId": "U747" + }, + { + "id": "U747Z2", + "name": "Spalovna Malešice", + "isMetro": false, + "latitude": 14.538279, + "longitude": 50.081451, + "stopId": "U747" + }, + { + "id": "U7480Z1", + "name": "Drásov,Cihelna", + "isMetro": false, + "latitude": 14.100525, + "longitude": 49.704418, + "stopId": "U7480" + }, + { + "id": "U7480Z2", + "name": "Drásov,Cihelna", + "isMetro": false, + "latitude": 14.100165, + "longitude": 49.70433, + "stopId": "U7480" + }, + { + "id": "U7482Z1", + "name": "Drevníky", + "isMetro": false, + "latitude": 14.276945, + "longitude": 49.720013, + "stopId": "U7482" + }, + { + "id": "U7482Z2", + "name": "Drevníky", + "isMetro": false, + "latitude": 14.277326, + "longitude": 49.719986, + "stopId": "U7482" + }, + { + "id": "U7484Z1", + "name": "Ctiněves", + "isMetro": false, + "latitude": 14.30743, + "longitude": 50.375179, + "stopId": "U7484" + }, + { + "id": "U7484Z2", + "name": "Ctiněves", + "isMetro": false, + "latitude": 14.307245, + "longitude": 50.375065, + "stopId": "U7484" + }, + { + "id": "U7485Z1", + "name": "Drhovy", + "isMetro": false, + "latitude": 14.231594, + "longitude": 49.739208, + "stopId": "U7485" + }, + { + "id": "U7485Z2", + "name": "Drhovy", + "isMetro": false, + "latitude": 14.231705, + "longitude": 49.739124, + "stopId": "U7485" + }, + { + "id": "U7486Z1", + "name": "Drhovy,Nový Dvůr", + "isMetro": false, + "latitude": 14.223526, + "longitude": 49.74688, + "stopId": "U7486" + }, + { + "id": "U7486Z2", + "name": "Drhovy,Nový Dvůr", + "isMetro": false, + "latitude": 14.223567, + "longitude": 49.74696, + "stopId": "U7486" + }, + { + "id": "U7487Z1", + "name": "Drhovy,Homole", + "isMetro": false, + "latitude": 14.264662, + "longitude": 49.736572, + "stopId": "U7487" + }, + { + "id": "U7487Z2", + "name": "Drhovy,Homole", + "isMetro": false, + "latitude": 14.264658, + "longitude": 49.736626, + "stopId": "U7487" + }, + { + "id": "U748Z1", + "name": "Televizní věž", + "isMetro": false, + "latitude": 14.374423, + "longitude": 50.080307, + "stopId": "U748" + }, + { + "id": "U748Z2", + "name": "Televizní věž", + "isMetro": false, + "latitude": 14.373317, + "longitude": 50.080166, + "stopId": "U748" + }, + { + "id": "U7493Z1", + "name": "Dublovice", + "isMetro": false, + "latitude": 14.359329, + "longitude": 49.669815, + "stopId": "U7493" + }, + { + "id": "U7493Z2", + "name": "Dublovice", + "isMetro": false, + "latitude": 14.359555, + "longitude": 49.669628, + "stopId": "U7493" + }, + { + "id": "U7494Z1", + "name": "Krabčice,Rovné,rozc.1.0", + "isMetro": false, + "latitude": 14.303723, + "longitude": 50.402241, + "stopId": "U7494" + }, + { + "id": "U7494Z2", + "name": "Krabčice,Rovné,rozc.1.0", + "isMetro": false, + "latitude": 14.303603, + "longitude": 50.402103, + "stopId": "U7494" + }, + { + "id": "U7497Z1", + "name": "Dublovice,Líchovy,rozc.Bučily", + "isMetro": false, + "latitude": 14.309009, + "longitude": 49.676132, + "stopId": "U7497" + }, + { + "id": "U7497Z2", + "name": "Dublovice,Líchovy,rozc.Bučily", + "isMetro": false, + "latitude": 14.308845, + "longitude": 49.676052, + "stopId": "U7497" + }, + { + "id": "U7499Z1", + "name": "Dublovice,Líchovy", + "isMetro": false, + "latitude": 14.320817, + "longitude": 49.675018, + "stopId": "U7499" + }, + { + "id": "U7499Z2", + "name": "Dublovice,Líchovy", + "isMetro": false, + "latitude": 14.320814, + "longitude": 49.674904, + "stopId": "U7499" + }, + { + "id": "U749Z1", + "name": "Tempo", + "isMetro": false, + "latitude": 14.451951, + "longitude": 50.019882, + "stopId": "U749" + }, + { + "id": "U749Z2", + "name": "Tempo", + "isMetro": false, + "latitude": 14.451973, + "longitude": 50.020187, + "stopId": "U749" + }, + { + "id": "U74Z1", + "name": "Čimice", + "isMetro": false, + "latitude": 14.430834, + "longitude": 50.140717, + "stopId": "U74" + }, + { + "id": "U74Z2", + "name": "Čimice", + "isMetro": false, + "latitude": 14.430484, + "longitude": 50.1409, + "stopId": "U74" + }, + { + "id": "U7501Z1", + "name": "Dunice", + "isMetro": false, + "latitude": 15.153155, + "longitude": 49.602077, + "stopId": "U7501" + }, + { + "id": "U7502Z1", + "name": "Hlubyně,dolní", + "isMetro": false, + "latitude": 13.926373, + "longitude": 49.560589, + "stopId": "U7502" + }, + { + "id": "U7502Z2", + "name": "Hlubyně,dolní", + "isMetro": false, + "latitude": 13.926258, + "longitude": 49.560619, + "stopId": "U7502" + }, + { + "id": "U7503Z1", + "name": "Hlubyně,horní", + "isMetro": false, + "latitude": 13.92014, + "longitude": 49.561188, + "stopId": "U7503" + }, + { + "id": "U7503Z2", + "name": "Hlubyně,horní", + "isMetro": false, + "latitude": 13.920008, + "longitude": 49.561264, + "stopId": "U7503" + }, + { + "id": "U7504Z1", + "name": "Horčápsko", + "isMetro": false, + "latitude": 13.984623, + "longitude": 49.584286, + "stopId": "U7504" + }, + { + "id": "U7504Z2", + "name": "Horčápsko", + "isMetro": false, + "latitude": 13.984704, + "longitude": 49.584389, + "stopId": "U7504" + }, + { + "id": "U7509Z1", + "name": "Hřiměždice,Vestec,rozc.", + "isMetro": false, + "latitude": 14.249908, + "longitude": 49.675385, + "stopId": "U7509" + }, + { + "id": "U7509Z2", + "name": "Hřiměždice,Vestec,rozc.", + "isMetro": false, + "latitude": 14.249381, + "longitude": 49.675358, + "stopId": "U7509" + }, + { + "id": "U750Z1", + "name": "Teplárna Malešice", + "isMetro": false, + "latitude": 14.526935, + "longitude": 50.082867, + "stopId": "U750" + }, + { + "id": "U750Z2", + "name": "Teplárna Malešice", + "isMetro": false, + "latitude": 14.524867, + "longitude": 50.083416, + "stopId": "U750" + }, + { + "id": "U7510Z401", + "name": "Hudčice", + "isMetro": false, + "latitude": 13.924092, + "longitude": 49.532146, + "stopId": "U7510" + }, + { + "id": "U7510Z402", + "name": "Hudčice", + "isMetro": false, + "latitude": 13.924271, + "longitude": 49.53204, + "stopId": "U7510" + }, + { + "id": "U7512Z1", + "name": "Hulice", + "isMetro": false, + "latitude": 15.085241, + "longitude": 49.711098, + "stopId": "U7512" + }, + { + "id": "U7512Z2", + "name": "Hulice", + "isMetro": false, + "latitude": 15.085094, + "longitude": 49.710812, + "stopId": "U7512" + }, + { + "id": "U7513Z1", + "name": "Hulice,úpravna", + "isMetro": false, + "latitude": 15.084873, + "longitude": 49.720943, + "stopId": "U7513" + }, + { + "id": "U7513Z2", + "name": "Hulice,úpravna", + "isMetro": false, + "latitude": 15.084769, + "longitude": 49.721016, + "stopId": "U7513" + }, + { + "id": "U751Z1", + "name": "Teplárna Michle", + "isMetro": false, + "latitude": 14.474371, + "longitude": 50.053028, + "stopId": "U751" + }, + { + "id": "U751Z2", + "name": "Teplárna Michle", + "isMetro": false, + "latitude": 14.474991, + "longitude": 50.052612, + "stopId": "U751" + }, + { + "id": "U7525Z1", + "name": "Chlum", + "isMetro": false, + "latitude": 14.996146, + "longitude": 49.692783, + "stopId": "U7525" + }, + { + "id": "U7525Z2", + "name": "Chlum", + "isMetro": false, + "latitude": 14.996014, + "longitude": 49.692806, + "stopId": "U7525" + }, + { + "id": "U7526Z1", + "name": "Chmelná", + "isMetro": false, + "latitude": 14.988655, + "longitude": 49.647957, + "stopId": "U7526" + }, + { + "id": "U7526Z2", + "name": "Chmelná", + "isMetro": false, + "latitude": 14.988814, + "longitude": 49.648022, + "stopId": "U7526" + }, + { + "id": "U752Z1", + "name": "Teplárna Třeboradice", + "isMetro": false, + "latitude": 14.514757, + "longitude": 50.16338, + "stopId": "U752" + }, + { + "id": "U753Z1", + "name": "Terasy", + "isMetro": false, + "latitude": 14.39987, + "longitude": 50.036972, + "stopId": "U753" + }, + { + "id": "U753Z2", + "name": "Terasy", + "isMetro": false, + "latitude": 14.40047, + "longitude": 50.036953, + "stopId": "U753" + }, + { + "id": "U754Z1", + "name": "Prosecká", + "isMetro": false, + "latitude": 14.497154, + "longitude": 50.117359, + "stopId": "U754" + }, + { + "id": "U754Z2", + "name": "Prosecká", + "isMetro": false, + "latitude": 14.496784, + "longitude": 50.11739, + "stopId": "U754" + }, + { + "id": "U755Z1", + "name": "Nademlejnská", + "isMetro": false, + "latitude": 14.524666, + "longitude": 50.103851, + "stopId": "U755" + }, + { + "id": "U755Z2", + "name": "Nademlejnská", + "isMetro": false, + "latitude": 14.525597, + "longitude": 50.103832, + "stopId": "U755" + }, + { + "id": "U7564Z1", + "name": "Úžice,logistické centrum", + "isMetro": false, + "latitude": 14.369421, + "longitude": 50.248955, + "stopId": "U7564" + }, + { + "id": "U757Z1", + "name": "Thákurova", + "isMetro": false, + "latitude": 14.387046, + "longitude": 50.100105, + "stopId": "U757" + }, + { + "id": "U757Z2", + "name": "Thákurova", + "isMetro": false, + "latitude": 14.385788, + "longitude": 50.100109, + "stopId": "U757" + }, + { + "id": "U757Z3", + "name": "Thákurova", + "isMetro": false, + "latitude": 14.388969, + "longitude": 50.10046, + "stopId": "U757" + }, + { + "id": "U757Z4", + "name": "Thákurova", + "isMetro": false, + "latitude": 14.385616, + "longitude": 50.100361, + "stopId": "U757" + }, + { + "id": "U758Z1", + "name": "Křižíkova", + "isMetro": false, + "latitude": 14.451775, + "longitude": 50.094196, + "stopId": "U758" + }, + { + "id": "U758Z101", + "name": "Křižíkova", + "isMetro": true, + "latitude": 14.451417, + "longitude": 50.092658, + "stopId": "U758" + }, + { + "id": "U758Z102", + "name": "Křižíkova", + "isMetro": true, + "latitude": 14.45153, + "longitude": 50.092498, + "stopId": "U758" + }, + { + "id": "U758Z2", + "name": "Křižíkova", + "isMetro": false, + "latitude": 14.451098, + "longitude": 50.093868, + "stopId": "U758" + }, + { + "id": "U75Z1", + "name": "Kolbenova", + "isMetro": false, + "latitude": 14.515046, + "longitude": 50.11063, + "stopId": "U75" + }, + { + "id": "U75Z101", + "name": "Kolbenova", + "isMetro": true, + "latitude": 14.516566, + "longitude": 50.110468, + "stopId": "U75" + }, + { + "id": "U75Z102", + "name": "Kolbenova", + "isMetro": true, + "latitude": 14.516586, + "longitude": 50.110301, + "stopId": "U75" + }, + { + "id": "U75Z2", + "name": "Kolbenova", + "isMetro": false, + "latitude": 14.516171, + "longitude": 50.110546, + "stopId": "U75" + }, + { + "id": "U7603Z1", + "name": "Choratice", + "isMetro": false, + "latitude": 14.874438, + "longitude": 49.84013, + "stopId": "U7603" + }, + { + "id": "U7603Z2", + "name": "Choratice", + "isMetro": false, + "latitude": 14.874523, + "longitude": 49.840134, + "stopId": "U7603" + }, + { + "id": "U7607Z1", + "name": "Chotýšany,rozc.", + "isMetro": false, + "latitude": 14.811141, + "longitude": 49.740475, + "stopId": "U7607" + }, + { + "id": "U7607Z2", + "name": "Chotýšany,rozc.", + "isMetro": false, + "latitude": 14.810955, + "longitude": 49.74065, + "stopId": "U7607" + }, + { + "id": "U7608Z1", + "name": "Chotýšany,Křemení", + "isMetro": false, + "latitude": 14.794704, + "longitude": 49.745945, + "stopId": "U7608" + }, + { + "id": "U7608Z2", + "name": "Chotýšany,Křemení", + "isMetro": false, + "latitude": 14.794906, + "longitude": 49.745972, + "stopId": "U7608" + }, + { + "id": "U7609Z1", + "name": "Chotýšany,Městečko,rozc.", + "isMetro": false, + "latitude": 14.819747, + "longitude": 49.736008, + "stopId": "U7609" + }, + { + "id": "U7609Z2", + "name": "Chotýšany,Městečko,rozc.", + "isMetro": false, + "latitude": 14.819113, + "longitude": 49.736324, + "stopId": "U7609" + }, + { + "id": "U760Z1", + "name": "Topolová", + "isMetro": false, + "latitude": 14.507634, + "longitude": 50.053719, + "stopId": "U760" + }, + { + "id": "U760Z2", + "name": "Topolová", + "isMetro": false, + "latitude": 14.507384, + "longitude": 50.054436, + "stopId": "U760" + }, + { + "id": "U7610Z1", + "name": "Chotýšany,rozc.Pařezí", + "isMetro": false, + "latitude": 14.831077, + "longitude": 49.728851, + "stopId": "U7610" + }, + { + "id": "U7610Z2", + "name": "Chotýšany,rozc.Pařezí", + "isMetro": false, + "latitude": 14.830975, + "longitude": 49.72924, + "stopId": "U7610" + }, + { + "id": "U7611Z1", + "name": "Chrást", + "isMetro": false, + "latitude": 13.95739, + "longitude": 49.595211, + "stopId": "U7611" + }, + { + "id": "U7611Z2", + "name": "Chrást", + "isMetro": false, + "latitude": 13.957651, + "longitude": 49.595314, + "stopId": "U7611" + }, + { + "id": "U7612Z1", + "name": "Václava Špačka", + "isMetro": false, + "latitude": 14.625574, + "longitude": 50.097954, + "stopId": "U7612" + }, + { + "id": "U7612Z2", + "name": "Václava Špačka", + "isMetro": false, + "latitude": 14.625636, + "longitude": 50.098221, + "stopId": "U7612" + }, + { + "id": "U7613Z1", + "name": "Chrást,Lisovice", + "isMetro": false, + "latitude": 13.968175, + "longitude": 49.591049, + "stopId": "U7613" + }, + { + "id": "U7613Z2", + "name": "Chrást,Lisovice", + "isMetro": false, + "latitude": 13.968019, + "longitude": 49.591114, + "stopId": "U7613" + }, + { + "id": "U7618Z1", + "name": "Jablonná", + "isMetro": false, + "latitude": 14.13868, + "longitude": 49.661392, + "stopId": "U7618" + }, + { + "id": "U761Z1", + "name": "Továrny Hostivař", + "isMetro": false, + "latitude": 14.543262, + "longitude": 50.056278, + "stopId": "U761" + }, + { + "id": "U761Z2", + "name": "Továrny Hostivař", + "isMetro": false, + "latitude": 14.542397, + "longitude": 50.0564, + "stopId": "U761" + }, + { + "id": "U7620Z1", + "name": "Jablonná,Horní Hbity", + "isMetro": false, + "latitude": 14.149598, + "longitude": 49.653519, + "stopId": "U7620" + }, + { + "id": "U7620Z2", + "name": "Jablonná,Horní Hbity", + "isMetro": false, + "latitude": 14.149661, + "longitude": 49.653606, + "stopId": "U7620" + }, + { + "id": "U7621Z1", + "name": "Javorník", + "isMetro": false, + "latitude": 15.026833, + "longitude": 49.686493, + "stopId": "U7621" + }, + { + "id": "U7622Z1", + "name": "Javorník,u mostu", + "isMetro": false, + "latitude": 15.019805, + "longitude": 49.698044, + "stopId": "U7622" + }, + { + "id": "U7622Z2", + "name": "Javorník,u mostu", + "isMetro": false, + "latitude": 15.019784, + "longitude": 49.698109, + "stopId": "U7622" + }, + { + "id": "U7623Z1", + "name": "Jesenice", + "isMetro": false, + "latitude": 14.476288, + "longitude": 49.60664, + "stopId": "U7623" + }, + { + "id": "U7623Z2", + "name": "Jesenice", + "isMetro": false, + "latitude": 14.476072, + "longitude": 49.60675, + "stopId": "U7623" + }, + { + "id": "U7624Z1", + "name": "Jesenice,Dobrošovice", + "isMetro": false, + "latitude": 14.494568, + "longitude": 49.597019, + "stopId": "U7624" + }, + { + "id": "U7624Z2", + "name": "Jesenice,Dobrošovice", + "isMetro": false, + "latitude": 14.494648, + "longitude": 49.597126, + "stopId": "U7624" + }, + { + "id": "U7625Z1", + "name": "Jesenice,Doublovičky", + "isMetro": false, + "latitude": 14.482491, + "longitude": 49.602943, + "stopId": "U7625" + }, + { + "id": "U7625Z2", + "name": "Jesenice,Doublovičky", + "isMetro": false, + "latitude": 14.482721, + "longitude": 49.603325, + "stopId": "U7625" + }, + { + "id": "U762Z1", + "name": "Satalice", + "isMetro": false, + "latitude": 14.572585, + "longitude": 50.125275, + "stopId": "U762" + }, + { + "id": "U762Z2", + "name": "Satalice", + "isMetro": false, + "latitude": 14.570754, + "longitude": 50.125877, + "stopId": "U762" + }, + { + "id": "U762Z4", + "name": "Satalice", + "isMetro": false, + "latitude": 14.571046, + "longitude": 50.12582, + "stopId": "U762" + }, + { + "id": "U7631Z1", + "name": "Kamýk n.Vlt.", + "isMetro": false, + "latitude": 14.252657, + "longitude": 49.640953, + "stopId": "U7631" + }, + { + "id": "U7631Z2", + "name": "Kamýk n.Vlt.", + "isMetro": false, + "latitude": 14.252798, + "longitude": 49.641029, + "stopId": "U7631" + }, + { + "id": "U7632Z1", + "name": "Kamýk n.Vlt.,u poříční správy", + "isMetro": false, + "latitude": 14.249217, + "longitude": 49.647308, + "stopId": "U7632" + }, + { + "id": "U7632Z2", + "name": "Kamýk n.Vlt.,u poříční správy", + "isMetro": false, + "latitude": 14.249295, + "longitude": 49.647274, + "stopId": "U7632" + }, + { + "id": "U7634Z1", + "name": "Kamýk n.Vlt.,u Mášů", + "isMetro": false, + "latitude": 14.25641, + "longitude": 49.640266, + "stopId": "U7634" + }, + { + "id": "U7634Z2", + "name": "Kamýk n.Vlt.,u Mášů", + "isMetro": false, + "latitude": 14.256143, + "longitude": 49.640186, + "stopId": "U7634" + }, + { + "id": "U7635Z1", + "name": "Kamýk n.Vlt.,Velká,Blatnice", + "isMetro": false, + "latitude": 14.254008, + "longitude": 49.655437, + "stopId": "U7635" + }, + { + "id": "U7635Z2", + "name": "Kamýk n.Vlt.,Velká,Blatnice", + "isMetro": false, + "latitude": 14.254063, + "longitude": 49.655407, + "stopId": "U7635" + }, + { + "id": "U7636Z1", + "name": "Kamýk n.Vlt.,Velká,Sedla", + "isMetro": false, + "latitude": 14.241259, + "longitude": 49.668228, + "stopId": "U7636" + }, + { + "id": "U7636Z2", + "name": "Kamýk n.Vlt.,Velká,Sedla", + "isMetro": false, + "latitude": 14.241345, + "longitude": 49.66814, + "stopId": "U7636" + }, + { + "id": "U7637Z2", + "name": "Kamýk n.Vlt.,Velká", + "isMetro": false, + "latitude": 14.252121, + "longitude": 49.660263, + "stopId": "U7637" + }, + { + "id": "U7637Z3", + "name": "Kamýk n.Vlt.,Velká", + "isMetro": false, + "latitude": 14.251765, + "longitude": 49.661194, + "stopId": "U7637" + }, + { + "id": "U7638Z1", + "name": "Keblov,u kostela", + "isMetro": false, + "latitude": 15.071456, + "longitude": 49.678074, + "stopId": "U7638" + }, + { + "id": "U7638Z2", + "name": "Keblov,u kostela", + "isMetro": false, + "latitude": 15.071577, + "longitude": 49.678169, + "stopId": "U7638" + }, + { + "id": "U7638Z3", + "name": "Keblov", + "isMetro": false, + "latitude": 15.071033, + "longitude": 49.677296, + "stopId": "U7638" + }, + { + "id": "U7638Z4", + "name": "Keblov", + "isMetro": false, + "latitude": 15.071262, + "longitude": 49.677406, + "stopId": "U7638" + }, + { + "id": "U7639Z1", + "name": "Keblov,háj.", + "isMetro": false, + "latitude": 15.091574, + "longitude": 49.676609, + "stopId": "U7639" + }, + { + "id": "U7639Z2", + "name": "Keblov,háj.", + "isMetro": false, + "latitude": 15.091207, + "longitude": 49.676727, + "stopId": "U7639" + }, + { + "id": "U763Z1", + "name": "Odlehlá", + "isMetro": false, + "latitude": 14.481534, + "longitude": 50.098202, + "stopId": "U763" + }, + { + "id": "U763Z2", + "name": "Odlehlá", + "isMetro": false, + "latitude": 14.482134, + "longitude": 50.098633, + "stopId": "U763" + }, + { + "id": "U7640Z1", + "name": "Klučenice", + "isMetro": false, + "latitude": 14.211361, + "longitude": 49.553806, + "stopId": "U7640" + }, + { + "id": "U7642Z1", + "name": "Klučenice,Kosobudy", + "isMetro": false, + "latitude": 14.236382, + "longitude": 49.576881, + "stopId": "U7642" + }, + { + "id": "U7642Z2", + "name": "Klučenice,Kosobudy", + "isMetro": false, + "latitude": 14.236505, + "longitude": 49.576908, + "stopId": "U7642" + }, + { + "id": "U7644Z1", + "name": "Klučenice,Planá", + "isMetro": false, + "latitude": 14.224859, + "longitude": 49.564636, + "stopId": "U7644" + }, + { + "id": "U7644Z2", + "name": "Klučenice,Planá", + "isMetro": false, + "latitude": 14.224786, + "longitude": 49.564594, + "stopId": "U7644" + }, + { + "id": "U7645Z1", + "name": "Klučenice,Planá,rozc.", + "isMetro": false, + "latitude": 14.233093, + "longitude": 49.565441, + "stopId": "U7645" + }, + { + "id": "U7645Z2", + "name": "Klučenice,Planá,rozc.", + "isMetro": false, + "latitude": 14.233132, + "longitude": 49.565331, + "stopId": "U7645" + }, + { + "id": "U7646Z1", + "name": "Klučenice,Planá,kaple", + "isMetro": false, + "latitude": 14.219288, + "longitude": 49.563362, + "stopId": "U7646" + }, + { + "id": "U7646Z2", + "name": "Klučenice,Planá,kaple", + "isMetro": false, + "latitude": 14.21941, + "longitude": 49.563393, + "stopId": "U7646" + }, + { + "id": "U7648Z1", + "name": "Borotice,u lípy", + "isMetro": false, + "latitude": 14.283253, + "longitude": 49.734859, + "stopId": "U7648" + }, + { + "id": "U7648Z2", + "name": "Borotice,u lípy", + "isMetro": false, + "latitude": 14.282616, + "longitude": 49.734901, + "stopId": "U7648" + }, + { + "id": "U7649Z1", + "name": "Pravonín,Hutina", + "isMetro": false, + "latitude": 14.891441, + "longitude": 49.646599, + "stopId": "U7649" + }, + { + "id": "U7649Z2", + "name": "Pravonín,Hutina", + "isMetro": false, + "latitude": 14.891324, + "longitude": 49.646572, + "stopId": "U7649" + }, + { + "id": "U764Z1", + "name": "Zoo Praha - Troja", + "isMetro": false, + "latitude": 14.411735, + "longitude": 50.116749, + "stopId": "U764" + }, + { + "id": "U764Z2", + "name": "Zoo Praha - Troja", + "isMetro": false, + "latitude": 14.41148, + "longitude": 50.116512, + "stopId": "U764" + }, + { + "id": "U7650Z1", + "name": "Kondrac,Krasovice,rozc.", + "isMetro": false, + "latitude": 14.885202, + "longitude": 49.658028, + "stopId": "U7650" + }, + { + "id": "U7650Z2", + "name": "Kondrac,Krasovice,rozc.", + "isMetro": false, + "latitude": 14.885022, + "longitude": 49.658005, + "stopId": "U7650" + }, + { + "id": "U765Z1", + "name": "Trojská", + "isMetro": false, + "latitude": 14.433118, + "longitude": 50.11618, + "stopId": "U765" + }, + { + "id": "U765Z2", + "name": "Trojská", + "isMetro": false, + "latitude": 14.433117, + "longitude": 50.116756, + "stopId": "U765" + }, + { + "id": "U765Z3", + "name": "Trojská", + "isMetro": false, + "latitude": 14.431384, + "longitude": 50.117416, + "stopId": "U765" + }, + { + "id": "U7660Z401", + "name": "Koupě", + "isMetro": false, + "latitude": 13.909439, + "longitude": 49.517864, + "stopId": "U7660" + }, + { + "id": "U7660Z402", + "name": "Koupě", + "isMetro": false, + "latitude": 13.909601, + "longitude": 49.517776, + "stopId": "U7660" + }, + { + "id": "U7666Z1", + "name": "Kozmice", + "isMetro": false, + "latitude": 14.795967, + "longitude": 49.825348, + "stopId": "U7666" + }, + { + "id": "U7666Z2", + "name": "Kozmice", + "isMetro": false, + "latitude": 14.795918, + "longitude": 49.82526, + "stopId": "U7666" + }, + { + "id": "U7667Z1", + "name": "Kozmice,Kácova Lhota", + "isMetro": false, + "latitude": 14.78788, + "longitude": 49.81086, + "stopId": "U7667" + }, + { + "id": "U7667Z2", + "name": "Kozmice,Kácova Lhota", + "isMetro": false, + "latitude": 14.787908, + "longitude": 49.810917, + "stopId": "U7667" + }, + { + "id": "U7669Z1", + "name": "Krásná Hora n.Vlt.", + "isMetro": false, + "latitude": 14.276162, + "longitude": 49.604519, + "stopId": "U7669" + }, + { + "id": "U7669Z2", + "name": "Krásná Hora n.Vlt.", + "isMetro": false, + "latitude": 14.276852, + "longitude": 49.604504, + "stopId": "U7669" + }, + { + "id": "U7669Z3", + "name": "Krásná Hora n.Vlt.", + "isMetro": false, + "latitude": 14.277134, + "longitude": 49.604313, + "stopId": "U7669" + }, + { + "id": "U7669Z4", + "name": "Krásná Hora n.Vlt.", + "isMetro": false, + "latitude": 14.277401, + "longitude": 49.604351, + "stopId": "U7669" + }, + { + "id": "U766Z1", + "name": "Trutnovská", + "isMetro": false, + "latitude": 14.5059, + "longitude": 50.146301, + "stopId": "U766" + }, + { + "id": "U766Z2", + "name": "Trutnovská", + "isMetro": false, + "latitude": 14.50555, + "longitude": 50.146183, + "stopId": "U766" + }, + { + "id": "U7670Z1", + "name": "Krásná Hora n.Vlt.,Pražská", + "isMetro": false, + "latitude": 14.277426, + "longitude": 49.606651, + "stopId": "U7670" + }, + { + "id": "U7670Z2", + "name": "Krásná Hora n.Vlt.,Pražská", + "isMetro": false, + "latitude": 14.277424, + "longitude": 49.607014, + "stopId": "U7670" + }, + { + "id": "U7672Z1", + "name": "Krásná Hora n.Vlt.,Podmoky,Na Mrázovech", + "isMetro": false, + "latitude": 14.24975, + "longitude": 49.602757, + "stopId": "U7672" + }, + { + "id": "U7672Z2", + "name": "Krásná Hora n.Vlt.,Podmoky,Na Mrázovech", + "isMetro": false, + "latitude": 14.249799, + "longitude": 49.602715, + "stopId": "U7672" + }, + { + "id": "U7673Z1", + "name": "Krásná Hora n.Vlt.,Plešiště,rozc.", + "isMetro": false, + "latitude": 14.322374, + "longitude": 49.606827, + "stopId": "U7673" + }, + { + "id": "U7673Z2", + "name": "Krásná Hora n.Vlt.,Plešiště,rozc.", + "isMetro": false, + "latitude": 14.322306, + "longitude": 49.606792, + "stopId": "U7673" + }, + { + "id": "U7676Z1", + "name": "Krásná Hora n.Vlt.,Zhoř,rozc.", + "isMetro": false, + "latitude": 14.275693, + "longitude": 49.617195, + "stopId": "U7676" + }, + { + "id": "U7676Z2", + "name": "Krásná Hora n.Vlt.,Zhoř,rozc.", + "isMetro": false, + "latitude": 14.275632, + "longitude": 49.61755, + "stopId": "U7676" + }, + { + "id": "U7677Z1", + "name": "Krásná Hora n.Vlt.,Žákovec", + "isMetro": false, + "latitude": 14.277087, + "longitude": 49.623138, + "stopId": "U7677" + }, + { + "id": "U7677Z2", + "name": "Krásná Hora n.Vlt.,Žákovec", + "isMetro": false, + "latitude": 14.277223, + "longitude": 49.623123, + "stopId": "U7677" + }, + { + "id": "U7678Z1", + "name": "Krásná Hora n.Vlt.,Mariánský Důl", + "isMetro": false, + "latitude": 14.262248, + "longitude": 49.604366, + "stopId": "U7678" + }, + { + "id": "U7678Z2", + "name": "Krásná Hora n.Vlt.,Mariánský Důl", + "isMetro": false, + "latitude": 14.262266, + "longitude": 49.604294, + "stopId": "U7678" + }, + { + "id": "U767Z1", + "name": "Třebešín", + "isMetro": false, + "latitude": 14.481851, + "longitude": 50.083969, + "stopId": "U767" + }, + { + "id": "U767Z2", + "name": "Třebešín", + "isMetro": false, + "latitude": 14.481951, + "longitude": 50.084244, + "stopId": "U767" + }, + { + "id": "U7681Z1", + "name": "Krásná Hora n.Vlt.,Podmoky", + "isMetro": false, + "latitude": 14.236547, + "longitude": 49.596241, + "stopId": "U7681" + }, + { + "id": "U7681Z2", + "name": "Krásná Hora n.Vlt.,Podmoky", + "isMetro": false, + "latitude": 14.235082, + "longitude": 49.595169, + "stopId": "U7681" + }, + { + "id": "U7682Z1", + "name": "Krásná Hora n.Vlt.,Vletice", + "isMetro": false, + "latitude": 14.310415, + "longitude": 49.604687, + "stopId": "U7682" + }, + { + "id": "U7682Z2", + "name": "Krásná Hora n.Vlt.,Vletice", + "isMetro": false, + "latitude": 14.310369, + "longitude": 49.604568, + "stopId": "U7682" + }, + { + "id": "U7684Z1", + "name": "Křečovice,Větrov", + "isMetro": false, + "latitude": 14.462759, + "longitude": 49.71582, + "stopId": "U7684" + }, + { + "id": "U7684Z2", + "name": "Křečovice,Větrov", + "isMetro": false, + "latitude": 14.462861, + "longitude": 49.715801, + "stopId": "U7684" + }, + { + "id": "U7685Z1", + "name": "Křivsoudov", + "isMetro": false, + "latitude": 15.087435, + "longitude": 49.630947, + "stopId": "U7685" + }, + { + "id": "U7685Z2", + "name": "Křivsoudov", + "isMetro": false, + "latitude": 15.087407, + "longitude": 49.631214, + "stopId": "U7685" + }, + { + "id": "U7686Z1", + "name": "Křivsoudov,u kostela", + "isMetro": false, + "latitude": 15.086569, + "longitude": 49.634941, + "stopId": "U7686" + }, + { + "id": "U7686Z2", + "name": "Křivsoudov,u kostela", + "isMetro": false, + "latitude": 15.086403, + "longitude": 49.634968, + "stopId": "U7686" + }, + { + "id": "U7687Z1", + "name": "Křivsoudov,Lhota Bubeneč", + "isMetro": false, + "latitude": 15.114052, + "longitude": 49.621323, + "stopId": "U7687" + }, + { + "id": "U7687Z2", + "name": "Křivsoudov,Lhota Bubeneč", + "isMetro": false, + "latitude": 15.114173, + "longitude": 49.621449, + "stopId": "U7687" + }, + { + "id": "U7688Z1", + "name": "Křivsoudov,rozc.Lhota Bubeneč", + "isMetro": false, + "latitude": 15.095555, + "longitude": 49.637524, + "stopId": "U7688" + }, + { + "id": "U7688Z2", + "name": "Křivsoudov,rozc.Lhota Bubeneč", + "isMetro": false, + "latitude": 15.095184, + "longitude": 49.637604, + "stopId": "U7688" + }, + { + "id": "U7689Z1", + "name": "Kuňovice", + "isMetro": false, + "latitude": 14.999158, + "longitude": 49.659698, + "stopId": "U7689" + }, + { + "id": "U7689Z2", + "name": "Kuňovice", + "isMetro": false, + "latitude": 14.999325, + "longitude": 49.65974, + "stopId": "U7689" + }, + { + "id": "U768Z1", + "name": "Třebonice", + "isMetro": false, + "latitude": 14.280543, + "longitude": 50.045128, + "stopId": "U768" + }, + { + "id": "U768Z2", + "name": "Třebonice", + "isMetro": false, + "latitude": 14.280543, + "longitude": 50.045128, + "stopId": "U768" + }, + { + "id": "U7690Z1", + "name": "Kuňovice,rozc.", + "isMetro": false, + "latitude": 15.004264, + "longitude": 49.656658, + "stopId": "U7690" + }, + { + "id": "U7690Z2", + "name": "Kuňovice,rozc.", + "isMetro": false, + "latitude": 15.004292, + "longitude": 49.656723, + "stopId": "U7690" + }, + { + "id": "U7691Z1", + "name": "Velké Přílepy,Kladenská", + "isMetro": false, + "latitude": 14.30477, + "longitude": 50.159389, + "stopId": "U7691" + }, + { + "id": "U7691Z2", + "name": "Velké Přílepy,Kladenská", + "isMetro": false, + "latitude": 14.305529, + "longitude": 50.159401, + "stopId": "U7691" + }, + { + "id": "U7693Z1", + "name": "Láz,Dolní", + "isMetro": false, + "latitude": 13.916979, + "longitude": 49.652092, + "stopId": "U7693" + }, + { + "id": "U7693Z2", + "name": "Láz,Dolní", + "isMetro": false, + "latitude": 13.917169, + "longitude": 49.65205, + "stopId": "U7693" + }, + { + "id": "U7694Z1", + "name": "Láz,Horní", + "isMetro": false, + "latitude": 13.906645, + "longitude": 49.65004, + "stopId": "U7694" + }, + { + "id": "U7695Z1", + "name": "Láz,Jamky", + "isMetro": false, + "latitude": 13.915437, + "longitude": 49.646488, + "stopId": "U7695" + }, + { + "id": "U7695Z2", + "name": "Láz,Jamky", + "isMetro": false, + "latitude": 13.915744, + "longitude": 49.646629, + "stopId": "U7695" + }, + { + "id": "U7696Z1", + "name": "Láz,prodejna", + "isMetro": false, + "latitude": 13.91272, + "longitude": 49.652267, + "stopId": "U7696" + }, + { + "id": "U7696Z2", + "name": "Láz,prodejna", + "isMetro": false, + "latitude": 13.912832, + "longitude": 49.652222, + "stopId": "U7696" + }, + { + "id": "U7698Z1", + "name": "Lešetice", + "isMetro": false, + "latitude": 14.023534, + "longitude": 49.649979, + "stopId": "U7698" + }, + { + "id": "U7698Z2", + "name": "Lešetice", + "isMetro": false, + "latitude": 14.02402, + "longitude": 49.650085, + "stopId": "U7698" + }, + { + "id": "U7699Z1", + "name": "Libež", + "isMetro": false, + "latitude": 14.91779, + "longitude": 49.757179, + "stopId": "U7699" + }, + { + "id": "U7699Z2", + "name": "Libež", + "isMetro": false, + "latitude": 14.917742, + "longitude": 49.757126, + "stopId": "U7699" + }, + { + "id": "U769Z1", + "name": "Třeboradice", + "isMetro": false, + "latitude": 14.524517, + "longitude": 50.163799, + "stopId": "U769" + }, + { + "id": "U769Z2", + "name": "Třeboradice", + "isMetro": false, + "latitude": 14.524884, + "longitude": 50.162533, + "stopId": "U769" + }, + { + "id": "U769Z3", + "name": "Třeboradice", + "isMetro": false, + "latitude": 14.525067, + "longitude": 50.162552, + "stopId": "U769" + }, + { + "id": "U769Z4", + "name": "Třeboradice", + "isMetro": false, + "latitude": 14.524941, + "longitude": 50.16267, + "stopId": "U769" + }, + { + "id": "U76Z1", + "name": "Modřanská škola", + "isMetro": false, + "latitude": 14.403053, + "longitude": 50.009224, + "stopId": "U76" + }, + { + "id": "U76Z2", + "name": "Modřanská škola", + "isMetro": false, + "latitude": 14.403114, + "longitude": 50.008427, + "stopId": "U76" + }, + { + "id": "U76Z3", + "name": "Modřanská škola", + "isMetro": false, + "latitude": 14.40295, + "longitude": 50.0098, + "stopId": "U76" + }, + { + "id": "U76Z4", + "name": "Modřanská škola", + "isMetro": false, + "latitude": 14.403467, + "longitude": 50.008816, + "stopId": "U76" + }, + { + "id": "U7702Z1", + "name": "Loket u Čechtic", + "isMetro": false, + "latitude": 15.113517, + "longitude": 49.654766, + "stopId": "U7702" + }, + { + "id": "U7702Z2", + "name": "Loket u Čechtic", + "isMetro": false, + "latitude": 15.113229, + "longitude": 49.654724, + "stopId": "U7702" + }, + { + "id": "U7703Z1", + "name": "Loket u Čechtic,Alberovice", + "isMetro": false, + "latitude": 15.106223, + "longitude": 49.645588, + "stopId": "U7703" + }, + { + "id": "U7703Z2", + "name": "Loket u Čechtic,Alberovice", + "isMetro": false, + "latitude": 15.105682, + "longitude": 49.645451, + "stopId": "U7703" + }, + { + "id": "U7704Z1", + "name": "Loket u Čechtic,Bezděkov", + "isMetro": false, + "latitude": 15.163118, + "longitude": 49.685799, + "stopId": "U7704" + }, + { + "id": "U7704Z2", + "name": "Loket u Čechtic,Bezděkov", + "isMetro": false, + "latitude": 15.163001, + "longitude": 49.685905, + "stopId": "U7704" + }, + { + "id": "U7705Z1", + "name": "Loket u Čechtic,Brzotice", + "isMetro": false, + "latitude": 15.129823, + "longitude": 49.662331, + "stopId": "U7705" + }, + { + "id": "U7705Z2", + "name": "Loket u Čechtic,Brzotice", + "isMetro": false, + "latitude": 15.128932, + "longitude": 49.662224, + "stopId": "U7705" + }, + { + "id": "U7706Z1", + "name": "Loket u Čechtic,Brzotice,rozc.II", + "isMetro": false, + "latitude": 15.127243, + "longitude": 49.661621, + "stopId": "U7706" + }, + { + "id": "U7706Z2", + "name": "Loket u Čechtic,Brzotice,rozc.II", + "isMetro": false, + "latitude": 15.127361, + "longitude": 49.661739, + "stopId": "U7706" + }, + { + "id": "U7707Z1", + "name": "Loket u Čechtic,Němčice", + "isMetro": false, + "latitude": 15.102824, + "longitude": 49.674404, + "stopId": "U7707" + }, + { + "id": "U7707Z2", + "name": "Loket u Čechtic,Němčice", + "isMetro": false, + "latitude": 15.102793, + "longitude": 49.67453, + "stopId": "U7707" + }, + { + "id": "U770Z1", + "name": "Nové Petrovice", + "isMetro": false, + "latitude": 14.554587, + "longitude": 50.039955, + "stopId": "U770" + }, + { + "id": "U770Z2", + "name": "Nové Petrovice", + "isMetro": false, + "latitude": 14.554605, + "longitude": 50.040138, + "stopId": "U770" + }, + { + "id": "U7711Z1", + "name": "Louňovice p.Blaníkem,Býkovice", + "isMetro": false, + "latitude": 14.866367, + "longitude": 49.62104, + "stopId": "U7711" + }, + { + "id": "U7714Z1", + "name": "Milešov", + "isMetro": false, + "latitude": 14.221141, + "longitude": 49.589096, + "stopId": "U7714" + }, + { + "id": "U7714Z2", + "name": "Milešov", + "isMetro": false, + "latitude": 14.22092, + "longitude": 49.589237, + "stopId": "U7714" + }, + { + "id": "U7715Z1", + "name": "Milešov,rozc.", + "isMetro": false, + "latitude": 14.226663, + "longitude": 49.588722, + "stopId": "U7715" + }, + { + "id": "U7715Z2", + "name": "Milešov,rozc.", + "isMetro": false, + "latitude": 14.226645, + "longitude": 49.588844, + "stopId": "U7715" + }, + { + "id": "U7716Z1", + "name": "Milešov,Hřebeny", + "isMetro": false, + "latitude": 14.202526, + "longitude": 49.597401, + "stopId": "U7716" + }, + { + "id": "U7716Z2", + "name": "Milešov,Hřebeny", + "isMetro": false, + "latitude": 14.202712, + "longitude": 49.597485, + "stopId": "U7716" + }, + { + "id": "U7718Z1", + "name": "Milešov,Přední Chlum", + "isMetro": false, + "latitude": 14.193282, + "longitude": 49.600384, + "stopId": "U7718" + }, + { + "id": "U7718Z2", + "name": "Milešov,Přední Chlum", + "isMetro": false, + "latitude": 14.193303, + "longitude": 49.60043, + "stopId": "U7718" + }, + { + "id": "U7719Z1", + "name": "Milín", + "isMetro": false, + "latitude": 14.046117, + "longitude": 49.632404, + "stopId": "U7719" + }, + { + "id": "U7719Z2", + "name": "Milín", + "isMetro": false, + "latitude": 14.046333, + "longitude": 49.632259, + "stopId": "U7719" + }, + { + "id": "U771Z1", + "name": "Tupolevova", + "isMetro": false, + "latitude": 14.505981, + "longitude": 50.134644, + "stopId": "U771" + }, + { + "id": "U771Z2", + "name": "Tupolevova", + "isMetro": false, + "latitude": 14.505801, + "longitude": 50.134369, + "stopId": "U771" + }, + { + "id": "U7721Z1", + "name": "Milín,sídliště", + "isMetro": false, + "latitude": 14.039694, + "longitude": 49.634151, + "stopId": "U7721" + }, + { + "id": "U7721Z2", + "name": "Milín,sídliště", + "isMetro": false, + "latitude": 14.039568, + "longitude": 49.634228, + "stopId": "U7721" + }, + { + "id": "U7724Z401", + "name": "Milín,Nádražní", + "isMetro": false, + "latitude": 14.031223, + "longitude": 49.633614, + "stopId": "U7724" + }, + { + "id": "U7724Z402", + "name": "Milín,Nádražní", + "isMetro": false, + "latitude": 14.032312, + "longitude": 49.633808, + "stopId": "U7724" + }, + { + "id": "U7725Z1", + "name": "Milín,Buk", + "isMetro": false, + "latitude": 14.060183, + "longitude": 49.648582, + "stopId": "U7725" + }, + { + "id": "U7725Z2", + "name": "Milín,Buk", + "isMetro": false, + "latitude": 14.060308, + "longitude": 49.648632, + "stopId": "U7725" + }, + { + "id": "U7726Z1", + "name": "Milín,Buk,křiž.", + "isMetro": false, + "latitude": 14.055207, + "longitude": 49.65337, + "stopId": "U7726" + }, + { + "id": "U7726Z2", + "name": "Milín,Buk,křiž.", + "isMetro": false, + "latitude": 14.054917, + "longitude": 49.653706, + "stopId": "U7726" + }, + { + "id": "U7729Z1", + "name": "Pečice,Pečičky,Luh", + "isMetro": false, + "latitude": 14.085603, + "longitude": 49.620819, + "stopId": "U7729" + }, + { + "id": "U7729Z2", + "name": "Pečice,Pečičky,Luh", + "isMetro": false, + "latitude": 14.085652, + "longitude": 49.620949, + "stopId": "U7729" + }, + { + "id": "U772Z1", + "name": "Tyršova čtvrť", + "isMetro": false, + "latitude": 14.411273, + "longitude": 50.014103, + "stopId": "U772" + }, + { + "id": "U772Z2", + "name": "Tyršova čtvrť", + "isMetro": false, + "latitude": 14.410129, + "longitude": 50.014084, + "stopId": "U772" + }, + { + "id": "U7730Z1", + "name": "Milín,Slivice", + "isMetro": false, + "latitude": 14.033829, + "longitude": 49.643764, + "stopId": "U7730" + }, + { + "id": "U7730Z2", + "name": "Milín,Slivice", + "isMetro": false, + "latitude": 14.034025, + "longitude": 49.643826, + "stopId": "U7730" + }, + { + "id": "U7731Z1", + "name": "Milín,Stěžov", + "isMetro": false, + "latitude": 14.096872, + "longitude": 49.646774, + "stopId": "U7731" + }, + { + "id": "U7731Z2", + "name": "Milín,Stěžov", + "isMetro": false, + "latitude": 14.096949, + "longitude": 49.646858, + "stopId": "U7731" + }, + { + "id": "U7732Z1", + "name": "Miřetice", + "isMetro": false, + "latitude": 14.976239, + "longitude": 49.658501, + "stopId": "U7732" + }, + { + "id": "U7732Z2", + "name": "Miřetice", + "isMetro": false, + "latitude": 14.976436, + "longitude": 49.658535, + "stopId": "U7732" + }, + { + "id": "U7733Z1", + "name": "Miřetice,rozc.", + "isMetro": false, + "latitude": 14.979983, + "longitude": 49.665287, + "stopId": "U7733" + }, + { + "id": "U7733Z2", + "name": "Miřetice,rozc.", + "isMetro": false, + "latitude": 14.980395, + "longitude": 49.665207, + "stopId": "U7733" + }, + { + "id": "U7734Z1", + "name": "Mnichovice", + "isMetro": false, + "latitude": 15.04007, + "longitude": 49.668682, + "stopId": "U7734" + }, + { + "id": "U7734Z2", + "name": "Mnichovice", + "isMetro": false, + "latitude": 15.04002, + "longitude": 49.668758, + "stopId": "U7734" + }, + { + "id": "U7735Z1", + "name": "Modřovice", + "isMetro": false, + "latitude": 13.957628, + "longitude": 49.618008, + "stopId": "U7735" + }, + { + "id": "U7735Z2", + "name": "Modřovice", + "isMetro": false, + "latitude": 13.957801, + "longitude": 49.617882, + "stopId": "U7735" + }, + { + "id": "U7738Z1", + "name": "Načeradec", + "isMetro": false, + "latitude": 14.906175, + "longitude": 49.610741, + "stopId": "U7738" + }, + { + "id": "U7738Z2", + "name": "Načeradec", + "isMetro": false, + "latitude": 14.906087, + "longitude": 49.610577, + "stopId": "U7738" + }, + { + "id": "U7738Z3", + "name": "Načeradec", + "isMetro": false, + "latitude": 14.906229, + "longitude": 49.610218, + "stopId": "U7738" + }, + { + "id": "U7738Z4", + "name": "Načeradec", + "isMetro": false, + "latitude": 14.906177, + "longitude": 49.610027, + "stopId": "U7738" + }, + { + "id": "U7738Z5", + "name": "Načeradec", + "isMetro": false, + "latitude": 14.905905, + "longitude": 49.609917, + "stopId": "U7738" + }, + { + "id": "U7738Z6", + "name": "Načeradec", + "isMetro": false, + "latitude": 14.905689, + "longitude": 49.609898, + "stopId": "U7738" + }, + { + "id": "U7739Z1", + "name": "Načeradec,rozc.Pravětice", + "isMetro": false, + "latitude": 14.896596, + "longitude": 49.609737, + "stopId": "U7739" + }, + { + "id": "U7739Z2", + "name": "Načeradec,rozc.Pravětice", + "isMetro": false, + "latitude": 14.896531, + "longitude": 49.609783, + "stopId": "U7739" + }, + { + "id": "U7739Z3", + "name": "Načeradec,u hřbitova", + "isMetro": false, + "latitude": 14.90364, + "longitude": 49.612495, + "stopId": "U7739" + }, + { + "id": "U7739Z4", + "name": "Načeradec,u hřbitova", + "isMetro": false, + "latitude": 14.903544, + "longitude": 49.612495, + "stopId": "U7739" + }, + { + "id": "U7740Z1", + "name": "Načeradec,Daměnice", + "isMetro": false, + "latitude": 14.887469, + "longitude": 49.583271, + "stopId": "U7740" + }, + { + "id": "U7740Z2", + "name": "Načeradec,Daměnice", + "isMetro": false, + "latitude": 14.887733, + "longitude": 49.583241, + "stopId": "U7740" + }, + { + "id": "U7741Z1", + "name": "Načeradec,Dolní Lhota", + "isMetro": false, + "latitude": 14.962768, + "longitude": 49.580482, + "stopId": "U7741" + }, + { + "id": "U7741Z2", + "name": "Načeradec,Dolní Lhota", + "isMetro": false, + "latitude": 14.962591, + "longitude": 49.580616, + "stopId": "U7741" + }, + { + "id": "U7742Z1", + "name": "Načeradec,Horní Lhota", + "isMetro": false, + "latitude": 14.951624, + "longitude": 49.595329, + "stopId": "U7742" + }, + { + "id": "U7742Z2", + "name": "Načeradec,Horní Lhota", + "isMetro": false, + "latitude": 14.951549, + "longitude": 49.595379, + "stopId": "U7742" + }, + { + "id": "U7742Z3", + "name": "Načeradec,Horní Lhota,u váhy", + "isMetro": false, + "latitude": 14.956443, + "longitude": 49.594616, + "stopId": "U7742" + }, + { + "id": "U7742Z4", + "name": "Načeradec,Horní Lhota,u váhy", + "isMetro": false, + "latitude": 14.956665, + "longitude": 49.594765, + "stopId": "U7742" + }, + { + "id": "U7744Z1", + "name": "Načeradec,Novotinky", + "isMetro": false, + "latitude": 14.969452, + "longitude": 49.583832, + "stopId": "U7744" + }, + { + "id": "U7744Z2", + "name": "Načeradec,Novotinky", + "isMetro": false, + "latitude": 14.969556, + "longitude": 49.583805, + "stopId": "U7744" + }, + { + "id": "U7748Z1", + "name": "Načeradec,Pravětice", + "isMetro": false, + "latitude": 14.876959, + "longitude": 49.59552, + "stopId": "U7748" + }, + { + "id": "U7748Z2", + "name": "Načeradec,Pravětice", + "isMetro": false, + "latitude": 14.87679, + "longitude": 49.595524, + "stopId": "U7748" + }, + { + "id": "U774Z1", + "name": "U Dálnice", + "isMetro": false, + "latitude": 14.507701, + "longitude": 50.020485, + "stopId": "U774" + }, + { + "id": "U774Z2", + "name": "U Dálnice", + "isMetro": false, + "latitude": 14.5071, + "longitude": 50.0205, + "stopId": "U774" + }, + { + "id": "U7751Z1", + "name": "Načeradec,Vračkovice", + "isMetro": false, + "latitude": 14.928277, + "longitude": 49.613373, + "stopId": "U7751" + }, + { + "id": "U7751Z2", + "name": "Načeradec,Vračkovice", + "isMetro": false, + "latitude": 14.928391, + "longitude": 49.6133, + "stopId": "U7751" + }, + { + "id": "U7755Z3", + "name": "Nečín", + "isMetro": false, + "latitude": 14.233522, + "longitude": 49.698315, + "stopId": "U7755" + }, + { + "id": "U7755Z4", + "name": "Nečín", + "isMetro": false, + "latitude": 14.233422, + "longitude": 49.69825, + "stopId": "U7755" + }, + { + "id": "U7757Z1", + "name": "Nečín,Bělohrad", + "isMetro": false, + "latitude": 14.199647, + "longitude": 49.7076, + "stopId": "U7757" + }, + { + "id": "U7757Z2", + "name": "Nečín,Bělohrad", + "isMetro": false, + "latitude": 14.199761, + "longitude": 49.707611, + "stopId": "U7757" + }, + { + "id": "U7758Z1", + "name": "Nečín,Jablonce", + "isMetro": false, + "latitude": 14.223405, + "longitude": 49.684593, + "stopId": "U7758" + }, + { + "id": "U7758Z2", + "name": "Nečín,Jablonce", + "isMetro": false, + "latitude": 14.223327, + "longitude": 49.684601, + "stopId": "U7758" + }, + { + "id": "U775Z1", + "name": "U Elektry", + "isMetro": false, + "latitude": 14.518557, + "longitude": 50.103462, + "stopId": "U775" + }, + { + "id": "U775Z2", + "name": "U Elektry", + "isMetro": false, + "latitude": 14.519443, + "longitude": 50.103474, + "stopId": "U775" + }, + { + "id": "U7760Z1", + "name": "Nečín,Skalice", + "isMetro": false, + "latitude": 14.190017, + "longitude": 49.717449, + "stopId": "U7760" + }, + { + "id": "U7760Z2", + "name": "Nečín,Skalice", + "isMetro": false, + "latitude": 14.189799, + "longitude": 49.717575, + "stopId": "U7760" + }, + { + "id": "U7763Z1", + "name": "Nedrahovice,rozc.", + "isMetro": false, + "latitude": 14.459262, + "longitude": 49.616074, + "stopId": "U7763" + }, + { + "id": "U7763Z2", + "name": "Nedrahovice,rozc.", + "isMetro": false, + "latitude": 14.459072, + "longitude": 49.616188, + "stopId": "U7763" + }, + { + "id": "U7767Z1", + "name": "Nedrahovice,Rudolec", + "isMetro": false, + "latitude": 14.439923, + "longitude": 49.630013, + "stopId": "U7767" + }, + { + "id": "U7767Z2", + "name": "Nedrahovice,Rudolec", + "isMetro": false, + "latitude": 14.440001, + "longitude": 49.630028, + "stopId": "U7767" + }, + { + "id": "U7768Z1", + "name": "Nedrahovice,Lipský mlýn", + "isMetro": false, + "latitude": 14.450078, + "longitude": 49.623322, + "stopId": "U7768" + }, + { + "id": "U7768Z2", + "name": "Nedrahovice,Lipský mlýn", + "isMetro": false, + "latitude": 14.450109, + "longitude": 49.623409, + "stopId": "U7768" + }, + { + "id": "U776Z1", + "name": "U Hangáru", + "isMetro": false, + "latitude": 14.277906, + "longitude": 50.108158, + "stopId": "U776" + }, + { + "id": "U776Z2", + "name": "U Hangáru", + "isMetro": false, + "latitude": 14.274595, + "longitude": 50.107903, + "stopId": "U776" + }, + { + "id": "U776Z3", + "name": "U Hangáru", + "isMetro": false, + "latitude": 14.276145, + "longitude": 50.108486, + "stopId": "U776" + }, + { + "id": "U7770Z1", + "name": "Nechvalice", + "isMetro": false, + "latitude": 14.397229, + "longitude": 49.575298, + "stopId": "U7770" + }, + { + "id": "U7771Z1", + "name": "Nechvalice,Bratřejov", + "isMetro": false, + "latitude": 14.375598, + "longitude": 49.575554, + "stopId": "U7771" + }, + { + "id": "U7771Z2", + "name": "Nechvalice,Bratřejov", + "isMetro": false, + "latitude": 14.375654, + "longitude": 49.575432, + "stopId": "U7771" + }, + { + "id": "U7773Z1", + "name": "Nechvalice,Bratříkovice,rozc.", + "isMetro": false, + "latitude": 14.39191, + "longitude": 49.572208, + "stopId": "U7773" + }, + { + "id": "U7775Z2", + "name": "Nechvalice,Křemenice,rozc.", + "isMetro": false, + "latitude": 14.403926, + "longitude": 49.582237, + "stopId": "U7775" + }, + { + "id": "U7776Z2", + "name": "Nechvalice,Libčice", + "isMetro": false, + "latitude": 14.402018, + "longitude": 49.573135, + "stopId": "U7776" + }, + { + "id": "U777Z1", + "name": "U Kapličky", + "isMetro": false, + "latitude": 14.360901, + "longitude": 49.962234, + "stopId": "U777" + }, + { + "id": "U777Z2", + "name": "U Kapličky", + "isMetro": false, + "latitude": 14.36085, + "longitude": 49.962002, + "stopId": "U777" + }, + { + "id": "U7782Z1", + "name": "Nové Dvory,zdrav.stř.", + "isMetro": false, + "latitude": 15.328679, + "longitude": 49.967331, + "stopId": "U7782" + }, + { + "id": "U7782Z2", + "name": "Nové Dvory,zdrav.stř.", + "isMetro": false, + "latitude": 15.328519, + "longitude": 49.96772, + "stopId": "U7782" + }, + { + "id": "U7783Z1", + "name": "Nové Dvory,Ovčáry", + "isMetro": false, + "latitude": 15.331738, + "longitude": 49.96291, + "stopId": "U7783" + }, + { + "id": "U7783Z2", + "name": "Nové Dvory,Ovčáry", + "isMetro": false, + "latitude": 15.331748, + "longitude": 49.963257, + "stopId": "U7783" + }, + { + "id": "U7784Z1", + "name": "Obory", + "isMetro": false, + "latitude": 14.217448, + "longitude": 49.681385, + "stopId": "U7784" + }, + { + "id": "U7784Z2", + "name": "Obory", + "isMetro": false, + "latitude": 14.217307, + "longitude": 49.681278, + "stopId": "U7784" + }, + { + "id": "U7784Z3", + "name": "Obory", + "isMetro": false, + "latitude": 14.218988, + "longitude": 49.68129, + "stopId": "U7784" + }, + { + "id": "U7784Z4", + "name": "Obory", + "isMetro": false, + "latitude": 14.218651, + "longitude": 49.681332, + "stopId": "U7784" + }, + { + "id": "U7785Z1", + "name": "Obory,Pánkovka", + "isMetro": false, + "latitude": 14.19241, + "longitude": 49.691982, + "stopId": "U7785" + }, + { + "id": "U7785Z2", + "name": "Obory,Pánkovka", + "isMetro": false, + "latitude": 14.19253, + "longitude": 49.691833, + "stopId": "U7785" + }, + { + "id": "U7786Z1", + "name": "Obory,čerpací stanice", + "isMetro": false, + "latitude": 14.209653, + "longitude": 49.683002, + "stopId": "U7786" + }, + { + "id": "U7786Z2", + "name": "Obory,čerpací stanice", + "isMetro": false, + "latitude": 14.209969, + "longitude": 49.682732, + "stopId": "U7786" + }, + { + "id": "U7787Z1", + "name": "Obory,samoty", + "isMetro": false, + "latitude": 14.233503, + "longitude": 49.678669, + "stopId": "U7787" + }, + { + "id": "U7787Z2", + "name": "Obory,samoty", + "isMetro": false, + "latitude": 14.233037, + "longitude": 49.678711, + "stopId": "U7787" + }, + { + "id": "U7789Z1", + "name": "Týnec n.Sáz.,Chrást,u hřbitova", + "isMetro": false, + "latitude": 14.560676, + "longitude": 49.842869, + "stopId": "U7789" + }, + { + "id": "U7789Z2", + "name": "Týnec n.Sáz.,Chrást,u hřbitova", + "isMetro": false, + "latitude": 14.560165, + "longitude": 49.843285, + "stopId": "U7789" + }, + { + "id": "U778Z1", + "name": "U Kaštanu", + "isMetro": false, + "latitude": 14.36335, + "longitude": 50.083626, + "stopId": "U778" + }, + { + "id": "U778Z2", + "name": "U Kaštanu", + "isMetro": false, + "latitude": 14.362874, + "longitude": 50.083679, + "stopId": "U778" + }, + { + "id": "U7791Z1", + "name": "Osečany,Podskalí", + "isMetro": false, + "latitude": 14.437508, + "longitude": 49.69474, + "stopId": "U7791" + }, + { + "id": "U7791Z2", + "name": "Osečany,Podskalí", + "isMetro": false, + "latitude": 14.437556, + "longitude": 49.694691, + "stopId": "U7791" + }, + { + "id": "U7792Z1", + "name": "Osečany,rozc.Paseky", + "isMetro": false, + "latitude": 14.451161, + "longitude": 49.706432, + "stopId": "U7792" + }, + { + "id": "U7792Z2", + "name": "Osečany,rozc.Paseky", + "isMetro": false, + "latitude": 14.451481, + "longitude": 49.706459, + "stopId": "U7792" + }, + { + "id": "U7793Z1", + "name": "Osečany,Velběhy", + "isMetro": false, + "latitude": 14.45734, + "longitude": 49.713009, + "stopId": "U7793" + }, + { + "id": "U7793Z2", + "name": "Osečany,Velběhy", + "isMetro": false, + "latitude": 14.457411, + "longitude": 49.713032, + "stopId": "U7793" + }, + { + "id": "U7795Z1", + "name": "Ostředek,Mžižovice", + "isMetro": false, + "latitude": 14.821772, + "longitude": 49.834354, + "stopId": "U7795" + }, + { + "id": "U7795Z2", + "name": "Ostředek,Mžižovice", + "isMetro": false, + "latitude": 14.821702, + "longitude": 49.834446, + "stopId": "U7795" + }, + { + "id": "U7796Z2", + "name": "Ostředek,Třemošnice", + "isMetro": false, + "latitude": 14.866917, + "longitude": 49.817802, + "stopId": "U7796" + }, + { + "id": "U7797Z1", + "name": "Ouběnice", + "isMetro": false, + "latitude": 14.160364, + "longitude": 49.718479, + "stopId": "U7797" + }, + { + "id": "U7797Z2", + "name": "Ouběnice", + "isMetro": false, + "latitude": 14.160581, + "longitude": 49.718666, + "stopId": "U7797" + }, + { + "id": "U7798Z1", + "name": "Ouběnice,Ostrov", + "isMetro": false, + "latitude": 14.146766, + "longitude": 49.720375, + "stopId": "U7798" + }, + { + "id": "U7798Z2", + "name": "Ouběnice,Ostrov", + "isMetro": false, + "latitude": 14.147053, + "longitude": 49.720432, + "stopId": "U7798" + }, + { + "id": "U779Z1", + "name": "U Kříže", + "isMetro": false, + "latitude": 14.475318, + "longitude": 50.11211, + "stopId": "U779" + }, + { + "id": "U779Z2", + "name": "U Kříže", + "isMetro": false, + "latitude": 14.475762, + "longitude": 50.112373, + "stopId": "U779" + }, + { + "id": "U7801Z1", + "name": "Opolany,u mostu", + "isMetro": false, + "latitude": 15.216501, + "longitude": 50.129681, + "stopId": "U7801" + }, + { + "id": "U7802Z1", + "name": "Pečice", + "isMetro": false, + "latitude": 14.105442, + "longitude": 49.601219, + "stopId": "U7802" + }, + { + "id": "U7802Z2", + "name": "Pečice", + "isMetro": false, + "latitude": 14.105345, + "longitude": 49.60141, + "stopId": "U7802" + }, + { + "id": "U7804Z1", + "name": "Pečice,Pečičky", + "isMetro": false, + "latitude": 14.102514, + "longitude": 49.616116, + "stopId": "U7804" + }, + { + "id": "U7804Z2", + "name": "Pečice,Pečičky", + "isMetro": false, + "latitude": 14.102651, + "longitude": 49.61618, + "stopId": "U7804" + }, + { + "id": "U7805Z1", + "name": "Pečice,Pečičky,u Štáfů", + "isMetro": false, + "latitude": 14.092774, + "longitude": 49.617397, + "stopId": "U7805" + }, + { + "id": "U7805Z2", + "name": "Pečice,Pečičky,u Štáfů", + "isMetro": false, + "latitude": 14.09274, + "longitude": 49.617455, + "stopId": "U7805" + }, + { + "id": "U7806Z1", + "name": "Hořesedly", + "isMetro": false, + "latitude": 13.603925, + "longitude": 50.162251, + "stopId": "U7806" + }, + { + "id": "U7806Z2", + "name": "Hořesedly", + "isMetro": false, + "latitude": 13.60043, + "longitude": 50.162228, + "stopId": "U7806" + }, + { + "id": "U7807Z1", + "name": "Petroupim", + "isMetro": false, + "latitude": 14.753662, + "longitude": 49.809517, + "stopId": "U7807" + }, + { + "id": "U7807Z2", + "name": "Petroupim", + "isMetro": false, + "latitude": 14.753523, + "longitude": 49.809616, + "stopId": "U7807" + }, + { + "id": "U7809Z1", + "name": "Petroupim,Petroupec", + "isMetro": false, + "latitude": 14.759732, + "longitude": 49.811436, + "stopId": "U7809" + }, + { + "id": "U7809Z2", + "name": "Petroupim,Petroupec", + "isMetro": false, + "latitude": 14.759685, + "longitude": 49.811497, + "stopId": "U7809" + }, + { + "id": "U780Z1", + "name": "U Křížku", + "isMetro": false, + "latitude": 14.356596, + "longitude": 50.016022, + "stopId": "U780" + }, + { + "id": "U780Z2", + "name": "U Křížku", + "isMetro": false, + "latitude": 14.356824, + "longitude": 50.015938, + "stopId": "U780" + }, + { + "id": "U7810Z1", + "name": "Petroupim,Sembratec", + "isMetro": false, + "latitude": 14.771908, + "longitude": 49.810726, + "stopId": "U7810" + }, + { + "id": "U7810Z2", + "name": "Petroupim,Sembratec", + "isMetro": false, + "latitude": 14.771771, + "longitude": 49.810806, + "stopId": "U7810" + }, + { + "id": "U7811Z1", + "name": "Petrovice", + "isMetro": false, + "latitude": 14.337247, + "longitude": 49.554066, + "stopId": "U7811" + }, + { + "id": "U7813Z1", + "name": "Petrovice,Žemličkova Lhota,rozc.Obděnice", + "isMetro": false, + "latitude": 14.355966, + "longitude": 49.560974, + "stopId": "U7813" + }, + { + "id": "U7815Z1", + "name": "Petrovice,Žemličkova Lhota", + "isMetro": false, + "latitude": 14.361877, + "longitude": 49.56535, + "stopId": "U7815" + }, + { + "id": "U7815Z2", + "name": "Petrovice,Žemličkova Lhota", + "isMetro": false, + "latitude": 14.362083, + "longitude": 49.565643, + "stopId": "U7815" + }, + { + "id": "U7816Z1", + "name": "Petrovice,Kojetín", + "isMetro": false, + "latitude": 14.347518, + "longitude": 49.543629, + "stopId": "U7816" + }, + { + "id": "U7816Z2", + "name": "Petrovice,Kojetín", + "isMetro": false, + "latitude": 14.347623, + "longitude": 49.543602, + "stopId": "U7816" + }, + { + "id": "U781Z1", + "name": "U Ladronky", + "isMetro": false, + "latitude": 14.361796, + "longitude": 50.079899, + "stopId": "U781" + }, + { + "id": "U781Z2", + "name": "U Ladronky", + "isMetro": false, + "latitude": 14.362394, + "longitude": 50.079838, + "stopId": "U781" + }, + { + "id": "U7820Z1", + "name": "Petrovice,Mašov,rozc.", + "isMetro": false, + "latitude": 14.350888, + "longitude": 49.536819, + "stopId": "U7820" + }, + { + "id": "U7820Z2", + "name": "Petrovice,Mašov,rozc.", + "isMetro": false, + "latitude": 14.350997, + "longitude": 49.536858, + "stopId": "U7820" + }, + { + "id": "U7828Z1", + "name": "Petrovice,Vilasova Lhota", + "isMetro": false, + "latitude": 14.353432, + "longitude": 49.557392, + "stopId": "U7828" + }, + { + "id": "U7828Z2", + "name": "Petrovice,Vilasova Lhota", + "isMetro": false, + "latitude": 14.353602, + "longitude": 49.557346, + "stopId": "U7828" + }, + { + "id": "U782Z1", + "name": "U Lesíka", + "isMetro": false, + "latitude": 14.358117, + "longitude": 50.064449, + "stopId": "U782" + }, + { + "id": "U782Z2", + "name": "U Lesíka", + "isMetro": false, + "latitude": 14.359034, + "longitude": 50.064968, + "stopId": "U782" + }, + { + "id": "U7831Z1", + "name": "Benešov,Hráského", + "isMetro": false, + "latitude": 14.694308, + "longitude": 49.779575, + "stopId": "U7831" + }, + { + "id": "U7831Z2", + "name": "Benešov,Hráského", + "isMetro": false, + "latitude": 14.694181, + "longitude": 49.779484, + "stopId": "U7831" + }, + { + "id": "U7836Z1", + "name": "Benešov,Na Chmelnici", + "isMetro": false, + "latitude": 14.695887, + "longitude": 49.78101, + "stopId": "U7836" + }, + { + "id": "U7836Z2", + "name": "Benešov,Na Chmelnici", + "isMetro": false, + "latitude": 14.695984, + "longitude": 49.780972, + "stopId": "U7836" + }, + { + "id": "U7838Z1", + "name": "Počepice", + "isMetro": false, + "latitude": 14.382166, + "longitude": 49.59557, + "stopId": "U7838" + }, + { + "id": "U7838Z2", + "name": "Počepice", + "isMetro": false, + "latitude": 14.382344, + "longitude": 49.595379, + "stopId": "U7838" + }, + { + "id": "U7839Z2", + "name": "Počepice,hřiště", + "isMetro": false, + "latitude": 14.383534, + "longitude": 49.597748, + "stopId": "U7839" + }, + { + "id": "U783Z1", + "name": "U Libušské sokolovny", + "isMetro": false, + "latitude": 14.464534, + "longitude": 50.004452, + "stopId": "U783" + }, + { + "id": "U783Z2", + "name": "U Libušské sokolovny", + "isMetro": false, + "latitude": 14.464168, + "longitude": 50.00515, + "stopId": "U783" + }, + { + "id": "U7840Z2", + "name": "Počepice,Rovina", + "isMetro": false, + "latitude": 14.404634, + "longitude": 49.602203, + "stopId": "U7840" + }, + { + "id": "U7841Z2", + "name": "Počepice,Rovina,Veselíčko", + "isMetro": false, + "latitude": 14.404092, + "longitude": 49.589241, + "stopId": "U7841" + }, + { + "id": "U7842Z1", + "name": "Počepice,Oukřtalov", + "isMetro": false, + "latitude": 14.379086, + "longitude": 49.584484, + "stopId": "U7842" + }, + { + "id": "U7842Z2", + "name": "Počepice,Oukřtalov", + "isMetro": false, + "latitude": 14.379174, + "longitude": 49.584484, + "stopId": "U7842" + }, + { + "id": "U784Z1", + "name": "U Lípy", + "isMetro": false, + "latitude": 14.494118, + "longitude": 50.053085, + "stopId": "U784" + }, + { + "id": "U784Z2", + "name": "U Lípy", + "isMetro": false, + "latitude": 14.494384, + "longitude": 50.053085, + "stopId": "U784" + }, + { + "id": "U784Z3", + "name": "U Lípy", + "isMetro": false, + "latitude": 14.494788, + "longitude": 50.051514, + "stopId": "U784" + }, + { + "id": "U784Z4", + "name": "U Lípy", + "isMetro": false, + "latitude": 14.494496, + "longitude": 50.051311, + "stopId": "U784" + }, + { + "id": "U7850Z1", + "name": "Postupice,rest.", + "isMetro": false, + "latitude": 14.779263, + "longitude": 49.727402, + "stopId": "U7850" + }, + { + "id": "U7850Z2", + "name": "Postupice,rest.", + "isMetro": false, + "latitude": 14.779191, + "longitude": 49.727329, + "stopId": "U7850" + }, + { + "id": "U7852Z1", + "name": "Postupice,Čelivo", + "isMetro": false, + "latitude": 14.801933, + "longitude": 49.692459, + "stopId": "U7852" + }, + { + "id": "U7852Z2", + "name": "Postupice,Čelivo", + "isMetro": false, + "latitude": 14.801861, + "longitude": 49.692432, + "stopId": "U7852" + }, + { + "id": "U7855Z1", + "name": "Postupice,Dobříčkov,rozc.", + "isMetro": false, + "latitude": 14.764688, + "longitude": 49.755165, + "stopId": "U7855" + }, + { + "id": "U7855Z2", + "name": "Postupice,Dobříčkov,rozc.", + "isMetro": false, + "latitude": 14.764562, + "longitude": 49.7551, + "stopId": "U7855" + }, + { + "id": "U7856Z1", + "name": "Postupice,Jemniště,rozc.", + "isMetro": false, + "latitude": 14.778885, + "longitude": 49.749561, + "stopId": "U7856" + }, + { + "id": "U7856Z2", + "name": "Postupice,Jemniště,rozc.", + "isMetro": false, + "latitude": 14.778682, + "longitude": 49.749622, + "stopId": "U7856" + }, + { + "id": "U7857Z1", + "name": "Postupice,Jemniště,u zámku", + "isMetro": false, + "latitude": 14.787564, + "longitude": 49.742054, + "stopId": "U7857" + }, + { + "id": "U7857Z2", + "name": "Postupice,Jemniště,u zámku", + "isMetro": false, + "latitude": 14.787539, + "longitude": 49.741959, + "stopId": "U7857" + }, + { + "id": "U7859Z1", + "name": "Postupice,Milovanice", + "isMetro": false, + "latitude": 14.789965, + "longitude": 49.714561, + "stopId": "U7859" + }, + { + "id": "U7859Z2", + "name": "Postupice,Milovanice", + "isMetro": false, + "latitude": 14.78988, + "longitude": 49.714523, + "stopId": "U7859" + }, + { + "id": "U785Z1", + "name": "U Lomů", + "isMetro": false, + "latitude": 14.339047, + "longitude": 49.996796, + "stopId": "U785" + }, + { + "id": "U785Z2", + "name": "U Lomů", + "isMetro": false, + "latitude": 14.338927, + "longitude": 49.997108, + "stopId": "U785" + }, + { + "id": "U7865Z1", + "name": "Postupice,Suchdol", + "isMetro": false, + "latitude": 14.797832, + "longitude": 49.708267, + "stopId": "U7865" + }, + { + "id": "U7865Z2", + "name": "Postupice,Suchdol", + "isMetro": false, + "latitude": 14.797764, + "longitude": 49.708241, + "stopId": "U7865" + }, + { + "id": "U7866Z1", + "name": "Pravonín", + "isMetro": false, + "latitude": 14.943913, + "longitude": 49.635899, + "stopId": "U7866" + }, + { + "id": "U7867Z2", + "name": "Pravonín,háj.", + "isMetro": false, + "latitude": 14.953204, + "longitude": 49.647118, + "stopId": "U7867" + }, + { + "id": "U7868Z1", + "name": "Pravonín,u Kubů", + "isMetro": false, + "latitude": 14.963897, + "longitude": 49.629848, + "stopId": "U7868" + }, + { + "id": "U7868Z2", + "name": "Pravonín,u Kubů", + "isMetro": false, + "latitude": 14.963793, + "longitude": 49.629795, + "stopId": "U7868" + }, + { + "id": "U7869Z1", + "name": "Pravonín,Buková", + "isMetro": false, + "latitude": 14.948461, + "longitude": 49.616093, + "stopId": "U7869" + }, + { + "id": "U7869Z2", + "name": "Pravonín,Buková", + "isMetro": false, + "latitude": 14.948291, + "longitude": 49.6161, + "stopId": "U7869" + }, + { + "id": "U786Z1", + "name": "K Fialce", + "isMetro": false, + "latitude": 14.329367, + "longitude": 50.055885, + "stopId": "U786" + }, + { + "id": "U786Z2", + "name": "K Fialce", + "isMetro": false, + "latitude": 14.329547, + "longitude": 50.055553, + "stopId": "U786" + }, + { + "id": "U7870Z1", + "name": "Pravonín,Karhule", + "isMetro": false, + "latitude": 14.900723, + "longitude": 49.63456, + "stopId": "U7870" + }, + { + "id": "U7870Z2", + "name": "Pravonín,Karhule", + "isMetro": false, + "latitude": 14.900616, + "longitude": 49.634483, + "stopId": "U7870" + }, + { + "id": "U7871Z1", + "name": "Pravonín,Křížov", + "isMetro": false, + "latitude": 14.894951, + "longitude": 49.642719, + "stopId": "U7871" + }, + { + "id": "U7871Z2", + "name": "Pravonín,Křížov", + "isMetro": false, + "latitude": 14.894619, + "longitude": 49.6427, + "stopId": "U7871" + }, + { + "id": "U7872Z1", + "name": "Pravonín,Lesáky", + "isMetro": false, + "latitude": 14.877074, + "longitude": 49.625874, + "stopId": "U7872" + }, + { + "id": "U7872Z2", + "name": "Pravonín,Lesáky", + "isMetro": false, + "latitude": 14.877031, + "longitude": 49.626133, + "stopId": "U7872" + }, + { + "id": "U7873Z1", + "name": "Pravonín,Tisek", + "isMetro": false, + "latitude": 14.954342, + "longitude": 49.621925, + "stopId": "U7873" + }, + { + "id": "U7873Z2", + "name": "Pravonín,Tisek", + "isMetro": false, + "latitude": 14.954143, + "longitude": 49.621868, + "stopId": "U7873" + }, + { + "id": "U7874Z1", + "name": "Pravonín,Volavka", + "isMetro": false, + "latitude": 14.903211, + "longitude": 49.62999, + "stopId": "U7874" + }, + { + "id": "U7874Z2", + "name": "Pravonín,Volavka", + "isMetro": false, + "latitude": 14.903149, + "longitude": 49.629875, + "stopId": "U7874" + }, + { + "id": "U787Z1", + "name": "U Matěje", + "isMetro": false, + "latitude": 14.379901, + "longitude": 50.112202, + "stopId": "U787" + }, + { + "id": "U787Z2", + "name": "U Matěje", + "isMetro": false, + "latitude": 14.380151, + "longitude": 50.112267, + "stopId": "U787" + }, + { + "id": "U7881Z1", + "name": "Přestavlky u Čerčan", + "isMetro": false, + "latitude": 14.743536, + "longitude": 49.852654, + "stopId": "U7881" + }, + { + "id": "U7881Z2", + "name": "Přestavlky u Čerčan", + "isMetro": false, + "latitude": 14.743479, + "longitude": 49.852577, + "stopId": "U7881" + }, + { + "id": "U7882Z1", + "name": "Přestavlky u Čerčan,Borka rozc.", + "isMetro": false, + "latitude": 14.726084, + "longitude": 49.852055, + "stopId": "U7882" + }, + { + "id": "U7882Z2", + "name": "Přestavlky u Čerčan,Borka rozc.", + "isMetro": false, + "latitude": 14.726126, + "longitude": 49.852009, + "stopId": "U7882" + }, + { + "id": "U7883Z1", + "name": "Přestavlky u Čerčan,Čistec,rozc.", + "isMetro": false, + "latitude": 14.751019, + "longitude": 49.84111, + "stopId": "U7883" + }, + { + "id": "U7883Z2", + "name": "Přestavlky u Čerčan,Čistec,rozc.", + "isMetro": false, + "latitude": 14.750927, + "longitude": 49.84111, + "stopId": "U7883" + }, + { + "id": "U7884Z1", + "name": "Příbram,Jesenice", + "isMetro": false, + "latitude": 14.046535, + "longitude": 49.656815, + "stopId": "U7884" + }, + { + "id": "U7884Z2", + "name": "Příbram,Jesenice", + "isMetro": false, + "latitude": 14.046492, + "longitude": 49.65694, + "stopId": "U7884" + }, + { + "id": "U7885Z1", + "name": "Příbram,Jestřabinec", + "isMetro": false, + "latitude": 14.026775, + "longitude": 49.670681, + "stopId": "U7885" + }, + { + "id": "U7885Z2", + "name": "Příbram,Jestřabinec", + "isMetro": false, + "latitude": 14.027129, + "longitude": 49.670502, + "stopId": "U7885" + }, + { + "id": "U7886Z1", + "name": "Příbram,Brod,DIAMO", + "isMetro": false, + "latitude": 14.019534, + "longitude": 49.657013, + "stopId": "U7886" + }, + { + "id": "U7886Z2", + "name": "Příbram,Brod,DIAMO", + "isMetro": false, + "latitude": 14.019195, + "longitude": 49.657566, + "stopId": "U7886" + }, + { + "id": "U7887Z1", + "name": "Příbram,Brod", + "isMetro": false, + "latitude": 14.014867, + "longitude": 49.660957, + "stopId": "U7887" + }, + { + "id": "U7887Z2", + "name": "Příbram,Brod", + "isMetro": false, + "latitude": 14.013708, + "longitude": 49.661983, + "stopId": "U7887" + }, + { + "id": "U7888Z1", + "name": "Příbram,Jerusalem", + "isMetro": false, + "latitude": 14.035355, + "longitude": 49.662216, + "stopId": "U7888" + }, + { + "id": "U7888Z2", + "name": "Příbram,Jerusalem", + "isMetro": false, + "latitude": 14.035704, + "longitude": 49.662033, + "stopId": "U7888" + }, + { + "id": "U7889Z1", + "name": "Příčovy", + "isMetro": false, + "latitude": 14.391549, + "longitude": 49.672058, + "stopId": "U7889" + }, + { + "id": "U7889Z2", + "name": "Příčovy", + "isMetro": false, + "latitude": 14.391593, + "longitude": 49.671833, + "stopId": "U7889" + }, + { + "id": "U788Z1", + "name": "U Měchurky", + "isMetro": false, + "latitude": 14.377917, + "longitude": 50.064568, + "stopId": "U788" + }, + { + "id": "U788Z2", + "name": "U Měchurky", + "isMetro": false, + "latitude": 14.378551, + "longitude": 50.064835, + "stopId": "U788" + }, + { + "id": "U7890Z1", + "name": "Příčovy,rozc.", + "isMetro": false, + "latitude": 14.382854, + "longitude": 49.663601, + "stopId": "U7890" + }, + { + "id": "U7890Z3", + "name": "Příčovy,rozc.", + "isMetro": false, + "latitude": 14.384044, + "longitude": 49.663692, + "stopId": "U7890" + }, + { + "id": "U7891Z1", + "name": "Radětice", + "isMetro": false, + "latitude": 14.078285, + "longitude": 49.639999, + "stopId": "U7891" + }, + { + "id": "U7891Z2", + "name": "Radětice", + "isMetro": false, + "latitude": 14.078005, + "longitude": 49.640099, + "stopId": "U7891" + }, + { + "id": "U7892Z1", + "name": "Radětice,Palivo", + "isMetro": false, + "latitude": 14.068924, + "longitude": 49.643284, + "stopId": "U7892" + }, + { + "id": "U7892Z2", + "name": "Radětice,Palivo", + "isMetro": false, + "latitude": 14.068914, + "longitude": 49.643414, + "stopId": "U7892" + }, + { + "id": "U7893Z1", + "name": "Radošovice", + "isMetro": false, + "latitude": 14.868131, + "longitude": 49.740936, + "stopId": "U7893" + }, + { + "id": "U7893Z2", + "name": "Radošovice", + "isMetro": false, + "latitude": 14.868119, + "longitude": 49.740864, + "stopId": "U7893" + }, + { + "id": "U7899Z10", + "name": "Rožmitál p.Tř.,aut.st.", + "isMetro": false, + "latitude": 13.865087, + "longitude": 49.604538, + "stopId": "U7899" + }, + { + "id": "U7899Z2", + "name": "Rožmitál p.Tř.,aut.st.", + "isMetro": false, + "latitude": 13.864902, + "longitude": 49.604816, + "stopId": "U7899" + }, + { + "id": "U7899Z3", + "name": "Rožmitál p.Tř.,aut.st.", + "isMetro": false, + "latitude": 13.865135, + "longitude": 49.60487, + "stopId": "U7899" + }, + { + "id": "U7899Z9", + "name": "Rožmitál p.Tř.,aut.st.", + "isMetro": false, + "latitude": 13.865328, + "longitude": 49.604591, + "stopId": "U7899" + }, + { + "id": "U789Z1", + "name": "U Památníku", + "isMetro": false, + "latitude": 14.446676, + "longitude": 50.086658, + "stopId": "U789" + }, + { + "id": "U789Z2", + "name": "U Památníku", + "isMetro": false, + "latitude": 14.445134, + "longitude": 50.086918, + "stopId": "U789" + }, + { + "id": "U78Z1", + "name": "Ládví", + "isMetro": false, + "latitude": 14.470141, + "longitude": 50.126484, + "stopId": "U78" + }, + { + "id": "U78Z101", + "name": "Ládví", + "isMetro": true, + "latitude": 14.46959, + "longitude": 50.126587, + "stopId": "U78" + }, + { + "id": "U78Z102", + "name": "Ládví", + "isMetro": true, + "latitude": 14.469566, + "longitude": 50.126687, + "stopId": "U78" + }, + { + "id": "U78Z2", + "name": "Ládví", + "isMetro": false, + "latitude": 14.470993, + "longitude": 50.126503, + "stopId": "U78" + }, + { + "id": "U78Z3", + "name": "Ládví", + "isMetro": false, + "latitude": 14.470226, + "longitude": 50.126629, + "stopId": "U78" + }, + { + "id": "U78Z4", + "name": "Ládví", + "isMetro": false, + "latitude": 14.469769, + "longitude": 50.126255, + "stopId": "U78" + }, + { + "id": "U78Z5", + "name": "Ládví", + "isMetro": false, + "latitude": 14.469287, + "longitude": 50.126217, + "stopId": "U78" + }, + { + "id": "U78Z6", + "name": "Ládví", + "isMetro": false, + "latitude": 14.468816, + "longitude": 50.126186, + "stopId": "U78" + }, + { + "id": "U7900Z1", + "name": "Rožmitál p.Tř.,křiž.", + "isMetro": false, + "latitude": 13.876185, + "longitude": 49.603962, + "stopId": "U7900" + }, + { + "id": "U7900Z2", + "name": "Rožmitál p.Tř.,křiž.", + "isMetro": false, + "latitude": 13.876395, + "longitude": 49.603397, + "stopId": "U7900" + }, + { + "id": "U7901Z1", + "name": "Rožmitál p.Tř.,hasičárna", + "isMetro": false, + "latitude": 13.871081, + "longitude": 49.600121, + "stopId": "U7901" + }, + { + "id": "U7901Z2", + "name": "Rožmitál p.Tř.,hasičárna", + "isMetro": false, + "latitude": 13.871306, + "longitude": 49.600105, + "stopId": "U7901" + }, + { + "id": "U7904Z1", + "name": "Rožmitál p.Tř.,Pňovice", + "isMetro": false, + "latitude": 13.912776, + "longitude": 49.589382, + "stopId": "U7904" + }, + { + "id": "U7904Z2", + "name": "Rožmitál p.Tř.,Pňovice", + "isMetro": false, + "latitude": 13.912528, + "longitude": 49.589504, + "stopId": "U7904" + }, + { + "id": "U7905Z1", + "name": "Rožmitál p.Tř.,Pňovice,Podhora", + "isMetro": false, + "latitude": 13.897844, + "longitude": 49.592175, + "stopId": "U7905" + }, + { + "id": "U7905Z2", + "name": "Rožmitál p.Tř.,Pňovice,Podhora", + "isMetro": false, + "latitude": 13.897347, + "longitude": 49.592274, + "stopId": "U7905" + }, + { + "id": "U7906Z1", + "name": "Rožmitál p.Tř.,Starý Rožmitál", + "isMetro": false, + "latitude": 13.852071, + "longitude": 49.607475, + "stopId": "U7906" + }, + { + "id": "U7906Z2", + "name": "Rožmitál p.Tř.,Starý Rožmitál", + "isMetro": false, + "latitude": 13.851809, + "longitude": 49.607613, + "stopId": "U7906" + }, + { + "id": "U790Z1", + "name": "Ke Klíčovu", + "isMetro": false, + "latitude": 14.506455, + "longitude": 50.112747, + "stopId": "U790" + }, + { + "id": "U790Z2", + "name": "Ke Klíčovu", + "isMetro": false, + "latitude": 14.505085, + "longitude": 50.112762, + "stopId": "U790" + }, + { + "id": "U7911Z1", + "name": "Rybníky", + "isMetro": false, + "latitude": 14.203955, + "longitude": 49.752876, + "stopId": "U7911" + }, + { + "id": "U7911Z2", + "name": "Rybníky", + "isMetro": false, + "latitude": 14.203944, + "longitude": 49.75293, + "stopId": "U7911" + }, + { + "id": "U7915Z1", + "name": "Sázava,Bělokozly", + "isMetro": false, + "latitude": 14.900717, + "longitude": 49.849964, + "stopId": "U7915" + }, + { + "id": "U7915Z2", + "name": "Sázava,Bělokozly", + "isMetro": false, + "latitude": 14.900617, + "longitude": 49.849903, + "stopId": "U7915" + }, + { + "id": "U7916Z1", + "name": "Sázava,Bělokozly,Trucovna", + "isMetro": false, + "latitude": 14.899071, + "longitude": 49.854874, + "stopId": "U7916" + }, + { + "id": "U7916Z2", + "name": "Sázava,Bělokozly,Trucovna", + "isMetro": false, + "latitude": 14.898984, + "longitude": 49.854805, + "stopId": "U7916" + }, + { + "id": "U791Z1", + "name": "Čakovický zámek", + "isMetro": false, + "latitude": 14.521684, + "longitude": 50.151669, + "stopId": "U791" + }, + { + "id": "U791Z2", + "name": "Čakovický zámek", + "isMetro": false, + "latitude": 14.521351, + "longitude": 50.151699, + "stopId": "U791" + }, + { + "id": "U7924Z1", + "name": "Sedlčany,Sedlecká", + "isMetro": false, + "latitude": 14.425923, + "longitude": 49.654877, + "stopId": "U7924" + }, + { + "id": "U7924Z2", + "name": "Sedlčany,Sedlecká", + "isMetro": false, + "latitude": 14.426003, + "longitude": 49.654957, + "stopId": "U7924" + }, + { + "id": "U7925Z51", + "name": "Sedlčany,kulturní dům", + "isMetro": false, + "latitude": 14.418981, + "longitude": 49.662022, + "stopId": "U7925" + }, + { + "id": "U7925Z52", + "name": "Sedlčany,kulturní dům", + "isMetro": false, + "latitude": 14.418943, + "longitude": 49.661823, + "stopId": "U7925" + }, + { + "id": "U7926Z1", + "name": "Sedlčany,KDS", + "isMetro": false, + "latitude": 14.428807, + "longitude": 49.651039, + "stopId": "U7926" + }, + { + "id": "U7926Z2", + "name": "Sedlčany,KDS", + "isMetro": false, + "latitude": 14.42844, + "longitude": 49.651772, + "stopId": "U7926" + }, + { + "id": "U792Z1", + "name": "Dubeč", + "isMetro": false, + "latitude": 14.596134, + "longitude": 50.06176, + "stopId": "U792" + }, + { + "id": "U792Z2", + "name": "Dubeč", + "isMetro": false, + "latitude": 14.596812, + "longitude": 50.061783, + "stopId": "U792" + }, + { + "id": "U792Z3", + "name": "Dubeč", + "isMetro": false, + "latitude": 14.596651, + "longitude": 50.061924, + "stopId": "U792" + }, + { + "id": "U7930Z1", + "name": "Sedlčany,Doubravice,rozc.", + "isMetro": false, + "latitude": 14.433944, + "longitude": 49.640293, + "stopId": "U7930" + }, + { + "id": "U7930Z2", + "name": "Sedlčany,Doubravice,rozc.", + "isMetro": false, + "latitude": 14.434099, + "longitude": 49.640247, + "stopId": "U7930" + }, + { + "id": "U7932Z1", + "name": "Sedlčany,Libíň", + "isMetro": false, + "latitude": 14.424158, + "longitude": 49.625904, + "stopId": "U7932" + }, + { + "id": "U7932Z2", + "name": "Sedlčany,Libíň", + "isMetro": false, + "latitude": 14.42431, + "longitude": 49.625923, + "stopId": "U7932" + }, + { + "id": "U7933Z1", + "name": "Sedlčany,Libíň,Klimětice", + "isMetro": false, + "latitude": 14.432413, + "longitude": 49.633305, + "stopId": "U7933" + }, + { + "id": "U7933Z2", + "name": "Sedlčany,Libíň,Klimětice", + "isMetro": false, + "latitude": 14.432488, + "longitude": 49.633282, + "stopId": "U7933" + }, + { + "id": "U7933Z3", + "name": "Sedlčany,Libíň,Klimětice", + "isMetro": false, + "latitude": 14.432993, + "longitude": 49.633305, + "stopId": "U7933" + }, + { + "id": "U7933Z4", + "name": "Sedlčany,Libíň,Klimětice", + "isMetro": false, + "latitude": 14.433025, + "longitude": 49.633419, + "stopId": "U7933" + }, + { + "id": "U7935Z1", + "name": "Sedlčany,Roudný", + "isMetro": false, + "latitude": 14.423725, + "longitude": 49.675465, + "stopId": "U7935" + }, + { + "id": "U7935Z2", + "name": "Sedlčany,Roudný", + "isMetro": false, + "latitude": 14.423904, + "longitude": 49.675549, + "stopId": "U7935" + }, + { + "id": "U7938Z1", + "name": "Sedlčany,Sestrouň,rozc.", + "isMetro": false, + "latitude": 14.430085, + "longitude": 49.686481, + "stopId": "U7938" + }, + { + "id": "U7938Z2", + "name": "Sedlčany,Sestrouň,rozc.", + "isMetro": false, + "latitude": 14.430267, + "longitude": 49.686462, + "stopId": "U7938" + }, + { + "id": "U7939Z1", + "name": "Sedlčany,Solopysky", + "isMetro": false, + "latitude": 14.383606, + "longitude": 49.654072, + "stopId": "U7939" + }, + { + "id": "U7939Z2", + "name": "Sedlčany,Solopysky", + "isMetro": false, + "latitude": 14.383638, + "longitude": 49.653965, + "stopId": "U7939" + }, + { + "id": "U793Z1", + "name": "Škola Štěrboholy", + "isMetro": false, + "latitude": 14.552627, + "longitude": 50.072117, + "stopId": "U793" + }, + { + "id": "U793Z2", + "name": "Škola Štěrboholy", + "isMetro": false, + "latitude": 14.552763, + "longitude": 50.072247, + "stopId": "U793" + }, + { + "id": "U7942Z1", + "name": "Sedlčany,Třebnice,Štíleček", + "isMetro": false, + "latitude": 14.346715, + "longitude": 49.646751, + "stopId": "U7942" + }, + { + "id": "U7942Z2", + "name": "Sedlčany,Třebnice,Štíleček", + "isMetro": false, + "latitude": 14.346878, + "longitude": 49.646736, + "stopId": "U7942" + }, + { + "id": "U7943Z1", + "name": "Sedlčany,Třebnice", + "isMetro": false, + "latitude": 14.35886, + "longitude": 49.65134, + "stopId": "U7943" + }, + { + "id": "U7943Z2", + "name": "Sedlčany,Třebnice", + "isMetro": false, + "latitude": 14.358816, + "longitude": 49.651249, + "stopId": "U7943" + }, + { + "id": "U794Z1", + "name": "Štěrboholy", + "isMetro": false, + "latitude": 14.550284, + "longitude": 50.071651, + "stopId": "U794" + }, + { + "id": "U794Z2", + "name": "Štěrboholy", + "isMetro": false, + "latitude": 14.550559, + "longitude": 50.071926, + "stopId": "U794" + }, + { + "id": "U7950Z1", + "name": "Sedlec-Prčice,Měšetice", + "isMetro": false, + "latitude": 14.518655, + "longitude": 49.582596, + "stopId": "U7950" + }, + { + "id": "U7950Z2", + "name": "Sedlec-Prčice,Měšetice", + "isMetro": false, + "latitude": 14.518744, + "longitude": 49.582642, + "stopId": "U7950" + }, + { + "id": "U7953Z1", + "name": "Sedlec-Prčice,Sušetice", + "isMetro": false, + "latitude": 14.506955, + "longitude": 49.560562, + "stopId": "U7953" + }, + { + "id": "U7953Z2", + "name": "Sedlec-Prčice,Sušetice", + "isMetro": false, + "latitude": 14.50695, + "longitude": 49.560513, + "stopId": "U7953" + }, + { + "id": "U7954Z1", + "name": "Sedlec-Prčice,Veletín,rozc.", + "isMetro": false, + "latitude": 14.489358, + "longitude": 49.554218, + "stopId": "U7954" + }, + { + "id": "U7954Z2", + "name": "Sedlec-Prčice,Veletín,rozc.", + "isMetro": false, + "latitude": 14.489447, + "longitude": 49.554203, + "stopId": "U7954" + }, + { + "id": "U7956Z1", + "name": "Slověnice", + "isMetro": false, + "latitude": 14.885218, + "longitude": 49.757305, + "stopId": "U7956" + }, + { + "id": "U7956Z2", + "name": "Slověnice", + "isMetro": false, + "latitude": 14.885221, + "longitude": 49.75737, + "stopId": "U7956" + }, + { + "id": "U7957Z1", + "name": "Slověnice,raketárna", + "isMetro": false, + "latitude": 14.883674, + "longitude": 49.770226, + "stopId": "U7957" + }, + { + "id": "U7957Z2", + "name": "Slověnice,raketárna", + "isMetro": false, + "latitude": 14.883313, + "longitude": 49.770061, + "stopId": "U7957" + }, + { + "id": "U795Z1", + "name": "U Spojů", + "isMetro": false, + "latitude": 14.475151, + "longitude": 50.145618, + "stopId": "U795" + }, + { + "id": "U795Z2", + "name": "U Spojů", + "isMetro": false, + "latitude": 14.4754, + "longitude": 50.145718, + "stopId": "U795" + }, + { + "id": "U7961Z1", + "name": "Soběhrdy", + "isMetro": false, + "latitude": 14.734676, + "longitude": 49.821087, + "stopId": "U7961" + }, + { + "id": "U7961Z2", + "name": "Soběhrdy", + "isMetro": false, + "latitude": 14.734692, + "longitude": 49.82119, + "stopId": "U7961" + }, + { + "id": "U7962Z1", + "name": "Soběhrdy,Mezihoří", + "isMetro": false, + "latitude": 14.733189, + "longitude": 49.8353, + "stopId": "U7962" + }, + { + "id": "U7963Z1", + "name": "Soběhrdy,Mezihoří,rozc.", + "isMetro": false, + "latitude": 14.749535, + "longitude": 49.834816, + "stopId": "U7963" + }, + { + "id": "U7963Z2", + "name": "Soběhrdy,Mezihoří,rozc.", + "isMetro": false, + "latitude": 14.749628, + "longitude": 49.834843, + "stopId": "U7963" + }, + { + "id": "U7964Z1", + "name": "Soběhrdy,u hřbitova", + "isMetro": false, + "latitude": 14.743327, + "longitude": 49.823605, + "stopId": "U7964" + }, + { + "id": "U7964Z2", + "name": "Soběhrdy,u hřbitova", + "isMetro": false, + "latitude": 14.743279, + "longitude": 49.8237, + "stopId": "U7964" + }, + { + "id": "U7965Z1", + "name": "Soběhrdy,Žíňany,rozc.", + "isMetro": false, + "latitude": 14.721643, + "longitude": 49.815556, + "stopId": "U7965" + }, + { + "id": "U7965Z2", + "name": "Soběhrdy,Žíňany,rozc.", + "isMetro": false, + "latitude": 14.721582, + "longitude": 49.815609, + "stopId": "U7965" + }, + { + "id": "U7966Z51", + "name": "Solenice", + "isMetro": false, + "latitude": 14.188709, + "longitude": 49.611073, + "stopId": "U7966" + }, + { + "id": "U7967Z1", + "name": "Solenice,Dolní Líšnice", + "isMetro": false, + "latitude": 14.178739, + "longitude": 49.619186, + "stopId": "U7967" + }, + { + "id": "U7967Z2", + "name": "Solenice,Dolní Líšnice", + "isMetro": false, + "latitude": 14.178658, + "longitude": 49.619301, + "stopId": "U7967" + }, + { + "id": "U7968Z1", + "name": "Bohostice,Orlická přehrada", + "isMetro": false, + "latitude": 14.178572, + "longitude": 49.60762, + "stopId": "U7968" + }, + { + "id": "U7968Z2", + "name": "Bohostice,Orlická přehrada", + "isMetro": false, + "latitude": 14.178924, + "longitude": 49.607788, + "stopId": "U7968" + }, + { + "id": "U7969Z1", + "name": "Milešov,Přední Chlum,Popelíky", + "isMetro": false, + "latitude": 14.187772, + "longitude": 49.603809, + "stopId": "U7969" + }, + { + "id": "U7969Z2", + "name": "Milešov,Přední Chlum,Popelíky", + "isMetro": false, + "latitude": 14.189663, + "longitude": 49.602425, + "stopId": "U7969" + }, + { + "id": "U796Z1", + "name": "Na Planině", + "isMetro": false, + "latitude": 14.429567, + "longitude": 50.039494, + "stopId": "U796" + }, + { + "id": "U796Z2", + "name": "Na Planině", + "isMetro": false, + "latitude": 14.43091, + "longitude": 50.039612, + "stopId": "U796" + }, + { + "id": "U7972Z1", + "name": "Soutice,Kalná", + "isMetro": false, + "latitude": 15.072418, + "longitude": 49.71394, + "stopId": "U7972" + }, + { + "id": "U7972Z2", + "name": "Soutice,Kalná", + "isMetro": false, + "latitude": 15.072401, + "longitude": 49.714062, + "stopId": "U7972" + }, + { + "id": "U7974Z1", + "name": "Strojetice", + "isMetro": false, + "latitude": 15.06475, + "longitude": 49.65266, + "stopId": "U7974" + }, + { + "id": "U7974Z2", + "name": "Strojetice", + "isMetro": false, + "latitude": 15.064784, + "longitude": 49.65258, + "stopId": "U7974" + }, + { + "id": "U7975Z1", + "name": "Strojetice,u kovárny", + "isMetro": false, + "latitude": 15.063118, + "longitude": 49.649746, + "stopId": "U7975" + }, + { + "id": "U7975Z2", + "name": "Strojetice,u kovárny", + "isMetro": false, + "latitude": 15.063222, + "longitude": 49.649834, + "stopId": "U7975" + }, + { + "id": "U7976Z1", + "name": "Struhařov", + "isMetro": false, + "latitude": 14.761542, + "longitude": 49.76577, + "stopId": "U7976" + }, + { + "id": "U7976Z2", + "name": "Struhařov", + "isMetro": false, + "latitude": 14.761367, + "longitude": 49.765835, + "stopId": "U7976" + }, + { + "id": "U7979Z1", + "name": "Struhařov,Bořeňovice,rozc.", + "isMetro": false, + "latitude": 14.783001, + "longitude": 49.768665, + "stopId": "U7979" + }, + { + "id": "U7979Z2", + "name": "Struhařov,Bořeňovice,rozc.", + "isMetro": false, + "latitude": 14.782991, + "longitude": 49.76878, + "stopId": "U7979" + }, + { + "id": "U797Z1", + "name": "U Školy", + "isMetro": false, + "latitude": 14.421584, + "longitude": 50.043968, + "stopId": "U797" + }, + { + "id": "U797Z2", + "name": "U Školy", + "isMetro": false, + "latitude": 14.421767, + "longitude": 50.043716, + "stopId": "U797" + }, + { + "id": "U7982Z1", + "name": "Struhařov,Myslíč,rozc.", + "isMetro": false, + "latitude": 14.726621, + "longitude": 49.772923, + "stopId": "U7982" + }, + { + "id": "U7982Z2", + "name": "Struhařov,Myslíč,rozc.", + "isMetro": false, + "latitude": 14.726869, + "longitude": 49.772903, + "stopId": "U7982" + }, + { + "id": "U7983Z1", + "name": "Benešov,Nechyba", + "isMetro": false, + "latitude": 14.737708, + "longitude": 49.76944, + "stopId": "U7983" + }, + { + "id": "U7983Z2", + "name": "Benešov,Nechyba", + "isMetro": false, + "latitude": 14.737895, + "longitude": 49.769554, + "stopId": "U7983" + }, + { + "id": "U7986Z1", + "name": "Struhařov,Střížkov", + "isMetro": false, + "latitude": 14.775927, + "longitude": 49.785648, + "stopId": "U7986" + }, + { + "id": "U7986Z2", + "name": "Struhařov,Střížkov", + "isMetro": false, + "latitude": 14.775867, + "longitude": 49.785664, + "stopId": "U7986" + }, + { + "id": "U7988Z1", + "name": "Struhařov,Věřice", + "isMetro": false, + "latitude": 14.770321, + "longitude": 49.785088, + "stopId": "U7988" + }, + { + "id": "U7988Z2", + "name": "Struhařov,Věřice", + "isMetro": false, + "latitude": 14.770376, + "longitude": 49.785122, + "stopId": "U7988" + }, + { + "id": "U7989Z1", + "name": "Struhařov,Věřice,rozc.", + "isMetro": false, + "latitude": 14.764404, + "longitude": 49.790878, + "stopId": "U7989" + }, + { + "id": "U7989Z2", + "name": "Struhařov,Věřice,rozc.", + "isMetro": false, + "latitude": 14.764362, + "longitude": 49.79092, + "stopId": "U7989" + }, + { + "id": "U798Z1", + "name": "U Továren", + "isMetro": false, + "latitude": 14.539801, + "longitude": 50.056366, + "stopId": "U798" + }, + { + "id": "U798Z2", + "name": "U Továren", + "isMetro": false, + "latitude": 14.540158, + "longitude": 50.056423, + "stopId": "U798" + }, + { + "id": "U7990Z1", + "name": "Studený", + "isMetro": false, + "latitude": 15.128564, + "longitude": 49.608047, + "stopId": "U7990" + }, + { + "id": "U7990Z2", + "name": "Studený", + "isMetro": false, + "latitude": 15.128169, + "longitude": 49.607994, + "stopId": "U7990" + }, + { + "id": "U7991Z1", + "name": "Studený,rozc.", + "isMetro": false, + "latitude": 15.13306, + "longitude": 49.60738, + "stopId": "U7991" + }, + { + "id": "U7991Z2", + "name": "Studený,rozc.", + "isMetro": false, + "latitude": 15.132967, + "longitude": 49.607265, + "stopId": "U7991" + }, + { + "id": "U7992Z1", + "name": "Studený,Petrova Lhota", + "isMetro": false, + "latitude": 15.120887, + "longitude": 49.614235, + "stopId": "U7992" + }, + { + "id": "U7992Z2", + "name": "Studený,Petrova Lhota", + "isMetro": false, + "latitude": 15.120772, + "longitude": 49.614193, + "stopId": "U7992" + }, + { + "id": "U7993Z1", + "name": "Svaté Pole", + "isMetro": false, + "latitude": 14.169558, + "longitude": 49.748089, + "stopId": "U7993" + }, + { + "id": "U7993Z2", + "name": "Svaté Pole", + "isMetro": false, + "latitude": 14.169721, + "longitude": 49.747978, + "stopId": "U7993" + }, + { + "id": "U7994Z1", + "name": "Svaté Pole,Dolní Svaté Pole", + "isMetro": false, + "latitude": 14.168934, + "longitude": 49.757988, + "stopId": "U7994" + }, + { + "id": "U7994Z2", + "name": "Svaté Pole,Dolní Svaté Pole", + "isMetro": false, + "latitude": 14.169124, + "longitude": 49.758141, + "stopId": "U7994" + }, + { + "id": "U7995Z1", + "name": "Svaté Pole,Budínek", + "isMetro": false, + "latitude": 14.192577, + "longitude": 49.757687, + "stopId": "U7995" + }, + { + "id": "U7995Z2", + "name": "Svaté Pole,Budínek", + "isMetro": false, + "latitude": 14.192178, + "longitude": 49.756763, + "stopId": "U7995" + }, + { + "id": "U7996Z1", + "name": "Svatý Jan", + "isMetro": false, + "latitude": 14.311394, + "longitude": 49.636509, + "stopId": "U7996" + }, + { + "id": "U7996Z2", + "name": "Svatý Jan", + "isMetro": false, + "latitude": 14.311377, + "longitude": 49.636459, + "stopId": "U7996" + }, + { + "id": "U7997Z1", + "name": "Svatý Jan,Jedle", + "isMetro": false, + "latitude": 14.307008, + "longitude": 49.640202, + "stopId": "U7997" + }, + { + "id": "U7997Z2", + "name": "Svatý Jan,Jedle", + "isMetro": false, + "latitude": 14.306936, + "longitude": 49.640171, + "stopId": "U7997" + }, + { + "id": "U799Z1", + "name": "U Tří svatých", + "isMetro": false, + "latitude": 14.477955, + "longitude": 50.012321, + "stopId": "U799" + }, + { + "id": "U799Z2", + "name": "U Tří svatých", + "isMetro": false, + "latitude": 14.477235, + "longitude": 50.012192, + "stopId": "U799" + }, + { + "id": "U799Z3", + "name": "U Tří svatých", + "isMetro": false, + "latitude": 14.477256, + "longitude": 50.010975, + "stopId": "U799" + }, + { + "id": "U799Z4", + "name": "U Tří svatých", + "isMetro": false, + "latitude": 14.47723, + "longitude": 50.010712, + "stopId": "U799" + }, + { + "id": "U79Z1", + "name": "Depo Kačerov", + "isMetro": false, + "latitude": 14.470346, + "longitude": 50.045677, + "stopId": "U79" + }, + { + "id": "U79Z2", + "name": "Depo Kačerov", + "isMetro": false, + "latitude": 14.470684, + "longitude": 50.045635, + "stopId": "U79" + }, + { + "id": "U800Z1", + "name": "U Václava", + "isMetro": false, + "latitude": 14.312063, + "longitude": 50.114449, + "stopId": "U800" + }, + { + "id": "U800Z2", + "name": "U Václava", + "isMetro": false, + "latitude": 14.312359, + "longitude": 50.114334, + "stopId": "U800" + }, + { + "id": "U801Z1", + "name": "Nádraží Dolní Počernice", + "isMetro": false, + "latitude": 14.572227, + "longitude": 50.086994, + "stopId": "U801" + }, + { + "id": "U801Z2", + "name": "Nádraží Dolní Počernice", + "isMetro": false, + "latitude": 14.571494, + "longitude": 50.087276, + "stopId": "U801" + }, + { + "id": "U801Z301", + "name": "Praha-Dolní Počernice", + "isMetro": false, + "latitude": 14.569302, + "longitude": 50.08828, + "stopId": "U801" + }, + { + "id": "U802Z1", + "name": "U Včely", + "isMetro": false, + "latitude": 14.387623, + "longitude": 49.96841, + "stopId": "U802" + }, + { + "id": "U802Z2", + "name": "U Včely", + "isMetro": false, + "latitude": 14.388856, + "longitude": 49.96925, + "stopId": "U802" + }, + { + "id": "U802Z3", + "name": "Žabovřeská", + "isMetro": false, + "latitude": 14.385684, + "longitude": 49.970284, + "stopId": "U802" + }, + { + "id": "U803Z1", + "name": "U Vodojemu", + "isMetro": false, + "latitude": 14.527512, + "longitude": 50.12252, + "stopId": "U803" + }, + { + "id": "U803Z2", + "name": "U Vodojemu", + "isMetro": false, + "latitude": 14.527145, + "longitude": 50.122574, + "stopId": "U803" + }, + { + "id": "U804Z1", + "name": "U Zvoničky", + "isMetro": false, + "latitude": 14.46041, + "longitude": 50.01025, + "stopId": "U804" + }, + { + "id": "U804Z2", + "name": "U Zvoničky", + "isMetro": false, + "latitude": 14.460149, + "longitude": 50.010559, + "stopId": "U804" + }, + { + "id": "U805Z1", + "name": "U Zvonu", + "isMetro": false, + "latitude": 14.387218, + "longitude": 50.071541, + "stopId": "U805" + }, + { + "id": "U805Z2", + "name": "U Zvonu", + "isMetro": false, + "latitude": 14.387421, + "longitude": 50.071636, + "stopId": "U805" + }, + { + "id": "U805Z3", + "name": "U Zvonu", + "isMetro": false, + "latitude": 14.387058, + "longitude": 50.071457, + "stopId": "U805" + }, + { + "id": "U806Z1", + "name": "Řepínská", + "isMetro": false, + "latitude": 14.430217, + "longitude": 50.133869, + "stopId": "U806" + }, + { + "id": "U806Z2", + "name": "Řepínská", + "isMetro": false, + "latitude": 14.429874, + "longitude": 50.133163, + "stopId": "U806" + }, + { + "id": "U807Z1", + "name": "Ústřední dílny DP", + "isMetro": false, + "latitude": 14.532352, + "longitude": 50.074291, + "stopId": "U807" + }, + { + "id": "U807Z2", + "name": "Ústřední dílny DP", + "isMetro": false, + "latitude": 14.532234, + "longitude": 50.074711, + "stopId": "U807" + }, + { + "id": "U807Z3", + "name": "Ústřední dílny DP", + "isMetro": false, + "latitude": 14.53242, + "longitude": 50.074657, + "stopId": "U807" + }, + { + "id": "U807Z4", + "name": "Ústřední dílny DP", + "isMetro": false, + "latitude": 14.532196, + "longitude": 50.074379, + "stopId": "U807" + }, + { + "id": "U808Z1", + "name": "Uhříněves", + "isMetro": false, + "latitude": 14.605499, + "longitude": 50.029995, + "stopId": "U808" + }, + { + "id": "U808Z2", + "name": "Uhříněves", + "isMetro": false, + "latitude": 14.602301, + "longitude": 50.029736, + "stopId": "U808" + }, + { + "id": "U808Z5", + "name": "Uhříněves", + "isMetro": false, + "latitude": 14.60677, + "longitude": 50.03056, + "stopId": "U808" + }, + { + "id": "U809Z1", + "name": "Újezd", + "isMetro": false, + "latitude": 14.404444, + "longitude": 50.081676, + "stopId": "U809" + }, + { + "id": "U809Z2", + "name": "Újezd", + "isMetro": false, + "latitude": 14.404652, + "longitude": 50.080536, + "stopId": "U809" + }, + { + "id": "U809Z4", + "name": "Újezd", + "isMetro": false, + "latitude": 14.405181, + "longitude": 50.081249, + "stopId": "U809" + }, + { + "id": "U809Z54", + "name": "Újezd", + "isMetro": false, + "latitude": 14.404962, + "longitude": 50.081142, + "stopId": "U809" + }, + { + "id": "U80Z1", + "name": "Navigátorů", + "isMetro": false, + "latitude": 14.304742, + "longitude": 50.093491, + "stopId": "U80" + }, + { + "id": "U80Z2", + "name": "Navigátorů", + "isMetro": false, + "latitude": 14.303849, + "longitude": 50.093346, + "stopId": "U80" + }, + { + "id": "U80Z3", + "name": "Navigátorů", + "isMetro": false, + "latitude": 14.302942, + "longitude": 50.093628, + "stopId": "U80" + }, + { + "id": "U80Z4", + "name": "Navigátorů", + "isMetro": false, + "latitude": 14.305032, + "longitude": 50.093269, + "stopId": "U80" + }, + { + "id": "U810Z1", + "name": "Újezd u Průhonic", + "isMetro": false, + "latitude": 14.546571, + "longitude": 50.01244, + "stopId": "U810" + }, + { + "id": "U810Z2", + "name": "Újezd u Průhonic", + "isMetro": false, + "latitude": 14.546984, + "longitude": 50.012234, + "stopId": "U810" + }, + { + "id": "U810Z3", + "name": "Újezd u Průhonic", + "isMetro": false, + "latitude": 14.546159, + "longitude": 50.012749, + "stopId": "U810" + }, + { + "id": "U811Z1", + "name": "Újezd nad Lesy", + "isMetro": false, + "latitude": 14.660475, + "longitude": 50.076145, + "stopId": "U811" + }, + { + "id": "U811Z2", + "name": "Újezd nad Lesy", + "isMetro": false, + "latitude": 14.656847, + "longitude": 50.076996, + "stopId": "U811" + }, + { + "id": "U812Z1", + "name": "Formanská", + "isMetro": false, + "latitude": 14.543415, + "longitude": 50.014496, + "stopId": "U812" + }, + { + "id": "U812Z2", + "name": "Formanská", + "isMetro": false, + "latitude": 14.544716, + "longitude": 50.014244, + "stopId": "U812" + }, + { + "id": "U813Z1", + "name": "Ukrajinská", + "isMetro": false, + "latitude": 14.452584, + "longitude": 50.064583, + "stopId": "U813" + }, + { + "id": "U813Z2", + "name": "Ukrajinská", + "isMetro": false, + "latitude": 14.45247, + "longitude": 50.065411, + "stopId": "U813" + }, + { + "id": "U814Z1", + "name": "Elišky Přemyslovny", + "isMetro": false, + "latitude": 14.393113, + "longitude": 49.974941, + "stopId": "U814" + }, + { + "id": "U815Z1", + "name": "Urbanova", + "isMetro": false, + "latitude": 14.3842, + "longitude": 50.062717, + "stopId": "U815" + }, + { + "id": "U815Z2", + "name": "Urbanova", + "isMetro": false, + "latitude": 14.383616, + "longitude": 50.062218, + "stopId": "U815" + }, + { + "id": "U816Z1", + "name": "Urxova", + "isMetro": false, + "latitude": 14.456385, + "longitude": 50.095184, + "stopId": "U816" + }, + { + "id": "U816Z2", + "name": "Urxova", + "isMetro": false, + "latitude": 14.457097, + "longitude": 50.095215, + "stopId": "U816" + }, + { + "id": "U817Z1", + "name": "Správa sociálního zabezpečení", + "isMetro": false, + "latitude": 14.405951, + "longitude": 50.058849, + "stopId": "U817" + }, + { + "id": "U817Z2", + "name": "Správa sociálního zabezpečení", + "isMetro": false, + "latitude": 14.405853, + "longitude": 50.059711, + "stopId": "U817" + }, + { + "id": "U818Z1", + "name": "Rajská zahrada", + "isMetro": false, + "latitude": 14.558551, + "longitude": 50.106167, + "stopId": "U818" + }, + { + "id": "U818Z101", + "name": "Rajská zahrada", + "isMetro": true, + "latitude": 14.560475, + "longitude": 50.106882, + "stopId": "U818" + }, + { + "id": "U818Z102", + "name": "Rajská zahrada", + "isMetro": true, + "latitude": 14.5605, + "longitude": 50.10683, + "stopId": "U818" + }, + { + "id": "U818Z2", + "name": "Rajská zahrada", + "isMetro": false, + "latitude": 14.559907, + "longitude": 50.106403, + "stopId": "U818" + }, + { + "id": "U818Z301", + "name": "Praha-Rajská zahrada", + "isMetro": false, + "latitude": 14.560178, + "longitude": 50.107533, + "stopId": "U818" + }, + { + "id": "U819Z1", + "name": "Ústav mateřství", + "isMetro": false, + "latitude": 14.459924, + "longitude": 50.024532, + "stopId": "U819" + }, + { + "id": "U819Z2", + "name": "Ústav mateřství", + "isMetro": false, + "latitude": 14.460163, + "longitude": 50.024487, + "stopId": "U819" + }, + { + "id": "U81Z1", + "name": "Dělnická", + "isMetro": false, + "latitude": 14.449817, + "longitude": 50.103657, + "stopId": "U81" + }, + { + "id": "U81Z2", + "name": "Dělnická", + "isMetro": false, + "latitude": 14.450039, + "longitude": 50.102634, + "stopId": "U81" + }, + { + "id": "U81Z3", + "name": "Tusarova", + "isMetro": false, + "latitude": 14.450017, + "longitude": 50.100777, + "stopId": "U81" + }, + { + "id": "U820Z1", + "name": "Drobná", + "isMetro": false, + "latitude": 14.55634, + "longitude": 50.07283, + "stopId": "U820" + }, + { + "id": "U820Z2", + "name": "Drobná", + "isMetro": false, + "latitude": 14.556171, + "longitude": 50.072899, + "stopId": "U820" + }, + { + "id": "U821Z1", + "name": "Náměstí Winstona Churchilla", + "isMetro": false, + "latitude": 14.440368, + "longitude": 50.084133, + "stopId": "U821" + }, + { + "id": "U821Z2", + "name": "Náměstí Winstona Churchilla", + "isMetro": false, + "latitude": 14.4404, + "longitude": 50.0839, + "stopId": "U821" + }, + { + "id": "U821Z3", + "name": "Náměstí Winstona Churchilla", + "isMetro": false, + "latitude": 14.44181, + "longitude": 50.084274, + "stopId": "U821" + }, + { + "id": "U822Z1", + "name": "U Háje", + "isMetro": false, + "latitude": 14.422227, + "longitude": 50.041245, + "stopId": "U822" + }, + { + "id": "U822Z2", + "name": "U Háje", + "isMetro": false, + "latitude": 14.418751, + "longitude": 50.043182, + "stopId": "U822" + }, + { + "id": "U823Z1", + "name": "Nad Košíkem", + "isMetro": false, + "latitude": 14.519251, + "longitude": 50.045166, + "stopId": "U823" + }, + { + "id": "U823Z2", + "name": "Nad Košíkem", + "isMetro": false, + "latitude": 14.519151, + "longitude": 50.044849, + "stopId": "U823" + }, + { + "id": "U824Z2", + "name": "V Chotejně", + "isMetro": false, + "latitude": 14.532628, + "longitude": 50.057682, + "stopId": "U824" + }, + { + "id": "U824Z4", + "name": "V Chotejně", + "isMetro": false, + "latitude": 14.534229, + "longitude": 50.058544, + "stopId": "U824" + }, + { + "id": "U825Z1", + "name": "V Korytech", + "isMetro": false, + "latitude": 14.488864, + "longitude": 50.054462, + "stopId": "U825" + }, + { + "id": "U825Z2", + "name": "V Korytech", + "isMetro": false, + "latitude": 14.488641, + "longitude": 50.054432, + "stopId": "U825" + }, + { + "id": "U826Z1", + "name": "Březiněves", + "isMetro": false, + "latitude": 14.483897, + "longitude": 50.164692, + "stopId": "U826" + }, + { + "id": "U826Z2", + "name": "Březiněves", + "isMetro": false, + "latitude": 14.483605, + "longitude": 50.164642, + "stopId": "U826" + }, + { + "id": "U827Z1", + "name": "Limuzská", + "isMetro": false, + "latitude": 14.508334, + "longitude": 50.078835, + "stopId": "U827" + }, + { + "id": "U827Z2", + "name": "Limuzská", + "isMetro": false, + "latitude": 14.508202, + "longitude": 50.078575, + "stopId": "U827" + }, + { + "id": "U827Z3", + "name": "Limuzská", + "isMetro": false, + "latitude": 14.50498, + "longitude": 50.077606, + "stopId": "U827" + }, + { + "id": "U827Z4", + "name": "Limuzská", + "isMetro": false, + "latitude": 14.505917, + "longitude": 50.077599, + "stopId": "U827" + }, + { + "id": "U828Z1", + "name": "Venušina", + "isMetro": false, + "latitude": 14.608792, + "longitude": 50.025818, + "stopId": "U828" + }, + { + "id": "U828Z2", + "name": "Venušina", + "isMetro": false, + "latitude": 14.608463, + "longitude": 50.02676, + "stopId": "U828" + }, + { + "id": "U829Z3", + "name": "V Rybníčkách", + "isMetro": false, + "latitude": 14.506914, + "longitude": 50.070557, + "stopId": "U829" + }, + { + "id": "U829Z4", + "name": "V Rybníčkách", + "isMetro": false, + "latitude": 14.507584, + "longitude": 50.070633, + "stopId": "U829" + }, + { + "id": "U82Z1", + "name": "Bílenecké náměstí", + "isMetro": false, + "latitude": 14.442481, + "longitude": 50.149639, + "stopId": "U82" + }, + { + "id": "U82Z2", + "name": "Bílenecké náměstí", + "isMetro": false, + "latitude": 14.4427, + "longitude": 50.14949, + "stopId": "U82" + }, + { + "id": "U830Z1", + "name": "V Sudech", + "isMetro": false, + "latitude": 14.346351, + "longitude": 49.992035, + "stopId": "U830" + }, + { + "id": "U830Z2", + "name": "V Sudech", + "isMetro": false, + "latitude": 14.345638, + "longitude": 49.992451, + "stopId": "U830" + }, + { + "id": "U831Z1", + "name": "V Uličce", + "isMetro": false, + "latitude": 14.395779, + "longitude": 50.041443, + "stopId": "U831" + }, + { + "id": "U832Z1", + "name": "V Zápolí", + "isMetro": false, + "latitude": 14.468101, + "longitude": 50.046116, + "stopId": "U832" + }, + { + "id": "U832Z2", + "name": "V Zápolí", + "isMetro": false, + "latitude": 14.467734, + "longitude": 50.046085, + "stopId": "U832" + }, + { + "id": "U832Z3", + "name": "V Zápolí", + "isMetro": false, + "latitude": 14.468684, + "longitude": 50.047852, + "stopId": "U832" + }, + { + "id": "U833Z1", + "name": "V Zátiší", + "isMetro": false, + "latitude": 14.4335, + "longitude": 50.022533, + "stopId": "U833" + }, + { + "id": "U833Z2", + "name": "V Zátiší", + "isMetro": false, + "latitude": 14.4319, + "longitude": 50.022652, + "stopId": "U833" + }, + { + "id": "U834Z1", + "name": "Vackov", + "isMetro": false, + "latitude": 14.486881, + "longitude": 50.086823, + "stopId": "U834" + }, + { + "id": "U834Z2", + "name": "Vackov", + "isMetro": false, + "latitude": 14.48562, + "longitude": 50.086971, + "stopId": "U834" + }, + { + "id": "U835Z1", + "name": "Václavka", + "isMetro": false, + "latitude": 14.393001, + "longitude": 50.065201, + "stopId": "U835" + }, + { + "id": "U835Z2", + "name": "Václavka", + "isMetro": false, + "latitude": 14.39364, + "longitude": 50.06522, + "stopId": "U835" + }, + { + "id": "U837Z1", + "name": "Vozovna Žižkov", + "isMetro": false, + "latitude": 14.475441, + "longitude": 50.091682, + "stopId": "U837" + }, + { + "id": "U837Z2", + "name": "Vozovna Žižkov", + "isMetro": false, + "latitude": 14.474536, + "longitude": 50.091492, + "stopId": "U837" + }, + { + "id": "U837Z3", + "name": "Vozovna Žižkov", + "isMetro": false, + "latitude": 14.475183, + "longitude": 50.091335, + "stopId": "U837" + }, + { + "id": "U838Z1", + "name": "Kolovraty", + "isMetro": false, + "latitude": 14.621267, + "longitude": 50.016018, + "stopId": "U838" + }, + { + "id": "U838Z2", + "name": "Kolovraty", + "isMetro": false, + "latitude": 14.621518, + "longitude": 50.016083, + "stopId": "U838" + }, + { + "id": "U839Z1", + "name": "Ve Studeném", + "isMetro": false, + "latitude": 14.423986, + "longitude": 50.03159, + "stopId": "U839" + }, + { + "id": "U839Z2", + "name": "Ve Studeném", + "isMetro": false, + "latitude": 14.421593, + "longitude": 50.031597, + "stopId": "U839" + }, + { + "id": "U83Z1", + "name": "Divadlo Na Fidlovačce", + "isMetro": false, + "latitude": 14.436284, + "longitude": 50.064831, + "stopId": "U83" + }, + { + "id": "U83Z2", + "name": "Divadlo Na Fidlovačce", + "isMetro": false, + "latitude": 14.437134, + "longitude": 50.064648, + "stopId": "U83" + }, + { + "id": "U840Z1", + "name": "Ve Výrech", + "isMetro": false, + "latitude": 14.306705, + "longitude": 50.034935, + "stopId": "U840" + }, + { + "id": "U840Z2", + "name": "Ve Výrech", + "isMetro": false, + "latitude": 14.305323, + "longitude": 50.035252, + "stopId": "U840" + }, + { + "id": "U842Z1", + "name": "Poliklinika Petrovice", + "isMetro": false, + "latitude": 14.560184, + "longitude": 50.039951, + "stopId": "U842" + }, + { + "id": "U842Z2", + "name": "Poliklinika Petrovice", + "isMetro": false, + "latitude": 14.561768, + "longitude": 50.038532, + "stopId": "U842" + }, + { + "id": "U843Z1", + "name": "Bazovského", + "isMetro": false, + "latitude": 14.307967, + "longitude": 50.067348, + "stopId": "U843" + }, + { + "id": "U843Z2", + "name": "Bazovského", + "isMetro": false, + "latitude": 14.307148, + "longitude": 50.066975, + "stopId": "U843" + }, + { + "id": "U844Z1", + "name": "Větrník", + "isMetro": false, + "latitude": 14.351194, + "longitude": 50.089752, + "stopId": "U844" + }, + { + "id": "U844Z2", + "name": "Větrník", + "isMetro": false, + "latitude": 14.350999, + "longitude": 50.089771, + "stopId": "U844" + }, + { + "id": "U844Z3", + "name": "Větrník", + "isMetro": false, + "latitude": 14.349115, + "longitude": 50.08934, + "stopId": "U844" + }, + { + "id": "U844Z4", + "name": "Větrník", + "isMetro": false, + "latitude": 14.349367, + "longitude": 50.089249, + "stopId": "U844" + }, + { + "id": "U846Z1", + "name": "Vidoule", + "isMetro": false, + "latitude": 14.3651, + "longitude": 50.055683, + "stopId": "U846" + }, + { + "id": "U846Z2", + "name": "Vidoule", + "isMetro": false, + "latitude": 14.365318, + "longitude": 50.055965, + "stopId": "U846" + }, + { + "id": "U848Z1", + "name": "Vozovna Strašnice", + "isMetro": false, + "latitude": 14.489645, + "longitude": 50.075558, + "stopId": "U848" + }, + { + "id": "U848Z2", + "name": "Vozovna Strašnice", + "isMetro": false, + "latitude": 14.489814, + "longitude": 50.075451, + "stopId": "U848" + }, + { + "id": "U849Z1", + "name": "Vinohradské hřbitovy", + "isMetro": false, + "latitude": 14.479644, + "longitude": 50.077793, + "stopId": "U849" + }, + { + "id": "U849Z2", + "name": "Vinohradské hřbitovy", + "isMetro": false, + "latitude": 14.480542, + "longitude": 50.077667, + "stopId": "U849" + }, + { + "id": "U84Z1", + "name": "Dívčí hrady", + "isMetro": false, + "latitude": 14.399151, + "longitude": 50.055851, + "stopId": "U84" + }, + { + "id": "U84Z2", + "name": "Dívčí hrady", + "isMetro": false, + "latitude": 14.398632, + "longitude": 50.055664, + "stopId": "U84" + }, + { + "id": "U84Z3", + "name": "Dívčí hrady", + "isMetro": false, + "latitude": 14.397744, + "longitude": 50.05611, + "stopId": "U84" + }, + { + "id": "U850Z1", + "name": "Vinohradská tržnice", + "isMetro": false, + "latitude": 14.442732, + "longitude": 50.077023, + "stopId": "U850" + }, + { + "id": "U850Z2", + "name": "Vinohradská tržnice", + "isMetro": false, + "latitude": 14.441361, + "longitude": 50.077095, + "stopId": "U850" + }, + { + "id": "U851Z1", + "name": "Vinohradská vodárna", + "isMetro": false, + "latitude": 14.449325, + "longitude": 50.075439, + "stopId": "U851" + }, + { + "id": "U851Z2", + "name": "Vinohradská vodárna", + "isMetro": false, + "latitude": 14.450126, + "longitude": 50.075356, + "stopId": "U851" + }, + { + "id": "U852Z2", + "name": "Vinoř", + "isMetro": false, + "latitude": 14.59078, + "longitude": 50.151718, + "stopId": "U852" + }, + { + "id": "U852Z3", + "name": "Vinoř", + "isMetro": false, + "latitude": 14.591301, + "longitude": 50.151798, + "stopId": "U852" + }, + { + "id": "U853Z1", + "name": "Psohlavců", + "isMetro": false, + "latitude": 14.416917, + "longitude": 50.0266, + "stopId": "U853" + }, + { + "id": "U853Z2", + "name": "Psohlavců", + "isMetro": false, + "latitude": 14.417767, + "longitude": 50.026184, + "stopId": "U853" + }, + { + "id": "U854Z1", + "name": "Karlínské náměstí", + "isMetro": false, + "latitude": 14.44518, + "longitude": 50.092751, + "stopId": "U854" + }, + { + "id": "U854Z2", + "name": "Karlínské náměstí", + "isMetro": false, + "latitude": 14.446132, + "longitude": 50.092781, + "stopId": "U854" + }, + { + "id": "U855Z1", + "name": "Vlašimská", + "isMetro": false, + "latitude": 14.463684, + "longitude": 50.074486, + "stopId": "U855" + }, + { + "id": "U855Z2", + "name": "Vlašimská", + "isMetro": false, + "latitude": 14.4664, + "longitude": 50.074299, + "stopId": "U855" + }, + { + "id": "U856Z1", + "name": "Vlnitá", + "isMetro": false, + "latitude": 14.421901, + "longitude": 50.0355, + "stopId": "U856" + }, + { + "id": "U856Z2", + "name": "Vlnitá", + "isMetro": false, + "latitude": 14.420357, + "longitude": 50.034676, + "stopId": "U856" + }, + { + "id": "U857Z1", + "name": "Čechtická", + "isMetro": false, + "latitude": 14.445001, + "longitude": 50.020718, + "stopId": "U857" + }, + { + "id": "U857Z2", + "name": "Čechtická", + "isMetro": false, + "latitude": 14.444684, + "longitude": 50.021118, + "stopId": "U857" + }, + { + "id": "U858Z1", + "name": "Vojenská nemocnice", + "isMetro": false, + "latitude": 14.360301, + "longitude": 50.091736, + "stopId": "U858" + }, + { + "id": "U858Z2", + "name": "Vojenská nemocnice", + "isMetro": false, + "latitude": 14.35979, + "longitude": 50.091763, + "stopId": "U858" + }, + { + "id": "U858Z4", + "name": "Vojenská nemocnice", + "isMetro": false, + "latitude": 14.360099, + "longitude": 50.091644, + "stopId": "U858" + }, + { + "id": "U859Z1", + "name": "Vojická", + "isMetro": false, + "latitude": 14.603435, + "longitude": 50.113701, + "stopId": "U859" + }, + { + "id": "U859Z2", + "name": "Vojická", + "isMetro": false, + "latitude": 14.604401, + "longitude": 50.114052, + "stopId": "U859" + }, + { + "id": "U85Z1", + "name": "Divoká Šárka", + "isMetro": false, + "latitude": 14.32361, + "longitude": 50.092602, + "stopId": "U85" + }, + { + "id": "U85Z2", + "name": "Divoká Šárka", + "isMetro": false, + "latitude": 14.32272, + "longitude": 50.092724, + "stopId": "U85" + }, + { + "id": "U85Z3", + "name": "Divoká Šárka", + "isMetro": false, + "latitude": 14.325679, + "longitude": 50.092728, + "stopId": "U85" + }, + { + "id": "U85Z4", + "name": "Divoká Šárka", + "isMetro": false, + "latitude": 14.325331, + "longitude": 50.092915, + "stopId": "U85" + }, + { + "id": "U85Z6", + "name": "Divoká Šárka", + "isMetro": false, + "latitude": 14.324479, + "longitude": 50.091599, + "stopId": "U85" + }, + { + "id": "U85Z9", + "name": "Divoká Šárka", + "isMetro": false, + "latitude": 14.326629, + "longitude": 50.092724, + "stopId": "U85" + }, + { + "id": "U861Z1", + "name": "Vosmíkových", + "isMetro": false, + "latitude": 14.473574, + "longitude": 50.114388, + "stopId": "U861" + }, + { + "id": "U861Z2", + "name": "Vosmíkových", + "isMetro": false, + "latitude": 14.472973, + "longitude": 50.11433, + "stopId": "U861" + }, + { + "id": "U862Z1", + "name": "Divadlo Horní Počernice", + "isMetro": false, + "latitude": 14.621751, + "longitude": 50.116817, + "stopId": "U862" + }, + { + "id": "U862Z2", + "name": "Divadlo Horní Počernice", + "isMetro": false, + "latitude": 14.621835, + "longitude": 50.116882, + "stopId": "U862" + }, + { + "id": "U863Z1", + "name": "U Dobešky", + "isMetro": false, + "latitude": 14.418951, + "longitude": 50.040302, + "stopId": "U863" + }, + { + "id": "U863Z2", + "name": "U Dobešky", + "isMetro": false, + "latitude": 14.419378, + "longitude": 50.040089, + "stopId": "U863" + }, + { + "id": "U864Z1", + "name": "Vozovna Kobylisy", + "isMetro": false, + "latitude": 14.453547, + "longitude": 50.132809, + "stopId": "U864" + }, + { + "id": "U864Z11", + "name": "Vozovna Kobylisy", + "isMetro": false, + "latitude": 14.45326, + "longitude": 50.133251, + "stopId": "U864" + }, + { + "id": "U864Z2", + "name": "Vozovna Kobylisy", + "isMetro": false, + "latitude": 14.454076, + "longitude": 50.13274, + "stopId": "U864" + }, + { + "id": "U864Z5", + "name": "Vozovna Kobylisy", + "isMetro": false, + "latitude": 14.453632, + "longitude": 50.131943, + "stopId": "U864" + }, + { + "id": "U864Z6", + "name": "Vozovna Kobylisy", + "isMetro": false, + "latitude": 14.454821, + "longitude": 50.13356, + "stopId": "U864" + }, + { + "id": "U864Z7", + "name": "Vozovna Kobylisy", + "isMetro": false, + "latitude": 14.454932, + "longitude": 50.133209, + "stopId": "U864" + }, + { + "id": "U864Z9", + "name": "Vozovna Kobylisy", + "isMetro": false, + "latitude": 14.45295, + "longitude": 50.133083, + "stopId": "U864" + }, + { + "id": "U865Z1", + "name": "Vozovna Motol", + "isMetro": false, + "latitude": 14.341458, + "longitude": 50.067856, + "stopId": "U865" + }, + { + "id": "U865Z2", + "name": "Vozovna Motol", + "isMetro": false, + "latitude": 14.340386, + "longitude": 50.067863, + "stopId": "U865" + }, + { + "id": "U866Z1", + "name": "Vozovna Pankrác", + "isMetro": false, + "latitude": 14.437892, + "longitude": 50.057072, + "stopId": "U866" + }, + { + "id": "U866Z2", + "name": "Vozovna Pankrác", + "isMetro": false, + "latitude": 14.43778, + "longitude": 50.056896, + "stopId": "U866" + }, + { + "id": "U866Z4", + "name": "Vozovna Pankrác", + "isMetro": false, + "latitude": 14.437825, + "longitude": 50.056862, + "stopId": "U866" + }, + { + "id": "U867Z1", + "name": "Vozovna Střešovice", + "isMetro": false, + "latitude": 14.389961, + "longitude": 50.093895, + "stopId": "U867" + }, + { + "id": "U867Z2", + "name": "Vozovna Střešovice", + "isMetro": false, + "latitude": 14.389066, + "longitude": 50.093571, + "stopId": "U867" + }, + { + "id": "U867Z5", + "name": "Vozovna Střešovice", + "isMetro": false, + "latitude": 14.388337, + "longitude": 50.093857, + "stopId": "U867" + }, + { + "id": "U867Z6", + "name": "Vozovna Střešovice", + "isMetro": false, + "latitude": 14.388034, + "longitude": 50.093784, + "stopId": "U867" + }, + { + "id": "U868Z1", + "name": "Vozovna Vokovice", + "isMetro": false, + "latitude": 14.330469, + "longitude": 50.092926, + "stopId": "U868" + }, + { + "id": "U868Z2", + "name": "Vozovna Vokovice", + "isMetro": false, + "latitude": 14.33147, + "longitude": 50.093163, + "stopId": "U868" + }, + { + "id": "U869Z1", + "name": "Výhledy", + "isMetro": false, + "latitude": 14.368688, + "longitude": 50.137192, + "stopId": "U869" + }, + { + "id": "U870Z1", + "name": "Vychovatelna", + "isMetro": false, + "latitude": 14.46463, + "longitude": 50.119045, + "stopId": "U870" + }, + { + "id": "U870Z2", + "name": "Vychovatelna", + "isMetro": false, + "latitude": 14.463839, + "longitude": 50.119236, + "stopId": "U870" + }, + { + "id": "U870Z3", + "name": "Vychovatelna", + "isMetro": false, + "latitude": 14.463847, + "longitude": 50.117626, + "stopId": "U870" + }, + { + "id": "U870Z4", + "name": "Vychovatelna", + "isMetro": false, + "latitude": 14.464853, + "longitude": 50.117783, + "stopId": "U870" + }, + { + "id": "U870Z5", + "name": "Vychovatelna", + "isMetro": false, + "latitude": 14.464424, + "longitude": 50.118305, + "stopId": "U870" + }, + { + "id": "U871Z1", + "name": "Lipovická", + "isMetro": false, + "latitude": 14.467566, + "longitude": 49.996712, + "stopId": "U871" + }, + { + "id": "U871Z2", + "name": "Lipovická", + "isMetro": false, + "latitude": 14.467649, + "longitude": 49.996758, + "stopId": "U871" + }, + { + "id": "U872Z1", + "name": "Vypich", + "isMetro": false, + "latitude": 14.34757, + "longitude": 50.079842, + "stopId": "U872" + }, + { + "id": "U872Z2", + "name": "Vypich", + "isMetro": false, + "latitude": 14.346678, + "longitude": 50.079739, + "stopId": "U872" + }, + { + "id": "U872Z6", + "name": "Vypich", + "isMetro": false, + "latitude": 14.343977, + "longitude": 50.080074, + "stopId": "U872" + }, + { + "id": "U872Z7", + "name": "Kukulova", + "isMetro": false, + "latitude": 14.344543, + "longitude": 50.078495, + "stopId": "U872" + }, + { + "id": "U872Z8", + "name": "Vypich", + "isMetro": false, + "latitude": 14.344133, + "longitude": 50.079842, + "stopId": "U872" + }, + { + "id": "U873Z1", + "name": "Poštovská", + "isMetro": false, + "latitude": 14.508335, + "longitude": 50.110622, + "stopId": "U873" + }, + { + "id": "U873Z2", + "name": "Poštovská", + "isMetro": false, + "latitude": 14.509474, + "longitude": 50.110561, + "stopId": "U873" + }, + { + "id": "U874Z2", + "name": "Zemědělská univerzita", + "isMetro": false, + "latitude": 14.377707, + "longitude": 50.133682, + "stopId": "U874" + }, + { + "id": "U874Z3", + "name": "Zemědělská univerzita", + "isMetro": false, + "latitude": 14.377034, + "longitude": 50.133419, + "stopId": "U874" + }, + { + "id": "U874Z4", + "name": "Zemědělská univerzita", + "isMetro": false, + "latitude": 14.377504, + "longitude": 50.132648, + "stopId": "U874" + }, + { + "id": "U875Z1", + "name": "Píškova", + "isMetro": false, + "latitude": 14.333484, + "longitude": 50.04105, + "stopId": "U875" + }, + { + "id": "U875Z2", + "name": "Píškova", + "isMetro": false, + "latitude": 14.334954, + "longitude": 50.041683, + "stopId": "U875" + }, + { + "id": "U875Z3", + "name": "Píškova", + "isMetro": false, + "latitude": 14.334617, + "longitude": 50.040749, + "stopId": "U875" + }, + { + "id": "U876Z1", + "name": "Albertov", + "isMetro": false, + "latitude": 14.421648, + "longitude": 50.067245, + "stopId": "U876" + }, + { + "id": "U876Z2", + "name": "Albertov", + "isMetro": false, + "latitude": 14.420452, + "longitude": 50.068684, + "stopId": "U876" + }, + { + "id": "U876Z4", + "name": "Albertov", + "isMetro": false, + "latitude": 14.420298, + "longitude": 50.067822, + "stopId": "U876" + }, + { + "id": "U878Z1", + "name": "Výtoň", + "isMetro": false, + "latitude": 14.415007, + "longitude": 50.068123, + "stopId": "U878" + }, + { + "id": "U878Z11", + "name": "Výtoň", + "isMetro": false, + "latitude": 14.414559, + "longitude": 50.067406, + "stopId": "U878" + }, + { + "id": "U878Z2", + "name": "Výtoň", + "isMetro": false, + "latitude": 14.414975, + "longitude": 50.067673, + "stopId": "U878" + }, + { + "id": "U879Z1", + "name": "Jílovská", + "isMetro": false, + "latitude": 14.43011, + "longitude": 50.026398, + "stopId": "U879" + }, + { + "id": "U879Z2", + "name": "Jílovská", + "isMetro": false, + "latitude": 14.430121, + "longitude": 50.026871, + "stopId": "U879" + }, + { + "id": "U87Z1", + "name": "Dlouhá třída", + "isMetro": false, + "latitude": 14.42754, + "longitude": 50.091671, + "stopId": "U87" + }, + { + "id": "U87Z2", + "name": "Dlouhá třída", + "isMetro": false, + "latitude": 14.4279, + "longitude": 50.090538, + "stopId": "U87" + }, + { + "id": "U880Z1", + "name": "VÚ Běchovice", + "isMetro": false, + "latitude": 14.61235, + "longitude": 50.089417, + "stopId": "U880" + }, + { + "id": "U880Z2", + "name": "VÚ Běchovice", + "isMetro": false, + "latitude": 14.612408, + "longitude": 50.088985, + "stopId": "U880" + }, + { + "id": "U881Z1", + "name": "Vinopalnická", + "isMetro": false, + "latitude": 14.470389, + "longitude": 50.119953, + "stopId": "U881" + }, + { + "id": "U881Z2", + "name": "Vinopalnická", + "isMetro": false, + "latitude": 14.470378, + "longitude": 50.119946, + "stopId": "U881" + }, + { + "id": "U882Z1", + "name": "Na Šabatce", + "isMetro": false, + "latitude": 14.408633, + "longitude": 49.988762, + "stopId": "U882" + }, + { + "id": "U882Z2", + "name": "Na Šabatce", + "isMetro": false, + "latitude": 14.409358, + "longitude": 49.989613, + "stopId": "U882" + }, + { + "id": "U883Z1", + "name": "Xaverov", + "isMetro": false, + "latitude": 14.625291, + "longitude": 50.101715, + "stopId": "U883" + }, + { + "id": "U883Z2", + "name": "Xaverov", + "isMetro": false, + "latitude": 14.62551, + "longitude": 50.101185, + "stopId": "U883" + }, + { + "id": "U884Z1", + "name": "Za Horou", + "isMetro": false, + "latitude": 14.535317, + "longitude": 50.091812, + "stopId": "U884" + }, + { + "id": "U884Z2", + "name": "Za Horou", + "isMetro": false, + "latitude": 14.533817, + "longitude": 50.092167, + "stopId": "U884" + }, + { + "id": "U884Z3", + "name": "Za Horou", + "isMetro": false, + "latitude": 14.536122, + "longitude": 50.092415, + "stopId": "U884" + }, + { + "id": "U885Z1", + "name": "Za Chalupami", + "isMetro": false, + "latitude": 14.356, + "longitude": 50.005299, + "stopId": "U885" + }, + { + "id": "U885Z2", + "name": "Za Chalupami", + "isMetro": false, + "latitude": 14.356251, + "longitude": 50.005234, + "stopId": "U885" + }, + { + "id": "U886Z1", + "name": "Záběhlice", + "isMetro": false, + "latitude": 14.479279, + "longitude": 50.056084, + "stopId": "U886" + }, + { + "id": "U886Z2", + "name": "Záběhlice", + "isMetro": false, + "latitude": 14.479846, + "longitude": 50.05587, + "stopId": "U886" + }, + { + "id": "U887Z1", + "name": "Záběhlická škola", + "isMetro": false, + "latitude": 14.503858, + "longitude": 50.052956, + "stopId": "U887" + }, + { + "id": "U887Z2", + "name": "Záběhlická škola", + "isMetro": false, + "latitude": 14.502501, + "longitude": 50.053112, + "stopId": "U887" + }, + { + "id": "U888Z1", + "name": "Zadní Kopanina", + "isMetro": false, + "latitude": 14.312688, + "longitude": 50.006519, + "stopId": "U888" + }, + { + "id": "U888Z2", + "name": "Zadní Kopanina", + "isMetro": false, + "latitude": 14.313117, + "longitude": 50.006733, + "stopId": "U888" + }, + { + "id": "U889Z1", + "name": "Zahradní Město", + "isMetro": false, + "latitude": 14.505138, + "longitude": 50.06078, + "stopId": "U889" + }, + { + "id": "U889Z2", + "name": "Zahradní Město", + "isMetro": false, + "latitude": 14.505978, + "longitude": 50.060566, + "stopId": "U889" + }, + { + "id": "U889Z3", + "name": "Zahradní Město", + "isMetro": false, + "latitude": 14.506534, + "longitude": 50.060299, + "stopId": "U889" + }, + { + "id": "U88Z1", + "name": "Dobeška", + "isMetro": false, + "latitude": 14.417405, + "longitude": 50.042294, + "stopId": "U88" + }, + { + "id": "U88Z2", + "name": "Dobeška", + "isMetro": false, + "latitude": 14.415685, + "longitude": 50.041508, + "stopId": "U88" + }, + { + "id": "U890Z1", + "name": "Centrum Zahradní Město", + "isMetro": false, + "latitude": 14.5065, + "longitude": 50.056351, + "stopId": "U890" + }, + { + "id": "U890Z2", + "name": "Centrum Zahradní Město", + "isMetro": false, + "latitude": 14.506889, + "longitude": 50.055912, + "stopId": "U890" + }, + { + "id": "U890Z3", + "name": "Centrum Zahradní Město", + "isMetro": false, + "latitude": 14.507251, + "longitude": 50.056866, + "stopId": "U890" + }, + { + "id": "U891Z1", + "name": "Zahradnictví", + "isMetro": false, + "latitude": 14.383767, + "longitude": 50.003002, + "stopId": "U891" + }, + { + "id": "U891Z2", + "name": "Zahradnictví", + "isMetro": false, + "latitude": 14.384355, + "longitude": 50.003323, + "stopId": "U891" + }, + { + "id": "U892Z1", + "name": "Zahrádky", + "isMetro": false, + "latitude": 14.312284, + "longitude": 50.027401, + "stopId": "U892" + }, + { + "id": "U892Z2", + "name": "Zahrádky", + "isMetro": false, + "latitude": 14.312616, + "longitude": 50.027134, + "stopId": "U892" + }, + { + "id": "U893Z1", + "name": "Zálesí", + "isMetro": false, + "latitude": 14.451584, + "longitude": 50.028301, + "stopId": "U893" + }, + { + "id": "U893Z2", + "name": "Zálesí", + "isMetro": false, + "latitude": 14.452451, + "longitude": 50.028282, + "stopId": "U893" + }, + { + "id": "U893Z3", + "name": "Zálesí", + "isMetro": false, + "latitude": 14.451167, + "longitude": 50.027199, + "stopId": "U893" + }, + { + "id": "U893Z4", + "name": "Zálesí", + "isMetro": false, + "latitude": 14.451434, + "longitude": 50.027351, + "stopId": "U893" + }, + { + "id": "U893Z5", + "name": "Zálesí", + "isMetro": false, + "latitude": 14.45085, + "longitude": 50.028637, + "stopId": "U893" + }, + { + "id": "U893Z6", + "name": "Zálesí", + "isMetro": false, + "latitude": 14.450874, + "longitude": 50.029053, + "stopId": "U893" + }, + { + "id": "U894Z1", + "name": "U Studánky", + "isMetro": false, + "latitude": 14.482822, + "longitude": 49.998474, + "stopId": "U894" + }, + { + "id": "U894Z2", + "name": "U Studánky", + "isMetro": false, + "latitude": 14.482786, + "longitude": 49.998581, + "stopId": "U894" + }, + { + "id": "U895Z1", + "name": "Zatáčka", + "isMetro": false, + "latitude": 14.424634, + "longitude": 50.025299, + "stopId": "U895" + }, + { + "id": "U895Z2", + "name": "Zatáčka", + "isMetro": false, + "latitude": 14.425667, + "longitude": 50.025215, + "stopId": "U895" + }, + { + "id": "U896Z1", + "name": "Závist", + "isMetro": false, + "latitude": 14.400906, + "longitude": 49.975861, + "stopId": "U896" + }, + { + "id": "U896Z2", + "name": "Závist", + "isMetro": false, + "latitude": 14.402891, + "longitude": 49.976498, + "stopId": "U896" + }, + { + "id": "U897Z1", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.577133, + "longitude": 50.109116, + "stopId": "U897" + }, + { + "id": "U897Z10", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.578217, + "longitude": 50.109398, + "stopId": "U897" + }, + { + "id": "U897Z101", + "name": "Černý Most", + "isMetro": true, + "latitude": 14.576773, + "longitude": 50.108954, + "stopId": "U897" + }, + { + "id": "U897Z102", + "name": "Černý Most", + "isMetro": true, + "latitude": 14.576787, + "longitude": 50.108907, + "stopId": "U897" + }, + { + "id": "U897Z11", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.578528, + "longitude": 50.109718, + "stopId": "U897" + }, + { + "id": "U897Z2", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.577433, + "longitude": 50.1092, + "stopId": "U897" + }, + { + "id": "U897Z21", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.577133, + "longitude": 50.109116, + "stopId": "U897" + }, + { + "id": "U897Z3", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.578668, + "longitude": 50.108841, + "stopId": "U897" + }, + { + "id": "U897Z31", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.578528, + "longitude": 50.109718, + "stopId": "U897" + }, + { + "id": "U897Z4", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.578338, + "longitude": 50.108814, + "stopId": "U897" + }, + { + "id": "U897Z5", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.577973, + "longitude": 50.108768, + "stopId": "U897" + }, + { + "id": "U897Z6", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.577355, + "longitude": 50.108692, + "stopId": "U897" + }, + { + "id": "U897Z63", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.576671, + "longitude": 50.108753, + "stopId": "U897" + }, + { + "id": "U897Z65", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.577314, + "longitude": 50.108818, + "stopId": "U897" + }, + { + "id": "U897Z7", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.5769, + "longitude": 50.108639, + "stopId": "U897" + }, + { + "id": "U897Z9", + "name": "Černý Most", + "isMetro": false, + "latitude": 14.576151, + "longitude": 50.108536, + "stopId": "U897" + }, + { + "id": "U898Z1", + "name": "Za Čimickým hájem", + "isMetro": false, + "latitude": 14.447301, + "longitude": 50.135483, + "stopId": "U898" + }, + { + "id": "U898Z2", + "name": "Za Čimickým hájem", + "isMetro": false, + "latitude": 14.447784, + "longitude": 50.135403, + "stopId": "U898" + }, + { + "id": "U899Z3", + "name": "Avia Letňany", + "isMetro": false, + "latitude": 14.515491, + "longitude": 50.141861, + "stopId": "U899" + }, + { + "id": "U899Z4", + "name": "Avia Letňany", + "isMetro": false, + "latitude": 14.515984, + "longitude": 50.141605, + "stopId": "U899" + }, + { + "id": "U89Z1", + "name": "Dobratická", + "isMetro": false, + "latitude": 14.508651, + "longitude": 50.130318, + "stopId": "U89" + }, + { + "id": "U89Z2", + "name": "Dobratická", + "isMetro": false, + "latitude": 14.508384, + "longitude": 50.130367, + "stopId": "U89" + }, + { + "id": "U9000Z1", + "name": "Krychnov,Náves", + "isMetro": false, + "latitude": 15.05909, + "longitude": 50.005714, + "stopId": "U9000" + }, + { + "id": "U9000Z2", + "name": "Krychnov,Náves", + "isMetro": false, + "latitude": 15.059086, + "longitude": 50.005756, + "stopId": "U9000" + }, + { + "id": "U9004Z1", + "name": "Mšené-lázně,U Kapličky", + "isMetro": false, + "latitude": 14.123317, + "longitude": 50.363838, + "stopId": "U9004" + }, + { + "id": "U9004Z2", + "name": "Mšené-lázně,U Kapličky", + "isMetro": false, + "latitude": 14.122917, + "longitude": 50.363899, + "stopId": "U9004" + }, + { + "id": "U9005Z1", + "name": "Úžice,Nechyba", + "isMetro": false, + "latitude": 14.920901, + "longitude": 49.888172, + "stopId": "U9005" + }, + { + "id": "U9005Z2", + "name": "Úžice,Nechyba", + "isMetro": false, + "latitude": 14.921037, + "longitude": 49.8881, + "stopId": "U9005" + }, + { + "id": "U9006Z1", + "name": "Králův Dvůr,Levín,Levínský vršek", + "isMetro": false, + "latitude": 14.010661, + "longitude": 49.934345, + "stopId": "U9006" + }, + { + "id": "U9006Z2", + "name": "Králův Dvůr,Levín,Levínský vršek", + "isMetro": false, + "latitude": 14.0098, + "longitude": 49.933998, + "stopId": "U9006" + }, + { + "id": "U9007Z1", + "name": "Králův Dvůr,Levín", + "isMetro": false, + "latitude": 14.001574, + "longitude": 49.927044, + "stopId": "U9007" + }, + { + "id": "U9007Z2", + "name": "Králův Dvůr,Levín", + "isMetro": false, + "latitude": 14.001598, + "longitude": 49.927212, + "stopId": "U9007" + }, + { + "id": "U9008Z1", + "name": "Králův Dvůr,Popovice,odbočka", + "isMetro": false, + "latitude": 14.025353, + "longitude": 49.934052, + "stopId": "U9008" + }, + { + "id": "U9008Z2", + "name": "Králův Dvůr,Popovice,odbočka", + "isMetro": false, + "latitude": 14.025188, + "longitude": 49.933838, + "stopId": "U9008" + }, + { + "id": "U9009Z1", + "name": "Králův Dvůr,U Karla IV.", + "isMetro": false, + "latitude": 14.028947, + "longitude": 49.937801, + "stopId": "U9009" + }, + { + "id": "U9009Z2", + "name": "Králův Dvůr,U Karla IV.", + "isMetro": false, + "latitude": 14.029211, + "longitude": 49.937859, + "stopId": "U9009" + }, + { + "id": "U900Z1", + "name": "Zborov - Strašnické divadlo", + "isMetro": false, + "latitude": 14.500311, + "longitude": 50.077312, + "stopId": "U900" + }, + { + "id": "U900Z2", + "name": "Zborov - Strašnické divadlo", + "isMetro": false, + "latitude": 14.501081, + "longitude": 50.077282, + "stopId": "U900" + }, + { + "id": "U9010Z1", + "name": "Králův Dvůr,Fučíkova", + "isMetro": false, + "latitude": 14.029258, + "longitude": 49.941742, + "stopId": "U9010" + }, + { + "id": "U9010Z2", + "name": "Králův Dvůr,Fučíkova", + "isMetro": false, + "latitude": 14.029602, + "longitude": 49.941856, + "stopId": "U9010" + }, + { + "id": "U9012Z1", + "name": "Králův Dvůr,Karlova Huť", + "isMetro": false, + "latitude": 14.032261, + "longitude": 49.937618, + "stopId": "U9012" + }, + { + "id": "U9012Z2", + "name": "Králův Dvůr,Karlova Huť", + "isMetro": false, + "latitude": 14.032071, + "longitude": 49.937603, + "stopId": "U9012" + }, + { + "id": "U9013Z1", + "name": "Králův Dvůr,Výšiny", + "isMetro": false, + "latitude": 14.037196, + "longitude": 49.938099, + "stopId": "U9013" + }, + { + "id": "U9013Z2", + "name": "Králův Dvůr,Výšiny", + "isMetro": false, + "latitude": 14.037137, + "longitude": 49.93811, + "stopId": "U9013" + }, + { + "id": "U9014Z1", + "name": "Králův Dvůr,Křižatky", + "isMetro": false, + "latitude": 14.037156, + "longitude": 49.925716, + "stopId": "U9014" + }, + { + "id": "U9014Z2", + "name": "Králův Dvůr,Křižatky", + "isMetro": false, + "latitude": 14.037043, + "longitude": 49.925797, + "stopId": "U9014" + }, + { + "id": "U9015Z1", + "name": "Tetín,U Rozvodny", + "isMetro": false, + "latitude": 14.087642, + "longitude": 49.953671, + "stopId": "U9015" + }, + { + "id": "U9015Z2", + "name": "Tetín,U Rozvodny", + "isMetro": false, + "latitude": 14.087784, + "longitude": 49.953529, + "stopId": "U9015" + }, + { + "id": "U9016Z1", + "name": "Tetín", + "isMetro": false, + "latitude": 14.101795, + "longitude": 49.949368, + "stopId": "U9016" + }, + { + "id": "U9016Z2", + "name": "Tetín", + "isMetro": false, + "latitude": 14.101683, + "longitude": 49.949455, + "stopId": "U9016" + }, + { + "id": "U9017Z1", + "name": "Tetín,Koledník", + "isMetro": false, + "latitude": 14.07216, + "longitude": 49.937744, + "stopId": "U9017" + }, + { + "id": "U9017Z2", + "name": "Tetín,Koledník", + "isMetro": false, + "latitude": 14.072045, + "longitude": 49.937904, + "stopId": "U9017" + }, + { + "id": "U901Z1", + "name": "Zborovská", + "isMetro": false, + "latitude": 14.408092, + "longitude": 50.072399, + "stopId": "U901" + }, + { + "id": "U901Z2", + "name": "Zborovská", + "isMetro": false, + "latitude": 14.407204, + "longitude": 50.07243, + "stopId": "U901" + }, + { + "id": "U901Z51", + "name": "Zborovská", + "isMetro": false, + "latitude": 14.406919, + "longitude": 50.072636, + "stopId": "U901" + }, + { + "id": "U9020Z1", + "name": "Měňany", + "isMetro": false, + "latitude": 14.115051, + "longitude": 49.907249, + "stopId": "U9020" + }, + { + "id": "U9020Z2", + "name": "Měňany", + "isMetro": false, + "latitude": 14.114928, + "longitude": 49.907131, + "stopId": "U9020" + }, + { + "id": "U9023Z1", + "name": "Liteň,nám.", + "isMetro": false, + "latitude": 14.147262, + "longitude": 49.904308, + "stopId": "U9023" + }, + { + "id": "U9023Z3", + "name": "Liteň,nám.", + "isMetro": false, + "latitude": 14.146869, + "longitude": 49.903648, + "stopId": "U9023" + }, + { + "id": "U9025Z401", + "name": "Liteň,Leč", + "isMetro": false, + "latitude": 14.153385, + "longitude": 49.890839, + "stopId": "U9025" + }, + { + "id": "U9025Z402", + "name": "Liteň,Leč", + "isMetro": false, + "latitude": 14.153313, + "longitude": 49.890915, + "stopId": "U9025" + }, + { + "id": "U9028Z1", + "name": "Zadní Třebaň,Nad Soutokem", + "isMetro": false, + "latitude": 14.205242, + "longitude": 49.912571, + "stopId": "U9028" + }, + { + "id": "U9028Z2", + "name": "Zadní Třebaň,Nad Soutokem", + "isMetro": false, + "latitude": 14.205543, + "longitude": 49.912872, + "stopId": "U9028" + }, + { + "id": "U9028Z401", + "name": "Zadní Třebaň,Nad Soutokem", + "isMetro": false, + "latitude": 14.205242, + "longitude": 49.912571, + "stopId": "U9028" + }, + { + "id": "U9029Z1", + "name": "Svinaře,Bílý Kámen", + "isMetro": false, + "latitude": 14.189461, + "longitude": 49.898102, + "stopId": "U9029" + }, + { + "id": "U9029Z2", + "name": "Svinaře,Bílý Kámen", + "isMetro": false, + "latitude": 14.189698, + "longitude": 49.898048, + "stopId": "U9029" + }, + { + "id": "U902Z1", + "name": "Zbraslavské náměstí", + "isMetro": false, + "latitude": 14.394024, + "longitude": 49.97591, + "stopId": "U902" + }, + { + "id": "U902Z2", + "name": "Zbraslavské náměstí", + "isMetro": false, + "latitude": 14.39368, + "longitude": 49.976074, + "stopId": "U902" + }, + { + "id": "U902Z3", + "name": "Zbraslavské náměstí", + "isMetro": false, + "latitude": 14.393384, + "longitude": 49.976162, + "stopId": "U902" + }, + { + "id": "U902Z4", + "name": "Zbraslavské náměstí", + "isMetro": false, + "latitude": 14.393799, + "longitude": 49.976398, + "stopId": "U902" + }, + { + "id": "U9030Z1", + "name": "Svinaře", + "isMetro": false, + "latitude": 14.183196, + "longitude": 49.892376, + "stopId": "U9030" + }, + { + "id": "U9030Z2", + "name": "Svinaře", + "isMetro": false, + "latitude": 14.183334, + "longitude": 49.892429, + "stopId": "U9030" + }, + { + "id": "U9031Z1", + "name": "Svinaře,Halouny", + "isMetro": false, + "latitude": 14.207269, + "longitude": 49.888512, + "stopId": "U9031" + }, + { + "id": "U9031Z2", + "name": "Svinaře,Halouny", + "isMetro": false, + "latitude": 14.207302, + "longitude": 49.888584, + "stopId": "U9031" + }, + { + "id": "U9032Z1", + "name": "Svinaře,ObÚ", + "isMetro": false, + "latitude": 14.186604, + "longitude": 49.889954, + "stopId": "U9032" + }, + { + "id": "U9032Z2", + "name": "Svinaře,ObÚ", + "isMetro": false, + "latitude": 14.186731, + "longitude": 49.8899, + "stopId": "U9032" + }, + { + "id": "U9032Z3", + "name": "Svinaře,ObÚ", + "isMetro": false, + "latitude": 14.186299, + "longitude": 49.889889, + "stopId": "U9032" + }, + { + "id": "U9032Z4", + "name": "Svinaře,ObÚ", + "isMetro": false, + "latitude": 14.186339, + "longitude": 49.890015, + "stopId": "U9032" + }, + { + "id": "U9033Z1", + "name": "Skuhrov,Hodyně", + "isMetro": false, + "latitude": 14.174197, + "longitude": 49.884731, + "stopId": "U9033" + }, + { + "id": "U9033Z2", + "name": "Skuhrov,Hodyně", + "isMetro": false, + "latitude": 14.174573, + "longitude": 49.884708, + "stopId": "U9033" + }, + { + "id": "U9034Z1", + "name": "Skuhrov,Hatě", + "isMetro": false, + "latitude": 14.163984, + "longitude": 49.881466, + "stopId": "U9034" + }, + { + "id": "U9034Z2", + "name": "Skuhrov,Hatě", + "isMetro": false, + "latitude": 14.163421, + "longitude": 49.881069, + "stopId": "U9034" + }, + { + "id": "U9035Z1", + "name": "Skuhrov", + "isMetro": false, + "latitude": 14.146737, + "longitude": 49.875607, + "stopId": "U9035" + }, + { + "id": "U9035Z2", + "name": "Skuhrov", + "isMetro": false, + "latitude": 14.146822, + "longitude": 49.875526, + "stopId": "U9035" + }, + { + "id": "U9036Z1", + "name": "Skuhrov,Drahlovice", + "isMetro": false, + "latitude": 14.139138, + "longitude": 49.871891, + "stopId": "U9036" + }, + { + "id": "U9036Z2", + "name": "Skuhrov,Drahlovice", + "isMetro": false, + "latitude": 14.139222, + "longitude": 49.871819, + "stopId": "U9036" + }, + { + "id": "U9037Z1", + "name": "Podbrdy", + "isMetro": false, + "latitude": 14.118612, + "longitude": 49.864616, + "stopId": "U9037" + }, + { + "id": "U9037Z2", + "name": "Podbrdy", + "isMetro": false, + "latitude": 14.11878, + "longitude": 49.864552, + "stopId": "U9037" + }, + { + "id": "U903Z1", + "name": "Zbyslavská", + "isMetro": false, + "latitude": 14.672005, + "longitude": 50.074001, + "stopId": "U903" + }, + { + "id": "U903Z2", + "name": "Zbyslavská", + "isMetro": false, + "latitude": 14.670832, + "longitude": 50.074341, + "stopId": "U903" + }, + { + "id": "U9040Z1", + "name": "Osov,Osovec", + "isMetro": false, + "latitude": 14.091911, + "longitude": 49.850304, + "stopId": "U9040" + }, + { + "id": "U9040Z2", + "name": "Osov,Osovec", + "isMetro": false, + "latitude": 14.09219, + "longitude": 49.85025, + "stopId": "U9040" + }, + { + "id": "U9041Z1", + "name": "Osov,škola", + "isMetro": false, + "latitude": 14.084832, + "longitude": 49.847847, + "stopId": "U9041" + }, + { + "id": "U9041Z2", + "name": "Osov,škola", + "isMetro": false, + "latitude": 14.084991, + "longitude": 49.847885, + "stopId": "U9041" + }, + { + "id": "U9041Z401", + "name": "Osov,škola", + "isMetro": false, + "latitude": 14.084832, + "longitude": 49.847847, + "stopId": "U9041" + }, + { + "id": "U9041Z402", + "name": "Osov,škola", + "isMetro": false, + "latitude": 14.084991, + "longitude": 49.847885, + "stopId": "U9041" + }, + { + "id": "U9042Z3", + "name": "Osov,u zámku I", + "isMetro": false, + "latitude": 14.080785, + "longitude": 49.845295, + "stopId": "U9042" + }, + { + "id": "U9042Z4", + "name": "Osov,u zámku I", + "isMetro": false, + "latitude": 14.080868, + "longitude": 49.845333, + "stopId": "U9042" + }, + { + "id": "U9045Z1", + "name": "Bykoš", + "isMetro": false, + "latitude": 14.063833, + "longitude": 49.882877, + "stopId": "U9045" + }, + { + "id": "U9045Z2", + "name": "Bykoš", + "isMetro": false, + "latitude": 14.063748, + "longitude": 49.882957, + "stopId": "U9045" + }, + { + "id": "U9046Z1", + "name": "Suchomasty", + "isMetro": false, + "latitude": 14.056635, + "longitude": 49.895264, + "stopId": "U9046" + }, + { + "id": "U9046Z2", + "name": "Suchomasty", + "isMetro": false, + "latitude": 14.056441, + "longitude": 49.895214, + "stopId": "U9046" + }, + { + "id": "U9047Z2", + "name": "Suchomasty,Škola I", + "isMetro": false, + "latitude": 14.05554, + "longitude": 49.896332, + "stopId": "U9047" + }, + { + "id": "U9047Z3", + "name": "Suchomasty,Škola I", + "isMetro": false, + "latitude": 14.054826, + "longitude": 49.896702, + "stopId": "U9047" + }, + { + "id": "U9047Z4", + "name": "Suchomasty,Škola I", + "isMetro": false, + "latitude": 14.054826, + "longitude": 49.896702, + "stopId": "U9047" + }, + { + "id": "U904Z1", + "name": "Michnovka", + "isMetro": false, + "latitude": 14.3975, + "longitude": 50.039635, + "stopId": "U904" + }, + { + "id": "U904Z2", + "name": "Michnovka", + "isMetro": false, + "latitude": 14.396869, + "longitude": 50.039257, + "stopId": "U904" + }, + { + "id": "U9050Z1", + "name": "Mořina,Trněný Újezd,rozc.", + "isMetro": false, + "latitude": 14.230277, + "longitude": 49.973469, + "stopId": "U9050" + }, + { + "id": "U9050Z2", + "name": "Mořina,Trněný Újezd,rozc.", + "isMetro": false, + "latitude": 14.229972, + "longitude": 49.973465, + "stopId": "U9050" + }, + { + "id": "U9052Z3", + "name": "Koněprusy,jeskyně", + "isMetro": false, + "latitude": 14.072148, + "longitude": 49.916142, + "stopId": "U9052" + }, + { + "id": "U9053Z1", + "name": "Koněprusy", + "isMetro": false, + "latitude": 14.066128, + "longitude": 49.921143, + "stopId": "U9053" + }, + { + "id": "U9053Z2", + "name": "Koněprusy", + "isMetro": false, + "latitude": 14.065948, + "longitude": 49.921097, + "stopId": "U9053" + }, + { + "id": "U9054Z1", + "name": "Koněprusy,u hřbitova I", + "isMetro": false, + "latitude": 14.070869, + "longitude": 49.925163, + "stopId": "U9054" + }, + { + "id": "U9054Z2", + "name": "Koněprusy,u hřbitova I", + "isMetro": false, + "latitude": 14.070716, + "longitude": 49.925163, + "stopId": "U9054" + }, + { + "id": "U9057Z1", + "name": "Tmaň", + "isMetro": false, + "latitude": 14.034244, + "longitude": 49.905525, + "stopId": "U9057" + }, + { + "id": "U9057Z2", + "name": "Tmaň", + "isMetro": false, + "latitude": 14.034278, + "longitude": 49.905499, + "stopId": "U9057" + }, + { + "id": "U9058Z1", + "name": "Tmaň,rozc.VČS", + "isMetro": false, + "latitude": 14.043392, + "longitude": 49.906166, + "stopId": "U9058" + }, + { + "id": "U9058Z2", + "name": "Tmaň,rozc.VČS", + "isMetro": false, + "latitude": 14.043334, + "longitude": 49.906277, + "stopId": "U9058" + }, + { + "id": "U905Z1", + "name": "Škola Nebušice", + "isMetro": false, + "latitude": 14.330539, + "longitude": 50.110977, + "stopId": "U905" + }, + { + "id": "U905Z2", + "name": "Škola Nebušice", + "isMetro": false, + "latitude": 14.330851, + "longitude": 50.110886, + "stopId": "U905" + }, + { + "id": "U9061Z1", + "name": "Tmaň,Lounín", + "isMetro": false, + "latitude": 14.019866, + "longitude": 49.905441, + "stopId": "U9061" + }, + { + "id": "U9061Z2", + "name": "Tmaň,Lounín", + "isMetro": false, + "latitude": 14.019966, + "longitude": 49.905315, + "stopId": "U9061" + }, + { + "id": "U9062Z1", + "name": "Tmaň,Slavíky,rozc.1.0", + "isMetro": false, + "latitude": 14.031133, + "longitude": 49.916344, + "stopId": "U9062" + }, + { + "id": "U9062Z2", + "name": "Tmaň,Slavíky,rozc.1.0", + "isMetro": false, + "latitude": 14.030801, + "longitude": 49.916233, + "stopId": "U9062" + }, + { + "id": "U9063Z1", + "name": "Trubská,rozc.1.0", + "isMetro": false, + "latitude": 14.010505, + "longitude": 49.956806, + "stopId": "U9063" + }, + { + "id": "U9063Z2", + "name": "Trubská,rozc.1.0", + "isMetro": false, + "latitude": 14.009888, + "longitude": 49.956963, + "stopId": "U9063" + }, + { + "id": "U9064Z1", + "name": "Hudlice,Dibří", + "isMetro": false, + "latitude": 14.007129, + "longitude": 49.958755, + "stopId": "U9064" + }, + { + "id": "U9064Z2", + "name": "Hudlice,Dibří", + "isMetro": false, + "latitude": 14.006969, + "longitude": 49.958828, + "stopId": "U9064" + }, + { + "id": "U9065Z1", + "name": "Hudlice,dolní", + "isMetro": false, + "latitude": 13.97559, + "longitude": 49.961044, + "stopId": "U9065" + }, + { + "id": "U9065Z2", + "name": "Hudlice,dolní", + "isMetro": false, + "latitude": 13.975531, + "longitude": 49.961178, + "stopId": "U9065" + }, + { + "id": "U9068Z1", + "name": "Otročiněves,I", + "isMetro": false, + "latitude": 13.974916, + "longitude": 49.975712, + "stopId": "U9068" + }, + { + "id": "U9068Z2", + "name": "Otročiněves,I", + "isMetro": false, + "latitude": 13.974772, + "longitude": 49.975872, + "stopId": "U9068" + }, + { + "id": "U9069Z1", + "name": "Otročiněves,Na Drahách", + "isMetro": false, + "latitude": 13.96594, + "longitude": 49.980846, + "stopId": "U9069" + }, + { + "id": "U9069Z2", + "name": "Otročiněves,Na Drahách", + "isMetro": false, + "latitude": 13.965685, + "longitude": 49.981003, + "stopId": "U9069" + }, + { + "id": "U906Z1", + "name": "Zelená", + "isMetro": false, + "latitude": 14.395284, + "longitude": 50.107082, + "stopId": "U906" + }, + { + "id": "U906Z2", + "name": "Zelená", + "isMetro": false, + "latitude": 14.395289, + "longitude": 50.106949, + "stopId": "U906" + }, + { + "id": "U906Z3", + "name": "Zelená", + "isMetro": false, + "latitude": 14.394433, + "longitude": 50.107246, + "stopId": "U906" + }, + { + "id": "U906Z4", + "name": "Zelená", + "isMetro": false, + "latitude": 14.394638, + "longitude": 50.107662, + "stopId": "U906" + }, + { + "id": "U9070Z1", + "name": "Otročiněves,Krušná Hora", + "isMetro": false, + "latitude": 13.957699, + "longitude": 49.982803, + "stopId": "U9070" + }, + { + "id": "U9070Z2", + "name": "Otročiněves,Krušná Hora", + "isMetro": false, + "latitude": 13.957891, + "longitude": 49.982895, + "stopId": "U9070" + }, + { + "id": "U9071Z1", + "name": "Nový Jáchymov,sídl.", + "isMetro": false, + "latitude": 13.948369, + "longitude": 49.980938, + "stopId": "U9071" + }, + { + "id": "U9071Z2", + "name": "Nový Jáchymov,sídl.", + "isMetro": false, + "latitude": 13.948367, + "longitude": 49.981037, + "stopId": "U9071" + }, + { + "id": "U9072Z3", + "name": "Nový Jáchymov", + "isMetro": false, + "latitude": 13.943187, + "longitude": 49.980747, + "stopId": "U9072" + }, + { + "id": "U9072Z4", + "name": "Nový Jáchymov", + "isMetro": false, + "latitude": 13.943074, + "longitude": 49.980801, + "stopId": "U9072" + }, + { + "id": "U9073Z1", + "name": "Nový Jáchymov,háj.", + "isMetro": false, + "latitude": 13.924418, + "longitude": 49.977058, + "stopId": "U9073" + }, + { + "id": "U9073Z2", + "name": "Nový Jáchymov,háj.", + "isMetro": false, + "latitude": 13.924056, + "longitude": 49.977074, + "stopId": "U9073" + }, + { + "id": "U9074Z1", + "name": "Roztoky,Karlov", + "isMetro": false, + "latitude": 13.892005, + "longitude": 49.978878, + "stopId": "U9074" + }, + { + "id": "U9074Z2", + "name": "Roztoky,Karlov", + "isMetro": false, + "latitude": 13.892017, + "longitude": 49.97892, + "stopId": "U9074" + }, + { + "id": "U9075Z1", + "name": "Roztoky,Placanda", + "isMetro": false, + "latitude": 13.885187, + "longitude": 49.978874, + "stopId": "U9075" + }, + { + "id": "U9075Z2", + "name": "Roztoky,Placanda", + "isMetro": false, + "latitude": 13.884824, + "longitude": 49.978924, + "stopId": "U9075" + }, + { + "id": "U9077Z1", + "name": "Broumy,Luh rozc.", + "isMetro": false, + "latitude": 13.853884, + "longitude": 49.964363, + "stopId": "U9077" + }, + { + "id": "U9077Z2", + "name": "Broumy,Luh rozc.", + "isMetro": false, + "latitude": 13.853519, + "longitude": 49.964439, + "stopId": "U9077" + }, + { + "id": "U9078Z1", + "name": "Broumy,radnice", + "isMetro": false, + "latitude": 13.852509, + "longitude": 49.954746, + "stopId": "U9078" + }, + { + "id": "U9078Z2", + "name": "Broumy,radnice", + "isMetro": false, + "latitude": 13.852414, + "longitude": 49.954632, + "stopId": "U9078" + }, + { + "id": "U9079Z1", + "name": "Broumy,škola", + "isMetro": false, + "latitude": 13.855501, + "longitude": 49.951397, + "stopId": "U9079" + }, + { + "id": "U9079Z2", + "name": "Broumy,škola", + "isMetro": false, + "latitude": 13.855853, + "longitude": 49.950665, + "stopId": "U9079" + }, + { + "id": "U907Z1", + "name": "Zelená liška", + "isMetro": false, + "latitude": 14.443543, + "longitude": 50.048336, + "stopId": "U907" + }, + { + "id": "U907Z2", + "name": "Zelená liška", + "isMetro": false, + "latitude": 14.443058, + "longitude": 50.048874, + "stopId": "U907" + }, + { + "id": "U9080Z1", + "name": "Broumy,U dvora", + "isMetro": false, + "latitude": 13.843424, + "longitude": 49.95937, + "stopId": "U9080" + }, + { + "id": "U9080Z2", + "name": "Broumy,U dvora", + "isMetro": false, + "latitude": 13.84306, + "longitude": 49.959438, + "stopId": "U9080" + }, + { + "id": "U9081Z1", + "name": "Broumy,Bušohrad", + "isMetro": false, + "latitude": 13.81385, + "longitude": 49.945774, + "stopId": "U9081" + }, + { + "id": "U9081Z2", + "name": "Broumy,Bušohrad", + "isMetro": false, + "latitude": 13.81354, + "longitude": 49.945942, + "stopId": "U9081" + }, + { + "id": "U9082Z1", + "name": "Broumy,Kolna", + "isMetro": false, + "latitude": 13.902398, + "longitude": 49.94241, + "stopId": "U9082" + }, + { + "id": "U9082Z2", + "name": "Broumy,Kolna", + "isMetro": false, + "latitude": 13.902257, + "longitude": 49.942516, + "stopId": "U9082" + }, + { + "id": "U9083Z1", + "name": "Kublov,na hoře", + "isMetro": false, + "latitude": 13.881305, + "longitude": 49.940052, + "stopId": "U9083" + }, + { + "id": "U9083Z2", + "name": "Kublov,na hoře", + "isMetro": false, + "latitude": 13.881107, + "longitude": 49.940155, + "stopId": "U9083" + }, + { + "id": "U9084Z1", + "name": "Kublov,Slovanka", + "isMetro": false, + "latitude": 13.876066, + "longitude": 49.943668, + "stopId": "U9084" + }, + { + "id": "U9084Z2", + "name": "Kublov,Slovanka", + "isMetro": false, + "latitude": 13.876118, + "longitude": 49.943886, + "stopId": "U9084" + }, + { + "id": "U9085Z1", + "name": "Kublov,na návsi", + "isMetro": false, + "latitude": 13.872641, + "longitude": 49.945992, + "stopId": "U9085" + }, + { + "id": "U9085Z2", + "name": "Kublov,na návsi", + "isMetro": false, + "latitude": 13.872639, + "longitude": 49.946064, + "stopId": "U9085" + }, + { + "id": "U9086Z1", + "name": "Kublov,Malá Louka", + "isMetro": false, + "latitude": 13.864129, + "longitude": 49.945343, + "stopId": "U9086" + }, + { + "id": "U9086Z2", + "name": "Kublov,Malá Louka", + "isMetro": false, + "latitude": 13.864084, + "longitude": 49.945465, + "stopId": "U9086" + }, + { + "id": "U9087Z1", + "name": "Svatá,Zelený kříž", + "isMetro": false, + "latitude": 13.92056, + "longitude": 49.941383, + "stopId": "U9087" + }, + { + "id": "U9087Z2", + "name": "Svatá,Zelený kříž", + "isMetro": false, + "latitude": 13.920252, + "longitude": 49.94149, + "stopId": "U9087" + }, + { + "id": "U9088Z1", + "name": "Svatá,myslivna Král", + "isMetro": false, + "latitude": 13.945706, + "longitude": 49.936897, + "stopId": "U9088" + }, + { + "id": "U9088Z2", + "name": "Svatá,myslivna Král", + "isMetro": false, + "latitude": 13.945552, + "longitude": 49.936958, + "stopId": "U9088" + }, + { + "id": "U9089Z1", + "name": "Svatá,u Sýkorů", + "isMetro": false, + "latitude": 13.956956, + "longitude": 49.938446, + "stopId": "U9089" + }, + { + "id": "U9089Z2", + "name": "Svatá,u Sýkorů", + "isMetro": false, + "latitude": 13.956815, + "longitude": 49.938541, + "stopId": "U9089" + }, + { + "id": "U908Z1", + "name": "IKEM", + "isMetro": false, + "latitude": 14.463317, + "longitude": 50.020702, + "stopId": "U908" + }, + { + "id": "U908Z2", + "name": "IKEM", + "isMetro": false, + "latitude": 14.461384, + "longitude": 50.022701, + "stopId": "U908" + }, + { + "id": "U9090Z1", + "name": "Svatá,pod kopcem", + "isMetro": false, + "latitude": 13.96842, + "longitude": 49.938496, + "stopId": "U9090" + }, + { + "id": "U9090Z2", + "name": "Svatá,pod kopcem", + "isMetro": false, + "latitude": 13.968209, + "longitude": 49.938564, + "stopId": "U9090" + }, + { + "id": "U9091Z1", + "name": "Trubín", + "isMetro": false, + "latitude": 14.003226, + "longitude": 49.942142, + "stopId": "U9091" + }, + { + "id": "U9091Z2", + "name": "Trubín", + "isMetro": false, + "latitude": 14.003043, + "longitude": 49.942223, + "stopId": "U9091" + }, + { + "id": "U9092Z1", + "name": "Skryje,Suchá jedle", + "isMetro": false, + "latitude": 13.782861, + "longitude": 49.940895, + "stopId": "U9092" + }, + { + "id": "U9092Z2", + "name": "Skryje,Suchá jedle", + "isMetro": false, + "latitude": 13.782914, + "longitude": 49.940845, + "stopId": "U9092" + }, + { + "id": "U9093Z1", + "name": "Skryje,U Ručiček", + "isMetro": false, + "latitude": 13.76525, + "longitude": 49.945347, + "stopId": "U9093" + }, + { + "id": "U9093Z2", + "name": "Skryje,U Ručiček", + "isMetro": false, + "latitude": 13.765293, + "longitude": 49.94532, + "stopId": "U9093" + }, + { + "id": "U9094Z1", + "name": "Skryje", + "isMetro": false, + "latitude": 13.767293, + "longitude": 49.965229, + "stopId": "U9094" + }, + { + "id": "U9095Z1", + "name": "Zbečno,U Hřbitova", + "isMetro": false, + "latitude": 13.916918, + "longitude": 50.044727, + "stopId": "U9095" + }, + { + "id": "U9095Z2", + "name": "Zbečno,U Hřbitova", + "isMetro": false, + "latitude": 13.916775, + "longitude": 50.044888, + "stopId": "U9095" + }, + { + "id": "U9096Z1", + "name": "Zbečno,U Mostu", + "isMetro": false, + "latitude": 13.921647, + "longitude": 50.039906, + "stopId": "U9096" + }, + { + "id": "U9096Z2", + "name": "Zbečno,U Mostu", + "isMetro": false, + "latitude": 13.921601, + "longitude": 50.040104, + "stopId": "U9096" + }, + { + "id": "U9097Z1", + "name": "Sýkořice", + "isMetro": false, + "latitude": 13.931396, + "longitude": 50.034672, + "stopId": "U9097" + }, + { + "id": "U9097Z2", + "name": "Sýkořice", + "isMetro": false, + "latitude": 13.931131, + "longitude": 50.034607, + "stopId": "U9097" + }, + { + "id": "U9098Z1", + "name": "Sýkořice,U Křížku", + "isMetro": false, + "latitude": 13.943813, + "longitude": 50.038715, + "stopId": "U9098" + }, + { + "id": "U9098Z2", + "name": "Sýkořice,U Křížku", + "isMetro": false, + "latitude": 13.943505, + "longitude": 50.038757, + "stopId": "U9098" + }, + { + "id": "U9099Z1", + "name": "Sýkořice,Luby", + "isMetro": false, + "latitude": 13.970007, + "longitude": 50.043842, + "stopId": "U9099" + }, + { + "id": "U9099Z2", + "name": "Sýkořice,Luby", + "isMetro": false, + "latitude": 13.969778, + "longitude": 50.043839, + "stopId": "U9099" + }, + { + "id": "U909Z1", + "name": "Zelené domky", + "isMetro": false, + "latitude": 14.469925, + "longitude": 50.015568, + "stopId": "U909" + }, + { + "id": "U909Z2", + "name": "Zelené domky", + "isMetro": false, + "latitude": 14.468953, + "longitude": 50.01643, + "stopId": "U909" + }, + { + "id": "U90Z1", + "name": "Dobročovická", + "isMetro": false, + "latitude": 14.505107, + "longitude": 50.07341, + "stopId": "U90" + }, + { + "id": "U90Z2", + "name": "Dobročovická", + "isMetro": false, + "latitude": 14.504728, + "longitude": 50.073257, + "stopId": "U90" + }, + { + "id": "U9100Z1", + "name": "Běleč", + "isMetro": false, + "latitude": 13.994158, + "longitude": 50.057091, + "stopId": "U9100" + }, + { + "id": "U9100Z2", + "name": "Běleč", + "isMetro": false, + "latitude": 13.993823, + "longitude": 50.057041, + "stopId": "U9100" + }, + { + "id": "U9101Z1", + "name": "Zbečno,Novina", + "isMetro": false, + "latitude": 13.910677, + "longitude": 50.054386, + "stopId": "U9101" + }, + { + "id": "U9101Z2", + "name": "Zbečno,Novina", + "isMetro": false, + "latitude": 13.910789, + "longitude": 50.05439, + "stopId": "U9101" + }, + { + "id": "U9102Z1", + "name": "Křivoklát,Písky", + "isMetro": false, + "latitude": 13.896241, + "longitude": 50.058144, + "stopId": "U9102" + }, + { + "id": "U9102Z2", + "name": "Křivoklát,Písky", + "isMetro": false, + "latitude": 13.896131, + "longitude": 50.058086, + "stopId": "U9102" + }, + { + "id": "U9104Z1", + "name": "Smečno,Ovčín", + "isMetro": false, + "latitude": 14.018123, + "longitude": 50.178688, + "stopId": "U9104" + }, + { + "id": "U9104Z2", + "name": "Smečno,Ovčín", + "isMetro": false, + "latitude": 14.017902, + "longitude": 50.178699, + "stopId": "U9104" + }, + { + "id": "U9105Z1", + "name": "Zdice,nám.", + "isMetro": false, + "latitude": 13.979235, + "longitude": 49.911877, + "stopId": "U9105" + }, + { + "id": "U9105Z2", + "name": "Zdice,nám.", + "isMetro": false, + "latitude": 13.978904, + "longitude": 49.911732, + "stopId": "U9105" + }, + { + "id": "U9109Z1", + "name": "Zdice,autoservis", + "isMetro": false, + "latitude": 13.960381, + "longitude": 49.904232, + "stopId": "U9109" + }, + { + "id": "U9109Z2", + "name": "Zdice,autoservis", + "isMetro": false, + "latitude": 13.960046, + "longitude": 49.904263, + "stopId": "U9109" + }, + { + "id": "U910Z1", + "name": "Zelený pruh", + "isMetro": false, + "latitude": 14.427217, + "longitude": 50.039433, + "stopId": "U910" + }, + { + "id": "U910Z2", + "name": "Zelený pruh", + "isMetro": false, + "latitude": 14.427811, + "longitude": 50.039112, + "stopId": "U910" + }, + { + "id": "U9110Z1", + "name": "Hředle", + "isMetro": false, + "latitude": 13.922799, + "longitude": 49.900948, + "stopId": "U9110" + }, + { + "id": "U9110Z2", + "name": "Hředle", + "isMetro": false, + "latitude": 13.922824, + "longitude": 49.9011, + "stopId": "U9110" + }, + { + "id": "U9113Z1", + "name": "Vraný", + "isMetro": false, + "latitude": 14.017387, + "longitude": 50.326305, + "stopId": "U9113" + }, + { + "id": "U9113Z2", + "name": "Vraný", + "isMetro": false, + "latitude": 14.017347, + "longitude": 50.326199, + "stopId": "U9113" + }, + { + "id": "U9114Z1", + "name": "Vraný,bytovky", + "isMetro": false, + "latitude": 14.019832, + "longitude": 50.329674, + "stopId": "U9114" + }, + { + "id": "U9114Z2", + "name": "Vraný,bytovky", + "isMetro": false, + "latitude": 14.019831, + "longitude": 50.329735, + "stopId": "U9114" + }, + { + "id": "U9116Z1", + "name": "Vraný,Horní Kamenice,I", + "isMetro": false, + "latitude": 14.060803, + "longitude": 50.323025, + "stopId": "U9116" + }, + { + "id": "U9116Z2", + "name": "Vraný,Horní Kamenice,I", + "isMetro": false, + "latitude": 14.061001, + "longitude": 50.322971, + "stopId": "U9116" + }, + { + "id": "U9117Z1", + "name": "Vraný,Lukov", + "isMetro": false, + "latitude": 14.054415, + "longitude": 50.337132, + "stopId": "U9117" + }, + { + "id": "U9117Z2", + "name": "Vraný,Lukov", + "isMetro": false, + "latitude": 14.054527, + "longitude": 50.337143, + "stopId": "U9117" + }, + { + "id": "U9119Z1", + "name": "Páleč", + "isMetro": false, + "latitude": 14.049145, + "longitude": 50.311623, + "stopId": "U9119" + }, + { + "id": "U911Z1", + "name": "Zemanka", + "isMetro": false, + "latitude": 14.422967, + "longitude": 50.039284, + "stopId": "U911" + }, + { + "id": "U911Z2", + "name": "Zemanka", + "isMetro": false, + "latitude": 14.423401, + "longitude": 50.039066, + "stopId": "U911" + }, + { + "id": "U9121Z1", + "name": "Jarpice", + "isMetro": false, + "latitude": 14.086193, + "longitude": 50.319324, + "stopId": "U9121" + }, + { + "id": "U9121Z2", + "name": "Jarpice", + "isMetro": false, + "latitude": 14.08629, + "longitude": 50.319363, + "stopId": "U9121" + }, + { + "id": "U9123Z1", + "name": "Šlapanice", + "isMetro": false, + "latitude": 14.109577, + "longitude": 50.313782, + "stopId": "U9123" + }, + { + "id": "U9123Z2", + "name": "Šlapanice", + "isMetro": false, + "latitude": 14.109565, + "longitude": 50.313671, + "stopId": "U9123" + }, + { + "id": "U9124Z1", + "name": "Šlapanice,dvůr", + "isMetro": false, + "latitude": 14.096858, + "longitude": 50.316704, + "stopId": "U9124" + }, + { + "id": "U9124Z2", + "name": "Šlapanice,dvůr", + "isMetro": false, + "latitude": 14.096969, + "longitude": 50.316803, + "stopId": "U9124" + }, + { + "id": "U9125Z1", + "name": "Šlapanice,samota", + "isMetro": false, + "latitude": 14.122155, + "longitude": 50.31081, + "stopId": "U9125" + }, + { + "id": "U9125Z2", + "name": "Šlapanice,samota", + "isMetro": false, + "latitude": 14.122156, + "longitude": 50.310719, + "stopId": "U9125" + }, + { + "id": "U9126Z1", + "name": "Šlapanice,zámek", + "isMetro": false, + "latitude": 14.100766, + "longitude": 50.315662, + "stopId": "U9126" + }, + { + "id": "U9126Z2", + "name": "Šlapanice,zámek", + "isMetro": false, + "latitude": 14.100835, + "longitude": 50.315746, + "stopId": "U9126" + }, + { + "id": "U9127Z1", + "name": "Poštovice", + "isMetro": false, + "latitude": 14.137828, + "longitude": 50.312817, + "stopId": "U9127" + }, + { + "id": "U9127Z2", + "name": "Poštovice", + "isMetro": false, + "latitude": 14.137941, + "longitude": 50.312744, + "stopId": "U9127" + }, + { + "id": "U9128Z1", + "name": "Kmetiněves", + "isMetro": false, + "latitude": 14.156433, + "longitude": 50.308681, + "stopId": "U9128" + }, + { + "id": "U9128Z2", + "name": "Kmetiněves", + "isMetro": false, + "latitude": 14.156306, + "longitude": 50.308708, + "stopId": "U9128" + }, + { + "id": "U912Z1", + "name": "Zhořelecká", + "isMetro": false, + "latitude": 14.418016, + "longitude": 50.131344, + "stopId": "U912" + }, + { + "id": "U912Z2", + "name": "Zhořelecká", + "isMetro": false, + "latitude": 14.416973, + "longitude": 50.131157, + "stopId": "U912" + }, + { + "id": "U912Z3", + "name": "Zhořelecká", + "isMetro": false, + "latitude": 14.417663, + "longitude": 50.130852, + "stopId": "U912" + }, + { + "id": "U912Z4", + "name": "Zhořelecká", + "isMetro": false, + "latitude": 14.417217, + "longitude": 50.130619, + "stopId": "U912" + }, + { + "id": "U9131Z1", + "name": "Hospozín,ObÚ", + "isMetro": false, + "latitude": 14.170564, + "longitude": 50.304146, + "stopId": "U9131" + }, + { + "id": "U9131Z2", + "name": "Hospozín,ObÚ", + "isMetro": false, + "latitude": 14.170705, + "longitude": 50.304127, + "stopId": "U9131" + }, + { + "id": "U9133Z1", + "name": "Hospozín,nad kostelem", + "isMetro": false, + "latitude": 14.173886, + "longitude": 50.307629, + "stopId": "U9133" + }, + { + "id": "U9133Z2", + "name": "Hospozín,nad kostelem", + "isMetro": false, + "latitude": 14.173719, + "longitude": 50.307556, + "stopId": "U9133" + }, + { + "id": "U9135Z1", + "name": "Černuc", + "isMetro": false, + "latitude": 14.202745, + "longitude": 50.301086, + "stopId": "U9135" + }, + { + "id": "U9135Z2", + "name": "Černuc", + "isMetro": false, + "latitude": 14.202761, + "longitude": 50.301006, + "stopId": "U9135" + }, + { + "id": "U913Z1", + "name": "Halenkovská", + "isMetro": false, + "latitude": 14.286867, + "longitude": 50.062885, + "stopId": "U913" + }, + { + "id": "U913Z2", + "name": "Halenkovská", + "isMetro": false, + "latitude": 14.287167, + "longitude": 50.062267, + "stopId": "U913" + }, + { + "id": "U913Z3", + "name": "Halenkovská", + "isMetro": false, + "latitude": 14.285983, + "longitude": 50.063099, + "stopId": "U913" + }, + { + "id": "U913Z4", + "name": "Halenkovská", + "isMetro": false, + "latitude": 14.286084, + "longitude": 50.062904, + "stopId": "U913" + }, + { + "id": "U9142Z1", + "name": "Chržín", + "isMetro": false, + "latitude": 14.269971, + "longitude": 50.29504, + "stopId": "U9142" + }, + { + "id": "U9142Z2", + "name": "Chržín", + "isMetro": false, + "latitude": 14.270041, + "longitude": 50.29512, + "stopId": "U9142" + }, + { + "id": "U9144Z1", + "name": "Chržín,u mostu", + "isMetro": false, + "latitude": 14.266341, + "longitude": 50.296555, + "stopId": "U9144" + }, + { + "id": "U9144Z2", + "name": "Chržín,u mostu", + "isMetro": false, + "latitude": 14.26641, + "longitude": 50.296616, + "stopId": "U9144" + }, + { + "id": "U9145Z1", + "name": "Sazená", + "isMetro": false, + "latitude": 14.28706, + "longitude": 50.304764, + "stopId": "U9145" + }, + { + "id": "U9145Z2", + "name": "Sazená", + "isMetro": false, + "latitude": 14.287171, + "longitude": 50.304775, + "stopId": "U9145" + }, + { + "id": "U9146Z1", + "name": "Uhy", + "isMetro": false, + "latitude": 14.273743, + "longitude": 50.286991, + "stopId": "U9146" + }, + { + "id": "U9146Z2", + "name": "Uhy", + "isMetro": false, + "latitude": 14.273798, + "longitude": 50.287045, + "stopId": "U9146" + }, + { + "id": "U9149Z1", + "name": "Velvary,Nové Uhy", + "isMetro": false, + "latitude": 14.256278, + "longitude": 50.284271, + "stopId": "U9149" + }, + { + "id": "U9149Z2", + "name": "Velvary,Nové Uhy", + "isMetro": false, + "latitude": 14.256201, + "longitude": 50.284187, + "stopId": "U9149" + }, + { + "id": "U914Z1", + "name": "Zlíchov", + "isMetro": false, + "latitude": 14.408097, + "longitude": 50.04657, + "stopId": "U914" + }, + { + "id": "U914Z2", + "name": "Zlíchov", + "isMetro": false, + "latitude": 14.407577, + "longitude": 50.045776, + "stopId": "U914" + }, + { + "id": "U914Z3", + "name": "Zlíchov", + "isMetro": false, + "latitude": 14.40727, + "longitude": 50.045773, + "stopId": "U914" + }, + { + "id": "U9158Z1", + "name": "Žižice,Luníkov", + "isMetro": false, + "latitude": 14.160532, + "longitude": 50.254436, + "stopId": "U9158" + }, + { + "id": "U9158Z2", + "name": "Žižice,Luníkov", + "isMetro": false, + "latitude": 14.160633, + "longitude": 50.254314, + "stopId": "U9158" + }, + { + "id": "U9159Z1", + "name": "Žižice,nad hřištěm", + "isMetro": false, + "latitude": 14.146545, + "longitude": 50.248554, + "stopId": "U9159" + }, + { + "id": "U9159Z2", + "name": "Žižice,nad hřištěm", + "isMetro": false, + "latitude": 14.146882, + "longitude": 50.24855, + "stopId": "U9159" + }, + { + "id": "U915Z1", + "name": "Zmrzlík", + "isMetro": false, + "latitude": 14.312634, + "longitude": 50.010868, + "stopId": "U915" + }, + { + "id": "U915Z2", + "name": "Zmrzlík", + "isMetro": false, + "latitude": 14.3131, + "longitude": 50.012684, + "stopId": "U915" + }, + { + "id": "U9161Z1", + "name": "Žižice,Vítov", + "isMetro": false, + "latitude": 14.140514, + "longitude": 50.246334, + "stopId": "U9161" + }, + { + "id": "U9161Z2", + "name": "Žižice,Vítov", + "isMetro": false, + "latitude": 14.140711, + "longitude": 50.246292, + "stopId": "U9161" + }, + { + "id": "U9162Z401", + "name": "Ostrov", + "isMetro": false, + "latitude": 14.011665, + "longitude": 49.610458, + "stopId": "U9162" + }, + { + "id": "U9162Z402", + "name": "Ostrov", + "isMetro": false, + "latitude": 14.011746, + "longitude": 49.610477, + "stopId": "U9162" + }, + { + "id": "U9164Z1", + "name": "Malý Újezd,Vavřineč", + "isMetro": false, + "latitude": 14.550728, + "longitude": 50.323963, + "stopId": "U9164" + }, + { + "id": "U9164Z2", + "name": "Malý Újezd,Vavřineč", + "isMetro": false, + "latitude": 14.550782, + "longitude": 50.324154, + "stopId": "U9164" + }, + { + "id": "U9165Z1", + "name": "Liblice", + "isMetro": false, + "latitude": 14.590943, + "longitude": 50.31274, + "stopId": "U9165" + }, + { + "id": "U9165Z2", + "name": "Liblice", + "isMetro": false, + "latitude": 14.590928, + "longitude": 50.312946, + "stopId": "U9165" + }, + { + "id": "U9166Z1", + "name": "Byšice", + "isMetro": false, + "latitude": 14.606339, + "longitude": 50.310955, + "stopId": "U9166" + }, + { + "id": "U9166Z2", + "name": "Byšice", + "isMetro": false, + "latitude": 14.606729, + "longitude": 50.31105, + "stopId": "U9166" + }, + { + "id": "U9169Z1", + "name": "Čečelice", + "isMetro": false, + "latitude": 14.617273, + "longitude": 50.294331, + "stopId": "U9169" + }, + { + "id": "U9169Z2", + "name": "Čečelice", + "isMetro": false, + "latitude": 14.617658, + "longitude": 50.294106, + "stopId": "U9169" + }, + { + "id": "U916Z1", + "name": "Ke Kateřinkám", + "isMetro": false, + "latitude": 14.515573, + "longitude": 50.025379, + "stopId": "U916" + }, + { + "id": "U916Z2", + "name": "Ke Kateřinkám", + "isMetro": false, + "latitude": 14.515051, + "longitude": 50.025417, + "stopId": "U916" + }, + { + "id": "U916Z3", + "name": "Ke Kateřinkám", + "isMetro": false, + "latitude": 14.514743, + "longitude": 50.024551, + "stopId": "U916" + }, + { + "id": "U916Z4", + "name": "Ke Kateřinkám", + "isMetro": false, + "latitude": 14.514918, + "longitude": 50.024422, + "stopId": "U916" + }, + { + "id": "U9174Z1", + "name": "Mělnické Vtelno,Vysoká Libeň", + "isMetro": false, + "latitude": 14.668259, + "longitude": 50.345886, + "stopId": "U9174" + }, + { + "id": "U9174Z2", + "name": "Mělnické Vtelno,Vysoká Libeň", + "isMetro": false, + "latitude": 14.668003, + "longitude": 50.345901, + "stopId": "U9174" + }, + { + "id": "U9175Z1", + "name": "Mělnické Vtelno,Radouň", + "isMetro": false, + "latitude": 14.67776, + "longitude": 50.348198, + "stopId": "U9175" + }, + { + "id": "U9175Z2", + "name": "Mělnické Vtelno,Radouň", + "isMetro": false, + "latitude": 14.676649, + "longitude": 50.348183, + "stopId": "U9175" + }, + { + "id": "U9176Z1", + "name": "Mělnické Vtelno", + "isMetro": false, + "latitude": 14.695196, + "longitude": 50.352509, + "stopId": "U9176" + }, + { + "id": "U9176Z2", + "name": "Mělnické Vtelno", + "isMetro": false, + "latitude": 14.695083, + "longitude": 50.352642, + "stopId": "U9176" + }, + { + "id": "U9177Z1", + "name": "Chorušice,Zahájí", + "isMetro": false, + "latitude": 14.667397, + "longitude": 50.375679, + "stopId": "U9177" + }, + { + "id": "U9177Z2", + "name": "Chorušice,Zahájí", + "isMetro": false, + "latitude": 14.667384, + "longitude": 50.375462, + "stopId": "U9177" + }, + { + "id": "U9178Z1", + "name": "Chorušice", + "isMetro": false, + "latitude": 14.671907, + "longitude": 50.390202, + "stopId": "U9178" + }, + { + "id": "U9179Z1", + "name": "Chorušice,Velký Újezd,bytovky", + "isMetro": false, + "latitude": 14.63155, + "longitude": 50.408257, + "stopId": "U9179" + }, + { + "id": "U917Z1", + "name": "Žabovřesky", + "isMetro": false, + "latitude": 14.383162, + "longitude": 49.964825, + "stopId": "U917" + }, + { + "id": "U917Z2", + "name": "Žabovřesky", + "isMetro": false, + "latitude": 14.38409, + "longitude": 49.965431, + "stopId": "U917" + }, + { + "id": "U9180Z1", + "name": "Chorušice,Velký Újezd", + "isMetro": false, + "latitude": 14.626283, + "longitude": 50.40905, + "stopId": "U9180" + }, + { + "id": "U9180Z2", + "name": "Chorušice,Velký Újezd", + "isMetro": false, + "latitude": 14.626057, + "longitude": 50.409103, + "stopId": "U9180" + }, + { + "id": "U9181Z1", + "name": "Kanina", + "isMetro": false, + "latitude": 14.599804, + "longitude": 50.424534, + "stopId": "U9181" + }, + { + "id": "U9182Z1", + "name": "Mšeno", + "isMetro": false, + "latitude": 14.632555, + "longitude": 50.438358, + "stopId": "U9182" + }, + { + "id": "U9183Z1", + "name": "Mšeno,Mělnická", + "isMetro": false, + "latitude": 14.628217, + "longitude": 50.435135, + "stopId": "U9183" + }, + { + "id": "U9183Z2", + "name": "Mšeno,Mělnická", + "isMetro": false, + "latitude": 14.627921, + "longitude": 50.435143, + "stopId": "U9183" + }, + { + "id": "U9184Z1", + "name": "Dobřeň,Střezivojice", + "isMetro": false, + "latitude": 14.55701, + "longitude": 50.490929, + "stopId": "U9184" + }, + { + "id": "U9184Z2", + "name": "Dobřeň,Střezivojice", + "isMetro": false, + "latitude": 14.556868, + "longitude": 50.491096, + "stopId": "U9184" + }, + { + "id": "U9185Z1", + "name": "Dobřeň", + "isMetro": false, + "latitude": 14.557654, + "longitude": 50.478481, + "stopId": "U9185" + }, + { + "id": "U9185Z2", + "name": "Dobřeň", + "isMetro": false, + "latitude": 14.557742, + "longitude": 50.478355, + "stopId": "U9185" + }, + { + "id": "U9186Z1", + "name": "Dobřeň,na Špičáku", + "isMetro": false, + "latitude": 14.567852, + "longitude": 50.471794, + "stopId": "U9186" + }, + { + "id": "U9186Z2", + "name": "Dobřeň,na Špičáku", + "isMetro": false, + "latitude": 14.567627, + "longitude": 50.471703, + "stopId": "U9186" + }, + { + "id": "U9187Z1", + "name": "Dobřeň,Jestřebice", + "isMetro": false, + "latitude": 14.571007, + "longitude": 50.462494, + "stopId": "U9187" + }, + { + "id": "U9187Z2", + "name": "Dobřeň,Jestřebice", + "isMetro": false, + "latitude": 14.570739, + "longitude": 50.462528, + "stopId": "U9187" + }, + { + "id": "U9188Z1", + "name": "Dobřeň,Jestřebice,Malá Jestřebice", + "isMetro": false, + "latitude": 14.568461, + "longitude": 50.456734, + "stopId": "U9188" + }, + { + "id": "U9188Z2", + "name": "Dobřeň,Jestřebice,Malá Jestřebice", + "isMetro": false, + "latitude": 14.568154, + "longitude": 50.45673, + "stopId": "U9188" + }, + { + "id": "U918Z1", + "name": "Žákovská", + "isMetro": false, + "latitude": 14.372606, + "longitude": 50.125969, + "stopId": "U918" + }, + { + "id": "U918Z2", + "name": "Žákovská", + "isMetro": false, + "latitude": 14.371843, + "longitude": 50.125885, + "stopId": "U918" + }, + { + "id": "U9192Z1", + "name": "Kokořín", + "isMetro": false, + "latitude": 14.567263, + "longitude": 50.429901, + "stopId": "U9192" + }, + { + "id": "U9192Z2", + "name": "Kokořín", + "isMetro": false, + "latitude": 14.567106, + "longitude": 50.430035, + "stopId": "U9192" + }, + { + "id": "U9193Z1", + "name": "Kokořín,Janova Ves", + "isMetro": false, + "latitude": 14.559159, + "longitude": 50.423424, + "stopId": "U9193" + }, + { + "id": "U9193Z2", + "name": "Kokořín,Janova Ves", + "isMetro": false, + "latitude": 14.558891, + "longitude": 50.423512, + "stopId": "U9193" + }, + { + "id": "U9194Z1", + "name": "Vysoká,Bosyně", + "isMetro": false, + "latitude": 14.545678, + "longitude": 50.41618, + "stopId": "U9194" + }, + { + "id": "U9194Z2", + "name": "Vysoká,Bosyně", + "isMetro": false, + "latitude": 14.545634, + "longitude": 50.416306, + "stopId": "U9194" + }, + { + "id": "U9195Z1", + "name": "Vysoká", + "isMetro": false, + "latitude": 14.537176, + "longitude": 50.412254, + "stopId": "U9195" + }, + { + "id": "U9195Z2", + "name": "Vysoká", + "isMetro": false, + "latitude": 14.537062, + "longitude": 50.412441, + "stopId": "U9195" + }, + { + "id": "U9196Z1", + "name": "Vysoká,Střednice", + "isMetro": false, + "latitude": 14.520358, + "longitude": 50.405849, + "stopId": "U9196" + }, + { + "id": "U9196Z2", + "name": "Vysoká,Střednice", + "isMetro": false, + "latitude": 14.520091, + "longitude": 50.405872, + "stopId": "U9196" + }, + { + "id": "U9197Z1", + "name": "Uhy,zámek", + "isMetro": false, + "latitude": 14.272468, + "longitude": 50.284077, + "stopId": "U9197" + }, + { + "id": "U9197Z2", + "name": "Uhy,zámek", + "isMetro": false, + "latitude": 14.274125, + "longitude": 50.284519, + "stopId": "U9197" + }, + { + "id": "U9198Z1", + "name": "Slaný,Blahotice", + "isMetro": false, + "latitude": 14.121547, + "longitude": 50.23785, + "stopId": "U9198" + }, + { + "id": "U9198Z2", + "name": "Slaný,Blahotice", + "isMetro": false, + "latitude": 14.121049, + "longitude": 50.237522, + "stopId": "U9198" + }, + { + "id": "U9199Z1", + "name": "Beřovice", + "isMetro": false, + "latitude": 14.123553, + "longitude": 50.268314, + "stopId": "U9199" + }, + { + "id": "U9199Z2", + "name": "Beřovice", + "isMetro": false, + "latitude": 14.123634, + "longitude": 50.268505, + "stopId": "U9199" + }, + { + "id": "U919Z1", + "name": "Nové Pitkovice", + "isMetro": false, + "latitude": 14.58531, + "longitude": 50.017204, + "stopId": "U919" + }, + { + "id": "U919Z2", + "name": "Nové Pitkovice", + "isMetro": false, + "latitude": 14.584557, + "longitude": 50.017208, + "stopId": "U919" + }, + { + "id": "U91Z1", + "name": "Dobronická", + "isMetro": false, + "latitude": 14.471467, + "longitude": 50.010983, + "stopId": "U91" + }, + { + "id": "U91Z2", + "name": "Dobronická", + "isMetro": false, + "latitude": 14.47245, + "longitude": 50.011051, + "stopId": "U91" + }, + { + "id": "U9200Z1", + "name": "Beřovice,Bakov", + "isMetro": false, + "latitude": 14.095804, + "longitude": 50.265648, + "stopId": "U9200" + }, + { + "id": "U9200Z2", + "name": "Beřovice,Bakov", + "isMetro": false, + "latitude": 14.095998, + "longitude": 50.265785, + "stopId": "U9200" + }, + { + "id": "U9201Z1", + "name": "Beřovice,horní", + "isMetro": false, + "latitude": 14.119154, + "longitude": 50.265808, + "stopId": "U9201" + }, + { + "id": "U9201Z2", + "name": "Beřovice,horní", + "isMetro": false, + "latitude": 14.119392, + "longitude": 50.265793, + "stopId": "U9201" + }, + { + "id": "U9202Z1", + "name": "Zlonice", + "isMetro": false, + "latitude": 14.092207, + "longitude": 50.288437, + "stopId": "U9202" + }, + { + "id": "U9202Z2", + "name": "Zlonice", + "isMetro": false, + "latitude": 14.092298, + "longitude": 50.288181, + "stopId": "U9202" + }, + { + "id": "U9202Z3", + "name": "Zlonice", + "isMetro": false, + "latitude": 14.091997, + "longitude": 50.288082, + "stopId": "U9202" + }, + { + "id": "U9202Z4", + "name": "Zlonice", + "isMetro": false, + "latitude": 14.092381, + "longitude": 50.287979, + "stopId": "U9202" + }, + { + "id": "U9203Z1", + "name": "Zlonice,Břešťany", + "isMetro": false, + "latitude": 14.115535, + "longitude": 50.283215, + "stopId": "U9203" + }, + { + "id": "U9203Z2", + "name": "Zlonice,Břešťany", + "isMetro": false, + "latitude": 14.115518, + "longitude": 50.283421, + "stopId": "U9203" + }, + { + "id": "U9207Z1", + "name": "Zlonice,Husova", + "isMetro": false, + "latitude": 14.099607, + "longitude": 50.285583, + "stopId": "U9207" + }, + { + "id": "U9207Z2", + "name": "Zlonice,Husova", + "isMetro": false, + "latitude": 14.099582, + "longitude": 50.285492, + "stopId": "U9207" + }, + { + "id": "U9209Z1", + "name": "Zlonice,Tmáň", + "isMetro": false, + "latitude": 14.131676, + "longitude": 50.282913, + "stopId": "U9209" + }, + { + "id": "U9209Z2", + "name": "Zlonice,Tmáň", + "isMetro": false, + "latitude": 14.131773, + "longitude": 50.282978, + "stopId": "U9209" + }, + { + "id": "U9211Z51", + "name": "Zlonice,Vyšínek", + "isMetro": false, + "latitude": 14.073383, + "longitude": 50.29784, + "stopId": "U9211" + }, + { + "id": "U9211Z52", + "name": "Zlonice,Vyšínek", + "isMetro": false, + "latitude": 14.073503, + "longitude": 50.297684, + "stopId": "U9211" + }, + { + "id": "U9217Z1", + "name": "Lety,Obchodní centrum", + "isMetro": false, + "latitude": 14.259706, + "longitude": 49.923645, + "stopId": "U9217" + }, + { + "id": "U9217Z2", + "name": "Lety,Obchodní centrum", + "isMetro": false, + "latitude": 14.260092, + "longitude": 49.923908, + "stopId": "U9217" + }, + { + "id": "U921Z1", + "name": "Želivského", + "isMetro": false, + "latitude": 14.474258, + "longitude": 50.078415, + "stopId": "U921" + }, + { + "id": "U921Z10", + "name": "Želivského", + "isMetro": false, + "latitude": 14.472971, + "longitude": 50.077766, + "stopId": "U921" + }, + { + "id": "U921Z101", + "name": "Želivského", + "isMetro": true, + "latitude": 14.475408, + "longitude": 50.078196, + "stopId": "U921" + }, + { + "id": "U921Z102", + "name": "Želivského", + "isMetro": true, + "latitude": 14.475556, + "longitude": 50.078355, + "stopId": "U921" + }, + { + "id": "U921Z12", + "name": "Želivského", + "isMetro": false, + "latitude": 14.472616, + "longitude": 50.079723, + "stopId": "U921" + }, + { + "id": "U921Z2", + "name": "Želivského", + "isMetro": false, + "latitude": 14.475065, + "longitude": 50.078197, + "stopId": "U921" + }, + { + "id": "U921Z3", + "name": "Želivského", + "isMetro": false, + "latitude": 14.470504, + "longitude": 50.078346, + "stopId": "U921" + }, + { + "id": "U921Z4", + "name": "Želivského", + "isMetro": false, + "latitude": 14.471673, + "longitude": 50.078331, + "stopId": "U921" + }, + { + "id": "U921Z5", + "name": "Želivského", + "isMetro": false, + "latitude": 14.473884, + "longitude": 50.078842, + "stopId": "U921" + }, + { + "id": "U921Z6", + "name": "Želivského", + "isMetro": false, + "latitude": 14.475474, + "longitude": 50.079163, + "stopId": "U921" + }, + { + "id": "U921Z7", + "name": "Želivského", + "isMetro": false, + "latitude": 14.4739, + "longitude": 50.078686, + "stopId": "U921" + }, + { + "id": "U921Z9", + "name": "Želivského", + "isMetro": false, + "latitude": 14.475324, + "longitude": 50.078377, + "stopId": "U921" + }, + { + "id": "U9225Z1", + "name": "Královice", + "isMetro": false, + "latitude": 14.05663, + "longitude": 50.262138, + "stopId": "U9225" + }, + { + "id": "U9225Z2", + "name": "Královice", + "isMetro": false, + "latitude": 14.056713, + "longitude": 50.262199, + "stopId": "U9225" + }, + { + "id": "U9226Z1", + "name": "Neprobylice", + "isMetro": false, + "latitude": 14.027971, + "longitude": 50.263176, + "stopId": "U9226" + }, + { + "id": "U9226Z2", + "name": "Neprobylice", + "isMetro": false, + "latitude": 14.028096, + "longitude": 50.263248, + "stopId": "U9226" + }, + { + "id": "U9227Z1", + "name": "Kutrovice", + "isMetro": false, + "latitude": 14.018627, + "longitude": 50.261311, + "stopId": "U9227" + }, + { + "id": "U9227Z2", + "name": "Kutrovice", + "isMetro": false, + "latitude": 14.018597, + "longitude": 50.26141, + "stopId": "U9227" + }, + { + "id": "U9229Z1", + "name": "Kvílice,II", + "isMetro": false, + "latitude": 14.005487, + "longitude": 50.258564, + "stopId": "U9229" + }, + { + "id": "U9229Z2", + "name": "Kvílice,II", + "isMetro": false, + "latitude": 14.005401, + "longitude": 50.25869, + "stopId": "U9229" + }, + { + "id": "U922Z3", + "name": "Ženské domovy", + "isMetro": false, + "latitude": 14.400691, + "longitude": 50.068569, + "stopId": "U922" + }, + { + "id": "U9231Z1", + "name": "Třebíz", + "isMetro": false, + "latitude": 13.993706, + "longitude": 50.269978, + "stopId": "U9231" + }, + { + "id": "U9231Z2", + "name": "Třebíz", + "isMetro": false, + "latitude": 13.993704, + "longitude": 50.270069, + "stopId": "U9231" + }, + { + "id": "U9232Z1", + "name": "Hořešovice", + "isMetro": false, + "latitude": 13.965372, + "longitude": 50.270557, + "stopId": "U9232" + }, + { + "id": "U9232Z2", + "name": "Hořešovice", + "isMetro": false, + "latitude": 13.964967, + "longitude": 50.270428, + "stopId": "U9232" + }, + { + "id": "U9233Z1", + "name": "Hořešovičky", + "isMetro": false, + "latitude": 13.956139, + "longitude": 50.274593, + "stopId": "U9233" + }, + { + "id": "U9233Z2", + "name": "Hořešovičky", + "isMetro": false, + "latitude": 13.956307, + "longitude": 50.274586, + "stopId": "U9233" + }, + { + "id": "U923Z1", + "name": "Žežulka", + "isMetro": false, + "latitude": 14.381783, + "longitude": 50.118534, + "stopId": "U923" + }, + { + "id": "U923Z2", + "name": "Žežulka", + "isMetro": false, + "latitude": 14.382217, + "longitude": 50.118534, + "stopId": "U923" + }, + { + "id": "U9244Z1", + "name": "Jedomělice", + "isMetro": false, + "latitude": 13.973933, + "longitude": 50.233135, + "stopId": "U9244" + }, + { + "id": "U9244Z2", + "name": "Jedomělice", + "isMetro": false, + "latitude": 13.97393, + "longitude": 50.233307, + "stopId": "U9244" + }, + { + "id": "U9246Z1", + "name": "Jedomělice,u hřiště", + "isMetro": false, + "latitude": 13.970018, + "longitude": 50.230762, + "stopId": "U9246" + }, + { + "id": "U9246Z2", + "name": "Jedomělice,u hřiště", + "isMetro": false, + "latitude": 13.969851, + "longitude": 50.230743, + "stopId": "U9246" + }, + { + "id": "U9248Z1", + "name": "Malíkovice,Hlína", + "isMetro": false, + "latitude": 13.95923, + "longitude": 50.219383, + "stopId": "U9248" + }, + { + "id": "U9248Z2", + "name": "Malíkovice,Hlína", + "isMetro": false, + "latitude": 13.959115, + "longitude": 50.219429, + "stopId": "U9248" + }, + { + "id": "U9249Z1", + "name": "Malíkovice,Hvězda", + "isMetro": false, + "latitude": 13.979369, + "longitude": 50.221432, + "stopId": "U9249" + }, + { + "id": "U9249Z2", + "name": "Malíkovice,Hvězda", + "isMetro": false, + "latitude": 13.979354, + "longitude": 50.221512, + "stopId": "U9249" + }, + { + "id": "U924Z1", + "name": "Na Pazderce", + "isMetro": false, + "latitude": 14.417513, + "longitude": 50.125065, + "stopId": "U924" + }, + { + "id": "U924Z2", + "name": "Na Pazderce", + "isMetro": false, + "latitude": 14.418274, + "longitude": 50.125175, + "stopId": "U924" + }, + { + "id": "U9250Z1", + "name": "Malíkovice,Hvězda,horní", + "isMetro": false, + "latitude": 13.9743, + "longitude": 50.220596, + "stopId": "U9250" + }, + { + "id": "U9250Z2", + "name": "Malíkovice,Hvězda,horní", + "isMetro": false, + "latitude": 13.974257, + "longitude": 50.220715, + "stopId": "U9250" + }, + { + "id": "U9252Z1", + "name": "Tuřany", + "isMetro": false, + "latitude": 14.031357, + "longitude": 50.231056, + "stopId": "U9252" + }, + { + "id": "U9252Z2", + "name": "Tuřany", + "isMetro": false, + "latitude": 14.031285, + "longitude": 50.231144, + "stopId": "U9252" + }, + { + "id": "U9253Z1", + "name": "Tuřany,Byseň", + "isMetro": false, + "latitude": 14.035298, + "longitude": 50.236473, + "stopId": "U9253" + }, + { + "id": "U9254Z1", + "name": "Tuřany,Byseň,rozc.", + "isMetro": false, + "latitude": 14.041203, + "longitude": 50.232792, + "stopId": "U9254" + }, + { + "id": "U9254Z2", + "name": "Tuřany,Byseň,rozc.", + "isMetro": false, + "latitude": 14.041144, + "longitude": 50.23291, + "stopId": "U9254" + }, + { + "id": "U9256Z1", + "name": "Tuřany,u školy", + "isMetro": false, + "latitude": 14.028065, + "longitude": 50.232376, + "stopId": "U9256" + }, + { + "id": "U9256Z2", + "name": "Tuřany,u školy", + "isMetro": false, + "latitude": 14.028034, + "longitude": 50.232494, + "stopId": "U9256" + }, + { + "id": "U9257Z1", + "name": "Libovice", + "isMetro": false, + "latitude": 14.017306, + "longitude": 50.234848, + "stopId": "U9257" + }, + { + "id": "U9257Z2", + "name": "Libovice", + "isMetro": false, + "latitude": 14.017289, + "longitude": 50.234974, + "stopId": "U9257" + }, + { + "id": "U9258Z1", + "name": "Libovice,Kejkol", + "isMetro": false, + "latitude": 14.001394, + "longitude": 50.234318, + "stopId": "U9258" + }, + { + "id": "U9258Z2", + "name": "Libovice,Kejkol", + "isMetro": false, + "latitude": 14.001293, + "longitude": 50.234444, + "stopId": "U9258" + }, + { + "id": "U9259Z1", + "name": "Libovice,rozc.", + "isMetro": false, + "latitude": 14.022042, + "longitude": 50.235592, + "stopId": "U9259" + }, + { + "id": "U925Z1", + "name": "Dunajecká", + "isMetro": false, + "latitude": 14.426627, + "longitude": 50.125729, + "stopId": "U925" + }, + { + "id": "U925Z2", + "name": "Dunajecká", + "isMetro": false, + "latitude": 14.42625, + "longitude": 50.125381, + "stopId": "U925" + }, + { + "id": "U9265Z1", + "name": "Slaný,Dolín,I", + "isMetro": false, + "latitude": 14.111819, + "longitude": 50.250507, + "stopId": "U9265" + }, + { + "id": "U9265Z2", + "name": "Slaný,Dolín,I", + "isMetro": false, + "latitude": 14.112061, + "longitude": 50.25061, + "stopId": "U9265" + }, + { + "id": "U9266Z1", + "name": "Slaný,Dolín,II", + "isMetro": false, + "latitude": 14.1154, + "longitude": 50.253365, + "stopId": "U9266" + }, + { + "id": "U9266Z2", + "name": "Slaný,Dolín,II", + "isMetro": false, + "latitude": 14.115417, + "longitude": 50.253258, + "stopId": "U9266" + }, + { + "id": "U9267Z1", + "name": "Slaný,Farma", + "isMetro": false, + "latitude": 14.09432, + "longitude": 50.238853, + "stopId": "U9267" + }, + { + "id": "U9267Z2", + "name": "Slaný,Farma", + "isMetro": false, + "latitude": 14.094351, + "longitude": 50.238758, + "stopId": "U9267" + }, + { + "id": "U9268Z1", + "name": "Slaný,Prům.zóna sever", + "isMetro": false, + "latitude": 14.094908, + "longitude": 50.241169, + "stopId": "U9268" + }, + { + "id": "U9268Z2", + "name": "Slaný,Prům.zóna sever", + "isMetro": false, + "latitude": 14.095104, + "longitude": 50.241161, + "stopId": "U9268" + }, + { + "id": "U9269Z1", + "name": "Slaný,Nosačická", + "isMetro": false, + "latitude": 14.087085, + "longitude": 50.233864, + "stopId": "U9269" + }, + { + "id": "U9269Z2", + "name": "Slaný,Nosačická", + "isMetro": false, + "latitude": 14.087323, + "longitude": 50.233837, + "stopId": "U9269" + }, + { + "id": "U926Z1", + "name": "Nad Běchovicemi", + "isMetro": false, + "latitude": 14.623284, + "longitude": 50.092102, + "stopId": "U926" + }, + { + "id": "U926Z2", + "name": "Nad Běchovicemi", + "isMetro": false, + "latitude": 14.623918, + "longitude": 50.092632, + "stopId": "U926" + }, + { + "id": "U9272Z1", + "name": "Slaný,Želevčice", + "isMetro": false, + "latitude": 14.09691, + "longitude": 50.257603, + "stopId": "U9272" + }, + { + "id": "U9272Z2", + "name": "Slaný,Želevčice", + "isMetro": false, + "latitude": 14.096742, + "longitude": 50.256855, + "stopId": "U9272" + }, + { + "id": "U9274Z1", + "name": "Slaný,Želevčice,Rozc.", + "isMetro": false, + "latitude": 14.114586, + "longitude": 50.259491, + "stopId": "U9274" + }, + { + "id": "U9274Z2", + "name": "Slaný,Želevčice,Rozc.", + "isMetro": false, + "latitude": 14.114795, + "longitude": 50.259575, + "stopId": "U9274" + }, + { + "id": "U9275Z1", + "name": "Přelíc", + "isMetro": false, + "latitude": 14.04172, + "longitude": 50.206993, + "stopId": "U9275" + }, + { + "id": "U9275Z2", + "name": "Přelíc", + "isMetro": false, + "latitude": 14.041593, + "longitude": 50.207085, + "stopId": "U9275" + }, + { + "id": "U9276Z1", + "name": "Přelíc,samota", + "isMetro": false, + "latitude": 14.048267, + "longitude": 50.209564, + "stopId": "U9276" + }, + { + "id": "U9276Z2", + "name": "Přelíc,samota", + "isMetro": false, + "latitude": 14.048223, + "longitude": 50.209644, + "stopId": "U9276" + }, + { + "id": "U9279Z1", + "name": "Drnek,hl.sil.", + "isMetro": false, + "latitude": 13.925696, + "longitude": 50.212292, + "stopId": "U9279" + }, + { + "id": "U9279Z2", + "name": "Drnek,hl.sil.", + "isMetro": false, + "latitude": 13.925596, + "longitude": 50.212379, + "stopId": "U9279" + }, + { + "id": "U927Z1", + "name": "Družná", + "isMetro": false, + "latitude": 14.4168, + "longitude": 50.012066, + "stopId": "U927" + }, + { + "id": "U927Z2", + "name": "Družná", + "isMetro": false, + "latitude": 14.417168, + "longitude": 50.012268, + "stopId": "U927" + }, + { + "id": "U9280Z1", + "name": "Ledce,náves", + "isMetro": false, + "latitude": 14.004212, + "longitude": 50.196564, + "stopId": "U9280" + }, + { + "id": "U9280Z2", + "name": "Ledce,náves", + "isMetro": false, + "latitude": 14.004031, + "longitude": 50.196564, + "stopId": "U9280" + }, + { + "id": "U9281Z1", + "name": "Ledce,farma", + "isMetro": false, + "latitude": 14.010594, + "longitude": 50.200199, + "stopId": "U9281" + }, + { + "id": "U9281Z2", + "name": "Ledce,farma", + "isMetro": false, + "latitude": 14.010467, + "longitude": 50.200279, + "stopId": "U9281" + }, + { + "id": "U9282Z1", + "name": "Ledce", + "isMetro": false, + "latitude": 14.006572, + "longitude": 50.194923, + "stopId": "U9282" + }, + { + "id": "U9282Z2", + "name": "Ledce", + "isMetro": false, + "latitude": 14.006617, + "longitude": 50.194805, + "stopId": "U9282" + }, + { + "id": "U9283Z1", + "name": "Ledce,rozc.Šternberk", + "isMetro": false, + "latitude": 14.023602, + "longitude": 50.202484, + "stopId": "U9283" + }, + { + "id": "U9283Z2", + "name": "Ledce,rozc.Šternberk", + "isMetro": false, + "latitude": 14.02346, + "longitude": 50.202553, + "stopId": "U9283" + }, + { + "id": "U9286Z1", + "name": "Hradečno,Nová Ves", + "isMetro": false, + "latitude": 13.998833, + "longitude": 50.18795, + "stopId": "U9286" + }, + { + "id": "U9286Z2", + "name": "Hradečno,Nová Ves", + "isMetro": false, + "latitude": 13.99889, + "longitude": 50.187878, + "stopId": "U9286" + }, + { + "id": "U9287Z1", + "name": "Smečno,rozc.Ledce", + "isMetro": false, + "latitude": 14.038651, + "longitude": 50.188366, + "stopId": "U9287" + }, + { + "id": "U9288Z1", + "name": "Stochov,Čelechovice", + "isMetro": false, + "latitude": 13.955594, + "longitude": 50.169239, + "stopId": "U9288" + }, + { + "id": "U9288Z2", + "name": "Stochov,Čelechovice", + "isMetro": false, + "latitude": 13.955705, + "longitude": 50.169312, + "stopId": "U9288" + }, + { + "id": "U9289Z1", + "name": "Stochov,Honice", + "isMetro": false, + "latitude": 13.956918, + "longitude": 50.151531, + "stopId": "U9289" + }, + { + "id": "U9289Z2", + "name": "Stochov,Honice", + "isMetro": false, + "latitude": 13.957084, + "longitude": 50.151596, + "stopId": "U9289" + }, + { + "id": "U928Z1", + "name": "Tylova čtvrť", + "isMetro": false, + "latitude": 14.415434, + "longitude": 50.008049, + "stopId": "U928" + }, + { + "id": "U928Z2", + "name": "Tylova čtvrť", + "isMetro": false, + "latitude": 14.415617, + "longitude": 50.008202, + "stopId": "U928" + }, + { + "id": "U9290Z1", + "name": "Stochov,nám.", + "isMetro": false, + "latitude": 13.956762, + "longitude": 50.146587, + "stopId": "U9290" + }, + { + "id": "U9290Z2", + "name": "Stochov,nám.", + "isMetro": false, + "latitude": 13.956831, + "longitude": 50.146652, + "stopId": "U9290" + }, + { + "id": "U9291Z1", + "name": "Stochov,Slovanka", + "isMetro": false, + "latitude": 13.968628, + "longitude": 50.13858, + "stopId": "U9291" + }, + { + "id": "U9291Z2", + "name": "Stochov,Slovanka", + "isMetro": false, + "latitude": 13.968624, + "longitude": 50.138744, + "stopId": "U9291" + }, + { + "id": "U9291Z3", + "name": "Stochov,Slovanka I", + "isMetro": false, + "latitude": 13.966324, + "longitude": 50.137856, + "stopId": "U9291" + }, + { + "id": "U9291Z4", + "name": "Stochov,Slovanka I", + "isMetro": false, + "latitude": 13.965847, + "longitude": 50.137146, + "stopId": "U9291" + }, + { + "id": "U9291Z5", + "name": "Stochov,Slovanka II", + "isMetro": false, + "latitude": 13.964442, + "longitude": 50.138725, + "stopId": "U9291" + }, + { + "id": "U9291Z6", + "name": "Stochov,Slovanka II", + "isMetro": false, + "latitude": 13.964431, + "longitude": 50.138615, + "stopId": "U9291" + }, + { + "id": "U9292Z1", + "name": "Stochov,U Dubu", + "isMetro": false, + "latitude": 13.962914, + "longitude": 50.148224, + "stopId": "U9292" + }, + { + "id": "U9292Z2", + "name": "Stochov,U Dubu", + "isMetro": false, + "latitude": 13.963051, + "longitude": 50.148148, + "stopId": "U9292" + }, + { + "id": "U9293Z1", + "name": "Stochov,u křížku", + "isMetro": false, + "latitude": 13.965345, + "longitude": 50.144188, + "stopId": "U9293" + }, + { + "id": "U9293Z2", + "name": "Stochov,u křížku", + "isMetro": false, + "latitude": 13.965171, + "longitude": 50.144485, + "stopId": "U9293" + }, + { + "id": "U9295Z1", + "name": "Bezno", + "isMetro": false, + "latitude": 14.794674, + "longitude": 50.367283, + "stopId": "U9295" + }, + { + "id": "U9295Z2", + "name": "Bezno", + "isMetro": false, + "latitude": 14.794782, + "longitude": 50.367012, + "stopId": "U9295" + }, + { + "id": "U9296Z1", + "name": "Jizerní Vtelno", + "isMetro": false, + "latitude": 14.852386, + "longitude": 50.369194, + "stopId": "U9296" + }, + { + "id": "U9296Z2", + "name": "Jizerní Vtelno", + "isMetro": false, + "latitude": 14.851557, + "longitude": 50.369102, + "stopId": "U9296" + }, + { + "id": "U9297Z1", + "name": "Jizerní Vtelno,Viadukt", + "isMetro": false, + "latitude": 14.865115, + "longitude": 50.37114, + "stopId": "U9297" + }, + { + "id": "U9297Z2", + "name": "Jizerní Vtelno,Viadukt", + "isMetro": false, + "latitude": 14.865072, + "longitude": 50.371304, + "stopId": "U9297" + }, + { + "id": "U9298Z1", + "name": "Písková Lhota,Zámostí", + "isMetro": false, + "latitude": 14.872853, + "longitude": 50.373665, + "stopId": "U9298" + }, + { + "id": "U9298Z2", + "name": "Písková Lhota,Zámostí", + "isMetro": false, + "latitude": 14.872825, + "longitude": 50.37389, + "stopId": "U9298" + }, + { + "id": "U9299Z1", + "name": "Mladá Boleslav,Čejetičky,Most", + "isMetro": false, + "latitude": 14.891857, + "longitude": 50.404972, + "stopId": "U9299" + }, + { + "id": "U9299Z2", + "name": "Mladá Boleslav,Čejetičky,Most", + "isMetro": false, + "latitude": 14.89159, + "longitude": 50.405033, + "stopId": "U9299" + }, + { + "id": "U929Z1", + "name": "Poliklinika Modřany", + "isMetro": false, + "latitude": 14.418749, + "longitude": 50.004589, + "stopId": "U929" + }, + { + "id": "U929Z2", + "name": "Poliklinika Modřany", + "isMetro": false, + "latitude": 14.419573, + "longitude": 50.004795, + "stopId": "U929" + }, + { + "id": "U929Z4", + "name": "Poliklinika Modřany", + "isMetro": false, + "latitude": 14.416645, + "longitude": 50.004799, + "stopId": "U929" + }, + { + "id": "U929Z5", + "name": "Poliklinika Modřany", + "isMetro": false, + "latitude": 14.416883, + "longitude": 50.004868, + "stopId": "U929" + }, + { + "id": "U92Z1", + "name": "Prunéřovská", + "isMetro": false, + "latitude": 14.450984, + "longitude": 50.143932, + "stopId": "U92" + }, + { + "id": "U92Z2", + "name": "Prunéřovská", + "isMetro": false, + "latitude": 14.45075, + "longitude": 50.143803, + "stopId": "U92" + }, + { + "id": "U9300Z1", + "name": "Mladá Boleslav,AKUMA", + "isMetro": false, + "latitude": 14.898844, + "longitude": 50.407097, + "stopId": "U9300" + }, + { + "id": "U9300Z2", + "name": "Mladá Boleslav,AKUMA", + "isMetro": false, + "latitude": 14.898604, + "longitude": 50.407196, + "stopId": "U9300" + }, + { + "id": "U9301Z1", + "name": "Slaný,Kvíc", + "isMetro": false, + "latitude": 14.06442, + "longitude": 50.211536, + "stopId": "U9301" + }, + { + "id": "U9301Z2", + "name": "Slaný,Kvíc", + "isMetro": false, + "latitude": 14.06442, + "longitude": 50.211609, + "stopId": "U9301" + }, + { + "id": "U9302Z1", + "name": "Lány,Lesní", + "isMetro": false, + "latitude": 13.942141, + "longitude": 50.119877, + "stopId": "U9302" + }, + { + "id": "U9302Z2", + "name": "Lány,Lesní", + "isMetro": false, + "latitude": 13.942163, + "longitude": 50.12011, + "stopId": "U9302" + }, + { + "id": "U9303Z1", + "name": "Lány,náměstí", + "isMetro": false, + "latitude": 13.950838, + "longitude": 50.124748, + "stopId": "U9303" + }, + { + "id": "U9304Z1", + "name": "Lány,samota Píně", + "isMetro": false, + "latitude": 13.88926, + "longitude": 50.110348, + "stopId": "U9304" + }, + { + "id": "U9304Z2", + "name": "Lány,samota Píně", + "isMetro": false, + "latitude": 13.889202, + "longitude": 50.110382, + "stopId": "U9304" + }, + { + "id": "U9305Z1", + "name": "Lány,u hřbitova", + "isMetro": false, + "latitude": 13.951425, + "longitude": 50.12923, + "stopId": "U9305" + }, + { + "id": "U9305Z2", + "name": "Lány,u hřbitova", + "isMetro": false, + "latitude": 13.951502, + "longitude": 50.129097, + "stopId": "U9305" + }, + { + "id": "U9306Z1", + "name": "Lány,Vašírov", + "isMetro": false, + "latitude": 13.949229, + "longitude": 50.135223, + "stopId": "U9306" + }, + { + "id": "U9306Z2", + "name": "Lány,Vašírov", + "isMetro": false, + "latitude": 13.949585, + "longitude": 50.134262, + "stopId": "U9306" + }, + { + "id": "U9307Z1", + "name": "Lány,Vašírovská lísa", + "isMetro": false, + "latitude": 13.92061, + "longitude": 50.122177, + "stopId": "U9307" + }, + { + "id": "U9307Z2", + "name": "Lány,Vašírovská lísa", + "isMetro": false, + "latitude": 13.920662, + "longitude": 50.122402, + "stopId": "U9307" + }, + { + "id": "U9309Z1", + "name": "Rynholec,záv.", + "isMetro": false, + "latitude": 13.940828, + "longitude": 50.138763, + "stopId": "U9309" + }, + { + "id": "U9309Z2", + "name": "Rynholec,záv.", + "isMetro": false, + "latitude": 13.939761, + "longitude": 50.138943, + "stopId": "U9309" + }, + { + "id": "U930Z1", + "name": "Kobrova", + "isMetro": false, + "latitude": 14.398267, + "longitude": 50.07605, + "stopId": "U930" + }, + { + "id": "U930Z2", + "name": "Kobrova", + "isMetro": false, + "latitude": 14.398951, + "longitude": 50.076218, + "stopId": "U930" + }, + { + "id": "U9312Z1", + "name": "Nové Strašecí,Karlovarská", + "isMetro": false, + "latitude": 13.896461, + "longitude": 50.157547, + "stopId": "U9312" + }, + { + "id": "U9312Z2", + "name": "Nové Strašecí,Karlovarská", + "isMetro": false, + "latitude": 13.895931, + "longitude": 50.157913, + "stopId": "U9312" + }, + { + "id": "U9316Z1", + "name": "Nové Strašecí,poliklinika", + "isMetro": false, + "latitude": 13.904205, + "longitude": 50.14922, + "stopId": "U9316" + }, + { + "id": "U9316Z2", + "name": "Nové Strašecí,poliklinika", + "isMetro": false, + "latitude": 13.904384, + "longitude": 50.149384, + "stopId": "U9316" + }, + { + "id": "U9317Z1", + "name": "Třtice,Bucký rybník", + "isMetro": false, + "latitude": 13.846835, + "longitude": 50.173279, + "stopId": "U9317" + }, + { + "id": "U9317Z2", + "name": "Třtice,Bucký rybník", + "isMetro": false, + "latitude": 13.846512, + "longitude": 50.173332, + "stopId": "U9317" + }, + { + "id": "U9318Z1", + "name": "Třtice,u brodku", + "isMetro": false, + "latitude": 13.864635, + "longitude": 50.174156, + "stopId": "U9318" + }, + { + "id": "U9318Z2", + "name": "Třtice,u brodku", + "isMetro": false, + "latitude": 13.864299, + "longitude": 50.174145, + "stopId": "U9318" + }, + { + "id": "U9319Z1", + "name": "Třtice", + "isMetro": false, + "latitude": 13.863336, + "longitude": 50.184647, + "stopId": "U9319" + }, + { + "id": "U9319Z2", + "name": "Třtice", + "isMetro": false, + "latitude": 13.86334, + "longitude": 50.18504, + "stopId": "U9319" + }, + { + "id": "U931Z1", + "name": "U Mlejna", + "isMetro": false, + "latitude": 14.602118, + "longitude": 50.027416, + "stopId": "U931" + }, + { + "id": "U931Z2", + "name": "U Mlejna", + "isMetro": false, + "latitude": 14.602393, + "longitude": 50.026703, + "stopId": "U931" + }, + { + "id": "U9320Z1", + "name": "Třtice,u školy", + "isMetro": false, + "latitude": 13.858212, + "longitude": 50.182861, + "stopId": "U9320" + }, + { + "id": "U9320Z2", + "name": "Třtice,u školy", + "isMetro": false, + "latitude": 13.857986, + "longitude": 50.18293, + "stopId": "U9320" + }, + { + "id": "U9322Z1", + "name": "Mšec", + "isMetro": false, + "latitude": 13.900461, + "longitude": 50.20631, + "stopId": "U9322" + }, + { + "id": "U932Z1", + "name": "Přímské náměstí", + "isMetro": false, + "latitude": 14.678718, + "longitude": 50.09885, + "stopId": "U932" + }, + { + "id": "U932Z2", + "name": "Přímské náměstí", + "isMetro": false, + "latitude": 14.678073, + "longitude": 50.098972, + "stopId": "U932" + }, + { + "id": "U9330Z1", + "name": "Řevničov,k Buckému rybníku", + "isMetro": false, + "latitude": 13.826837, + "longitude": 50.174763, + "stopId": "U9330" + }, + { + "id": "U9330Z2", + "name": "Řevničov,k Buckému rybníku", + "isMetro": false, + "latitude": 13.826804, + "longitude": 50.174976, + "stopId": "U9330" + }, + { + "id": "U9331Z1", + "name": "Řevničov", + "isMetro": false, + "latitude": 13.808751, + "longitude": 50.183182, + "stopId": "U9331" + }, + { + "id": "U9331Z2", + "name": "Řevničov", + "isMetro": false, + "latitude": 13.808716, + "longitude": 50.183468, + "stopId": "U9331" + }, + { + "id": "U9331Z3", + "name": "Řevničov,ObÚ", + "isMetro": false, + "latitude": 13.80864, + "longitude": 50.18425, + "stopId": "U9331" + }, + { + "id": "U9331Z4", + "name": "Řevničov,ObÚ", + "isMetro": false, + "latitude": 13.808327, + "longitude": 50.184471, + "stopId": "U9331" + }, + { + "id": "U9332Z1", + "name": "Řevničov,Rozc.K Žel.st.", + "isMetro": false, + "latitude": 13.841573, + "longitude": 50.168041, + "stopId": "U9332" + }, + { + "id": "U9332Z2", + "name": "Řevničov,Rozc.K Žel.st.", + "isMetro": false, + "latitude": 13.841209, + "longitude": 50.168568, + "stopId": "U9332" + }, + { + "id": "U933Z1", + "name": "Na Bojišti", + "isMetro": false, + "latitude": 14.427423, + "longitude": 50.072857, + "stopId": "U933" + }, + { + "id": "U9343Z11", + "name": "Louny,Aut.nádr.", + "isMetro": false, + "latitude": 13.804765, + "longitude": 50.35461, + "stopId": "U9343" + }, + { + "id": "U9343Z15", + "name": "Louny,Aut.nádr.", + "isMetro": false, + "latitude": 13.804389, + "longitude": 50.354572, + "stopId": "U9343" + }, + { + "id": "U9343Z17", + "name": "Louny,Aut.nádr.", + "isMetro": false, + "latitude": 13.804812, + "longitude": 50.355145, + "stopId": "U9343" + }, + { + "id": "U9343Z301", + "name": "Louny střed", + "isMetro": false, + "latitude": 13.805901, + "longitude": 50.353558, + "stopId": "U9343" + }, + { + "id": "U9344Z301", + "name": "Louny město", + "isMetro": false, + "latitude": 13.796361, + "longitude": 50.350258, + "stopId": "U9344" + }, + { + "id": "U9345Z301", + "name": "Březno u Postoloprt", + "isMetro": false, + "latitude": 13.722178, + "longitude": 50.351582, + "stopId": null + }, + { + "id": "U9346Z301", + "name": "Postoloprty", + "isMetro": false, + "latitude": 13.691671, + "longitude": 50.360497, + "stopId": null + }, + { + "id": "U9349Z301", + "name": "Mladá Boleslav-Debř", + "isMetro": false, + "latitude": 14.887372, + "longitude": 50.448097, + "stopId": "U9349" + }, + { + "id": "U934Z1", + "name": "Náměstí Jiřího Berana", + "isMetro": false, + "latitude": 14.526732, + "longitude": 50.150936, + "stopId": "U934" + }, + { + "id": "U934Z2", + "name": "Náměstí Jiřího Berana", + "isMetro": false, + "latitude": 14.526467, + "longitude": 50.150051, + "stopId": "U934" + }, + { + "id": "U9350Z301", + "name": "Bakov nad Jizerou", + "isMetro": false, + "latitude": 14.922732, + "longitude": 50.472111, + "stopId": "U9350" + }, + { + "id": "U9351Z301", + "name": "Skramouš", + "isMetro": false, + "latitude": 14.664486, + "longitude": 50.443222, + "stopId": "U9351" + }, + { + "id": "U9352Z301", + "name": "Vrátno", + "isMetro": false, + "latitude": 14.686798, + "longitude": 50.443108, + "stopId": "U9352" + }, + { + "id": "U9353Z301", + "name": "Trnová", + "isMetro": false, + "latitude": 14.718613, + "longitude": 50.444485, + "stopId": "U9353" + }, + { + "id": "U9354Z301", + "name": "Sudoměř u Ml.Boleslavi", + "isMetro": false, + "latitude": 14.744885, + "longitude": 50.437958, + "stopId": "U9354" + }, + { + "id": "U9355Z301", + "name": "Skalsko", + "isMetro": false, + "latitude": 14.755351, + "longitude": 50.432137, + "stopId": "U9355" + }, + { + "id": "U9356Z301", + "name": "Katusice", + "isMetro": false, + "latitude": 14.777233, + "longitude": 50.443031, + "stopId": "U9356" + }, + { + "id": "U9357Z301", + "name": "Líny", + "isMetro": false, + "latitude": 14.810527, + "longitude": 50.446228, + "stopId": "U9357" + }, + { + "id": "U9358Z301", + "name": "Bukovno", + "isMetro": false, + "latitude": 14.833351, + "longitude": 50.443592, + "stopId": "U9358" + }, + { + "id": "U9359Z1", + "name": "Řepov,hl.sil.", + "isMetro": false, + "latitude": 14.955369, + "longitude": 50.408638, + "stopId": "U9359" + }, + { + "id": "U9359Z2", + "name": "Řepov,hl.sil.", + "isMetro": false, + "latitude": 14.954176, + "longitude": 50.40884, + "stopId": "U9359" + }, + { + "id": "U935Z1", + "name": "Višňová", + "isMetro": false, + "latitude": 14.4476, + "longitude": 50.031235, + "stopId": "U935" + }, + { + "id": "U935Z2", + "name": "Višňová", + "isMetro": false, + "latitude": 14.447934, + "longitude": 50.031216, + "stopId": "U935" + }, + { + "id": "U9360Z301", + "name": "Golčův Jeníkov město", + "isMetro": false, + "latitude": 15.472998, + "longitude": 49.821678, + "stopId": "U9360" + }, + { + "id": "U9362Z1", + "name": "Toušice,ObÚ", + "isMetro": false, + "latitude": 15.005822, + "longitude": 49.987778, + "stopId": "U9362" + }, + { + "id": "U9362Z2", + "name": "Toušice,ObÚ", + "isMetro": false, + "latitude": 15.00561, + "longitude": 49.987732, + "stopId": "U9362" + }, + { + "id": "U9364Z1", + "name": "Říčany,Pacov,U Hřbitova", + "isMetro": false, + "latitude": 14.668653, + "longitude": 50.010513, + "stopId": "U9364" + }, + { + "id": "U9364Z2", + "name": "Říčany,Pacov,U Hřbitova", + "isMetro": false, + "latitude": 14.668255, + "longitude": 50.009686, + "stopId": "U9364" + }, + { + "id": "U9365Z1", + "name": "Týnec n.L.,u mostu", + "isMetro": false, + "latitude": 15.357489, + "longitude": 50.039547, + "stopId": "U9365" + }, + { + "id": "U9365Z2", + "name": "Týnec n.L.,u mostu", + "isMetro": false, + "latitude": 15.357713, + "longitude": 50.039371, + "stopId": "U9365" + }, + { + "id": "U9365Z301", + "name": "Týnec nad Labem", + "isMetro": false, + "latitude": 15.359476, + "longitude": 50.037617, + "stopId": "U9365" + }, + { + "id": "U9366Z301", + "name": "Hlízov", + "isMetro": false, + "latitude": 15.293476, + "longitude": 49.981842, + "stopId": "U9366" + }, + { + "id": "U9367Z1", + "name": "Kutná Hora,hlavní nádraží", + "isMetro": false, + "latitude": 15.299685, + "longitude": 49.96209, + "stopId": "U9367" + }, + { + "id": "U9367Z2", + "name": "Kutná Hora,hlavní nádraží", + "isMetro": false, + "latitude": 15.300076, + "longitude": 49.961803, + "stopId": "U9367" + }, + { + "id": "U9367Z301", + "name": "Kutná Hora hl.n.", + "isMetro": false, + "latitude": 15.30075, + "longitude": 49.961948, + "stopId": "U9367" + }, + { + "id": "U9368Z1", + "name": "Církvice", + "isMetro": false, + "latitude": 15.332549, + "longitude": 49.9436, + "stopId": "U9368" + }, + { + "id": "U9368Z2", + "name": "Církvice", + "isMetro": false, + "latitude": 15.332435, + "longitude": 49.943142, + "stopId": "U9368" + }, + { + "id": "U9368Z301", + "name": "Církvice", + "isMetro": false, + "latitude": 15.32909, + "longitude": 49.942482, + "stopId": "U9368" + }, + { + "id": "U9369Z301", + "name": "Třebešice", + "isMetro": false, + "latitude": 15.341558, + "longitude": 49.931408, + "stopId": "U9369" + }, + { + "id": "U936Z1", + "name": "Dolnokrčská", + "isMetro": false, + "latitude": 14.442634, + "longitude": 50.035984, + "stopId": "U936" + }, + { + "id": "U936Z2", + "name": "Dolnokrčská", + "isMetro": false, + "latitude": 14.442034, + "longitude": 50.035618, + "stopId": "U936" + }, + { + "id": "U9370Z1", + "name": "Čáslav,žel.st.", + "isMetro": false, + "latitude": 15.394886, + "longitude": 49.914448, + "stopId": "U9370" + }, + { + "id": "U9370Z2", + "name": "Čáslav,žel.st.", + "isMetro": false, + "latitude": 15.394023, + "longitude": 49.915245, + "stopId": "U9370" + }, + { + "id": "U9370Z301", + "name": "Čáslav", + "isMetro": false, + "latitude": 15.394684, + "longitude": 49.915329, + "stopId": "U9370" + }, + { + "id": "U9373Z1", + "name": "Votice,žel.st.", + "isMetro": false, + "latitude": 14.619619, + "longitude": 49.637516, + "stopId": "U9373" + }, + { + "id": "U9373Z2", + "name": "Votice,žel.st.", + "isMetro": false, + "latitude": 14.619759, + "longitude": 49.637398, + "stopId": "U9373" + }, + { + "id": "U9373Z301", + "name": "Votice", + "isMetro": false, + "latitude": 14.619595, + "longitude": 49.63792, + "stopId": "U9373" + }, + { + "id": "U9374Z1", + "name": "Heřmaničky,žel.st.", + "isMetro": false, + "latitude": 14.582808, + "longitude": 49.60471, + "stopId": "U9374" + }, + { + "id": "U9374Z2", + "name": "Heřmaničky,žel.st.", + "isMetro": false, + "latitude": 14.582653, + "longitude": 49.604485, + "stopId": "U9374" + }, + { + "id": "U9374Z301", + "name": "Heřmaničky", + "isMetro": false, + "latitude": 14.584508, + "longitude": 49.602108, + "stopId": "U9374" + }, + { + "id": "U9377Z301", + "name": "Vrchotovy Janovice", + "isMetro": false, + "latitude": 14.579475, + "longitude": 49.658691, + "stopId": "U9377" + }, + { + "id": "U9378Z301", + "name": "Voračice", + "isMetro": false, + "latitude": 14.556582, + "longitude": 49.661526, + "stopId": "U9378" + }, + { + "id": "U9379Z301", + "name": "Minartice", + "isMetro": false, + "latitude": 14.53932, + "longitude": 49.667011, + "stopId": "U9379" + }, + { + "id": "U937Z1", + "name": "Nad Rybníky", + "isMetro": false, + "latitude": 14.447484, + "longitude": 50.037102, + "stopId": "U937" + }, + { + "id": "U937Z2", + "name": "Nad Rybníky", + "isMetro": false, + "latitude": 14.447551, + "longitude": 50.036999, + "stopId": "U937" + }, + { + "id": "U9380Z301", + "name": "Štětkovice", + "isMetro": false, + "latitude": 14.516953, + "longitude": 49.666779, + "stopId": "U9380" + }, + { + "id": "U9381Z301", + "name": "Kosova Hora", + "isMetro": false, + "latitude": 14.479933, + "longitude": 49.659451, + "stopId": "U9381" + }, + { + "id": "U9382Z301", + "name": "Sedlčany", + "isMetro": false, + "latitude": 14.434208, + "longitude": 49.655861, + "stopId": "U9382" + }, + { + "id": "U9383Z301", + "name": "Myslíč", + "isMetro": false, + "latitude": 14.723269, + "longitude": 49.764774, + "stopId": "U9383" + }, + { + "id": "U9384Z1", + "name": "Struhařov,žel.zast.", + "isMetro": false, + "latitude": 14.750824, + "longitude": 49.762218, + "stopId": "U9384" + }, + { + "id": "U9384Z2", + "name": "Struhařov,žel.zast.", + "isMetro": false, + "latitude": 14.750144, + "longitude": 49.76268, + "stopId": "U9384" + }, + { + "id": "U9384Z3", + "name": "Struhařov,žel.zast.", + "isMetro": false, + "latitude": 14.750674, + "longitude": 49.763123, + "stopId": "U9384" + }, + { + "id": "U9384Z301", + "name": "Struhařov", + "isMetro": false, + "latitude": 14.748991, + "longitude": 49.762074, + "stopId": "U9384" + }, + { + "id": "U9384Z4", + "name": "Struhařov,žel.zast.", + "isMetro": false, + "latitude": 14.750533, + "longitude": 49.763172, + "stopId": "U9384" + }, + { + "id": "U9385Z301", + "name": "Dobříčkov", + "isMetro": false, + "latitude": 14.761615, + "longitude": 49.752621, + "stopId": "U9385" + }, + { + "id": "U9386Z1", + "name": "Postupice,Žel.st.", + "isMetro": false, + "latitude": 14.784328, + "longitude": 49.736343, + "stopId": "U9386" + }, + { + "id": "U9386Z2", + "name": "Postupice,Žel.st.", + "isMetro": false, + "latitude": 14.784174, + "longitude": 49.736523, + "stopId": "U9386" + }, + { + "id": "U9386Z301", + "name": "Postupice", + "isMetro": false, + "latitude": 14.782331, + "longitude": 49.737995, + "stopId": "U9386" + }, + { + "id": "U9387Z301", + "name": "Městečko u Benešova", + "isMetro": false, + "latitude": 14.805479, + "longitude": 49.730812, + "stopId": "U9387" + }, + { + "id": "U9388Z301", + "name": "Lhota Veselka", + "isMetro": false, + "latitude": 14.815139, + "longitude": 49.720814, + "stopId": "U9388" + }, + { + "id": "U9389Z1", + "name": "Vlašim,Domašín,Žel.zast.", + "isMetro": false, + "latitude": 14.836923, + "longitude": 49.715214, + "stopId": "U9389" + }, + { + "id": "U9389Z2", + "name": "Vlašim,Domašín,Žel.zast.", + "isMetro": false, + "latitude": 14.837436, + "longitude": 49.715321, + "stopId": "U9389" + }, + { + "id": "U9389Z301", + "name": "Domašín", + "isMetro": false, + "latitude": 14.836694, + "longitude": 49.714996, + "stopId": "U9389" + }, + { + "id": "U938Z1", + "name": "Rosečská", + "isMetro": false, + "latitude": 14.453434, + "longitude": 50.038151, + "stopId": "U938" + }, + { + "id": "U938Z2", + "name": "Rosečská", + "isMetro": false, + "latitude": 14.455584, + "longitude": 50.038467, + "stopId": "U938" + }, + { + "id": "U9390Z301", + "name": "Znosim", + "isMetro": false, + "latitude": 14.86937, + "longitude": 49.699711, + "stopId": "U9390" + }, + { + "id": "U9391Z1", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.898293, + "longitude": 49.700382, + "stopId": "U9391" + }, + { + "id": "U9391Z10", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.896743, + "longitude": 49.701084, + "stopId": "U9391" + }, + { + "id": "U9391Z13", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.896695, + "longitude": 49.701271, + "stopId": "U9391" + }, + { + "id": "U9391Z15", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.897057, + "longitude": 49.701057, + "stopId": "U9391" + }, + { + "id": "U9391Z2", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.898486, + "longitude": 49.700233, + "stopId": "U9391" + }, + { + "id": "U9391Z3", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.898701, + "longitude": 49.700073, + "stopId": "U9391" + }, + { + "id": "U9391Z301", + "name": "Vlašim", + "isMetro": false, + "latitude": 14.897412, + "longitude": 49.700439, + "stopId": "U9391" + }, + { + "id": "U9391Z4", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.898652, + "longitude": 49.700024, + "stopId": "U9391" + }, + { + "id": "U9391Z5", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.898427, + "longitude": 49.700134, + "stopId": "U9391" + }, + { + "id": "U9391Z6", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.898251, + "longitude": 49.700237, + "stopId": "U9391" + }, + { + "id": "U9391Z7", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.89811, + "longitude": 49.700314, + "stopId": "U9391" + }, + { + "id": "U9391Z8", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.897105, + "longitude": 49.700867, + "stopId": "U9391" + }, + { + "id": "U9391Z9", + "name": "Vlašim,žel.st.", + "isMetro": false, + "latitude": 14.896917, + "longitude": 49.700985, + "stopId": "U9391" + }, + { + "id": "U9393Z1", + "name": "Vlašim,Bolina,Rozc.", + "isMetro": false, + "latitude": 14.947683, + "longitude": 49.680496, + "stopId": "U9393" + }, + { + "id": "U9393Z2", + "name": "Vlašim,Bolina,Rozc.", + "isMetro": false, + "latitude": 14.94794, + "longitude": 49.680389, + "stopId": "U9393" + }, + { + "id": "U9395Z1", + "name": "Trhový Štěpánov,žel.st.", + "isMetro": false, + "latitude": 15.009913, + "longitude": 49.707867, + "stopId": "U9395" + }, + { + "id": "U9395Z2", + "name": "Trhový Štěpánov,žel.st.", + "isMetro": false, + "latitude": 15.009842, + "longitude": 49.707687, + "stopId": "U9395" + }, + { + "id": "U9396Z301", + "name": "Rataje nad Sázavou", + "isMetro": false, + "latitude": 14.950408, + "longitude": 49.843822, + "stopId": "U9396" + }, + { + "id": "U9396Z303", + "name": "Rataje nad Sázavou zast.", + "isMetro": false, + "latitude": 14.947973, + "longitude": 49.844414, + "stopId": "U9396" + }, + { + "id": "U9397Z301", + "name": "Rataje nad Sázavou-Ivaň", + "isMetro": false, + "latitude": 14.941067, + "longitude": 49.83987, + "stopId": "U9397" + }, + { + "id": "U9398Z301", + "name": "Rataje nad Sázavou předměstí", + "isMetro": false, + "latitude": 14.978365, + "longitude": 49.849682, + "stopId": "U9398" + }, + { + "id": "U9399Z301", + "name": "Malovidy", + "isMetro": false, + "latitude": 14.932131, + "longitude": 49.821991, + "stopId": "U9399" + }, + { + "id": "U939Z1", + "name": "Na Havránce", + "isMetro": false, + "latitude": 14.410184, + "longitude": 50.006535, + "stopId": "U939" + }, + { + "id": "U939Z2", + "name": "Na Havránce", + "isMetro": false, + "latitude": 14.409917, + "longitude": 50.006451, + "stopId": "U939" + }, + { + "id": "U93Z1", + "name": "Dolní Chabry", + "isMetro": false, + "latitude": 14.437567, + "longitude": 50.151035, + "stopId": "U93" + }, + { + "id": "U93Z2", + "name": "Dolní Chabry", + "isMetro": false, + "latitude": 14.437817, + "longitude": 50.151016, + "stopId": "U93" + }, + { + "id": "U9400Z301", + "name": "Český Šternberk", + "isMetro": false, + "latitude": 14.93591, + "longitude": 49.813683, + "stopId": "U9400" + }, + { + "id": "U9401Z301", + "name": "Český Šternberk zast.", + "isMetro": false, + "latitude": 14.929703, + "longitude": 49.808636, + "stopId": "U9401" + }, + { + "id": "U9402Z301", + "name": "Soběšín", + "isMetro": false, + "latitude": 14.959742, + "longitude": 49.789742, + "stopId": "U9402" + }, + { + "id": "U9403Z301", + "name": "Vranice", + "isMetro": false, + "latitude": 14.986454, + "longitude": 49.789867, + "stopId": "U9403" + }, + { + "id": "U9404Z1", + "name": "Kácov,žel.st.rozc.", + "isMetro": false, + "latitude": 15.016079, + "longitude": 49.789707, + "stopId": "U9404" + }, + { + "id": "U9404Z2", + "name": "Kácov,žel.st.rozc.", + "isMetro": false, + "latitude": 15.015821, + "longitude": 49.78944, + "stopId": "U9404" + }, + { + "id": "U9404Z301", + "name": "Kácov", + "isMetro": false, + "latitude": 15.018812, + "longitude": 49.786751, + "stopId": "U9404" + }, + { + "id": "U9405Z301", + "name": "Kácov zast.", + "isMetro": false, + "latitude": 15.030936, + "longitude": 49.775692, + "stopId": "U9405" + }, + { + "id": "U9406Z301", + "name": "Střechov nad Sázavou", + "isMetro": false, + "latitude": 15.021509, + "longitude": 49.760345, + "stopId": "U9406" + }, + { + "id": "U9407Z301", + "name": "Čížov", + "isMetro": false, + "latitude": 15.048644, + "longitude": 49.751999, + "stopId": "U9407" + }, + { + "id": "U9408Z301", + "name": "Chabeřice", + "isMetro": false, + "latitude": 15.062364, + "longitude": 49.749668, + "stopId": "U9408" + }, + { + "id": "U9409Z1", + "name": "Zruč n.Sáz.,Sázavan", + "isMetro": false, + "latitude": 15.087853, + "longitude": 49.743099, + "stopId": "U9409" + }, + { + "id": "U9409Z2", + "name": "Zruč n.Sáz.,Sázavan", + "isMetro": false, + "latitude": 15.087672, + "longitude": 49.743038, + "stopId": "U9409" + }, + { + "id": "U9409Z301", + "name": "Zruč nad Sázavou zast.", + "isMetro": false, + "latitude": 15.085457, + "longitude": 49.743267, + "stopId": "U9409" + }, + { + "id": "U9409Z4", + "name": "Zruč n.Sáz.,Sázavan", + "isMetro": false, + "latitude": 15.087288, + "longitude": 49.74287, + "stopId": "U9409" + }, + { + "id": "U9410Z301", + "name": "Zruč nad Sázavou", + "isMetro": false, + "latitude": 15.103718, + "longitude": 49.739067, + "stopId": "U9410" + }, + { + "id": "U9411Z1", + "name": "Kolín,místní dráha", + "isMetro": false, + "latitude": 15.222115, + "longitude": 50.014187, + "stopId": "U9411" + }, + { + "id": "U9411Z2", + "name": "Kolín,místní dráha", + "isMetro": false, + "latitude": 15.221684, + "longitude": 50.014755, + "stopId": "U9411" + }, + { + "id": "U9411Z301", + "name": "Kolín místní nádraží", + "isMetro": false, + "latitude": 15.222996, + "longitude": 50.015232, + "stopId": "U9411" + }, + { + "id": "U9412Z1", + "name": "Nebovidy,Hluboký Důl", + "isMetro": false, + "latitude": 15.223104, + "longitude": 50.002384, + "stopId": "U9412" + }, + { + "id": "U9412Z2", + "name": "Nebovidy,Hluboký Důl", + "isMetro": false, + "latitude": 15.223006, + "longitude": 50.002827, + "stopId": "U9412" + }, + { + "id": "U9412Z301", + "name": "Hluboký Důl", + "isMetro": false, + "latitude": 15.218643, + "longitude": 50.002319, + "stopId": "U9412" + }, + { + "id": "U9413Z1", + "name": "Červené Pečky,žel.st.", + "isMetro": false, + "latitude": 15.207456, + "longitude": 49.988609, + "stopId": "U9413" + }, + { + "id": "U9413Z2", + "name": "Červené Pečky,žel.st.", + "isMetro": false, + "latitude": 15.2076, + "longitude": 49.988735, + "stopId": "U9413" + }, + { + "id": "U9413Z301", + "name": "Červené Pečky", + "isMetro": false, + "latitude": 15.20655, + "longitude": 49.987827, + "stopId": "U9413" + }, + { + "id": "U9414Z1", + "name": "Ratboř,žel.st.", + "isMetro": false, + "latitude": 15.162271, + "longitude": 49.98262, + "stopId": "U9414" + }, + { + "id": "U9414Z2", + "name": "Ratboř,žel.st.", + "isMetro": false, + "latitude": 15.162012, + "longitude": 49.98214, + "stopId": "U9414" + }, + { + "id": "U9414Z301", + "name": "Ratboř", + "isMetro": false, + "latitude": 15.160405, + "longitude": 49.981609, + "stopId": "U9414" + }, + { + "id": "U9415Z1", + "name": "Kořenice", + "isMetro": false, + "latitude": 15.140097, + "longitude": 49.978088, + "stopId": "U9415" + }, + { + "id": "U9415Z2", + "name": "Kořenice", + "isMetro": false, + "latitude": 15.139682, + "longitude": 49.978043, + "stopId": "U9415" + }, + { + "id": "U9415Z301", + "name": "Kořenice", + "isMetro": false, + "latitude": 15.13853, + "longitude": 49.973171, + "stopId": "U9415" + }, + { + "id": "U9416Z1", + "name": "Kořenice,Chotouchov,žel.zast.", + "isMetro": false, + "latitude": 15.12388, + "longitude": 49.969204, + "stopId": "U9416" + }, + { + "id": "U9416Z2", + "name": "Kořenice,Chotouchov,žel.zast.", + "isMetro": false, + "latitude": 15.123797, + "longitude": 49.96925, + "stopId": "U9416" + }, + { + "id": "U9416Z301", + "name": "Chotouchov", + "isMetro": false, + "latitude": 15.121079, + "longitude": 49.970432, + "stopId": "U9416" + }, + { + "id": "U9417Z1", + "name": "Kořenice,Pučery", + "isMetro": false, + "latitude": 15.107663, + "longitude": 49.961288, + "stopId": "U9417" + }, + { + "id": "U9417Z2", + "name": "Kořenice,Pučery", + "isMetro": false, + "latitude": 15.107627, + "longitude": 49.961372, + "stopId": "U9417" + }, + { + "id": "U9417Z301", + "name": "Pučery", + "isMetro": false, + "latitude": 15.106254, + "longitude": 49.967426, + "stopId": "U9417" + }, + { + "id": "U9418Z1", + "name": "Drahobudice", + "isMetro": false, + "latitude": 15.065425, + "longitude": 49.937286, + "stopId": "U9418" + }, + { + "id": "U9418Z2", + "name": "Drahobudice", + "isMetro": false, + "latitude": 15.065221, + "longitude": 49.937298, + "stopId": "U9418" + }, + { + "id": "U9418Z301", + "name": "Drahobudice", + "isMetro": false, + "latitude": 15.062648, + "longitude": 49.936665, + "stopId": "U9418" + }, + { + "id": "U9419Z301", + "name": "Hatě", + "isMetro": false, + "latitude": 15.057997, + "longitude": 49.913834, + "stopId": "U9419" + }, + { + "id": "U941Z1", + "name": "Lomy", + "isMetro": false, + "latitude": 14.329934, + "longitude": 49.998268, + "stopId": "U941" + }, + { + "id": "U941Z2", + "name": "Lomy", + "isMetro": false, + "latitude": 14.329, + "longitude": 49.998283, + "stopId": "U941" + }, + { + "id": "U9420Z301", + "name": "Chmeliště", + "isMetro": false, + "latitude": 15.05632, + "longitude": 49.895664, + "stopId": "U9420" + }, + { + "id": "U9421Z301", + "name": "Uhlířské Janovice", + "isMetro": false, + "latitude": 15.0598, + "longitude": 49.88229, + "stopId": "U9421" + }, + { + "id": "U9422Z1", + "name": "Uhlířské Janovice,Mitrov", + "isMetro": false, + "latitude": 15.048588, + "longitude": 49.856209, + "stopId": "U9422" + }, + { + "id": "U9422Z2", + "name": "Uhlířské Janovice,Mitrov", + "isMetro": false, + "latitude": 15.048434, + "longitude": 49.855972, + "stopId": "U9422" + }, + { + "id": "U9422Z301", + "name": "Mitrov", + "isMetro": false, + "latitude": 15.047874, + "longitude": 49.865814, + "stopId": "U9422" + }, + { + "id": "U9423Z301", + "name": "Mirošovice u Rataj nad Sázavou", + "isMetro": false, + "latitude": 15.00522, + "longitude": 49.860546, + "stopId": "U9423" + }, + { + "id": "U9424Z1", + "name": "Kutná Hora,Sedlec,kostnice", + "isMetro": false, + "latitude": 15.290902, + "longitude": 49.960915, + "stopId": "U9424" + }, + { + "id": "U9424Z2", + "name": "Kutná Hora,Sedlec,kostnice", + "isMetro": false, + "latitude": 15.289989, + "longitude": 49.960449, + "stopId": "U9424" + }, + { + "id": "U9424Z301", + "name": "Kutná Hora-Sedlec", + "isMetro": false, + "latitude": 15.290267, + "longitude": 49.957626, + "stopId": "U9424" + }, + { + "id": "U9425Z1", + "name": "Kutná Hora,městské nádraží", + "isMetro": false, + "latitude": 15.275227, + "longitude": 49.948898, + "stopId": "U9425" + }, + { + "id": "U9425Z301", + "name": "Kutná Hora město", + "isMetro": false, + "latitude": 15.277295, + "longitude": 49.94989, + "stopId": "U9425" + }, + { + "id": "U9426Z301", + "name": "Kutná Hora předměstí", + "isMetro": false, + "latitude": 15.267672, + "longitude": 49.93721, + "stopId": "U9426" + }, + { + "id": "U9427Z301", + "name": "Poličany", + "isMetro": false, + "latitude": 15.258597, + "longitude": 49.923744, + "stopId": "U9427" + }, + { + "id": "U9428Z301", + "name": "Malešov", + "isMetro": false, + "latitude": 15.230903, + "longitude": 49.906967, + "stopId": "U9428" + }, + { + "id": "U9429Z301", + "name": "Bykáň", + "isMetro": false, + "latitude": 15.239949, + "longitude": 49.89164, + "stopId": "U9429" + }, + { + "id": "U9430Z301", + "name": "Týniště", + "isMetro": false, + "latitude": 15.235337, + "longitude": 49.886055, + "stopId": "U9430" + }, + { + "id": "U9431Z301", + "name": "Krasoňovice", + "isMetro": false, + "latitude": 15.223823, + "longitude": 49.877155, + "stopId": "U9431" + }, + { + "id": "U9432Z1", + "name": "Černíny,Bahno", + "isMetro": false, + "latitude": 15.234265, + "longitude": 49.87085, + "stopId": "U9432" + }, + { + "id": "U9432Z2", + "name": "Černíny,Bahno", + "isMetro": false, + "latitude": 15.234791, + "longitude": 49.870945, + "stopId": "U9432" + }, + { + "id": "U9432Z301", + "name": "Bahno", + "isMetro": false, + "latitude": 15.220387, + "longitude": 49.865601, + "stopId": "U9432" + }, + { + "id": "U9433Z301", + "name": "Předbořice", + "isMetro": false, + "latitude": 15.224627, + "longitude": 49.855858, + "stopId": "U9433" + }, + { + "id": "U9434Z301", + "name": "Černíny", + "isMetro": false, + "latitude": 15.216205, + "longitude": 49.840935, + "stopId": "U9434" + }, + { + "id": "U9435Z301", + "name": "Štipoklasy", + "isMetro": false, + "latitude": 15.207983, + "longitude": 49.828064, + "stopId": "U9435" + }, + { + "id": "U9436Z1", + "name": "Zbraslavice,žel.st.", + "isMetro": false, + "latitude": 15.192132, + "longitude": 49.81559, + "stopId": "U9436" + }, + { + "id": "U9436Z2", + "name": "Zbraslavice,žel.st.", + "isMetro": false, + "latitude": 15.191908, + "longitude": 49.815666, + "stopId": "U9436" + }, + { + "id": "U9436Z301", + "name": "Zbraslavice", + "isMetro": false, + "latitude": 15.189486, + "longitude": 49.815685, + "stopId": "U9436" + }, + { + "id": "U9437Z301", + "name": "Hodkov", + "isMetro": false, + "latitude": 15.163896, + "longitude": 49.785736, + "stopId": "U9437" + }, + { + "id": "U9438Z301", + "name": "Hodkov zast.", + "isMetro": false, + "latitude": 15.154347, + "longitude": 49.777855, + "stopId": "U9438" + }, + { + "id": "U9439Z1", + "name": "Zruč n.Sáz.,Želivec,žel.zast.", + "isMetro": false, + "latitude": 15.138495, + "longitude": 49.752159, + "stopId": "U9439" + }, + { + "id": "U9439Z2", + "name": "Zruč n.Sáz.,Želivec,žel.zast.", + "isMetro": false, + "latitude": 15.141391, + "longitude": 49.753628, + "stopId": "U9439" + }, + { + "id": "U9439Z301", + "name": "Želivec", + "isMetro": false, + "latitude": 15.140894, + "longitude": 49.755341, + "stopId": "U9439" + }, + { + "id": "U943Z1", + "name": "Sídliště Červený Vrch", + "isMetro": false, + "latitude": 14.359188, + "longitude": 50.09798, + "stopId": "U943" + }, + { + "id": "U943Z2", + "name": "Sídliště Červený Vrch", + "isMetro": false, + "latitude": 14.359287, + "longitude": 50.098068, + "stopId": "U943" + }, + { + "id": "U9440Z3", + "name": "Březina", + "isMetro": false, + "latitude": 15.032598, + "longitude": 50.545254, + "stopId": "U9440" + }, + { + "id": "U9440Z301", + "name": "Březina nad Jizerou", + "isMetro": false, + "latitude": 15.035773, + "longitude": 50.545456, + "stopId": "U9440" + }, + { + "id": "U9440Z4", + "name": "Březina", + "isMetro": false, + "latitude": 15.032373, + "longitude": 50.545307, + "stopId": "U9440" + }, + { + "id": "U9441Z1", + "name": "Loukov,žel.st.", + "isMetro": false, + "latitude": 15.056961, + "longitude": 50.558052, + "stopId": "U9441" + }, + { + "id": "U9441Z2", + "name": "Loukov,žel.st.", + "isMetro": false, + "latitude": 15.056855, + "longitude": 50.558098, + "stopId": "U9441" + }, + { + "id": "U9441Z301", + "name": "Loukov u Mnichova Hradiště", + "isMetro": false, + "latitude": 15.056465, + "longitude": 50.558681, + "stopId": "U9441" + }, + { + "id": "U9442Z2", + "name": "Příšovice,sídl.", + "isMetro": false, + "latitude": 15.078433, + "longitude": 50.577698, + "stopId": "U9442" + }, + { + "id": "U9442Z301", + "name": "Příšovice", + "isMetro": false, + "latitude": 15.078609, + "longitude": 50.579067, + "stopId": "U9442" + }, + { + "id": "U9443Z3", + "name": "Turnov,Terminál u žel.st.", + "isMetro": false, + "latitude": 15.140697, + "longitude": 50.586899, + "stopId": "U9443" + }, + { + "id": "U9443Z301", + "name": "Turnov", + "isMetro": false, + "latitude": 15.138791, + "longitude": 50.587086, + "stopId": "U9443" + }, + { + "id": "U9443Z4", + "name": "Turnov,Terminál u žel.st.", + "isMetro": false, + "latitude": 15.140961, + "longitude": 50.586845, + "stopId": "U9443" + }, + { + "id": "U9443Z6", + "name": "Turnov,Terminál u žel.st.", + "isMetro": false, + "latitude": 15.14078, + "longitude": 50.587025, + "stopId": "U9443" + }, + { + "id": "U9444Z301", + "name": "Malá Bělá", + "isMetro": false, + "latitude": 14.923329, + "longitude": 50.486496, + "stopId": "U9444" + }, + { + "id": "U9445Z301", + "name": "Bělá pod Bezdězem zast.", + "isMetro": false, + "latitude": 14.868438, + "longitude": 50.500149, + "stopId": "U9445" + }, + { + "id": "U9446Z301", + "name": "Bělá pod Bezdězem", + "isMetro": false, + "latitude": 14.836022, + "longitude": 50.488327, + "stopId": "U9446" + }, + { + "id": "U9447Z301", + "name": "Bělá pod Bezdězem město", + "isMetro": false, + "latitude": 14.7871, + "longitude": 50.493332, + "stopId": "U9447" + }, + { + "id": "U9448Z301", + "name": "Bezděz", + "isMetro": false, + "latitude": 14.729349, + "longitude": 50.516068, + "stopId": "U9448" + }, + { + "id": "U9449Z301", + "name": "Okna", + "isMetro": false, + "latitude": 14.67443, + "longitude": 50.527283, + "stopId": "U9449" + }, + { + "id": "U944Z1", + "name": "Za Farou", + "isMetro": false, + "latitude": 14.350017, + "longitude": 50.020168, + "stopId": "U944" + }, + { + "id": "U944Z2", + "name": "Za Farou", + "isMetro": false, + "latitude": 14.351435, + "longitude": 50.019939, + "stopId": "U944" + }, + { + "id": "U9450Z1", + "name": "Doksy,žel.st.", + "isMetro": false, + "latitude": 14.646997, + "longitude": 50.572575, + "stopId": "U9450" + }, + { + "id": "U9450Z2", + "name": "Doksy,žel.st.", + "isMetro": false, + "latitude": 14.647096, + "longitude": 50.572655, + "stopId": "U9450" + }, + { + "id": "U9450Z301", + "name": "Doksy", + "isMetro": false, + "latitude": 14.646955, + "longitude": 50.573608, + "stopId": "U9450" + }, + { + "id": "U9452Z1", + "name": "Kněžmost,žel.zast.", + "isMetro": false, + "latitude": 15.017824, + "longitude": 50.472294, + "stopId": "U9452" + }, + { + "id": "U9452Z2", + "name": "Kněžmost,žel.zast.", + "isMetro": false, + "latitude": 15.017754, + "longitude": 50.472332, + "stopId": "U9452" + }, + { + "id": "U9454Z1", + "name": "Obrubce,hl.sil.", + "isMetro": false, + "latitude": 15.067161, + "longitude": 50.445038, + "stopId": "U9454" + }, + { + "id": "U9454Z2", + "name": "Obrubce,hl.sil.", + "isMetro": false, + "latitude": 15.066676, + "longitude": 50.444981, + "stopId": "U9454" + }, + { + "id": "U9455Z2", + "name": "Kolomuty", + "isMetro": false, + "latitude": 14.978397, + "longitude": 50.401867, + "stopId": "U9455" + }, + { + "id": "U9456Z1", + "name": "Židněves,k nádraží", + "isMetro": false, + "latitude": 15.003792, + "longitude": 50.416225, + "stopId": "U9456" + }, + { + "id": "U9456Z2", + "name": "Židněves,k nádraží", + "isMetro": false, + "latitude": 15.003746, + "longitude": 50.416363, + "stopId": "U9456" + }, + { + "id": "U9457Z1", + "name": "Dlouhá Lhota,žel.zast.", + "isMetro": false, + "latitude": 15.038992, + "longitude": 50.420658, + "stopId": "U9457" + }, + { + "id": "U9457Z2", + "name": "Dlouhá Lhota,žel.zast.", + "isMetro": false, + "latitude": 15.039181, + "longitude": 50.420635, + "stopId": "U9457" + }, + { + "id": "U9458Z1", + "name": "Dolní Bousov,Bechov", + "isMetro": false, + "latitude": 15.084341, + "longitude": 50.440071, + "stopId": "U9458" + }, + { + "id": "U9459Z1", + "name": "Rohatsko", + "isMetro": false, + "latitude": 15.105192, + "longitude": 50.440067, + "stopId": "U9459" + }, + { + "id": "U945Z1", + "name": "Levského", + "isMetro": false, + "latitude": 14.436082, + "longitude": 50.005123, + "stopId": "U945" + }, + { + "id": "U9461Z1", + "name": "Sobotka,Na Syrovandě", + "isMetro": false, + "latitude": 15.168505, + "longitude": 50.464455, + "stopId": "U9461" + }, + { + "id": "U9461Z2", + "name": "Sobotka,Na Syrovandě", + "isMetro": false, + "latitude": 15.168456, + "longitude": 50.464523, + "stopId": "U9461" + }, + { + "id": "U9465Z301", + "name": "Vrdy-Koudelov", + "isMetro": false, + "latitude": 15.430309, + "longitude": 49.914726, + "stopId": "U9465" + }, + { + "id": "U9466Z301", + "name": "Skovice", + "isMetro": false, + "latitude": 15.460956, + "longitude": 49.90564, + "stopId": "U9466" + }, + { + "id": "U9467Z301", + "name": "Žleby", + "isMetro": false, + "latitude": 15.477117, + "longitude": 49.890537, + "stopId": "U9467" + }, + { + "id": "U9468Z301", + "name": "Žleby zast.", + "isMetro": false, + "latitude": 15.489898, + "longitude": 49.894299, + "stopId": "U9468" + }, + { + "id": "U9469Z301", + "name": "Ronov nad Doubravou", + "isMetro": false, + "latitude": 15.52822, + "longitude": 49.894825, + "stopId": "U9469" + }, + { + "id": "U946Z1", + "name": "Sídliště Modřany", + "isMetro": false, + "latitude": 14.432528, + "longitude": 50.00523, + "stopId": "U946" + }, + { + "id": "U946Z2", + "name": "Sídliště Modřany", + "isMetro": false, + "latitude": 14.433363, + "longitude": 50.005039, + "stopId": "U946" + }, + { + "id": "U9470Z301", + "name": "Ronov nad Doubravou zast.", + "isMetro": false, + "latitude": 15.543386, + "longitude": 49.892654, + "stopId": "U9470" + }, + { + "id": "U9471Z301", + "name": "Žlebské Chvalovice", + "isMetro": false, + "latitude": 15.555626, + "longitude": 49.883389, + "stopId": "U9471" + }, + { + "id": "U9472Z301", + "name": "Závratec", + "isMetro": false, + "latitude": 15.56251, + "longitude": 49.877254, + "stopId": "U9472" + }, + { + "id": "U9473Z301", + "name": "Třemošnice", + "isMetro": false, + "latitude": 15.576266, + "longitude": 49.872078, + "stopId": "U9473" + }, + { + "id": "U9474Z301", + "name": "Horky u Čáslavi", + "isMetro": false, + "latitude": 15.442936, + "longitude": 49.87188, + "stopId": "U9474" + }, + { + "id": "U9475Z1", + "name": "Bakov n.Jiz.,žel.zast.", + "isMetro": false, + "latitude": 14.939864, + "longitude": 50.479626, + "stopId": "U9475" + }, + { + "id": "U9475Z2", + "name": "Bakov n.Jiz.,žel.zast.", + "isMetro": false, + "latitude": 14.939423, + "longitude": 50.479454, + "stopId": "U9475" + }, + { + "id": "U9475Z301", + "name": "Bakov nad Jizerou město", + "isMetro": false, + "latitude": 14.93924, + "longitude": 50.479012, + "stopId": "U9475" + }, + { + "id": "U9478Z1", + "name": "Mnichovo Hradiště,dopravní terminál", + "isMetro": false, + "latitude": 14.977608, + "longitude": 50.518768, + "stopId": "U9478" + }, + { + "id": "U9478Z2", + "name": "Mnichovo Hradiště,dopravní terminál", + "isMetro": false, + "latitude": 14.978226, + "longitude": 50.518753, + "stopId": "U9478" + }, + { + "id": "U9478Z301", + "name": "Mnichovo Hradiště", + "isMetro": false, + "latitude": 14.978438, + "longitude": 50.518452, + "stopId": "U9478" + }, + { + "id": "U9478Z6", + "name": "Mnichovo Hradiště,dopravní terminál", + "isMetro": false, + "latitude": 14.979082, + "longitude": 50.519108, + "stopId": "U9478" + }, + { + "id": "U9479Z301", + "name": "Golčův Jeníkov", + "isMetro": false, + "latitude": 15.468039, + "longitude": 49.836658, + "stopId": "U9479" + }, + { + "id": "U947Z1", + "name": "Modřanská rokle", + "isMetro": false, + "latitude": 14.429029, + "longitude": 50.006416, + "stopId": "U947" + }, + { + "id": "U947Z2", + "name": "Modřanská rokle", + "isMetro": false, + "latitude": 14.429723, + "longitude": 50.006062, + "stopId": "U947" + }, + { + "id": "U9480Z301", + "name": "Vlkaneč", + "isMetro": false, + "latitude": 15.405122, + "longitude": 49.804188, + "stopId": "U9480" + }, + { + "id": "U9481Z301", + "name": "Nová Ves u Leštiny", + "isMetro": false, + "latitude": 15.404241, + "longitude": 49.783489, + "stopId": "U9481" + }, + { + "id": "U9482Z301", + "name": "Leština u Světlé", + "isMetro": false, + "latitude": 15.398666, + "longitude": 49.761391, + "stopId": "U9482" + }, + { + "id": "U9483Z301", + "name": "Sázavka", + "isMetro": false, + "latitude": 15.398621, + "longitude": 49.729874, + "stopId": "U9483" + }, + { + "id": "U9484Z301", + "name": "Světlá nad Sázavou-Josefodol", + "isMetro": false, + "latitude": 15.424229, + "longitude": 49.690453, + "stopId": "U9484" + }, + { + "id": "U9485Z301", + "name": "Světlá nad Sázavou", + "isMetro": false, + "latitude": 15.417316, + "longitude": 49.670292, + "stopId": "U9485" + }, + { + "id": "U948Z1", + "name": "U Libušského potoka", + "isMetro": false, + "latitude": 14.423002, + "longitude": 50.00555, + "stopId": "U948" + }, + { + "id": "U948Z2", + "name": "U Libušského potoka", + "isMetro": false, + "latitude": 14.423865, + "longitude": 50.005707, + "stopId": "U948" + }, + { + "id": "U9492Z301", + "name": "Ledeč nad Sázavou", + "isMetro": false, + "latitude": 15.269915, + "longitude": 49.698254, + "stopId": "U9492" + }, + { + "id": "U9493Z301", + "name": "Horní Ledeč", + "isMetro": false, + "latitude": 15.283357, + "longitude": 49.695953, + "stopId": "U9493" + }, + { + "id": "U9494Z301", + "name": "Vilémovice", + "isMetro": false, + "latitude": 15.309178, + "longitude": 49.684746, + "stopId": "U9494" + }, + { + "id": "U9495Z301", + "name": "Stvořidla", + "isMetro": false, + "latitude": 15.319508, + "longitude": 49.670448, + "stopId": "U9495" + }, + { + "id": "U9496Z301", + "name": "Smrčná", + "isMetro": false, + "latitude": 15.349208, + "longitude": 49.660622, + "stopId": "U9496" + }, + { + "id": "U9497Z301", + "name": "Mrzkovice", + "isMetro": false, + "latitude": 15.373642, + "longitude": 49.657055, + "stopId": "U9497" + }, + { + "id": "U9498Z301", + "name": "Dolní Březinka", + "isMetro": false, + "latitude": 15.380572, + "longitude": 49.661415, + "stopId": "U9498" + }, + { + "id": "U9499Z301", + "name": "Světlá nad Sázavou město", + "isMetro": false, + "latitude": 15.401626, + "longitude": 49.669201, + "stopId": "U9499" + }, + { + "id": "U949Z1", + "name": "Sídliště Čimice", + "isMetro": false, + "latitude": 14.431314, + "longitude": 50.143188, + "stopId": "U949" + }, + { + "id": "U949Z2", + "name": "Sídliště Čimice", + "isMetro": false, + "latitude": 14.4326, + "longitude": 50.144917, + "stopId": "U949" + }, + { + "id": "U949Z3", + "name": "Sídliště Čimice", + "isMetro": false, + "latitude": 14.43215, + "longitude": 50.144234, + "stopId": "U949" + }, + { + "id": "U94Z1", + "name": "Osecká", + "isMetro": false, + "latitude": 14.449018, + "longitude": 50.146484, + "stopId": "U94" + }, + { + "id": "U94Z3", + "name": "Osecká", + "isMetro": false, + "latitude": 14.448068, + "longitude": 50.146183, + "stopId": "U94" + }, + { + "id": "U9500Z301", + "name": "Ješetice", + "isMetro": false, + "latitude": 14.596755, + "longitude": 49.577732, + "stopId": "U9500" + }, + { + "id": "U9501Z301", + "name": "Červený Újezd u Votic zast.", + "isMetro": false, + "latitude": 14.613482, + "longitude": 49.560852, + "stopId": "U9501" + }, + { + "id": "U9503Z1", + "name": "Mezno,žel.st.", + "isMetro": false, + "latitude": 14.654893, + "longitude": 49.536732, + "stopId": "U9503" + }, + { + "id": "U9504Z301", + "name": "Sudoměřice u Tábora", + "isMetro": false, + "latitude": 14.659684, + "longitude": 49.507267, + "stopId": null + }, + { + "id": "U9505Z301", + "name": "Chotoviny", + "isMetro": false, + "latitude": 14.669374, + "longitude": 49.472317, + "stopId": null + }, + { + "id": "U9506Z1", + "name": "Březnice,Zadní Poříčí,rozc.", + "isMetro": false, + "latitude": 13.939106, + "longitude": 49.577423, + "stopId": "U9506" + }, + { + "id": "U9506Z2", + "name": "Březnice,Zadní Poříčí,rozc.", + "isMetro": false, + "latitude": 13.939088, + "longitude": 49.577587, + "stopId": "U9506" + }, + { + "id": "U950Z1", + "name": "Antala Staška", + "isMetro": false, + "latitude": 14.444311, + "longitude": 50.041695, + "stopId": "U950" + }, + { + "id": "U950Z2", + "name": "Antala Staška", + "isMetro": false, + "latitude": 14.444415, + "longitude": 50.041519, + "stopId": "U950" + }, + { + "id": "U9510Z301", + "name": "Hudčice", + "isMetro": false, + "latitude": 13.928537, + "longitude": 49.527668, + "stopId": "U9510" + }, + { + "id": "U9511Z301", + "name": "Slavětín u Březnice", + "isMetro": false, + "latitude": 13.895247, + "longitude": 49.523277, + "stopId": "U9511" + }, + { + "id": "U9512Z301", + "name": "Bělčice", + "isMetro": false, + "latitude": 13.886332, + "longitude": 49.50444, + "stopId": "U9512" + }, + { + "id": "U9512Z401", + "name": "Bělčice,žel.st.", + "isMetro": false, + "latitude": 13.88508, + "longitude": 49.50378, + "stopId": "U9512" + }, + { + "id": "U9512Z402", + "name": "Bělčice,žel.st.", + "isMetro": false, + "latitude": 13.884429, + "longitude": 49.503544, + "stopId": "U9512" + }, + { + "id": "U9513Z301", + "name": "Závišín", + "isMetro": false, + "latitude": 13.866481, + "longitude": 49.476906, + "stopId": "U9513" + }, + { + "id": "U9514Z301", + "name": "Bezdědovice", + "isMetro": false, + "latitude": 13.875815, + "longitude": 49.444996, + "stopId": "U9514" + }, + { + "id": "U9515Z2", + "name": "Blatná,žel.st.", + "isMetro": false, + "latitude": 13.873613, + "longitude": 49.430984, + "stopId": "U9515" + }, + { + "id": "U9515Z301", + "name": "Blatná", + "isMetro": false, + "latitude": 13.872741, + "longitude": 49.430927, + "stopId": "U9515" + }, + { + "id": "U9515Z4", + "name": "Blatná,žel.st.", + "isMetro": false, + "latitude": 13.872703, + "longitude": 49.430561, + "stopId": "U9515" + }, + { + "id": "U9515Z405", + "name": "Blatná,žel.st.", + "isMetro": false, + "latitude": 13.872841, + "longitude": 49.430649, + "stopId": "U9515" + }, + { + "id": "U9516Z301", + "name": "Krupá", + "isMetro": false, + "latitude": 13.722962, + "longitude": 50.169704, + "stopId": "U9516" + }, + { + "id": "U9517Z301", + "name": "Mutějovice zast.", + "isMetro": false, + "latitude": 13.702492, + "longitude": 50.187489, + "stopId": "U9517" + }, + { + "id": "U9518Z301", + "name": "Milostín", + "isMetro": false, + "latitude": 13.667531, + "longitude": 50.202568, + "stopId": "U9518" + }, + { + "id": "U9519Z301", + "name": "Deštnice", + "isMetro": false, + "latitude": 13.606197, + "longitude": 50.225685, + "stopId": "U9519" + }, + { + "id": "U9520Z301", + "name": "Chrášťany", + "isMetro": false, + "latitude": 13.663154, + "longitude": 50.142799, + "stopId": "U9520" + }, + { + "id": "U9521Z301", + "name": "Hořesedly", + "isMetro": false, + "latitude": 13.641116, + "longitude": 50.168365, + "stopId": "U9521" + }, + { + "id": "U9522Z301", + "name": "Svojetín", + "isMetro": false, + "latitude": 13.632318, + "longitude": 50.198296, + "stopId": "U9522" + }, + { + "id": "U9523Z301", + "name": "Kounov", + "isMetro": false, + "latitude": 13.665462, + "longitude": 50.216133, + "stopId": "U9523" + }, + { + "id": "U9524Z301", + "name": "Mutějovice", + "isMetro": false, + "latitude": 13.704395, + "longitude": 50.21714, + "stopId": "U9524" + }, + { + "id": "U9525Z301", + "name": "Domoušice", + "isMetro": false, + "latitude": 13.722612, + "longitude": 50.232979, + "stopId": "U9525" + }, + { + "id": "U9526Z301", + "name": "Solopysky", + "isMetro": false, + "latitude": 13.748088, + "longitude": 50.25145, + "stopId": "U9526" + }, + { + "id": "U9527Z301", + "name": "Konětopy", + "isMetro": false, + "latitude": 13.726594, + "longitude": 50.268219, + "stopId": "U9527" + }, + { + "id": "U9528Z301", + "name": "Hřivice", + "isMetro": false, + "latitude": 13.72522, + "longitude": 50.285461, + "stopId": "U9528" + }, + { + "id": "U9529Z301", + "name": "Touchovice u Loun", + "isMetro": false, + "latitude": 13.72835, + "longitude": 50.301777, + "stopId": "U9529" + }, + { + "id": "U952Z1", + "name": "Těšnov", + "isMetro": false, + "latitude": 14.43649, + "longitude": 50.091675, + "stopId": "U952" + }, + { + "id": "U952Z2", + "name": "Těšnov", + "isMetro": false, + "latitude": 14.436631, + "longitude": 50.091721, + "stopId": "U952" + }, + { + "id": "U9530Z301", + "name": "Opočno u Loun", + "isMetro": false, + "latitude": 13.733922, + "longitude": 50.312504, + "stopId": "U9530" + }, + { + "id": "U9531Z301", + "name": "Jimlín", + "isMetro": false, + "latitude": 13.751004, + "longitude": 50.326488, + "stopId": "U9531" + }, + { + "id": "U9532Z301", + "name": "Lubná", + "isMetro": false, + "latitude": 13.696055, + "longitude": 50.07856, + "stopId": "U9532" + }, + { + "id": "U9533Z1", + "name": "Senomaty,Hostokryje,rozc.", + "isMetro": false, + "latitude": 13.679242, + "longitude": 50.071079, + "stopId": "U9533" + }, + { + "id": "U9533Z2", + "name": "Senomaty,Hostokryje,rozc.", + "isMetro": false, + "latitude": 13.679757, + "longitude": 50.071182, + "stopId": "U9533" + }, + { + "id": "U9533Z301", + "name": "Příčina", + "isMetro": false, + "latitude": 13.67798, + "longitude": 50.071423, + "stopId": "U9533" + }, + { + "id": "U9534Z1", + "name": "Zavidov,žel.zast.", + "isMetro": false, + "latitude": 13.62806, + "longitude": 50.055752, + "stopId": "U9534" + }, + { + "id": "U9534Z2", + "name": "Zavidov,žel.zast.", + "isMetro": false, + "latitude": 13.628466, + "longitude": 50.05632, + "stopId": "U9534" + }, + { + "id": "U9534Z301", + "name": "Zavidov", + "isMetro": false, + "latitude": 13.629351, + "longitude": 50.056442, + "stopId": "U9534" + }, + { + "id": "U9535Z301", + "name": "Všesulov", + "isMetro": false, + "latitude": 13.602576, + "longitude": 50.041687, + "stopId": "U9535" + }, + { + "id": "U9536Z301", + "name": "Čistá", + "isMetro": false, + "latitude": 13.56862, + "longitude": 50.032925, + "stopId": "U9536" + }, + { + "id": "U9537Z301", + "name": "Strachovice", + "isMetro": false, + "latitude": 13.527378, + "longitude": 50.014366, + "stopId": "U9537" + }, + { + "id": "U9538Z1", + "name": "Kožlany,žel.st.", + "isMetro": false, + "latitude": 13.52454, + "longitude": 49.991615, + "stopId": "U9538" + }, + { + "id": "U9538Z2", + "name": "Kožlany,žel.st.", + "isMetro": false, + "latitude": 13.531699, + "longitude": 49.992764, + "stopId": "U9538" + }, + { + "id": "U9538Z301", + "name": "Kožlany", + "isMetro": false, + "latitude": 13.519154, + "longitude": 49.99366, + "stopId": "U9538" + }, + { + "id": "U9539Z301", + "name": "Kralovice u Rakovníka", + "isMetro": false, + "latitude": 13.489929, + "longitude": 49.988895, + "stopId": "U9539" + }, + { + "id": "U953Z1", + "name": "Skalka", + "isMetro": false, + "latitude": 14.507739, + "longitude": 50.068188, + "stopId": "U953" + }, + { + "id": "U953Z101", + "name": "Skalka", + "isMetro": true, + "latitude": 14.5079, + "longitude": 50.06839, + "stopId": "U953" + }, + { + "id": "U953Z102", + "name": "Skalka", + "isMetro": true, + "latitude": 14.50788, + "longitude": 50.06847, + "stopId": "U953" + }, + { + "id": "U953Z2", + "name": "Skalka", + "isMetro": false, + "latitude": 14.507584, + "longitude": 50.067966, + "stopId": "U953" + }, + { + "id": "U953Z3", + "name": "Skalka", + "isMetro": false, + "latitude": 14.507196, + "longitude": 50.068153, + "stopId": "U953" + }, + { + "id": "U953Z7", + "name": "Skalka", + "isMetro": false, + "latitude": 14.508083, + "longitude": 50.068096, + "stopId": "U953" + }, + { + "id": "U953Z8", + "name": "Skalka", + "isMetro": false, + "latitude": 14.508224, + "longitude": 50.068298, + "stopId": "U953" + }, + { + "id": "U9540Z301", + "name": "Senomaty", + "isMetro": false, + "latitude": 13.646334, + "longitude": 50.095505, + "stopId": "U9540" + }, + { + "id": "U9541Z301", + "name": "Šanov", + "isMetro": false, + "latitude": 13.628724, + "longitude": 50.091816, + "stopId": "U9541" + }, + { + "id": "U9542Z301", + "name": "Pšovlky", + "isMetro": false, + "latitude": 13.598165, + "longitude": 50.104324, + "stopId": "U9542" + }, + { + "id": "U9543Z301", + "name": "Švihov u Jesenice", + "isMetro": false, + "latitude": 13.566978, + "longitude": 50.107227, + "stopId": "U9543" + }, + { + "id": "U9544Z301", + "name": "Oráčov", + "isMetro": false, + "latitude": 13.544234, + "longitude": 50.107197, + "stopId": "U9544" + }, + { + "id": "U9545Z301", + "name": "Kosobody", + "isMetro": false, + "latitude": 13.518705, + "longitude": 50.107288, + "stopId": "U9545" + }, + { + "id": "U9546Z301", + "name": "Jesenice", + "isMetro": false, + "latitude": 13.471945, + "longitude": 50.09322, + "stopId": "U9546" + }, + { + "id": "U9547Z301", + "name": "Krty", + "isMetro": false, + "latitude": 13.433713, + "longitude": 50.090046, + "stopId": "U9547" + }, + { + "id": "U9548Z301", + "name": "Blatno u Jesenice", + "isMetro": false, + "latitude": 13.389996, + "longitude": 50.099945, + "stopId": "U9548" + }, + { + "id": "U9549Z1", + "name": "Vinořský zámek", + "isMetro": false, + "latitude": 14.578615, + "longitude": 50.142757, + "stopId": "U9549" + }, + { + "id": "U9549Z2", + "name": "Vinořský zámek", + "isMetro": false, + "latitude": 14.577524, + "longitude": 50.141151, + "stopId": "U9549" + }, + { + "id": "U9551Z1", + "name": "Březová-Oleško,Školka", + "isMetro": false, + "latitude": 14.413865, + "longitude": 49.911472, + "stopId": "U9551" + }, + { + "id": "U9551Z2", + "name": "Březová-Oleško,Školka", + "isMetro": false, + "latitude": 14.41449, + "longitude": 49.911987, + "stopId": "U9551" + }, + { + "id": "U9556Z3", + "name": "Budiměřice", + "isMetro": false, + "latitude": 15.096184, + "longitude": 50.196182, + "stopId": "U9556" + }, + { + "id": "U9556Z4", + "name": "Budiměřice", + "isMetro": false, + "latitude": 15.096421, + "longitude": 50.196083, + "stopId": "U9556" + }, + { + "id": "U9558Z1", + "name": "Budiměřice,Šlotava", + "isMetro": false, + "latitude": 15.094256, + "longitude": 50.198719, + "stopId": "U9558" + }, + { + "id": "U9558Z2", + "name": "Budiměřice,Šlotava", + "isMetro": false, + "latitude": 15.094453, + "longitude": 50.198952, + "stopId": "U9558" + }, + { + "id": "U955Z1", + "name": "Dětská nemocnice Karlov", + "isMetro": false, + "latitude": 14.428555, + "longitude": 50.070782, + "stopId": "U955" + }, + { + "id": "U9561Z2", + "name": "Chleby", + "isMetro": false, + "latitude": 15.089021, + "longitude": 50.222923, + "stopId": "U9561" + }, + { + "id": "U9562Z1", + "name": "Chleby,Draho", + "isMetro": false, + "latitude": 15.086081, + "longitude": 50.208443, + "stopId": "U9562" + }, + { + "id": "U9562Z2", + "name": "Chleby,Draho", + "isMetro": false, + "latitude": 15.086374, + "longitude": 50.208542, + "stopId": "U9562" + }, + { + "id": "U9569Z1", + "name": "Křinec,náměstí", + "isMetro": false, + "latitude": 15.139272, + "longitude": 50.266815, + "stopId": "U9569" + }, + { + "id": "U956Z1", + "name": "Apolinářská", + "isMetro": false, + "latitude": 14.42648, + "longitude": 50.07151, + "stopId": "U956" + }, + { + "id": "U956Z2", + "name": "Apolinářská", + "isMetro": false, + "latitude": 14.427031, + "longitude": 50.07151, + "stopId": "U956" + }, + { + "id": "U9574Z301", + "name": "Oskořínek", + "isMetro": false, + "latitude": 15.086015, + "longitude": 50.241673, + "stopId": "U9574" + }, + { + "id": "U957Z1", + "name": "Radlická", + "isMetro": false, + "latitude": 14.389284, + "longitude": 50.05835, + "stopId": "U957" + }, + { + "id": "U957Z101", + "name": "Radlická", + "isMetro": true, + "latitude": 14.387843, + "longitude": 50.058166, + "stopId": "U957" + }, + { + "id": "U957Z2", + "name": "Radlická", + "isMetro": false, + "latitude": 14.389567, + "longitude": 50.058483, + "stopId": "U957" + }, + { + "id": "U957Z3", + "name": "Radlická", + "isMetro": false, + "latitude": 14.389416, + "longitude": 50.058792, + "stopId": "U957" + }, + { + "id": "U957Z4", + "name": "Radlická", + "isMetro": false, + "latitude": 14.38913, + "longitude": 50.059055, + "stopId": "U957" + }, + { + "id": "U9584Z1", + "name": "Kořenice,Chotouchov", + "isMetro": false, + "latitude": 15.128324, + "longitude": 49.962299, + "stopId": "U9584" + }, + { + "id": "U9584Z2", + "name": "Kořenice,Chotouchov", + "isMetro": false, + "latitude": 15.128217, + "longitude": 49.962261, + "stopId": "U9584" + }, + { + "id": "U958Z1", + "name": "Kateřinská", + "isMetro": false, + "latitude": 14.426158, + "longitude": 50.074337, + "stopId": "U958" + }, + { + "id": "U9590Z1", + "name": "Oseček", + "isMetro": false, + "latitude": 15.14638, + "longitude": 50.101158, + "stopId": "U9590" + }, + { + "id": "U9595Z1", + "name": "Pňov-Předhradí,Klipec", + "isMetro": false, + "latitude": 15.137737, + "longitude": 50.07478, + "stopId": "U9595" + }, + { + "id": "U9595Z2", + "name": "Pňov-Předhradí,Klipec", + "isMetro": false, + "latitude": 15.137416, + "longitude": 50.074959, + "stopId": "U9595" + }, + { + "id": "U9596Z1", + "name": "Pňov-Předhradí,Pňov", + "isMetro": false, + "latitude": 15.148009, + "longitude": 50.085285, + "stopId": "U9596" + }, + { + "id": "U9596Z2", + "name": "Pňov-Předhradí,Pňov", + "isMetro": false, + "latitude": 15.147673, + "longitude": 50.085018, + "stopId": "U9596" + }, + { + "id": "U9597Z1", + "name": "Pňov-Předhradí,Předhradí", + "isMetro": false, + "latitude": 15.146914, + "longitude": 50.092487, + "stopId": "U9597" + }, + { + "id": "U9597Z2", + "name": "Pňov-Předhradí,Předhradí", + "isMetro": false, + "latitude": 15.146563, + "longitude": 50.092201, + "stopId": "U9597" + }, + { + "id": "U9598Z1", + "name": "Poděbrady,Kluk,Hřbitov", + "isMetro": false, + "latitude": 15.104772, + "longitude": 50.133602, + "stopId": "U9598" + }, + { + "id": "U9598Z2", + "name": "Poděbrady,Kluk,Hřbitov", + "isMetro": false, + "latitude": 15.104659, + "longitude": 50.13335, + "stopId": "U9598" + }, + { + "id": "U959Z1", + "name": "Větrov", + "isMetro": false, + "latitude": 14.424393, + "longitude": 50.073666, + "stopId": "U959" + }, + { + "id": "U959Z2", + "name": "Větrov", + "isMetro": false, + "latitude": 14.4244, + "longitude": 50.073231, + "stopId": "U959" + }, + { + "id": "U9600Z1", + "name": "Poděbrady,Kluk", + "isMetro": false, + "latitude": 15.111561, + "longitude": 50.130116, + "stopId": "U9600" + }, + { + "id": "U9600Z2", + "name": "Poděbrady,Kluk", + "isMetro": false, + "latitude": 15.111338, + "longitude": 50.130215, + "stopId": "U9600" + }, + { + "id": "U9601Z1", + "name": "Sokoleč", + "isMetro": false, + "latitude": 15.107274, + "longitude": 50.09626, + "stopId": "U9601" + }, + { + "id": "U9601Z3", + "name": "Sokoleč", + "isMetro": false, + "latitude": 15.106941, + "longitude": 50.096371, + "stopId": "U9601" + }, + { + "id": "U9602Z1", + "name": "Sokoleč,U Pekárny", + "isMetro": false, + "latitude": 15.105904, + "longitude": 50.101543, + "stopId": "U9602" + }, + { + "id": "U9602Z2", + "name": "Sokoleč,U Pekárny", + "isMetro": false, + "latitude": 15.105637, + "longitude": 50.100651, + "stopId": "U9602" + }, + { + "id": "U9604Z1", + "name": "Velim,Škola", + "isMetro": false, + "latitude": 15.114464, + "longitude": 50.059574, + "stopId": "U9604" + }, + { + "id": "U9605Z1", + "name": "Velim,Karlova", + "isMetro": false, + "latitude": 15.121462, + "longitude": 50.063507, + "stopId": "U9605" + }, + { + "id": "U9605Z2", + "name": "Velim,Karlova", + "isMetro": false, + "latitude": 15.122133, + "longitude": 50.063679, + "stopId": "U9605" + }, + { + "id": "U9606Z1", + "name": "Velim,Vítězov", + "isMetro": false, + "latitude": 15.120489, + "longitude": 50.048458, + "stopId": "U9606" + }, + { + "id": "U9606Z2", + "name": "Velim,Vítězov", + "isMetro": false, + "latitude": 15.12007, + "longitude": 50.048458, + "stopId": "U9606" + }, + { + "id": "U9607Z1", + "name": "Velim,Novoveská", + "isMetro": false, + "latitude": 15.125044, + "longitude": 50.065842, + "stopId": "U9607" + }, + { + "id": "U9607Z2", + "name": "Velim,Novoveská", + "isMetro": false, + "latitude": 15.125742, + "longitude": 50.065838, + "stopId": "U9607" + }, + { + "id": "U9608Z1", + "name": "Doubravčice,Na Číhadlech", + "isMetro": false, + "latitude": 14.787031, + "longitude": 50.018772, + "stopId": "U9608" + }, + { + "id": "U9608Z2", + "name": "Doubravčice,Na Číhadlech", + "isMetro": false, + "latitude": 14.78745, + "longitude": 50.018902, + "stopId": "U9608" + }, + { + "id": "U9609Z1", + "name": "Doubravčice,V Edenu", + "isMetro": false, + "latitude": 14.78289, + "longitude": 50.015072, + "stopId": "U9609" + }, + { + "id": "U9609Z2", + "name": "Doubravčice,V Edenu", + "isMetro": false, + "latitude": 14.783127, + "longitude": 50.015198, + "stopId": "U9609" + }, + { + "id": "U960Z1", + "name": "Brodského", + "isMetro": false, + "latitude": 14.503267, + "longitude": 50.038551, + "stopId": "U960" + }, + { + "id": "U960Z2", + "name": "Brodského", + "isMetro": false, + "latitude": 14.503851, + "longitude": 50.038666, + "stopId": "U960" + }, + { + "id": "U9611Z1", + "name": "Bzová,Bezovka", + "isMetro": false, + "latitude": 13.86798, + "longitude": 49.896954, + "stopId": "U9611" + }, + { + "id": "U9611Z2", + "name": "Bzová,Bezovka", + "isMetro": false, + "latitude": 13.868006, + "longitude": 49.897026, + "stopId": "U9611" + }, + { + "id": "U9612Z1", + "name": "Žebrák,Sedlec,Za Dálnicí", + "isMetro": false, + "latitude": 13.89537, + "longitude": 49.866531, + "stopId": "U9612" + }, + { + "id": "U9612Z2", + "name": "Žebrák,Sedlec,Za Dálnicí", + "isMetro": false, + "latitude": 13.895438, + "longitude": 49.866657, + "stopId": "U9612" + }, + { + "id": "U9613Z1", + "name": "Žebrák,prům.zóna Jih", + "isMetro": false, + "latitude": 13.893607, + "longitude": 49.8615, + "stopId": "U9613" + }, + { + "id": "U9613Z2", + "name": "Žebrák,prům.zóna Jih", + "isMetro": false, + "latitude": 13.893343, + "longitude": 49.860878, + "stopId": "U9613" + }, + { + "id": "U9614Z1", + "name": "Tlustice", + "isMetro": false, + "latitude": 13.883934, + "longitude": 49.849106, + "stopId": "U9614" + }, + { + "id": "U9614Z2", + "name": "Tlustice", + "isMetro": false, + "latitude": 13.883554, + "longitude": 49.849293, + "stopId": "U9614" + }, + { + "id": "U9615Z3", + "name": "Hořovice,Sklenářka", + "isMetro": false, + "latitude": 13.889067, + "longitude": 49.843582, + "stopId": "U9615" + }, + { + "id": "U9615Z4", + "name": "Hořovice,Sklenářka", + "isMetro": false, + "latitude": 13.889679, + "longitude": 49.843544, + "stopId": "U9615" + }, + { + "id": "U9616Z1", + "name": "Hořovice,Valdek", + "isMetro": false, + "latitude": 13.897114, + "longitude": 49.8382, + "stopId": "U9616" + }, + { + "id": "U9616Z2", + "name": "Hořovice,Valdek", + "isMetro": false, + "latitude": 13.896929, + "longitude": 49.838379, + "stopId": "U9616" + }, + { + "id": "U9616Z3", + "name": "Hořovice,Valdek", + "isMetro": false, + "latitude": 13.896715, + "longitude": 49.8386, + "stopId": "U9616" + }, + { + "id": "U9616Z4", + "name": "Hořovice,Valdek", + "isMetro": false, + "latitude": 13.897004, + "longitude": 49.838127, + "stopId": "U9616" + }, + { + "id": "U9616Z5", + "name": "Hořovice,Valdek", + "isMetro": false, + "latitude": 13.897132, + "longitude": 49.838032, + "stopId": "U9616" + }, + { + "id": "U9616Z6", + "name": "Hořovice,Valdek", + "isMetro": false, + "latitude": 13.89737, + "longitude": 49.837917, + "stopId": "U9616" + }, + { + "id": "U9616Z7", + "name": "Hořovice,Valdek", + "isMetro": false, + "latitude": 13.898339, + "longitude": 49.837986, + "stopId": "U9616" + }, + { + "id": "U9617Z1", + "name": "Hořovice,Palackého nám.", + "isMetro": false, + "latitude": 13.903327, + "longitude": 49.83638, + "stopId": "U9617" + }, + { + "id": "U9617Z2", + "name": "Hořovice,Palackého nám.", + "isMetro": false, + "latitude": 13.903234, + "longitude": 49.836235, + "stopId": "U9617" + }, + { + "id": "U9618Z1", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.90236, + "longitude": 49.833649, + "stopId": "U9618" + }, + { + "id": "U9618Z2", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.902044, + "longitude": 49.8335, + "stopId": "U9618" + }, + { + "id": "U9618Z3", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.902417, + "longitude": 49.833595, + "stopId": "U9618" + }, + { + "id": "U9618Z4", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.902128, + "longitude": 49.833466, + "stopId": "U9618" + }, + { + "id": "U9618Z5", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.90246, + "longitude": 49.833549, + "stopId": "U9618" + }, + { + "id": "U9618Z6", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.902199, + "longitude": 49.833412, + "stopId": "U9618" + }, + { + "id": "U9618Z7", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.902476, + "longitude": 49.833462, + "stopId": "U9618" + }, + { + "id": "U9618Z8", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.902242, + "longitude": 49.833351, + "stopId": "U9618" + }, + { + "id": "U9618Z9", + "name": "Hořovice,nám.B.Němcové", + "isMetro": false, + "latitude": 13.902691, + "longitude": 49.833191, + "stopId": "U9618" + }, + { + "id": "U9619Z1", + "name": "Ondřejov,Dlážděná", + "isMetro": false, + "latitude": 14.785276, + "longitude": 49.908779, + "stopId": "U9619" + }, + { + "id": "U9619Z2", + "name": "Ondřejov,Dlážděná", + "isMetro": false, + "latitude": 14.785129, + "longitude": 49.908665, + "stopId": "U9619" + }, + { + "id": "U961Z1", + "name": "Pražská čtvrť", + "isMetro": false, + "latitude": 14.366851, + "longitude": 50.028202, + "stopId": "U961" + }, + { + "id": "U961Z2", + "name": "Pražská čtvrť", + "isMetro": false, + "latitude": 14.366867, + "longitude": 50.027683, + "stopId": "U961" + }, + { + "id": "U9621Z1", + "name": "Dobříš,lom", + "isMetro": false, + "latitude": 14.166611, + "longitude": 49.771671, + "stopId": "U9621" + }, + { + "id": "U9621Z2", + "name": "Dobříš,lom", + "isMetro": false, + "latitude": 14.166949, + "longitude": 49.77216, + "stopId": "U9621" + }, + { + "id": "U9622Z1", + "name": "Dobříš,Statek", + "isMetro": false, + "latitude": 14.155113, + "longitude": 49.776623, + "stopId": "U9622" + }, + { + "id": "U9622Z2", + "name": "Dobříš,Statek", + "isMetro": false, + "latitude": 14.155187, + "longitude": 49.776409, + "stopId": "U9622" + }, + { + "id": "U9623Z1", + "name": "Dobříš,Svatá Anna", + "isMetro": false, + "latitude": 14.140757, + "longitude": 49.772724, + "stopId": "U9623" + }, + { + "id": "U9623Z2", + "name": "Dobříš,Svatá Anna", + "isMetro": false, + "latitude": 14.141741, + "longitude": 49.772804, + "stopId": "U9623" + }, + { + "id": "U9624Z1", + "name": "Bohutín,škola", + "isMetro": false, + "latitude": 13.942188, + "longitude": 49.653568, + "stopId": "U9624" + }, + { + "id": "U9624Z2", + "name": "Bohutín,škola", + "isMetro": false, + "latitude": 13.942576, + "longitude": 49.653526, + "stopId": "U9624" + }, + { + "id": "U9625Z1", + "name": "Rosovice,Sychrov", + "isMetro": false, + "latitude": 14.115843, + "longitude": 49.761738, + "stopId": "U9625" + }, + { + "id": "U9625Z2", + "name": "Rosovice,Sychrov", + "isMetro": false, + "latitude": 14.116024, + "longitude": 49.761684, + "stopId": "U9625" + }, + { + "id": "U9626Z1", + "name": "Rosovice", + "isMetro": false, + "latitude": 14.109507, + "longitude": 49.756824, + "stopId": "U9626" + }, + { + "id": "U9627Z1", + "name": "Rosovice,dolní Holšiny", + "isMetro": false, + "latitude": 14.101083, + "longitude": 49.761303, + "stopId": "U9627" + }, + { + "id": "U9627Z2", + "name": "Rosovice,dolní Holšiny", + "isMetro": false, + "latitude": 14.101211, + "longitude": 49.76115, + "stopId": "U9627" + }, + { + "id": "U9628Z1", + "name": "Rosovice,Holšiny", + "isMetro": false, + "latitude": 14.096388, + "longitude": 49.75703, + "stopId": "U9628" + }, + { + "id": "U9628Z2", + "name": "Rosovice,Holšiny", + "isMetro": false, + "latitude": 14.096608, + "longitude": 49.757149, + "stopId": "U9628" + }, + { + "id": "U9629Z1", + "name": "Rosovice,Kamenný Dvůr", + "isMetro": false, + "latitude": 14.091739, + "longitude": 49.751122, + "stopId": "U9629" + }, + { + "id": "U9629Z2", + "name": "Rosovice,Kamenný Dvůr", + "isMetro": false, + "latitude": 14.091987, + "longitude": 49.751186, + "stopId": "U9629" + }, + { + "id": "U962Z1", + "name": "Skládka Ďáblice", + "isMetro": false, + "latitude": 14.485707, + "longitude": 50.15416, + "stopId": "U962" + }, + { + "id": "U962Z2", + "name": "Skládka Ďáblice", + "isMetro": false, + "latitude": 14.485566, + "longitude": 50.154472, + "stopId": "U962" + }, + { + "id": "U9630Z1", + "name": "Buková u Příbramě,Na Vršku", + "isMetro": false, + "latitude": 14.072275, + "longitude": 49.752289, + "stopId": "U9630" + }, + { + "id": "U9630Z2", + "name": "Buková u Příbramě,Na Vršku", + "isMetro": false, + "latitude": 14.072141, + "longitude": 49.752056, + "stopId": "U9630" + }, + { + "id": "U9631Z1", + "name": "Buková u Příbramě", + "isMetro": false, + "latitude": 14.066955, + "longitude": 49.75473, + "stopId": "U9631" + }, + { + "id": "U9631Z2", + "name": "Buková u Příbramě", + "isMetro": false, + "latitude": 14.067179, + "longitude": 49.754658, + "stopId": "U9631" + }, + { + "id": "U9632Z1", + "name": "Pičín,U Hřbitova", + "isMetro": false, + "latitude": 14.060627, + "longitude": 49.750408, + "stopId": "U9632" + }, + { + "id": "U9632Z2", + "name": "Pičín,U Hřbitova", + "isMetro": false, + "latitude": 14.060837, + "longitude": 49.75032, + "stopId": "U9632" + }, + { + "id": "U9633Z1", + "name": "Pičín", + "isMetro": false, + "latitude": 14.057463, + "longitude": 49.745426, + "stopId": "U9633" + }, + { + "id": "U9633Z2", + "name": "Pičín", + "isMetro": false, + "latitude": 14.057726, + "longitude": 49.745464, + "stopId": "U9633" + }, + { + "id": "U9636Z1", + "name": "Kotenčice", + "isMetro": false, + "latitude": 14.093659, + "longitude": 49.735878, + "stopId": "U9636" + }, + { + "id": "U9636Z2", + "name": "Kotenčice", + "isMetro": false, + "latitude": 14.093525, + "longitude": 49.736427, + "stopId": "U9636" + }, + { + "id": "U9637Z1", + "name": "Suchodol", + "isMetro": false, + "latitude": 14.083052, + "longitude": 49.724602, + "stopId": "U9637" + }, + { + "id": "U9637Z2", + "name": "Suchodol", + "isMetro": false, + "latitude": 14.083665, + "longitude": 49.725052, + "stopId": "U9637" + }, + { + "id": "U9638Z1", + "name": "Suchodol,Líha", + "isMetro": false, + "latitude": 14.073735, + "longitude": 49.718578, + "stopId": "U9638" + }, + { + "id": "U9638Z2", + "name": "Suchodol,Líha", + "isMetro": false, + "latitude": 14.074014, + "longitude": 49.718552, + "stopId": "U9638" + }, + { + "id": "U9639Z1", + "name": "Občov", + "isMetro": false, + "latitude": 14.066025, + "longitude": 49.712833, + "stopId": "U9639" + }, + { + "id": "U9639Z2", + "name": "Občov", + "isMetro": false, + "latitude": 14.066276, + "longitude": 49.712753, + "stopId": "U9639" + }, + { + "id": "U963Z1", + "name": "Wattova", + "isMetro": false, + "latitude": 14.561984, + "longitude": 50.037449, + "stopId": "U963" + }, + { + "id": "U9640Z1", + "name": "Občov,U Lesa", + "isMetro": false, + "latitude": 14.059768, + "longitude": 49.710884, + "stopId": "U9640" + }, + { + "id": "U9640Z2", + "name": "Občov,U Lesa", + "isMetro": false, + "latitude": 14.060238, + "longitude": 49.710915, + "stopId": "U9640" + }, + { + "id": "U9641Z1", + "name": "Obořiště,Lhotka", + "isMetro": false, + "latitude": 14.158317, + "longitude": 49.755203, + "stopId": "U9641" + }, + { + "id": "U9641Z2", + "name": "Obořiště,Lhotka", + "isMetro": false, + "latitude": 14.15912, + "longitude": 49.756092, + "stopId": "U9641" + }, + { + "id": "U9642Z1", + "name": "Obořiště", + "isMetro": false, + "latitude": 14.151532, + "longitude": 49.742344, + "stopId": "U9642" + }, + { + "id": "U9642Z2", + "name": "Obořiště", + "isMetro": false, + "latitude": 14.151752, + "longitude": 49.742477, + "stopId": "U9642" + }, + { + "id": "U9643Z1", + "name": "Obořiště,Vyšehrad", + "isMetro": false, + "latitude": 14.150671, + "longitude": 49.737659, + "stopId": "U9643" + }, + { + "id": "U9643Z2", + "name": "Obořiště,Vyšehrad", + "isMetro": false, + "latitude": 14.150919, + "longitude": 49.73777, + "stopId": "U9643" + }, + { + "id": "U9644Z1", + "name": "Dlouhá Lhota", + "isMetro": false, + "latitude": 14.11842, + "longitude": 49.721416, + "stopId": "U9644" + }, + { + "id": "U9644Z2", + "name": "Dlouhá Lhota", + "isMetro": false, + "latitude": 14.118658, + "longitude": 49.721291, + "stopId": "U9644" + }, + { + "id": "U9645Z1", + "name": "Drásov,Skalka,letiště", + "isMetro": false, + "latitude": 14.099372, + "longitude": 49.712082, + "stopId": "U9645" + }, + { + "id": "U9645Z2", + "name": "Drásov,Skalka,letiště", + "isMetro": false, + "latitude": 14.100572, + "longitude": 49.712421, + "stopId": "U9645" + }, + { + "id": "U9646Z1", + "name": "Drásov,Skalka", + "isMetro": false, + "latitude": 14.085791, + "longitude": 49.705059, + "stopId": "U9646" + }, + { + "id": "U9646Z2", + "name": "Drásov,Skalka", + "isMetro": false, + "latitude": 14.088799, + "longitude": 49.70575, + "stopId": "U9646" + }, + { + "id": "U9646Z3", + "name": "Drásov,Skalka", + "isMetro": false, + "latitude": 14.089001, + "longitude": 49.70541, + "stopId": "U9646" + }, + { + "id": "U9646Z4", + "name": "Drásov,Skalka", + "isMetro": false, + "latitude": 14.089276, + "longitude": 49.705475, + "stopId": "U9646" + }, + { + "id": "U9646Z5", + "name": "Drásov,Skalka", + "isMetro": false, + "latitude": 14.090276, + "longitude": 49.70512, + "stopId": "U9646" + }, + { + "id": "U9646Z6", + "name": "Drásov,Skalka", + "isMetro": false, + "latitude": 14.090594, + "longitude": 49.704937, + "stopId": "U9646" + }, + { + "id": "U9647Z1", + "name": "Dubno,restaurace", + "isMetro": false, + "latitude": 14.053098, + "longitude": 49.697361, + "stopId": "U9647" + }, + { + "id": "U9647Z2", + "name": "Dubno,restaurace", + "isMetro": false, + "latitude": 14.05332, + "longitude": 49.697327, + "stopId": "U9647" + }, + { + "id": "U9648Z1", + "name": "Dubno,kaplička", + "isMetro": false, + "latitude": 14.051399, + "longitude": 49.695511, + "stopId": "U9648" + }, + { + "id": "U9649Z1", + "name": "Dubno,Učiliště", + "isMetro": false, + "latitude": 14.046518, + "longitude": 49.685097, + "stopId": "U9649" + }, + { + "id": "U9649Z2", + "name": "Dubno,Učiliště", + "isMetro": false, + "latitude": 14.046834, + "longitude": 49.685253, + "stopId": "U9649" + }, + { + "id": "U964Z1", + "name": "U Nemocnice", + "isMetro": false, + "latitude": 14.42096, + "longitude": 50.073559, + "stopId": "U964" + }, + { + "id": "U964Z2", + "name": "U Nemocnice", + "isMetro": false, + "latitude": 14.420901, + "longitude": 50.073483, + "stopId": "U964" + }, + { + "id": "U9650Z1", + "name": "Benátky n.Jiz.,Vaněčkova", + "isMetro": false, + "latitude": 14.829444, + "longitude": 50.292908, + "stopId": "U9650" + }, + { + "id": "U9650Z2", + "name": "Benátky n.Jiz.,Vaněčkova", + "isMetro": false, + "latitude": 14.829325, + "longitude": 50.292931, + "stopId": "U9650" + }, + { + "id": "U9652Z1", + "name": "Příbram,Bytíz", + "isMetro": false, + "latitude": 14.071609, + "longitude": 49.680996, + "stopId": "U9652" + }, + { + "id": "U9655Z1", + "name": "Háje,betonárna", + "isMetro": false, + "latitude": 14.057617, + "longitude": 49.674389, + "stopId": "U9655" + }, + { + "id": "U9655Z2", + "name": "Háje,betonárna", + "isMetro": false, + "latitude": 14.057759, + "longitude": 49.674202, + "stopId": "U9655" + }, + { + "id": "U9657Z1", + "name": "Háje,Na Važinách", + "isMetro": false, + "latitude": 14.049687, + "longitude": 49.675331, + "stopId": "U9657" + }, + { + "id": "U9657Z2", + "name": "Háje,Na Važinách", + "isMetro": false, + "latitude": 14.049733, + "longitude": 49.675152, + "stopId": "U9657" + }, + { + "id": "U9658Z1", + "name": "Háje", + "isMetro": false, + "latitude": 14.045115, + "longitude": 49.673927, + "stopId": "U9658" + }, + { + "id": "U9659Z1", + "name": "Příbram,U Míků", + "isMetro": false, + "latitude": 14.032706, + "longitude": 49.682072, + "stopId": "U9659" + }, + { + "id": "U9659Z2", + "name": "Příbram,U Míků", + "isMetro": false, + "latitude": 14.03264, + "longitude": 49.681889, + "stopId": "U9659" + }, + { + "id": "U965Z1", + "name": "Ke Koulce", + "isMetro": false, + "latitude": 14.404573, + "longitude": 50.061649, + "stopId": "U965" + }, + { + "id": "U9660Z1", + "name": "Příbram,Hájecká", + "isMetro": false, + "latitude": 14.030365, + "longitude": 49.682743, + "stopId": "U9660" + }, + { + "id": "U9661Z1", + "name": "Příbram,Nová Hospoda", + "isMetro": false, + "latitude": 14.033628, + "longitude": 49.690762, + "stopId": "U9661" + }, + { + "id": "U9661Z2", + "name": "Příbram,Nová Hospoda", + "isMetro": false, + "latitude": 14.033729, + "longitude": 49.690613, + "stopId": "U9661" + }, + { + "id": "U9662Z1", + "name": "Příbram,Nová Hospoda Polní", + "isMetro": false, + "latitude": 14.038383, + "longitude": 49.687225, + "stopId": "U9662" + }, + { + "id": "U9662Z2", + "name": "Příbram,Nová Hospoda Polní", + "isMetro": false, + "latitude": 14.038547, + "longitude": 49.687386, + "stopId": "U9662" + }, + { + "id": "U9663Z1", + "name": "Příbram,Fibichova", + "isMetro": false, + "latitude": 14.015279, + "longitude": 49.690067, + "stopId": "U9663" + }, + { + "id": "U9663Z2", + "name": "Příbram,Fibichova", + "isMetro": false, + "latitude": 14.015442, + "longitude": 49.690231, + "stopId": "U9663" + }, + { + "id": "U9665Z2", + "name": "Příbram,Evropská", + "isMetro": false, + "latitude": 14.016193, + "longitude": 49.697639, + "stopId": "U9665" + }, + { + "id": "U9666Z1", + "name": "Příbram,Jinecká", + "isMetro": false, + "latitude": 14.01603, + "longitude": 49.699543, + "stopId": "U9666" + }, + { + "id": "U9666Z2", + "name": "Příbram,Jinecká", + "isMetro": false, + "latitude": 14.016177, + "longitude": 49.699821, + "stopId": "U9666" + }, + { + "id": "U9669Z1", + "name": "Trhové Dušníky,Na Homoli", + "isMetro": false, + "latitude": 14.01594, + "longitude": 49.710873, + "stopId": "U9669" + }, + { + "id": "U9669Z2", + "name": "Trhové Dušníky,Na Homoli", + "isMetro": false, + "latitude": 14.016205, + "longitude": 49.710819, + "stopId": "U9669" + }, + { + "id": "U966Z1", + "name": "Šafránkova", + "isMetro": false, + "latitude": 14.339417, + "longitude": 50.058418, + "stopId": "U966" + }, + { + "id": "U966Z2", + "name": "Šafránkova", + "isMetro": false, + "latitude": 14.339343, + "longitude": 50.058048, + "stopId": "U966" + }, + { + "id": "U966Z3", + "name": "Šafránkova", + "isMetro": false, + "latitude": 14.337779, + "longitude": 50.059025, + "stopId": "U966" + }, + { + "id": "U966Z4", + "name": "Šafránkova", + "isMetro": false, + "latitude": 14.337846, + "longitude": 50.058937, + "stopId": "U966" + }, + { + "id": "U9670Z1", + "name": "Hluboš,Kardavec", + "isMetro": false, + "latitude": 14.013907, + "longitude": 49.729069, + "stopId": "U9670" + }, + { + "id": "U9670Z2", + "name": "Hluboš,Kardavec", + "isMetro": false, + "latitude": 14.014261, + "longitude": 49.728722, + "stopId": "U9670" + }, + { + "id": "U9671Z1", + "name": "Hluboš,Loudilka", + "isMetro": false, + "latitude": 14.015798, + "longitude": 49.735085, + "stopId": "U9671" + }, + { + "id": "U9671Z2", + "name": "Hluboš,Loudilka", + "isMetro": false, + "latitude": 14.016036, + "longitude": 49.734951, + "stopId": "U9671" + }, + { + "id": "U9672Z1", + "name": "Hluboš", + "isMetro": false, + "latitude": 14.020516, + "longitude": 49.745964, + "stopId": "U9672" + }, + { + "id": "U9672Z2", + "name": "Hluboš", + "isMetro": false, + "latitude": 14.020754, + "longitude": 49.745895, + "stopId": "U9672" + }, + { + "id": "U9673Z1", + "name": "Bratkovice,Dominikální Paseky,rozc.", + "isMetro": false, + "latitude": 14.009312, + "longitude": 49.757244, + "stopId": "U9673" + }, + { + "id": "U9673Z2", + "name": "Bratkovice,Dominikální Paseky,rozc.", + "isMetro": false, + "latitude": 14.009841, + "longitude": 49.757141, + "stopId": "U9673" + }, + { + "id": "U9675Z401", + "name": "Bratkovice", + "isMetro": false, + "latitude": 14.000191, + "longitude": 49.741844, + "stopId": "U9675" + }, + { + "id": "U9676Z1", + "name": "Sádek", + "isMetro": false, + "latitude": 13.982661, + "longitude": 49.732899, + "stopId": "U9676" + }, + { + "id": "U9676Z2", + "name": "Sádek", + "isMetro": false, + "latitude": 13.982802, + "longitude": 49.732784, + "stopId": "U9676" + }, + { + "id": "U9677Z1", + "name": "Drahlín,ObÚ", + "isMetro": false, + "latitude": 13.968855, + "longitude": 49.732437, + "stopId": "U9677" + }, + { + "id": "U9677Z2", + "name": "Drahlín,ObÚ", + "isMetro": false, + "latitude": 13.968874, + "longitude": 49.73222, + "stopId": "U9677" + }, + { + "id": "U9678Z1", + "name": "Drahlín", + "isMetro": false, + "latitude": 13.963972, + "longitude": 49.733093, + "stopId": "U9678" + }, + { + "id": "U9678Z2", + "name": "Drahlín", + "isMetro": false, + "latitude": 13.96399, + "longitude": 49.732906, + "stopId": "U9678" + }, + { + "id": "U9679Z1", + "name": "Drahlín,Malý Drahlín", + "isMetro": false, + "latitude": 13.951169, + "longitude": 49.730495, + "stopId": "U9679" + }, + { + "id": "U9679Z2", + "name": "Drahlín,Malý Drahlín", + "isMetro": false, + "latitude": 13.951297, + "longitude": 49.730362, + "stopId": "U9679" + }, + { + "id": "U967Z1", + "name": "Sídliště Petrovice", + "isMetro": false, + "latitude": 14.563887, + "longitude": 50.034264, + "stopId": "U967" + }, + { + "id": "U967Z2", + "name": "Sídliště Petrovice", + "isMetro": false, + "latitude": 14.563784, + "longitude": 50.034466, + "stopId": "U967" + }, + { + "id": "U967Z3", + "name": "Sídliště Petrovice", + "isMetro": false, + "latitude": 14.5628, + "longitude": 50.034752, + "stopId": "U967" + }, + { + "id": "U967Z4", + "name": "Sídliště Petrovice", + "isMetro": false, + "latitude": 14.562751, + "longitude": 50.035233, + "stopId": "U967" + }, + { + "id": "U9680Z1", + "name": "Obecnice", + "isMetro": false, + "latitude": 13.948081, + "longitude": 49.716145, + "stopId": "U9680" + }, + { + "id": "U9680Z2", + "name": "Obecnice", + "isMetro": false, + "latitude": 13.947662, + "longitude": 49.716286, + "stopId": "U9680" + }, + { + "id": "U9680Z3", + "name": "Obecnice", + "isMetro": false, + "latitude": 13.946979, + "longitude": 49.715832, + "stopId": "U9680" + }, + { + "id": "U9680Z4", + "name": "Obecnice", + "isMetro": false, + "latitude": 13.947225, + "longitude": 49.716022, + "stopId": "U9680" + }, + { + "id": "U9681Z1", + "name": "Obecnice,Šachta", + "isMetro": false, + "latitude": 13.965157, + "longitude": 49.712605, + "stopId": "U9681" + }, + { + "id": "U9681Z2", + "name": "Obecnice,Šachta", + "isMetro": false, + "latitude": 13.965209, + "longitude": 49.712749, + "stopId": "U9681" + }, + { + "id": "U9682Z1", + "name": "Obecnice,U Dušků", + "isMetro": false, + "latitude": 13.9456, + "longitude": 49.712933, + "stopId": "U9682" + }, + { + "id": "U9682Z2", + "name": "Obecnice,U Dušků", + "isMetro": false, + "latitude": 13.945753, + "longitude": 49.712879, + "stopId": "U9682" + }, + { + "id": "U9683Z1", + "name": "Obecnice,U Hlinovky", + "isMetro": false, + "latitude": 13.943451, + "longitude": 49.709694, + "stopId": "U9683" + }, + { + "id": "U9683Z2", + "name": "Obecnice,U Hlinovky", + "isMetro": false, + "latitude": 13.943633, + "longitude": 49.709595, + "stopId": "U9683" + }, + { + "id": "U9684Z1", + "name": "Obecnice,Oseč,Pod Třemošnou", + "isMetro": false, + "latitude": 13.948555, + "longitude": 49.703186, + "stopId": "U9684" + }, + { + "id": "U9684Z2", + "name": "Obecnice,Oseč,Pod Třemošnou", + "isMetro": false, + "latitude": 13.948442, + "longitude": 49.703339, + "stopId": "U9684" + }, + { + "id": "U9685Z1", + "name": "Obecnice,Oseč", + "isMetro": false, + "latitude": 13.958755, + "longitude": 49.70396, + "stopId": "U9685" + }, + { + "id": "U9685Z2", + "name": "Obecnice,Oseč", + "isMetro": false, + "latitude": 13.959043, + "longitude": 49.704151, + "stopId": "U9685" + }, + { + "id": "U9686Z1", + "name": "Podlesí,Dubová hora", + "isMetro": false, + "latitude": 13.970575, + "longitude": 49.704895, + "stopId": "U9686" + }, + { + "id": "U9686Z2", + "name": "Podlesí,Dubová hora", + "isMetro": false, + "latitude": 13.970878, + "longitude": 49.705021, + "stopId": "U9686" + }, + { + "id": "U9687Z1", + "name": "Podlesí,Nové Podlesí", + "isMetro": false, + "latitude": 13.978514, + "longitude": 49.702499, + "stopId": "U9687" + }, + { + "id": "U9687Z2", + "name": "Podlesí,Nové Podlesí", + "isMetro": false, + "latitude": 13.978734, + "longitude": 49.702576, + "stopId": "U9687" + }, + { + "id": "U9688Z1", + "name": "Podlesí,u vrby", + "isMetro": false, + "latitude": 13.982544, + "longitude": 49.693401, + "stopId": "U9688" + }, + { + "id": "U9688Z2", + "name": "Podlesí,u vrby", + "isMetro": false, + "latitude": 13.982751, + "longitude": 49.693439, + "stopId": "U9688" + }, + { + "id": "U9689Z1", + "name": "Podlesí", + "isMetro": false, + "latitude": 13.983247, + "longitude": 49.690258, + "stopId": "U9689" + }, + { + "id": "U9689Z2", + "name": "Podlesí", + "isMetro": false, + "latitude": 13.983064, + "longitude": 49.690384, + "stopId": "U9689" + }, + { + "id": "U968Z1", + "name": "Nušlova", + "isMetro": false, + "latitude": 14.345517, + "longitude": 50.054916, + "stopId": "U968" + }, + { + "id": "U968Z2", + "name": "Nušlova", + "isMetro": false, + "latitude": 14.346884, + "longitude": 50.054668, + "stopId": "U968" + }, + { + "id": "U9690Z1", + "name": "U Uhříněveské obory", + "isMetro": false, + "latitude": 14.590106, + "longitude": 50.039223, + "stopId": "U9690" + }, + { + "id": "U9691Z1", + "name": "Bečovská", + "isMetro": false, + "latitude": 14.587071, + "longitude": 50.04282, + "stopId": "U9691" + }, + { + "id": "U9691Z2", + "name": "Bečovská", + "isMetro": false, + "latitude": 14.586701, + "longitude": 50.043407, + "stopId": "U9691" + }, + { + "id": "U9692Z1", + "name": "Dubečský hřbitov", + "isMetro": false, + "latitude": 14.580149, + "longitude": 50.053123, + "stopId": "U9692" + }, + { + "id": "U9692Z2", + "name": "Dubečský hřbitov", + "isMetro": false, + "latitude": 14.58076, + "longitude": 50.051868, + "stopId": "U9692" + }, + { + "id": "U9694Z1", + "name": "Perspektivní", + "isMetro": false, + "latitude": 14.557375, + "longitude": 50.07198, + "stopId": "U9694" + }, + { + "id": "U9694Z2", + "name": "Perspektivní", + "isMetro": false, + "latitude": 14.557684, + "longitude": 50.072025, + "stopId": "U9694" + }, + { + "id": "U9696Z1", + "name": "Příbram,průmyslová zóna", + "isMetro": false, + "latitude": 13.996124, + "longitude": 49.69014, + "stopId": "U9696" + }, + { + "id": "U9696Z2", + "name": "Příbram,průmyslová zóna", + "isMetro": false, + "latitude": 13.995749, + "longitude": 49.69017, + "stopId": "U9696" + }, + { + "id": "U9697Z1", + "name": "Příbram,Lidl", + "isMetro": false, + "latitude": 14.004614, + "longitude": 49.694767, + "stopId": "U9697" + }, + { + "id": "U9698Z1", + "name": "Příbram,Kaufland", + "isMetro": false, + "latitude": 13.998836, + "longitude": 49.691761, + "stopId": "U9698" + }, + { + "id": "U9698Z2", + "name": "Příbram,Kaufland", + "isMetro": false, + "latitude": 13.998542, + "longitude": 49.691868, + "stopId": "U9698" + }, + { + "id": "U9699Z1", + "name": "Příbram,Žižkova", + "isMetro": false, + "latitude": 14.027526, + "longitude": 49.690327, + "stopId": "U9699" + }, + { + "id": "U9699Z2", + "name": "Příbram,Žižkova", + "isMetro": false, + "latitude": 14.025523, + "longitude": 49.689983, + "stopId": "U9699" + }, + { + "id": "U9699Z3", + "name": "Příbram,Žižkova", + "isMetro": false, + "latitude": 14.025848, + "longitude": 49.690311, + "stopId": "U9699" + }, + { + "id": "U969Z1", + "name": "Jarníkova", + "isMetro": false, + "latitude": 14.494184, + "longitude": 50.026512, + "stopId": "U969" + }, + { + "id": "U969Z2", + "name": "Jarníkova", + "isMetro": false, + "latitude": 14.494051, + "longitude": 50.026783, + "stopId": "U969" + }, + { + "id": "U96Z1", + "name": "Dolnoměcholupská", + "isMetro": false, + "latitude": 14.556726, + "longitude": 50.0606, + "stopId": "U96" + }, + { + "id": "U96Z2", + "name": "Dolnoměcholupská", + "isMetro": false, + "latitude": 14.558767, + "longitude": 50.059521, + "stopId": "U96" + }, + { + "id": "U96Z3", + "name": "U Střediska", + "isMetro": false, + "latitude": 14.558234, + "longitude": 50.05875, + "stopId": "U96" + }, + { + "id": "U96Z4", + "name": "U Střediska", + "isMetro": false, + "latitude": 14.557262, + "longitude": 50.058575, + "stopId": "U96" + }, + { + "id": "U9700Z1", + "name": "Příbram,K Podlesí", + "isMetro": false, + "latitude": 13.9929, + "longitude": 49.690586, + "stopId": "U9700" + }, + { + "id": "U9700Z2", + "name": "Příbram,K Podlesí", + "isMetro": false, + "latitude": 13.993146, + "longitude": 49.69075, + "stopId": "U9700" + }, + { + "id": "U9701Z1", + "name": "Příbram,Pragovka", + "isMetro": false, + "latitude": 14.003012, + "longitude": 49.692894, + "stopId": "U9701" + }, + { + "id": "U9701Z2", + "name": "Příbram,Pragovka", + "isMetro": false, + "latitude": 14.003274, + "longitude": 49.692944, + "stopId": "U9701" + }, + { + "id": "U9702Z1", + "name": "Příbram,Plynárenská", + "isMetro": false, + "latitude": 14.001537, + "longitude": 49.696507, + "stopId": "U9702" + }, + { + "id": "U9702Z2", + "name": "Příbram,Plynárenská", + "isMetro": false, + "latitude": 14.00176, + "longitude": 49.696491, + "stopId": "U9702" + }, + { + "id": "U9704Z1", + "name": "Příbram,RAVAK", + "isMetro": false, + "latitude": 13.996935, + "longitude": 49.701942, + "stopId": "U9704" + }, + { + "id": "U9704Z2", + "name": "Příbram,RAVAK", + "isMetro": false, + "latitude": 13.997535, + "longitude": 49.701748, + "stopId": "U9704" + }, + { + "id": "U9705Z1", + "name": "Příbram,Velkosklady", + "isMetro": false, + "latitude": 13.993509, + "longitude": 49.704689, + "stopId": "U9705" + }, + { + "id": "U9705Z2", + "name": "Příbram,Velkosklady", + "isMetro": false, + "latitude": 13.993687, + "longitude": 49.704807, + "stopId": "U9705" + }, + { + "id": "U9706Z1", + "name": "Příbram,Obecnická", + "isMetro": false, + "latitude": 13.988946, + "longitude": 49.70813, + "stopId": "U9706" + }, + { + "id": "U9706Z2", + "name": "Příbram,Obecnická", + "isMetro": false, + "latitude": 13.989195, + "longitude": 49.708176, + "stopId": "U9706" + }, + { + "id": "U9707Z1", + "name": "Příbram,Sevastopolské nám.", + "isMetro": false, + "latitude": 14.021523, + "longitude": 49.689671, + "stopId": "U9707" + }, + { + "id": "U9707Z2", + "name": "Příbram,Balbínova", + "isMetro": false, + "latitude": 14.02078, + "longitude": 49.688793, + "stopId": "U9707" + }, + { + "id": "U9708Z1", + "name": "Příbram,Svatá Hora", + "isMetro": false, + "latitude": 14.021708, + "longitude": 49.687389, + "stopId": "U9708" + }, + { + "id": "U9708Z2", + "name": "Příbram,Svatá Hora", + "isMetro": false, + "latitude": 14.02153, + "longitude": 49.687283, + "stopId": "U9708" + }, + { + "id": "U9709Z1", + "name": "Příbram,Svatá Hora areál", + "isMetro": false, + "latitude": 14.019273, + "longitude": 49.684456, + "stopId": "U9709" + }, + { + "id": "U9709Z2", + "name": "Příbram,Svatá Hora areál", + "isMetro": false, + "latitude": 14.019409, + "longitude": 49.684555, + "stopId": "U9709" + }, + { + "id": "U970Z1", + "name": "Žárská", + "isMetro": false, + "latitude": 14.552978, + "longitude": 50.105656, + "stopId": "U970" + }, + { + "id": "U970Z2", + "name": "Žárská", + "isMetro": false, + "latitude": 14.55378, + "longitude": 50.105831, + "stopId": "U970" + }, + { + "id": "U9710Z1", + "name": "Příbram,Pod Hvězdárnou", + "isMetro": false, + "latitude": 14.022931, + "longitude": 49.692768, + "stopId": "U9710" + }, + { + "id": "U9710Z2", + "name": "Příbram,Pod Hvězdárnou", + "isMetro": false, + "latitude": 14.022901, + "longitude": 49.692913, + "stopId": "U9710" + }, + { + "id": "U9711Z1", + "name": "Příbram,Koperníkova", + "isMetro": false, + "latitude": 14.01864, + "longitude": 49.692516, + "stopId": "U9711" + }, + { + "id": "U9711Z2", + "name": "Příbram,Koperníkova", + "isMetro": false, + "latitude": 14.017437, + "longitude": 49.692345, + "stopId": "U9711" + }, + { + "id": "U9712Z1", + "name": "Příbram,Jiráskovy sady", + "isMetro": false, + "latitude": 14.012775, + "longitude": 49.689709, + "stopId": "U9712" + }, + { + "id": "U9712Z2", + "name": "Příbram,Jiráskovy sady", + "isMetro": false, + "latitude": 14.012583, + "longitude": 49.689404, + "stopId": "U9712" + }, + { + "id": "U9712Z3", + "name": "Příbram,Jiráskovy sady", + "isMetro": false, + "latitude": 14.012849, + "longitude": 49.68961, + "stopId": "U9712" + }, + { + "id": "U9712Z4", + "name": "Příbram,Jiráskovy sady", + "isMetro": false, + "latitude": 14.013308, + "longitude": 49.689545, + "stopId": "U9712" + }, + { + "id": "U9712Z5", + "name": "Příbram,Jiráskovy sady", + "isMetro": false, + "latitude": 14.012948, + "longitude": 49.689476, + "stopId": "U9712" + }, + { + "id": "U9712Z6", + "name": "Příbram,Jiráskovy sady", + "isMetro": false, + "latitude": 14.012423, + "longitude": 49.689636, + "stopId": "U9712" + }, + { + "id": "U9716Z1", + "name": "Příbram,Nemocnice", + "isMetro": false, + "latitude": 14.011004, + "longitude": 49.691444, + "stopId": "U9716" + }, + { + "id": "U9717Z1", + "name": "Příbram,Plzeňská", + "isMetro": false, + "latitude": 14.008718, + "longitude": 49.688995, + "stopId": "U9717" + }, + { + "id": "U9717Z2", + "name": "Příbram,nám.T.G.M.", + "isMetro": false, + "latitude": 14.009251, + "longitude": 49.688705, + "stopId": "U9717" + }, + { + "id": "U9717Z3", + "name": "Příbram,nám.T.G.M.", + "isMetro": false, + "latitude": 14.00878, + "longitude": 49.687954, + "stopId": "U9717" + }, + { + "id": "U9718Z1", + "name": "Příbram,Milínská", + "isMetro": false, + "latitude": 14.009064, + "longitude": 49.686321, + "stopId": "U9718" + }, + { + "id": "U9718Z2", + "name": "Příbram,Milínská", + "isMetro": false, + "latitude": 14.009316, + "longitude": 49.686127, + "stopId": "U9718" + }, + { + "id": "U9719Z1", + "name": "Příbram,Milínská-Mixova", + "isMetro": false, + "latitude": 14.008751, + "longitude": 49.683262, + "stopId": "U9719" + }, + { + "id": "U9719Z2", + "name": "Příbram,Milínská-Mixova", + "isMetro": false, + "latitude": 14.009024, + "longitude": 49.683487, + "stopId": "U9719" + }, + { + "id": "U9719Z3", + "name": "Příbram,Mixova", + "isMetro": false, + "latitude": 14.009817, + "longitude": 49.68264, + "stopId": "U9719" + }, + { + "id": "U971Z1", + "name": "Vrbova", + "isMetro": false, + "latitude": 14.426926, + "longitude": 50.031841, + "stopId": "U971" + }, + { + "id": "U9720Z1", + "name": "Příbram,pod Kaňkou", + "isMetro": false, + "latitude": 14.007981, + "longitude": 49.680225, + "stopId": "U9720" + }, + { + "id": "U9720Z2", + "name": "Příbram,pod Kaňkou", + "isMetro": false, + "latitude": 14.008165, + "longitude": 49.680054, + "stopId": "U9720" + }, + { + "id": "U9721Z1", + "name": "Příbram,Barandov", + "isMetro": false, + "latitude": 14.007557, + "longitude": 49.678619, + "stopId": "U9721" + }, + { + "id": "U9722Z1", + "name": "Příbram,Sázky", + "isMetro": false, + "latitude": 14.016665, + "longitude": 49.678402, + "stopId": "U9722" + }, + { + "id": "U9722Z2", + "name": "Příbram,Sázky", + "isMetro": false, + "latitude": 14.016773, + "longitude": 49.67852, + "stopId": "U9722" + }, + { + "id": "U9723Z1", + "name": "Příbram,Slivických bojovníků", + "isMetro": false, + "latitude": 14.01902, + "longitude": 49.676334, + "stopId": "U9723" + }, + { + "id": "U9726Z1", + "name": "Lhota u Příbramě,MŠ", + "isMetro": false, + "latitude": 13.980801, + "longitude": 49.713093, + "stopId": "U9726" + }, + { + "id": "U9726Z2", + "name": "Lhota u Příbramě,MŠ", + "isMetro": false, + "latitude": 13.980659, + "longitude": 49.713238, + "stopId": "U9726" + }, + { + "id": "U9727Z1", + "name": "Lhota u Příbramě,Prodejna", + "isMetro": false, + "latitude": 13.979931, + "longitude": 49.7103, + "stopId": "U9727" + }, + { + "id": "U9727Z2", + "name": "Lhota u Příbramě,Prodejna", + "isMetro": false, + "latitude": 13.979817, + "longitude": 49.710415, + "stopId": "U9727" + }, + { + "id": "U9728Z1", + "name": "Logistická zóna Horní Počernice", + "isMetro": false, + "latitude": 14.591761, + "longitude": 50.11541, + "stopId": "U9728" + }, + { + "id": "U972Z1", + "name": "U Kunratického lesa", + "isMetro": false, + "latitude": 14.489176, + "longitude": 50.022507, + "stopId": "U972" + }, + { + "id": "U972Z2", + "name": "U Kunratického lesa", + "isMetro": false, + "latitude": 14.48873, + "longitude": 50.02335, + "stopId": "U972" + }, + { + "id": "U9730Z1", + "name": "Příbram,Československé armády", + "isMetro": false, + "latitude": 14.006489, + "longitude": 49.685482, + "stopId": "U9730" + }, + { + "id": "U9730Z2", + "name": "Příbram,Československé armády", + "isMetro": false, + "latitude": 14.006091, + "longitude": 49.688004, + "stopId": "U9730" + }, + { + "id": "U9731Z1", + "name": "Příbram,Na Cihelně", + "isMetro": false, + "latitude": 14.005577, + "longitude": 49.682613, + "stopId": "U9731" + }, + { + "id": "U9731Z2", + "name": "Příbram,Na Cihelně", + "isMetro": false, + "latitude": 14.005652, + "longitude": 49.682335, + "stopId": "U9731" + }, + { + "id": "U9732Z1", + "name": "Příbram,Hornických učňů", + "isMetro": false, + "latitude": 14.000018, + "longitude": 49.686115, + "stopId": "U9732" + }, + { + "id": "U9732Z2", + "name": "Příbram,Hornických učňů", + "isMetro": false, + "latitude": 14.00023, + "longitude": 49.686588, + "stopId": "U9732" + }, + { + "id": "U9734Z1", + "name": "Příbram,II.poliklinika", + "isMetro": false, + "latitude": 13.999998, + "longitude": 49.679653, + "stopId": "U9734" + }, + { + "id": "U9734Z2", + "name": "Příbram,II.poliklinika", + "isMetro": false, + "latitude": 14.000604, + "longitude": 49.679768, + "stopId": "U9734" + }, + { + "id": "U9734Z3", + "name": "Příbram,II.poliklinika", + "isMetro": false, + "latitude": 14.000268, + "longitude": 49.679596, + "stopId": "U9734" + }, + { + "id": "U9734Z4", + "name": "Příbram,II.poliklinika", + "isMetro": false, + "latitude": 14.000381, + "longitude": 49.679657, + "stopId": "U9734" + }, + { + "id": "U9734Z5", + "name": "Příbram,II.poliklinika", + "isMetro": false, + "latitude": 14.000087, + "longitude": 49.679703, + "stopId": "U9734" + }, + { + "id": "U9735Z1", + "name": "Příbram,nám.17.listopadu", + "isMetro": false, + "latitude": 13.996035, + "longitude": 49.679016, + "stopId": "U9735" + }, + { + "id": "U9735Z2", + "name": "Příbram,nám.17.listopadu", + "isMetro": false, + "latitude": 13.994854, + "longitude": 49.678474, + "stopId": "U9735" + }, + { + "id": "U9736Z1", + "name": "Příbram,Kladenská", + "isMetro": false, + "latitude": 13.990322, + "longitude": 49.677868, + "stopId": "U9736" + }, + { + "id": "U9736Z2", + "name": "Příbram,Kladenská", + "isMetro": false, + "latitude": 13.989897, + "longitude": 49.677658, + "stopId": "U9736" + }, + { + "id": "U9737Z1", + "name": "Příbram,Březové Hory,Karla Pobudy", + "isMetro": false, + "latitude": 13.98753, + "longitude": 49.678905, + "stopId": "U9737" + }, + { + "id": "U9738Z1", + "name": "Příbram,Březové Hory", + "isMetro": false, + "latitude": 13.987889, + "longitude": 49.680904, + "stopId": "U9738" + }, + { + "id": "U9738Z2", + "name": "Příbram,Březové Hory", + "isMetro": false, + "latitude": 13.988398, + "longitude": 49.681114, + "stopId": "U9738" + }, + { + "id": "U9739Z1", + "name": "Příbram,Březové Hory,nám.", + "isMetro": false, + "latitude": 13.989641, + "longitude": 49.682629, + "stopId": "U9739" + }, + { + "id": "U9739Z2", + "name": "Příbram,Březové Hory,nám.", + "isMetro": false, + "latitude": 13.990192, + "longitude": 49.682796, + "stopId": "U9739" + }, + { + "id": "U9739Z3", + "name": "Příbram,Březové Hory,domov seniorů", + "isMetro": false, + "latitude": 13.989728, + "longitude": 49.681793, + "stopId": "U9739" + }, + { + "id": "U973Z1", + "name": "Na Vartě", + "isMetro": false, + "latitude": 14.557412, + "longitude": 50.045452, + "stopId": "U973" + }, + { + "id": "U973Z2", + "name": "Na Vartě", + "isMetro": false, + "latitude": 14.557581, + "longitude": 50.045536, + "stopId": "U973" + }, + { + "id": "U9740Z1", + "name": "Příbram,Březové Hory,Mariánská", + "isMetro": false, + "latitude": 13.996219, + "longitude": 49.682846, + "stopId": "U9740" + }, + { + "id": "U9740Z2", + "name": "Příbram,Březové Hory,Mariánská", + "isMetro": false, + "latitude": 13.996513, + "longitude": 49.682671, + "stopId": "U9740" + }, + { + "id": "U9741Z1", + "name": "Příbram,Březové Hory,Rožmitálská", + "isMetro": false, + "latitude": 13.983445, + "longitude": 49.677422, + "stopId": "U9741" + }, + { + "id": "U9741Z2", + "name": "Příbram,Březové Hory,Rožmitálská", + "isMetro": false, + "latitude": 13.982779, + "longitude": 49.676842, + "stopId": "U9741" + }, + { + "id": "U9745Z1", + "name": "Příbram,Šachetní", + "isMetro": false, + "latitude": 13.980503, + "longitude": 49.67432, + "stopId": "U9745" + }, + { + "id": "U9746Z1", + "name": "Příbram,Slunná", + "isMetro": false, + "latitude": 13.983712, + "longitude": 49.673244, + "stopId": "U9746" + }, + { + "id": "U9747Z1", + "name": "Příbram,Drkolnov", + "isMetro": false, + "latitude": 13.985038, + "longitude": 49.675442, + "stopId": "U9747" + }, + { + "id": "U9747Z2", + "name": "Příbram,Drkolnov", + "isMetro": false, + "latitude": 13.984808, + "longitude": 49.675179, + "stopId": "U9747" + }, + { + "id": "U9748Z1", + "name": "Příbram,Podbrdská", + "isMetro": false, + "latitude": 13.98918, + "longitude": 49.675495, + "stopId": "U9748" + }, + { + "id": "U9748Z2", + "name": "Příbram,Podbrdská", + "isMetro": false, + "latitude": 13.987573, + "longitude": 49.675472, + "stopId": "U9748" + }, + { + "id": "U9749Z1", + "name": "Příbram,Seifertova", + "isMetro": false, + "latitude": 13.994862, + "longitude": 49.675426, + "stopId": "U9749" + }, + { + "id": "U9749Z2", + "name": "Příbram,Seifertova", + "isMetro": false, + "latitude": 13.996261, + "longitude": 49.675465, + "stopId": "U9749" + }, + { + "id": "U974Z1", + "name": "Měšice", + "isMetro": false, + "latitude": 14.51955, + "longitude": 50.196934, + "stopId": "U974" + }, + { + "id": "U974Z2", + "name": "Měšice", + "isMetro": false, + "latitude": 14.519467, + "longitude": 50.197334, + "stopId": "U974" + }, + { + "id": "U9750Z1", + "name": "Příbram,Archiv", + "isMetro": false, + "latitude": 13.998698, + "longitude": 49.67617, + "stopId": "U9750" + }, + { + "id": "U9750Z2", + "name": "Příbram,Archiv", + "isMetro": false, + "latitude": 13.999954, + "longitude": 49.676407, + "stopId": "U9750" + }, + { + "id": "U9751Z1", + "name": "Příbram,III.poliklinika", + "isMetro": false, + "latitude": 14.000395, + "longitude": 49.675186, + "stopId": "U9751" + }, + { + "id": "U9751Z2", + "name": "Příbram,III.poliklinika", + "isMetro": false, + "latitude": 14.000606, + "longitude": 49.675053, + "stopId": "U9751" + }, + { + "id": "U9751Z401", + "name": "Příbram,III.poliklinika", + "isMetro": false, + "latitude": 14.000395, + "longitude": 49.675186, + "stopId": "U9751" + }, + { + "id": "U9751Z402", + "name": "Příbram,III.poliklinika", + "isMetro": false, + "latitude": 14.000606, + "longitude": 49.675053, + "stopId": "U9751" + }, + { + "id": "U9753Z1", + "name": "Příbram,Zdaboř,Žežická", + "isMetro": false, + "latitude": 13.991707, + "longitude": 49.670536, + "stopId": "U9753" + }, + { + "id": "U9753Z2", + "name": "Příbram,Zdaboř,Žežická", + "isMetro": false, + "latitude": 13.991759, + "longitude": 49.67067, + "stopId": "U9753" + }, + { + "id": "U9753Z3", + "name": "Příbram,Školní kruhový objezd", + "isMetro": false, + "latitude": 13.992603, + "longitude": 49.670723, + "stopId": "U9753" + }, + { + "id": "U9753Z4", + "name": "Příbram,Školní kruhový objezd", + "isMetro": false, + "latitude": 13.992923, + "longitude": 49.6707, + "stopId": "U9753" + }, + { + "id": "U9754Z1", + "name": "Příbram,Zdaboř,Nemocnice", + "isMetro": false, + "latitude": 13.990501, + "longitude": 49.673203, + "stopId": "U9754" + }, + { + "id": "U9754Z2", + "name": "Příbram,Zdaboř,Nemocnice", + "isMetro": false, + "latitude": 13.990705, + "longitude": 49.673386, + "stopId": "U9754" + }, + { + "id": "U9755Z1", + "name": "Příbram,Zdaboř,Brodská", + "isMetro": false, + "latitude": 13.996628, + "longitude": 49.66769, + "stopId": "U9755" + }, + { + "id": "U9755Z2", + "name": "Příbram,Zdaboř,Brodská", + "isMetro": false, + "latitude": 13.994956, + "longitude": 49.668846, + "stopId": "U9755" + }, + { + "id": "U9756Z1", + "name": "Příbram,Zdaboř,Fialka", + "isMetro": false, + "latitude": 13.995424, + "longitude": 49.669659, + "stopId": "U9756" + }, + { + "id": "U9757Z1", + "name": "Příbram,Zdaboř,Komerční zóna", + "isMetro": false, + "latitude": 13.997548, + "longitude": 49.666065, + "stopId": "U9757" + }, + { + "id": "U9757Z2", + "name": "Příbram,Zdaboř,Komerční zóna", + "isMetro": false, + "latitude": 13.997531, + "longitude": 49.666199, + "stopId": "U9757" + }, + { + "id": "U9758Z1", + "name": "Příbram,Zdaboř,u Pletánků", + "isMetro": false, + "latitude": 13.989785, + "longitude": 49.668324, + "stopId": "U9758" + }, + { + "id": "U9758Z2", + "name": "Příbram,Zdaboř,u Pletánků", + "isMetro": false, + "latitude": 13.989901, + "longitude": 49.668137, + "stopId": "U9758" + }, + { + "id": "U9759Z1", + "name": "Příbram,Zdaboř", + "isMetro": false, + "latitude": 13.984466, + "longitude": 49.663036, + "stopId": "U9759" + }, + { + "id": "U9759Z2", + "name": "Příbram,Zdaboř", + "isMetro": false, + "latitude": 13.984509, + "longitude": 49.662903, + "stopId": "U9759" + }, + { + "id": "U975Z1", + "name": "Barvy a laky", + "isMetro": false, + "latitude": 14.536493, + "longitude": 50.065491, + "stopId": "U975" + }, + { + "id": "U975Z2", + "name": "Barvy a laky", + "isMetro": false, + "latitude": 14.537667, + "longitude": 50.065517, + "stopId": "U975" + }, + { + "id": "U9760Z1", + "name": "Příbram,Zdaboř,Červená", + "isMetro": false, + "latitude": 13.980059, + "longitude": 49.659805, + "stopId": "U9760" + }, + { + "id": "U9761Z1", + "name": "Příbram,Žežice,Žežičky", + "isMetro": false, + "latitude": 13.997066, + "longitude": 49.659206, + "stopId": "U9761" + }, + { + "id": "U9761Z2", + "name": "Příbram,Žežice,Žežičky", + "isMetro": false, + "latitude": 13.997315, + "longitude": 49.659191, + "stopId": "U9761" + }, + { + "id": "U9762Z1", + "name": "Příbram,Žežice,u křížku", + "isMetro": false, + "latitude": 13.997212, + "longitude": 49.656097, + "stopId": "U9762" + }, + { + "id": "U9762Z2", + "name": "Příbram,Žežice,u křížku", + "isMetro": false, + "latitude": 13.997435, + "longitude": 49.656075, + "stopId": "U9762" + }, + { + "id": "U9763Z1", + "name": "Příbram,Žežice", + "isMetro": false, + "latitude": 13.995259, + "longitude": 49.651405, + "stopId": "U9763" + }, + { + "id": "U9764Z1", + "name": "Bohutín,Vysoká Pec,zahrádky", + "isMetro": false, + "latitude": 13.972731, + "longitude": 49.672356, + "stopId": "U9764" + }, + { + "id": "U9764Z2", + "name": "Bohutín,Vysoká Pec,zahrádky", + "isMetro": false, + "latitude": 13.969258, + "longitude": 49.670151, + "stopId": "U9764" + }, + { + "id": "U9765Z1", + "name": "Bohutín,Vysoká Pec", + "isMetro": false, + "latitude": 13.963538, + "longitude": 49.664227, + "stopId": "U9765" + }, + { + "id": "U9765Z2", + "name": "Bohutín,Vysoká Pec", + "isMetro": false, + "latitude": 13.964807, + "longitude": 49.66449, + "stopId": "U9765" + }, + { + "id": "U9767Z1", + "name": "Bohutín,Havírna", + "isMetro": false, + "latitude": 13.955279, + "longitude": 49.661133, + "stopId": "U9767" + }, + { + "id": "U9767Z2", + "name": "Bohutín,Havírna", + "isMetro": false, + "latitude": 13.957165, + "longitude": 49.661716, + "stopId": "U9767" + }, + { + "id": "U9768Z1", + "name": "Bohutín", + "isMetro": false, + "latitude": 13.946566, + "longitude": 49.656044, + "stopId": "U9768" + }, + { + "id": "U9768Z2", + "name": "Bohutín", + "isMetro": false, + "latitude": 13.946775, + "longitude": 49.655983, + "stopId": "U9768" + }, + { + "id": "U976Z1", + "name": "Nádraží Velká Chuchle", + "isMetro": false, + "latitude": 14.3891, + "longitude": 50.011452, + "stopId": "U976" + }, + { + "id": "U976Z2", + "name": "Nádraží Velká Chuchle", + "isMetro": false, + "latitude": 14.389184, + "longitude": 50.011398, + "stopId": "U976" + }, + { + "id": "U976Z301", + "name": "Praha-Velká Chuchle", + "isMetro": false, + "latitude": 14.388897, + "longitude": 50.011341, + "stopId": "U976" + }, + { + "id": "U9773Z1", + "name": "Hýskov,u hřbitova", + "isMetro": false, + "latitude": 14.034919, + "longitude": 49.990997, + "stopId": "U9773" + }, + { + "id": "U9773Z2", + "name": "Hýskov,u hřbitova", + "isMetro": false, + "latitude": 14.034865, + "longitude": 49.99086, + "stopId": "U9773" + }, + { + "id": "U9774Z1", + "name": "Nižbor,Stradonice,lávka", + "isMetro": false, + "latitude": 14.025502, + "longitude": 49.995289, + "stopId": "U9774" + }, + { + "id": "U9774Z2", + "name": "Nižbor,Stradonice,lávka", + "isMetro": false, + "latitude": 14.025533, + "longitude": 49.995171, + "stopId": "U9774" + }, + { + "id": "U9775Z1", + "name": "Nižbor,Šnárová", + "isMetro": false, + "latitude": 14.001079, + "longitude": 50.010109, + "stopId": "U9775" + }, + { + "id": "U9775Z2", + "name": "Nižbor,Šnárová", + "isMetro": false, + "latitude": 14.001034, + "longitude": 50.009995, + "stopId": "U9775" + }, + { + "id": "U9776Z1", + "name": "Nižbor,u lípy", + "isMetro": false, + "latitude": 14.002336, + "longitude": 50.000744, + "stopId": "U9776" + }, + { + "id": "U9776Z2", + "name": "Nižbor,u lípy", + "isMetro": false, + "latitude": 14.002542, + "longitude": 50.000862, + "stopId": "U9776" + }, + { + "id": "U9779Z1", + "name": "Hořovice,Letná", + "isMetro": false, + "latitude": 13.904079, + "longitude": 49.843697, + "stopId": "U9779" + }, + { + "id": "U9779Z2", + "name": "Hořovice,Letná", + "isMetro": false, + "latitude": 13.904424, + "longitude": 49.843224, + "stopId": "U9779" + }, + { + "id": "U9779Z3", + "name": "Hořovice,Letná", + "isMetro": false, + "latitude": 13.904697, + "longitude": 49.843426, + "stopId": "U9779" + }, + { + "id": "U977Z1", + "name": "Měšice,Na Rejdišti", + "isMetro": false, + "latitude": 14.521284, + "longitude": 50.20393, + "stopId": "U977" + }, + { + "id": "U977Z2", + "name": "Měšice,Na Rejdišti", + "isMetro": false, + "latitude": 14.521068, + "longitude": 50.203568, + "stopId": "U977" + }, + { + "id": "U9781Z1", + "name": "Hořovice,nemocnice", + "isMetro": false, + "latitude": 13.915159, + "longitude": 49.84124, + "stopId": "U9781" + }, + { + "id": "U9781Z2", + "name": "Hořovice,nemocnice", + "isMetro": false, + "latitude": 13.914591, + "longitude": 49.84119, + "stopId": "U9781" + }, + { + "id": "U9782Z1", + "name": "Hořovice,nemocnice rozc.", + "isMetro": false, + "latitude": 13.913063, + "longitude": 49.838612, + "stopId": "U9782" + }, + { + "id": "U9782Z2", + "name": "Hořovice,nemocnice rozc.", + "isMetro": false, + "latitude": 13.913149, + "longitude": 49.838516, + "stopId": "U9782" + }, + { + "id": "U9783Z1", + "name": "Krásná Ves", + "isMetro": false, + "latitude": 14.791361, + "longitude": 50.425373, + "stopId": "U9783" + }, + { + "id": "U9783Z2", + "name": "Krásná Ves", + "isMetro": false, + "latitude": 14.791258, + "longitude": 50.42519, + "stopId": "U9783" + }, + { + "id": "U9784Z1", + "name": "Hořovice,Komenského", + "isMetro": false, + "latitude": 13.906408, + "longitude": 49.834747, + "stopId": "U9784" + }, + { + "id": "U9784Z2", + "name": "Hořovice,Vrchlického", + "isMetro": false, + "latitude": 13.907215, + "longitude": 49.834118, + "stopId": "U9784" + }, + { + "id": "U9785Z1", + "name": "Hořovice,u Dražovky", + "isMetro": false, + "latitude": 13.905716, + "longitude": 49.830318, + "stopId": "U9785" + }, + { + "id": "U9785Z2", + "name": "Hořovice,u Dražovky", + "isMetro": false, + "latitude": 13.905848, + "longitude": 49.83004, + "stopId": "U9785" + }, + { + "id": "U9787Z1", + "name": "Hořovice,u garáží", + "isMetro": false, + "latitude": 13.884212, + "longitude": 49.831623, + "stopId": "U9787" + }, + { + "id": "U9787Z2", + "name": "Hořovice,u garáží", + "isMetro": false, + "latitude": 13.883698, + "longitude": 49.831627, + "stopId": "U9787" + }, + { + "id": "U9788Z1", + "name": "Tlustice,Cintlovka", + "isMetro": false, + "latitude": 13.881929, + "longitude": 49.841969, + "stopId": "U9788" + }, + { + "id": "U9788Z2", + "name": "Tlustice,Cintlovka", + "isMetro": false, + "latitude": 13.882231, + "longitude": 49.841591, + "stopId": "U9788" + }, + { + "id": "U9789Z1", + "name": "Podluhy", + "isMetro": false, + "latitude": 13.913145, + "longitude": 49.815731, + "stopId": "U9789" + }, + { + "id": "U9789Z2", + "name": "Podluhy", + "isMetro": false, + "latitude": 13.912661, + "longitude": 49.815647, + "stopId": "U9789" + }, + { + "id": "U978Z2", + "name": "Veronské náměstí", + "isMetro": false, + "latitude": 14.558066, + "longitude": 50.040188, + "stopId": "U978" + }, + { + "id": "U9790Z1", + "name": "Podluhy,Na drahách", + "isMetro": false, + "latitude": 13.912437, + "longitude": 49.811993, + "stopId": "U9790" + }, + { + "id": "U9794Z1", + "name": "Čenkov,Záv.", + "isMetro": false, + "latitude": 14.006601, + "longitude": 49.77578, + "stopId": "U9794" + }, + { + "id": "U9794Z2", + "name": "Čenkov,Záv.", + "isMetro": false, + "latitude": 14.00727, + "longitude": 49.775665, + "stopId": "U9794" + }, + { + "id": "U9795Z1", + "name": "Čenkov", + "isMetro": false, + "latitude": 14.005163, + "longitude": 49.772774, + "stopId": "U9795" + }, + { + "id": "U9795Z2", + "name": "Čenkov", + "isMetro": false, + "latitude": 14.00511, + "longitude": 49.772701, + "stopId": "U9795" + }, + { + "id": "U9796Z1", + "name": "Čenkov,U Kříže", + "isMetro": false, + "latitude": 13.999528, + "longitude": 49.776806, + "stopId": "U9796" + }, + { + "id": "U9796Z2", + "name": "Čenkov,U Kříže", + "isMetro": false, + "latitude": 13.999501, + "longitude": 49.776733, + "stopId": "U9796" + }, + { + "id": "U9797Z1", + "name": "Jince,Sokolovna", + "isMetro": false, + "latitude": 13.979513, + "longitude": 49.785748, + "stopId": "U9797" + }, + { + "id": "U9797Z2", + "name": "Jince,Sokolovna", + "isMetro": false, + "latitude": 13.979488, + "longitude": 49.785641, + "stopId": "U9797" + }, + { + "id": "U9798Z1", + "name": "Jince,Nám.", + "isMetro": false, + "latitude": 13.977464, + "longitude": 49.790783, + "stopId": "U9798" + }, + { + "id": "U9798Z2", + "name": "Jince,Nám.", + "isMetro": false, + "latitude": 13.977497, + "longitude": 49.791153, + "stopId": "U9798" + }, + { + "id": "U9798Z401", + "name": "Jince,Nám.", + "isMetro": false, + "latitude": 13.977464, + "longitude": 49.790783, + "stopId": "U9798" + }, + { + "id": "U9798Z402", + "name": "Jince,Nám.", + "isMetro": false, + "latitude": 13.977497, + "longitude": 49.791153, + "stopId": "U9798" + }, + { + "id": "U9799Z1", + "name": "Jince,Mlýn", + "isMetro": false, + "latitude": 13.978687, + "longitude": 49.796646, + "stopId": "U9799" + }, + { + "id": "U9799Z2", + "name": "Jince,Mlýn", + "isMetro": false, + "latitude": 13.978704, + "longitude": 49.796486, + "stopId": "U9799" + }, + { + "id": "U979Z1", + "name": "Lýskova", + "isMetro": false, + "latitude": 14.309484, + "longitude": 50.0508, + "stopId": "U979" + }, + { + "id": "U979Z2", + "name": "Lýskova", + "isMetro": false, + "latitude": 14.309301, + "longitude": 50.051247, + "stopId": "U979" + }, + { + "id": "U97Z1", + "name": "Dolní Počernice", + "isMetro": false, + "latitude": 14.577201, + "longitude": 50.084984, + "stopId": "U97" + }, + { + "id": "U97Z2", + "name": "Dolní Počernice", + "isMetro": false, + "latitude": 14.577401, + "longitude": 50.085083, + "stopId": "U97" + }, + { + "id": "U97Z3", + "name": "Dolní Počernice", + "isMetro": false, + "latitude": 14.57626, + "longitude": 50.085648, + "stopId": "U97" + }, + { + "id": "U9802Z1", + "name": "Felbabka", + "isMetro": false, + "latitude": 13.941723, + "longitude": 49.813576, + "stopId": "U9802" + }, + { + "id": "U9802Z2", + "name": "Felbabka", + "isMetro": false, + "latitude": 13.941873, + "longitude": 49.813377, + "stopId": "U9802" + }, + { + "id": "U9804Z1", + "name": "Rpety,Draha", + "isMetro": false, + "latitude": 13.940471, + "longitude": 49.826191, + "stopId": "U9804" + }, + { + "id": "U9804Z2", + "name": "Rpety,Draha", + "isMetro": false, + "latitude": 13.939797, + "longitude": 49.825062, + "stopId": "U9804" + }, + { + "id": "U9805Z1", + "name": "Rpety", + "isMetro": false, + "latitude": 13.937528, + "longitude": 49.828598, + "stopId": "U9805" + }, + { + "id": "U9805Z2", + "name": "Rpety", + "isMetro": false, + "latitude": 13.937389, + "longitude": 49.828545, + "stopId": "U9805" + }, + { + "id": "U9806Z1", + "name": "Rpety,ZD", + "isMetro": false, + "latitude": 13.936342, + "longitude": 49.832588, + "stopId": "U9806" + }, + { + "id": "U9806Z2", + "name": "Rpety,ZD", + "isMetro": false, + "latitude": 13.936176, + "longitude": 49.832523, + "stopId": "U9806" + }, + { + "id": "U980Z1", + "name": "Nemocnice Bubeneč", + "isMetro": false, + "latitude": 14.401633, + "longitude": 50.107769, + "stopId": "U980" + }, + { + "id": "U980Z2", + "name": "Nemocnice Bubeneč", + "isMetro": false, + "latitude": 14.402117, + "longitude": 50.107735, + "stopId": "U980" + }, + { + "id": "U9811Z1", + "name": "Hostomice,nám.", + "isMetro": false, + "latitude": 14.046094, + "longitude": 49.825569, + "stopId": "U9811" + }, + { + "id": "U9811Z401", + "name": "Hostomice,nám.", + "isMetro": false, + "latitude": 14.046094, + "longitude": 49.825569, + "stopId": "U9811" + }, + { + "id": "U9811Z402", + "name": "Hostomice,nám.", + "isMetro": false, + "latitude": 14.046167, + "longitude": 49.825397, + "stopId": "U9811" + }, + { + "id": "U9812Z1", + "name": "Hostomice,škola", + "isMetro": false, + "latitude": 14.041396, + "longitude": 49.826019, + "stopId": "U9812" + }, + { + "id": "U9812Z2", + "name": "Hostomice,škola", + "isMetro": false, + "latitude": 14.042427, + "longitude": 49.825718, + "stopId": "U9812" + }, + { + "id": "U9813Z1", + "name": "Hostomice,Bezdědice", + "isMetro": false, + "latitude": 14.029687, + "longitude": 49.832939, + "stopId": "U9813" + }, + { + "id": "U9813Z2", + "name": "Hostomice,Bezdědice", + "isMetro": false, + "latitude": 14.029716, + "longitude": 49.832859, + "stopId": "U9813" + }, + { + "id": "U9814Z1", + "name": "Hostomice,Lštěň,rozc.", + "isMetro": false, + "latitude": 14.06605, + "longitude": 49.819176, + "stopId": "U9814" + }, + { + "id": "U9814Z2", + "name": "Hostomice,Lštěň,rozc.", + "isMetro": false, + "latitude": 14.06601, + "longitude": 49.819096, + "stopId": "U9814" + }, + { + "id": "U9817Z1", + "name": "Březová,Pod hrází", + "isMetro": false, + "latitude": 13.88927, + "longitude": 49.897179, + "stopId": "U9817" + }, + { + "id": "U9817Z2", + "name": "Březová,Pod hrází", + "isMetro": false, + "latitude": 13.889114, + "longitude": 49.897274, + "stopId": "U9817" + }, + { + "id": "U9818Z1", + "name": "Březová", + "isMetro": false, + "latitude": 13.883015, + "longitude": 49.903465, + "stopId": "U9818" + }, + { + "id": "U9818Z2", + "name": "Březová", + "isMetro": false, + "latitude": 13.883122, + "longitude": 49.903618, + "stopId": "U9818" + }, + { + "id": "U9819Z1", + "name": "Březová,háj.", + "isMetro": false, + "latitude": 13.876081, + "longitude": 49.910717, + "stopId": "U9819" + }, + { + "id": "U9819Z2", + "name": "Březová,háj.", + "isMetro": false, + "latitude": 13.876232, + "longitude": 49.910801, + "stopId": "U9819" + }, + { + "id": "U981Z1", + "name": "Koleje Strahov", + "isMetro": false, + "latitude": 14.390193, + "longitude": 50.080502, + "stopId": "U981" + }, + { + "id": "U981Z2", + "name": "Koleje Strahov", + "isMetro": false, + "latitude": 14.389873, + "longitude": 50.080185, + "stopId": "U981" + }, + { + "id": "U9820Z1", + "name": "Kublov,U Křížku", + "isMetro": false, + "latitude": 13.865366, + "longitude": 49.932442, + "stopId": "U9820" + }, + { + "id": "U9820Z2", + "name": "Kublov,U Křížku", + "isMetro": false, + "latitude": 13.865475, + "longitude": 49.93256, + "stopId": "U9820" + }, + { + "id": "U9821Z1", + "name": "Točník", + "isMetro": false, + "latitude": 13.882324, + "longitude": 49.885414, + "stopId": "U9821" + }, + { + "id": "U9821Z2", + "name": "Točník", + "isMetro": false, + "latitude": 13.882498, + "longitude": 49.885445, + "stopId": "U9821" + }, + { + "id": "U9823Z3", + "name": "Záluží,u kovárny", + "isMetro": false, + "latitude": 13.861412, + "longitude": 49.846584, + "stopId": "U9823" + }, + { + "id": "U9823Z4", + "name": "Záluží,u kovárny", + "isMetro": false, + "latitude": 13.861664, + "longitude": 49.846542, + "stopId": "U9823" + }, + { + "id": "U9824Z1", + "name": "Záluží,v Brance", + "isMetro": false, + "latitude": 13.86155, + "longitude": 49.842216, + "stopId": "U9824" + }, + { + "id": "U9824Z2", + "name": "Záluží,v Brance", + "isMetro": false, + "latitude": 13.861239, + "longitude": 49.842415, + "stopId": "U9824" + }, + { + "id": "U9826Z1", + "name": "Osek,Vystrkov", + "isMetro": false, + "latitude": 13.872914, + "longitude": 49.824913, + "stopId": "U9826" + }, + { + "id": "U9826Z2", + "name": "Osek,Vystrkov", + "isMetro": false, + "latitude": 13.872734, + "longitude": 49.824894, + "stopId": "U9826" + }, + { + "id": "U9827Z1", + "name": "Osek", + "isMetro": false, + "latitude": 13.864727, + "longitude": 49.82024, + "stopId": "U9827" + }, + { + "id": "U9827Z2", + "name": "Osek", + "isMetro": false, + "latitude": 13.86449, + "longitude": 49.82029, + "stopId": "U9827" + }, + { + "id": "U9829Z1", + "name": "Komárov,Buzuluk", + "isMetro": false, + "latitude": 13.8613, + "longitude": 49.812286, + "stopId": "U9829" + }, + { + "id": "U9829Z2", + "name": "Komárov,Buzuluk", + "isMetro": false, + "latitude": 13.860828, + "longitude": 49.812263, + "stopId": "U9829" + }, + { + "id": "U982Z1", + "name": "Volha", + "isMetro": false, + "latitude": 14.493713, + "longitude": 50.021431, + "stopId": "U982" + }, + { + "id": "U982Z2", + "name": "Volha", + "isMetro": false, + "latitude": 14.493195, + "longitude": 50.021587, + "stopId": "U982" + }, + { + "id": "U982Z3", + "name": "Volha", + "isMetro": false, + "latitude": 14.4934, + "longitude": 50.021469, + "stopId": "U982" + }, + { + "id": "U9830Z1", + "name": "Komárov", + "isMetro": false, + "latitude": 13.857318, + "longitude": 49.805573, + "stopId": "U9830" + }, + { + "id": "U9830Z2", + "name": "Komárov", + "isMetro": false, + "latitude": 13.857338, + "longitude": 49.805653, + "stopId": "U9830" + }, + { + "id": "U983Z1", + "name": "Štvanice", + "isMetro": false, + "latitude": 14.43689, + "longitude": 50.095135, + "stopId": "U983" + }, + { + "id": "U983Z2", + "name": "Štvanice", + "isMetro": false, + "latitude": 14.437012, + "longitude": 50.095406, + "stopId": "U983" + }, + { + "id": "U9841Z1", + "name": "Lochovice,u závor", + "isMetro": false, + "latitude": 13.975308, + "longitude": 49.848808, + "stopId": "U9841" + }, + { + "id": "U9841Z2", + "name": "Lochovice,u závor", + "isMetro": false, + "latitude": 13.975338, + "longitude": 49.848728, + "stopId": "U9841" + }, + { + "id": "U9842Z1", + "name": "Lochovice,nám.", + "isMetro": false, + "latitude": 13.979478, + "longitude": 49.85218, + "stopId": "U9842" + }, + { + "id": "U9842Z2", + "name": "Lochovice,nám.", + "isMetro": false, + "latitude": 13.979143, + "longitude": 49.852222, + "stopId": "U9842" + }, + { + "id": "U9844Z1", + "name": "Lochovice,traktorka", + "isMetro": false, + "latitude": 13.986218, + "longitude": 49.856358, + "stopId": "U9844" + }, + { + "id": "U9844Z2", + "name": "Lochovice,traktorka", + "isMetro": false, + "latitude": 13.986092, + "longitude": 49.856411, + "stopId": "U9844" + }, + { + "id": "U9847Z1", + "name": "Lochovice,Netolice,rozc.", + "isMetro": false, + "latitude": 13.949609, + "longitude": 49.843842, + "stopId": "U9847" + }, + { + "id": "U9847Z2", + "name": "Lochovice,Netolice,rozc.", + "isMetro": false, + "latitude": 13.87025, + "longitude": 49.791321, + "stopId": "U9847" + }, + { + "id": "U984Z1", + "name": "V Mokřinách", + "isMetro": false, + "latitude": 14.407901, + "longitude": 50.020248, + "stopId": "U984" + }, + { + "id": "U984Z2", + "name": "V Mokřinách", + "isMetro": false, + "latitude": 14.407697, + "longitude": 50.020119, + "stopId": "U984" + }, + { + "id": "U9850Z1", + "name": "Libomyšl", + "isMetro": false, + "latitude": 13.997753, + "longitude": 49.870834, + "stopId": "U9850" + }, + { + "id": "U9851Z401", + "name": "Libomyšl,u mostu", + "isMetro": false, + "latitude": 13.996456, + "longitude": 49.874367, + "stopId": "U9851" + }, + { + "id": "U9851Z402", + "name": "Libomyšl,u mostu", + "isMetro": false, + "latitude": 13.996569, + "longitude": 49.874287, + "stopId": "U9851" + }, + { + "id": "U9853Z1", + "name": "Málkov,Jednota", + "isMetro": false, + "latitude": 14.021857, + "longitude": 49.88892, + "stopId": "U9853" + }, + { + "id": "U9855Z1", + "name": "Otmíče", + "isMetro": false, + "latitude": 13.947742, + "longitude": 49.867687, + "stopId": "U9855" + }, + { + "id": "U9855Z2", + "name": "Otmíče", + "isMetro": false, + "latitude": 13.947601, + "longitude": 49.86779, + "stopId": "U9855" + }, + { + "id": "U9856Z1", + "name": "Praskolesy", + "isMetro": false, + "latitude": 13.933488, + "longitude": 49.865631, + "stopId": "U9856" + }, + { + "id": "U9856Z2", + "name": "Praskolesy", + "isMetro": false, + "latitude": 13.93318, + "longitude": 49.865738, + "stopId": "U9856" + }, + { + "id": "U9857Z1", + "name": "Kotopeky", + "isMetro": false, + "latitude": 13.923037, + "longitude": 49.858395, + "stopId": "U9857" + }, + { + "id": "U9857Z2", + "name": "Kotopeky", + "isMetro": false, + "latitude": 13.92273, + "longitude": 49.858402, + "stopId": "U9857" + }, + { + "id": "U985Z1", + "name": "Na Slovance", + "isMetro": false, + "latitude": 14.472574, + "longitude": 50.124737, + "stopId": "U985" + }, + { + "id": "U985Z2", + "name": "Na Slovance", + "isMetro": false, + "latitude": 14.47249, + "longitude": 50.123478, + "stopId": "U985" + }, + { + "id": "U9860Z1", + "name": "Kotopeky,Tihava,u mostu", + "isMetro": false, + "latitude": 13.92151, + "longitude": 49.85199, + "stopId": "U9860" + }, + { + "id": "U9860Z2", + "name": "Kotopeky,Tihava,u mostu", + "isMetro": false, + "latitude": 13.92123, + "longitude": 49.852077, + "stopId": "U9860" + }, + { + "id": "U9861Z1", + "name": "Zaječov,u mostu", + "isMetro": false, + "latitude": 13.841689, + "longitude": 49.775307, + "stopId": "U9861" + }, + { + "id": "U9861Z2", + "name": "Zaječov,u mostu", + "isMetro": false, + "latitude": 13.841454, + "longitude": 49.775253, + "stopId": "U9861" + }, + { + "id": "U9862Z1", + "name": "Zaječov,Hamburk", + "isMetro": false, + "latitude": 13.841813, + "longitude": 49.770668, + "stopId": "U9862" + }, + { + "id": "U9862Z2", + "name": "Zaječov,Hamburk", + "isMetro": false, + "latitude": 13.841606, + "longitude": 49.77063, + "stopId": "U9862" + }, + { + "id": "U9863Z1", + "name": "Zaječov", + "isMetro": false, + "latitude": 13.840922, + "longitude": 49.767288, + "stopId": "U9863" + }, + { + "id": "U9863Z2", + "name": "Zaječov", + "isMetro": false, + "latitude": 13.841196, + "longitude": 49.767445, + "stopId": "U9863" + }, + { + "id": "U9867Z1", + "name": "Jivina", + "isMetro": false, + "latitude": 13.834802, + "longitude": 49.797329, + "stopId": "U9867" + }, + { + "id": "U9867Z2", + "name": "Jivina", + "isMetro": false, + "latitude": 13.834646, + "longitude": 49.797455, + "stopId": "U9867" + }, + { + "id": "U9868Z1", + "name": "Olešná", + "isMetro": false, + "latitude": 13.809595, + "longitude": 49.780754, + "stopId": "U9868" + }, + { + "id": "U9868Z2", + "name": "Olešná", + "isMetro": false, + "latitude": 13.809522, + "longitude": 49.780907, + "stopId": "U9868" + }, + { + "id": "U9869Z1", + "name": "Zaječov,mlýn", + "isMetro": false, + "latitude": 13.842772, + "longitude": 49.783466, + "stopId": "U9869" + }, + { + "id": "U9869Z2", + "name": "Zaječov,mlýn", + "isMetro": false, + "latitude": 13.842455, + "longitude": 49.783371, + "stopId": "U9869" + }, + { + "id": "U986Z1", + "name": "Svépravice", + "isMetro": false, + "latitude": 14.610468, + "longitude": 50.102917, + "stopId": "U986" + }, + { + "id": "U986Z2", + "name": "Svépravice", + "isMetro": false, + "latitude": 14.610159, + "longitude": 50.1031, + "stopId": "U986" + }, + { + "id": "U9873Z2", + "name": "Strančice,obchodní centrum", + "isMetro": false, + "latitude": 14.67063, + "longitude": 49.945446, + "stopId": "U9873" + }, + { + "id": "U9873Z3", + "name": "Strančice,obchodní centrum", + "isMetro": false, + "latitude": 14.670802, + "longitude": 49.945614, + "stopId": "U9873" + }, + { + "id": "U9876Z1", + "name": "Roudnice n.L.,Hornická", + "isMetro": false, + "latitude": 14.240539, + "longitude": 50.425556, + "stopId": "U9876" + }, + { + "id": "U9876Z2", + "name": "Roudnice n.L.,Hornická", + "isMetro": false, + "latitude": 14.240467, + "longitude": 50.425663, + "stopId": "U9876" + }, + { + "id": "U9877Z1", + "name": "Roudnice n.L.,sídliště", + "isMetro": false, + "latitude": 14.243727, + "longitude": 50.424217, + "stopId": "U9877" + }, + { + "id": "U9877Z2", + "name": "Roudnice n.L.,sídliště", + "isMetro": false, + "latitude": 14.243164, + "longitude": 50.424217, + "stopId": "U9877" + }, + { + "id": "U9878Z1", + "name": "Roudnice n.L.,nemocnice", + "isMetro": false, + "latitude": 14.247916, + "longitude": 50.42358, + "stopId": "U9878" + }, + { + "id": "U9878Z2", + "name": "Roudnice n.L.,nemocnice", + "isMetro": false, + "latitude": 14.247635, + "longitude": 50.423542, + "stopId": "U9878" + }, + { + "id": "U9879Z1", + "name": "Roudnice n.L.,ČSAD", + "isMetro": false, + "latitude": 14.244551, + "longitude": 50.427273, + "stopId": "U9879" + }, + { + "id": "U987Z1", + "name": "U Belárie", + "isMetro": false, + "latitude": 14.403429, + "longitude": 50.016727, + "stopId": "U987" + }, + { + "id": "U987Z2", + "name": "U Belárie", + "isMetro": false, + "latitude": 14.403684, + "longitude": 50.016983, + "stopId": "U987" + }, + { + "id": "U9880Z1", + "name": "Břeclavská", + "isMetro": false, + "latitude": 14.54606, + "longitude": 50.095783, + "stopId": "U9880" + }, + { + "id": "U9880Z2", + "name": "Břeclavská", + "isMetro": false, + "latitude": 14.546226, + "longitude": 50.095955, + "stopId": "U9880" + }, + { + "id": "U9881Z1", + "name": "Kunice,Dolní Lomnice,Lomnická", + "isMetro": false, + "latitude": 14.680472, + "longitude": 49.915482, + "stopId": "U9881" + }, + { + "id": "U9881Z2", + "name": "Kunice,Dolní Lomnice,Lomnická", + "isMetro": false, + "latitude": 14.679341, + "longitude": 49.915955, + "stopId": "U9881" + }, + { + "id": "U9882Z1", + "name": "Buš,Pod Klíčem", + "isMetro": false, + "latitude": 14.388022, + "longitude": 49.800072, + "stopId": "U9882" + }, + { + "id": "U9882Z2", + "name": "Buš,Pod Klíčem", + "isMetro": false, + "latitude": 14.387865, + "longitude": 49.800411, + "stopId": "U9882" + }, + { + "id": "U9883Z1", + "name": "Hýskov,Na Krétě", + "isMetro": false, + "latitude": 14.057236, + "longitude": 49.989365, + "stopId": "U9883" + }, + { + "id": "U9883Z2", + "name": "Hýskov,Na Krétě", + "isMetro": false, + "latitude": 14.056975, + "longitude": 49.989109, + "stopId": "U9883" + }, + { + "id": "U988Z1", + "name": "Měšice,Agropodnik", + "isMetro": false, + "latitude": 14.52155, + "longitude": 50.208019, + "stopId": "U988" + }, + { + "id": "U988Z2", + "name": "Měšice,Agropodnik", + "isMetro": false, + "latitude": 14.521433, + "longitude": 50.207912, + "stopId": "U988" + }, + { + "id": "U9894Z1", + "name": "Příbram,Bytíz,Šachta", + "isMetro": false, + "latitude": 14.071814, + "longitude": 49.683388, + "stopId": "U9894" + }, + { + "id": "U9895Z1", + "name": "Rakovník,střelnice", + "isMetro": false, + "latitude": 13.737456, + "longitude": 50.102692, + "stopId": "U9895" + }, + { + "id": "U9895Z2", + "name": "Rakovník,střelnice", + "isMetro": false, + "latitude": 13.737125, + "longitude": 50.102631, + "stopId": "U9895" + }, + { + "id": "U9897Z1", + "name": "Rakovník,Šamotka", + "isMetro": false, + "latitude": 13.760806, + "longitude": 50.108723, + "stopId": "U9897" + }, + { + "id": "U9897Z2", + "name": "Rakovník,Šamotka", + "isMetro": false, + "latitude": 13.760596, + "longitude": 50.108543, + "stopId": "U9897" + }, + { + "id": "U9898Z1", + "name": "Lužná,Čs.armády", + "isMetro": false, + "latitude": 13.770926, + "longitude": 50.119423, + "stopId": "U9898" + }, + { + "id": "U9898Z2", + "name": "Lužná,Čs.armády", + "isMetro": false, + "latitude": 13.771042, + "longitude": 50.119373, + "stopId": "U9898" + }, + { + "id": "U9899Z2", + "name": "Lužná,Červený kříž", + "isMetro": false, + "latitude": 13.80239, + "longitude": 50.134022, + "stopId": "U9899" + }, + { + "id": "U989Z1", + "name": "Na Jelenách", + "isMetro": false, + "latitude": 14.499997, + "longitude": 50.021992, + "stopId": "U989" + }, + { + "id": "U989Z2", + "name": "Na Jelenách", + "isMetro": false, + "latitude": 14.499978, + "longitude": 50.022751, + "stopId": "U989" + }, + { + "id": "U98Z1", + "name": "Doliny", + "isMetro": false, + "latitude": 14.425444, + "longitude": 50.057423, + "stopId": "U98" + }, + { + "id": "U98Z2", + "name": "Doliny", + "isMetro": false, + "latitude": 14.42345, + "longitude": 50.057499, + "stopId": "U98" + }, + { + "id": "U9900Z1", + "name": "Ruda,Horácká lísa", + "isMetro": false, + "latitude": 13.834568, + "longitude": 50.139015, + "stopId": "U9900" + }, + { + "id": "U9900Z2", + "name": "Ruda,Horácká lísa", + "isMetro": false, + "latitude": 13.835123, + "longitude": 50.138912, + "stopId": "U9900" + }, + { + "id": "U9901Z1", + "name": "Ruda", + "isMetro": false, + "latitude": 13.863089, + "longitude": 50.140362, + "stopId": "U9901" + }, + { + "id": "U9901Z2", + "name": "Ruda", + "isMetro": false, + "latitude": 13.863046, + "longitude": 50.14024, + "stopId": "U9901" + }, + { + "id": "U9902Z1", + "name": "Ruda,u rybníka", + "isMetro": false, + "latitude": 13.872641, + "longitude": 50.142258, + "stopId": "U9902" + }, + { + "id": "U9902Z2", + "name": "Ruda,u rybníka", + "isMetro": false, + "latitude": 13.873668, + "longitude": 50.142921, + "stopId": "U9902" + }, + { + "id": "U9903Z1", + "name": "Roudnice n.L.,u hřbitova", + "isMetro": false, + "latitude": 14.244074, + "longitude": 50.426243, + "stopId": "U9903" + }, + { + "id": "U9903Z2", + "name": "Roudnice n.L.,u hřbitova", + "isMetro": false, + "latitude": 14.244073, + "longitude": 50.426361, + "stopId": "U9903" + }, + { + "id": "U9906Z1", + "name": "Rakovník,koup.", + "isMetro": false, + "latitude": 13.750731, + "longitude": 50.094296, + "stopId": "U9906" + }, + { + "id": "U9906Z2", + "name": "Rakovník,koup.", + "isMetro": false, + "latitude": 13.750417, + "longitude": 50.094276, + "stopId": "U9906" + }, + { + "id": "U9907Z1", + "name": "Rakovník,židovský hřbitov", + "isMetro": false, + "latitude": 13.743511, + "longitude": 50.098625, + "stopId": "U9907" + }, + { + "id": "U9907Z2", + "name": "Rakovník,židovský hřbitov", + "isMetro": false, + "latitude": 13.742863, + "longitude": 50.09877, + "stopId": "U9907" + }, + { + "id": "U9908Z1", + "name": "Rakovník,Wintrovo nám.", + "isMetro": false, + "latitude": 13.739274, + "longitude": 50.101826, + "stopId": "U9908" + }, + { + "id": "U9908Z2", + "name": "Rakovník,Wintrovo nám.", + "isMetro": false, + "latitude": 13.738934, + "longitude": 50.101856, + "stopId": "U9908" + }, + { + "id": "U9909Z1", + "name": "Lužná,Masarykovo nám.", + "isMetro": false, + "latitude": 13.769721, + "longitude": 50.124088, + "stopId": "U9909" + }, + { + "id": "U990Z1", + "name": "Madlina", + "isMetro": false, + "latitude": 14.484651, + "longitude": 50.120434, + "stopId": "U990" + }, + { + "id": "U990Z2", + "name": "Madlina", + "isMetro": false, + "latitude": 14.484351, + "longitude": 50.120201, + "stopId": "U990" + }, + { + "id": "U9911Z1", + "name": "Lužná,kpt.Jaroše", + "isMetro": false, + "latitude": 13.766624, + "longitude": 50.128845, + "stopId": "U9911" + }, + { + "id": "U9911Z2", + "name": "Lužná,kpt.Jaroše", + "isMetro": false, + "latitude": 13.766705, + "longitude": 50.12888, + "stopId": "U9911" + }, + { + "id": "U9914Z1", + "name": "Ruda,osada Brejl", + "isMetro": false, + "latitude": 13.875635, + "longitude": 50.100922, + "stopId": "U9914" + }, + { + "id": "U9914Z2", + "name": "Ruda,osada Brejl", + "isMetro": false, + "latitude": 13.875724, + "longitude": 50.100918, + "stopId": "U9914" + }, + { + "id": "U9916Z1", + "name": "Nový Dům", + "isMetro": false, + "latitude": 13.829091, + "longitude": 50.089458, + "stopId": "U9916" + }, + { + "id": "U9916Z2", + "name": "Nový Dům", + "isMetro": false, + "latitude": 13.829127, + "longitude": 50.089413, + "stopId": "U9916" + }, + { + "id": "U9917Z1", + "name": "Nový Dům,Doupno", + "isMetro": false, + "latitude": 13.821282, + "longitude": 50.088028, + "stopId": "U9917" + }, + { + "id": "U9917Z2", + "name": "Nový Dům,Doupno", + "isMetro": false, + "latitude": 13.821257, + "longitude": 50.087971, + "stopId": "U9917" + }, + { + "id": "U9918Z1", + "name": "Nový Dům,háj.", + "isMetro": false, + "latitude": 13.811646, + "longitude": 50.086571, + "stopId": "U9918" + }, + { + "id": "U9918Z2", + "name": "Nový Dům,háj.", + "isMetro": false, + "latitude": 13.811722, + "longitude": 50.086449, + "stopId": "U9918" + }, + { + "id": "U9919Z1", + "name": "Lužná,Lišanská", + "isMetro": false, + "latitude": 13.761985, + "longitude": 50.139896, + "stopId": "U9919" + }, + { + "id": "U9919Z2", + "name": "Lužná,Lišanská", + "isMetro": false, + "latitude": 13.762147, + "longitude": 50.139862, + "stopId": "U9919" + }, + { + "id": "U991Z1", + "name": "Do Koutů", + "isMetro": false, + "latitude": 14.4165, + "longitude": 49.99194, + "stopId": "U991" + }, + { + "id": "U991Z2", + "name": "Do Koutů", + "isMetro": false, + "latitude": 14.416352, + "longitude": 49.991978, + "stopId": "U991" + }, + { + "id": "U9920Z1", + "name": "Tuchlovice", + "isMetro": false, + "latitude": 13.988804, + "longitude": 50.137859, + "stopId": "U9920" + }, + { + "id": "U9920Z2", + "name": "Tuchlovice", + "isMetro": false, + "latitude": 13.989769, + "longitude": 50.138046, + "stopId": "U9920" + }, + { + "id": "U9921Z1", + "name": "Zruč n.Sáz.,Dubinská", + "isMetro": false, + "latitude": 15.103009, + "longitude": 49.746449, + "stopId": "U9921" + }, + { + "id": "U9921Z2", + "name": "Zruč n.Sáz.,Dubinská", + "isMetro": false, + "latitude": 15.103137, + "longitude": 49.746479, + "stopId": "U9921" + }, + { + "id": "U9922Z1", + "name": "Tuchlovice,Dřevěnkov", + "isMetro": false, + "latitude": 14.002659, + "longitude": 50.133324, + "stopId": "U9922" + }, + { + "id": "U9922Z2", + "name": "Tuchlovice,Dřevěnkov", + "isMetro": false, + "latitude": 14.002513, + "longitude": 50.133553, + "stopId": "U9922" + }, + { + "id": "U9923Z1", + "name": "Kamenné Žehrovice,Háje", + "isMetro": false, + "latitude": 14.028749, + "longitude": 50.128181, + "stopId": "U9923" + }, + { + "id": "U9923Z2", + "name": "Kamenné Žehrovice,Háje", + "isMetro": false, + "latitude": 14.028593, + "longitude": 50.128395, + "stopId": "U9923" + }, + { + "id": "U9924Z1", + "name": "Kamenné Žehrovice", + "isMetro": false, + "latitude": 14.016143, + "longitude": 50.127811, + "stopId": "U9924" + }, + { + "id": "U9924Z2", + "name": "Kamenné Žehrovice", + "isMetro": false, + "latitude": 14.01564, + "longitude": 50.127979, + "stopId": "U9924" + }, + { + "id": "U9926Z1", + "name": "Velká Dobrá,škola", + "isMetro": false, + "latitude": 14.068481, + "longitude": 50.109413, + "stopId": "U9926" + }, + { + "id": "U9926Z2", + "name": "Velká Dobrá,škola", + "isMetro": false, + "latitude": 14.068287, + "longitude": 50.109604, + "stopId": "U9926" + }, + { + "id": "U9927Z1", + "name": "Velká Dobrá", + "isMetro": false, + "latitude": 14.076566, + "longitude": 50.110378, + "stopId": "U9927" + }, + { + "id": "U9927Z2", + "name": "Velká Dobrá", + "isMetro": false, + "latitude": 14.076813, + "longitude": 50.110516, + "stopId": "U9927" + }, + { + "id": "U9929Z1", + "name": "Neratovice,Sídliště", + "isMetro": false, + "latitude": 14.507786, + "longitude": 50.256721, + "stopId": "U9929" + }, + { + "id": "U9929Z2", + "name": "Neratovice,Sídliště", + "isMetro": false, + "latitude": 14.507614, + "longitude": 50.256393, + "stopId": "U9929" + }, + { + "id": "U9929Z301", + "name": "Neratovice sídliště", + "isMetro": false, + "latitude": 14.507523, + "longitude": 50.256809, + "stopId": "U9929" + }, + { + "id": "U992Z1", + "name": "Spiritka", + "isMetro": false, + "latitude": 14.36832, + "longitude": 50.07737, + "stopId": "U992" + }, + { + "id": "U992Z2", + "name": "Spiritka", + "isMetro": false, + "latitude": 14.367101, + "longitude": 50.076965, + "stopId": "U992" + }, + { + "id": "U9930Z1", + "name": "Dymokury,Na Drážce", + "isMetro": false, + "latitude": 15.195415, + "longitude": 50.247505, + "stopId": "U9930" + }, + { + "id": "U9930Z2", + "name": "Dymokury,Na Drážce", + "isMetro": false, + "latitude": 15.194368, + "longitude": 50.247887, + "stopId": "U9930" + }, + { + "id": "U9933Z1", + "name": "Kácov,Zderadiny", + "isMetro": false, + "latitude": 15.028696, + "longitude": 49.807076, + "stopId": "U9933" + }, + { + "id": "U9933Z2", + "name": "Kácov,Zderadiny", + "isMetro": false, + "latitude": 15.02831, + "longitude": 49.806705, + "stopId": "U9933" + }, + { + "id": "U9934Z1", + "name": "Kácov,Zderadinky", + "isMetro": false, + "latitude": 15.026719, + "longitude": 49.80098, + "stopId": "U9934" + }, + { + "id": "U9934Z2", + "name": "Kácov,Zderadinky", + "isMetro": false, + "latitude": 15.02658, + "longitude": 49.800903, + "stopId": "U9934" + }, + { + "id": "U9935Z1", + "name": "Uhlířské Janovice,Kolínská", + "isMetro": false, + "latitude": 15.069264, + "longitude": 49.888031, + "stopId": "U9935" + }, + { + "id": "U9935Z2", + "name": "Uhlířské Janovice,Kolínská", + "isMetro": false, + "latitude": 15.068714, + "longitude": 49.88755, + "stopId": "U9935" + }, + { + "id": "U9936Z1", + "name": "Onomyšl,Křečovice,rozc.", + "isMetro": false, + "latitude": 15.114227, + "longitude": 49.915119, + "stopId": "U9936" + }, + { + "id": "U9936Z2", + "name": "Onomyšl,Křečovice,rozc.", + "isMetro": false, + "latitude": 15.114128, + "longitude": 49.915169, + "stopId": "U9936" + }, + { + "id": "U9937Z1", + "name": "Onomyšl,Miletín", + "isMetro": false, + "latitude": 15.128684, + "longitude": 49.916004, + "stopId": "U9937" + }, + { + "id": "U9937Z2", + "name": "Onomyšl,Miletín", + "isMetro": false, + "latitude": 15.128654, + "longitude": 49.9161, + "stopId": "U9937" + }, + { + "id": "U9938Z1", + "name": "Onomyšl,Rozkoš", + "isMetro": false, + "latitude": 15.137268, + "longitude": 49.916061, + "stopId": "U9938" + }, + { + "id": "U9938Z2", + "name": "Onomyšl,Rozkoš", + "isMetro": false, + "latitude": 15.136606, + "longitude": 49.915974, + "stopId": "U9938" + }, + { + "id": "U9939Z1", + "name": "Rašovice,Jindice", + "isMetro": false, + "latitude": 15.083921, + "longitude": 49.913086, + "stopId": "U9939" + }, + { + "id": "U9939Z2", + "name": "Rašovice,Jindice", + "isMetro": false, + "latitude": 15.083739, + "longitude": 49.913189, + "stopId": "U9939" + }, + { + "id": "U993Z1", + "name": "Čertův vršek", + "isMetro": false, + "latitude": 14.473985, + "longitude": 50.117134, + "stopId": "U993" + }, + { + "id": "U993Z2", + "name": "Čertův vršek", + "isMetro": false, + "latitude": 14.47412, + "longitude": 50.117336, + "stopId": "U993" + }, + { + "id": "U9940Z1", + "name": "Rašovice,Mančice,rozc.", + "isMetro": false, + "latitude": 15.081594, + "longitude": 49.899559, + "stopId": "U9940" + }, + { + "id": "U9940Z2", + "name": "Rašovice,Mančice,rozc.", + "isMetro": false, + "latitude": 15.080927, + "longitude": 49.898479, + "stopId": "U9940" + }, + { + "id": "U9941Z51", + "name": "Suchdol,Dobřeň", + "isMetro": false, + "latitude": 15.149646, + "longitude": 49.9403, + "stopId": "U9941" + }, + { + "id": "U9941Z52", + "name": "Suchdol,Dobřeň", + "isMetro": false, + "latitude": 15.149107, + "longitude": 49.939724, + "stopId": "U9941" + }, + { + "id": "U9943Z1", + "name": "Suchdol,Solopysky", + "isMetro": false, + "latitude": 15.127715, + "longitude": 49.935993, + "stopId": "U9943" + }, + { + "id": "U9943Z2", + "name": "Suchdol,Solopysky", + "isMetro": false, + "latitude": 15.127882, + "longitude": 49.936077, + "stopId": "U9943" + }, + { + "id": "U9944Z1", + "name": "Uhlířské Janovice,Malejovice", + "isMetro": false, + "latitude": 15.038187, + "longitude": 49.84573, + "stopId": "U9944" + }, + { + "id": "U9944Z2", + "name": "Uhlířské Janovice,Malejovice", + "isMetro": false, + "latitude": 15.03833, + "longitude": 49.846218, + "stopId": "U9944" + }, + { + "id": "U9945Z1", + "name": "Samopše,Talmberk", + "isMetro": false, + "latitude": 14.954599, + "longitude": 49.866859, + "stopId": "U9945" + }, + { + "id": "U9945Z2", + "name": "Samopše,Talmberk", + "isMetro": false, + "latitude": 14.954429, + "longitude": 49.866837, + "stopId": "U9945" + }, + { + "id": "U9946Z1", + "name": "Zbizuby", + "isMetro": false, + "latitude": 15.023794, + "longitude": 49.823368, + "stopId": "U9946" + }, + { + "id": "U9946Z2", + "name": "Zbizuby", + "isMetro": false, + "latitude": 15.023416, + "longitude": 49.823978, + "stopId": "U9946" + }, + { + "id": "U9947Z1", + "name": "Zbizuby,Makolusky", + "isMetro": false, + "latitude": 15.028723, + "longitude": 49.835526, + "stopId": "U9947" + }, + { + "id": "U9947Z2", + "name": "Zbizuby,Makolusky", + "isMetro": false, + "latitude": 15.028504, + "longitude": 49.83556, + "stopId": "U9947" + }, + { + "id": "U9948Z1", + "name": "Zbizuby,Nechyba", + "isMetro": false, + "latitude": 15.023436, + "longitude": 49.829369, + "stopId": "U9948" + }, + { + "id": "U9948Z2", + "name": "Zbizuby,Nechyba", + "isMetro": false, + "latitude": 15.023307, + "longitude": 49.82943, + "stopId": "U9948" + }, + { + "id": "U9949Z1", + "name": "Zbizuby,Vlková,rozc.", + "isMetro": false, + "latitude": 15.033555, + "longitude": 49.839474, + "stopId": "U9949" + }, + { + "id": "U9949Z2", + "name": "Zbizuby,Vlková,rozc.", + "isMetro": false, + "latitude": 15.033402, + "longitude": 49.839611, + "stopId": "U9949" + }, + { + "id": "U994Z1", + "name": "Břevnovský klášter", + "isMetro": false, + "latitude": 14.35901, + "longitude": 50.083179, + "stopId": "U994" + }, + { + "id": "U994Z2", + "name": "Břevnovský klášter", + "isMetro": false, + "latitude": 14.358542, + "longitude": 50.083202, + "stopId": "U994" + }, + { + "id": "U995Z1", + "name": "Na Cikorce", + "isMetro": false, + "latitude": 14.412666, + "longitude": 50.012138, + "stopId": "U995" + }, + { + "id": "U9968Z1", + "name": "Úžice", + "isMetro": false, + "latitude": 14.97354, + "longitude": 49.872181, + "stopId": "U9968" + }, + { + "id": "U9968Z2", + "name": "Úžice", + "isMetro": false, + "latitude": 14.973615, + "longitude": 49.872135, + "stopId": "U9968" + }, + { + "id": "U996Z1", + "name": "Xaverovský háj", + "isMetro": false, + "latitude": 14.619734, + "longitude": 50.101086, + "stopId": "U996" + }, + { + "id": "U996Z2", + "name": "Xaverovský háj", + "isMetro": false, + "latitude": 14.619318, + "longitude": 50.10125, + "stopId": "U996" + }, + { + "id": "U9978Z1", + "name": "Zásmuky,Nesměň", + "isMetro": false, + "latitude": 15.017374, + "longitude": 49.936504, + "stopId": "U9978" + }, + { + "id": "U9978Z2", + "name": "Zásmuky,Nesměň", + "isMetro": false, + "latitude": 15.01689, + "longitude": 49.936794, + "stopId": "U9978" + }, + { + "id": "U9979Z1", + "name": "Zásmuky,Ostrov", + "isMetro": false, + "latitude": 15.019307, + "longitude": 49.946007, + "stopId": "U9979" + }, + { + "id": "U9979Z2", + "name": "Zásmuky,Ostrov", + "isMetro": false, + "latitude": 15.01922, + "longitude": 49.946014, + "stopId": "U9979" + }, + { + "id": "U997Z1", + "name": "Lazarská", + "isMetro": false, + "latitude": 14.419922, + "longitude": 50.079239, + "stopId": "U997" + }, + { + "id": "U997Z2", + "name": "Lazarská", + "isMetro": false, + "latitude": 14.421011, + "longitude": 50.079067, + "stopId": "U997" + }, + { + "id": "U997Z3", + "name": "Lazarská", + "isMetro": false, + "latitude": 14.419501, + "longitude": 50.079365, + "stopId": "U997" + }, + { + "id": "U997Z4", + "name": "Lazarská", + "isMetro": false, + "latitude": 14.419835, + "longitude": 50.080021, + "stopId": "U997" + }, + { + "id": "U9980Z1", + "name": "Kbel,Kbílek", + "isMetro": false, + "latitude": 15.1512, + "longitude": 49.984917, + "stopId": "U9980" + }, + { + "id": "U9980Z2", + "name": "Kbel,Kbílek", + "isMetro": false, + "latitude": 15.151046, + "longitude": 49.985229, + "stopId": "U9980" + }, + { + "id": "U9981Z1", + "name": "Kbel", + "isMetro": false, + "latitude": 15.144519, + "longitude": 49.988258, + "stopId": "U9981" + }, + { + "id": "U9982Z1", + "name": "Kolín,Zibohlavy", + "isMetro": false, + "latitude": 15.158099, + "longitude": 50.00103, + "stopId": "U9982" + }, + { + "id": "U9982Z2", + "name": "Kolín,Zibohlavy", + "isMetro": false, + "latitude": 15.157745, + "longitude": 50.000954, + "stopId": "U9982" + }, + { + "id": "U9983Z1", + "name": "Kolín,nemocnice", + "isMetro": false, + "latitude": 15.196928, + "longitude": 50.019173, + "stopId": "U9983" + }, + { + "id": "U9983Z2", + "name": "Kolín,nemocnice", + "isMetro": false, + "latitude": 15.196745, + "longitude": 50.019192, + "stopId": "U9983" + }, + { + "id": "U9984Z1", + "name": "Ratboř,Těšínky", + "isMetro": false, + "latitude": 15.146151, + "longitude": 49.955669, + "stopId": "U9984" + }, + { + "id": "U9984Z2", + "name": "Ratboř,Těšínky", + "isMetro": false, + "latitude": 15.146044, + "longitude": 49.95565, + "stopId": "U9984" + }, + { + "id": "U9985Z1", + "name": "Ratboř,Sedlov", + "isMetro": false, + "latitude": 15.152514, + "longitude": 49.964085, + "stopId": "U9985" + }, + { + "id": "U9985Z2", + "name": "Ratboř,Sedlov", + "isMetro": false, + "latitude": 15.15237, + "longitude": 49.96397, + "stopId": "U9985" + }, + { + "id": "U9986Z1", + "name": "Ratboř", + "isMetro": false, + "latitude": 15.159345, + "longitude": 49.978008, + "stopId": "U9986" + }, + { + "id": "U9986Z2", + "name": "Ratboř", + "isMetro": false, + "latitude": 15.159539, + "longitude": 49.977924, + "stopId": "U9986" + }, + { + "id": "U9987Z1", + "name": "Pašinka", + "isMetro": false, + "latitude": 15.186397, + "longitude": 49.996433, + "stopId": "U9987" + }, + { + "id": "U9987Z2", + "name": "Pašinka", + "isMetro": false, + "latitude": 15.18621, + "longitude": 49.996391, + "stopId": "U9987" + }, + { + "id": "U9988Z1", + "name": "Nehvizdy,Mochovská", + "isMetro": false, + "latitude": 14.743687, + "longitude": 50.133263, + "stopId": "U9988" + }, + { + "id": "U9988Z2", + "name": "Nehvizdy,Mochovská", + "isMetro": false, + "latitude": 14.744212, + "longitude": 50.133358, + "stopId": "U9988" + }, + { + "id": "U998Z1", + "name": "Pod Říhákem", + "isMetro": false, + "latitude": 14.362034, + "longitude": 49.989033, + "stopId": "U998" + }, + { + "id": "U9997Z1", + "name": "Bečváry,Červený Hrádek", + "isMetro": false, + "latitude": 15.099109, + "longitude": 49.940681, + "stopId": "U9997" + }, + { + "id": "U9997Z2", + "name": "Bečváry,Červený Hrádek", + "isMetro": false, + "latitude": 15.098689, + "longitude": 49.941158, + "stopId": "U9997" + }, + { + "id": "U9998Z1", + "name": "Bečváry,Poďousy", + "isMetro": false, + "latitude": 15.10019, + "longitude": 49.952667, + "stopId": "U9998" + }, + { + "id": "U9998Z2", + "name": "Bečváry,Poďousy", + "isMetro": false, + "latitude": 15.100138, + "longitude": 49.952747, + "stopId": "U9998" + }, + { + "id": "U999Z1", + "name": "Mototechna", + "isMetro": false, + "latitude": 14.315438, + "longitude": 50.054092, + "stopId": "U999" + }, + { + "id": "U999Z2", + "name": "Mototechna", + "isMetro": false, + "latitude": 14.317179, + "longitude": 50.054165, + "stopId": "U999" + }, + { + "id": "U99Z1", + "name": "Donovalská", + "isMetro": false, + "latitude": 14.508884, + "longitude": 50.037399, + "stopId": "U99" + }, + { + "id": "U99Z2", + "name": "Donovalská", + "isMetro": false, + "latitude": 14.508551, + "longitude": 50.036484, + "stopId": "U99" + }, + { + "id": "U9Z1", + "name": "Baba I", + "isMetro": false, + "latitude": 14.415079, + "longitude": 49.997932, + "stopId": "U9" + }, + { + "id": "U9Z2", + "name": "Baba I", + "isMetro": false, + "latitude": 14.415114, + "longitude": 49.998573, + "stopId": "U9" + } +] diff --git a/apps/backend/prisma/seeds/routes.json b/apps/backend/prisma/seeds/routes.json new file mode 100644 index 00000000..506fbff7 --- /dev/null +++ b/apps/backend/prisma/seeds/routes.json @@ -0,0 +1,562 @@ +[ + { "id": "L158", "name": "158", "isNight": null, "vehicleType": null }, + { "id": "L195", "name": "195", "isNight": null, "vehicleType": null }, + { "id": "L351", "name": "351", "isNight": null, "vehicleType": null }, + { "id": "L377", "name": "377", "isNight": null, "vehicleType": null }, + { "id": "L159", "name": "159", "isNight": null, "vehicleType": null }, + { "id": "L185", "name": "185", "isNight": null, "vehicleType": null }, + { "id": "L201", "name": "201", "isNight": null, "vehicleType": null }, + { "id": "L209", "name": "209", "isNight": null, "vehicleType": null }, + { "id": "L378", "name": "378", "isNight": null, "vehicleType": null }, + { "id": "L302", "name": "302", "isNight": null, "vehicleType": null }, + { "id": "L376", "name": "376", "isNight": null, "vehicleType": null }, + { "id": "L993", "name": "C", "isNight": null, "vehicleType": null }, + { "id": "L136", "name": "136", "isNight": null, "vehicleType": null }, + { "id": "L110", "name": "110", "isNight": null, "vehicleType": null }, + { "id": "L58", "name": "58", "isNight": null, "vehicleType": null }, + { "id": "L413", "name": "413", "isNight": null, "vehicleType": null }, + { "id": "L375", "name": "375", "isNight": null, "vehicleType": null }, + { "id": "L154", "name": "154", "isNight": null, "vehicleType": null }, + { "id": "L175", "name": "175", "isNight": null, "vehicleType": null }, + { "id": "L183", "name": "183", "isNight": null, "vehicleType": null }, + { "id": "L245", "name": "245", "isNight": null, "vehicleType": null }, + { "id": "L906", "name": "906", "isNight": null, "vehicleType": null }, + { "id": "L227", "name": "227", "isNight": null, "vehicleType": null }, + { "id": "L17", "name": "17", "isNight": null, "vehicleType": null }, + { "id": "L27", "name": "27", "isNight": null, "vehicleType": null }, + { "id": "L92", "name": "92", "isNight": null, "vehicleType": null }, + { "id": "L117", "name": "117", "isNight": null, "vehicleType": null }, + { "id": "L174", "name": "174", "isNight": null, "vehicleType": null }, + { "id": "L225", "name": "225", "isNight": null, "vehicleType": null }, + { "id": "L902", "name": "902", "isNight": null, "vehicleType": null }, + { "id": "L904", "name": "904", "isNight": null, "vehicleType": null }, + { "id": "L992", "name": "B", "isNight": null, "vehicleType": null }, + { "id": "L352", "name": "352", "isNight": null, "vehicleType": null }, + { "id": "L301", "name": "301", "isNight": null, "vehicleType": null }, + { "id": "L202", "name": "202", "isNight": null, "vehicleType": null }, + { "id": "L197", "name": "197", "isNight": null, "vehicleType": null }, + { "id": "L1", "name": "1", "isNight": null, "vehicleType": null }, + { "id": "L6", "name": "6", "isNight": null, "vehicleType": null }, + { "id": "L25", "name": "25", "isNight": null, "vehicleType": null }, + { "id": "L93", "name": "93", "isNight": null, "vehicleType": null }, + { "id": "L156", "name": "156", "isNight": null, "vehicleType": null }, + { "id": "L12", "name": "12", "isNight": null, "vehicleType": null }, + { "id": "L14", "name": "14", "isNight": null, "vehicleType": null }, + { "id": "L1304", "name": "S4", "isNight": null, "vehicleType": null }, + { "id": "L905", "name": "905", "isNight": null, "vehicleType": null }, + { "id": "L911", "name": "911", "isNight": null, "vehicleType": null }, + { "id": "L341", "name": "341", "isNight": null, "vehicleType": null }, + { "id": "L162", "name": "162", "isNight": null, "vehicleType": null }, + { "id": "L145", "name": "145", "isNight": null, "vehicleType": null }, + { "id": "L169", "name": "169", "isNight": null, "vehicleType": null }, + { "id": "L913", "name": "913", "isNight": null, "vehicleType": null }, + { "id": "L240", "name": "240", "isNight": null, "vehicleType": null }, + { "id": "L163", "name": "163", "isNight": null, "vehicleType": null }, + { "id": "L208", "name": "208", "isNight": null, "vehicleType": null }, + { "id": "L204", "name": "204", "isNight": null, "vehicleType": null }, + { "id": "L228", "name": "228", "isNight": null, "vehicleType": null }, + { "id": "L250", "name": "250", "isNight": null, "vehicleType": null }, + { "id": "L909", "name": "909", "isNight": null, "vehicleType": null }, + { "id": "L211", "name": "211", "isNight": null, "vehicleType": null }, + { "id": "L391", "name": "391", "isNight": null, "vehicleType": null }, + { "id": "L155", "name": "155", "isNight": null, "vehicleType": null }, + { "id": "L5", "name": "5", "isNight": null, "vehicleType": null }, + { "id": "L20", "name": "20", "isNight": null, "vehicleType": null }, + { "id": "L94", "name": "94", "isNight": null, "vehicleType": null }, + { "id": "L203", "name": "203", "isNight": null, "vehicleType": null }, + { "id": "L104", "name": "104", "isNight": null, "vehicleType": null }, + { "id": "L172", "name": "172", "isNight": null, "vehicleType": null }, + { "id": "L181", "name": "181", "isNight": null, "vehicleType": null }, + { "id": "L171", "name": "171", "isNight": null, "vehicleType": null }, + { "id": "L190", "name": "190", "isNight": null, "vehicleType": null }, + { "id": "L111", "name": "111", "isNight": null, "vehicleType": null }, + { "id": "L329", "name": "329", "isNight": null, "vehicleType": null }, + { "id": "L365", "name": "365", "isNight": null, "vehicleType": null }, + { "id": "L241", "name": "241", "isNight": null, "vehicleType": null }, + { "id": "L129", "name": "129", "isNight": null, "vehicleType": null }, + { "id": "L907", "name": "907", "isNight": null, "vehicleType": null }, + { "id": "L318", "name": "318", "isNight": null, "vehicleType": null }, + { "id": "L1804", "name": "P4", "isNight": null, "vehicleType": null }, + { "id": "L120", "name": "120", "isNight": null, "vehicleType": null }, + { "id": "L170", "name": "170", "isNight": null, "vehicleType": null }, + { "id": "L130", "name": "130", "isNight": null, "vehicleType": null }, + { "id": "L951", "name": "951", "isNight": null, "vehicleType": null }, + { "id": "L141", "name": "141", "isNight": null, "vehicleType": null }, + { "id": "L912", "name": "912", "isNight": null, "vehicleType": null }, + { "id": "L344", "name": "344", "isNight": null, "vehicleType": null }, + { "id": "L303", "name": "303", "isNight": null, "vehicleType": null }, + { "id": "L353", "name": "353", "isNight": null, "vehicleType": null }, + { "id": "L354", "name": "354", "isNight": null, "vehicleType": null }, + { "id": "L135", "name": "135", "isNight": null, "vehicleType": null }, + { "id": "L150", "name": "150", "isNight": null, "vehicleType": null }, + { "id": "L910", "name": "910", "isNight": null, "vehicleType": null }, + { "id": "L901", "name": "901", "isNight": null, "vehicleType": null }, + { "id": "L357", "name": "357", "isNight": null, "vehicleType": null }, + { "id": "L327", "name": "327", "isNight": null, "vehicleType": null }, + { "id": "L331", "name": "331", "isNight": null, "vehicleType": null }, + { "id": "L247", "name": "247", "isNight": null, "vehicleType": null }, + { "id": "L22", "name": "22", "isNight": null, "vehicleType": null }, + { "id": "L97", "name": "97", "isNight": null, "vehicleType": null }, + { "id": "L7", "name": "7", "isNight": null, "vehicleType": null }, + { "id": "L9", "name": "9", "isNight": null, "vehicleType": null }, + { "id": "L10", "name": "10", "isNight": null, "vehicleType": null }, + { "id": "L15", "name": "15", "isNight": null, "vehicleType": null }, + { "id": "L16", "name": "16", "isNight": null, "vehicleType": null }, + { "id": "L98", "name": "98", "isNight": null, "vehicleType": null }, + { "id": "L99", "name": "99", "isNight": null, "vehicleType": null }, + { "id": "L908", "name": "908", "isNight": null, "vehicleType": null }, + { "id": "L167", "name": "167", "isNight": null, "vehicleType": null }, + { "id": "L191", "name": "191", "isNight": null, "vehicleType": null }, + { "id": "L820", "name": "X20", "isNight": null, "vehicleType": null }, + { "id": "L231", "name": "231", "isNight": null, "vehicleType": null }, + { "id": "L137", "name": "137", "isNight": null, "vehicleType": null }, + { "id": "L224", "name": "224", "isNight": null, "vehicleType": null }, + { "id": "L244", "name": "244", "isNight": null, "vehicleType": null }, + { "id": "L246", "name": "246", "isNight": null, "vehicleType": null }, + { "id": "L26", "name": "26", "isNight": null, "vehicleType": null }, + { "id": "L161", "name": "161", "isNight": null, "vehicleType": null }, + { "id": "L312", "name": "312", "isNight": null, "vehicleType": null }, + { "id": "L121", "name": "121", "isNight": null, "vehicleType": null }, + { "id": "L1308", "name": "S8", "isNight": null, "vehicleType": null }, + { "id": "L1388", "name": "S88", "isNight": null, "vehicleType": null }, + { "id": "L1219", "name": "R19", "isNight": null, "vehicleType": null }, + { "id": "L1218", "name": "R18", "isNight": null, "vehicleType": null }, + { "id": "L1210", "name": "R10", "isNight": null, "vehicleType": null }, + { "id": "L1209", "name": "R9", "isNight": null, "vehicleType": null }, + { "id": "L1301", "name": "S1", "isNight": null, "vehicleType": null }, + { "id": "L134", "name": "134", "isNight": null, "vehicleType": null }, + { "id": "L188", "name": "188", "isNight": null, "vehicleType": null }, + { "id": "L122", "name": "122", "isNight": null, "vehicleType": null }, + { "id": "L363", "name": "363", "isNight": null, "vehicleType": null }, + { "id": "L164", "name": "164", "isNight": null, "vehicleType": null }, + { "id": "L214", "name": "214", "isNight": null, "vehicleType": null }, + { "id": "L133", "name": "133", "isNight": null, "vehicleType": null }, + { "id": "L386", "name": "386", "isNight": null, "vehicleType": null }, + { "id": "L101", "name": "101", "isNight": null, "vehicleType": null }, + { "id": "L125", "name": "125", "isNight": null, "vehicleType": null }, + { "id": "L1217", "name": "R17", "isNight": null, "vehicleType": null }, + { "id": "L1249", "name": "R49", "isNight": null, "vehicleType": null }, + { "id": "L1309", "name": "S9", "isNight": null, "vehicleType": null }, + { "id": "L397", "name": "397", "isNight": null, "vehicleType": null }, + { "id": "L385", "name": "385", "isNight": null, "vehicleType": null }, + { "id": "L177", "name": "177", "isNight": null, "vehicleType": null }, + { "id": "L213", "name": "213", "isNight": null, "vehicleType": null }, + { "id": "L19", "name": "19", "isNight": null, "vehicleType": null }, + { "id": "L991", "name": "A", "isNight": null, "vehicleType": null }, + { "id": "L95", "name": "95", "isNight": null, "vehicleType": null }, + { "id": "L229", "name": "229", "isNight": null, "vehicleType": null }, + { "id": "L173", "name": "173", "isNight": null, "vehicleType": null }, + { "id": "L366", "name": "366", "isNight": null, "vehicleType": null }, + { "id": "L364", "name": "364", "isNight": null, "vehicleType": null }, + { "id": "L903", "name": "903", "isNight": null, "vehicleType": null }, + { "id": "L3", "name": "3", "isNight": null, "vehicleType": null }, + { "id": "L91", "name": "91", "isNight": null, "vehicleType": null }, + { "id": "L96", "name": "96", "isNight": null, "vehicleType": null }, + { "id": "L142", "name": "142", "isNight": null, "vehicleType": null }, + { "id": "L31", "name": "31", "isNight": null, "vehicleType": null }, + { "id": "L8", "name": "8", "isNight": null, "vehicleType": null }, + { "id": "L138", "name": "138", "isNight": null, "vehicleType": null }, + { "id": "L168", "name": "168", "isNight": null, "vehicleType": null }, + { "id": "L151", "name": "151", "isNight": null, "vehicleType": null }, + { "id": "L1226", "name": "R26", "isNight": null, "vehicleType": null }, + { "id": "L1306", "name": "S6", "isNight": null, "vehicleType": null }, + { "id": "L106", "name": "106", "isNight": null, "vehicleType": null }, + { "id": "L100", "name": "100", "isNight": null, "vehicleType": null }, + { "id": "L290", "name": "AE", "isNight": null, "vehicleType": null }, + { "id": "L59", "name": "59", "isNight": null, "vehicleType": null }, + { "id": "L223", "name": "223", "isNight": null, "vehicleType": null }, + { "id": "L1302", "name": "S2", "isNight": null, "vehicleType": null }, + { "id": "L1322", "name": "S22", "isNight": null, "vehicleType": null }, + { "id": "L953", "name": "953", "isNight": null, "vehicleType": null }, + { "id": "L193", "name": "193", "isNight": null, "vehicleType": null }, + { "id": "L166", "name": "166", "isNight": null, "vehicleType": null }, + { "id": "L2", "name": "2", "isNight": null, "vehicleType": null }, + { "id": "L1803", "name": "P3", "isNight": null, "vehicleType": null }, + { "id": "L118", "name": "118", "isNight": null, "vehicleType": null }, + { "id": "L184", "name": "184", "isNight": null, "vehicleType": null }, + { "id": "L147", "name": "147", "isNight": null, "vehicleType": null }, + { "id": "L23", "name": "23", "isNight": null, "vehicleType": null }, + { "id": "L894", "name": "X94", "isNight": null, "vehicleType": null }, + { "id": "L131", "name": "131", "isNight": null, "vehicleType": null }, + { "id": "L149", "name": "149", "isNight": null, "vehicleType": null }, + { "id": "L126", "name": "126", "isNight": null, "vehicleType": null }, + { "id": "L115", "name": "115", "isNight": null, "vehicleType": null }, + { "id": "L236", "name": "236", "isNight": null, "vehicleType": null }, + { "id": "L355", "name": "355", "isNight": null, "vehicleType": null }, + { "id": "L316", "name": "316", "isNight": null, "vehicleType": null }, + { "id": "L356", "name": "356", "isNight": null, "vehicleType": null }, + { "id": "L180", "name": "180", "isNight": null, "vehicleType": null }, + { "id": "L304", "name": "304", "isNight": null, "vehicleType": null }, + { "id": "L380", "name": "380", "isNight": null, "vehicleType": null }, + { "id": "L418", "name": "418", "isNight": null, "vehicleType": null }, + { "id": "L347", "name": "347", "isNight": null, "vehicleType": null }, + { "id": "L404", "name": "404", "isNight": null, "vehicleType": null }, + { "id": "L305", "name": "305", "isNight": null, "vehicleType": null }, + { "id": "L306", "name": "306", "isNight": null, "vehicleType": null }, + { "id": "L957", "name": "957", "isNight": null, "vehicleType": null }, + { "id": "L307", "name": "307", "isNight": null, "vehicleType": null }, + { "id": "L324", "name": "324", "isNight": null, "vehicleType": null }, + { "id": "L311", "name": "311", "isNight": null, "vehicleType": null }, + { "id": "L308", "name": "308", "isNight": null, "vehicleType": null }, + { "id": "L310", "name": "310", "isNight": null, "vehicleType": null }, + { "id": "L952", "name": "952", "isNight": null, "vehicleType": null }, + { "id": "L384", "name": "384", "isNight": null, "vehicleType": null }, + { "id": "L415", "name": "415", "isNight": null, "vehicleType": null }, + { "id": "L417", "name": "417", "isNight": null, "vehicleType": null }, + { "id": "L128", "name": "128", "isNight": null, "vehicleType": null }, + { "id": "L139", "name": "139", "isNight": null, "vehicleType": null }, + { "id": "L917", "name": "917", "isNight": null, "vehicleType": null }, + { "id": "L112", "name": "112", "isNight": null, "vehicleType": null }, + { "id": "L234", "name": "234", "isNight": null, "vehicleType": null }, + { "id": "L827", "name": "X27", "isNight": null, "vehicleType": null }, + { "id": "L1220", "name": "R20", "isNight": null, "vehicleType": null }, + { "id": "L1349", "name": "S49", "isNight": null, "vehicleType": null }, + { "id": "L187", "name": "187", "isNight": null, "vehicleType": null }, + { "id": "L108", "name": "108", "isNight": null, "vehicleType": null }, + { "id": "L1224", "name": "R24", "isNight": null, "vehicleType": null }, + { "id": "L1245", "name": "R45", "isNight": null, "vehicleType": null }, + { "id": "L1305", "name": "S5", "isNight": null, "vehicleType": null }, + { "id": "L1354", "name": "S54", "isNight": null, "vehicleType": null }, + { "id": "L463", "name": "463", "isNight": null, "vehicleType": null }, + { "id": "L403", "name": "403", "isNight": null, "vehicleType": null }, + { "id": "L775", "name": "775", "isNight": null, "vehicleType": null }, + { "id": "L499", "name": "499", "isNight": null, "vehicleType": null }, + { "id": "L105", "name": "105", "isNight": null, "vehicleType": null }, + { "id": "L11", "name": "11", "isNight": null, "vehicleType": null }, + { "id": "L13", "name": "13", "isNight": null, "vehicleType": null }, + { "id": "L2254", "name": "XS54", "isNight": null, "vehicleType": null }, + { "id": "L527", "name": "527", "isNight": null, "vehicleType": null }, + { "id": "L526", "name": "526", "isNight": null, "vehicleType": null }, + { "id": "L528", "name": "528", "isNight": null, "vehicleType": null }, + { "id": "L477", "name": "477", "isNight": null, "vehicleType": null }, + { "id": "L471", "name": "471", "isNight": null, "vehicleType": null }, + { "id": "L478", "name": "478", "isNight": null, "vehicleType": null }, + { "id": "L2223", "name": "XS23", "isNight": null, "vehicleType": null }, + { "id": "L686", "name": "686", "isNight": null, "vehicleType": null }, + { "id": "L423", "name": "423", "isNight": null, "vehicleType": null }, + { "id": "L107", "name": "107", "isNight": null, "vehicleType": null }, + { "id": "L160", "name": "160", "isNight": null, "vehicleType": null }, + { "id": "L116", "name": "116", "isNight": null, "vehicleType": null }, + { "id": "L340", "name": "340", "isNight": null, "vehicleType": null }, + { "id": "L954", "name": "954", "isNight": null, "vehicleType": null }, + { "id": "L350", "name": "350", "isNight": null, "vehicleType": null }, + { "id": "L18", "name": "18", "isNight": null, "vehicleType": null }, + { "id": "L398", "name": "398", "isNight": null, "vehicleType": null }, + { "id": "L662", "name": "662", "isNight": null, "vehicleType": null }, + { "id": "L220", "name": "220", "isNight": null, "vehicleType": null }, + { "id": "L146", "name": "146", "isNight": null, "vehicleType": null }, + { "id": "L367", "name": "367", "isNight": null, "vehicleType": null }, + { "id": "L124", "name": "124", "isNight": null, "vehicleType": null }, + { "id": "L109", "name": "109", "isNight": null, "vehicleType": null }, + { "id": "L348", "name": "348", "isNight": null, "vehicleType": null }, + { "id": "L1221", "name": "R21", "isNight": null, "vehicleType": null }, + { "id": "L1343", "name": "S43", "isNight": null, "vehicleType": null }, + { "id": "L1303", "name": "S3", "isNight": null, "vehicleType": null }, + { "id": "L368", "name": "368", "isNight": null, "vehicleType": null }, + { "id": "L369", "name": "369", "isNight": null, "vehicleType": null }, + { "id": "L387", "name": "387", "isNight": null, "vehicleType": null }, + { "id": "L421", "name": "421", "isNight": null, "vehicleType": null }, + { "id": "L332", "name": "332", "isNight": null, "vehicleType": null }, + { "id": "L956", "name": "956", "isNight": null, "vehicleType": null }, + { "id": "L337", "name": "337", "isNight": null, "vehicleType": null }, + { "id": "L335", "name": "335", "isNight": null, "vehicleType": null }, + { "id": "L339", "name": "339", "isNight": null, "vehicleType": null }, + { "id": "L1223", "name": "R23", "isNight": null, "vehicleType": null }, + { "id": "L215", "name": "215", "isNight": null, "vehicleType": null }, + { "id": "L444", "name": "444", "isNight": null, "vehicleType": null }, + { "id": "L322", "name": "322", "isNight": null, "vehicleType": null }, + { "id": "L342", "name": "342", "isNight": null, "vehicleType": null }, + { "id": "L429", "name": "429", "isNight": null, "vehicleType": null }, + { "id": "L323", "name": "323", "isNight": null, "vehicleType": null }, + { "id": "L221", "name": "221", "isNight": null, "vehicleType": null }, + { "id": "L325", "name": "325", "isNight": null, "vehicleType": null }, + { "id": "L406", "name": "406", "isNight": null, "vehicleType": null }, + { "id": "L401", "name": "401", "isNight": null, "vehicleType": null }, + { "id": "L402", "name": "402", "isNight": null, "vehicleType": null }, + { "id": "L1801", "name": "P1", "isNight": null, "vehicleType": null }, + { "id": "L796", "name": "796", "isNight": null, "vehicleType": null }, + { "id": "L1380", "name": "S80", "isNight": null, "vehicleType": null }, + { "id": "L755", "name": "755", "isNight": null, "vehicleType": null }, + { "id": "L770", "name": "770", "isNight": null, "vehicleType": null }, + { "id": "L455", "name": "455", "isNight": null, "vehicleType": null }, + { "id": "L798", "name": "798", "isNight": null, "vehicleType": null }, + { "id": "L791", "name": "791", "isNight": null, "vehicleType": null }, + { "id": "L452", "name": "452", "isNight": null, "vehicleType": null }, + { "id": "L553", "name": "553", "isNight": null, "vehicleType": null }, + { "id": "L759", "name": "759", "isNight": null, "vehicleType": null }, + { "id": "L438", "name": "438", "isNight": null, "vehicleType": null }, + { "id": "L752", "name": "752", "isNight": null, "vehicleType": null }, + { "id": "L753", "name": "753", "isNight": null, "vehicleType": null }, + { "id": "L754", "name": "754", "isNight": null, "vehicleType": null }, + { "id": "L1398", "name": "S98", "isNight": null, "vehicleType": null }, + { "id": "L1399", "name": "S99", "isNight": null, "vehicleType": null }, + { "id": "L283", "name": "X103", "isNight": null, "vehicleType": null }, + { "id": "L399", "name": "399", "isNight": null, "vehicleType": null }, + { "id": "L960", "name": "960", "isNight": null, "vehicleType": null }, + { "id": "L194", "name": "194", "isNight": null, "vehicleType": null }, + { "id": "L143", "name": "143", "isNight": null, "vehicleType": null }, + { "id": "L916", "name": "916", "isNight": null, "vehicleType": null }, + { "id": "L491", "name": "491", "isNight": null, "vehicleType": null }, + { "id": "L435", "name": "435", "isNight": null, "vehicleType": null }, + { "id": "L1307", "name": "S7", "isNight": null, "vehicleType": null }, + { "id": "L1365", "name": "S65", "isNight": null, "vehicleType": null }, + { "id": "L661", "name": "661", "isNight": null, "vehicleType": null }, + { "id": "L443", "name": "443", "isNight": null, "vehicleType": null }, + { "id": "L1311", "name": "S11", "isNight": null, "vehicleType": null }, + { "id": "L1312", "name": "S12", "isNight": null, "vehicleType": null }, + { "id": "L669", "name": "669", "isNight": null, "vehicleType": null }, + { "id": "L1332", "name": "S32", "isNight": null, "vehicleType": null }, + { "id": "L670", "name": "670", "isNight": null, "vehicleType": null }, + { "id": "L381", "name": "381", "isNight": null, "vehicleType": null }, + { "id": "L1022", "name": "U22", "isNight": null, "vehicleType": null }, + { "id": "L646", "name": "646", "isNight": null, "vehicleType": null }, + { "id": "L434", "name": "434", "isNight": null, "vehicleType": null }, + { "id": "L430", "name": "430", "isNight": null, "vehicleType": null }, + { "id": "L432", "name": "432", "isNight": null, "vehicleType": null }, + { "id": "L176", "name": "176", "isNight": null, "vehicleType": null }, + { "id": "L442", "name": "442", "isNight": null, "vehicleType": null }, + { "id": "L333", "name": "333", "isNight": null, "vehicleType": null }, + { "id": "L226", "name": "226", "isNight": null, "vehicleType": null }, + { "id": "L382", "name": "382", "isNight": null, "vehicleType": null }, + { "id": "L383", "name": "383", "isNight": null, "vehicleType": null }, + { "id": "L959", "name": "959", "isNight": null, "vehicleType": null }, + { "id": "L445", "name": "445", "isNight": null, "vehicleType": null }, + { "id": "L461", "name": "461", "isNight": null, "vehicleType": null }, + { "id": "L651", "name": "651", "isNight": null, "vehicleType": null }, + { "id": "L655", "name": "655", "isNight": null, "vehicleType": null }, + { "id": "L123", "name": "123", "isNight": null, "vehicleType": null }, + { "id": "L113", "name": "113", "isNight": null, "vehicleType": null }, + { "id": "L469", "name": "469", "isNight": null, "vehicleType": null }, + { "id": "L664", "name": "664", "isNight": null, "vehicleType": null }, + { "id": "L419", "name": "419", "isNight": null, "vehicleType": null }, + { "id": "L199", "name": "199", "isNight": null, "vehicleType": null }, + { "id": "L313", "name": "313", "isNight": null, "vehicleType": null }, + { "id": "L103", "name": "103", "isNight": null, "vehicleType": null }, + { "id": "L914", "name": "914", "isNight": null, "vehicleType": null }, + { "id": "L630", "name": "630", "isNight": null, "vehicleType": null }, + { "id": "L685", "name": "685", "isNight": null, "vehicleType": null }, + { "id": "L489", "name": "489", "isNight": null, "vehicleType": null }, + { "id": "L490", "name": "490", "isNight": null, "vehicleType": null }, + { "id": "L494", "name": "494", "isNight": null, "vehicleType": null }, + { "id": "L320", "name": "320", "isNight": null, "vehicleType": null }, + { "id": "L317", "name": "317", "isNight": null, "vehicleType": null }, + { "id": "L961", "name": "961", "isNight": null, "vehicleType": null }, + { "id": "L688", "name": "688", "isNight": null, "vehicleType": null }, + { "id": "L996", "name": "CYK1", "isNight": null, "vehicleType": null }, + { "id": "L446", "name": "446", "isNight": null, "vehicleType": null }, + { "id": "L425", "name": "425", "isNight": null, "vehicleType": null }, + { "id": "L631", "name": "631", "isNight": null, "vehicleType": null }, + { "id": "L394", "name": "394", "isNight": null, "vehicleType": null }, + { "id": "L633", "name": "633", "isNight": null, "vehicleType": null }, + { "id": "L638", "name": "638", "isNight": null, "vehicleType": null }, + { "id": "L637", "name": "637", "isNight": null, "vehicleType": null }, + { "id": "L314", "name": "314", "isNight": null, "vehicleType": null }, + { "id": "L360", "name": "360", "isNight": null, "vehicleType": null }, + { "id": "L361", "name": "361", "isNight": null, "vehicleType": null }, + { "id": "L390", "name": "390", "isNight": null, "vehicleType": null }, + { "id": "L521", "name": "521", "isNight": null, "vehicleType": null }, + { "id": "L470", "name": "470", "isNight": null, "vehicleType": null }, + { "id": "L523", "name": "523", "isNight": null, "vehicleType": null }, + { "id": "L372", "name": "372", "isNight": null, "vehicleType": null }, + { "id": "L474", "name": "474", "isNight": null, "vehicleType": null }, + { "id": "L400", "name": "400", "isNight": null, "vehicleType": null }, + { "id": "L410", "name": "410", "isNight": null, "vehicleType": null }, + { "id": "L466", "name": "466", "isNight": null, "vehicleType": null }, + { "id": "L475", "name": "475", "isNight": null, "vehicleType": null }, + { "id": "L695", "name": "695", "isNight": null, "vehicleType": null }, + { "id": "L696", "name": "696", "isNight": null, "vehicleType": null }, + { "id": "L467", "name": "467", "isNight": null, "vehicleType": null }, + { "id": "L667", "name": "667", "isNight": null, "vehicleType": null }, + { "id": "L666", "name": "666", "isNight": null, "vehicleType": null }, + { "id": "L395", "name": "395", "isNight": null, "vehicleType": null }, + { "id": "L420", "name": "420", "isNight": null, "vehicleType": null }, + { "id": "L392", "name": "392", "isNight": null, "vehicleType": null }, + { "id": "L153", "name": "153", "isNight": null, "vehicleType": null }, + { "id": "L514", "name": "514", "isNight": null, "vehicleType": null }, + { "id": "L517", "name": "517", "isNight": null, "vehicleType": null }, + { "id": "L520", "name": "520", "isNight": null, "vehicleType": null }, + { "id": "L618", "name": "618", "isNight": null, "vehicleType": null }, + { "id": "L600", "name": "600", "isNight": null, "vehicleType": null }, + { "id": "L619", "name": "619", "isNight": null, "vehicleType": null }, + { "id": "L555", "name": "555", "isNight": null, "vehicleType": null }, + { "id": "L148", "name": "148", "isNight": null, "vehicleType": null }, + { "id": "L627", "name": "627", "isNight": null, "vehicleType": null }, + { "id": "L590", "name": "590", "isNight": null, "vehicleType": null }, + { "id": "L373", "name": "373", "isNight": null, "vehicleType": null }, + { "id": "L659", "name": "659", "isNight": null, "vehicleType": null }, + { "id": "L424", "name": "424", "isNight": null, "vehicleType": null }, + { "id": "L660", "name": "660", "isNight": null, "vehicleType": null }, + { "id": "L562", "name": "562", "isNight": null, "vehicleType": null }, + { "id": "L625", "name": "625", "isNight": null, "vehicleType": null }, + { "id": "L580", "name": "580", "isNight": null, "vehicleType": null }, + { "id": "L492", "name": "492", "isNight": null, "vehicleType": null }, + { "id": "L1318", "name": "S18", "isNight": null, "vehicleType": null }, + { "id": "L622", "name": "622", "isNight": null, "vehicleType": null }, + { "id": "L422", "name": "422", "isNight": null, "vehicleType": null }, + { "id": "L706", "name": "706", "isNight": null, "vehicleType": null }, + { "id": "L681", "name": "681", "isNight": null, "vehicleType": null }, + { "id": "L787", "name": "787", "isNight": null, "vehicleType": null }, + { "id": "L487", "name": "487", "isNight": null, "vehicleType": null }, + { "id": "L388", "name": "388", "isNight": null, "vehicleType": null }, + { "id": "L370", "name": "370", "isNight": null, "vehicleType": null }, + { "id": "L663", "name": "663", "isNight": null, "vehicleType": null }, + { "id": "L371", "name": "371", "isNight": null, "vehicleType": null }, + { "id": "L374", "name": "374", "isNight": null, "vehicleType": null }, + { "id": "L958", "name": "958", "isNight": null, "vehicleType": null }, + { "id": "L457", "name": "457", "isNight": null, "vehicleType": null }, + { "id": "L617", "name": "617", "isNight": null, "vehicleType": null }, + { "id": "L620", "name": "620", "isNight": null, "vehicleType": null }, + { "id": "L1345", "name": "S45", "isNight": null, "vehicleType": null }, + { "id": "L1344", "name": "S44", "isNight": null, "vehicleType": null }, + { "id": "L2240", "name": "XS40", "isNight": null, "vehicleType": null }, + { "id": "L632", "name": "632", "isNight": null, "vehicleType": null }, + { "id": "L2276", "name": "XS76", "isNight": null, "vehicleType": null }, + { "id": "L189", "name": "189", "isNight": null, "vehicleType": null }, + { "id": "L196", "name": "196", "isNight": null, "vehicleType": null }, + { "id": "L636", "name": "636", "isNight": null, "vehicleType": null }, + { "id": "L431", "name": "431", "isNight": null, "vehicleType": null }, + { "id": "L705", "name": "705", "isNight": null, "vehicleType": null }, + { "id": "L598", "name": "598", "isNight": null, "vehicleType": null }, + { "id": "L542", "name": "542", "isNight": null, "vehicleType": null }, + { "id": "L533", "name": "533", "isNight": null, "vehicleType": null }, + { "id": "L481", "name": "481", "isNight": null, "vehicleType": null }, + { "id": "L2805", "name": "805", "isNight": null, "vehicleType": null }, + { "id": "L2801", "name": "801", "isNight": null, "vehicleType": null }, + { "id": "L915", "name": "915", "isNight": null, "vehicleType": null }, + { "id": "L440", "name": "440", "isNight": null, "vehicleType": null }, + { "id": "L338", "name": "338", "isNight": null, "vehicleType": null }, + { "id": "L679", "name": "679", "isNight": null, "vehicleType": null }, + { "id": "L1222", "name": "R22", "isNight": null, "vehicleType": null }, + { "id": "L538", "name": "538", "isNight": null, "vehicleType": null }, + { "id": "L102", "name": "102", "isNight": null, "vehicleType": null }, + { "id": "L152", "name": "152", "isNight": null, "vehicleType": null }, + { "id": "L825", "name": "X25", "isNight": null, "vehicleType": null }, + { "id": "L235", "name": "235", "isNight": null, "vehicleType": null }, + { "id": "L207", "name": "207", "isNight": null, "vehicleType": null }, + { "id": "L616", "name": "616", "isNight": null, "vehicleType": null }, + { "id": "L747", "name": "747", "isNight": null, "vehicleType": null }, + { "id": "L535", "name": "535", "isNight": null, "vehicleType": null }, + { "id": "L536", "name": "536", "isNight": null, "vehicleType": null }, + { "id": "L702", "name": "702", "isNight": null, "vehicleType": null }, + { "id": "L1041", "name": "V41", "isNight": null, "vehicleType": null }, + { "id": "L1320", "name": "S20", "isNight": null, "vehicleType": null }, + { "id": "L1310", "name": "S10", "isNight": null, "vehicleType": null }, + { "id": "L1350", "name": "S50", "isNight": null, "vehicleType": null }, + { "id": "L1376", "name": "S76", "isNight": null, "vehicleType": null }, + { "id": "L1216", "name": "R16", "isNight": null, "vehicleType": null }, + { "id": "L1375", "name": "S75", "isNight": null, "vehicleType": null }, + { "id": "L1370", "name": "S70", "isNight": null, "vehicleType": null }, + { "id": "L2260", "name": "XS60", "isNight": null, "vehicleType": null }, + { "id": "L626", "name": "626", "isNight": null, "vehicleType": null }, + { "id": "L389", "name": "389", "isNight": null, "vehicleType": null }, + { "id": "L587", "name": "587", "isNight": null, "vehicleType": null }, + { "id": "L1040", "name": "U40", "isNight": null, "vehicleType": null }, + { "id": "L629", "name": "629", "isNight": null, "vehicleType": null }, + { "id": "L300", "name": "300", "isNight": null, "vehicleType": null }, + { "id": "L1014", "name": "U14", "isNight": null, "vehicleType": null }, + { "id": "L1333", "name": "S33", "isNight": null, "vehicleType": null }, + { "id": "L639", "name": "639", "isNight": null, "vehicleType": null }, + { "id": "L760", "name": "760", "isNight": null, "vehicleType": null }, + { "id": "L560", "name": "560", "isNight": null, "vehicleType": null }, + { "id": "L572", "name": "572", "isNight": null, "vehicleType": null }, + { "id": "L577", "name": "577", "isNight": null, "vehicleType": null }, + { "id": "L576", "name": "576", "isNight": null, "vehicleType": null }, + { "id": "L1012", "name": "U12", "isNight": null, "vehicleType": null }, + { "id": "L1357", "name": "S57", "isNight": null, "vehicleType": null }, + { "id": "L1358", "name": "S58", "isNight": null, "vehicleType": null }, + { "id": "L595", "name": "595", "isNight": null, "vehicleType": null }, + { "id": "L673", "name": "673", "isNight": null, "vehicleType": null }, + { "id": "L1331", "name": "S31", "isNight": null, "vehicleType": null }, + { "id": "L1321", "name": "S21", "isNight": null, "vehicleType": null }, + { "id": "L720", "name": "720", "isNight": null, "vehicleType": null }, + { "id": "L1330", "name": "S30", "isNight": null, "vehicleType": null }, + { "id": "L1034", "name": "L4", "isNight": null, "vehicleType": null }, + { "id": "L1336", "name": "S36", "isNight": null, "vehicleType": null }, + { "id": "L427", "name": "427", "isNight": null, "vehicleType": null }, + { "id": "L730", "name": "730", "isNight": null, "vehicleType": null }, + { "id": "L700", "name": "700", "isNight": null, "vehicleType": null }, + { "id": "L737", "name": "737", "isNight": null, "vehicleType": null }, + { "id": "L731", "name": "731", "isNight": null, "vehicleType": null }, + { "id": "L713", "name": "713", "isNight": null, "vehicleType": null }, + { "id": "L412", "name": "412", "isNight": null, "vehicleType": null }, + { "id": "L725", "name": "725", "isNight": null, "vehicleType": null }, + { "id": "L345", "name": "345", "isNight": null, "vehicleType": null }, + { "id": "L3360", "name": "540345", "isNight": null, "vehicleType": null }, + { "id": "L714", "name": "714", "isNight": null, "vehicleType": null }, + { "id": "L723", "name": "723", "isNight": null, "vehicleType": null }, + { "id": "L724", "name": "724", "isNight": null, "vehicleType": null }, + { "id": "L315", "name": "315", "isNight": null, "vehicleType": null }, + { "id": "L1004", "name": "U4", "isNight": null, "vehicleType": null }, + { "id": "L1054", "name": "U54", "isNight": null, "vehicleType": null }, + { "id": "L1805", "name": "P5", "isNight": null, "vehicleType": null }, + { "id": "L676", "name": "676", "isNight": null, "vehicleType": null }, + { "id": "L545", "name": "545", "isNight": null, "vehicleType": null }, + { "id": "L546", "name": "546", "isNight": null, "vehicleType": null }, + { "id": "L722", "name": "722", "isNight": null, "vehicleType": null }, + { "id": "L459", "name": "459", "isNight": null, "vehicleType": null }, + { "id": "L453", "name": "453", "isNight": null, "vehicleType": null }, + { "id": "L454", "name": "454", "isNight": null, "vehicleType": null }, + { "id": "L1011", "name": "U11", "isNight": null, "vehicleType": null }, + { "id": "L650", "name": "650", "isNight": null, "vehicleType": null }, + { "id": "L2846", "name": "846", "isNight": null, "vehicleType": null }, + { "id": "L482", "name": "482", "isNight": null, "vehicleType": null }, + { "id": "L2847", "name": "847", "isNight": null, "vehicleType": null }, + { "id": "L450", "name": "450", "isNight": null, "vehicleType": null }, + { "id": "L2854", "name": "854", "isNight": null, "vehicleType": null }, + { "id": "L1806", "name": "P6", "isNight": null, "vehicleType": null }, + { "id": "L711", "name": "711", "isNight": null, "vehicleType": null }, + { "id": "L248", "name": "248", "isNight": null, "vehicleType": null }, + { "id": "L1366", "name": "S66", "isNight": null, "vehicleType": null }, + { "id": "L733", "name": "733", "isNight": null, "vehicleType": null }, + { "id": "L641", "name": "641", "isNight": null, "vehicleType": null }, + { "id": "L531", "name": "531", "isNight": null, "vehicleType": null }, + { "id": "L548", "name": "548", "isNight": null, "vehicleType": null }, + { "id": "L480", "name": "480", "isNight": null, "vehicleType": null }, + { "id": "L500", "name": "500", "isNight": null, "vehicleType": null }, + { "id": "L504", "name": "504", "isNight": null, "vehicleType": null }, + { "id": "L512", "name": "512", "isNight": null, "vehicleType": null }, + { "id": "L506", "name": "506", "isNight": null, "vehicleType": null }, + { "id": "L502", "name": "502", "isNight": null, "vehicleType": null }, + { "id": "L508", "name": "508", "isNight": null, "vehicleType": null }, + { "id": "L503", "name": "503", "isNight": null, "vehicleType": null }, + { "id": "L1360", "name": "S60", "isNight": null, "vehicleType": null }, + { "id": "L756", "name": "756", "isNight": null, "vehicleType": null }, + { "id": "L200", "name": "200", "isNight": null, "vehicleType": null }, + { "id": "L550", "name": "550", "isNight": null, "vehicleType": null }, + { "id": "L2841", "name": "841", "isNight": null, "vehicleType": null }, + { "id": "L212", "name": "212", "isNight": null, "vehicleType": null }, + { "id": "L414", "name": "414", "isNight": null, "vehicleType": null }, + { "id": "L668", "name": "668", "isNight": null, "vehicleType": null }, + { "id": "L1021", "name": "U21", "isNight": null, "vehicleType": null }, + { "id": "L558", "name": "558", "isNight": null, "vehicleType": null }, + { "id": "L1051", "name": "V51", "isNight": null, "vehicleType": null }, + { "id": "L549", "name": "549", "isNight": null, "vehicleType": null }, + { "id": "L552", "name": "552", "isNight": null, "vehicleType": null }, + { "id": "L1390", "name": "S90", "isNight": null, "vehicleType": null }, + { "id": "L1050", "name": "V50", "isNight": null, "vehicleType": null }, + { "id": "L1802", "name": "P2", "isNight": null, "vehicleType": null }, + { "id": "L144", "name": "144", "isNight": null, "vehicleType": null }, + { "id": "L551", "name": "551", "isNight": null, "vehicleType": null }, + { "id": "L2844", "name": "844", "isNight": null, "vehicleType": null }, + { "id": "L2842", "name": "842", "isNight": null, "vehicleType": null }, + { "id": "L795", "name": "795", "isNight": null, "vehicleType": null }, + { "id": "L794", "name": "794", "isNight": null, "vehicleType": null }, + { "id": "L1760", "name": "MHD 1", "isNight": null, "vehicleType": null }, + { "id": "L792", "name": "792", "isNight": null, "vehicleType": null }, + { "id": "L2843", "name": "843", "isNight": null, "vehicleType": null }, + { "id": "L2849", "name": "849", "isNight": null, "vehicleType": null }, + { "id": "L2848", "name": "848", "isNight": null, "vehicleType": null }, + { "id": "L793", "name": "793", "isNight": null, "vehicleType": null }, + { "id": "L790", "name": "790", "isNight": null, "vehicleType": null }, + { "id": "L495", "name": "495", "isNight": null, "vehicleType": null }, + { "id": "L743", "name": "743", "isNight": null, "vehicleType": null }, + { "id": "L501", "name": "501", "isNight": null, "vehicleType": null }, + { "id": "L556", "name": "556", "isNight": null, "vehicleType": null }, + { "id": "L451", "name": "451", "isNight": null, "vehicleType": null }, + { "id": "L566", "name": "566", "isNight": null, "vehicleType": null }, + { "id": "L458", "name": "458", "isNight": null, "vehicleType": null }, + { "id": "L1328", "name": "S28", "isNight": null, "vehicleType": null }, + { "id": "L1327", "name": "S27", "isNight": null, "vehicleType": null }, + { "id": "L1382", "name": "S82", "isNight": null, "vehicleType": null }, + { "id": "L643", "name": "643", "isNight": null, "vehicleType": null } +] diff --git a/apps/backend/prisma/seeds/stops.json b/apps/backend/prisma/seeds/stops.json new file mode 100644 index 00000000..b065e938 --- /dev/null +++ b/apps/backend/prisma/seeds/stops.json @@ -0,0 +1,45044 @@ +[ + { + "id": "U7288", + "name": "Adamov", + "avgLatitude": 49.8581047, + "avgLongitude": 15.4081345 + }, + { + "id": "U876", + "name": "Albertov", + "avgLatitude": 50.0679169, + "avgLongitude": 14.4207993 + }, + { + "id": "U1274", + "name": "Ametystová", + "avgLatitude": 49.9882, + "avgLongitude": 14.3622169 + }, + { + "id": "U1029", + "name": "Amforová", + "avgLatitude": 50.04178, + "avgLongitude": 14.3272982 + }, + { + "id": "U1040", + "name": "Anděl", + "avgLatitude": 50.07126, + "avgLongitude": 14.4033651 + }, + { + "id": "U32266", + "name": "Andělská Hora,dolní obec", + "avgLatitude": 50.2080879, + "avgLongitude": 12.9550972 + }, + { + "id": "U32265", + "name": "Andělská Hora,horní obec", + "avgLatitude": 50.2045441, + "avgLongitude": 12.9610386 + }, + { + "id": "U32267", + "name": "Andělská Hora,chaty", + "avgLatitude": 50.2070961, + "avgLongitude": 12.9446735 + }, + { + "id": "U32163", + "name": "Andělská Hora,rozc.", + "avgLatitude": 50.200367, + "avgLongitude": 12.9600859 + }, + { + "id": "U950", + "name": "Antala Staška", + "avgLatitude": 50.0416069, + "avgLongitude": 14.4443626 + }, + { + "id": "U956", + "name": "Apolinářská", + "avgLatitude": 50.07151, + "avgLongitude": 14.4267559 + }, + { + "id": "U4", + "name": "Arbesovo náměstí", + "avgLatitude": 50.0759773, + "avgLongitude": 14.4047737 + }, + { + "id": "U348", + "name": "Arena Libeň jih", + "avgLatitude": 50.10289, + "avgLongitude": 14.4945927 + }, + { + "id": "U48", + "name": "Argentinská", + "avgLatitude": 50.1030464, + "avgLongitude": 14.4433975 + }, + { + "id": "U356", + "name": "Archeologická", + "avgLatitude": 50.044117, + "avgLongitude": 14.3378172 + }, + { + "id": "U899", + "name": "Avia Letňany", + "avgLatitude": 50.14173, + "avgLongitude": 14.5157375 + }, + { + "id": "U9", + "name": "Baba I", + "avgLatitude": 49.9982529, + "avgLongitude": 14.4150963 + }, + { + "id": "U10", + "name": "Baba II", + "avgLatitude": 49.99958, + "avgLongitude": 14.4150715 + }, + { + "id": "U1817", + "name": "Babice", + "avgLatitude": 50.0078735, + "avgLongitude": 14.7148457 + }, + { + "id": "U1818", + "name": "Babice,Babičky", + "avgLatitude": 50.00939, + "avgLongitude": 14.7261353 + }, + { + "id": "U2891", + "name": "Babice,U hřiště", + "avgLatitude": 50.00975, + "avgLongitude": 14.7190094 + }, + { + "id": "U31505", + "name": "Bácovice,rozc.1.0", + "avgLatitude": 49.48262, + "avgLongitude": 15.1807861 + }, + { + "id": "U31141", + "name": "Bačalky,horní", + "avgLatitude": 50.3851662, + "avgLongitude": 15.1523838 + }, + { + "id": "U31139", + "name": "Bačalky,Lično", + "avgLatitude": 50.3836975, + "avgLongitude": 15.1715317 + }, + { + "id": "U31140", + "name": "Bačalky,střed", + "avgLatitude": 50.3832245, + "avgLongitude": 15.1618271 + }, + { + "id": "U9432", + "name": "Bahno", + "avgLatitude": 49.8656, + "avgLongitude": 15.2203875 + }, + { + "id": "U1345", + "name": "Bachova", + "avgLatitude": 50.031292, + "avgLongitude": 14.5089664 + }, + { + "id": "U9451", + "name": "Bakov n.Jiz.,Buda", + "avgLatitude": 50.48374, + "avgLongitude": 14.9902763 + }, + { + "id": "U6211", + "name": "Bakov n.Jiz.,Horka", + "avgLatitude": 50.47509, + "avgLongitude": 14.9656181 + }, + { + "id": "U3396", + "name": "Bakov n.Jiz.,Chudoplesy", + "avgLatitude": 50.4580078, + "avgLongitude": 14.9308071 + }, + { + "id": "U3399", + "name": "Bakov n.Jiz.,Komenského sady", + "avgLatitude": 50.4822464, + "avgLongitude": 14.94294 + }, + { + "id": "U9444", + "name": "Bakov n.Jiz.,Malá Bělá,mlýn", + "avgLatitude": 50.4861336, + "avgLongitude": 14.9261 + }, + { + "id": "U6202", + "name": "Bakov n.Jiz.,Malá Bělá,U splávku", + "avgLatitude": 50.4905777, + "avgLongitude": 14.9177752 + }, + { + "id": "U6210", + "name": "Bakov n.Jiz.,nám.", + "avgLatitude": 50.48114, + "avgLongitude": 14.9361324 + }, + { + "id": "U6209", + "name": "Bakov n.Jiz.,Podhradí", + "avgLatitude": 50.46946, + "avgLongitude": 14.9197025 + }, + { + "id": "U9350", + "name": "Bakov n.Jiz.,Podhradí,žel.st.", + "avgLatitude": 50.4729, + "avgLongitude": 14.92481 + }, + { + "id": "U6213", + "name": "Bakov n.Jiz.,Pražská", + "avgLatitude": 50.4727325, + "avgLongitude": 14.943881 + }, + { + "id": "U3397", + "name": "Bakov n.Jiz.,Trenčín", + "avgLatitude": 50.4711456, + "avgLongitude": 14.94211 + }, + { + "id": "U6201", + "name": "Bakov n.Jiz.,Velký Rečkov", + "avgLatitude": 50.4930573, + "avgLongitude": 14.9087477 + }, + { + "id": "U6212", + "name": "Bakov n.Jiz.,Zájezdy", + "avgLatitude": 50.47465, + "avgLongitude": 14.9779358 + }, + { + "id": "U6207", + "name": "Bakov n.Jiz.,Zvířetice", + "avgLatitude": 50.4743652, + "avgLongitude": 14.9098539 + }, + { + "id": "U9475", + "name": "Bakov n.Jiz.,žel.zast.", + "avgLatitude": 50.479538, + "avgLongitude": 14.9396439 + }, + { + "id": "U202", + "name": "Bakovská", + "avgLatitude": 50.1347542, + "avgLongitude": 14.5493822 + }, + { + "id": "U12", + "name": "Balabenka", + "avgLatitude": 50.10401, + "avgLongitude": 14.482337 + }, + { + "id": "U13", + "name": "Balkán", + "avgLatitude": 50.0948029, + "avgLongitude": 14.4962463 + }, + { + "id": "U31506", + "name": "Balkova Lhota", + "avgLatitude": 49.451622, + "avgLongitude": 14.6064739 + }, + { + "id": "U32032", + "name": "Balkova Lhota,Černý les", + "avgLatitude": 49.45346, + "avgLongitude": 14.5915976 + }, + { + "id": "U31507", + "name": "Balkova Lhota,Knížata rozc.1.0", + "avgLatitude": 49.455265, + "avgLongitude": 14.5885429 + }, + { + "id": "U31508", + "name": "Balkova Lhota,Výrec", + "avgLatitude": 49.44558, + "avgLongitude": 14.6030025 + }, + { + "id": "U14", + "name": "Baně", + "avgLatitude": 49.95268, + "avgLongitude": 14.3791447 + }, + { + "id": "U2382", + "name": "Barchovice", + "avgLatitude": 49.94286, + "avgLongitude": 14.9692717 + }, + { + "id": "U2383", + "name": "Barchovice,Hryzely", + "avgLatitude": 49.9356461, + "avgLongitude": 14.9826412 + }, + { + "id": "U4249", + "name": "Barchovice,ObÚ", + "avgLatitude": 49.9449844, + "avgLongitude": 14.968462 + }, + { + "id": "U2394", + "name": "Barchovice,Radlice", + "avgLatitude": 49.9344368, + "avgLongitude": 14.9459133 + }, + { + "id": "U2381", + "name": "Barchovice,Radlice,rozc.", + "avgLatitude": 49.94902, + "avgLongitude": 14.9535313 + }, + { + "id": "U1260", + "name": "Barrandovská", + "avgLatitude": 50.03153, + "avgLongitude": 14.3958941 + }, + { + "id": "U1149", + "name": "Bártlova", + "avgLatitude": 50.1189346, + "avgLongitude": 14.6326208 + }, + { + "id": "U5053", + "name": "Bartoušov zast.", + "avgLatitude": 50.3549271, + "avgLongitude": 15.3107815 + }, + { + "id": "U975", + "name": "Barvy a laky", + "avgLatitude": 50.065506, + "avgLongitude": 14.5370808 + }, + { + "id": "U16", + "name": "Basilejské náměstí", + "avgLatitude": 50.08719, + "avgLongitude": 14.4709206 + }, + { + "id": "U2250", + "name": "Bašť", + "avgLatitude": 50.2044678, + "avgLongitude": 14.4739017 + }, + { + "id": "U2268", + "name": "Bašť,Baštěk", + "avgLatitude": 50.2044563, + "avgLongitude": 14.4626789 + }, + { + "id": "U2327", + "name": "Bašť,Měšická", + "avgLatitude": 50.2023468, + "avgLongitude": 14.4847355 + }, + { + "id": "U1232", + "name": "Bašteckého", + "avgLatitude": 50.03994, + "avgLongitude": 14.3361454 + }, + { + "id": "U15", + "name": "Baterie", + "avgLatitude": 50.0923958, + "avgLongitude": 14.3696194 + }, + { + "id": "U1229", + "name": "Bavoryně,rozc.", + "avgLatitude": 49.9002228, + "avgLongitude": 13.9608631 + }, + { + "id": "U18", + "name": "Bazar", + "avgLatitude": 50.09875, + "avgLongitude": 14.6714659 + }, + { + "id": "U1228", + "name": "Bazén Hloubětín", + "avgLatitude": 50.1044769, + "avgLongitude": 14.5355759 + }, + { + "id": "U843", + "name": "Bazovského", + "avgLatitude": 50.06716, + "avgLongitude": 14.3075581 + }, + { + "id": "U4985", + "name": "Bdín", + "avgLatitude": 50.21692, + "avgLongitude": 13.8550243 + }, + { + "id": "U9691", + "name": "Bečovská", + "avgLatitude": 50.0431137, + "avgLongitude": 14.5868864 + }, + { + "id": "U2155", + "name": "Bečváry", + "avgLatitude": 49.9568138, + "avgLongitude": 15.08019 + }, + { + "id": "U2154", + "name": "Bečváry", + "avgLatitude": 49.9556541, + "avgLongitude": 15.07087 + }, + { + "id": "U9997", + "name": "Bečváry,Červený Hrádek", + "avgLatitude": 49.940918, + "avgLongitude": 15.0988989 + }, + { + "id": "U9003", + "name": "Bečváry,Dolní Jelčany", + "avgLatitude": 49.9274178, + "avgLongitude": 15.0498524 + }, + { + "id": "U9995", + "name": "Bečváry,Hatě", + "avgLatitude": 49.9186325, + "avgLongitude": 15.0561905 + }, + { + "id": "U9992", + "name": "Bečváry,Horní Jelčany", + "avgLatitude": 49.9305878, + "avgLongitude": 15.0499439 + }, + { + "id": "U9998", + "name": "Bečváry,Poďousy", + "avgLatitude": 49.9527054, + "avgLongitude": 15.1001644 + }, + { + "id": "U2178", + "name": "Bečváry,Poďousy,rozc.", + "avgLatitude": 49.9564552, + "avgLongitude": 15.1023817 + }, + { + "id": "U4711", + "name": "Bechlín,ObÚ", + "avgLatitude": 50.4162827, + "avgLongitude": 14.3410187 + }, + { + "id": "U9458", + "name": "Bechov", + "avgLatitude": 50.436142, + "avgLongitude": 15.0853567 + }, + { + "id": "U28", + "name": "Běchovice", + "avgLatitude": 50.0812073, + "avgLongitude": 14.61692 + }, + { + "id": "U31399", + "name": "Bělá", + "avgLatitude": 49.75258, + "avgLongitude": 15.2373 + }, + { + "id": "U6165", + "name": "Bělá p.Bezd.,Atmos", + "avgLatitude": 50.5074234, + "avgLongitude": 14.7901287 + }, + { + "id": "U6253", + "name": "Bělá p.Bezd.,Bezdědice", + "avgLatitude": 50.48362, + "avgLongitude": 14.6967335 + }, + { + "id": "U6251", + "name": "Bělá p.Bezd.,Bezdědice,odb.", + "avgLatitude": 50.4829559, + "avgLongitude": 14.70503 + }, + { + "id": "U6417", + "name": "Bělá p.Bezd.,Březinka", + "avgLatitude": 50.4784126, + "avgLongitude": 14.7770634 + }, + { + "id": "U6416", + "name": "Bělá p.Bezd.,Březinka,Valovická", + "avgLatitude": 50.4734573, + "avgLongitude": 14.7545567 + }, + { + "id": "U6169", + "name": "Bělá p.Bezd.,Dřevařská", + "avgLatitude": 50.5191727, + "avgLongitude": 14.7892866 + }, + { + "id": "U6200", + "name": "Bělá p.Bezd.,Malý Rečkov", + "avgLatitude": 50.4954376, + "avgLongitude": 14.8817139 + }, + { + "id": "U6160", + "name": "Bělá p.Bezd.,Na Výsluní", + "avgLatitude": 50.4932, + "avgLongitude": 14.828949 + }, + { + "id": "U6159", + "name": "Bělá p.Bezd.,Nádražní", + "avgLatitude": 50.489357, + "avgLongitude": 14.8377781 + }, + { + "id": "U6163", + "name": "Bělá p.Bezd.,nám.", + "avgLatitude": 50.5011368, + "avgLongitude": 14.8029089 + }, + { + "id": "U9445", + "name": "Bělá p.Bezd.,papírny", + "avgLatitude": 50.498394, + "avgLongitude": 14.869379 + }, + { + "id": "U6199", + "name": "Bělá p.Bezd.,Pražská", + "avgLatitude": 50.48989, + "avgLongitude": 14.8413792 + }, + { + "id": "U6437", + "name": "Bělá p.Bezd.,Šubrtov", + "avgLatitude": 50.4988937, + "avgLongitude": 14.8634243 + }, + { + "id": "U5968", + "name": "Bělá p.Bezd.,Táborová", + "avgLatitude": 50.5059662, + "avgLongitude": 14.8020439 + }, + { + "id": "U6164", + "name": "Bělá p.Bezd.,u kapličky", + "avgLatitude": 50.5052643, + "avgLongitude": 14.7951355 + }, + { + "id": "U6162", + "name": "Bělá p.Bezd.,u koníčka", + "avgLatitude": 50.5004, + "avgLongitude": 14.8110971 + }, + { + "id": "U6161", + "name": "Bělá p.Bezd.,u továrny", + "avgLatitude": 50.4958954, + "avgLongitude": 14.8204231 + }, + { + "id": "U9446", + "name": "Bělá p.Bezd.,žel.st.", + "avgLatitude": 50.48838, + "avgLongitude": 14.8354321 + }, + { + "id": "U9447", + "name": "Bělá pod Bezdězem město", + "avgLatitude": 50.4933319, + "avgLongitude": 14.7871 + }, + { + "id": "U31398", + "name": "Bělá,Tasice", + "avgLatitude": 49.760582, + "avgLongitude": 15.2520094 + }, + { + "id": "U19", + "name": "Belárie", + "avgLatitude": 50.0132332, + "avgLongitude": 14.4004011 + }, + { + "id": "U9512", + "name": "Bělčice", + "avgLatitude": 49.50444, + "avgLongitude": 13.8863316 + }, + { + "id": "U31509", + "name": "Bělčice,nám.", + "avgLatitude": 49.5035439, + "avgLongitude": 13.8745661 + }, + { + "id": "U31511", + "name": "Bělčice,u knihovny", + "avgLatitude": 49.50265, + "avgLongitude": 13.8796577 + }, + { + "id": "U31520", + "name": "Bělčice,Záhrobí", + "avgLatitude": 49.5087776, + "avgLongitude": 13.8490229 + }, + { + "id": "U31521", + "name": "Bělčice,Záhrobí,cihelna", + "avgLatitude": 49.50415, + "avgLongitude": 13.8582249 + }, + { + "id": "U31523", + "name": "Bělčice,Závišín", + "avgLatitude": 49.4852448, + "avgLongitude": 13.868063 + }, + { + "id": "U31512", + "name": "Bělčice,ZD", + "avgLatitude": 49.49877, + "avgLongitude": 13.8749714 + }, + { + "id": "U2890", + "name": "Běleč", + "avgLatitude": 49.9094467, + "avgLongitude": 14.1780491 + }, + { + "id": "U9100", + "name": "Běleč", + "avgLatitude": 50.0570679, + "avgLongitude": 13.99399 + }, + { + "id": "U32133", + "name": "Běleč", + "avgLatitude": 49.54342, + "avgLongitude": 14.8370628 + }, + { + "id": "U32134", + "name": "Běleč,Bzová,rozc.", + "avgLatitude": 49.55558, + "avgLongitude": 14.8461647 + }, + { + "id": "U32135", + "name": "Běleč,Elbančice,rozc.1.0", + "avgLatitude": 49.54528, + "avgLongitude": 14.8433256 + }, + { + "id": "U29", + "name": "Bělocerkevská", + "avgLatitude": 50.07185, + "avgLongitude": 14.4702654 + }, + { + "id": "U4204", + "name": "Běloky", + "avgLatitude": 50.1322746, + "avgLongitude": 14.2207355 + }, + { + "id": "U6642", + "name": "Bělušice", + "avgLatitude": 50.06877, + "avgLongitude": 15.3214855 + }, + { + "id": "U6643", + "name": "Bělušice,Na Dolejšku", + "avgLatitude": 50.06404, + "avgLongitude": 15.3263912 + }, + { + "id": "U3379", + "name": "Benátky n.Jiz.,aut.st.", + "avgLatitude": 50.285778, + "avgLongitude": 14.8278084 + }, + { + "id": "U4344", + "name": "Benátky n.Jiz.,Dražice,dvůr", + "avgLatitude": 50.307518, + "avgLongitude": 14.8414764 + }, + { + "id": "U4345", + "name": "Benátky n.Jiz.,Dražice,Na Štěpničce", + "avgLatitude": 50.303772, + "avgLongitude": 14.840621 + }, + { + "id": "U4343", + "name": "Benátky n.Jiz.,Dražice,závod", + "avgLatitude": 50.3083344, + "avgLongitude": 14.8490276 + }, + { + "id": "U4347", + "name": "Benátky n.Jiz.,Dražická", + "avgLatitude": 50.2935638, + "avgLongitude": 14.8297253 + }, + { + "id": "U4348", + "name": "Benátky n.Jiz.,Husovo nám.", + "avgLatitude": 50.2918739, + "avgLongitude": 14.8264294 + }, + { + "id": "U3380", + "name": "Benátky n.Jiz.,Kbel", + "avgLatitude": 50.29175, + "avgLongitude": 14.8446617 + }, + { + "id": "U6103", + "name": "Benátky n.Jiz.,Obodř", + "avgLatitude": 50.2882919, + "avgLongitude": 14.818367 + }, + { + "id": "U3381", + "name": "Benátky n.Jiz.,Ovčín", + "avgLatitude": 50.30826, + "avgLongitude": 14.8538532 + }, + { + "id": "U6104", + "name": "Benátky n.Jiz.,rozc.Sedlec", + "avgLatitude": 50.2932053, + "avgLongitude": 14.7902241 + }, + { + "id": "U6106", + "name": "Benátky n.Jiz.,Soumarova", + "avgLatitude": 50.28891, + "avgLongitude": 14.823967 + }, + { + "id": "U4346", + "name": "Benátky n.Jiz.,u hřbitova", + "avgLatitude": 50.2963562, + "avgLongitude": 14.832613 + }, + { + "id": "U9650", + "name": "Benátky n.Jiz.,Vaněčkova", + "avgLatitude": 50.29292, + "avgLongitude": 14.8293839 + }, + { + "id": "U31986", + "name": "Benecko,Dolní Štěpanice,host.u Šmídů", + "avgLatitude": 50.637558, + "avgLongitude": 15.5170107 + }, + { + "id": "U31245", + "name": "Benecko,Dolní Štěpanice,u mostu", + "avgLatitude": 50.63106, + "avgLongitude": 15.5186863 + }, + { + "id": "U1384", + "name": "Benešov u Prahy", + "avgLatitude": 49.7795029, + "avgLongitude": 14.6828356 + }, + { + "id": "U5024", + "name": "Benešov,Albert", + "avgLatitude": 49.7918777, + "avgLongitude": 14.6801882 + }, + { + "id": "U5886", + "name": "Benešov,Antuškova", + "avgLatitude": 49.7868347, + "avgLongitude": 14.6889334 + }, + { + "id": "U7004", + "name": "Benešov,Baba", + "avgLatitude": 49.79538, + "avgLongitude": 14.7113075 + }, + { + "id": "U7005", + "name": "Benešov,Bedrč", + "avgLatitude": 49.8078728, + "avgLongitude": 14.71734 + }, + { + "id": "U4522", + "name": "Benešov,Benea", + "avgLatitude": 49.77288, + "avgLongitude": 14.6800842 + }, + { + "id": "U2138", + "name": "Benešov,Benica", + "avgLatitude": 49.77664, + "avgLongitude": 14.6757774 + }, + { + "id": "U7006", + "name": "Benešov,Boušice", + "avgLatitude": 49.77516, + "avgLongitude": 14.7382956 + }, + { + "id": "U5022", + "name": "Benešov,Buková Lhota", + "avgLatitude": 49.8163528, + "avgLongitude": 14.6492481 + }, + { + "id": "U4486", + "name": "Benešov,Buková Lhota,rozc.", + "avgLatitude": 49.812767, + "avgLongitude": 14.6440172 + }, + { + "id": "U4073", + "name": "Benešov,Čechova", + "avgLatitude": 49.7857437, + "avgLongitude": 14.6897306 + }, + { + "id": "U5023", + "name": "Benešov,Čerčanská", + "avgLatitude": 49.7920036, + "avgLongitude": 14.6932621 + }, + { + "id": "U5901", + "name": "Benešov,Černoleská", + "avgLatitude": 49.7750053, + "avgLongitude": 14.6953106 + }, + { + "id": "U7001", + "name": "Benešov,Černý les", + "avgLatitude": 49.76956, + "avgLongitude": 14.7004728 + }, + { + "id": "U7007", + "name": "Benešov,Červený Dvůr", + "avgLatitude": 49.7851334, + "avgLongitude": 14.7359581 + }, + { + "id": "U7008", + "name": "Benešov,Dlouhé Pole", + "avgLatitude": 49.7820129, + "avgLongitude": 14.736618 + }, + { + "id": "U7012", + "name": "Benešov,Dlouhé Pole,rozc.", + "avgLatitude": 49.7773247, + "avgLongitude": 14.7197933 + }, + { + "id": "U7830", + "name": "Benešov,Dukelská", + "avgLatitude": 49.78253, + "avgLongitude": 14.6835594 + }, + { + "id": "U7831", + "name": "Benešov,Hráského", + "avgLatitude": 49.77953, + "avgLongitude": 14.6942444 + }, + { + "id": "U4521", + "name": "Benešov,Jana Nohy", + "avgLatitude": 49.77648, + "avgLongitude": 14.6804562 + }, + { + "id": "U5025", + "name": "Benešov,Jiráskova Gymnázium", + "avgLatitude": 49.7804527, + "avgLongitude": 14.6870461 + }, + { + "id": "U7832", + "name": "Benešov,Jiřího Franka Dětské hřiště", + "avgLatitude": 49.7885628, + "avgLongitude": 14.69468 + }, + { + "id": "U5027", + "name": "Benešov,K Tužince", + "avgLatitude": 49.79295, + "avgLongitude": 14.6896687 + }, + { + "id": "U7003", + "name": "Benešov,Karla Nového", + "avgLatitude": 49.7829933, + "avgLongitude": 14.6868286 + }, + { + "id": "U5946", + "name": "Benešov,Karlov", + "avgLatitude": 49.78458, + "avgLongitude": 14.6937151 + }, + { + "id": "U5899", + "name": "Benešov,Kaufland", + "avgLatitude": 49.7934952, + "avgLongitude": 14.6820192 + }, + { + "id": "U5028", + "name": "Benešov,Ke Stadionu", + "avgLatitude": 49.7785263, + "avgLongitude": 14.6767168 + }, + { + "id": "U4443", + "name": "Benešov,Konopiště", + "avgLatitude": 49.78244, + "avgLongitude": 14.6573753 + }, + { + "id": "U5029", + "name": "Benešov,Konopiště,informační centrum", + "avgLatitude": 49.7798576, + "avgLongitude": 14.6549473 + }, + { + "id": "U5031", + "name": "Benešov,Konopiště,sádky", + "avgLatitude": 49.7719421, + "avgLongitude": 14.6511211 + }, + { + "id": "U5032", + "name": "Benešov,Konopiště,sv.Anna", + "avgLatitude": 49.7731, + "avgLongitude": 14.6572161 + }, + { + "id": "U5033", + "name": "Benešov,Konopiště,Šiberna", + "avgLatitude": 49.7735519, + "avgLongitude": 14.6689816 + }, + { + "id": "U4442", + "name": "Benešov,Konopišťská", + "avgLatitude": 49.7812233, + "avgLongitude": 14.68021 + }, + { + "id": "U5882", + "name": "Benešov,Křižíkova", + "avgLatitude": 49.7702332, + "avgLongitude": 14.6782112 + }, + { + "id": "U2139", + "name": "Benešov,Lidl", + "avgLatitude": 49.7891426, + "avgLongitude": 14.6833019 + }, + { + "id": "U4483", + "name": "Benešov,Máchova", + "avgLatitude": 49.7855225, + "avgLongitude": 14.6815147 + }, + { + "id": "U5034", + "name": "Benešov,Mariánovice", + "avgLatitude": 49.7627144, + "avgLongitude": 14.687253 + }, + { + "id": "U7834", + "name": "Benešov,Mariánovice,ČSAD", + "avgLatitude": 49.7659225, + "avgLongitude": 14.6807833 + }, + { + "id": "U5885", + "name": "Benešov,MŠ Úsměv", + "avgLatitude": 49.7899, + "avgLongitude": 14.6952257 + }, + { + "id": "U7835", + "name": "Benešov,Na Bezděkově", + "avgLatitude": 49.7821274, + "avgLongitude": 14.69136 + }, + { + "id": "U7836", + "name": "Benešov,Na Chmelnici", + "avgLatitude": 49.78099, + "avgLongitude": 14.6959352 + }, + { + "id": "U7983", + "name": "Benešov,Nechyba", + "avgLatitude": 49.7694969, + "avgLongitude": 14.7378016 + }, + { + "id": "U5039", + "name": "Benešov,Neumannova", + "avgLatitude": 49.79176, + "avgLongitude": 14.683712 + }, + { + "id": "U5041", + "name": "Benešov,Nezvalova", + "avgLatitude": 49.79003, + "avgLongitude": 14.6909418 + }, + { + "id": "U7013", + "name": "Benešov,Okrouhlice", + "avgLatitude": 49.79093, + "avgLongitude": 14.752943 + }, + { + "id": "U7014", + "name": "Benešov,Okrouhlice,lom", + "avgLatitude": 49.7877121, + "avgLongitude": 14.7416182 + }, + { + "id": "U5898", + "name": "Benešov,Penny Market", + "avgLatitude": 49.7872467, + "avgLongitude": 14.695262 + }, + { + "id": "U7002", + "name": "Benešov,Pinko", + "avgLatitude": 49.78248, + "avgLongitude": 14.6978149 + }, + { + "id": "U4074", + "name": "Benešov,Pivovar Ferdinand", + "avgLatitude": 49.7801666, + "avgLongitude": 14.69194 + }, + { + "id": "U5911", + "name": "Benešov,Plavecký stadion", + "avgLatitude": 49.77781, + "avgLongitude": 14.6937237 + }, + { + "id": "U5933", + "name": "Benešov,Pod Hřbitovem", + "avgLatitude": 49.78525, + "avgLongitude": 14.697135 + }, + { + "id": "U5884", + "name": "Benešov,Pomněnice", + "avgLatitude": 49.79795, + "avgLongitude": 14.67366 + }, + { + "id": "U5926", + "name": "Benešov,Pomněnice,obchodní centrum", + "avgLatitude": 49.7958832, + "avgLongitude": 14.6783142 + }, + { + "id": "U5905", + "name": "Benešov,Pomněnice,zahrádky", + "avgLatitude": 49.7921371, + "avgLongitude": 14.671793 + }, + { + "id": "U5880", + "name": "Benešov,Pražská", + "avgLatitude": 49.78437, + "avgLongitude": 14.6860771 + }, + { + "id": "U5881", + "name": "Benešov,Purkyňova", + "avgLatitude": 49.7844353, + "avgLongitude": 14.6791248 + }, + { + "id": "U5044", + "name": "Benešov,Technické služby", + "avgLatitude": 49.787735, + "avgLongitude": 14.6930532 + }, + { + "id": "U5045", + "name": "Benešov,Tylova", + "avgLatitude": 49.7899246, + "avgLongitude": 14.6855354 + }, + { + "id": "U617", + "name": "Benešov,Tyršova", + "avgLatitude": 49.78122, + "avgLongitude": 14.6827965 + }, + { + "id": "U7833", + "name": "Benešov,U Náhonu", + "avgLatitude": 49.78137, + "avgLongitude": 14.7015858 + }, + { + "id": "U4487", + "name": "Benešov,Úročnice", + "avgLatitude": 49.8058777, + "avgLongitude": 14.6285782 + }, + { + "id": "U4488", + "name": "Benešov,Úročnice,rozc.Hrusice", + "avgLatitude": 49.80443, + "avgLongitude": 14.6209488 + }, + { + "id": "U5047", + "name": "Benešov,Vidlákova Lhota", + "avgLatitude": 49.8138466, + "avgLongitude": 14.6552086 + }, + { + "id": "U4485", + "name": "Benešov,Vidlákova Lhota,rozc.", + "avgLatitude": 49.8073959, + "avgLongitude": 14.6497316 + }, + { + "id": "U5937", + "name": "Benešov,Vlašimská", + "avgLatitude": 49.78021, + "avgLongitude": 14.7055111 + }, + { + "id": "U5883", + "name": "Benešov,Zapova", + "avgLatitude": 49.78234, + "avgLongitude": 14.6942158 + }, + { + "id": "U159", + "name": "Benice", + "avgLatitude": 50.01344, + "avgLongitude": 14.60513 + }, + { + "id": "U23", + "name": "Benkova", + "avgLatitude": 50.03788, + "avgLongitude": 14.4994316 + }, + { + "id": "U6658", + "name": "Bernardov", + "avgLatitude": 50.0143623, + "avgLongitude": 15.3992195 + }, + { + "id": "U7015", + "name": "Bernartice", + "avgLatitude": 49.6763153, + "avgLongitude": 15.1292391 + }, + { + "id": "U7016", + "name": "Bernartice,most", + "avgLatitude": 49.67624, + "avgLongitude": 15.1450729 + }, + { + "id": "U7017", + "name": "Bernartice,rozc.", + "avgLatitude": 49.6757355, + "avgLongitude": 15.123539 + }, + { + "id": "U5889", + "name": "Bernartice,SSÚD", + "avgLatitude": 49.6751137, + "avgLongitude": 15.1188564 + }, + { + "id": "U2848", + "name": "Beroun", + "avgLatitude": 49.9570923, + "avgLongitude": 14.0767078 + }, + { + "id": "U4961", + "name": "Beroun,Bezručova", + "avgLatitude": 49.9673767, + "avgLongitude": 14.06538 + }, + { + "id": "U4956", + "name": "Beroun,Brdatka", + "avgLatitude": 49.9770966, + "avgLongitude": 14.0571756 + }, + { + "id": "U4273", + "name": "Beroun,Brožíkova", + "avgLatitude": 49.9684448, + "avgLongitude": 14.0807228 + }, + { + "id": "U4971", + "name": "Beroun,Delvita", + "avgLatitude": 49.9572678, + "avgLongitude": 14.0575533 + }, + { + "id": "U4918", + "name": "Beroun,Eternitka", + "avgLatitude": 49.9786873, + "avgLongitude": 14.0751295 + }, + { + "id": "U4964", + "name": "Beroun,Hlinky", + "avgLatitude": 49.9656372, + "avgLongitude": 14.0670872 + }, + { + "id": "U2357", + "name": "Beroun,Hostim", + "avgLatitude": 49.96031, + "avgLongitude": 14.1290665 + }, + { + "id": "U2173", + "name": "Beroun,Hostímská", + "avgLatitude": 49.9626465, + "avgLongitude": 14.0854912 + }, + { + "id": "U4968", + "name": "Beroun,Jarov,náves", + "avgLatitude": 49.9468575, + "avgLongitude": 14.0640144 + }, + { + "id": "U4967", + "name": "Beroun,Jarov,odb.", + "avgLatitude": 49.94812, + "avgLongitude": 14.07002 + }, + { + "id": "U4963", + "name": "Beroun,Jungmannova", + "avgLatitude": 49.96085, + "avgLongitude": 14.0599947 + }, + { + "id": "U6945", + "name": "Beroun,K Dubu", + "avgLatitude": 49.9602127, + "avgLongitude": 14.0483284 + }, + { + "id": "U4766", + "name": "Beroun,Karla Čapka", + "avgLatitude": 49.95627, + "avgLongitude": 14.0475216 + }, + { + "id": "U4965", + "name": "Beroun,Lidl", + "avgLatitude": 49.9523239, + "avgLongitude": 14.0475988 + }, + { + "id": "U2171", + "name": "Beroun,Lištice", + "avgLatitude": 49.96134, + "avgLongitude": 14.1031055 + }, + { + "id": "U4970", + "name": "Beroun,Na Parkáně", + "avgLatitude": 49.96245, + "avgLongitude": 14.0752249 + }, + { + "id": "U4969", + "name": "Beroun,Na Ratince", + "avgLatitude": 49.9550552, + "avgLongitude": 14.07901 + }, + { + "id": "U7527", + "name": "Beroun,Obchodní", + "avgLatitude": 49.95743, + "avgLongitude": 14.0596848 + }, + { + "id": "U4274", + "name": "Beroun,PAI", + "avgLatitude": 49.97328, + "avgLongitude": 14.0759392 + }, + { + "id": "U1746", + "name": "Beroun,Plzeňka", + "avgLatitude": 49.96029, + "avgLongitude": 14.0647907 + }, + { + "id": "U4336", + "name": "Beroun,Plzeňská brána", + "avgLatitude": 49.9624176, + "avgLongitude": 14.0693369 + }, + { + "id": "U4337", + "name": "Beroun,pod dálnicí", + "avgLatitude": 49.95777, + "avgLongitude": 14.0707645 + }, + { + "id": "U7031", + "name": "Beroun,Pod Homolkou", + "avgLatitude": 49.9593353, + "avgLongitude": 14.05438 + }, + { + "id": "U4960", + "name": "Beroun,Pod Hřbitovem", + "avgLatitude": 49.96624, + "avgLongitude": 14.0611935 + }, + { + "id": "U2172", + "name": "Beroun,Prof.Veselého", + "avgLatitude": 49.96329, + "avgLongitude": 14.0922861 + }, + { + "id": "U1747", + "name": "Beroun,sídliště", + "avgLatitude": 49.9549332, + "avgLongitude": 14.0531349 + }, + { + "id": "U1745", + "name": "Beroun,U černého koně", + "avgLatitude": 49.9654, + "avgLongitude": 14.07217 + }, + { + "id": "U4272", + "name": "Beroun,U Slavaše", + "avgLatitude": 49.968895, + "avgLongitude": 14.079421 + }, + { + "id": "U4962", + "name": "Beroun,U Zelených", + "avgLatitude": 49.9638748, + "avgLongitude": 14.0623331 + }, + { + "id": "U4957", + "name": "Beroun,V Lužánkách", + "avgLatitude": 49.97682, + "avgLongitude": 14.0446825 + }, + { + "id": "U1749", + "name": "Beroun,Velké sídliště", + "avgLatitude": 49.95788, + "avgLongitude": 14.0532837 + }, + { + "id": "U5012", + "name": "Beroun,Viničná", + "avgLatitude": 49.96505, + "avgLongitude": 14.0583172 + }, + { + "id": "U4955", + "name": "Beroun,Vítězslava Hálka I", + "avgLatitude": 49.9703445, + "avgLongitude": 14.0680485 + }, + { + "id": "U4959", + "name": "Beroun,Vítězslava Hálka II", + "avgLatitude": 49.9692459, + "avgLongitude": 14.0630493 + }, + { + "id": "U4182", + "name": "Beroun,Wagnerovo nám.", + "avgLatitude": 49.96553, + "avgLongitude": 14.0704908 + }, + { + "id": "U7490", + "name": "Beroun,Zahořanská", + "avgLatitude": 49.962822, + "avgLongitude": 14.0540743 + }, + { + "id": "U4966", + "name": "Beroun,Zavadilka", + "avgLatitude": 49.9536133, + "avgLongitude": 14.07159 + }, + { + "id": "U4958", + "name": "Beroun,Zdejcina", + "avgLatitude": 49.9788132, + "avgLongitude": 14.0329113 + }, + { + "id": "U25", + "name": "Bertramka", + "avgLatitude": 50.0722351, + "avgLongitude": 14.3928623 + }, + { + "id": "U6726", + "name": "Běrunice", + "avgLatitude": 50.1857224, + "avgLongitude": 15.33334 + }, + { + "id": "U4866", + "name": "Běrunice", + "avgLatitude": 50.1859055, + "avgLongitude": 15.3413191 + }, + { + "id": "U6725", + "name": "Běrunice,Běruničky", + "avgLatitude": 50.1981049, + "avgLongitude": 15.3344612 + }, + { + "id": "U9199", + "name": "Beřovice", + "avgLatitude": 50.26841, + "avgLongitude": 14.1235943 + }, + { + "id": "U9200", + "name": "Beřovice,Bakov", + "avgLatitude": 50.2657166, + "avgLongitude": 14.0959015 + }, + { + "id": "U9201", + "name": "Beřovice,horní", + "avgLatitude": 50.2658, + "avgLongitude": 14.1192732 + }, + { + "id": "U9809", + "name": "Běštín,škola", + "avgLatitude": 49.8087654, + "avgLongitude": 14.02075 + }, + { + "id": "U9808", + "name": "Běštín,transformátor", + "avgLatitude": 49.80562, + "avgLongitude": 14.0151672 + }, + { + "id": "U423", + "name": "Betáň", + "avgLatitude": 50.0072861, + "avgLongitude": 14.479702 + }, + { + "id": "U26", + "name": "Betonárka", + "avgLatitude": 50.0367432, + "avgLongitude": 14.5747776 + }, + { + "id": "U9514", + "name": "Bezdědovice", + "avgLatitude": 49.4449959, + "avgLongitude": 13.8758154 + }, + { + "id": "U7019", + "name": "Bezděkov p.Tř.", + "avgLatitude": 49.5780945, + "avgLongitude": 13.8786831 + }, + { + "id": "U9448", + "name": "Bezděz", + "avgLatitude": 50.5160675, + "avgLongitude": 14.7293491 + }, + { + "id": "U9295", + "name": "Bezno", + "avgLatitude": 50.36715, + "avgLongitude": 14.7947273 + }, + { + "id": "U6330", + "name": "Bílá Hlína", + "avgLatitude": 50.5327225, + "avgLongitude": 14.9251947 + }, + { + "id": "U31", + "name": "Bílá Hora", + "avgLatitude": 50.07568, + "avgLongitude": 14.3231812 + }, + { + "id": "U32", + "name": "Bílá labuť", + "avgLatitude": 50.09026, + "avgLongitude": 14.4358673 + }, + { + "id": "U7222", + "name": "Bílé Podolí", + "avgLatitude": 49.95601, + "avgLongitude": 15.49091 + }, + { + "id": "U7224", + "name": "Bílé Podolí,Lovčice", + "avgLatitude": 49.9244652, + "avgLongitude": 15.5128269 + }, + { + "id": "U7219", + "name": "Bílé Podolí,Pazderna", + "avgLatitude": 49.9599533, + "avgLongitude": 15.4912872 + }, + { + "id": "U7235", + "name": "Bílé Podolí,Zaříčany", + "avgLatitude": 49.9568, + "avgLongitude": 15.464304 + }, + { + "id": "U7236", + "name": "Bílé Podolí,Zaříčany,rozc.", + "avgLatitude": 49.9479675, + "avgLongitude": 15.4778528 + }, + { + "id": "U82", + "name": "Bílenecké náměstí", + "avgLatitude": 50.1495667, + "avgLongitude": 14.4425907 + }, + { + "id": "U9235", + "name": "Bílichov", + "avgLatitude": 50.26226, + "avgLongitude": 13.9137945 + }, + { + "id": "U9236", + "name": "Bílichov,u křížku", + "avgLatitude": 50.26146, + "avgLongitude": 13.9184341 + }, + { + "id": "U7021", + "name": "Bílkovice", + "avgLatitude": 49.7587738, + "avgLongitude": 14.86437 + }, + { + "id": "U7022", + "name": "Bílkovice,mlýn", + "avgLatitude": 49.7553329, + "avgLongitude": 14.8606873 + }, + { + "id": "U7023", + "name": "Bílkovice,Takonín", + "avgLatitude": 49.759903, + "avgLongitude": 14.8400707 + }, + { + "id": "U33", + "name": "Bílý Beránek", + "avgLatitude": 50.0614128, + "avgLongitude": 14.3095951 + }, + { + "id": "U34", + "name": "Biskupcova", + "avgLatitude": 50.08882, + "avgLongitude": 14.4687157 + }, + { + "id": "U6206", + "name": "Bítouchov", + "avgLatitude": 50.4754181, + "avgLongitude": 14.8881168 + }, + { + "id": "U6208", + "name": "Bítouchov,Dalešice", + "avgLatitude": 50.4584427, + "avgLongitude": 14.9051476 + }, + { + "id": "U6204", + "name": "Bítouchov,Dolánky", + "avgLatitude": 50.487133, + "avgLongitude": 14.9036961 + }, + { + "id": "U7273", + "name": "Bítouchov,Dolánky,na kopci", + "avgLatitude": 50.4864044, + "avgLongitude": 14.90878 + }, + { + "id": "U6205", + "name": "Bítouchov,u rybníka", + "avgLatitude": 50.47831, + "avgLongitude": 14.891264 + }, + { + "id": "U31975", + "name": "Blatce", + "avgLatitude": 50.505722, + "avgLongitude": 14.5982084 + }, + { + "id": "U31303", + "name": "Blatce,Blatečky", + "avgLatitude": 50.4943924, + "avgLongitude": 14.59144 + }, + { + "id": "U31038", + "name": "Blatce,Konrádov", + "avgLatitude": 50.47793, + "avgLongitude": 14.6060972 + }, + { + "id": "U31304", + "name": "Blatce,pod Beškovem", + "avgLatitude": 50.51099, + "avgLongitude": 14.5787516 + }, + { + "id": "U31974", + "name": "Blatce,rozc.", + "avgLatitude": 50.5024033, + "avgLongitude": 14.5791578 + }, + { + "id": "U31039", + "name": "Blatce,Tubož", + "avgLatitude": 50.4893951, + "avgLongitude": 14.5997629 + }, + { + "id": "U31040", + "name": "Blatce,Tubož,rybník", + "avgLatitude": 50.4903946, + "avgLongitude": 14.5994349 + }, + { + "id": "U47", + "name": "Blatiny", + "avgLatitude": 50.0657463, + "avgLongitude": 14.30265 + }, + { + "id": "U9515", + "name": "Blatná", + "avgLatitude": 49.4309273, + "avgLongitude": 13.8727407 + }, + { + "id": "U31539", + "name": "Blatná,Hněvkov", + "avgLatitude": 49.4008446, + "avgLongitude": 13.9048977 + }, + { + "id": "U31533", + "name": "Blatná,mlékárna", + "avgLatitude": 49.4175034, + "avgLongitude": 13.8854055 + }, + { + "id": "U31536", + "name": "Blatná,Palackého", + "avgLatitude": 49.42813, + "avgLongitude": 13.8819084 + }, + { + "id": "U31944", + "name": "Blatná,Sádlov", + "avgLatitude": 49.4230766, + "avgLongitude": 13.8652763 + }, + { + "id": "U31540", + "name": "Blatná,Skaličany", + "avgLatitude": 49.43736, + "avgLongitude": 13.915575 + }, + { + "id": "U31946", + "name": "Blatná,Vorlíčkova", + "avgLatitude": 49.4216881, + "avgLongitude": 13.8821735 + }, + { + "id": "U35", + "name": "Blatnická", + "avgLatitude": 50.0641251, + "avgLongitude": 14.2705126 + }, + { + "id": "U9548", + "name": "Blatno u Jesenice", + "avgLatitude": 50.0999451, + "avgLongitude": 13.3899956 + }, + { + "id": "U36", + "name": "Blatov", + "avgLatitude": 50.0787468, + "avgLongitude": 14.6454916 + }, + { + "id": "U4106", + "name": "Blatov sever", + "avgLatitude": 50.08279, + "avgLongitude": 14.6451569 + }, + { + "id": "U7024", + "name": "Blažejovice", + "avgLatitude": 49.61959, + "avgLongitude": 15.2001934 + }, + { + "id": "U7025", + "name": "Blažejovice,Vítonice,rozc.", + "avgLatitude": 49.6223221, + "avgLongitude": 15.1860867 + }, + { + "id": "U1334", + "name": "Blažimská", + "avgLatitude": 50.0425835, + "avgLongitude": 14.49285 + }, + { + "id": "U4422", + "name": "Blevice", + "avgLatitude": 50.2100754, + "avgLongitude": 14.2364979 + }, + { + "id": "U7314", + "name": "Bludov", + "avgLatitude": 49.8074226, + "avgLongitude": 15.2556934 + }, + { + "id": "U2717", + "name": "Bludovická", + "avgLatitude": 50.135994, + "avgLongitude": 14.5113134 + }, + { + "id": "U9555", + "name": "Bobnice", + "avgLatitude": 50.2187424, + "avgLongitude": 15.0557852 + }, + { + "id": "U9553", + "name": "Bobnice,Kovansko", + "avgLatitude": 50.207016, + "avgLongitude": 15.055295 + }, + { + "id": "U9554", + "name": "Bobnice,škola", + "avgLatitude": 50.2164536, + "avgLongitude": 15.0566092 + }, + { + "id": "U37", + "name": "Bohdalec", + "avgLatitude": 50.0603027, + "avgLongitude": 14.4698029 + }, + { + "id": "U1092", + "name": "Bohdalecká", + "avgLatitude": 50.0567856, + "avgLongitude": 14.4732513 + }, + { + "id": "U6969", + "name": "Bohdaneč", + "avgLatitude": 49.778656, + "avgLongitude": 15.2227907 + }, + { + "id": "U6965", + "name": "Bohdaneč,Prostřední Ves", + "avgLatitude": 49.7906647, + "avgLongitude": 15.2148743 + }, + { + "id": "U7246", + "name": "Bohdaneč,prům.areál", + "avgLatitude": 49.777626, + "avgLongitude": 15.216856 + }, + { + "id": "U6967", + "name": "Bohdaneč,Řeplice", + "avgLatitude": 49.7924767, + "avgLongitude": 15.2359838 + }, + { + "id": "U6970", + "name": "Bohdaneč,Sáhy", + "avgLatitude": 49.7774277, + "avgLongitude": 15.236125 + }, + { + "id": "U6966", + "name": "Bohdaneč,Šlechtín", + "avgLatitude": 49.7908554, + "avgLongitude": 15.2238951 + }, + { + "id": "U6968", + "name": "Bohdaneč,u kapličky", + "avgLatitude": 49.7841949, + "avgLongitude": 15.2166729 + }, + { + "id": "U508", + "name": "Bohemians", + "avgLatitude": 50.0663376, + "avgLongitude": 14.45529 + }, + { + "id": "U1134", + "name": "Bohnické údolí", + "avgLatitude": 50.13567, + "avgLongitude": 14.4120169 + }, + { + "id": "U7026", + "name": "Bohostice", + "avgLatitude": 49.6015472, + "avgLongitude": 14.1401033 + }, + { + "id": "U7968", + "name": "Bohostice,Orlická přehrada", + "avgLatitude": 49.6077042, + "avgLongitude": 14.1787472 + }, + { + "id": "U5918", + "name": "Bohostice,sídliště", + "avgLatitude": 49.60209, + "avgLongitude": 14.1377764 + }, + { + "id": "U7027", + "name": "Bohostice,Zalaby", + "avgLatitude": 49.6078873, + "avgLongitude": 14.1582432 + }, + { + "id": "U31434", + "name": "Bohušovice n.Ohří,Hrdly", + "avgLatitude": 50.48373, + "avgLongitude": 14.1738758 + }, + { + "id": "U31419", + "name": "Bohušovice n.Ohří,sídliště", + "avgLatitude": 50.49646, + "avgLongitude": 14.1464319 + }, + { + "id": "U31418", + "name": "Bohušovice n.Ohří,záv.", + "avgLatitude": 50.50232, + "avgLongitude": 14.1460457 + }, + { + "id": "U31420", + "name": "Bohušovice n.Ohří,žel.st.", + "avgLatitude": 50.491684, + "avgLongitude": 14.149003 + }, + { + "id": "U9768", + "name": "Bohutín", + "avgLatitude": 49.6560135, + "avgLongitude": 13.9466705 + }, + { + "id": "U9770", + "name": "Bohutín,bytovky", + "avgLatitude": 49.6572571, + "avgLongitude": 13.9388123 + }, + { + "id": "U9767", + "name": "Bohutín,Havírna", + "avgLatitude": 49.6614227, + "avgLongitude": 13.9562225 + }, + { + "id": "U9771", + "name": "Bohutín,hřiště", + "avgLatitude": 49.661087, + "avgLongitude": 13.9337835 + }, + { + "id": "U9624", + "name": "Bohutín,škola", + "avgLatitude": 49.6533127, + "avgLongitude": 13.94239 + }, + { + "id": "U9765", + "name": "Bohutín,Vysoká Pec", + "avgLatitude": 49.66445, + "avgLongitude": 13.9650707 + }, + { + "id": "U9766", + "name": "Bohutín,Vysoká Pec,sídl.", + "avgLatitude": 49.6626778, + "avgLongitude": 13.9674768 + }, + { + "id": "U9764", + "name": "Bohutín,Vysoká Pec,zahrádky", + "avgLatitude": 49.6712532, + "avgLongitude": 13.9709949 + }, + { + "id": "U9769", + "name": "Bohutín,zbrojnice", + "avgLatitude": 49.65593, + "avgLongitude": 13.9434738 + }, + { + "id": "U32261", + "name": "Bochov,Herstošice", + "avgLatitude": 50.14205, + "avgLongitude": 13.1003132 + }, + { + "id": "U32162", + "name": "Bochov,nám.", + "avgLatitude": 50.1503143, + "avgLongitude": 13.04545 + }, + { + "id": "U32168", + "name": "Bochov,SÚS", + "avgLatitude": 50.1488647, + "avgLongitude": 13.0519543 + }, + { + "id": "U32161", + "name": "Bochov,Údrč,rozc.Skoky", + "avgLatitude": 50.14386, + "avgLongitude": 13.0884123 + }, + { + "id": "U2852", + "name": "Bojanovice", + "avgLatitude": 49.8678856, + "avgLongitude": 14.3451777 + }, + { + "id": "U1752", + "name": "Bojanovice,Chaty", + "avgLatitude": 49.85813, + "avgLongitude": 14.3517447 + }, + { + "id": "U1952", + "name": "Bojanovice,Malá Lečice", + "avgLatitude": 49.8215981, + "avgLongitude": 14.3366308 + }, + { + "id": "U1953", + "name": "Bojanovice,Malá Lečice,U Hesů", + "avgLatitude": 49.82115, + "avgLongitude": 14.33308 + }, + { + "id": "U1751", + "name": "Bojanovice,Rest.", + "avgLatitude": 49.8538628, + "avgLongitude": 14.3524256 + }, + { + "id": "U1954", + "name": "Bojanovice,Senešnice", + "avgLatitude": 49.8285179, + "avgLongitude": 14.3079605 + }, + { + "id": "U39", + "name": "Bojasova", + "avgLatitude": 50.132534, + "avgLongitude": 14.4626131 + }, + { + "id": "U1724", + "name": "Bojov", + "avgLatitude": 49.88018, + "avgLongitude": 14.3487768 + }, + { + "id": "U1", + "name": "Boletická", + "avgLatitude": 50.1328735, + "avgLongitude": 14.5136433 + }, + { + "id": "U732", + "name": "Bolevecká", + "avgLatitude": 50.04312, + "avgLongitude": 14.55613 + }, + { + "id": "U154", + "name": "Boloňská", + "avgLatitude": 50.04773, + "avgLongitude": 14.5561647 + }, + { + "id": "U4041", + "name": "Boreč", + "avgLatitude": 50.4060249, + "avgLongitude": 14.733881 + }, + { + "id": "U4065", + "name": "Boreč,cihelna", + "avgLatitude": 50.41305, + "avgLongitude": 14.7393208 + }, + { + "id": "U4042", + "name": "Boreč,na křižovatce", + "avgLatitude": 50.4091148, + "avgLongitude": 14.7299757 + }, + { + "id": "U4044", + "name": "Boreč,Žebice", + "avgLatitude": 50.413517, + "avgLongitude": 14.7134056 + }, + { + "id": "U1459", + "name": "Borek", + "avgLatitude": 50.22457, + "avgLongitude": 14.6527805 + }, + { + "id": "U7028", + "name": "Borotice", + "avgLatitude": 49.7350349, + "avgLongitude": 14.2786026 + }, + { + "id": "U4746", + "name": "Borotice,Čelina", + "avgLatitude": 49.73238, + "avgLongitude": 14.3256636 + }, + { + "id": "U5929", + "name": "Borotice,Čelina,rozc.", + "avgLatitude": 49.7316437, + "avgLongitude": 14.3199558 + }, + { + "id": "U4735", + "name": "Borotice,Dražetice", + "avgLatitude": 49.74518, + "avgLongitude": 14.29585 + }, + { + "id": "U5930", + "name": "Borotice,Dražetice,rozc.", + "avgLatitude": 49.7368774, + "avgLongitude": 14.3039417 + }, + { + "id": "U7033", + "name": "Borotice,Hubenov", + "avgLatitude": 49.7266731, + "avgLongitude": 14.2910566 + }, + { + "id": "U4748", + "name": "Borotice,Cholín", + "avgLatitude": 49.7185822, + "avgLongitude": 14.3298626 + }, + { + "id": "U7029", + "name": "Borotice,rozc.", + "avgLatitude": 49.733532, + "avgLongitude": 14.2946939 + }, + { + "id": "U4747", + "name": "Borotice,Rozc.Smilovice", + "avgLatitude": 49.7256, + "avgLongitude": 14.3305426 + }, + { + "id": "U7648", + "name": "Borotice,u lípy", + "avgLatitude": 49.73488, + "avgLongitude": 14.2829342 + }, + { + "id": "U31301", + "name": "Borotín", + "avgLatitude": 49.50598, + "avgLongitude": 14.6129084 + }, + { + "id": "U32105", + "name": "Borotín,Kamenná Lhota,rozc.1.0", + "avgLatitude": 49.5136948, + "avgLongitude": 14.592576 + }, + { + "id": "U31071", + "name": "Borotín,Libenice,rozc.0.8", + "avgLatitude": 49.52363, + "avgLongitude": 14.5761766 + }, + { + "id": "U32104", + "name": "Borotín,Sychrov,rozc.Boratkov", + "avgLatitude": 49.51686, + "avgLongitude": 14.58292 + }, + { + "id": "U31302", + "name": "Borotín,škola", + "avgLatitude": 49.5039444, + "avgLongitude": 14.6164331 + }, + { + "id": "U7034", + "name": "Borovnice", + "avgLatitude": 49.6483078, + "avgLongitude": 15.0185852 + }, + { + "id": "U7035", + "name": "Borovnice,rozc.", + "avgLatitude": 49.6487274, + "avgLongitude": 15.0133743 + }, + { + "id": "U31543", + "name": "Borovno", + "avgLatitude": 49.6207428, + "avgLongitude": 13.6910305 + }, + { + "id": "U1806", + "name": "Bořanovice", + "avgLatitude": 50.1769943, + "avgLongitude": 14.4843636 + }, + { + "id": "U3354", + "name": "Bořanovice,Náves", + "avgLatitude": 50.177906, + "avgLongitude": 14.4786015 + }, + { + "id": "U157", + "name": "Bořislavka", + "avgLatitude": 50.09862, + "avgLongitude": 14.36417 + }, + { + "id": "U6365", + "name": "Boseň", + "avgLatitude": 50.50394, + "avgLongitude": 15.0229273 + }, + { + "id": "U6369", + "name": "Boseň,Mužský", + "avgLatitude": 50.5221443, + "avgLongitude": 15.0418634 + }, + { + "id": "U6366", + "name": "Boseň,pod Valečovem", + "avgLatitude": 50.50854, + "avgLongitude": 15.0237179 + }, + { + "id": "U6368", + "name": "Boseň,Zápudov", + "avgLatitude": 50.516552, + "avgLongitude": 15.0363207 + }, + { + "id": "U6367", + "name": "Boseň,Zásadka", + "avgLatitude": 50.5144348, + "avgLongitude": 15.0257978 + }, + { + "id": "U2892", + "name": "Bošice", + "avgLatitude": 50.01525, + "avgLongitude": 15.0153465 + }, + { + "id": "U42", + "name": "Botanická zahrada", + "avgLatitude": 50.0707779, + "avgLongitude": 14.4192638 + }, + { + "id": "U2703", + "name": "Botanická zahrada Malešice", + "avgLatitude": 50.08867, + "avgLongitude": 14.5139694 + }, + { + "id": "U557", + "name": "Botanická zahrada Troja", + "avgLatitude": 50.11912, + "avgLongitude": 14.4104853 + }, + { + "id": "U7217", + "name": "Brambory", + "avgLatitude": 49.9779, + "avgLongitude": 15.4703321 + }, + { + "id": "U7218", + "name": "Brambory,Koukalka", + "avgLatitude": 49.9749832, + "avgLongitude": 15.4753675 + }, + { + "id": "U1829", + "name": "Brandýs n.L.-St.Bol.,Aut.st.", + "avgLatitude": 50.19774, + "avgLongitude": 14.6784878 + }, + { + "id": "U1996", + "name": "Brandýs n.L.-St.Bol.,Baumit", + "avgLatitude": 50.175972, + "avgLongitude": 14.665555 + }, + { + "id": "U3356", + "name": "Brandýs n.L.-St.Bol.,Brázdimská", + "avgLatitude": 50.18801, + "avgLongitude": 14.648838 + }, + { + "id": "U1950", + "name": "Brandýs n.L.-St.Bol.,Continental", + "avgLatitude": 50.17617, + "avgLongitude": 14.65867 + }, + { + "id": "U1946", + "name": "Brandýs n.L.-St.Bol.,Dům peč.služby", + "avgLatitude": 50.1913757, + "avgLongitude": 14.6556969 + }, + { + "id": "U2202", + "name": "Brandýs n.L.-St.Bol.,Fakulta", + "avgLatitude": 50.18425, + "avgLongitude": 14.668252 + }, + { + "id": "U1831", + "name": "Brandýs n.L.-St.Bol.,Kasárna", + "avgLatitude": 50.2066727, + "avgLongitude": 14.6928768 + }, + { + "id": "U2204", + "name": "Brandýs n.L.-St.Bol.,Královice", + "avgLatitude": 50.1792526, + "avgLongitude": 14.6867037 + }, + { + "id": "U1924", + "name": "Brandýs n.L.-St.Bol.,Most", + "avgLatitude": 50.19079, + "avgLongitude": 14.6681738 + }, + { + "id": "U3001", + "name": "Brandýs n.L.-St.Bol.,Na Panském", + "avgLatitude": 50.2039337, + "avgLongitude": 14.6892776 + }, + { + "id": "U2203", + "name": "Brandýs n.L.-St.Bol.,Na Radosti", + "avgLatitude": 50.1831779, + "avgLongitude": 14.6770649 + }, + { + "id": "U1942", + "name": "Brandýs n.L.-St.Bol.,Nádr.", + "avgLatitude": 50.18331, + "avgLongitude": 14.6563721 + }, + { + "id": "U1827", + "name": "Brandýs n.L.-St.Bol.,Nám.", + "avgLatitude": 50.1856842, + "avgLongitude": 14.6600685 + }, + { + "id": "U1948", + "name": "Brandýs n.L.-St.Bol.,Nem.", + "avgLatitude": 50.1885376, + "avgLongitude": 14.65252 + }, + { + "id": "U1825", + "name": "Brandýs n.L.-St.Bol.,Pekárny", + "avgLatitude": 50.17882, + "avgLongitude": 14.67004 + }, + { + "id": "U1962", + "name": "Brandýs n.L.-St.Bol.,Popovice", + "avgLatitude": 50.17801, + "avgLongitude": 14.6249781 + }, + { + "id": "U1826", + "name": "Brandýs n.L.-St.Bol.,Pražská", + "avgLatitude": 50.18372, + "avgLongitude": 14.6573391 + }, + { + "id": "U2363", + "name": "Brandýs n.L.-St.Bol.,Proboštská jezera", + "avgLatitude": 50.2067451, + "avgLongitude": 14.66335 + }, + { + "id": "U1947", + "name": "Brandýs n.L.-St.Bol.,Rychta", + "avgLatitude": 50.18857, + "avgLongitude": 14.6565666 + }, + { + "id": "U1943", + "name": "Brandýs n.L.-St.Bol.,Sídl.u nádr.", + "avgLatitude": 50.18538, + "avgLongitude": 14.6521387 + }, + { + "id": "U1830", + "name": "Brandýs n.L.-St.Bol.,Sídliště", + "avgLatitude": 50.2014847, + "avgLongitude": 14.6854706 + }, + { + "id": "U1834", + "name": "Brandýs n.L.-St.Bol.,Sokolovská", + "avgLatitude": 50.1947937, + "avgLongitude": 14.68871 + }, + { + "id": "U1833", + "name": "Brandýs n.L.-St.Bol.,Škola", + "avgLatitude": 50.1969681, + "avgLongitude": 14.6826954 + }, + { + "id": "U3257", + "name": "Brandýs n.L.-St.Bol.,Školní", + "avgLatitude": 50.19698, + "avgLongitude": 14.6779795 + }, + { + "id": "U1828", + "name": "Brandýs n.L.-St.Bol.,U Brány", + "avgLatitude": 50.1943436, + "avgLongitude": 14.6722546 + }, + { + "id": "U2362", + "name": "Brandýs n.L.-St.Bol.,U Hřbitova", + "avgLatitude": 50.1999321, + "avgLongitude": 14.679697 + }, + { + "id": "U1949", + "name": "Brandýs n.L.-St.Bol.,U Křížku", + "avgLatitude": 50.19346, + "avgLongitude": 14.6532021 + }, + { + "id": "U1973", + "name": "Brandýs n.L.-St.Bol.,U Soudu", + "avgLatitude": 50.1852036, + "avgLongitude": 14.6643648 + }, + { + "id": "U1944", + "name": "Brandýs n.L.-St.Bol.,V Olšinkách", + "avgLatitude": 50.18641, + "avgLongitude": 14.64813 + }, + { + "id": "U1835", + "name": "Brandýs n.L.-St.Bol.,Vosí hnízdo", + "avgLatitude": 50.1939545, + "avgLongitude": 14.7005653 + }, + { + "id": "U1824", + "name": "Brandýs n.L.-St.Bol.,Vrábí", + "avgLatitude": 50.1780853, + "avgLongitude": 14.6539326 + }, + { + "id": "U1820", + "name": "Brandýs n.L.-St.Bol.,Výletní", + "avgLatitude": 50.18104, + "avgLongitude": 14.6481485 + }, + { + "id": "U1832", + "name": "Brandýs n.L.-St.Bol.,Žel.st.", + "avgLatitude": 50.209568, + "avgLongitude": 14.6919947 + }, + { + "id": "U2894", + "name": "Brandýs nad Labem zast.", + "avgLatitude": 50.1803551, + "avgLongitude": 14.67804 + }, + { + "id": "U4417", + "name": "Brandýsek", + "avgLatitude": 50.18891, + "avgLongitude": 14.1608276 + }, + { + "id": "U2884", + "name": "Brandýsek", + "avgLatitude": 50.18414, + "avgLongitude": 14.1730642 + }, + { + "id": "U4416", + "name": "Brandýsek,Olšany", + "avgLatitude": 50.1872139, + "avgLongitude": 14.1538982 + }, + { + "id": "U4767", + "name": "Brandýsek,škola", + "avgLatitude": 50.18866, + "avgLongitude": 14.1582413 + }, + { + "id": "U4418", + "name": "Brandýsek,u kina", + "avgLatitude": 50.1885147, + "avgLongitude": 14.1626549 + }, + { + "id": "U245", + "name": "Branické náměstí", + "avgLatitude": 50.0346527, + "avgLongitude": 14.41438 + }, + { + "id": "U4022", + "name": "Branov", + "avgLatitude": 50.01231, + "avgLongitude": 13.8436337 + }, + { + "id": "U4024", + "name": "Branov,háj.", + "avgLatitude": 50.0030365, + "avgLongitude": 13.8546925 + }, + { + "id": "U4023", + "name": "Branov,pod ohradou", + "avgLatitude": 50.0093, + "avgLongitude": 13.8456516 + }, + { + "id": "U6316", + "name": "Branžež", + "avgLatitude": 50.5079842, + "avgLongitude": 15.0624695 + }, + { + "id": "U6313", + "name": "Branžež,na křižovatce", + "avgLatitude": 50.5049744, + "avgLongitude": 15.0574188 + }, + { + "id": "U6315", + "name": "Branžež,Nová Ves", + "avgLatitude": 50.5032654, + "avgLongitude": 15.0687866 + }, + { + "id": "U6314", + "name": "Branžež,Nová Ves,na kopečku", + "avgLatitude": 50.50435, + "avgLongitude": 15.0630093 + }, + { + "id": "U6317", + "name": "Branžež,Zakopaná", + "avgLatitude": 50.51181, + "avgLongitude": 15.0772619 + }, + { + "id": "U4891", + "name": "Braškov", + "avgLatitude": 50.1011734, + "avgLongitude": 14.1009235 + }, + { + "id": "U4890", + "name": "Braškov,Toskánka", + "avgLatitude": 50.1053963, + "avgLongitude": 14.10733 + }, + { + "id": "U4892", + "name": "Braškov,Valdek", + "avgLatitude": 50.0982437, + "avgLongitude": 14.0873928 + }, + { + "id": "U6983", + "name": "Bratčice", + "avgLatitude": 49.8549423, + "avgLongitude": 15.430172 + }, + { + "id": "U6982", + "name": "Bratčice,křiž.", + "avgLatitude": 49.8584747, + "avgLongitude": 15.4477425 + }, + { + "id": "U7044", + "name": "Bratčice,rozc.Potěhy", + "avgLatitude": 49.8557663, + "avgLongitude": 15.426857 + }, + { + "id": "U7285", + "name": "Bratčice,u mostu", + "avgLatitude": 49.85209, + "avgLongitude": 15.428441 + }, + { + "id": "U9675", + "name": "Bratkovice", + "avgLatitude": 49.7418442, + "avgLongitude": 14.0001907 + }, + { + "id": "U3286", + "name": "Bratkovice", + "avgLatitude": 49.7386932, + "avgLongitude": 14.0029793 + }, + { + "id": "U9674", + "name": "Bratkovice,Dominikální Paseky", + "avgLatitude": 49.7513657, + "avgLongitude": 13.9968042 + }, + { + "id": "U9673", + "name": "Bratkovice,Dominikální Paseky,rozc.", + "avgLatitude": 49.7571945, + "avgLongitude": 14.0095768 + }, + { + "id": "U4212", + "name": "Bratronice", + "avgLatitude": 50.06783, + "avgLongitude": 14.014782 + }, + { + "id": "U4198", + "name": "Bratronice,Dolní Bezděkov", + "avgLatitude": 50.08448, + "avgLongitude": 14.0351048 + }, + { + "id": "U4211", + "name": "Bratronice,křižovatka", + "avgLatitude": 50.068882, + "avgLongitude": 14.019206 + }, + { + "id": "U4208", + "name": "Bratronice,Mostecký Mlýn", + "avgLatitude": 50.0733681, + "avgLongitude": 14.0424585 + }, + { + "id": "U4199", + "name": "Bratronice,odb.Mostecký Mlýn", + "avgLatitude": 50.08042, + "avgLongitude": 14.0340748 + }, + { + "id": "U1757", + "name": "Bratřínov", + "avgLatitude": 49.8427773, + "avgLongitude": 14.340312 + }, + { + "id": "U1044", + "name": "Braunova", + "avgLatitude": 50.0618134, + "avgLongitude": 14.40187 + }, + { + "id": "U1239", + "name": "Brázdim,Nový Brázdim", + "avgLatitude": 50.1825256, + "avgLongitude": 14.5855093 + }, + { + "id": "U1244", + "name": "Brázdim,Rozc.Veliký Brázdim", + "avgLatitude": 50.19097, + "avgLongitude": 14.5826664 + }, + { + "id": "U1805", + "name": "Brázdim,Starý Brázdim", + "avgLatitude": 50.182373, + "avgLongitude": 14.5892715 + }, + { + "id": "U43", + "name": "Brechtova", + "avgLatitude": 50.0353622, + "avgLongitude": 14.5167522 + }, + { + "id": "U1129", + "name": "Breitcetlova", + "avgLatitude": 50.10614, + "avgLongitude": 14.5745258 + }, + { + "id": "U31422", + "name": "Brňany", + "avgLatitude": 50.48145, + "avgLongitude": 14.1418209 + }, + { + "id": "U31421", + "name": "Brňany,záv.", + "avgLatitude": 50.4877472, + "avgLongitude": 14.1460457 + }, + { + "id": "U31376", + "name": "Brniště,Luhov,křiž.", + "avgLatitude": 50.70823, + "avgLongitude": 14.7572842 + }, + { + "id": "U6255", + "name": "Brodce,Cukrovarská", + "avgLatitude": 50.32335, + "avgLongitude": 14.8658676 + }, + { + "id": "U9870", + "name": "Brodce,Obecní úřad", + "avgLatitude": 50.33069, + "avgLongitude": 14.8679657 + }, + { + "id": "U3383", + "name": "Brodce,sokolovna", + "avgLatitude": 50.32798, + "avgLongitude": 14.8658476 + }, + { + "id": "U3264", + "name": "Brodce,škola", + "avgLatitude": 50.3334923, + "avgLongitude": 14.8680115 + }, + { + "id": "U32183", + "name": "Brodec", + "avgLatitude": 50.29349, + "avgLongitude": 13.7969074 + }, + { + "id": "U32068", + "name": "Brodec,rozc.2.0", + "avgLatitude": 50.30172, + "avgLongitude": 13.8208866 + }, + { + "id": "U1167", + "name": "Brodecká", + "avgLatitude": 50.0888062, + "avgLongitude": 14.3236217 + }, + { + "id": "U960", + "name": "Brodského", + "avgLatitude": 50.03861, + "avgLongitude": 14.5035591 + }, + { + "id": "U9081", + "name": "Broumy,Bušohrad", + "avgLatitude": 49.945858, + "avgLongitude": 13.813695 + }, + { + "id": "U9082", + "name": "Broumy,Kolna", + "avgLatitude": 49.9424629, + "avgLongitude": 13.9023275 + }, + { + "id": "U9077", + "name": "Broumy,Luh rozc.", + "avgLatitude": 49.9644, + "avgLongitude": 13.8537016 + }, + { + "id": "U9078", + "name": "Broumy,radnice", + "avgLatitude": 49.95469, + "avgLongitude": 13.8524618 + }, + { + "id": "U9079", + "name": "Broumy,škola", + "avgLatitude": 49.95103, + "avgLongitude": 13.8556767 + }, + { + "id": "U9080", + "name": "Broumy,U dvora", + "avgLatitude": 49.959404, + "avgLongitude": 13.8432426 + }, + { + "id": "U31424", + "name": "Brozany n.Ohří", + "avgLatitude": 50.4542236, + "avgLongitude": 14.1462164 + }, + { + "id": "U31423", + "name": "Brozany n.Ohří,křiž.", + "avgLatitude": 50.45833, + "avgLongitude": 14.1370945 + }, + { + "id": "U265", + "name": "Brumlovka", + "avgLatitude": 50.0479431, + "avgLongitude": 14.45477 + }, + { + "id": "U45", + "name": "Bruselská", + "avgLatitude": 50.0730057, + "avgLongitude": 14.4332628 + }, + { + "id": "U46", + "name": "Brusnice", + "avgLatitude": 50.09307, + "avgLongitude": 14.3922148 + }, + { + "id": "U1091", + "name": "Bryksova", + "avgLatitude": 50.1022148, + "avgLongitude": 14.5789471 + }, + { + "id": "U9880", + "name": "Břeclavská", + "avgLatitude": 50.09587, + "avgLongitude": 14.5461426 + }, + { + "id": "U3", + "name": "Břetislavka", + "avgLatitude": 50.123127, + "avgLongitude": 14.3897095 + }, + { + "id": "U44", + "name": "Břevnovská", + "avgLatitude": 50.08551, + "avgLongitude": 14.3649044 + }, + { + "id": "U994", + "name": "Břevnovský klášter", + "avgLatitude": 50.08319, + "avgLongitude": 14.3587761 + }, + { + "id": "U1816", + "name": "Březí", + "avgLatitude": 50.0146637, + "avgLongitude": 14.6999865 + }, + { + "id": "U1814", + "name": "Březí,U křížku", + "avgLatitude": 50.013443, + "avgLongitude": 14.69009 + }, + { + "id": "U3295", + "name": "Březí,V Jezírku", + "avgLatitude": 50.0141029, + "avgLongitude": 14.6952915 + }, + { + "id": "U9440", + "name": "Březina", + "avgLatitude": 50.54528, + "avgLongitude": 15.032486 + }, + { + "id": "U6396", + "name": "Březina,Honsob", + "avgLatitude": 50.53959, + "avgLongitude": 15.0196095 + }, + { + "id": "U6395", + "name": "Březina,náves", + "avgLatitude": 50.5481033, + "avgLongitude": 15.03286 + }, + { + "id": "U6397", + "name": "Březina,Žabakor", + "avgLatitude": 50.5469742, + "avgLongitude": 15.0449886 + }, + { + "id": "U826", + "name": "Březiněves", + "avgLatitude": 50.1646652, + "avgLongitude": 14.4837513 + }, + { + "id": "U718", + "name": "Březiněveská", + "avgLatitude": 50.12653, + "avgLongitude": 14.4569206 + }, + { + "id": "U3291", + "name": "Březnice", + "avgLatitude": 49.55846, + "avgLongitude": 13.963954 + }, + { + "id": "U7045", + "name": "Březnice,aut.st.", + "avgLatitude": 49.55868, + "avgLongitude": 13.9466305 + }, + { + "id": "U7054", + "name": "Březnice,Bor", + "avgLatitude": 49.5561447, + "avgLongitude": 13.987278 + }, + { + "id": "U7052", + "name": "Březnice,Borská", + "avgLatitude": 49.5558853, + "avgLongitude": 13.9773741 + }, + { + "id": "U4293", + "name": "Březnice,Dobrá Voda", + "avgLatitude": 49.555603, + "avgLongitude": 13.9999676 + }, + { + "id": "U7047", + "name": "Březnice,Dolní Valy", + "avgLatitude": 49.55648, + "avgLongitude": 13.9536934 + }, + { + "id": "U7046", + "name": "Březnice,nám.", + "avgLatitude": 49.5571365, + "avgLongitude": 13.9517717 + }, + { + "id": "U7050", + "name": "Březnice,Počapská", + "avgLatitude": 49.5534058, + "avgLongitude": 13.9594879 + }, + { + "id": "U7058", + "name": "Březnice,Přední Poříčí", + "avgLatitude": 49.57547, + "avgLongitude": 13.9395313 + }, + { + "id": "U7049", + "name": "Březnice,Tochovická", + "avgLatitude": 49.5598679, + "avgLongitude": 13.9546051 + }, + { + "id": "U7051", + "name": "Březnice,U Blatenky", + "avgLatitude": 49.5570831, + "avgLongitude": 13.9674292 + }, + { + "id": "U9506", + "name": "Březnice,Zadní Poříčí,rozc.", + "avgLatitude": 49.577507, + "avgLongitude": 13.9390965 + }, + { + "id": "U6262", + "name": "Březno", + "avgLatitude": 50.40644, + "avgLongitude": 15.0056238 + }, + { + "id": "U9456", + "name": "Březno u Mladé Boleslavi", + "avgLatitude": 50.41374, + "avgLongitude": 15.0061693 + }, + { + "id": "U6264", + "name": "Březno,Dolánky", + "avgLatitude": 50.39371, + "avgLongitude": 15.0060225 + }, + { + "id": "U6263", + "name": "Březno,škola", + "avgLatitude": 50.4042664, + "avgLongitude": 15.0092173 + }, + { + "id": "U9818", + "name": "Březová", + "avgLatitude": 49.90354, + "avgLongitude": 13.8830681 + }, + { + "id": "U9819", + "name": "Březová,háj.", + "avgLatitude": 49.91076, + "avgLongitude": 13.8761559 + }, + { + "id": "U9817", + "name": "Březová,Pod hrází", + "avgLatitude": 49.8972244, + "avgLongitude": 13.8891926 + }, + { + "id": "U1515", + "name": "Březová-Oleško,Březová", + "avgLatitude": 49.9150352, + "avgLongitude": 14.41559 + }, + { + "id": "U4266", + "name": "Březová-Oleško,Nová Březová", + "avgLatitude": 49.919136, + "avgLongitude": 14.4008026 + }, + { + "id": "U1517", + "name": "Březová-Oleško,Oleško", + "avgLatitude": 49.901886, + "avgLongitude": 14.4107628 + }, + { + "id": "U4268", + "name": "Březová-Oleško,Olešská", + "avgLatitude": 49.91526, + "avgLongitude": 14.4108047 + }, + { + "id": "U9551", + "name": "Březová-Oleško,Školka", + "avgLatitude": 49.9117279, + "avgLongitude": 14.4141769 + }, + { + "id": "U1516", + "name": "Březová-Oleško,U Topolů", + "avgLatitude": 49.9083176, + "avgLongitude": 14.4131556 + }, + { + "id": "U4267", + "name": "Březová-Oleško,Zahradní", + "avgLatitude": 49.9180641, + "avgLongitude": 14.4052649 + }, + { + "id": "U6248", + "name": "Březovice", + "avgLatitude": 50.4710236, + "avgLongitude": 14.7337341 + }, + { + "id": "U6250", + "name": "Březovice,Víska,Kluček", + "avgLatitude": 50.4766846, + "avgLongitude": 14.72276 + }, + { + "id": "U6866", + "name": "Břežany", + "avgLatitude": 50.00532, + "avgLongitude": 13.5805931 + }, + { + "id": "U4947", + "name": "Břežany I", + "avgLatitude": 50.0342636, + "avgLongitude": 15.0789928 + }, + { + "id": "U4948", + "name": "Břežany I,Chocenice", + "avgLatitude": 50.0304146, + "avgLongitude": 15.0972195 + }, + { + "id": "U2439", + "name": "Břežany II", + "avgLatitude": 50.09289, + "avgLongitude": 14.8057346 + }, + { + "id": "U2453", + "name": "Břežany II,na Malé Straně", + "avgLatitude": 50.0938568, + "avgLongitude": 14.8026161 + }, + { + "id": "U2449", + "name": "Břežany II,U sokolovny", + "avgLatitude": 50.0896759, + "avgLongitude": 14.8054457 + }, + { + "id": "U6865", + "name": "Břežany,rozc.", + "avgLatitude": 49.99913, + "avgLongitude": 13.5687828 + }, + { + "id": "U2421", + "name": "Bříství", + "avgLatitude": 50.13406, + "avgLongitude": 14.8416872 + }, + { + "id": "U2450", + "name": "Bříství,Svárov", + "avgLatitude": 50.1305542, + "avgLongitude": 14.8424168 + }, + { + "id": "U4434", + "name": "Bříza obec", + "avgLatitude": 50.36357, + "avgLongitude": 14.2185555 + }, + { + "id": "U100", + "name": "Bubenská", + "avgLatitude": 50.0981026, + "avgLongitude": 14.4365892 + }, + { + "id": "U1661", + "name": "Bubovice", + "avgLatitude": 49.9702835, + "avgLongitude": 14.1673908 + }, + { + "id": "U4168", + "name": "Bubovice,Višňovka", + "avgLatitude": 49.9746628, + "avgLongitude": 14.1633987 + }, + { + "id": "U50", + "name": "Budějovická", + "avgLatitude": 50.04504, + "avgLongitude": 14.4481649 + }, + { + "id": "U9556", + "name": "Budiměřice", + "avgLatitude": 50.1959763, + "avgLongitude": 15.0964489 + }, + { + "id": "U9557", + "name": "Budiměřice,Rašovice", + "avgLatitude": 50.20585, + "avgLongitude": 15.1164513 + }, + { + "id": "U9558", + "name": "Budiměřice,Šlotava", + "avgLatitude": 50.1988373, + "avgLongitude": 15.0943546 + }, + { + "id": "U53", + "name": "Budovec", + "avgLatitude": 50.1342773, + "avgLongitude": 14.38365 + }, + { + "id": "U31427", + "name": "Budyně n.Ohří,Písty", + "avgLatitude": 50.4233246, + "avgLongitude": 14.1594772 + }, + { + "id": "U31429", + "name": "Budyně n.Ohří,Pražská", + "avgLatitude": 50.4044647, + "avgLongitude": 14.1296034 + }, + { + "id": "U31430", + "name": "Budyně n.Ohří,Slánská", + "avgLatitude": 50.3981628, + "avgLongitude": 14.1232777 + }, + { + "id": "U31428", + "name": "Budyně n.Ohří,žel.st.", + "avgLatitude": 50.40594, + "avgLongitude": 14.1330223 + }, + { + "id": "U1130", + "name": "Bucharova", + "avgLatitude": 50.0540161, + "avgLongitude": 14.3390255 + }, + { + "id": "U9631", + "name": "Buková u Příbramě", + "avgLatitude": 49.7546921, + "avgLongitude": 14.0670662 + }, + { + "id": "U9630", + "name": "Buková u Příbramě,Na Vršku", + "avgLatitude": 49.7521744, + "avgLongitude": 14.0722084 + }, + { + "id": "U4490", + "name": "Bukovany", + "avgLatitude": 49.8241, + "avgLongitude": 14.6182461 + }, + { + "id": "U7060", + "name": "Bukovany", + "avgLatitude": 49.5741653, + "avgLongitude": 14.1029587 + }, + { + "id": "U4489", + "name": "Bukovany,Rozc.", + "avgLatitude": 49.8241272, + "avgLongitude": 14.6274033 + }, + { + "id": "U31460", + "name": "Bukovina u Přelouče", + "avgLatitude": 49.94836, + "avgLongitude": 15.56566 + }, + { + "id": "U4172", + "name": "Bukovinská", + "avgLatitude": 50.1439857, + "avgLongitude": 14.5770893 + }, + { + "id": "U4071", + "name": "Bukovno", + "avgLatitude": 50.44631, + "avgLongitude": 14.8393373 + }, + { + "id": "U9358", + "name": "Bukovno", + "avgLatitude": 50.4435921, + "avgLongitude": 14.8333511 + }, + { + "id": "U9357", + "name": "Bukovno,Líny", + "avgLatitude": 50.449688, + "avgLongitude": 14.8149681 + }, + { + "id": "U54", + "name": "Bulovka", + "avgLatitude": 50.1162949, + "avgLongitude": 14.4680319 + }, + { + "id": "U2524", + "name": "Buš", + "avgLatitude": 49.80331, + "avgLongitude": 14.3839464 + }, + { + "id": "U9882", + "name": "Buš,Pod Klíčem", + "avgLatitude": 49.80024, + "avgLongitude": 14.3879433 + }, + { + "id": "U4303", + "name": "Buštěhrad", + "avgLatitude": 50.15429, + "avgLongitude": 14.1896648 + }, + { + "id": "U4397", + "name": "Buštěhrad,Bouchalka", + "avgLatitude": 50.1612167, + "avgLongitude": 14.2080975 + }, + { + "id": "U4817", + "name": "Buštěhrad,Bouchalka Křiž.", + "avgLatitude": 50.15963, + "avgLongitude": 14.2058887 + }, + { + "id": "U2980", + "name": "Buštěhrad,Třinecká", + "avgLatitude": 50.15597, + "avgLongitude": 14.1639452 + }, + { + "id": "U2981", + "name": "Buštěhrad,U 7 komínů", + "avgLatitude": 50.1564941, + "avgLongitude": 14.1714821 + }, + { + "id": "U4304", + "name": "Buštěhrad,U Kahance", + "avgLatitude": 50.15147, + "avgLongitude": 14.18145 + }, + { + "id": "U4738", + "name": "Buštěhrad,U Kapličky", + "avgLatitude": 50.152916, + "avgLongitude": 14.1951275 + }, + { + "id": "U4816", + "name": "Buštěhrad,u školy", + "avgLatitude": 50.15761, + "avgLongitude": 14.1866856 + }, + { + "id": "U5095", + "name": "Buštěhrad,Závod Dříň", + "avgLatitude": 50.1543732, + "avgLongitude": 14.1638355 + }, + { + "id": "U1296", + "name": "Butovická", + "avgLatitude": 50.0513458, + "avgLongitude": 14.3629322 + }, + { + "id": "U6633", + "name": "Býchory", + "avgLatitude": 50.0675, + "avgLongitude": 15.2739449 + }, + { + "id": "U6634", + "name": "Býchory,škola", + "avgLatitude": 50.06751, + "avgLongitude": 15.2759333 + }, + { + "id": "U9429", + "name": "Bykáň", + "avgLatitude": 49.89164, + "avgLongitude": 15.2399492 + }, + { + "id": "U4384", + "name": "Býkev", + "avgLatitude": 50.3471642, + "avgLongitude": 14.4168 + }, + { + "id": "U4385", + "name": "Býkev,Jenišovice", + "avgLatitude": 50.347, + "avgLongitude": 14.4016075 + }, + { + "id": "U9045", + "name": "Bykoš", + "avgLatitude": 49.88292, + "avgLongitude": 14.0637913 + }, + { + "id": "U2494", + "name": "Bykoš,odb.Vinařice", + "avgLatitude": 49.8947563, + "avgLongitude": 14.0753345 + }, + { + "id": "U31466", + "name": "Bylany,hlavní silnice", + "avgLatitude": 49.95652, + "avgLongitude": 15.73393 + }, + { + "id": "U4555", + "name": "Bystřice u Benešova", + "avgLatitude": 49.74172, + "avgLongitude": 14.6664934 + }, + { + "id": "U6542", + "name": "Bystřice,Božkovice,rozc.", + "avgLatitude": 49.7010269, + "avgLongitude": 14.6077518 + }, + { + "id": "U6543", + "name": "Bystřice,Drachkov", + "avgLatitude": 49.71367, + "avgLongitude": 14.6199083 + }, + { + "id": "U6544", + "name": "Bystřice,Drachkov,bytovky", + "avgLatitude": 49.71503, + "avgLongitude": 14.6232958 + }, + { + "id": "U6545", + "name": "Bystřice,Hlivín", + "avgLatitude": 49.6864548, + "avgLongitude": 14.7226715 + }, + { + "id": "U4743", + "name": "Bystřice,Jarkovice", + "avgLatitude": 49.76435, + "avgLongitude": 14.6535769 + }, + { + "id": "U6547", + "name": "Bystřice,Jinošice", + "avgLatitude": 49.7043724, + "avgLongitude": 14.6888237 + }, + { + "id": "U6546", + "name": "Bystřice,Jinošice,rozc.Hutě", + "avgLatitude": 49.70757, + "avgLongitude": 14.68709 + }, + { + "id": "U4523", + "name": "Bystřice,Jírovice", + "avgLatitude": 49.7569275, + "avgLongitude": 14.6665106 + }, + { + "id": "U4524", + "name": "Bystřice,Jírovice,Kukačka", + "avgLatitude": 49.75876, + "avgLongitude": 14.6606646 + }, + { + "id": "U4554", + "name": "Bystřice,Jírovice,rozc.", + "avgLatitude": 49.75505, + "avgLongitude": 14.673069 + }, + { + "id": "U6598", + "name": "Bystřice,Jiřín", + "avgLatitude": 49.6775131, + "avgLongitude": 14.6816854 + }, + { + "id": "U6549", + "name": "Bystřice,Knihovka", + "avgLatitude": 49.7174072, + "avgLongitude": 14.6550865 + }, + { + "id": "U6551", + "name": "Bystřice,Líšno", + "avgLatitude": 49.7328339, + "avgLongitude": 14.6841755 + }, + { + "id": "U4562", + "name": "Bystřice,Mlýny,Rozc.", + "avgLatitude": 49.7390366, + "avgLongitude": 14.607975 + }, + { + "id": "U6552", + "name": "Bystřice,Mokrá Lhota", + "avgLatitude": 49.74911, + "avgLongitude": 14.6901188 + }, + { + "id": "U6553", + "name": "Bystřice,Mokrá Lhota,rozc.", + "avgLatitude": 49.7478, + "avgLongitude": 14.6864319 + }, + { + "id": "U4557", + "name": "Bystřice,nám.", + "avgLatitude": 49.73218, + "avgLongitude": 14.6673279 + }, + { + "id": "U4558", + "name": "Bystřice,Nesvačily,Nad Rybníkem", + "avgLatitude": 49.7320061, + "avgLongitude": 14.642971 + }, + { + "id": "U4559", + "name": "Bystřice,Nesvačily,Rest.", + "avgLatitude": 49.73436, + "avgLongitude": 14.6339378 + }, + { + "id": "U6554", + "name": "Bystřice,Nesvačily,vodárna", + "avgLatitude": 49.7278671, + "avgLongitude": 14.6406889 + }, + { + "id": "U6555", + "name": "Bystřice,Opřetice", + "avgLatitude": 49.7136154, + "avgLongitude": 14.6729345 + }, + { + "id": "U6556", + "name": "Bystřice,Ouběnice", + "avgLatitude": 49.6937637, + "avgLongitude": 14.6866188 + }, + { + "id": "U6557", + "name": "Bystřice,Ouběnice,Dubovka", + "avgLatitude": 49.6953621, + "avgLongitude": 14.6917782 + }, + { + "id": "U6548", + "name": "Bystřice,Ouběnice,rozc.Jiřín", + "avgLatitude": 49.69147, + "avgLongitude": 14.681777 + }, + { + "id": "U6558", + "name": "Bystřice,Petrovice", + "avgLatitude": 49.720314, + "avgLongitude": 14.64167 + }, + { + "id": "U6559", + "name": "Bystřice,Radošovice,rozc.", + "avgLatitude": 49.7091064, + "avgLongitude": 14.6551666 + }, + { + "id": "U6550", + "name": "Bystřice,rozc.Kobylí", + "avgLatitude": 49.68978, + "avgLongitude": 14.6978006 + }, + { + "id": "U4525", + "name": "Bystřice,rozc.Líšno", + "avgLatitude": 49.7420044, + "avgLongitude": 14.6748009 + }, + { + "id": "U6560", + "name": "Bystřice,Strženec", + "avgLatitude": 49.68244, + "avgLongitude": 14.7056322 + }, + { + "id": "U4556", + "name": "Bystřice,škola", + "avgLatitude": 49.7377357, + "avgLongitude": 14.6664362 + }, + { + "id": "U4884", + "name": "Bystřice,Tožice", + "avgLatitude": 49.7000275, + "avgLongitude": 14.6537323 + }, + { + "id": "U31510", + "name": "Bystřice,transformátor", + "avgLatitude": 50.39363, + "avgLongitude": 15.2435532 + }, + { + "id": "U4560", + "name": "Bystřice,Tvoršovice", + "avgLatitude": 49.7496719, + "avgLongitude": 14.6314707 + }, + { + "id": "U4526", + "name": "Bystřice,Tvoršovice,Rozc.I", + "avgLatitude": 49.7592239, + "avgLongitude": 14.6434307 + }, + { + "id": "U4561", + "name": "Bystřice,Tvoršovice,Rozc.II", + "avgLatitude": 49.7383881, + "avgLongitude": 14.6247034 + }, + { + "id": "U6561", + "name": "Bystřice,Vokov", + "avgLatitude": 49.74489, + "avgLongitude": 14.70135 + }, + { + "id": "U9166", + "name": "Byšice", + "avgLatitude": 50.3109665, + "avgLongitude": 14.6065512 + }, + { + "id": "U2975", + "name": "Byšice", + "avgLatitude": 50.3057365, + "avgLongitude": 14.6038275 + }, + { + "id": "U9168", + "name": "Byšice,pošta", + "avgLatitude": 50.3097343, + "avgLongitude": 14.6108751 + }, + { + "id": "U9167", + "name": "Byšice,Škola", + "avgLatitude": 50.312542, + "avgLongitude": 14.6122141 + }, + { + "id": "U9816", + "name": "Bzová", + "avgLatitude": 49.8978844, + "avgLongitude": 13.8619728 + }, + { + "id": "U9611", + "name": "Bzová,Bezovka", + "avgLatitude": 49.8969879, + "avgLongitude": 13.8679924 + }, + { + "id": "U57", + "name": "Cementárna Radotín", + "avgLatitude": 49.9940948, + "avgLongitude": 14.3425608 + }, + { + "id": "U890", + "name": "Centrum Zahradní Město", + "avgLatitude": 50.0563774, + "avgLongitude": 14.50688 + }, + { + "id": "U2870", + "name": "Cerhenice", + "avgLatitude": 50.0752029, + "avgLongitude": 15.077034 + }, + { + "id": "U9581", + "name": "Cerhenice,Cerhýnky", + "avgLatitude": 50.0676651, + "avgLongitude": 15.0530882 + }, + { + "id": "U9582", + "name": "Cerhenice,Náměstí Míru", + "avgLatitude": 50.07145, + "avgLongitude": 15.0721531 + }, + { + "id": "U9583", + "name": "Cerhenice,Škola", + "avgLatitude": 50.071167, + "avgLongitude": 15.0674458 + }, + { + "id": "U4616", + "name": "Cerhovice", + "avgLatitude": 49.8363342, + "avgLongitude": 13.8370867 + }, + { + "id": "U7349", + "name": "Cerhovice,hřbitov", + "avgLatitude": 49.8473663, + "avgLongitude": 13.83618 + }, + { + "id": "U7348", + "name": "Cerhovice,nám.", + "avgLatitude": 49.849926, + "avgLongitude": 13.835165 + }, + { + "id": "U7350", + "name": "Cerhovice,škola", + "avgLatitude": 49.8509674, + "avgLongitude": 13.8298664 + }, + { + "id": "U7351", + "name": "Cerhovice,Třenice", + "avgLatitude": 49.858242, + "avgLongitude": 13.8280153 + }, + { + "id": "U31171", + "name": "Cetenov,Hrubý Lesnov", + "avgLatitude": 50.648922, + "avgLongitude": 14.92783 + }, + { + "id": "U31170", + "name": "Cetenov,Vystrkov", + "avgLatitude": 50.6416969, + "avgLongitude": 14.9204273 + }, + { + "id": "U7061", + "name": "Cetyně", + "avgLatitude": 49.5999146, + "avgLongitude": 14.1211319 + }, + { + "id": "U59", + "name": "Cikánka", + "avgLatitude": 49.99745, + "avgLongitude": 14.3226252 + }, + { + "id": "U60", + "name": "Cílkova", + "avgLatitude": 50.0165024, + "avgLongitude": 14.4433088 + }, + { + "id": "U61", + "name": "Ciolkovského", + "avgLatitude": 50.0879364, + "avgLongitude": 14.3068924 + }, + { + "id": "U9368", + "name": "Církvice", + "avgLatitude": 49.942482, + "avgLongitude": 15.32909 + }, + { + "id": "U9975", + "name": "Církvice", + "avgLatitude": 49.9097443, + "avgLongitude": 15.0160236 + }, + { + "id": "U7413", + "name": "Církvice,Jakub", + "avgLatitude": 49.9536858, + "avgLongitude": 15.338419 + }, + { + "id": "U7414", + "name": "Církvice,Jakub,u hřiště", + "avgLatitude": 49.9481544, + "avgLongitude": 15.3401356 + }, + { + "id": "U2993", + "name": "Císařská louka", + "avgLatitude": 50.06454, + "avgLongitude": 14.413002 + }, + { + "id": "U32072", + "name": "Cítoliby", + "avgLatitude": 50.33411, + "avgLongitude": 13.8113918 + }, + { + "id": "U32071", + "name": "Cítoliby,škola", + "avgLatitude": 50.3299561, + "avgLongitude": 13.8122921 + }, + { + "id": "U4441", + "name": "Cítov", + "avgLatitude": 50.3716125, + "avgLongitude": 14.3992062 + }, + { + "id": "U2988", + "name": "Cítov", + "avgLatitude": 50.366394, + "avgLongitude": 14.4187832 + }, + { + "id": "U4726", + "name": "Cítov,Beřkovická", + "avgLatitude": 50.3715324, + "avgLongitude": 14.404542 + }, + { + "id": "U4440", + "name": "Cítov,Daminěves", + "avgLatitude": 50.3602371, + "avgLongitude": 14.3860493 + }, + { + "id": "U5945", + "name": "Cítov,Mělnická", + "avgLatitude": 50.36987, + "avgLongitude": 14.4074059 + }, + { + "id": "U4728", + "name": "Cítov,Roudnická", + "avgLatitude": 50.3737221, + "avgLongitude": 14.3897333 + }, + { + "id": "U1105", + "name": "Ctěnice", + "avgLatitude": 50.1455765, + "avgLongitude": 14.5572681 + }, + { + "id": "U7415", + "name": "Ctiboř", + "avgLatitude": 49.7366028, + "avgLongitude": 14.904047 + }, + { + "id": "U6236", + "name": "Ctiměřice", + "avgLatitude": 50.3783951, + "avgLongitude": 14.9956036 + }, + { + "id": "U7484", + "name": "Ctiněves", + "avgLatitude": 50.3751221, + "avgLongitude": 14.3073378 + }, + { + "id": "U4432", + "name": "Ctiněves", + "avgLatitude": 50.37837, + "avgLongitude": 14.3064194 + }, + { + "id": "U63", + "name": "Cukrovar Čakovice", + "avgLatitude": 50.15161, + "avgLongitude": 14.519001 + }, + { + "id": "U62", + "name": "Cukrovar Modřany", + "avgLatitude": 49.99906, + "avgLongitude": 14.4064159 + }, + { + "id": "U31367", + "name": "Cvikov,aut.st.", + "avgLatitude": 50.7749023, + "avgLongitude": 14.6344385 + }, + { + "id": "U32151", + "name": "Cvikov,rozc.Rousínov", + "avgLatitude": 50.7836075, + "avgLongitude": 14.6160326 + }, + { + "id": "U32152", + "name": "Cvikov,sídliště", + "avgLatitude": 50.7797241, + "avgLongitude": 14.6251678 + }, + { + "id": "U4415", + "name": "Cvrčovice,Čabárna", + "avgLatitude": 50.1801453, + "avgLongitude": 14.1390772 + }, + { + "id": "U4420", + "name": "Cvrčovice,ObÚ", + "avgLatitude": 50.1792336, + "avgLongitude": 14.15679 + }, + { + "id": "U4419", + "name": "Cvrčovice,U Taušů", + "avgLatitude": 50.18203, + "avgLongitude": 14.1552076 + }, + { + "id": "U2121", + "name": "Čachovice", + "avgLatitude": 50.27014, + "avgLongitude": 14.9486685 + }, + { + "id": "U4184", + "name": "Čachovice", + "avgLatitude": 50.2724876, + "avgLongitude": 14.949008 + }, + { + "id": "U1289", + "name": "Čachovice,Struhy", + "avgLatitude": 50.287014, + "avgLongitude": 14.9342871 + }, + { + "id": "U1967", + "name": "Čachovice,Struhy,Hostinec", + "avgLatitude": 50.28413, + "avgLongitude": 14.9398174 + }, + { + "id": "U7416", + "name": "Čakov", + "avgLatitude": 49.8257141, + "avgLongitude": 14.8362274 + }, + { + "id": "U5731", + "name": "Čakov,rozc.Zálesí", + "avgLatitude": 49.8097839, + "avgLongitude": 14.82045 + }, + { + "id": "U7417", + "name": "Čakov,Tatouňovice", + "avgLatitude": 49.8203354, + "avgLongitude": 14.836134 + }, + { + "id": "U7418", + "name": "Čakov,Vlkov", + "avgLatitude": 49.8132, + "avgLongitude": 14.832242 + }, + { + "id": "U64", + "name": "Čakovice", + "avgLatitude": 50.1514359, + "avgLongitude": 14.5303869 + }, + { + "id": "U65", + "name": "Čakovická", + "avgLatitude": 50.1190758, + "avgLongitude": 14.5187263 + }, + { + "id": "U791", + "name": "Čakovický zámek", + "avgLatitude": 50.1516838, + "avgLongitude": 14.5215168 + }, + { + "id": "U1301", + "name": "Čakovičky", + "avgLatitude": 50.23186, + "avgLongitude": 14.5297976 + }, + { + "id": "U9370", + "name": "Čáslav", + "avgLatitude": 49.91533, + "avgLongitude": 15.3946838 + }, + { + "id": "U7320", + "name": "Čáslav,aut.st.", + "avgLatitude": 49.9119949, + "avgLongitude": 15.3967285 + }, + { + "id": "U7328", + "name": "Čáslav,B.Smetany", + "avgLatitude": 49.9058228, + "avgLongitude": 15.3976479 + }, + { + "id": "U7327", + "name": "Čáslav,Balkán", + "avgLatitude": 49.917305, + "avgLongitude": 15.3888912 + }, + { + "id": "U7322", + "name": "Čáslav,Budín", + "avgLatitude": 49.9207573, + "avgLongitude": 15.38323 + }, + { + "id": "U7231", + "name": "Čáslav,Filipov", + "avgLatitude": 49.9000473, + "avgLongitude": 15.4224739 + }, + { + "id": "U7232", + "name": "Čáslav,Filipov,VÚ", + "avgLatitude": 49.9022141, + "avgLongitude": 15.4145746 + }, + { + "id": "U5897", + "name": "Čáslav,Hudební škola", + "avgLatitude": 49.90687, + "avgLongitude": 15.39656 + }, + { + "id": "U7068", + "name": "Čáslav,Chrudimská", + "avgLatitude": 49.91246, + "avgLongitude": 15.4030514 + }, + { + "id": "U7325", + "name": "Čáslav,Kalabousek", + "avgLatitude": 49.9283676, + "avgLongitude": 15.3649464 + }, + { + "id": "U6973", + "name": "Čáslav,nem.", + "avgLatitude": 49.9047546, + "avgLongitude": 15.39945 + }, + { + "id": "U7233", + "name": "Čáslav,obchodní centrum", + "avgLatitude": 49.90264, + "avgLongitude": 15.4046564 + }, + { + "id": "U7326", + "name": "Čáslav,Pražská", + "avgLatitude": 49.91952, + "avgLongitude": 15.3844414 + }, + { + "id": "U7329", + "name": "Čáslav,U Čápa", + "avgLatitude": 49.9063873, + "avgLongitude": 15.3859749 + }, + { + "id": "U7330", + "name": "Čáslav,u hřbitova", + "avgLatitude": 49.92297, + "avgLongitude": 15.3859215 + }, + { + "id": "U7319", + "name": "Čáslav,u mostu", + "avgLatitude": 49.9118958, + "avgLongitude": 15.3871918 + }, + { + "id": "U7195", + "name": "Čáslav,Vrcha", + "avgLatitude": 49.9331131, + "avgLongitude": 15.4211855 + }, + { + "id": "U7316", + "name": "Čáslav,Za Rybníkem", + "avgLatitude": 49.9104, + "avgLongitude": 15.386549 + }, + { + "id": "U7323", + "name": "Čáslav,Zahradní", + "avgLatitude": 49.90431, + "avgLongitude": 15.3896828 + }, + { + "id": "U7331", + "name": "Čáslav,zem.škola", + "avgLatitude": 49.9034233, + "avgLongitude": 15.3925791 + }, + { + "id": "U7324", + "name": "Čáslav,Žacká", + "avgLatitude": 49.9089127, + "avgLongitude": 15.3872557 + }, + { + "id": "U31554", + "name": "Čáslavsko", + "avgLatitude": 49.59219, + "avgLongitude": 15.0043859 + }, + { + "id": "U9169", + "name": "Čečelice", + "avgLatitude": 50.29422, + "avgLongitude": 14.617466 + }, + { + "id": "U1006", + "name": "Čechova čtvrť", + "avgLatitude": 50.0022125, + "avgLongitude": 14.4101772 + }, + { + "id": "U66", + "name": "Čechova škola", + "avgLatitude": 50.1171837, + "avgLongitude": 14.4234257 + }, + { + "id": "U67", + "name": "Čechovo náměstí", + "avgLatitude": 50.0680351, + "avgLongitude": 14.4589148 + }, + { + "id": "U7419", + "name": "Čechtice", + "avgLatitude": 49.62317, + "avgLongitude": 15.0487318 + }, + { + "id": "U7422", + "name": "Čechtice,Černičí", + "avgLatitude": 49.61991, + "avgLongitude": 15.0751171 + }, + { + "id": "U7423", + "name": "Čechtice,Dobříkovice", + "avgLatitude": 49.6258469, + "avgLongitude": 14.9723721 + }, + { + "id": "U7424", + "name": "Čechtice,Jeníkov", + "avgLatitude": 49.6270752, + "avgLongitude": 14.9997578 + }, + { + "id": "U7425", + "name": "Čechtice,Malá Paseka", + "avgLatitude": 49.6051826, + "avgLongitude": 15.0589151 + }, + { + "id": "U7426", + "name": "Čechtice,Nakvasovice", + "avgLatitude": 49.62387, + "avgLongitude": 14.9887028 + }, + { + "id": "U7427", + "name": "Čechtice,Otročice", + "avgLatitude": 49.64276, + "avgLongitude": 15.0361767 + }, + { + "id": "U7428", + "name": "Čechtice,Otročice,rozc.", + "avgLatitude": 49.63744, + "avgLongitude": 15.02516 + }, + { + "id": "U7421", + "name": "Čechtice,prodejna", + "avgLatitude": 49.6247635, + "avgLongitude": 15.0478382 + }, + { + "id": "U7429", + "name": "Čechtice,Staré Práchňany", + "avgLatitude": 49.6023026, + "avgLongitude": 15.0178814 + }, + { + "id": "U7420", + "name": "Čechtice,škola", + "avgLatitude": 49.6247177, + "avgLongitude": 15.0455046 + }, + { + "id": "U857", + "name": "Čechtická", + "avgLatitude": 50.02092, + "avgLongitude": 14.4448423 + }, + { + "id": "U68", + "name": "Čechův most", + "avgLatitude": 50.0940552, + "avgLongitude": 14.4172878 + }, + { + "id": "U7278", + "name": "Čejkovice", + "avgLatitude": 49.79232, + "avgLongitude": 15.3495855 + }, + { + "id": "U2349", + "name": "Čelákovice", + "avgLatitude": 50.1579781, + "avgLongitude": 14.754262 + }, + { + "id": "U2210", + "name": "Čelákovice zast.", + "avgLatitude": 50.1598, + "avgLongitude": 14.7354794 + }, + { + "id": "U4292", + "name": "Čelákovice,Jiřinská", + "avgLatitude": 50.1630173, + "avgLongitude": 14.757555 + }, + { + "id": "U2213", + "name": "Čelákovice,Nám.", + "avgLatitude": 50.162838, + "avgLongitude": 14.75013 + }, + { + "id": "U2442", + "name": "Čelákovice,Rozc.Sedlčánky", + "avgLatitude": 50.1625824, + "avgLongitude": 14.7869415 + }, + { + "id": "U2211", + "name": "Čelákovice,Rumunská", + "avgLatitude": 50.1606178, + "avgLongitude": 14.744132 + }, + { + "id": "U2446", + "name": "Čelákovice,Sedlčánky", + "avgLatitude": 50.1679649, + "avgLongitude": 14.7872181 + }, + { + "id": "U4179", + "name": "Čelákovice,Toušeňská", + "avgLatitude": 50.1559448, + "avgLongitude": 14.7443838 + }, + { + "id": "U2441", + "name": "Čelákovice,U Hájku", + "avgLatitude": 50.1644135, + "avgLongitude": 14.7667894 + }, + { + "id": "U2351", + "name": "Čelákovice,Záluží", + "avgLatitude": 50.1441956, + "avgLongitude": 14.74551 + }, + { + "id": "U2350", + "name": "Čelákovice,Záluží,Cihelna", + "avgLatitude": 50.1501541, + "avgLongitude": 14.7484875 + }, + { + "id": "U2214", + "name": "Čelákovice-Jiřina", + "avgLatitude": 50.1675568, + "avgLongitude": 14.7653732 + }, + { + "id": "U9795", + "name": "Čenkov", + "avgLatitude": 49.7727356, + "avgLongitude": 14.0051365 + }, + { + "id": "U9796", + "name": "Čenkov,U Kříže", + "avgLatitude": 49.77677, + "avgLongitude": 13.9995146 + }, + { + "id": "U9794", + "name": "Čenkov,Záv.", + "avgLatitude": 49.7757225, + "avgLongitude": 14.0069351 + }, + { + "id": "U1383", + "name": "Čerčany", + "avgLatitude": 49.8508, + "avgLongitude": 14.7017536 + }, + { + "id": "U7430", + "name": "Čerčany,ke hřbitovu", + "avgLatitude": 49.847374, + "avgLongitude": 14.7102222 + }, + { + "id": "U7431", + "name": "Čerčany,Vysoká Lhota", + "avgLatitude": 49.8584671, + "avgLongitude": 14.6994514 + }, + { + "id": "U2081", + "name": "Černé Voděrady", + "avgLatitude": 49.94031, + "avgLongitude": 14.80708 + }, + { + "id": "U2079", + "name": "Černé Voděrady,Chaloupky", + "avgLatitude": 49.9449768, + "avgLongitude": 14.8100166 + }, + { + "id": "U2080", + "name": "Černé Voděrady,ObÚ", + "avgLatitude": 49.94207, + "avgLongitude": 14.8071861 + }, + { + "id": "U1387", + "name": "Černická", + "avgLatitude": 50.08015, + "avgLongitude": 14.5059843 + }, + { + "id": "U2422", + "name": "Černíky", + "avgLatitude": 50.10223, + "avgLongitude": 14.8197117 + }, + { + "id": "U69", + "name": "Černínova", + "avgLatitude": 50.0889664, + "avgLongitude": 14.4617043 + }, + { + "id": "U9434", + "name": "Černíny", + "avgLatitude": 49.8409348, + "avgLongitude": 15.2162046 + }, + { + "id": "U7065", + "name": "Černíny,Zdeslavice", + "avgLatitude": 49.8262024, + "avgLongitude": 15.2335663 + }, + { + "id": "U1858", + "name": "Černolice", + "avgLatitude": 49.90928, + "avgLongitude": 14.2990112 + }, + { + "id": "U1857", + "name": "Černolice,Nový Dvůr", + "avgLatitude": 49.9128876, + "avgLongitude": 14.30774 + }, + { + "id": "U1616", + "name": "Černošice", + "avgLatitude": 49.95962, + "avgLongitude": 14.3234329 + }, + { + "id": "U1622", + "name": "Černošice,Centrum Vráž", + "avgLatitude": 49.9496, + "avgLongitude": 14.31402 + }, + { + "id": "U4116", + "name": "Černošice,Javorová", + "avgLatitude": 49.9446564, + "avgLongitude": 14.3125343 + }, + { + "id": "U1617", + "name": "Černošice,Karlštejnská", + "avgLatitude": 49.95637, + "avgLongitude": 14.3116817 + }, + { + "id": "U4159", + "name": "Černošice,Kladenská", + "avgLatitude": 49.9534225, + "avgLongitude": 14.3191681 + }, + { + "id": "U2367", + "name": "Černošice,Komenského", + "avgLatitude": 49.96102, + "avgLongitude": 14.32334 + }, + { + "id": "U4276", + "name": "Černošice,Masopustní náměstí", + "avgLatitude": 49.941555, + "avgLongitude": 14.3293657 + }, + { + "id": "U2278", + "name": "Černošice,Mokropsy žel.zast.", + "avgLatitude": 49.9465179, + "avgLongitude": 14.3301172 + }, + { + "id": "U1628", + "name": "Černošice,Na Ladech", + "avgLatitude": 49.9426727, + "avgLongitude": 14.3176355 + }, + { + "id": "U1615", + "name": "Černošice,Škola", + "avgLatitude": 49.94713, + "avgLongitude": 14.3270235 + }, + { + "id": "U2566", + "name": "Černošice,U Kamenného mostu", + "avgLatitude": 49.940567, + "avgLongitude": 14.326334 + }, + { + "id": "U1623", + "name": "Černošice,U Transformátoru", + "avgLatitude": 49.9473267, + "avgLongitude": 14.30802 + }, + { + "id": "U1614", + "name": "Černošice,U Vodárny", + "avgLatitude": 49.9670258, + "avgLongitude": 14.3300133 + }, + { + "id": "U4367", + "name": "Černouček", + "avgLatitude": 50.3610229, + "avgLongitude": 14.3072433 + }, + { + "id": "U9135", + "name": "Černuc", + "avgLatitude": 50.30105, + "avgLongitude": 14.2027531 + }, + { + "id": "U4881", + "name": "Černuc", + "avgLatitude": 50.31142, + "avgLongitude": 14.2032356 + }, + { + "id": "U9134", + "name": "Černuc,Bratkovice", + "avgLatitude": 50.28338, + "avgLongitude": 14.1909332 + }, + { + "id": "U9137", + "name": "Černuc,Miletice", + "avgLatitude": 50.3040123, + "avgLongitude": 14.2339211 + }, + { + "id": "U9138", + "name": "Černuc,Nabdín", + "avgLatitude": 50.2806168, + "avgLongitude": 14.2015934 + }, + { + "id": "U9136", + "name": "Černuc,škola", + "avgLatitude": 50.3007126, + "avgLongitude": 14.207489 + }, + { + "id": "U9139", + "name": "Černuc,u křížku", + "avgLatitude": 50.2844925, + "avgLongitude": 14.2036953 + }, + { + "id": "U71", + "name": "Černý kůň", + "avgLatitude": 50.0226173, + "avgLongitude": 14.4042006 + }, + { + "id": "U897", + "name": "Černý Most", + "avgLatitude": 50.10898, + "avgLongitude": 14.5774412 + }, + { + "id": "U3233", + "name": "Černý vrch", + "avgLatitude": 50.0683136, + "avgLongitude": 14.3873949 + }, + { + "id": "U1150", + "name": "Čertousy", + "avgLatitude": 50.1225433, + "avgLongitude": 14.6352577 + }, + { + "id": "U993", + "name": "Čertův vršek", + "avgLatitude": 50.1172333, + "avgLongitude": 14.4740524 + }, + { + "id": "U31559", + "name": "Červená Řečice", + "avgLatitude": 49.511528, + "avgLongitude": 15.1785679 + }, + { + "id": "U31560", + "name": "Červená Řečice,Zmišovice,rozc.", + "avgLatitude": 49.4969139, + "avgLongitude": 15.1794491 + }, + { + "id": "U1124", + "name": "Červeňanského", + "avgLatitude": 50.03896, + "avgLongitude": 14.33521 + }, + { + "id": "U7096", + "name": "Červené Janovice", + "avgLatitude": 49.8343658, + "avgLongitude": 15.252594 + }, + { + "id": "U7095", + "name": "Červené Janovice,Katlov", + "avgLatitude": 49.8308029, + "avgLongitude": 15.2491188 + }, + { + "id": "U7099", + "name": "Červené Janovice,Lány", + "avgLatitude": 49.84865, + "avgLongitude": 15.2873211 + }, + { + "id": "U7263", + "name": "Červené Janovice,Plhov", + "avgLatitude": 49.82601, + "avgLongitude": 15.2842751 + }, + { + "id": "U7097", + "name": "Červené Janovice,škola", + "avgLatitude": 49.8358078, + "avgLongitude": 15.2592964 + }, + { + "id": "U7312", + "name": "Červené Janovice,u hřiště", + "avgLatitude": 49.8319778, + "avgLongitude": 15.2577181 + }, + { + "id": "U7112", + "name": "Červené Janovice,Vilémovice", + "avgLatitude": 49.8452644, + "avgLongitude": 15.2706137 + }, + { + "id": "U7098", + "name": "Červené Janovice,Vilémovice,rozc.", + "avgLatitude": 49.84321, + "avgLongitude": 15.2699938 + }, + { + "id": "U7313", + "name": "Červené Janovice,Zhoř", + "avgLatitude": 49.8162537, + "avgLongitude": 15.2640476 + }, + { + "id": "U9413", + "name": "Červené Pečky", + "avgLatitude": 49.9878273, + "avgLongitude": 15.20655 + }, + { + "id": "U6679", + "name": "Červené Pečky,Amálka", + "avgLatitude": 49.9805222, + "avgLongitude": 15.2080421 + }, + { + "id": "U6949", + "name": "Červené Pečky,Bohouňovice I", + "avgLatitude": 49.97568, + "avgLongitude": 15.1809721 + }, + { + "id": "U6675", + "name": "Červené Pečky,Bojiště", + "avgLatitude": 49.9719, + "avgLongitude": 15.2017727 + }, + { + "id": "U6950", + "name": "Červené Pečky,Bořetice", + "avgLatitude": 49.969223, + "avgLongitude": 15.1699371 + }, + { + "id": "U6951", + "name": "Červené Pečky,Bořetice,U Rybníka", + "avgLatitude": 49.96681, + "avgLongitude": 15.1678734 + }, + { + "id": "U6681", + "name": "Červené Pečky,Čertovka", + "avgLatitude": 49.9794464, + "avgLongitude": 15.2343426 + }, + { + "id": "U6678", + "name": "Červené Pečky,Dobešovice", + "avgLatitude": 49.98304, + "avgLongitude": 15.1988373 + }, + { + "id": "U6680", + "name": "Červené Pečky,Dolany", + "avgLatitude": 49.9803429, + "avgLongitude": 15.2298527 + }, + { + "id": "U6674", + "name": "Červené Pečky,Horní", + "avgLatitude": 49.9750862, + "avgLongitude": 15.205657 + }, + { + "id": "U6673", + "name": "Červené Pečky,nám.", + "avgLatitude": 49.9790039, + "avgLongitude": 15.2108316 + }, + { + "id": "U6676", + "name": "Červené Pečky,Opatovice", + "avgLatitude": 49.9670029, + "avgLongitude": 15.1945457 + }, + { + "id": "U6672", + "name": "Červené Pečky,škola", + "avgLatitude": 49.9797173, + "avgLongitude": 15.2135077 + }, + { + "id": "U6449", + "name": "Červený Újezd", + "avgLatitude": 49.55589, + "avgLongitude": 14.6038494 + }, + { + "id": "U1682", + "name": "Červený Újezd", + "avgLatitude": 50.06966, + "avgLongitude": 14.1655293 + }, + { + "id": "U9501", + "name": "Červený Újezd u Votic zast.", + "avgLatitude": 49.5608521, + "avgLongitude": 14.6134815 + }, + { + "id": "U9500", + "name": "Červený Újezd,Deboreč", + "avgLatitude": 49.5756226, + "avgLongitude": 14.6080284 + }, + { + "id": "U6450", + "name": "Červený Újezd,Horní Borek", + "avgLatitude": 49.5739059, + "avgLongitude": 14.6330051 + }, + { + "id": "U6451", + "name": "Červený Újezd,Milhostice", + "avgLatitude": 49.5486946, + "avgLongitude": 14.6115246 + }, + { + "id": "U6453", + "name": "Červený Újezd,Nové Dvory", + "avgLatitude": 49.56524, + "avgLongitude": 14.60482 + }, + { + "id": "U6455", + "name": "Červený Újezd,rozc.Řikov", + "avgLatitude": 49.5726242, + "avgLongitude": 14.6046772 + }, + { + "id": "U6454", + "name": "Červený Újezd,Zátiší", + "avgLatitude": 49.57338, + "avgLongitude": 14.613739 + }, + { + "id": "U73", + "name": "Červený Vrch", + "avgLatitude": 50.0968323, + "avgLongitude": 14.3526421 + }, + { + "id": "U31354", + "name": "Česká Lípa,aut.nádr.", + "avgLatitude": 50.67752, + "avgLongitude": 14.5356817 + }, + { + "id": "U31355", + "name": "Česká Lípa,Borská", + "avgLatitude": 50.69467, + "avgLongitude": 14.5413189 + }, + { + "id": "U31356", + "name": "Česká Lípa,Častolovice,rozc.", + "avgLatitude": 50.7165146, + "avgLongitude": 14.5452633 + }, + { + "id": "U32150", + "name": "Česká Lípa,Lada", + "avgLatitude": 50.7091637, + "avgLongitude": 14.5444126 + }, + { + "id": "U32149", + "name": "Česká Lípa,U Jezu", + "avgLatitude": 50.68304, + "avgLongitude": 14.5394268 + }, + { + "id": "U1022", + "name": "Českobrodská", + "avgLatitude": 50.0918121, + "avgLongitude": 14.5329638 + }, + { + "id": "U1170", + "name": "Českolipská", + "avgLatitude": 50.1266861, + "avgLongitude": 14.5015888 + }, + { + "id": "U2767", + "name": "Českomalínská", + "avgLatitude": 50.1046829, + "avgLongitude": 14.4034071 + }, + { + "id": "U510", + "name": "Českomoravská", + "avgLatitude": 50.1059647, + "avgLongitude": 14.4922371 + }, + { + "id": "U2269", + "name": "Český Brod", + "avgLatitude": 50.076683, + "avgLongitude": 14.8662663 + }, + { + "id": "U2270", + "name": "Český Brod,Jana Kouly", + "avgLatitude": 50.07323, + "avgLongitude": 14.863471 + }, + { + "id": "U2398", + "name": "Český Brod,Jungmannova", + "avgLatitude": 50.0722427, + "avgLongitude": 14.8582554 + }, + { + "id": "U2399", + "name": "Český Brod,Kollárova", + "avgLatitude": 50.0749359, + "avgLongitude": 14.8578024 + }, + { + "id": "U2274", + "name": "Český Brod,Liblice,Bylanská", + "avgLatitude": 50.0716324, + "avgLongitude": 14.8845043 + }, + { + "id": "U2406", + "name": "Český Brod,Liblice,Obec", + "avgLatitude": 50.0746841, + "avgLongitude": 14.8827915 + }, + { + "id": "U2405", + "name": "Český Brod,Liblice,SEŠ", + "avgLatitude": 50.07628, + "avgLongitude": 14.8799181 + }, + { + "id": "U2404", + "name": "Český Brod,Liblice,Vodárna", + "avgLatitude": 50.0784149, + "avgLongitude": 14.876646 + }, + { + "id": "U2400", + "name": "Český Brod,Muzeum", + "avgLatitude": 50.0746956, + "avgLongitude": 14.8537922 + }, + { + "id": "U1416", + "name": "Český Brod,Na Bulánce", + "avgLatitude": 50.0719833, + "avgLongitude": 14.8564463 + }, + { + "id": "U2397", + "name": "Český Brod,Nem.", + "avgLatitude": 50.0733032, + "avgLongitude": 14.8522511 + }, + { + "id": "U1417", + "name": "Český Brod,Sídliště", + "avgLatitude": 50.069603, + "avgLongitude": 14.8523006 + }, + { + "id": "U2402", + "name": "Český Brod,Štolmíř", + "avgLatitude": 50.0859451, + "avgLongitude": 14.8420963 + }, + { + "id": "U2272", + "name": "Český Brod,U Vodárny", + "avgLatitude": 50.09108, + "avgLongitude": 14.86477 + }, + { + "id": "U1418", + "name": "Český Brod,Zahrady", + "avgLatitude": 50.0578842, + "avgLongitude": 14.8468466 + }, + { + "id": "U2403", + "name": "Český Brod,Zborovská", + "avgLatitude": 50.07787, + "avgLongitude": 14.8639851 + }, + { + "id": "U31488", + "name": "Český Dub,Bohumileč", + "avgLatitude": 50.63802, + "avgLongitude": 14.9837818 + }, + { + "id": "U31174", + "name": "Český Dub,host.", + "avgLatitude": 50.6581764, + "avgLongitude": 14.9936295 + }, + { + "id": "U31173", + "name": "Český Dub,Kněžičky,rozc.0.5", + "avgLatitude": 50.659462, + "avgLongitude": 14.9830551 + }, + { + "id": "U31489", + "name": "Český Dub,Libíč", + "avgLatitude": 50.6282539, + "avgLongitude": 14.9857836 + }, + { + "id": "U31487", + "name": "Český Dub,Loukovičky", + "avgLatitude": 50.64582, + "avgLongitude": 14.9921455 + }, + { + "id": "U31175", + "name": "Český Dub,nám.", + "avgLatitude": 50.66023, + "avgLongitude": 14.9964228 + }, + { + "id": "U31486", + "name": "Český Dub,Severka", + "avgLatitude": 50.65606, + "avgLongitude": 14.991478 + }, + { + "id": "U7434", + "name": "Český Šternberk", + "avgLatitude": 49.8106155, + "avgLongitude": 14.9276209 + }, + { + "id": "U9400", + "name": "Český Šternberk", + "avgLatitude": 49.8136826, + "avgLongitude": 14.93591 + }, + { + "id": "U9401", + "name": "Český Šternberk zast.", + "avgLatitude": 49.8086357, + "avgLongitude": 14.9297028 + }, + { + "id": "U7435", + "name": "Český Šternberk,Čejkovice", + "avgLatitude": 49.80348, + "avgLongitude": 14.93759 + }, + { + "id": "U7147", + "name": "Čestín", + "avgLatitude": 49.8073235, + "avgLongitude": 15.1040106 + }, + { + "id": "U7185", + "name": "Čestín,Čábelice", + "avgLatitude": 49.781868, + "avgLongitude": 15.0476608 + }, + { + "id": "U7148", + "name": "Čestín,Čenovice", + "avgLatitude": 49.7948227, + "avgLongitude": 15.1140766 + }, + { + "id": "U7149", + "name": "Čestín,Čenovice,rozc.", + "avgLatitude": 49.79895, + "avgLongitude": 15.1081047 + }, + { + "id": "U7144", + "name": "Čestín,Čentice", + "avgLatitude": 49.8119431, + "avgLongitude": 15.087019 + }, + { + "id": "U7182", + "name": "Čestín,Kamenná Lhota", + "avgLatitude": 49.8340225, + "avgLongitude": 15.1213226 + }, + { + "id": "U7145", + "name": "Čestín,Kasanice,rozc.", + "avgLatitude": 49.80799, + "avgLongitude": 15.0819864 + }, + { + "id": "U7151", + "name": "Čestín,Kněž", + "avgLatitude": 49.7894135, + "avgLongitude": 15.0906334 + }, + { + "id": "U7150", + "name": "Čestín,Kněž,rozc.", + "avgLatitude": 49.79667, + "avgLongitude": 15.100564 + }, + { + "id": "U7143", + "name": "Čestín,Milotice", + "avgLatitude": 49.8138351, + "avgLongitude": 15.0959282 + }, + { + "id": "U7183", + "name": "Čestín,Morány", + "avgLatitude": 49.815815, + "avgLongitude": 15.119173 + }, + { + "id": "U7184", + "name": "Čestín,Polipsy", + "avgLatitude": 49.787262, + "avgLongitude": 15.0597792 + }, + { + "id": "U7146", + "name": "Čestín,u mlýna", + "avgLatitude": 49.8079872, + "avgLongitude": 15.0969334 + }, + { + "id": "U1374", + "name": "Čestlice", + "avgLatitude": 50.00173, + "avgLongitude": 14.58388 + }, + { + "id": "U2558", + "name": "Čestlice,aquapark", + "avgLatitude": 50.00759, + "avgLongitude": 14.5735664 + }, + { + "id": "U1744", + "name": "Čestlice,Lipová", + "avgLatitude": 49.9970932, + "avgLongitude": 14.5849257 + }, + { + "id": "U1373", + "name": "Čestlice,nákupní zóna", + "avgLatitude": 50.00456, + "avgLongitude": 14.57477 + }, + { + "id": "U1376", + "name": "Čestlice,Rehau", + "avgLatitude": 49.9967575, + "avgLongitude": 14.5828915 + }, + { + "id": "U1372", + "name": "Čestlice,V Oblouku", + "avgLatitude": 50.0063171, + "avgLongitude": 14.5714912 + }, + { + "id": "U1375", + "name": "Čestlice,zábavní park", + "avgLatitude": 50.000267, + "avgLongitude": 14.5774508 + }, + { + "id": "U4402", + "name": "Číčovice,Malé Číčovice", + "avgLatitude": 50.15686, + "avgLongitude": 14.2491207 + }, + { + "id": "U4401", + "name": "Číčovice,Velké Číčovice", + "avgLatitude": 50.15436, + "avgLongitude": 14.24082 + }, + { + "id": "U31565", + "name": "Číhošť,Hlohov", + "avgLatitude": 49.7628632, + "avgLongitude": 15.3057518 + }, + { + "id": "U2119", + "name": "Čilec", + "avgLatitude": 50.2192154, + "avgLongitude": 14.9823875 + }, + { + "id": "U2526", + "name": "Čím", + "avgLatitude": 49.7797928, + "avgLongitude": 14.3767815 + }, + { + "id": "U2525", + "name": "Čím,Hrdlička", + "avgLatitude": 49.78311, + "avgLongitude": 14.3856392 + }, + { + "id": "U32235", + "name": "Čimelice", + "avgLatitude": 49.47034, + "avgLongitude": 14.0766783 + }, + { + "id": "U31569", + "name": "Čimelice,nám.", + "avgLatitude": 49.465004, + "avgLongitude": 14.0687351 + }, + { + "id": "U74", + "name": "Čimice", + "avgLatitude": 50.14081, + "avgLongitude": 14.4306583 + }, + { + "id": "U544", + "name": "Čimický háj", + "avgLatitude": 50.127327, + "avgLongitude": 14.4356089 + }, + { + "id": "U6946", + "name": "Činěves", + "avgLatitude": 50.2267227, + "avgLongitude": 15.21692 + }, + { + "id": "U6701", + "name": "Činěves,u kovárny", + "avgLatitude": 50.23063, + "avgLongitude": 15.2137871 + }, + { + "id": "U162", + "name": "Čínská", + "avgLatitude": 50.10898, + "avgLongitude": 14.3943043 + }, + { + "id": "U1728", + "name": "Čisovice", + "avgLatitude": 49.86355, + "avgLongitude": 14.3157005 + }, + { + "id": "U1750", + "name": "Čisovice", + "avgLatitude": 49.8581734, + "avgLongitude": 14.3197994 + }, + { + "id": "U1725", + "name": "Čisovice,Bojov", + "avgLatitude": 49.8716278, + "avgLongitude": 14.34841 + }, + { + "id": "U1726", + "name": "Čisovice,Bojov,Višňovka", + "avgLatitude": 49.8668137, + "avgLongitude": 14.33902 + }, + { + "id": "U1729", + "name": "Čisovice,Pod Horou", + "avgLatitude": 49.86348, + "avgLongitude": 14.3115549 + }, + { + "id": "U1727", + "name": "Čisovice,U Školy", + "avgLatitude": 49.86435, + "avgLongitude": 14.3210974 + }, + { + "id": "U9536", + "name": "Čistá", + "avgLatitude": 50.0329247, + "avgLongitude": 13.56862 + }, + { + "id": "U6867", + "name": "Čistá", + "avgLatitude": 50.02798, + "avgLongitude": 13.570015 + }, + { + "id": "U6158", + "name": "Čistá,Čistecký důl", + "avgLatitude": 50.4839, + "avgLongitude": 14.8284407 + }, + { + "id": "U6195", + "name": "Čistá,hlavní silnice", + "avgLatitude": 50.47433, + "avgLongitude": 14.8600044 + }, + { + "id": "U6198", + "name": "Čistá,hřiště", + "avgLatitude": 50.47521, + "avgLongitude": 14.8415051 + }, + { + "id": "U6872", + "name": "Čistá,Kůzová", + "avgLatitude": 50.0383453, + "avgLongitude": 13.5286436 + }, + { + "id": "U6874", + "name": "Čistá,Lhota", + "avgLatitude": 50.0478363, + "avgLongitude": 13.4876757 + }, + { + "id": "U6871", + "name": "Čistá,Nová Ves", + "avgLatitude": 50.04377, + "avgLongitude": 13.5208979 + }, + { + "id": "U6873", + "name": "Čistá,Nová Ves,Zelený Důl", + "avgLatitude": 50.0399323, + "avgLongitude": 13.4987478 + }, + { + "id": "U6196", + "name": "Čistá,Stránka", + "avgLatitude": 50.47385, + "avgLongitude": 14.8513279 + }, + { + "id": "U6197", + "name": "Čistá,škola", + "avgLatitude": 50.4729919, + "avgLongitude": 14.843853 + }, + { + "id": "U6876", + "name": "Čistá,zahradnictví", + "avgLatitude": 50.0236969, + "avgLongitude": 13.58851 + }, + { + "id": "U6868", + "name": "Čistá,Zdeslav", + "avgLatitude": 50.0450668, + "avgLongitude": 13.56097 + }, + { + "id": "U6870", + "name": "Čistá,Zdeslav,statek", + "avgLatitude": 50.0439873, + "avgLongitude": 13.53874 + }, + { + "id": "U9407", + "name": "Čížov", + "avgLatitude": 49.752, + "avgLongitude": 15.0486441 + }, + { + "id": "U1595", + "name": "Čtyřkoly", + "avgLatitude": 49.8686676, + "avgLongitude": 14.7143688 + }, + { + "id": "U287", + "name": "Ďáblice", + "avgLatitude": 50.148922, + "avgLongitude": 14.486578 + }, + { + "id": "U167", + "name": "Ďáblický hřbitov", + "avgLatitude": 50.13759, + "avgLongitude": 14.4787159 + }, + { + "id": "U7438", + "name": "Daleké Dušníky", + "avgLatitude": 49.72763, + "avgLongitude": 14.1827364 + }, + { + "id": "U7440", + "name": "Daleké Dušníky,Druhlice", + "avgLatitude": 49.7261658, + "avgLongitude": 14.1687183 + }, + { + "id": "U6472", + "name": "Dalovice,křiž.", + "avgLatitude": 50.4240379, + "avgLongitude": 14.8783779 + }, + { + "id": "U727", + "name": "Darwinova", + "avgLatitude": 50.01081, + "avgLongitude": 14.4099588 + }, + { + "id": "U2857", + "name": "Davle", + "avgLatitude": 49.8877525, + "avgLongitude": 14.3988876 + }, + { + "id": "U1763", + "name": "Davle,Na Javorce", + "avgLatitude": 49.8967743, + "avgLongitude": 14.3998661 + }, + { + "id": "U1764", + "name": "Davle,Obec", + "avgLatitude": 49.8904152, + "avgLongitude": 14.3991385 + }, + { + "id": "U1761", + "name": "Davle,Pod Račany", + "avgLatitude": 49.8914948, + "avgLongitude": 14.3907652 + }, + { + "id": "U4279", + "name": "Davle,Portus", + "avgLatitude": 49.8757324, + "avgLongitude": 14.3908644 + }, + { + "id": "U1354", + "name": "Davle,Sázava", + "avgLatitude": 49.8857956, + "avgLongitude": 14.39698 + }, + { + "id": "U1355", + "name": "Davle,Sázava,Třešňovka", + "avgLatitude": 49.884758, + "avgLongitude": 14.4023924 + }, + { + "id": "U1760", + "name": "Davle,Sloup", + "avgLatitude": 49.8884048, + "avgLongitude": 14.3746986 + }, + { + "id": "U2560", + "name": "Davle,Sloup,U Jeřábu", + "avgLatitude": 49.8906746, + "avgLongitude": 14.37676 + }, + { + "id": "U2489", + "name": "Davle,U Kiliána", + "avgLatitude": 49.87979, + "avgLongitude": 14.3891058 + }, + { + "id": "U1762", + "name": "Davle,U Pomníku", + "avgLatitude": 49.8923035, + "avgLongitude": 14.4006586 + }, + { + "id": "U554", + "name": "Dědina", + "avgLatitude": 50.08981, + "avgLongitude": 14.3014431 + }, + { + "id": "U1032", + "name": "Dědinova", + "avgLatitude": 50.03391, + "avgLongitude": 14.4835253 + }, + { + "id": "U3223", + "name": "Dehtínská", + "avgLatitude": 49.97665, + "avgLongitude": 14.3447866 + }, + { + "id": "U321", + "name": "Dejvická", + "avgLatitude": 50.1009, + "avgLongitude": 14.393199 + }, + { + "id": "U664", + "name": "Děkanka", + "avgLatitude": 50.0533447, + "avgLongitude": 14.4309692 + }, + { + "id": "U7441", + "name": "Děkanovice", + "avgLatitude": 49.6183243, + "avgLongitude": 15.1511364 + }, + { + "id": "U6825", + "name": "Děkov", + "avgLatitude": 50.1724663, + "avgLongitude": 13.5556736 + }, + { + "id": "U6826", + "name": "Děkov,jednota", + "avgLatitude": 50.171875, + "avgLongitude": 13.5540571 + }, + { + "id": "U6824", + "name": "Děkov,Nová Ves", + "avgLatitude": 50.1723137, + "avgLongitude": 13.5685263 + }, + { + "id": "U6823", + "name": "Děkov,Nová Ves,rozc.", + "avgLatitude": 50.1609268, + "avgLongitude": 13.5718517 + }, + { + "id": "U6827", + "name": "Děkov,Vlkov", + "avgLatitude": 50.18452, + "avgLongitude": 13.5660267 + }, + { + "id": "U81", + "name": "Dělnická", + "avgLatitude": 50.1031456, + "avgLongitude": 14.4499283 + }, + { + "id": "U2757", + "name": "Dělostřelecká", + "avgLatitude": 50.0965347, + "avgLongitude": 14.3878326 + }, + { + "id": "U9729", + "name": "Delta", + "avgLatitude": 50.0471878, + "avgLongitude": 14.4574938 + }, + { + "id": "U1071", + "name": "Depo Hostivař", + "avgLatitude": 50.07664, + "avgLongitude": 14.5167828 + }, + { + "id": "U79", + "name": "Depo Kačerov", + "avgLatitude": 50.0456543, + "avgLongitude": 14.4705153 + }, + { + "id": "U1142", + "name": "Depo Zličín", + "avgLatitude": 50.0533, + "avgLongitude": 14.2777481 + }, + { + "id": "U6001", + "name": "Dercsenyiho", + "avgLatitude": 50.0922241, + "avgLongitude": 14.5799522 + }, + { + "id": "U31295", + "name": "Desná,centrum", + "avgLatitude": 50.7565231, + "avgLongitude": 15.3139381 + }, + { + "id": "U31294", + "name": "Desná,odb.", + "avgLatitude": 50.765377, + "avgLongitude": 15.3355465 + }, + { + "id": "U31293", + "name": "Desná,Sklář", + "avgLatitude": 50.7623444, + "avgLongitude": 15.32172 + }, + { + "id": "U9519", + "name": "Deštnice", + "avgLatitude": 50.2256851, + "avgLongitude": 13.6061974 + }, + { + "id": "U32199", + "name": "Deštnice", + "avgLatitude": 50.2314835, + "avgLongitude": 13.609477 + }, + { + "id": "U32231", + "name": "Deštnice,Nová Hospoda rozc.", + "avgLatitude": 50.2169876, + "avgLongitude": 13.5881481 + }, + { + "id": "U31988", + "name": "Deštnice,rozc.1.0", + "avgLatitude": 50.23462, + "avgLongitude": 13.5885391 + }, + { + "id": "U31989", + "name": "Deštnice,rozc.Sádek", + "avgLatitude": 50.2436447, + "avgLongitude": 13.576664 + }, + { + "id": "U31571", + "name": "Dětenice,Brodek", + "avgLatitude": 50.355278, + "avgLongitude": 15.166379 + }, + { + "id": "U31131", + "name": "Dětenice,náves", + "avgLatitude": 50.3676071, + "avgLongitude": 15.1699409 + }, + { + "id": "U31132", + "name": "Dětenice,Osenice", + "avgLatitude": 50.3710175, + "avgLongitude": 15.1574078 + }, + { + "id": "U955", + "name": "Dětská nemocnice Karlov", + "avgLatitude": 50.07078, + "avgLongitude": 14.4285545 + }, + { + "id": "U1407", + "name": "Diskařská", + "avgLatitude": 50.07919, + "avgLongitude": 14.3816338 + }, + { + "id": "U308", + "name": "Divadlo Gong", + "avgLatitude": 50.1066666, + "avgLongitude": 14.4883442 + }, + { + "id": "U862", + "name": "Divadlo Horní Počernice", + "avgLatitude": 50.11685, + "avgLongitude": 14.6217928 + }, + { + "id": "U83", + "name": "Divadlo Na Fidlovačce", + "avgLatitude": 50.06474, + "avgLongitude": 14.4367085 + }, + { + "id": "U272", + "name": "Divadlo pod Palmovkou", + "avgLatitude": 50.10566, + "avgLongitude": 14.4727526 + }, + { + "id": "U84", + "name": "Dívčí hrady", + "avgLatitude": 50.0558739, + "avgLongitude": 14.398509 + }, + { + "id": "U7443", + "name": "Divišov,Benešovská", + "avgLatitude": 49.7902145, + "avgLongitude": 14.8721848 + }, + { + "id": "U7454", + "name": "Divišov,Brtnice", + "avgLatitude": 49.7988434, + "avgLongitude": 14.92444 + }, + { + "id": "U7452", + "name": "Divišov,Dolany", + "avgLatitude": 49.78887, + "avgLongitude": 14.9313021 + }, + { + "id": "U7445", + "name": "Divišov,koupaliště", + "avgLatitude": 49.7844772, + "avgLongitude": 14.8773928 + }, + { + "id": "U7449", + "name": "Divišov,Lbosín,rozc.", + "avgLatitude": 49.787178, + "avgLongitude": 14.8374128 + }, + { + "id": "U7450", + "name": "Divišov,Měchnov,rozc.", + "avgLatitude": 49.8006, + "avgLongitude": 14.8980274 + }, + { + "id": "U7444", + "name": "Divišov,nám.", + "avgLatitude": 49.7882767, + "avgLongitude": 14.87628 + }, + { + "id": "U7451", + "name": "Divišov,Radonice", + "avgLatitude": 49.78515, + "avgLongitude": 14.9408092 + }, + { + "id": "U7447", + "name": "Divišov,rozc.Dalovy", + "avgLatitude": 49.78787, + "avgLongitude": 14.8521214 + }, + { + "id": "U7448", + "name": "Divišov,rozc.Křešice", + "avgLatitude": 49.80709, + "avgLongitude": 14.86245 + }, + { + "id": "U7453", + "name": "Divišov,Šternov", + "avgLatitude": 49.80426, + "avgLongitude": 14.908659 + }, + { + "id": "U5920", + "name": "Divišov,Vrcha", + "avgLatitude": 49.7938957, + "avgLongitude": 14.8829079 + }, + { + "id": "U7446", + "name": "Divišov,Všechlapská", + "avgLatitude": 49.78989, + "avgLongitude": 14.8794994 + }, + { + "id": "U7455", + "name": "Divišov,Zdebuzeves", + "avgLatitude": 49.77739, + "avgLongitude": 14.95757 + }, + { + "id": "U85", + "name": "Divoká Šárka", + "avgLatitude": 50.0925446, + "avgLongitude": 14.3241663 + }, + { + "id": "U9644", + "name": "Dlouhá Lhota", + "avgLatitude": 49.72135, + "avgLongitude": 14.1185389 + }, + { + "id": "U9457", + "name": "Dlouhá Lhota", + "avgLatitude": 50.42112, + "avgLongitude": 15.0395536 + }, + { + "id": "U6155", + "name": "Dlouhá Lhota,U Křížku", + "avgLatitude": 49.7243767, + "avgLongitude": 14.1272125 + }, + { + "id": "U6280", + "name": "Dlouhá Lhota,U Lochmanů", + "avgLatitude": 50.41929, + "avgLongitude": 15.0613194 + }, + { + "id": "U6281", + "name": "Dlouhá Lhota,U Zachařů", + "avgLatitude": 50.4197731, + "avgLongitude": 15.0522766 + }, + { + "id": "U87", + "name": "Dlouhá třída", + "avgLatitude": 50.0911026, + "avgLongitude": 14.42772 + }, + { + "id": "U6721", + "name": "Dlouhopolsko", + "avgLatitude": 50.1752472, + "avgLongitude": 15.30534 + }, + { + "id": "U1351", + "name": "Do Čertous", + "avgLatitude": 50.12268, + "avgLongitude": 14.6103783 + }, + { + "id": "U2712", + "name": "Do Chuchle", + "avgLatitude": 50.0175858, + "avgLongitude": 14.3570614 + }, + { + "id": "U991", + "name": "Do Koutů", + "avgLatitude": 49.99196, + "avgLongitude": 14.4164257 + }, + { + "id": "U525", + "name": "Do Lipan", + "avgLatitude": 50.0080147, + "avgLongitude": 14.6263809 + }, + { + "id": "U410", + "name": "Do Rybníčků", + "avgLatitude": 50.14965, + "avgLongitude": 14.4452 + }, + { + "id": "U88", + "name": "Dobeška", + "avgLatitude": 50.0419, + "avgLongitude": 14.4165449 + }, + { + "id": "U89", + "name": "Dobratická", + "avgLatitude": 50.13034, + "avgLongitude": 14.5085173 + }, + { + "id": "U2311", + "name": "Dobročovice", + "avgLatitude": 50.0561943, + "avgLongitude": 14.6987257 + }, + { + "id": "U90", + "name": "Dobročovická", + "avgLatitude": 50.0733337, + "avgLongitude": 14.5049171 + }, + { + "id": "U91", + "name": "Dobronická", + "avgLatitude": 50.0110168, + "avgLongitude": 14.4719582 + }, + { + "id": "U4575", + "name": "Dobrovice", + "avgLatitude": 50.3550949, + "avgLongitude": 14.940217 + }, + { + "id": "U1171", + "name": "Dobrovice,aut.st.", + "avgLatitude": 50.36879, + "avgLongitude": 14.963686 + }, + { + "id": "U1174", + "name": "Dobrovice,Bojetice", + "avgLatitude": 50.3791275, + "avgLongitude": 14.967782 + }, + { + "id": "U6234", + "name": "Dobrovice,Holé Vrchy", + "avgLatitude": 50.39113, + "avgLongitude": 14.9791355 + }, + { + "id": "U6235", + "name": "Dobrovice,Holé Vrchy,Ctiměřická", + "avgLatitude": 50.3848038, + "avgLongitude": 14.9899731 + }, + { + "id": "U4036", + "name": "Dobrovice,Chloumek", + "avgLatitude": 50.3831444, + "avgLongitude": 14.9301949 + }, + { + "id": "U6260", + "name": "Dobrovice,Libichov", + "avgLatitude": 50.35163, + "avgLongitude": 14.9161015 + }, + { + "id": "U2316", + "name": "Dobrovice,Libichov,hl.sil.", + "avgLatitude": 50.35192, + "avgLongitude": 14.9132328 + }, + { + "id": "U4368", + "name": "Dobrovice,Sýčina", + "avgLatitude": 50.366684, + "avgLongitude": 14.9361734 + }, + { + "id": "U4032", + "name": "Dobrovice,Švermovy sady", + "avgLatitude": 50.3688736, + "avgLongitude": 14.9569454 + }, + { + "id": "U1220", + "name": "Dobrovice,Týnec", + "avgLatitude": 50.3747253, + "avgLongitude": 14.9792538 + }, + { + "id": "U6182", + "name": "Dobrovice,Úherce", + "avgLatitude": 50.36918, + "avgLongitude": 14.9879379 + }, + { + "id": "U1173", + "name": "Dobrovice,v hájku", + "avgLatitude": 50.3745422, + "avgLongitude": 14.9692574 + }, + { + "id": "U6993", + "name": "Dobrovítov", + "avgLatitude": 49.78726, + "avgLongitude": 15.3280277 + }, + { + "id": "U6992", + "name": "Dobrovítov,Dědice", + "avgLatitude": 49.78378, + "avgLongitude": 15.3036728 + }, + { + "id": "U6991", + "name": "Dobrovítov,Dědice,rozc.", + "avgLatitude": 49.7775879, + "avgLongitude": 15.3040361 + }, + { + "id": "U2133", + "name": "Dobrovíz", + "avgLatitude": 50.1146049, + "avgLongitude": 14.2168045 + }, + { + "id": "U2810", + "name": "Dobrovíz", + "avgLatitude": 50.11058, + "avgLongitude": 14.2194986 + }, + { + "id": "U4103", + "name": "Dobrovíz,Komerční zóna", + "avgLatitude": 50.1072845, + "avgLongitude": 14.2133369 + }, + { + "id": "U2124", + "name": "Dobrovíz,Obecní úřad", + "avgLatitude": 50.1137581, + "avgLongitude": 14.2191582 + }, + { + "id": "U1262", + "name": "Dobřejovice,Čestlická", + "avgLatitude": 49.9838181, + "avgLongitude": 14.5855522 + }, + { + "id": "U4250", + "name": "Dobřejovice,Jesenická", + "avgLatitude": 49.9808273, + "avgLongitude": 14.5732651 + }, + { + "id": "U7812", + "name": "Dobřejovice,Košumberk", + "avgLatitude": 49.97923, + "avgLongitude": 14.5841007 + }, + { + "id": "U1263", + "name": "Dobřejovice,Na návsi", + "avgLatitude": 49.98177, + "avgLongitude": 14.5797548 + }, + { + "id": "U9185", + "name": "Dobřeň", + "avgLatitude": 50.4784164, + "avgLongitude": 14.5576982 + }, + { + "id": "U9187", + "name": "Dobřeň,Jestřebice", + "avgLatitude": 50.46251, + "avgLongitude": 14.5708733 + }, + { + "id": "U9188", + "name": "Dobřeň,Jestřebice,Malá Jestřebice", + "avgLatitude": 50.4567337, + "avgLongitude": 14.5683079 + }, + { + "id": "U9186", + "name": "Dobřeň,na Špičáku", + "avgLatitude": 50.47175, + "avgLongitude": 14.5677395 + }, + { + "id": "U9184", + "name": "Dobřeň,Střezivojice", + "avgLatitude": 50.4910126, + "avgLongitude": 14.5569382 + }, + { + "id": "U1666", + "name": "Dobříč", + "avgLatitude": 50.0211945, + "avgLongitude": 14.2578478 + }, + { + "id": "U9385", + "name": "Dobříčkov", + "avgLatitude": 49.75262, + "avgLongitude": 14.7616148 + }, + { + "id": "U9586", + "name": "Dobřichov", + "avgLatitude": 50.07795, + "avgLongitude": 15.03204 + }, + { + "id": "U9587", + "name": "Dobřichov,U Pomníku", + "avgLatitude": 50.0790825, + "avgLongitude": 15.0318661 + }, + { + "id": "U1853", + "name": "Dobřichovice", + "avgLatitude": 49.927475, + "avgLongitude": 14.2877693 + }, + { + "id": "U1625", + "name": "Dobřichovice,Pod Vinicí", + "avgLatitude": 49.931282, + "avgLongitude": 14.2760849 + }, + { + "id": "U1852", + "name": "Dobřichovice,Pošta", + "avgLatitude": 49.92717, + "avgLongitude": 14.2746048 + }, + { + "id": "U1624", + "name": "Dobřichovice,Randova", + "avgLatitude": 49.9358368, + "avgLongitude": 14.28348 + }, + { + "id": "U1626", + "name": "Dobřichovice,rozc.Karlík", + "avgLatitude": 49.92808, + "avgLongitude": 14.27169 + }, + { + "id": "U4609", + "name": "Dobříň", + "avgLatitude": 50.4372444, + "avgLongitude": 14.2963963 + }, + { + "id": "U1850", + "name": "Dobříš", + "avgLatitude": 49.79, + "avgLongitude": 14.1831226 + }, + { + "id": "U1977", + "name": "Dobříš,Kodetka", + "avgLatitude": 49.7987556, + "avgLongitude": 14.1957245 + }, + { + "id": "U9621", + "name": "Dobříš,lom", + "avgLatitude": 49.7719154, + "avgLongitude": 14.16678 + }, + { + "id": "U1851", + "name": "Dobříš,nám.", + "avgLatitude": 49.7814865, + "avgLongitude": 14.1703978 + }, + { + "id": "U1843", + "name": "Dobříš,Průmyslová zóna", + "avgLatitude": 49.7950363, + "avgLongitude": 14.19073 + }, + { + "id": "U9622", + "name": "Dobříš,Statek", + "avgLatitude": 49.776516, + "avgLongitude": 14.1551495 + }, + { + "id": "U9623", + "name": "Dobříš,Svatá Anna", + "avgLatitude": 49.7727661, + "avgLongitude": 14.1412487 + }, + { + "id": "U6918", + "name": "Dobříš,U Pivovaru", + "avgLatitude": 49.78794, + "avgLongitude": 14.17894 + }, + { + "id": "U2860", + "name": "Dobříš,Větrník", + "avgLatitude": 49.7895737, + "avgLongitude": 14.177494 + }, + { + "id": "U31953", + "name": "Dobřív", + "avgLatitude": 49.715313, + "avgLongitude": 13.6848135 + }, + { + "id": "U31951", + "name": "Dobřív,chaty", + "avgLatitude": 49.7222748, + "avgLongitude": 13.7055588 + }, + { + "id": "U31950", + "name": "Dobřív,Melmatěj", + "avgLatitude": 49.7289352, + "avgLongitude": 13.72484 + }, + { + "id": "U31952", + "name": "Dobřív,Na Fořtovně", + "avgLatitude": 49.71779, + "avgLongitude": 13.6945858 + }, + { + "id": "U31955", + "name": "Dobřív,Pavlovsko", + "avgLatitude": 49.71808, + "avgLongitude": 13.6661816 + }, + { + "id": "U31954", + "name": "Dobřív,u hřbitova", + "avgLatitude": 49.7166519, + "avgLongitude": 13.6783943 + }, + { + "id": "U6619", + "name": "Dobšice", + "avgLatitude": 50.134285, + "avgLongitude": 15.2694817 + }, + { + "id": "U4863", + "name": "Dobšice nad Cidlinou", + "avgLatitude": 50.1400681, + "avgLongitude": 15.2636061 + }, + { + "id": "U6300", + "name": "Dobšín", + "avgLatitude": 50.4830475, + "avgLongitude": 15.11191 + }, + { + "id": "U6302", + "name": "Dobšín,Kamenice", + "avgLatitude": 50.490448, + "avgLongitude": 15.1028585 + }, + { + "id": "U6301", + "name": "Dobšín,Kamenice,křiž.", + "avgLatitude": 50.4900551, + "avgLongitude": 15.11162 + }, + { + "id": "U31426", + "name": "Doksany,škola", + "avgLatitude": 50.45172, + "avgLongitude": 14.1675072 + }, + { + "id": "U31425", + "name": "Doksany,zámek", + "avgLatitude": 50.4552078, + "avgLongitude": 14.16116 + }, + { + "id": "U9450", + "name": "Doksy", + "avgLatitude": 50.57361, + "avgLongitude": 14.6469545 + }, + { + "id": "U6147", + "name": "Doksy", + "avgLatitude": 50.1186867, + "avgLongitude": 14.0483551 + }, + { + "id": "U31041", + "name": "Doksy,aut.st.", + "avgLatitude": 50.5635757, + "avgLongitude": 14.65366 + }, + { + "id": "U31347", + "name": "Doksy,Břehyně,II", + "avgLatitude": 50.5842361, + "avgLongitude": 14.6946068 + }, + { + "id": "U31346", + "name": "Doksy,Břehyně,rybník", + "avgLatitude": 50.5753632, + "avgLongitude": 14.6922913 + }, + { + "id": "U31344", + "name": "Doksy,Lipové nám.", + "avgLatitude": 50.56756, + "avgLongitude": 14.6578312 + }, + { + "id": "U31345", + "name": "Doksy,Mimoňská", + "avgLatitude": 50.56558, + "avgLongitude": 14.6658888 + }, + { + "id": "U3370", + "name": "Doksy,rozcestí", + "avgLatitude": 50.12994, + "avgLongitude": 14.0423756 + }, + { + "id": "U31343", + "name": "Doksy,Zbyny,náves", + "avgLatitude": 50.5554, + "avgLongitude": 14.6170177 + }, + { + "id": "U31435", + "name": "Dolánky n.Ohří", + "avgLatitude": 50.47356, + "avgLongitude": 14.1652241 + }, + { + "id": "U4389", + "name": "Dolany", + "avgLatitude": 50.1158066, + "avgLongitude": 14.1492844 + }, + { + "id": "U2284", + "name": "Dolany n.Vlt.,Debrno", + "avgLatitude": 50.21711, + "avgLongitude": 14.323925 + }, + { + "id": "U2826", + "name": "Dolany nad Vltavou", + "avgLatitude": 50.2243576, + "avgLongitude": 14.348917 + }, + { + "id": "U1061", + "name": "Doležalova", + "avgLatitude": 50.10185, + "avgLongitude": 14.5702038 + }, + { + "id": "U98", + "name": "Doliny", + "avgLatitude": 50.05746, + "avgLongitude": 14.4244471 + }, + { + "id": "U4704", + "name": "Dolní Beřkovice", + "avgLatitude": 50.3920135, + "avgLongitude": 14.4518919 + }, + { + "id": "U2989", + "name": "Dolní Beřkovice", + "avgLatitude": 50.3898163, + "avgLongitude": 14.4357233 + }, + { + "id": "U4703", + "name": "Dolní Beřkovice,Cukrovar", + "avgLatitude": 50.3865967, + "avgLongitude": 14.4512749 + }, + { + "id": "U4725", + "name": "Dolní Beřkovice,Josefka", + "avgLatitude": 50.382885, + "avgLongitude": 14.4301147 + }, + { + "id": "U4724", + "name": "Dolní Beřkovice,Komenského", + "avgLatitude": 50.3916931, + "avgLongitude": 14.4445286 + }, + { + "id": "U4701", + "name": "Dolní Beřkovice,Posadovice", + "avgLatitude": 50.36634, + "avgLongitude": 14.4511213 + }, + { + "id": "U4702", + "name": "Dolní Beřkovice,Vliněves", + "avgLatitude": 50.37374, + "avgLongitude": 14.4494829 + }, + { + "id": "U9460", + "name": "Dolní Bousov", + "avgLatitude": 50.44182, + "avgLongitude": 15.1317577 + }, + { + "id": "U6297", + "name": "Dolní Bousov,Horní Bousov", + "avgLatitude": 50.461647, + "avgLongitude": 15.1155043 + }, + { + "id": "U6285", + "name": "Dolní Bousov,nám.", + "avgLatitude": 50.43869, + "avgLongitude": 15.1279011 + }, + { + "id": "U6284", + "name": "Dolní Bousov,Příhonská", + "avgLatitude": 50.4354935, + "avgLongitude": 15.1180038 + }, + { + "id": "U6293", + "name": "Dolní Bousov,rozc.Ošťovice", + "avgLatitude": 50.4598923, + "avgLongitude": 15.131834 + }, + { + "id": "U6298", + "name": "Dolní Bousov,V Lipkách", + "avgLatitude": 50.4451752, + "avgLongitude": 15.1269522 + }, + { + "id": "U6287", + "name": "Dolní Bousov,Vlčí Pole", + "avgLatitude": 50.4153671, + "avgLongitude": 15.1361084 + }, + { + "id": "U9498", + "name": "Dolní Březinka", + "avgLatitude": 49.6614151, + "avgLongitude": 15.3805723 + }, + { + "id": "U4820", + "name": "Dolní Břežany,Hradišťátko", + "avgLatitude": 49.96284, + "avgLongitude": 14.4479923 + }, + { + "id": "U1511", + "name": "Dolní Břežany,Hřiště", + "avgLatitude": 49.96128, + "avgLongitude": 14.4525127 + }, + { + "id": "U1504", + "name": "Dolní Břežany,Lhota", + "avgLatitude": 49.95618, + "avgLongitude": 14.4327755 + }, + { + "id": "U1501", + "name": "Dolní Břežany,Na kopečku", + "avgLatitude": 49.96901, + "avgLongitude": 14.4620152 + }, + { + "id": "U1510", + "name": "Dolní Břežany,Na Rovném", + "avgLatitude": 49.95851, + "avgLongitude": 14.4501629 + }, + { + "id": "U1523", + "name": "Dolní Břežany,Na Spálence", + "avgLatitude": 49.9667, + "avgLongitude": 14.440836 + }, + { + "id": "U1575", + "name": "Dolní Břežany,Nad Mlýnem", + "avgLatitude": 49.9654541, + "avgLongitude": 14.4481792 + }, + { + "id": "U1502", + "name": "Dolní Břežany,Náměstí", + "avgLatitude": 49.9641266, + "avgLongitude": 14.4590492 + }, + { + "id": "U1503", + "name": "Dolní Břežany,Obecní úřad", + "avgLatitude": 49.96324, + "avgLongitude": 14.4563313 + }, + { + "id": "U1524", + "name": "Dolní Břežany,Škola", + "avgLatitude": 49.966217, + "avgLongitude": 14.4608822 + }, + { + "id": "U1509", + "name": "Dolní Břežany,Zálepy", + "avgLatitude": 49.9484825, + "avgLongitude": 14.4111729 + }, + { + "id": "U2513", + "name": "Dolní Břežany-Jarov", + "avgLatitude": 49.947, + "avgLongitude": 14.3970776 + }, + { + "id": "U4287", + "name": "Dolní Černošice", + "avgLatitude": 49.96297, + "avgLongitude": 14.3323708 + }, + { + "id": "U7457", + "name": "Dolní Hbity", + "avgLatitude": 49.6572952, + "avgLongitude": 14.1693068 + }, + { + "id": "U7459", + "name": "Dolní Hbity,Brodce", + "avgLatitude": 49.651104, + "avgLongitude": 14.1641006 + }, + { + "id": "U7460", + "name": "Dolní Hbity,Horní Líšnice,rozc.", + "avgLatitude": 49.6452332, + "avgLongitude": 14.1552753 + }, + { + "id": "U7461", + "name": "Dolní Hbity,Jelence", + "avgLatitude": 49.6706772, + "avgLongitude": 14.1570339 + }, + { + "id": "U7462", + "name": "Dolní Hbity,Káciň", + "avgLatitude": 49.64892, + "avgLongitude": 14.1214514 + }, + { + "id": "U7641", + "name": "Dolní Hbity,Káciň,Hřibče", + "avgLatitude": 49.63995, + "avgLongitude": 14.1375408 + }, + { + "id": "U7463", + "name": "Dolní Hbity,Kaliště", + "avgLatitude": 49.64776, + "avgLongitude": 14.1881247 + }, + { + "id": "U7464", + "name": "Dolní Hbity,Luhy", + "avgLatitude": 49.6592445, + "avgLongitude": 14.1960678 + }, + { + "id": "U7465", + "name": "Dolní Hbity,Nepřejov", + "avgLatitude": 49.640892, + "avgLongitude": 14.1768608 + }, + { + "id": "U7466", + "name": "Dolní Hbity,Nepřejov,rozc.", + "avgLatitude": 49.65078, + "avgLongitude": 14.1730442 + }, + { + "id": "U7467", + "name": "Dolní Hbity,Smrčí", + "avgLatitude": 49.6569977, + "avgLongitude": 14.18556 + }, + { + "id": "U7468", + "name": "Dolní Hbity,Třtí,dolní", + "avgLatitude": 49.6559372, + "avgLongitude": 14.2218351 + }, + { + "id": "U7469", + "name": "Dolní Hbity,Třtí,horní", + "avgLatitude": 49.65881, + "avgLongitude": 14.2120495 + }, + { + "id": "U32050", + "name": "Dolní Hrachovice", + "avgLatitude": 49.4862976, + "avgLongitude": 14.7981291 + }, + { + "id": "U32049", + "name": "Dolní Hrachovice,Vaněčkův mlýn", + "avgLatitude": 49.4922829, + "avgLongitude": 14.7948561 + }, + { + "id": "U93", + "name": "Dolní Chabry", + "avgLatitude": 50.1510239, + "avgLongitude": 14.4376917 + }, + { + "id": "U4988", + "name": "Dolní Chvatliny", + "avgLatitude": 49.9807434, + "avgLongitude": 15.0681276 + }, + { + "id": "U4987", + "name": "Dolní Chvatliny,Horní Chvatliny", + "avgLatitude": 49.9748535, + "avgLongitude": 15.0574646 + }, + { + "id": "U4989", + "name": "Dolní Chvatliny,Mančice", + "avgLatitude": 49.9828262, + "avgLongitude": 15.0925875 + }, + { + "id": "U7470", + "name": "Dolní Kralovice", + "avgLatitude": 49.6442261, + "avgLongitude": 15.1783094 + }, + { + "id": "U7472", + "name": "Dolní Kralovice,Martinice", + "avgLatitude": 49.63938, + "avgLongitude": 15.2056961 + }, + { + "id": "U7475", + "name": "Dolní Kralovice,Střítež,rozc.", + "avgLatitude": 49.66171, + "avgLongitude": 15.1568575 + }, + { + "id": "U7476", + "name": "Dolní Kralovice,Zahrádčice", + "avgLatitude": 49.6586838, + "avgLongitude": 15.1944628 + }, + { + "id": "U7471", + "name": "Dolní Kralovice,záv.", + "avgLatitude": 49.6412621, + "avgLongitude": 15.1735468 + }, + { + "id": "U6344", + "name": "Dolní Krupá,pošta", + "avgLatitude": 50.5460968, + "avgLongitude": 14.8701124 + }, + { + "id": "U6345", + "name": "Dolní Krupá,u lípy", + "avgLatitude": 50.550827, + "avgLongitude": 14.85379 + }, + { + "id": "U6343", + "name": "Dolní Krupá,u mostu", + "avgLatitude": 50.5441055, + "avgLongitude": 14.8782091 + }, + { + "id": "U31007", + "name": "Dolní Lochov,hlavní silnice", + "avgLatitude": 50.45585, + "avgLongitude": 15.285202 + }, + { + "id": "U1099", + "name": "Dolní Měcholupy", + "avgLatitude": 50.05687, + "avgLongitude": 14.5618839 + }, + { + "id": "U97", + "name": "Dolní Počernice", + "avgLatitude": 50.08524, + "avgLongitude": 14.5769539 + }, + { + "id": "U31383", + "name": "Dolní Podluží,křiž.", + "avgLatitude": 50.87534, + "avgLongitude": 14.58469 + }, + { + "id": "U31384", + "name": "Dolní Podluží,škola", + "avgLatitude": 50.87971, + "avgLongitude": 14.5951242 + }, + { + "id": "U7091", + "name": "Dolní Pohleď", + "avgLatitude": 49.745842, + "avgLongitude": 15.1337709 + }, + { + "id": "U7560", + "name": "Dolní Pohleď,Měchonice", + "avgLatitude": 49.7474556, + "avgLongitude": 15.1535063 + }, + { + "id": "U7257", + "name": "Dolní Pohleď,záv.", + "avgLatitude": 49.7457733, + "avgLongitude": 15.1413927 + }, + { + "id": "U6087", + "name": "Dolní Slivno", + "avgLatitude": 50.30847, + "avgLongitude": 14.7328625 + }, + { + "id": "U6086", + "name": "Dolní Slivno,Slivínko", + "avgLatitude": 50.303318, + "avgLongitude": 14.7276888 + }, + { + "id": "U6232", + "name": "Dolní Stakory", + "avgLatitude": 50.43846, + "avgLongitude": 14.9732952 + }, + { + "id": "U370", + "name": "Dolní Šárka", + "avgLatitude": 50.1157227, + "avgLongitude": 14.3739719 + }, + { + "id": "U6062", + "name": "Dolní Zimoř", + "avgLatitude": 50.4266357, + "avgLongitude": 14.5017452 + }, + { + "id": "U6063", + "name": "Dolní Zimoř,Horní Zimoř", + "avgLatitude": 50.429657, + "avgLongitude": 14.5016041 + }, + { + "id": "U4357", + "name": "Dolnočernošická", + "avgLatitude": 49.95974, + "avgLongitude": 14.3288975 + }, + { + "id": "U936", + "name": "Dolnokrčská", + "avgLatitude": 50.0358, + "avgLongitude": 14.4423332 + }, + { + "id": "U6", + "name": "Dolnokřeslická", + "avgLatitude": 50.0242424, + "avgLongitude": 14.5606813 + }, + { + "id": "U96", + "name": "Dolnoměcholupská", + "avgLatitude": 50.06006, + "avgLongitude": 14.5577469 + }, + { + "id": "U2763", + "name": "Dolnopočernický hřbitov", + "avgLatitude": 50.0911636, + "avgLongitude": 14.5772362 + }, + { + "id": "U6638", + "name": "Dománovice", + "avgLatitude": 50.111702, + "avgLongitude": 15.3226643 + }, + { + "id": "U9389", + "name": "Domašín", + "avgLatitude": 49.7149963, + "avgLongitude": 14.8366938 + }, + { + "id": "U6273", + "name": "Domousnice", + "avgLatitude": 50.3921471, + "avgLongitude": 15.10162 + }, + { + "id": "U6292", + "name": "Domousnice,Skyšice", + "avgLatitude": 50.4213333, + "avgLongitude": 15.1065006 + }, + { + "id": "U6278", + "name": "Domousnice,žel.zast.", + "avgLatitude": 50.39717, + "avgLongitude": 15.1071434 + }, + { + "id": "U9525", + "name": "Domoušice", + "avgLatitude": 50.23298, + "avgLongitude": 13.7226124 + }, + { + "id": "U32192", + "name": "Domoušice,Solopysky", + "avgLatitude": 50.25933, + "avgLongitude": 13.7461033 + }, + { + "id": "U4130", + "name": "Domov seniorů Ďáblice", + "avgLatitude": 50.1355438, + "avgLongitude": 14.4740963 + }, + { + "id": "U1222", + "name": "Donatellova", + "avgLatitude": 50.072525, + "avgLongitude": 14.5081215 + }, + { + "id": "U99", + "name": "Donovalská", + "avgLatitude": 50.03694, + "avgLongitude": 14.5087175 + }, + { + "id": "U3245", + "name": "Dopravní hřiště Vypich", + "avgLatitude": 50.08172, + "avgLongitude": 14.3439121 + }, + { + "id": "U102", + "name": "Dostihová", + "avgLatitude": 50.01262, + "avgLongitude": 14.3949738 + }, + { + "id": "U1819", + "name": "Doubek", + "avgLatitude": 50.01693, + "avgLongitude": 14.7371216 + }, + { + "id": "U2070", + "name": "Doubravčice", + "avgLatitude": 50.0226746, + "avgLongitude": 14.7917118 + }, + { + "id": "U1423", + "name": "Doubravčice,bytovky", + "avgLatitude": 50.0230865, + "avgLongitude": 14.7957821 + }, + { + "id": "U9608", + "name": "Doubravčice,Na Číhadlech", + "avgLatitude": 50.018837, + "avgLongitude": 14.787241 + }, + { + "id": "U5954", + "name": "Doubravčice,Na Čtvrtích", + "avgLatitude": 50.02234, + "avgLongitude": 14.7834282 + }, + { + "id": "U9609", + "name": "Doubravčice,V Edenu", + "avgLatitude": 50.0151367, + "avgLongitude": 14.7830086 + }, + { + "id": "U4053", + "name": "Doubravička", + "avgLatitude": 50.39658, + "avgLongitude": 14.7763138 + }, + { + "id": "U1675", + "name": "Drahelčice", + "avgLatitude": 50.0314026, + "avgLongitude": 14.20347 + }, + { + "id": "U7477", + "name": "Drahenice", + "avgLatitude": 49.51761, + "avgLongitude": 13.9615269 + }, + { + "id": "U9678", + "name": "Drahlín", + "avgLatitude": 49.733, + "avgLongitude": 13.9639816 + }, + { + "id": "U9679", + "name": "Drahlín,Malý Drahlín", + "avgLatitude": 49.73043, + "avgLongitude": 13.9512329 + }, + { + "id": "U9677", + "name": "Drahlín,ObÚ", + "avgLatitude": 49.73233, + "avgLongitude": 13.9688644 + }, + { + "id": "U7478", + "name": "Drahňovice", + "avgLatitude": 49.8225365, + "avgLongitude": 14.9017639 + }, + { + "id": "U7436", + "name": "Drahňovice,Prak", + "avgLatitude": 49.8127975, + "avgLongitude": 14.90559 + }, + { + "id": "U9418", + "name": "Drahobudice", + "avgLatitude": 49.9366646, + "avgLongitude": 15.0626478 + }, + { + "id": "U9996", + "name": "Drahobudice,Bílkov", + "avgLatitude": 49.9381828, + "avgLongitude": 15.0867138 + }, + { + "id": "U6860", + "name": "Drahouš", + "avgLatitude": 50.08036, + "avgLongitude": 13.4763374 + }, + { + "id": "U7479", + "name": "Drásov", + "avgLatitude": 49.70276, + "avgLongitude": 14.11845 + }, + { + "id": "U7480", + "name": "Drásov,Cihelna", + "avgLatitude": 49.7043762, + "avgLongitude": 14.1003456 + }, + { + "id": "U9646", + "name": "Drásov,Skalka", + "avgLatitude": 49.70529, + "avgLongitude": 14.0889559 + }, + { + "id": "U9645", + "name": "Drásov,Skalka,letiště", + "avgLatitude": 49.71225, + "avgLongitude": 14.0999718 + }, + { + "id": "U204", + "name": "Drazdecká", + "avgLatitude": 49.9959068, + "avgLongitude": 14.5185432 + }, + { + "id": "U7482", + "name": "Drevníky", + "avgLatitude": 49.72, + "avgLongitude": 14.2771358 + }, + { + "id": "U7488", + "name": "Drevníky,Drhovce", + "avgLatitude": 49.730423, + "avgLongitude": 14.235651 + }, + { + "id": "U7489", + "name": "Drevníky,Nechalov", + "avgLatitude": 49.72702, + "avgLongitude": 14.2473593 + }, + { + "id": "U7483", + "name": "Drevníky,Slovanská Lhota,Milina", + "avgLatitude": 49.7285652, + "avgLongitude": 14.2561111 + }, + { + "id": "U7491", + "name": "Drevníky,Slovanská Lhota,rozc.", + "avgLatitude": 49.7294846, + "avgLongitude": 14.2606144 + }, + { + "id": "U1191", + "name": "Dreyerova", + "avgLatitude": 50.0363922, + "avgLongitude": 14.383009 + }, + { + "id": "U7485", + "name": "Drhovy", + "avgLatitude": 49.7391663, + "avgLongitude": 14.2316494 + }, + { + "id": "U7487", + "name": "Drhovy,Homole", + "avgLatitude": 49.7366, + "avgLongitude": 14.26466 + }, + { + "id": "U7486", + "name": "Drhovy,Nový Dvůr", + "avgLatitude": 49.7469177, + "avgLongitude": 14.223547 + }, + { + "id": "U103", + "name": "Drinopol", + "avgLatitude": 50.08394, + "avgLongitude": 14.3711348 + }, + { + "id": "U9277", + "name": "Drnek", + "avgLatitude": 50.19568, + "avgLongitude": 13.9713478 + }, + { + "id": "U9279", + "name": "Drnek,hl.sil.", + "avgLatitude": 50.2123337, + "avgLongitude": 13.9256458 + }, + { + "id": "U820", + "name": "Drobná", + "avgLatitude": 50.0728645, + "avgLongitude": 14.5562553 + }, + { + "id": "U6978", + "name": "Drobovice", + "avgLatitude": 49.88919, + "avgLongitude": 15.41212 + }, + { + "id": "U7492", + "name": "Drobovice,rozc.", + "avgLatitude": 49.8915062, + "avgLongitude": 15.4156475 + }, + { + "id": "U31572", + "name": "Droužetice", + "avgLatitude": 49.28806, + "avgLongitude": 13.8978052 + }, + { + "id": "U31573", + "name": "Droužetice,Černíkov", + "avgLatitude": 49.3026276, + "avgLongitude": 13.8948345 + }, + { + "id": "U5003", + "name": "Drozdov", + "avgLatitude": 49.8638077, + "avgLongitude": 13.8399982 + }, + { + "id": "U5004", + "name": "Drozdov,škola", + "avgLatitude": 49.8598938, + "avgLongitude": 13.8407736 + }, + { + "id": "U105", + "name": "Druhanická", + "avgLatitude": 50.07228, + "avgLongitude": 14.6528292 + }, + { + "id": "U4111", + "name": "Družec,most", + "avgLatitude": 50.1042557, + "avgLongitude": 14.0500479 + }, + { + "id": "U4114", + "name": "Družec,Na Rybárně", + "avgLatitude": 50.0887146, + "avgLongitude": 14.0336952 + }, + { + "id": "U4110", + "name": "Družec,náměstí", + "avgLatitude": 50.1029434, + "avgLongitude": 14.0456457 + }, + { + "id": "U4113", + "name": "Družec,Nový Mlýn", + "avgLatitude": 50.0934677, + "avgLongitude": 14.0380783 + }, + { + "id": "U4112", + "name": "Družec,U Rybníka", + "avgLatitude": 50.1080475, + "avgLongitude": 14.0525322 + }, + { + "id": "U927", + "name": "Družná", + "avgLatitude": 50.01217, + "avgLongitude": 14.4169846 + }, + { + "id": "U31298", + "name": "Držkov,nám.", + "avgLatitude": 50.6877441, + "avgLongitude": 15.3017635 + }, + { + "id": "U32155", + "name": "Držkov,u Rydvalů", + "avgLatitude": 50.6899033, + "avgLongitude": 15.3094139 + }, + { + "id": "U2885", + "name": "Dřetovice", + "avgLatitude": 50.18397, + "avgLongitude": 14.2092609 + }, + { + "id": "U1276", + "name": "Dřevařská", + "avgLatitude": 50.1262436, + "avgLongitude": 14.56468 + }, + { + "id": "U1822", + "name": "Dřevčice", + "avgLatitude": 50.1667328, + "avgLongitude": 14.6285563 + }, + { + "id": "U1823", + "name": "Dřevčice,Cihelna", + "avgLatitude": 50.1715622, + "avgLongitude": 14.6385574 + }, + { + "id": "U2190", + "name": "Dřevčice,Rozc.Jenštejn", + "avgLatitude": 50.1601028, + "avgLongitude": 14.6124887 + }, + { + "id": "U9222", + "name": "Dřínov", + "avgLatitude": 50.27482, + "avgLongitude": 14.0742865 + }, + { + "id": "U9223", + "name": "Dřínov,Drchkov", + "avgLatitude": 50.26553, + "avgLongitude": 14.0754976 + }, + { + "id": "U1781", + "name": "Dřínov,Náves", + "avgLatitude": 50.27365, + "avgLongitude": 14.3984146 + }, + { + "id": "U2339", + "name": "Dřínov,Stavadla", + "avgLatitude": 50.26996, + "avgLongitude": 14.3964319 + }, + { + "id": "U1780", + "name": "Dřínov,U Kříže", + "avgLatitude": 50.2775726, + "avgLongitude": 14.3958426 + }, + { + "id": "U2340", + "name": "Dřínov,U Rybníka", + "avgLatitude": 50.27428, + "avgLongitude": 14.3993835 + }, + { + "id": "U1464", + "name": "Dřísy", + "avgLatitude": 50.25641, + "avgLongitude": 14.6447439 + }, + { + "id": "U1466", + "name": "Dřísy", + "avgLatitude": 50.2427559, + "avgLongitude": 14.6344528 + }, + { + "id": "U1465", + "name": "Dřísy,U Vily", + "avgLatitude": 50.25168, + "avgLongitude": 14.6442642 + }, + { + "id": "U31046", + "name": "Dubá,aut.nádr.", + "avgLatitude": 50.5413666, + "avgLongitude": 14.5405445 + }, + { + "id": "U31056", + "name": "Dubá,Bukovec", + "avgLatitude": 50.5072975, + "avgLongitude": 14.4882736 + }, + { + "id": "U31047", + "name": "Dubá,Deštná", + "avgLatitude": 50.522934, + "avgLongitude": 14.5171871 + }, + { + "id": "U31312", + "name": "Dubá,Horky,odb.", + "avgLatitude": 50.55491, + "avgLongitude": 14.5884552 + }, + { + "id": "U31305", + "name": "Dubá,Křenov", + "avgLatitude": 50.5220261, + "avgLongitude": 14.5622654 + }, + { + "id": "U31979", + "name": "Dubá,Nedamov", + "avgLatitude": 50.5309067, + "avgLongitude": 14.5706882 + }, + { + "id": "U31981", + "name": "Dubá,Nedamov,koupaliště", + "avgLatitude": 50.5364761, + "avgLongitude": 14.5557842 + }, + { + "id": "U31980", + "name": "Dubá,Nedamov,vodárna", + "avgLatitude": 50.5306931, + "avgLongitude": 14.5631876 + }, + { + "id": "U31309", + "name": "Dubá,Nový Berštejn", + "avgLatitude": 50.55049, + "avgLongitude": 14.5435886 + }, + { + "id": "U31310", + "name": "Dubá,Nový Berštejn,střelnice", + "avgLatitude": 50.5492821, + "avgLongitude": 14.550868 + }, + { + "id": "U31307", + "name": "Dubá,Rozprechtice háj.", + "avgLatitude": 50.5299644, + "avgLongitude": 14.5455017 + }, + { + "id": "U31306", + "name": "Dubá,Rozprechtice křiž.", + "avgLatitude": 50.5259171, + "avgLongitude": 14.5480871 + }, + { + "id": "U31982", + "name": "Dubá,školka", + "avgLatitude": 50.5382462, + "avgLongitude": 14.54388 + }, + { + "id": "U31048", + "name": "Dubá,Zakšín", + "avgLatitude": 50.5194778, + "avgLongitude": 14.4980936 + }, + { + "id": "U792", + "name": "Dubeč", + "avgLatitude": 50.06182, + "avgLongitude": 14.5965328 + }, + { + "id": "U108", + "name": "Dubeček", + "avgLatitude": 50.0559921, + "avgLongitude": 14.5799427 + }, + { + "id": "U584", + "name": "Dubečská", + "avgLatitude": 50.0653572, + "avgLongitude": 14.5023518 + }, + { + "id": "U9692", + "name": "Dubečský hřbitov", + "avgLatitude": 50.0524979, + "avgLongitude": 14.5804539 + }, + { + "id": "U3357", + "name": "Dubenec", + "avgLatitude": 49.6957474, + "avgLongitude": 14.0800056 + }, + { + "id": "U7493", + "name": "Dublovice", + "avgLatitude": 49.6698837, + "avgLongitude": 14.3595419 + }, + { + "id": "U7495", + "name": "Dublovice,Břekova Lhota", + "avgLatitude": 49.6588554, + "avgLongitude": 14.3646221 + }, + { + "id": "U7498", + "name": "Dublovice,Chramosty", + "avgLatitude": 49.665802, + "avgLongitude": 14.3236513 + }, + { + "id": "U7499", + "name": "Dublovice,Líchovy", + "avgLatitude": 49.67496, + "avgLongitude": 14.320816 + }, + { + "id": "U7497", + "name": "Dublovice,Líchovy,rozc.Bučily", + "avgLatitude": 49.6760941, + "avgLongitude": 14.3089266 + }, + { + "id": "U5894", + "name": "Dublovice,Líchovy,zbrojnice", + "avgLatitude": 49.6762962, + "avgLongitude": 14.31912 + }, + { + "id": "U7500", + "name": "Dublovice,Zvírotice", + "avgLatitude": 49.6993332, + "avgLongitude": 14.3025656 + }, + { + "id": "U5874", + "name": "Dublovice,Zvírotice,Rybárna", + "avgLatitude": 49.6968536, + "avgLongitude": 14.3196888 + }, + { + "id": "U9648", + "name": "Dubno,kaplička", + "avgLatitude": 49.69551, + "avgLongitude": 14.0513992 + }, + { + "id": "U9647", + "name": "Dubno,restaurace", + "avgLatitude": 49.6973419, + "avgLongitude": 14.0532093 + }, + { + "id": "U9649", + "name": "Dubno,Učiliště", + "avgLatitude": 49.685173, + "avgLongitude": 14.0466766 + }, + { + "id": "U213", + "name": "Dukla-Juliska", + "avgLatitude": 50.1104164, + "avgLongitude": 14.3860588 + }, + { + "id": "U925", + "name": "Dunajecká", + "avgLatitude": 50.1255569, + "avgLongitude": 14.4264393 + }, + { + "id": "U7501", + "name": "Dunice", + "avgLatitude": 49.6020775, + "avgLongitude": 15.1531553 + }, + { + "id": "U109", + "name": "Důstojnické domy", + "avgLatitude": 50.12449, + "avgLongitude": 14.5321627 + }, + { + "id": "U32274", + "name": "Dušníky", + "avgLatitude": 50.42256, + "avgLongitude": 14.1927853 + }, + { + "id": "U110", + "name": "Dvorce", + "avgLatitude": 50.04695, + "avgLongitude": 14.4143572 + }, + { + "id": "U2753", + "name": "Dvorní", + "avgLatitude": 50.1475334, + "avgLongitude": 14.4483843 + }, + { + "id": "U2292", + "name": "Dvory", + "avgLatitude": 50.2116241, + "avgLongitude": 14.99604 + }, + { + "id": "U1951", + "name": "Dvory,Veleliby", + "avgLatitude": 50.21165, + "avgLongitude": 15.0215368 + }, + { + "id": "U2374", + "name": "Dvory,Veleliby,hlavní silnice", + "avgLatitude": 50.2118149, + "avgLongitude": 15.032527 + }, + { + "id": "U3239", + "name": "Dvořákova", + "avgLatitude": 50.1453, + "avgLongitude": 14.4372864 + }, + { + "id": "U6702", + "name": "Dymokury", + "avgLatitude": 50.2475624, + "avgLongitude": 15.2039137 + }, + { + "id": "U6745", + "name": "Dymokury,Černá Hora", + "avgLatitude": 50.2492065, + "avgLongitude": 15.1787319 + }, + { + "id": "U9930", + "name": "Dymokury,Na Drážce", + "avgLatitude": 50.2476959, + "avgLongitude": 15.194891 + }, + { + "id": "U6746", + "name": "Dymokury,Svídnice", + "avgLatitude": 50.2638245, + "avgLongitude": 15.1815462 + }, + { + "id": "U9932", + "name": "Dymokury,Svídnice,u trati", + "avgLatitude": 50.2681961, + "avgLongitude": 15.1921654 + }, + { + "id": "U4623", + "name": "Dymokury,žel.zast.", + "avgLatitude": 50.2545662, + "avgLongitude": 15.2162027 + }, + { + "id": "U112", + "name": "Dyrinka", + "avgLatitude": 50.10795, + "avgLongitude": 14.3747082 + }, + { + "id": "U814", + "name": "Elišky Přemyslovny", + "avgLatitude": 49.97494, + "avgLongitude": 14.3931131 + }, + { + "id": "U116", + "name": "Farkáň", + "avgLatitude": 50.0615959, + "avgLongitude": 14.3827457 + }, + { + "id": "U9802", + "name": "Felbabka", + "avgLatitude": 49.8134766, + "avgLongitude": 13.9417973 + }, + { + "id": "U5947", + "name": "Ferrariho", + "avgLatitude": 50.0416946, + "avgLongitude": 14.3047371 + }, + { + "id": "U3300", + "name": "Filadelfie", + "avgLatitude": 50.04862, + "avgLongitude": 14.4531975 + }, + { + "id": "U117", + "name": "Filmové ateliéry Barrandov", + "avgLatitude": 50.031044, + "avgLongitude": 14.3920937 + }, + { + "id": "U124", + "name": "Filosofská", + "avgLatitude": 50.02192, + "avgLongitude": 14.4282007 + }, + { + "id": "U118", + "name": "Flora", + "avgLatitude": 50.0781479, + "avgLongitude": 14.46181 + }, + { + "id": "U689", + "name": "Florenc", + "avgLatitude": 50.0906525, + "avgLongitude": 14.438921 + }, + { + "id": "U812", + "name": "Formanská", + "avgLatitude": 50.01437, + "avgLongitude": 14.5440655 + }, + { + "id": "U31447", + "name": "Frahelž", + "avgLatitude": 49.1168365, + "avgLongitude": 14.7259254 + }, + { + "id": "U120", + "name": "Frančíkova", + "avgLatitude": 50.01059, + "avgLongitude": 14.3568754 + }, + { + "id": "U1347", + "name": "Františka Veselého", + "avgLatitude": 50.12181, + "avgLongitude": 14.6215687 + }, + { + "id": "U121", + "name": "Franty Kocourka", + "avgLatitude": 50.06065, + "avgLongitude": 14.403367 + }, + { + "id": "U123", + "name": "Fruta", + "avgLatitude": 50.0434837, + "avgLongitude": 14.5815182 + }, + { + "id": "U125", + "name": "Fryčovická", + "avgLatitude": 50.13928, + "avgLongitude": 14.5049152 + }, + { + "id": "U1070", + "name": "Generála Janouška", + "avgLatitude": 50.1026344, + "avgLongitude": 14.5639257 + }, + { + "id": "U49", + "name": "Geologická", + "avgLatitude": 50.03649, + "avgLongitude": 14.387701 + }, + { + "id": "U654", + "name": "Gercenova", + "avgLatitude": 50.0502243, + "avgLongitude": 14.5435257 + }, + { + "id": "U450", + "name": "Goetheho", + "avgLatitude": 50.1074371, + "avgLongitude": 14.4040918 + }, + { + "id": "U9479", + "name": "Golčův Jeníkov", + "avgLatitude": 49.83666, + "avgLongitude": 15.4680386 + }, + { + "id": "U9360", + "name": "Golčův Jeníkov město", + "avgLatitude": 49.82168, + "avgLongitude": 15.4729977 + }, + { + "id": "U31408", + "name": "Golčův Jeníkov,nám.TGM", + "avgLatitude": 49.81595, + "avgLongitude": 15.477541 + }, + { + "id": "U31407", + "name": "Golčův Jeníkov,Ráj", + "avgLatitude": 49.82885, + "avgLongitude": 15.4695034 + }, + { + "id": "U6685", + "name": "Grunta", + "avgLatitude": 49.97423, + "avgLongitude": 15.2536678 + }, + { + "id": "U1128", + "name": "Grussova", + "avgLatitude": 50.0343742, + "avgLongitude": 14.37071 + }, + { + "id": "U128", + "name": "Habrová", + "avgLatitude": 50.087883, + "avgLongitude": 14.490859 + }, + { + "id": "U129", + "name": "Hadovitá", + "avgLatitude": 50.05153, + "avgLongitude": 14.4571495 + }, + { + "id": "U130", + "name": "Hadovka", + "avgLatitude": 50.0994873, + "avgLongitude": 14.3754292 + }, + { + "id": "U286", + "name": "Háje", + "avgLatitude": 50.0305176, + "avgLongitude": 14.5269022 + }, + { + "id": "U9658", + "name": "Háje", + "avgLatitude": 49.6739273, + "avgLongitude": 14.0451155 + }, + { + "id": "U9655", + "name": "Háje,betonárna", + "avgLatitude": 49.6742935, + "avgLongitude": 14.0576878 + }, + { + "id": "U9657", + "name": "Háje,Na Važinách", + "avgLatitude": 49.67524, + "avgLongitude": 14.04971 + }, + { + "id": "U131", + "name": "Hájek", + "avgLatitude": 50.0501022, + "avgLongitude": 14.6281071 + }, + { + "id": "U132", + "name": "Hájová", + "avgLatitude": 50.0174332, + "avgLongitude": 14.652709 + }, + { + "id": "U913", + "name": "Halenkovská", + "avgLatitude": 50.06279, + "avgLongitude": 14.2865257 + }, + { + "id": "U2796", + "name": "Hamplova", + "avgLatitude": 50.1595955, + "avgLongitude": 14.5258093 + }, + { + "id": "U133", + "name": "Hanspaulka", + "avgLatitude": 50.1046867, + "avgLongitude": 14.373024 + }, + { + "id": "U31216", + "name": "Harrachov,aut.nádr.", + "avgLatitude": 50.76964, + "avgLongitude": 15.4357738 + }, + { + "id": "U31215", + "name": "Harrachov,centrum", + "avgLatitude": 50.775177, + "avgLongitude": 15.425499 + }, + { + "id": "U31212", + "name": "Harrachov,Nový Svět,Na mýtě", + "avgLatitude": 50.76377, + "avgLongitude": 15.396801 + }, + { + "id": "U31213", + "name": "Harrachov,Nový Svět,u Motejlků", + "avgLatitude": 50.7796745, + "avgLongitude": 15.4125385 + }, + { + "id": "U31214", + "name": "Harrachov,sklárna", + "avgLatitude": 50.7811279, + "avgLongitude": 15.4193459 + }, + { + "id": "U1344", + "name": "Hasičská", + "avgLatitude": 50.07828, + "avgLongitude": 14.6036787 + }, + { + "id": "U2708", + "name": "Hasičská stanice Modřany", + "avgLatitude": 50.0059624, + "avgLongitude": 14.4399319 + }, + { + "id": "U446", + "name": "Hasova", + "avgLatitude": 50.0153656, + "avgLongitude": 14.4269867 + }, + { + "id": "U2957", + "name": "Haštalské náměstí", + "avgLatitude": 50.091, + "avgLongitude": 14.42404 + }, + { + "id": "U9419", + "name": "Hatě", + "avgLatitude": 49.9138336, + "avgLongitude": 15.0579967 + }, + { + "id": "U137", + "name": "Hejtmanská", + "avgLatitude": 50.1053429, + "avgLongitude": 14.5571194 + }, + { + "id": "U138", + "name": "Hellichova", + "avgLatitude": 50.08406, + "avgLongitude": 14.4043951 + }, + { + "id": "U139", + "name": "Hercovka", + "avgLatitude": 50.1219635, + "avgLongitude": 14.4522629 + }, + { + "id": "U1896", + "name": "Herink", + "avgLatitude": 49.9677048, + "avgLongitude": 14.575202 + }, + { + "id": "U9374", + "name": "Heřmaničky", + "avgLatitude": 49.602108, + "avgLongitude": 14.5845079 + }, + { + "id": "U6466", + "name": "Heřmaničky,Arnoštovice", + "avgLatitude": 49.61411, + "avgLongitude": 14.6035385 + }, + { + "id": "U6476", + "name": "Heřmaničky,Březina", + "avgLatitude": 49.6159325, + "avgLongitude": 14.5513687 + }, + { + "id": "U6477", + "name": "Heřmaničky,Dědkov", + "avgLatitude": 49.6198273, + "avgLongitude": 14.5434771 + }, + { + "id": "U6478", + "name": "Heřmaničky,Jestřebice", + "avgLatitude": 49.6222229, + "avgLongitude": 14.6166315 + }, + { + "id": "U6480", + "name": "Heřmaničky,Křenovičky", + "avgLatitude": 49.62245, + "avgLongitude": 14.5271168 + }, + { + "id": "U6481", + "name": "Heřmaničky,Loudilka", + "avgLatitude": 49.598278, + "avgLongitude": 14.5750065 + }, + { + "id": "U6464", + "name": "Heřmaničky,rozc.Arnoštovice", + "avgLatitude": 49.6073761, + "avgLongitude": 14.5941448 + }, + { + "id": "U6475", + "name": "Heřmaničky,rozc.Dolejší mlýn", + "avgLatitude": 49.6161957, + "avgLongitude": 14.6097946 + }, + { + "id": "U6465", + "name": "Heřmaničky,rozc.Durdice", + "avgLatitude": 49.60858, + "avgLongitude": 14.586195 + }, + { + "id": "U6479", + "name": "Heřmaničky,rozc.Karasova Lhota", + "avgLatitude": 49.60643, + "avgLongitude": 14.596508 + }, + { + "id": "U6482", + "name": "Heřmaničky,Velké Heřmanice", + "avgLatitude": 49.613, + "avgLongitude": 14.5668116 + }, + { + "id": "U31463", + "name": "Heřmanův Městec,nám.", + "avgLatitude": 49.9466248, + "avgLongitude": 15.6670752 + }, + { + "id": "U140", + "name": "Hládkov", + "avgLatitude": 50.0887, + "avgLongitude": 14.3875685 + }, + { + "id": "U32047", + "name": "Hlasivo", + "avgLatitude": 49.49569, + "avgLongitude": 14.754591 + }, + { + "id": "U32048", + "name": "Hlasivo,Hlasivko,rozc.1.0", + "avgLatitude": 49.4858551, + "avgLongitude": 14.7550383 + }, + { + "id": "U5938", + "name": "Hlásná Třebaň", + "avgLatitude": 49.9207764, + "avgLongitude": 14.1992111 + }, + { + "id": "U2377", + "name": "Hlásná Třebaň,Rovina", + "avgLatitude": 49.9234467, + "avgLongitude": 14.2279415 + }, + { + "id": "U6431", + "name": "Hlavečník", + "avgLatitude": 50.07477, + "avgLongitude": 15.4275579 + }, + { + "id": "U6430", + "name": "Hlavečník,u pomníku", + "avgLatitude": 50.0780258, + "avgLongitude": 15.4268055 + }, + { + "id": "U1468", + "name": "Hlavenec", + "avgLatitude": 50.23785, + "avgLongitude": 14.70083 + }, + { + "id": "U31168", + "name": "Hlavice,křiž.", + "avgLatitude": 50.63244, + "avgLongitude": 14.9191608 + }, + { + "id": "U31172", + "name": "Hlavice,Lesnovek", + "avgLatitude": 50.6424637, + "avgLongitude": 14.9403086 + }, + { + "id": "U31169", + "name": "Hlavice,odb.Končiny", + "avgLatitude": 50.63671, + "avgLongitude": 14.9175816 + }, + { + "id": "U31166", + "name": "Hlavice,Vápno", + "avgLatitude": 50.6250458, + "avgLongitude": 14.9164486 + }, + { + "id": "U31167", + "name": "Hlavice,Vápno,Na Písku", + "avgLatitude": 50.6214943, + "avgLongitude": 14.9196558 + }, + { + "id": "U31490", + "name": "Hlavice,ves", + "avgLatitude": 50.63219, + "avgLongitude": 14.9221115 + }, + { + "id": "U4258", + "name": "Hlávkova", + "avgLatitude": 50.0364037, + "avgLongitude": 14.3142681 + }, + { + "id": "U141", + "name": "Hlavní", + "avgLatitude": 50.04673, + "avgLongitude": 14.4869852 + }, + { + "id": "U142", + "name": "Hlavní nádraží", + "avgLatitude": 50.0840073, + "avgLongitude": 14.4347992 + }, + { + "id": "U4350", + "name": "Hleďsebe", + "avgLatitude": 50.36369, + "avgLongitude": 14.5624952 + }, + { + "id": "U9366", + "name": "Hlízov", + "avgLatitude": 49.981842, + "avgLongitude": 15.2934761 + }, + { + "id": "U6693", + "name": "Hlízov,u váhy", + "avgLatitude": 49.9877625, + "avgLongitude": 15.2966681 + }, + { + "id": "U143", + "name": "Hlohová", + "avgLatitude": 50.0563927, + "avgLongitude": 14.5021343 + }, + { + "id": "U135", + "name": "Hloubětín", + "avgLatitude": 50.1062622, + "avgLongitude": 14.5371313 + }, + { + "id": "U147", + "name": "Hlubočepy", + "avgLatitude": 50.0425224, + "avgLongitude": 14.40461 + }, + { + "id": "U9412", + "name": "Hluboký Důl", + "avgLatitude": 50.00232, + "avgLongitude": 15.2186432 + }, + { + "id": "U9672", + "name": "Hluboš", + "avgLatitude": 49.74593, + "avgLongitude": 14.0206356 + }, + { + "id": "U9670", + "name": "Hluboš,Kardavec", + "avgLatitude": 49.7288971, + "avgLongitude": 14.0140839 + }, + { + "id": "U9671", + "name": "Hluboš,Loudilka", + "avgLatitude": 49.7350159, + "avgLongitude": 14.0159168 + }, + { + "id": "U7502", + "name": "Hlubyně,dolní", + "avgLatitude": 49.5606041, + "avgLongitude": 13.9263153 + }, + { + "id": "U7503", + "name": "Hlubyně,horní", + "avgLatitude": 49.5612259, + "avgLongitude": 13.9200745 + }, + { + "id": "U31588", + "name": "Hlušice,Hlušičky", + "avgLatitude": 50.2623, + "avgLongitude": 15.3963766 + }, + { + "id": "U32229", + "name": "Hlušice,kult.dům", + "avgLatitude": 50.2619476, + "avgLongitude": 15.4041767 + }, + { + "id": "U32228", + "name": "Hlušice,škola", + "avgLatitude": 50.26184, + "avgLongitude": 15.400177 + }, + { + "id": "U113", + "name": "Hlušičkova", + "avgLatitude": 50.0638962, + "avgLongitude": 14.31611 + }, + { + "id": "U2991", + "name": "Hněvice", + "avgLatitude": 50.4533424, + "avgLongitude": 14.3612461 + }, + { + "id": "U31589", + "name": "Hněvkovice", + "avgLatitude": 49.6856155, + "avgLongitude": 15.2035542 + }, + { + "id": "U31590", + "name": "Hněvkovice,Habrovčice,rozc.", + "avgLatitude": 49.68325, + "avgLongitude": 15.2121868 + }, + { + "id": "U31591", + "name": "Hněvkovice,Chotěměřice", + "avgLatitude": 49.690094, + "avgLongitude": 15.1877337 + }, + { + "id": "U31592", + "name": "Hněvkovice,Nová Ves,rozc.1.0", + "avgLatitude": 49.6904831, + "avgLongitude": 15.1920433 + }, + { + "id": "U31593", + "name": "Hněvkovice,Ostřice rozc.1.0", + "avgLatitude": 49.68233, + "avgLongitude": 15.220088 + }, + { + "id": "U604", + "name": "Hněvkovského", + "avgLatitude": 50.0323372, + "avgLongitude": 14.5182915 + }, + { + "id": "U9153", + "name": "Hobšovice,I", + "avgLatitude": 50.270134, + "avgLongitude": 14.1618767 + }, + { + "id": "U9154", + "name": "Hobšovice,II", + "avgLatitude": 50.2725372, + "avgLongitude": 14.1640739 + }, + { + "id": "U9156", + "name": "Hobšovice,Křovice", + "avgLatitude": 50.2845, + "avgLongitude": 14.1566248 + }, + { + "id": "U9155", + "name": "Hobšovice,Křovice I", + "avgLatitude": 50.286232, + "avgLongitude": 14.15137 + }, + { + "id": "U9157", + "name": "Hobšovice,Skůry", + "avgLatitude": 50.2819328, + "avgLongitude": 14.1646576 + }, + { + "id": "U9437", + "name": "Hodkov", + "avgLatitude": 49.7857361, + "avgLongitude": 15.1638956 + }, + { + "id": "U9438", + "name": "Hodkov zast.", + "avgLatitude": 49.7778549, + "avgLongitude": 15.1543474 + }, + { + "id": "U31062", + "name": "Hodkovice n.Mohelkou,aut.nádr.", + "avgLatitude": 50.6675949, + "avgLongitude": 15.0956049 + }, + { + "id": "U1049", + "name": "Högerova", + "avgLatitude": 50.0343742, + "avgLongitude": 14.3809586 + }, + { + "id": "U148", + "name": "Holečkova", + "avgLatitude": 50.0742722, + "avgLongitude": 14.3953943 + }, + { + "id": "U31990", + "name": "Holedeč,Holedeček", + "avgLatitude": 50.28289, + "avgLongitude": 13.5602322 + }, + { + "id": "U595", + "name": "Holešovická tržnice", + "avgLatitude": 50.09829, + "avgLongitude": 14.4446716 + }, + { + "id": "U31008", + "name": "Holín,Horní Lochov", + "avgLatitude": 50.45308, + "avgLongitude": 15.2994576 + }, + { + "id": "U31009", + "name": "Holín,odb.Prachovské skály", + "avgLatitude": 50.4468536, + "avgLongitude": 15.3237562 + }, + { + "id": "U31461", + "name": "Holotín,rozc.", + "avgLatitude": 49.9511337, + "avgLongitude": 15.5829706 + }, + { + "id": "U2982", + "name": "Holoubkovská", + "avgLatitude": 50.0435753, + "avgLongitude": 14.5605049 + }, + { + "id": "U1693", + "name": "Holubice", + "avgLatitude": 50.2016754, + "avgLongitude": 14.2933512 + }, + { + "id": "U1692", + "name": "Holubice,Kozinec", + "avgLatitude": 50.19673, + "avgLongitude": 14.295023 + }, + { + "id": "U2125", + "name": "Holubice,Kozinec,Habrová", + "avgLatitude": 50.1989, + "avgLongitude": 14.2977667 + }, + { + "id": "U5002", + "name": "Holubice,Na vodotoči", + "avgLatitude": 50.20079, + "avgLongitude": 14.3005714 + }, + { + "id": "U2702", + "name": "Holyně", + "avgLatitude": 50.0270844, + "avgLongitude": 14.3580551 + }, + { + "id": "U2764", + "name": "Holýšovská", + "avgLatitude": 50.0408134, + "avgLongitude": 14.3182049 + }, + { + "id": "U7504", + "name": "Horčápsko", + "avgLatitude": 49.5843353, + "avgLongitude": 13.984663 + }, + { + "id": "U5873", + "name": "Horčápsko,Hráze", + "avgLatitude": 49.58178, + "avgLongitude": 13.97624 + }, + { + "id": "U151", + "name": "Horčičkova", + "avgLatitude": 50.03189, + "avgLongitude": 14.5340757 + }, + { + "id": "U7210", + "name": "Horka I", + "avgLatitude": 49.98228, + "avgLongitude": 15.4399281 + }, + { + "id": "U7211", + "name": "Horka I,Borek", + "avgLatitude": 49.981575, + "avgLongitude": 15.4234867 + }, + { + "id": "U7212", + "name": "Horka I,Borek,rozc.", + "avgLatitude": 49.9866676, + "avgLongitude": 15.4328527 + }, + { + "id": "U7206", + "name": "Horka I,rozc.Bojmany", + "avgLatitude": 49.969265, + "avgLongitude": 15.4357605 + }, + { + "id": "U7207", + "name": "Horka I,Svobodná Ves,dolní", + "avgLatitude": 49.9771652, + "avgLongitude": 15.4421625 + }, + { + "id": "U7209", + "name": "Horka I,Svobodná Ves,horní", + "avgLatitude": 49.9840851, + "avgLongitude": 15.4529486 + }, + { + "id": "U7208", + "name": "Horka I,Svobodná Ves,střed", + "avgLatitude": 49.9812546, + "avgLongitude": 15.4482288 + }, + { + "id": "U7256", + "name": "Horka II,Buda", + "avgLatitude": 49.7361221, + "avgLongitude": 15.1265316 + }, + { + "id": "U7254", + "name": "Horka II,Čejtice,rozc.", + "avgLatitude": 49.7131538, + "avgLongitude": 15.14669 + }, + { + "id": "U7255", + "name": "Horka II,Onšovec,rozc.", + "avgLatitude": 49.72061, + "avgLongitude": 15.1254044 + }, + { + "id": "U152", + "name": "Horky", + "avgLatitude": 50.06156, + "avgLongitude": 14.4462624 + }, + { + "id": "U6981", + "name": "Horky", + "avgLatitude": 49.8689728, + "avgLongitude": 15.4372873 + }, + { + "id": "U3382", + "name": "Horky n.Jiz.", + "avgLatitude": 50.3265266, + "avgLongitude": 14.8560848 + }, + { + "id": "U6257", + "name": "Horky n.Jiz.,u hřbitova", + "avgLatitude": 50.3315964, + "avgLongitude": 14.85503 + }, + { + "id": "U9474", + "name": "Horky u Čáslavi", + "avgLatitude": 49.87188, + "avgLongitude": 15.4429359 + }, + { + "id": "U6980", + "name": "Horky,křiž.", + "avgLatitude": 49.87042, + "avgLongitude": 15.4353418 + }, + { + "id": "U5891", + "name": "Horky,Skalka", + "avgLatitude": 49.8718262, + "avgLongitude": 15.4348612 + }, + { + "id": "U4429", + "name": "Horní Beřkovice", + "avgLatitude": 50.35719, + "avgLongitude": 14.3552094 + }, + { + "id": "U4369", + "name": "Horní Beřkovice,ObÚ", + "avgLatitude": 50.359314, + "avgLongitude": 14.3457918 + }, + { + "id": "U9871", + "name": "Horní Beřkovice,točna", + "avgLatitude": 50.3551674, + "avgLongitude": 14.3624935 + }, + { + "id": "U4930", + "name": "Horní Bezděkov", + "avgLatitude": 50.0822144, + "avgLongitude": 14.0677757 + }, + { + "id": "U6505", + "name": "Horní Bezděkov,křižovatka", + "avgLatitude": 50.0828934, + "avgLongitude": 14.0765781 + }, + { + "id": "U4439", + "name": "Horní Bezděkov,Pod Hřbitovem", + "avgLatitude": 50.0803032, + "avgLongitude": 14.0624275 + }, + { + "id": "U6331", + "name": "Horní Bukovina", + "avgLatitude": 50.5429878, + "avgLongitude": 14.92544 + }, + { + "id": "U6332", + "name": "Horní Bukovina,Dolní Bukovina", + "avgLatitude": 50.54272, + "avgLongitude": 14.9356861 + }, + { + "id": "U6334", + "name": "Horní Bukovina,Dolní Bukovina,koupaliště", + "avgLatitude": 50.5467949, + "avgLongitude": 14.9335785 + }, + { + "id": "U6333", + "name": "Horní Bukovina,odb.", + "avgLatitude": 50.5356636, + "avgLongitude": 14.9377747 + }, + { + "id": "U153", + "name": "Horní cesta", + "avgLatitude": 50.033268, + "avgLongitude": 14.39645 + }, + { + "id": "U2385", + "name": "Horní Kruty", + "avgLatitude": 49.9195862, + "avgLongitude": 14.9596729 + }, + { + "id": "U2390", + "name": "Horní Kruty,Bohouňovice II", + "avgLatitude": 49.91449, + "avgLongitude": 14.9722319 + }, + { + "id": "U2386", + "name": "Horní Kruty,Dolní Kruty", + "avgLatitude": 49.9148331, + "avgLongitude": 14.9583664 + }, + { + "id": "U2387", + "name": "Horní Kruty,Přestavlky", + "avgLatitude": 49.9112549, + "avgLongitude": 14.9569569 + }, + { + "id": "U2049", + "name": "Horní Kruty,Újezdec", + "avgLatitude": 49.899704, + "avgLongitude": 14.9472771 + }, + { + "id": "U9493", + "name": "Horní Ledeč", + "avgLatitude": 49.6959534, + "avgLongitude": 15.2833567 + }, + { + "id": "U2710", + "name": "Horní Lysolaje", + "avgLatitude": 50.1296043, + "avgLongitude": 14.3655291 + }, + { + "id": "U32236", + "name": "Horní Nerestce", + "avgLatitude": 49.4979362, + "avgLongitude": 14.0565729 + }, + { + "id": "U4709", + "name": "Horní Počaply", + "avgLatitude": 50.4246979, + "avgLongitude": 14.3890648 + }, + { + "id": "U2990", + "name": "Horní Počaply", + "avgLatitude": 50.42278, + "avgLongitude": 14.38636 + }, + { + "id": "U4708", + "name": "Horní Počaply,Elektrárna I", + "avgLatitude": 50.4170456, + "avgLongitude": 14.4113932 + }, + { + "id": "U4707", + "name": "Horní Počaply,Elektrárna II", + "avgLatitude": 50.414917, + "avgLongitude": 14.4211693 + }, + { + "id": "U4705", + "name": "Horní Počaply,Křivenice", + "avgLatitude": 50.4095039, + "avgLongitude": 14.4294863 + }, + { + "id": "U4706", + "name": "Horní Počaply,Porobeton", + "avgLatitude": 50.4120979, + "avgLongitude": 14.4258184 + }, + { + "id": "U4431", + "name": "Horní Slivno", + "avgLatitude": 50.3046722, + "avgLongitude": 14.7054586 + }, + { + "id": "U1010", + "name": "Hornocholupická", + "avgLatitude": 49.9974747, + "avgLongitude": 14.4249344 + }, + { + "id": "U31596", + "name": "Hornosín", + "avgLatitude": 49.4830933, + "avgLongitude": 13.8395643 + }, + { + "id": "U1136", + "name": "Horoměřice", + "avgLatitude": 50.131443, + "avgLongitude": 14.3397169 + }, + { + "id": "U4468", + "name": "Horoměřice,Lidl", + "avgLatitude": 50.1414642, + "avgLongitude": 14.3434381 + }, + { + "id": "U4251", + "name": "Horoměřice,Švejkova", + "avgLatitude": 50.1318054, + "avgLongitude": 14.3493538 + }, + { + "id": "U1137", + "name": "Horoměřice,V Lipkách", + "avgLatitude": 50.1357155, + "avgLongitude": 14.3363361 + }, + { + "id": "U7011", + "name": "Horoměřice,Velká Brána", + "avgLatitude": 50.13871, + "avgLongitude": 14.3359833 + }, + { + "id": "U31597", + "name": "Horosedly", + "avgLatitude": 49.5157547, + "avgLongitude": 14.0504551 + }, + { + "id": "U1809", + "name": "Horoušany", + "avgLatitude": 50.1061935, + "avgLongitude": 14.7407074 + }, + { + "id": "U1808", + "name": "Horoušany,Horoušánky,Náves", + "avgLatitude": 50.0986, + "avgLongitude": 14.7245827 + }, + { + "id": "U1499", + "name": "Horoušany,Horoušánky,U Tří svatých", + "avgLatitude": 50.0997467, + "avgLongitude": 14.7125244 + }, + { + "id": "U1612", + "name": "Horoušany,Horoušánky,Za Panskou zahradou", + "avgLatitude": 50.1027374, + "avgLongitude": 14.7274284 + }, + { + "id": "U1810", + "name": "Horoušany,U Rybníka", + "avgLatitude": 50.1080551, + "avgLongitude": 14.7412 + }, + { + "id": "U7213", + "name": "Horušice", + "avgLatitude": 49.9953766, + "avgLongitude": 15.4283218 + }, + { + "id": "U1447", + "name": "Hořany", + "avgLatitude": 50.0976257, + "avgLongitude": 14.9456406 + }, + { + "id": "U2806", + "name": "Hořátev", + "avgLatitude": 50.1533775, + "avgLongitude": 15.0295286 + }, + { + "id": "U2805", + "name": "Hořátev,prodejna", + "avgLatitude": 50.14999, + "avgLongitude": 15.0412626 + }, + { + "id": "U2596", + "name": "Hořátev,technologický park", + "avgLatitude": 50.1517563, + "avgLongitude": 15.0250969 + }, + { + "id": "U2597", + "name": "Hořátev,ZD", + "avgLatitude": 50.149765, + "avgLongitude": 15.0426035 + }, + { + "id": "U9521", + "name": "Hořesedly", + "avgLatitude": 50.1683655, + "avgLongitude": 13.6411161 + }, + { + "id": "U7806", + "name": "Hořesedly", + "avgLatitude": 50.16224, + "avgLongitude": 13.6021776 + }, + { + "id": "U6822", + "name": "Hořesedly,otočka", + "avgLatitude": 50.1636276, + "avgLongitude": 13.6047268 + }, + { + "id": "U6821", + "name": "Hořesedly,u školy", + "avgLatitude": 50.1619034, + "avgLongitude": 13.5994968 + }, + { + "id": "U9232", + "name": "Hořešovice", + "avgLatitude": 50.2704926, + "avgLongitude": 13.96517 + }, + { + "id": "U9233", + "name": "Hořešovičky", + "avgLatitude": 50.27459, + "avgLongitude": 13.9562225 + }, + { + "id": "U31602", + "name": "Hořice,kult.dům", + "avgLatitude": 49.59865, + "avgLongitude": 15.185689 + }, + { + "id": "U31603", + "name": "Hořice,rozc.", + "avgLatitude": 49.6016579, + "avgLongitude": 15.1901541 + }, + { + "id": "U4382", + "name": "Hořín", + "avgLatitude": 50.344574, + "avgLongitude": 14.4625778 + }, + { + "id": "U4383", + "name": "Hořín,Brozánky", + "avgLatitude": 50.3493958, + "avgLongitude": 14.4594078 + }, + { + "id": "U4700", + "name": "Hořín,Brozánky,Staré Brozánky", + "avgLatitude": 50.35285, + "avgLongitude": 14.4603405 + }, + { + "id": "U4381", + "name": "Hořín,Vrbno", + "avgLatitude": 50.3246841, + "avgLongitude": 14.4514246 + }, + { + "id": "U4380", + "name": "Hořín,Zelčín", + "avgLatitude": 50.3256, + "avgLongitude": 14.43979 + }, + { + "id": "U3270", + "name": "Hořovice", + "avgLatitude": 49.8433075, + "avgLongitude": 13.8990383 + }, + { + "id": "U9786", + "name": "Hořovice,cihelna", + "avgLatitude": 49.830307, + "avgLongitude": 13.9032288 + }, + { + "id": "U9784", + "name": "Hořovice,Komenského", + "avgLatitude": 49.8347473, + "avgLongitude": 13.9064083 + }, + { + "id": "U9779", + "name": "Hořovice,Letná", + "avgLatitude": 49.84345, + "avgLongitude": 13.9044 + }, + { + "id": "U9618", + "name": "Hořovice,nám.B.Němcové", + "avgLatitude": 49.8334656, + "avgLongitude": 13.9023352 + }, + { + "id": "U9781", + "name": "Hořovice,nemocnice", + "avgLatitude": 49.841217, + "avgLongitude": 13.914875 + }, + { + "id": "U9782", + "name": "Hořovice,nemocnice rozc.", + "avgLatitude": 49.838562, + "avgLongitude": 13.913106 + }, + { + "id": "U9617", + "name": "Hořovice,Palackého nám.", + "avgLatitude": 49.8363075, + "avgLongitude": 13.90328 + }, + { + "id": "U9615", + "name": "Hořovice,Sklenářka", + "avgLatitude": 49.8435631, + "avgLongitude": 13.8893728 + }, + { + "id": "U9785", + "name": "Hořovice,u Dražovky", + "avgLatitude": 49.8301773, + "avgLongitude": 13.9057817 + }, + { + "id": "U9787", + "name": "Hořovice,u garáží", + "avgLatitude": 49.8316269, + "avgLongitude": 13.883955 + }, + { + "id": "U4275", + "name": "Hořovice,u hřbitova", + "avgLatitude": 49.8354721, + "avgLongitude": 13.9117851 + }, + { + "id": "U9780", + "name": "Hořovice,u zámku", + "avgLatitude": 49.8388519, + "avgLongitude": 13.9087067 + }, + { + "id": "U9616", + "name": "Hořovice,Valdek", + "avgLatitude": 49.8381767, + "avgLongitude": 13.8972292 + }, + { + "id": "U6829", + "name": "Hořovičky", + "avgLatitude": 50.155632, + "avgLongitude": 13.5304728 + }, + { + "id": "U6832", + "name": "Hořovičky,Bukov", + "avgLatitude": 50.14336, + "avgLongitude": 13.5033131 + }, + { + "id": "U6831", + "name": "Hořovičky,Hokov", + "avgLatitude": 50.1565552, + "avgLongitude": 13.5619678 + }, + { + "id": "U6830", + "name": "Hořovičky,Hokov,rozc.", + "avgLatitude": 50.15953, + "avgLongitude": 13.5566044 + }, + { + "id": "U6828", + "name": "Hořovičky,Vrbice", + "avgLatitude": 50.17043, + "avgLongitude": 13.5257273 + }, + { + "id": "U9130", + "name": "Hospozín,hostinec", + "avgLatitude": 50.30798, + "avgLongitude": 14.1726522 + }, + { + "id": "U9133", + "name": "Hospozín,nad kostelem", + "avgLatitude": 50.3075943, + "avgLongitude": 14.1738033 + }, + { + "id": "U9131", + "name": "Hospozín,ObÚ", + "avgLatitude": 50.30414, + "avgLongitude": 14.1706343 + }, + { + "id": "U9132", + "name": "Hospozín,závod", + "avgLatitude": 50.3085632, + "avgLongitude": 14.1673908 + }, + { + "id": "U158", + "name": "Hostavice", + "avgLatitude": 50.09012, + "avgLongitude": 14.56333 + }, + { + "id": "U1779", + "name": "Hostín u Vojkovic", + "avgLatitude": 50.29612, + "avgLongitude": 14.3953409 + }, + { + "id": "U9172", + "name": "Hostín,u křížku", + "avgLatitude": 50.3422165, + "avgLongitude": 14.5895519 + }, + { + "id": "U9171", + "name": "Hostín,V Lukách", + "avgLatitude": 50.3476257, + "avgLongitude": 14.5745087 + }, + { + "id": "U472", + "name": "Hostivařská", + "avgLatitude": 50.0527649, + "avgLongitude": 14.5291014 + }, + { + "id": "U160", + "name": "Hostivařské náměstí", + "avgLatitude": 50.0501251, + "avgLongitude": 14.5263672 + }, + { + "id": "U641", + "name": "Hostivařský hřbitov", + "avgLatitude": 50.04608, + "avgLongitude": 14.5241461 + }, + { + "id": "U2707", + "name": "Hostivařský pivovar", + "avgLatitude": 50.0467148, + "avgLongitude": 14.5505619 + }, + { + "id": "U2116", + "name": "Hostivice", + "avgLatitude": 50.08408, + "avgLongitude": 14.2583828 + }, + { + "id": "U1176", + "name": "Hostivice,Břve", + "avgLatitude": 50.0695648, + "avgLongitude": 14.2425308 + }, + { + "id": "U1179", + "name": "Hostivice,Břve,Sportovní hala", + "avgLatitude": 50.0686951, + "avgLongitude": 14.24707 + }, + { + "id": "U1144", + "name": "Hostivice,centrum", + "avgLatitude": 50.0812454, + "avgLongitude": 14.2545815 + }, + { + "id": "U1145", + "name": "Hostivice,Jeneček", + "avgLatitude": 50.08249, + "avgLongitude": 14.2400064 + }, + { + "id": "U3073", + "name": "Hostivice,K Dálnici", + "avgLatitude": 50.08389, + "avgLongitude": 14.2702875 + }, + { + "id": "U1146", + "name": "Hostivice,Litovice", + "avgLatitude": 50.07959, + "avgLongitude": 14.2453346 + }, + { + "id": "U1143", + "name": "Hostivice,Na Pískách", + "avgLatitude": 50.075882, + "avgLongitude": 14.2573986 + }, + { + "id": "U2114", + "name": "Hostivice,Nouzov", + "avgLatitude": 50.08039, + "avgLongitude": 14.2625809 + }, + { + "id": "U2113", + "name": "Hostivice,Palouky", + "avgLatitude": 50.07892, + "avgLongitude": 14.2811642 + }, + { + "id": "U1386", + "name": "Hostivice,Průmyslová", + "avgLatitude": 50.0794754, + "avgLongitude": 14.2701855 + }, + { + "id": "U1218", + "name": "Hostivice,Sportovců", + "avgLatitude": 50.07896, + "avgLongitude": 14.2422256 + }, + { + "id": "U1147", + "name": "Hostivice,Stadion", + "avgLatitude": 50.0808563, + "avgLongitude": 14.24922 + }, + { + "id": "U1217", + "name": "Hostivice,Staré Litovice", + "avgLatitude": 50.07647, + "avgLongitude": 14.2387486 + }, + { + "id": "U2115", + "name": "Hostivice,Ve Vilkách", + "avgLatitude": 50.08323, + "avgLongitude": 14.2321682 + }, + { + "id": "U2838", + "name": "Hostivice-Litovice", + "avgLatitude": 50.0716934, + "avgLongitude": 14.2246094 + }, + { + "id": "U4139", + "name": "Hostivice-Sadová", + "avgLatitude": 50.0751076, + "avgLongitude": 14.2667789 + }, + { + "id": "U2895", + "name": "Hostomice pod Brdy", + "avgLatitude": 49.8314552, + "avgLongitude": 14.0477247 + }, + { + "id": "U9813", + "name": "Hostomice,Bezdědice", + "avgLatitude": 49.8329, + "avgLongitude": 14.0297012 + }, + { + "id": "U9815", + "name": "Hostomice,Lštěň", + "avgLatitude": 49.81775, + "avgLongitude": 14.0617418 + }, + { + "id": "U9814", + "name": "Hostomice,Lštěň,rozc.", + "avgLatitude": 49.8191376, + "avgLongitude": 14.06603 + }, + { + "id": "U9811", + "name": "Hostomice,nám.", + "avgLatitude": 49.8255119, + "avgLongitude": 14.0461187 + }, + { + "id": "U9810", + "name": "Hostomice,odb.Zátor", + "avgLatitude": 49.8218536, + "avgLongitude": 14.0443115 + }, + { + "id": "U2946", + "name": "Hostomice,Radouš", + "avgLatitude": 49.8387566, + "avgLongitude": 14.0188541 + }, + { + "id": "U5953", + "name": "Hostomice,Radouš,u křížku", + "avgLatitude": 49.8375664, + "avgLongitude": 14.021368 + }, + { + "id": "U9812", + "name": "Hostomice,škola", + "avgLatitude": 49.8258667, + "avgLongitude": 14.0419121 + }, + { + "id": "U2120", + "name": "Hostouň", + "avgLatitude": 50.11622, + "avgLongitude": 14.2021809 + }, + { + "id": "U2809", + "name": "Hostouň u Prahy", + "avgLatitude": 50.1048927, + "avgLongitude": 14.2093134 + }, + { + "id": "U4119", + "name": "Hostouň,Na Pohoří", + "avgLatitude": 50.11425, + "avgLongitude": 14.2019157 + }, + { + "id": "U2132", + "name": "Hostouň,u hřiště", + "avgLatitude": 50.11094, + "avgLongitude": 14.2036 + }, + { + "id": "U6984", + "name": "Hostovlice", + "avgLatitude": 49.860466, + "avgLongitude": 15.4651594 + }, + { + "id": "U161", + "name": "Hostýnská", + "avgLatitude": 50.081192, + "avgLongitude": 14.4955244 + }, + { + "id": "U567", + "name": "Hotel Golf", + "avgLatitude": 50.0680656, + "avgLongitude": 14.3467245 + }, + { + "id": "U1484", + "name": "Hovorčovice", + "avgLatitude": 50.18167, + "avgLongitude": 14.5167713 + }, + { + "id": "U2811", + "name": "Hovorčovice", + "avgLatitude": 50.18052, + "avgLongitude": 14.5276766 + }, + { + "id": "U1084", + "name": "Hovorčovice,U Kostela", + "avgLatitude": 50.17957, + "avgLongitude": 14.5176163 + }, + { + "id": "U7304", + "name": "Hraběšín", + "avgLatitude": 49.85266, + "avgLongitude": 15.33161 + }, + { + "id": "U163", + "name": "Hradčanská", + "avgLatitude": 50.0975037, + "avgLongitude": 14.4043093 + }, + { + "id": "U2581", + "name": "Hradčany", + "avgLatitude": 50.1588, + "avgLongitude": 15.26576 + }, + { + "id": "U2582", + "name": "Hradčany,ObÚ", + "avgLatitude": 50.1564865, + "avgLongitude": 15.2718973 + }, + { + "id": "U1410", + "name": "Hradební", + "avgLatitude": 50.0907, + "avgLongitude": 14.4270973 + }, + { + "id": "U31605", + "name": "Hradec,Hamry,rozc.0.7", + "avgLatitude": 49.716938, + "avgLongitude": 15.2807941 + }, + { + "id": "U9285", + "name": "Hradečno,Nová Studnice", + "avgLatitude": 50.18436, + "avgLongitude": 13.9732361 + }, + { + "id": "U9286", + "name": "Hradečno,Nová Ves", + "avgLatitude": 50.187912, + "avgLongitude": 13.9988613 + }, + { + "id": "U9284", + "name": "Hradečno,Obora", + "avgLatitude": 50.1755829, + "avgLongitude": 13.9814243 + }, + { + "id": "U31956", + "name": "Hrádek,nad záv.", + "avgLatitude": 49.72171, + "avgLongitude": 13.6479359 + }, + { + "id": "U1425", + "name": "Hradešín", + "avgLatitude": 50.03795, + "avgLongitude": 14.7598057 + }, + { + "id": "U2419", + "name": "Hradešín,ObÚ", + "avgLatitude": 50.038723, + "avgLongitude": 14.7559042 + }, + { + "id": "U6777", + "name": "Hradiště", + "avgLatitude": 49.6828232, + "avgLongitude": 14.848959 + }, + { + "id": "U6776", + "name": "Hradiště,rozc.", + "avgLatitude": 49.678627, + "avgLongitude": 14.8525906 + }, + { + "id": "U1439", + "name": "Hradištko", + "avgLatitude": 50.1662369, + "avgLongitude": 14.9366827 + }, + { + "id": "U2495", + "name": "Hradištko,Brunšov", + "avgLatitude": 49.8564224, + "avgLongitude": 14.4020405 + }, + { + "id": "U1438", + "name": "Hradištko,Chaty", + "avgLatitude": 50.161808, + "avgLongitude": 14.9268951 + }, + { + "id": "U1458", + "name": "Hradištko,Kersko Hrabalova", + "avgLatitude": 50.1588745, + "avgLongitude": 14.9028873 + }, + { + "id": "U1436", + "name": "Hradištko,Kersko U Pramene", + "avgLatitude": 50.15409, + "avgLongitude": 14.9099236 + }, + { + "id": "U1437", + "name": "Hradištko,Kersko Branaldova", + "avgLatitude": 50.1608734, + "avgLongitude": 14.9117765 + }, + { + "id": "U1432", + "name": "Hradištko,Kersko hl.sil.", + "avgLatitude": 50.13837, + "avgLongitude": 14.9048805 + }, + { + "id": "U2499", + "name": "Hradištko,Osada", + "avgLatitude": 49.8683929, + "avgLongitude": 14.420702 + }, + { + "id": "U2501", + "name": "Hradištko,Pikovice,Most", + "avgLatitude": 49.8770523, + "avgLongitude": 14.4273949 + }, + { + "id": "U2500", + "name": "Hradištko,Pikovice,Obec", + "avgLatitude": 49.8747139, + "avgLongitude": 14.4270744 + }, + { + "id": "U2512", + "name": "Hradištko,Pikovice,Pod Medníkem", + "avgLatitude": 49.87333, + "avgLongitude": 14.4323406 + }, + { + "id": "U2496", + "name": "Hradištko,Rajchardov", + "avgLatitude": 49.86196, + "avgLongitude": 14.4063568 + }, + { + "id": "U2497", + "name": "Hradištko,U Rybníčku", + "avgLatitude": 49.86495, + "avgLongitude": 14.4110222 + }, + { + "id": "U2498", + "name": "Hradištko,Zámek", + "avgLatitude": 49.8677, + "avgLongitude": 14.4098959 + }, + { + "id": "U6925", + "name": "Hracholusky", + "avgLatitude": 50.0018349, + "avgLongitude": 13.7673483 + }, + { + "id": "U6924", + "name": "Hracholusky,rozc.Novosedly", + "avgLatitude": 50.0005341, + "avgLongitude": 13.7550793 + }, + { + "id": "U1591", + "name": "Hrazanská", + "avgLatitude": 49.97781, + "avgLongitude": 14.4395485 + }, + { + "id": "U31607", + "name": "Hrazany,Hrazánky,rozc.1.7", + "avgLatitude": 49.52426, + "avgLongitude": 14.3545771 + }, + { + "id": "U4801", + "name": "Hrdlív", + "avgLatitude": 50.19935, + "avgLongitude": 14.0720015 + }, + { + "id": "U4260", + "name": "Hrdlořezská", + "avgLatitude": 50.09369, + "avgLongitude": 14.5094786 + }, + { + "id": "U6194", + "name": "Hrdlořezy", + "avgLatitude": 50.4510651, + "avgLongitude": 14.8751106 + }, + { + "id": "U6193", + "name": "Hrdlořezy,Přední důl", + "avgLatitude": 50.44532, + "avgLongitude": 14.8852539 + }, + { + "id": "U32103", + "name": "Hrejkovice", + "avgLatitude": 49.47426, + "avgLongitude": 14.2899332 + }, + { + "id": "U32100", + "name": "Hrejkovice,Chlumek,rozc.0.8", + "avgLatitude": 49.4685745, + "avgLongitude": 14.3069077 + }, + { + "id": "U32101", + "name": "Hrejkovice,Chlumek,rybník Zlatina", + "avgLatitude": 49.4615326, + "avgLongitude": 14.3307362 + }, + { + "id": "U32099", + "name": "Hrejkovice,Chlumek,samoty", + "avgLatitude": 49.4709167, + "avgLongitude": 14.3007717 + }, + { + "id": "U31608", + "name": "Hrejkovice,Níkovice,rozc.1.0", + "avgLatitude": 49.4966354, + "avgLongitude": 14.303215 + }, + { + "id": "U32098", + "name": "Hrejkovice,ObÚ", + "avgLatitude": 49.47446, + "avgLongitude": 14.2919769 + }, + { + "id": "U32091", + "name": "Hrejkovice,Pechova Lhota", + "avgLatitude": 49.4958344, + "avgLongitude": 14.2875748 + }, + { + "id": "U31609", + "name": "Hrejkovice,Pechova Lhota,rozc.", + "avgLatitude": 49.50244, + "avgLongitude": 14.2930088 + }, + { + "id": "U164", + "name": "Hrnčíře", + "avgLatitude": 49.99833, + "avgLongitude": 14.5171967 + }, + { + "id": "U165", + "name": "Hrnčířský hřbitov", + "avgLatitude": 50.002327, + "avgLongitude": 14.5164394 + }, + { + "id": "U3065", + "name": "Hrubý Jeseník,Kovárna", + "avgLatitude": 50.2502174, + "avgLongitude": 15.1002045 + }, + { + "id": "U9560", + "name": "Hrubý Jeseník,U Parku", + "avgLatitude": 50.2518234, + "avgLongitude": 15.0917816 + }, + { + "id": "U2061", + "name": "Hrusice", + "avgLatitude": 49.90969, + "avgLongitude": 14.7386055 + }, + { + "id": "U2060", + "name": "Hrusice,Na Šmejkalce", + "avgLatitude": 49.9031258, + "avgLongitude": 14.7445211 + }, + { + "id": "U2062", + "name": "Hrusice,Vlčí halíř", + "avgLatitude": 49.92102, + "avgLongitude": 14.7385912 + }, + { + "id": "U6258", + "name": "Hrušov", + "avgLatitude": 50.3453369, + "avgLongitude": 14.8456106 + }, + { + "id": "U6259", + "name": "Hrušov,u křížku", + "avgLatitude": 50.34211, + "avgLongitude": 14.851078 + }, + { + "id": "U4391", + "name": "Hřebeč", + "avgLatitude": 50.1372, + "avgLongitude": 14.1593647 + }, + { + "id": "U4390", + "name": "Hřebeč,Netřeby", + "avgLatitude": 50.1315765, + "avgLongitude": 14.1528168 + }, + { + "id": "U4953", + "name": "Hřebeč,základní škola", + "avgLatitude": 50.1359, + "avgLongitude": 14.1644335 + }, + { + "id": "U6926", + "name": "Hřebečníky", + "avgLatitude": 49.9854355, + "avgLongitude": 13.7530766 + }, + { + "id": "U6927", + "name": "Hřebečníky,Týřovice", + "avgLatitude": 49.98015, + "avgLongitude": 13.7849474 + }, + { + "id": "U6923", + "name": "Hřebečníky,Újezdec,rozc.", + "avgLatitude": 49.9974823, + "avgLongitude": 13.7442427 + }, + { + "id": "U168", + "name": "Hřebenka", + "avgLatitude": 50.0750847, + "avgLongitude": 14.3901119 + }, + { + "id": "U9110", + "name": "Hředle", + "avgLatitude": 49.9010239, + "avgLongitude": 13.9228115 + }, + { + "id": "U3362", + "name": "Hředle", + "avgLatitude": 50.18793, + "avgLongitude": 13.7475891 + }, + { + "id": "U3363", + "name": "Hředle,pod Džbánem", + "avgLatitude": 50.1935272, + "avgLongitude": 13.74619 + }, + { + "id": "U169", + "name": "Hříbková", + "avgLatitude": 50.0205078, + "avgLongitude": 14.5801926 + }, + { + "id": "U7505", + "name": "Hřiměždice", + "avgLatitude": 49.68691, + "avgLongitude": 14.2741747 + }, + { + "id": "U7506", + "name": "Hřiměždice,Háje", + "avgLatitude": 49.6955338, + "avgLongitude": 14.2647858 + }, + { + "id": "U7508", + "name": "Hřiměždice,Vestec", + "avgLatitude": 49.6799126, + "avgLongitude": 14.2643538 + }, + { + "id": "U7507", + "name": "Hřiměždice,Vestec,kaplička", + "avgLatitude": 49.680603, + "avgLongitude": 14.269371 + }, + { + "id": "U7509", + "name": "Hřiměždice,Vestec,rozc.", + "avgLatitude": 49.67537, + "avgLongitude": 14.2496452 + }, + { + "id": "U9528", + "name": "Hřivice", + "avgLatitude": 50.28546, + "avgLongitude": 13.72522 + }, + { + "id": "U9510", + "name": "Hudčice", + "avgLatitude": 49.527668, + "avgLongitude": 13.9285374 + }, + { + "id": "U7510", + "name": "Hudčice", + "avgLatitude": 49.532093, + "avgLongitude": 13.924181 + }, + { + "id": "U7511", + "name": "Hudčice,lom", + "avgLatitude": 49.5282478, + "avgLongitude": 13.9177618 + }, + { + "id": "U9064", + "name": "Hudlice,Dibří", + "avgLatitude": 49.9587936, + "avgLongitude": 14.00705 + }, + { + "id": "U9065", + "name": "Hudlice,dolní", + "avgLatitude": 49.961113, + "avgLongitude": 13.97556 + }, + { + "id": "U9067", + "name": "Hudlice,horní", + "avgLatitude": 49.96222, + "avgLongitude": 13.9680386 + }, + { + "id": "U9066", + "name": "Hudlice,u kříže", + "avgLatitude": 49.9628372, + "avgLongitude": 13.965498 + }, + { + "id": "U7512", + "name": "Hulice", + "avgLatitude": 49.7105, + "avgLongitude": 15.0853 + }, + { + "id": "U7513", + "name": "Hulice,úpravna", + "avgLatitude": 49.7209778, + "avgLongitude": 15.0848217 + }, + { + "id": "U170", + "name": "Hulická", + "avgLatitude": 50.0776749, + "avgLongitude": 14.66011 + }, + { + "id": "U31610", + "name": "Humpolec,aut.nádr.", + "avgLatitude": 49.539917, + "avgLongitude": 15.3456974 + }, + { + "id": "U31915", + "name": "Humpolec,Lhotka", + "avgLatitude": 49.5580673, + "avgLongitude": 15.2740231 + }, + { + "id": "U31612", + "name": "Humpolec,Petrovice", + "avgLatitude": 49.5400276, + "avgLongitude": 15.2793636 + }, + { + "id": "U31611", + "name": "Humpolec,pošta", + "avgLatitude": 49.5410576, + "avgLongitude": 15.3544178 + }, + { + "id": "U31638", + "name": "Humpolec,rozvodna", + "avgLatitude": 49.546772, + "avgLongitude": 15.33796 + }, + { + "id": "U32172", + "name": "Humpolec,strojírny", + "avgLatitude": 49.5414352, + "avgLongitude": 15.3382788 + }, + { + "id": "U32171", + "name": "Humpolec,Trucbaba", + "avgLatitude": 49.54138, + "avgLongitude": 15.3294563 + }, + { + "id": "U526", + "name": "Huntířovská", + "avgLatitude": 50.1292572, + "avgLongitude": 14.5439262 + }, + { + "id": "U1154", + "name": "Hůrka", + "avgLatitude": 50.0496368, + "avgLongitude": 14.3416481 + }, + { + "id": "U6230", + "name": "Husí Lhota", + "avgLatitude": 50.437542, + "avgLongitude": 15.0002079 + }, + { + "id": "U2245", + "name": "Husinec,Rozc.", + "avgLatitude": 50.1754227, + "avgLongitude": 14.37204 + }, + { + "id": "U2247", + "name": "Husinec,Řež", + "avgLatitude": 50.17063, + "avgLongitude": 14.3601627 + }, + { + "id": "U2246", + "name": "Husinec,Řež,Sídliště", + "avgLatitude": 50.17238, + "avgLongitude": 14.3617878 + }, + { + "id": "U2248", + "name": "Husinec,Řež,Záv.", + "avgLatitude": 50.17718, + "avgLongitude": 14.3585262 + }, + { + "id": "U2461", + "name": "Husinec,Samota", + "avgLatitude": 50.1792374, + "avgLongitude": 14.391201 + }, + { + "id": "U173", + "name": "Hutě", + "avgLatitude": 50.1086273, + "avgLongitude": 14.5574751 + }, + { + "id": "U174", + "name": "Hutmanka", + "avgLatitude": 50.0568542, + "avgLongitude": 14.369463 + }, + { + "id": "U2947", + "name": "Hvězdonice", + "avgLatitude": 49.87251, + "avgLongitude": 14.771328 + }, + { + "id": "U6892", + "name": "Hvozd", + "avgLatitude": 50.0523529, + "avgLongitude": 13.697979 + }, + { + "id": "U6893", + "name": "Hvozd,Žďáry", + "avgLatitude": 50.0586472, + "avgLongitude": 13.6772394 + }, + { + "id": "U9792", + "name": "Hvozdec", + "avgLatitude": 49.8075371, + "avgLongitude": 13.8787355 + }, + { + "id": "U9793", + "name": "Hvozdec,Mrtník", + "avgLatitude": 49.79985, + "avgLongitude": 13.8734818 + }, + { + "id": "U9791", + "name": "Hvozdec,myslivna", + "avgLatitude": 49.8192444, + "avgLongitude": 13.8864422 + }, + { + "id": "U1759", + "name": "Hvozdnice", + "avgLatitude": 49.8755264, + "avgLongitude": 14.3654251 + }, + { + "id": "U1758", + "name": "Hvozdnice,Chaty", + "avgLatitude": 49.868412, + "avgLongitude": 14.3615742 + }, + { + "id": "U7514", + "name": "Hvožďany", + "avgLatitude": 49.5282135, + "avgLongitude": 13.8057423 + }, + { + "id": "U7516", + "name": "Hvožďany,Javory", + "avgLatitude": 49.5274658, + "avgLongitude": 13.8238211 + }, + { + "id": "U7520", + "name": "Hvožďany,Leletice", + "avgLatitude": 49.52541, + "avgLongitude": 13.8413477 + }, + { + "id": "U7515", + "name": "Hvožďany,Leletice,Jamky", + "avgLatitude": 49.5275345, + "avgLongitude": 13.826951 + }, + { + "id": "U3331", + "name": "Hvožďany,Planiny", + "avgLatitude": 49.54222, + "avgLongitude": 13.7799387 + }, + { + "id": "U3360", + "name": "Hvožďany,Pozdyně", + "avgLatitude": 49.5203552, + "avgLongitude": 13.7803955 + }, + { + "id": "U3260", + "name": "Hvožďany,Roželov", + "avgLatitude": 49.5492249, + "avgLongitude": 13.7950172 + }, + { + "id": "U3329", + "name": "Hvožďany,Roželov,Mýta", + "avgLatitude": 49.5460052, + "avgLongitude": 13.7887135 + }, + { + "id": "U3163", + "name": "Hvožďany,Roželov,Na Sedlečku", + "avgLatitude": 49.55506, + "avgLongitude": 13.7956905 + }, + { + "id": "U7519", + "name": "Hvožďany,samota", + "avgLatitude": 49.5366745, + "avgLongitude": 13.8206959 + }, + { + "id": "U7521", + "name": "Hvožďany,Vacíkov", + "avgLatitude": 49.54414, + "avgLongitude": 13.8373547 + }, + { + "id": "U3161", + "name": "Hvožďany,Vacíkov,Na Dědku", + "avgLatitude": 49.56637, + "avgLongitude": 13.8047161 + }, + { + "id": "U7517", + "name": "Hvožďany,Vacíkov,Nová Luka", + "avgLatitude": 49.53869, + "avgLongitude": 13.8596516 + }, + { + "id": "U5907", + "name": "Hvožďany,Vacíkov,u křížku", + "avgLatitude": 49.5410728, + "avgLongitude": 13.8274574 + }, + { + "id": "U176", + "name": "Hybšmanka", + "avgLatitude": 50.0779343, + "avgLongitude": 14.3812008 + }, + { + "id": "U7180", + "name": "Hýskov", + "avgLatitude": 49.9908752, + "avgLongitude": 14.049407 + }, + { + "id": "U3271", + "name": "Hýskov", + "avgLatitude": 49.9888763, + "avgLongitude": 14.0446339 + }, + { + "id": "U9883", + "name": "Hýskov,Na Krétě", + "avgLatitude": 49.9892349, + "avgLongitude": 14.057106 + }, + { + "id": "U9773", + "name": "Hýskov,u hřbitova", + "avgLatitude": 49.99093, + "avgLongitude": 14.0348921 + }, + { + "id": "U9408", + "name": "Chabeřice", + "avgLatitude": 49.74967, + "avgLongitude": 15.0623636 + }, + { + "id": "U7522", + "name": "Chabeřice", + "avgLatitude": 49.75012, + "avgLongitude": 15.0720634 + }, + { + "id": "U7188", + "name": "Chabeřice,Brandýs", + "avgLatitude": 49.76024, + "avgLongitude": 15.0454149 + }, + { + "id": "U7189", + "name": "Chabeřice,Holšice", + "avgLatitude": 49.7570343, + "avgLongitude": 15.0505676 + }, + { + "id": "U9836", + "name": "Chaloupky", + "avgLatitude": 49.7915955, + "avgLongitude": 13.8691664 + }, + { + "id": "U9837", + "name": "Chaloupky,Neřežín", + "avgLatitude": 49.786232, + "avgLongitude": 13.8830748 + }, + { + "id": "U9835", + "name": "Chaloupky,Ptákov", + "avgLatitude": 49.796833, + "avgLongitude": 13.86585 + }, + { + "id": "U1050", + "name": "Chaplinovo náměstí", + "avgLatitude": 50.03515, + "avgLongitude": 14.3774185 + }, + { + "id": "U6246", + "name": "Charvatce", + "avgLatitude": 50.3226738, + "avgLongitude": 14.99847 + }, + { + "id": "U6243", + "name": "Charvatce,Květník", + "avgLatitude": 50.31446, + "avgLongitude": 15.0169735 + }, + { + "id": "U6245", + "name": "Charvatce,na pile", + "avgLatitude": 50.3221741, + "avgLongitude": 15.0102158 + }, + { + "id": "U4494", + "name": "Chářovice,I", + "avgLatitude": 49.8267365, + "avgLongitude": 14.5809155 + }, + { + "id": "U4493", + "name": "Chářovice,II", + "avgLatitude": 49.8198547, + "avgLongitude": 14.5784111 + }, + { + "id": "U32307", + "name": "Chbany", + "avgLatitude": 50.33258, + "avgLongitude": 13.4294033 + }, + { + "id": "U32314", + "name": "Chbany,Hořenice,rozc.", + "avgLatitude": 50.3369675, + "avgLongitude": 13.3442841 + }, + { + "id": "U32312", + "name": "Chbany,Malé Krhovice", + "avgLatitude": 50.33549, + "avgLongitude": 13.3774605 + }, + { + "id": "U32381", + "name": "Chbany,Malé Krhovice,rozc.", + "avgLatitude": 50.3337173, + "avgLongitude": 13.3768568 + }, + { + "id": "U32313", + "name": "Chbany,Poláky", + "avgLatitude": 50.3359222, + "avgLongitude": 13.3527765 + }, + { + "id": "U32382", + "name": "Chbany,Poláky,točna", + "avgLatitude": 50.3359337, + "avgLongitude": 13.3543644 + }, + { + "id": "U32379", + "name": "Chbany,Přeskaky,rozc.", + "avgLatitude": 50.3323746, + "avgLongitude": 13.4184694 + }, + { + "id": "U32306", + "name": "Chbany,rozc.Chudeřín", + "avgLatitude": 50.3331566, + "avgLongitude": 13.4467554 + }, + { + "id": "U32308", + "name": "Chbany,Soběsuky,rozc.", + "avgLatitude": 50.3447723, + "avgLongitude": 13.4281979 + }, + { + "id": "U32311", + "name": "Chbany,Vadkovice", + "avgLatitude": 50.3398666, + "avgLongitude": 13.385232 + }, + { + "id": "U32380", + "name": "Chbany,Vadkovice,rozc.", + "avgLatitude": 50.3332367, + "avgLongitude": 13.3879051 + }, + { + "id": "U32310", + "name": "Chbany,Vikletice", + "avgLatitude": 50.3483162, + "avgLongitude": 13.4027939 + }, + { + "id": "U32309", + "name": "Chbany,Vikletice,přehrada", + "avgLatitude": 50.346344, + "avgLongitude": 13.41594 + }, + { + "id": "U31501", + "name": "Cheznovice,ObÚ", + "avgLatitude": 49.778923, + "avgLongitude": 13.7847481 + }, + { + "id": "U4476", + "name": "Chleby", + "avgLatitude": 49.8270836, + "avgLongitude": 14.5570145 + }, + { + "id": "U9561", + "name": "Chleby", + "avgLatitude": 50.2229233, + "avgLongitude": 15.0890207 + }, + { + "id": "U9562", + "name": "Chleby,Draho", + "avgLatitude": 50.2084923, + "avgLongitude": 15.0862274 + }, + { + "id": "U4475", + "name": "Chleby,Rozc.", + "avgLatitude": 49.8184357, + "avgLongitude": 14.548562 + }, + { + "id": "U4484", + "name": "Chlístov", + "avgLatitude": 49.8007355, + "avgLongitude": 14.65444 + }, + { + "id": "U4500", + "name": "Chlístov,Racek,osada", + "avgLatitude": 49.8040352, + "avgLongitude": 14.6623554 + }, + { + "id": "U5049", + "name": "Chlístov,Racek,rozc.", + "avgLatitude": 49.7939, + "avgLongitude": 14.6652985 + }, + { + "id": "U7039", + "name": "Chlístov,Žabovřesky", + "avgLatitude": 49.79482, + "avgLongitude": 14.651063 + }, + { + "id": "U7083", + "name": "Chlístovice", + "avgLatitude": 49.88648, + "avgLongitude": 15.2044086 + }, + { + "id": "U7081", + "name": "Chlístovice,Chroustkov", + "avgLatitude": 49.8716125, + "avgLongitude": 15.18351 + }, + { + "id": "U7079", + "name": "Chlístovice,Kralice", + "avgLatitude": 49.86448, + "avgLongitude": 15.1548023 + }, + { + "id": "U7181", + "name": "Chlístovice,Kraličky", + "avgLatitude": 49.8687363, + "avgLongitude": 15.147892 + }, + { + "id": "U7082", + "name": "Chlístovice,křiž.", + "avgLatitude": 49.884388, + "avgLongitude": 15.1978359 + }, + { + "id": "U6958", + "name": "Chlístovice,Pivnisko", + "avgLatitude": 49.8525543, + "avgLongitude": 15.1351862 + }, + { + "id": "U7077", + "name": "Chlístovice,Pivnisko,rozc.", + "avgLatitude": 49.8497047, + "avgLongitude": 15.145628 + }, + { + "id": "U7076", + "name": "Chlístovice,Svatý Jan", + "avgLatitude": 49.85572, + "avgLongitude": 15.1486645 + }, + { + "id": "U6959", + "name": "Chlístovice,Vernýřov", + "avgLatitude": 49.8472366, + "avgLongitude": 15.1540022 + }, + { + "id": "U7080", + "name": "Chlístovice,Všesoky", + "avgLatitude": 49.8581123, + "avgLongitude": 15.1692476 + }, + { + "id": "U7524", + "name": "Chlístovice,Zdeslavice", + "avgLatitude": 49.8645554, + "avgLongitude": 15.1935978 + }, + { + "id": "U6957", + "name": "Chlístovice,Žandov", + "avgLatitude": 49.858963, + "avgLongitude": 15.1284018 + }, + { + "id": "U7525", + "name": "Chlum", + "avgLatitude": 49.6927948, + "avgLongitude": 14.99608 + }, + { + "id": "U3282", + "name": "Chlum u Rakovníka", + "avgLatitude": 50.0761337, + "avgLongitude": 13.7773237 + }, + { + "id": "U31348", + "name": "Chlum,hl.sil.", + "avgLatitude": 50.5760574, + "avgLongitude": 14.545228 + }, + { + "id": "U4876", + "name": "Chlumčany u Loun", + "avgLatitude": 50.3443451, + "avgLongitude": 13.8456059 + }, + { + "id": "U4853", + "name": "Chlumčany,motorest", + "avgLatitude": 50.33175, + "avgLongitude": 13.84063 + }, + { + "id": "U31127", + "name": "Chlumec n.Cidl.,nemocnice", + "avgLatitude": 50.1469536, + "avgLongitude": 15.4501772 + }, + { + "id": "U31129", + "name": "Chlumec n.Cidl.,sokolovna", + "avgLatitude": 50.1579666, + "avgLongitude": 15.4592972 + }, + { + "id": "U31128", + "name": "Chlumec n.Cidl.,stará brána", + "avgLatitude": 50.154, + "avgLongitude": 15.45896 + }, + { + "id": "U4843", + "name": "Chlumec n.Cidl.,žel.st.", + "avgLatitude": 50.1631737, + "avgLongitude": 15.4566889 + }, + { + "id": "U2342", + "name": "Chlumín", + "avgLatitude": 50.2889481, + "avgLongitude": 14.4493294 + }, + { + "id": "U4154", + "name": "Chlumín", + "avgLatitude": 50.26723, + "avgLongitude": 14.4563961 + }, + { + "id": "U5005", + "name": "Chlustina", + "avgLatitude": 49.87961, + "avgLongitude": 13.919796 + }, + { + "id": "U5006", + "name": "Chlustina,rest.", + "avgLatitude": 49.8772659, + "avgLongitude": 13.920084 + }, + { + "id": "U9420", + "name": "Chmeliště", + "avgLatitude": 49.8956642, + "avgLongitude": 15.05632 + }, + { + "id": "U7526", + "name": "Chmelná", + "avgLatitude": 49.6479874, + "avgLongitude": 14.9887352 + }, + { + "id": "U180", + "name": "Chmelnice", + "avgLatitude": 50.09252, + "avgLongitude": 14.4864 + }, + { + "id": "U1221", + "name": "Choceradská", + "avgLatitude": 50.0431442, + "avgLongitude": 14.4902639 + }, + { + "id": "U2047", + "name": "Chocerady", + "avgLatitude": 49.8720932, + "avgLongitude": 14.8026638 + }, + { + "id": "U4146", + "name": "Chocerady", + "avgLatitude": 49.870018, + "avgLongitude": 14.8061714 + }, + { + "id": "U7528", + "name": "Chocerady,Komorní Hrádek", + "avgLatitude": 49.8664055, + "avgLongitude": 14.7985525 + }, + { + "id": "U2003", + "name": "Chocerady,Růženín sídliště", + "avgLatitude": 49.88491, + "avgLongitude": 14.8269272 + }, + { + "id": "U2002", + "name": "Chocerady,Samechov", + "avgLatitude": 49.8794823, + "avgLongitude": 14.8484211 + }, + { + "id": "U7601", + "name": "Chocerady,Vestec", + "avgLatitude": 49.8593979, + "avgLongitude": 14.8247051 + }, + { + "id": "U7602", + "name": "Chocerady,Vestec,osada", + "avgLatitude": 49.8631973, + "avgLongitude": 14.8214121 + }, + { + "id": "U2004", + "name": "Chocerady,Vlkovec,žel.st.", + "avgLatitude": 49.8742752, + "avgLongitude": 14.8142166 + }, + { + "id": "U6380", + "name": "Chocnějovice", + "avgLatitude": 50.5762978, + "avgLongitude": 14.9728889 + }, + { + "id": "U6383", + "name": "Chocnějovice,Drahotice,u kapličky", + "avgLatitude": 50.5806465, + "avgLongitude": 14.9834518 + }, + { + "id": "U6381", + "name": "Chocnějovice,Drahotická", + "avgLatitude": 50.5792465, + "avgLongitude": 14.9796467 + }, + { + "id": "U6378", + "name": "Chocnějovice,Horní Mohelnice", + "avgLatitude": 50.56636, + "avgLongitude": 14.9789515 + }, + { + "id": "U6384", + "name": "Chocnějovice,Křivolačiny", + "avgLatitude": 50.58339, + "avgLongitude": 14.994997 + }, + { + "id": "U6379", + "name": "Chocnějovice,odb.Sovenice", + "avgLatitude": 50.57032, + "avgLongitude": 14.97977 + }, + { + "id": "U6374", + "name": "Chocnějovice,Ouč", + "avgLatitude": 50.5970459, + "avgLongitude": 14.9427624 + }, + { + "id": "U6375", + "name": "Chocnějovice,Rostkov", + "avgLatitude": 50.5897, + "avgLongitude": 14.946434 + }, + { + "id": "U6387", + "name": "Chocnějovice,Sovenice", + "avgLatitude": 50.57223, + "avgLongitude": 14.9935513 + }, + { + "id": "U6388", + "name": "Chocnějovice,Sovenice,dolní rozc.", + "avgLatitude": 50.5692673, + "avgLongitude": 15.0010128 + }, + { + "id": "U6382", + "name": "Chocnějovice,Sovenická", + "avgLatitude": 50.5790176, + "avgLongitude": 14.9801769 + }, + { + "id": "U9111", + "name": "Chodouň", + "avgLatitude": 49.8996124, + "avgLongitude": 13.9822359 + }, + { + "id": "U52", + "name": "Chodov", + "avgLatitude": 50.0312157, + "avgLongitude": 14.49133 + }, + { + "id": "U181", + "name": "Chodovec", + "avgLatitude": 50.0396461, + "avgLongitude": 14.4905281 + }, + { + "id": "U6005", + "name": "Chodovická", + "avgLatitude": 50.1126175, + "avgLongitude": 14.6176739 + }, + { + "id": "U183", + "name": "Chodovská", + "avgLatitude": 50.05655, + "avgLongitude": 14.4702339 + }, + { + "id": "U424", + "name": "Chodovská tvrz", + "avgLatitude": 50.033226, + "avgLongitude": 14.5001049 + }, + { + "id": "U1584", + "name": "Cholupice", + "avgLatitude": 49.98684, + "avgLongitude": 14.4454842 + }, + { + "id": "U4428", + "name": "Cholupické náměstí", + "avgLatitude": 49.9884644, + "avgLongitude": 14.4489479 + }, + { + "id": "U2754", + "name": "Cholupický hřbitov", + "avgLatitude": 49.9842072, + "avgLongitude": 14.4610806 + }, + { + "id": "U186", + "name": "Cholupický vrch", + "avgLatitude": 49.9943161, + "avgLongitude": 14.4346924 + }, + { + "id": "U7603", + "name": "Choratice", + "avgLatitude": 49.8401337, + "avgLongitude": 14.8744812 + }, + { + "id": "U9178", + "name": "Chorušice", + "avgLatitude": 50.3902, + "avgLongitude": 14.6719074 + }, + { + "id": "U9375", + "name": "Chorušice,Choroušky", + "avgLatitude": 50.39837, + "avgLongitude": 14.6647205 + }, + { + "id": "U9180", + "name": "Chorušice,Velký Újezd", + "avgLatitude": 50.4090767, + "avgLongitude": 14.6261692 + }, + { + "id": "U9179", + "name": "Chorušice,Velký Újezd,bytovky", + "avgLatitude": 50.4082565, + "avgLongitude": 14.63155 + }, + { + "id": "U9177", + "name": "Chorušice,Zahájí", + "avgLatitude": 50.3755722, + "avgLongitude": 14.6673908 + }, + { + "id": "U6755", + "name": "Choťánky,u trati", + "avgLatitude": 50.1404877, + "avgLongitude": 15.1638308 + }, + { + "id": "U2459", + "name": "Choťánky,Vrčení", + "avgLatitude": 50.14446, + "avgLongitude": 15.1681576 + }, + { + "id": "U2458", + "name": "Choťánky,Vystrkov", + "avgLatitude": 50.1437035, + "avgLongitude": 15.15481 + }, + { + "id": "U1635", + "name": "Choteč", + "avgLatitude": 49.98537, + "avgLongitude": 14.28337 + }, + { + "id": "U6706", + "name": "Chotěšice", + "avgLatitude": 50.27891, + "avgLongitude": 15.2745905 + }, + { + "id": "U6731", + "name": "Chotěšice,Břístev", + "avgLatitude": 50.2880669, + "avgLongitude": 15.2302217 + }, + { + "id": "U6704", + "name": "Chotěšice,Břístev,hl.sil.", + "avgLatitude": 50.2813072, + "avgLongitude": 15.2531071 + }, + { + "id": "U6709", + "name": "Chotěšice,Malá Strana", + "avgLatitude": 50.26654, + "avgLongitude": 15.2816906 + }, + { + "id": "U6703", + "name": "Chotěšice,Nouzov", + "avgLatitude": 50.27351, + "avgLongitude": 15.2465687 + }, + { + "id": "U6732", + "name": "Chotěšice,Nová Ves", + "avgLatitude": 50.2735329, + "avgLongitude": 15.2994871 + }, + { + "id": "U6707", + "name": "Chotěšice,Nová Ves,odb.", + "avgLatitude": 50.2781, + "avgLongitude": 15.28029 + }, + { + "id": "U6705", + "name": "Chotěšice,škola", + "avgLatitude": 50.27805, + "avgLongitude": 15.2685318 + }, + { + "id": "U2984", + "name": "Chotětov", + "avgLatitude": 50.3396645, + "avgLongitude": 14.8102112 + }, + { + "id": "U6109", + "name": "Chotětov,Hřivno", + "avgLatitude": 50.32357, + "avgLongitude": 14.7679615 + }, + { + "id": "U2555", + "name": "Chotilsko", + "avgLatitude": 49.769413, + "avgLongitude": 14.3527479 + }, + { + "id": "U4742", + "name": "Chotilsko,Křeničná", + "avgLatitude": 49.7658043, + "avgLongitude": 14.3910217 + }, + { + "id": "U4744", + "name": "Chotilsko,Křeničná,Záhoří", + "avgLatitude": 49.76143, + "avgLongitude": 14.3946495 + }, + { + "id": "U4740", + "name": "Chotilsko,Lipí", + "avgLatitude": 49.7651367, + "avgLongitude": 14.3578148 + }, + { + "id": "U4741", + "name": "Chotilsko,Lipí,Besedná", + "avgLatitude": 49.76497, + "avgLongitude": 14.364604 + }, + { + "id": "U2557", + "name": "Chotilsko,Mokrsko", + "avgLatitude": 49.7446976, + "avgLongitude": 14.3361073 + }, + { + "id": "U2556", + "name": "Chotilsko,Prostřední Lhota", + "avgLatitude": 49.753685, + "avgLongitude": 14.3411121 + }, + { + "id": "U4737", + "name": "Chotilsko,Prostřední Lhota,U Hřiště", + "avgLatitude": 49.75415, + "avgLongitude": 14.3358669 + }, + { + "id": "U4739", + "name": "Chotilsko,Sejcká Lhota", + "avgLatitude": 49.7530861, + "avgLongitude": 14.361845 + }, + { + "id": "U4736", + "name": "Chotilsko,Záborná Lhota", + "avgLatitude": 49.7692, + "avgLongitude": 14.3199816 + }, + { + "id": "U4745", + "name": "Chotilsko,Živohošť", + "avgLatitude": 49.7581978, + "avgLongitude": 14.4229536 + }, + { + "id": "U187", + "name": "Chotkovy sady", + "avgLatitude": 50.0951653, + "avgLongitude": 14.4090443 + }, + { + "id": "U9416", + "name": "Chotouchov", + "avgLatitude": 49.9704323, + "avgLongitude": 15.1210794 + }, + { + "id": "U6652", + "name": "Choťovice", + "avgLatitude": 50.14135, + "avgLongitude": 15.3204231 + }, + { + "id": "U4864", + "name": "Choťovice", + "avgLatitude": 50.14602, + "avgLongitude": 15.3290758 + }, + { + "id": "U31358", + "name": "Chotovice,hl.sil.", + "avgLatitude": 50.7432747, + "avgLongitude": 14.5511713 + }, + { + "id": "U32030", + "name": "Chotoviny,Jeníčkova Lhota", + "avgLatitude": 49.4571571, + "avgLongitude": 14.7164536 + }, + { + "id": "U32031", + "name": "Chotoviny,Jeníčkova Lhota,háj.", + "avgLatitude": 49.4587021, + "avgLongitude": 14.7268925 + }, + { + "id": "U31273", + "name": "Chotoviny,rozc.2.0", + "avgLatitude": 49.4727058, + "avgLongitude": 14.6582909 + }, + { + "id": "U7199", + "name": "Chotusice", + "avgLatitude": 49.95279, + "avgLongitude": 15.3941879 + }, + { + "id": "U7197", + "name": "Chotusice,Druhanice", + "avgLatitude": 49.94664, + "avgLongitude": 15.4110813 + }, + { + "id": "U7198", + "name": "Chotusice,k letišti", + "avgLatitude": 49.94713, + "avgLongitude": 15.3943825 + }, + { + "id": "U2896", + "name": "Chotutice", + "avgLatitude": 50.0715256, + "avgLongitude": 14.9964151 + }, + { + "id": "U7606", + "name": "Chotýšany", + "avgLatitude": 49.7438736, + "avgLongitude": 14.8179493 + }, + { + "id": "U7608", + "name": "Chotýšany,Křemení", + "avgLatitude": 49.7459564, + "avgLongitude": 14.7948055 + }, + { + "id": "U7609", + "name": "Chotýšany,Městečko,rozc.", + "avgLatitude": 49.7361679, + "avgLongitude": 14.8194294 + }, + { + "id": "U7607", + "name": "Chotýšany,rozc.", + "avgLatitude": 49.7405624, + "avgLongitude": 14.8110485 + }, + { + "id": "U7610", + "name": "Chotýšany,rozc.Pařezí", + "avgLatitude": 49.7290459, + "avgLongitude": 14.8310261 + }, + { + "id": "U1456", + "name": "Chrást", + "avgLatitude": 50.1176758, + "avgLongitude": 14.9014511 + }, + { + "id": "U7611", + "name": "Chrást", + "avgLatitude": 49.59526, + "avgLongitude": 13.9575205 + }, + { + "id": "U2862", + "name": "Chrást nad Sázavou", + "avgLatitude": 49.8396225, + "avgLongitude": 14.5770321 + }, + { + "id": "U1455", + "name": "Chrást,Host.", + "avgLatitude": 50.1208878, + "avgLongitude": 14.8951626 + }, + { + "id": "U7613", + "name": "Chrást,Lisovice", + "avgLatitude": 49.59108, + "avgLongitude": 13.9680977 + }, + { + "id": "U9520", + "name": "Chrášťany", + "avgLatitude": 50.1428, + "avgLongitude": 13.6631536 + }, + { + "id": "U4471", + "name": "Chrášťany", + "avgLatitude": 49.7927, + "avgLongitude": 14.586688 + }, + { + "id": "U2410", + "name": "Chrášťany", + "avgLatitude": 50.06521, + "avgLongitude": 14.9308815 + }, + { + "id": "U1190", + "name": "Chrášťany", + "avgLatitude": 50.0447922, + "avgLongitude": 14.2591085 + }, + { + "id": "U6810", + "name": "Chrášťany", + "avgLatitude": 50.14556, + "avgLongitude": 13.6700134 + }, + { + "id": "U4472", + "name": "Chrášťany,Benice", + "avgLatitude": 49.7935448, + "avgLongitude": 14.5565224 + }, + { + "id": "U2408", + "name": "Chrášťany,Bylany", + "avgLatitude": 50.0643158, + "avgLongitude": 14.9091616 + }, + { + "id": "U2409", + "name": "Chrášťany,Bylany,Škola", + "avgLatitude": 50.0667419, + "avgLongitude": 14.9074669 + }, + { + "id": "U2411", + "name": "Chrášťany,Chotouň", + "avgLatitude": 50.0671844, + "avgLongitude": 14.956398 + }, + { + "id": "U1644", + "name": "Chrášťany,Mezcestí", + "avgLatitude": 50.04197, + "avgLongitude": 14.253026 + }, + { + "id": "U6809", + "name": "Chrášťany,Nový Dvůr,rozc.", + "avgLatitude": 50.1642838, + "avgLongitude": 13.6663733 + }, + { + "id": "U1968", + "name": "Chrášťany,Protherm", + "avgLatitude": 50.0474167, + "avgLongitude": 14.2642689 + }, + { + "id": "U1643", + "name": "Chrášťany,Scania-Label", + "avgLatitude": 50.05067, + "avgLongitude": 14.272295 + }, + { + "id": "U4473", + "name": "Chrášťany,Soběšovice", + "avgLatitude": 49.7959671, + "avgLongitude": 14.5436563 + }, + { + "id": "U7614", + "name": "Chraštice", + "avgLatitude": 49.5772247, + "avgLongitude": 14.0721731 + }, + { + "id": "U7616", + "name": "Chraštice,Chraštičky", + "avgLatitude": 49.571434, + "avgLongitude": 14.0777626 + }, + { + "id": "U7617", + "name": "Chraštice,Chraštičky,Varkač", + "avgLatitude": 49.5723267, + "avgLongitude": 14.0867405 + }, + { + "id": "U7615", + "name": "Chraštice,Na dole", + "avgLatitude": 49.5819626, + "avgLongitude": 14.072031 + }, + { + "id": "U31616", + "name": "Chrášťovice", + "avgLatitude": 49.3324852, + "avgLongitude": 13.9010267 + }, + { + "id": "U31617", + "name": "Chrášťovice,Klínovice", + "avgLatitude": 49.3131027, + "avgLongitude": 13.8824492 + }, + { + "id": "U6735", + "name": "Chroustov", + "avgLatitude": 50.2872772, + "avgLongitude": 15.3471527 + }, + { + "id": "U2897", + "name": "Chroustov", + "avgLatitude": 50.06496, + "avgLongitude": 14.9972963 + }, + { + "id": "U6736", + "name": "Chroustov,Dvořiště", + "avgLatitude": 50.2763977, + "avgLongitude": 15.3565369 + }, + { + "id": "U31469", + "name": "Chrudim,aut.st.", + "avgLatitude": 49.94996, + "avgLongitude": 15.786087 + }, + { + "id": "U31468", + "name": "Chrudim,Čáslavská", + "avgLatitude": 49.95256, + "avgLongitude": 15.7861567 + }, + { + "id": "U31467", + "name": "Chrudim,Markovice prodejna", + "avgLatitude": 49.95354, + "avgLongitude": 15.7558346 + }, + { + "id": "U4923", + "name": "Chrustenice", + "avgLatitude": 50.00403, + "avgLongitude": 14.1526756 + }, + { + "id": "U4924", + "name": "Chrustenice,Na radosti", + "avgLatitude": 50.0006332, + "avgLongitude": 14.1589851 + }, + { + "id": "U9142", + "name": "Chržín", + "avgLatitude": 50.2950821, + "avgLongitude": 14.2700062 + }, + { + "id": "U9143", + "name": "Chržín,Budihostice", + "avgLatitude": 50.2949333, + "avgLongitude": 14.2533846 + }, + { + "id": "U9144", + "name": "Chržín,u mostu", + "avgLatitude": 50.2965851, + "avgLongitude": 14.2663755 + }, + { + "id": "U31400", + "name": "Chřenovice", + "avgLatitude": 49.7164879, + "avgLongitude": 15.2163076 + }, + { + "id": "U32225", + "name": "Chříč", + "avgLatitude": 49.9719429, + "avgLongitude": 13.6459389 + }, + { + "id": "U6244", + "name": "Chudíř", + "avgLatitude": 50.3086243, + "avgLongitude": 15.0151844 + }, + { + "id": "U31478", + "name": "Chvaletice", + "avgLatitude": 50.03746, + "avgLongitude": 15.4186916 + }, + { + "id": "U31477", + "name": "Chvaletice,Hornická Čtvrť", + "avgLatitude": 50.0214539, + "avgLongitude": 15.4305553 + }, + { + "id": "U188", + "name": "Chvaly", + "avgLatitude": 50.1125832, + "avgLongitude": 14.5959015 + }, + { + "id": "U2227", + "name": "Chvatěruby", + "avgLatitude": 50.23511, + "avgLongitude": 14.3465443 + }, + { + "id": "U4147", + "name": "Chvatěruby", + "avgLatitude": 50.23993, + "avgLongitude": 14.3377314 + }, + { + "id": "U4916", + "name": "Chyňava,Lhotka u Berouna", + "avgLatitude": 49.99578, + "avgLongitude": 14.0918026 + }, + { + "id": "U4917", + "name": "Chyňava,Lhotka u Berouna,náves", + "avgLatitude": 49.99617, + "avgLongitude": 14.09939 + }, + { + "id": "U4914", + "name": "Chyňava,Libečov,náves", + "avgLatitude": 50.02664, + "avgLongitude": 14.097641 + }, + { + "id": "U4911", + "name": "Chyňava,Libečov,u křížku", + "avgLatitude": 50.04315, + "avgLongitude": 14.10265 + }, + { + "id": "U4913", + "name": "Chyňava,Libečov,u mostu", + "avgLatitude": 50.0269547, + "avgLongitude": 14.094676 + }, + { + "id": "U4919", + "name": "Chyňava,Malé Přílepy", + "avgLatitude": 50.0113678, + "avgLongitude": 14.1146469 + }, + { + "id": "U4920", + "name": "Chyňava,Malé Přílepy,Teplá stráň", + "avgLatitude": 50.01033, + "avgLongitude": 14.1355534 + }, + { + "id": "U4912", + "name": "Chyňava,Podkozí", + "avgLatitude": 50.04638, + "avgLongitude": 14.1104946 + }, + { + "id": "U4909", + "name": "Chyňava,sídliště", + "avgLatitude": 50.0256348, + "avgLongitude": 14.06215 + }, + { + "id": "U4910", + "name": "Chyňava,škola", + "avgLatitude": 50.02734, + "avgLongitude": 14.0739794 + }, + { + "id": "U4908", + "name": "Chyňava,u Jonášů", + "avgLatitude": 50.0274963, + "avgLongitude": 14.06979 + }, + { + "id": "U4907", + "name": "Chyňava,u Nováků", + "avgLatitude": 50.02835, + "avgLongitude": 14.07987 + }, + { + "id": "U1178", + "name": "Chýně", + "avgLatitude": 50.0609856, + "avgLongitude": 14.2289944 + }, + { + "id": "U4141", + "name": "Chýně", + "avgLatitude": 50.0589638, + "avgLongitude": 14.2119646 + }, + { + "id": "U4185", + "name": "Chýně jih", + "avgLatitude": 50.051506, + "avgLongitude": 14.2212219 + }, + { + "id": "U1180", + "name": "Chýně,Háje", + "avgLatitude": 50.0587, + "avgLongitude": 14.2201653 + }, + { + "id": "U2568", + "name": "Chýně,Na Vyhlídce", + "avgLatitude": 50.0538177, + "avgLongitude": 14.2263288 + }, + { + "id": "U1177", + "name": "Chýně,Pivovarský dvůr", + "avgLatitude": 50.06256, + "avgLongitude": 14.2324963 + }, + { + "id": "U3206", + "name": "Chýně,Žitná", + "avgLatitude": 50.0597153, + "avgLongitude": 14.243433 + }, + { + "id": "U1200", + "name": "Chýnice", + "avgLatitude": 49.9942627, + "avgLongitude": 14.2645407 + }, + { + "id": "U1199", + "name": "Chýnice,Pod Radnicí", + "avgLatitude": 49.99594, + "avgLongitude": 14.2640638 + }, + { + "id": "U1336", + "name": "Chýnovská", + "avgLatitude": 50.01635, + "avgLongitude": 14.4505339 + }, + { + "id": "U31621", + "name": "Chýstovice", + "avgLatitude": 49.585434, + "avgLongitude": 15.0775471 + }, + { + "id": "U31622", + "name": "Chýstovice,Jedlina,rozc.0.5", + "avgLatitude": 49.583107, + "avgLongitude": 15.0709267 + }, + { + "id": "U31917", + "name": "Chýstovice,rozc.0.5", + "avgLatitude": 49.5879555, + "avgLongitude": 15.0789146 + }, + { + "id": "U31624", + "name": "Chýstovice,rozc.Chyšná", + "avgLatitude": 49.577877, + "avgLongitude": 15.0921822 + }, + { + "id": "U32358", + "name": "Chyše", + "avgLatitude": 50.1110573, + "avgLongitude": 13.247839 + }, + { + "id": "U31606", + "name": "Chyšky,Hněvanice,rozc.Hrazánky 1.4", + "avgLatitude": 49.51316, + "avgLongitude": 14.35925 + }, + { + "id": "U190", + "name": "I. P. Pavlova", + "avgLatitude": 50.07511, + "avgLongitude": 14.4304152 + }, + { + "id": "U908", + "name": "IKEM", + "avgLatitude": 50.0217, + "avgLongitude": 14.4623508 + }, + { + "id": "U655", + "name": "Invalidovna", + "avgLatitude": 50.097393, + "avgLongitude": 14.4643278 + }, + { + "id": "U191", + "name": "Italská", + "avgLatitude": 50.0781631, + "avgLongitude": 14.4360409 + }, + { + "id": "U2601", + "name": "Ivančická", + "avgLatitude": 50.14219, + "avgLongitude": 14.5119562 + }, + { + "id": "U6239", + "name": "Jabkenice", + "avgLatitude": 50.325882, + "avgLongitude": 15.0134087 + }, + { + "id": "U6242", + "name": "Jabkenice,hájovna", + "avgLatitude": 50.3070221, + "avgLongitude": 15.0363522 + }, + { + "id": "U6240", + "name": "Jabkenice,křižovatka", + "avgLatitude": 50.32215, + "avgLongitude": 15.0135059 + }, + { + "id": "U6241", + "name": "Jabkenice,rozc.Charvatce", + "avgLatitude": 50.3219147, + "avgLongitude": 15.0125351 + }, + { + "id": "U31202", + "name": "Jablonec n.Jiz.,nám.", + "avgLatitude": 50.703167, + "avgLongitude": 15.4295406 + }, + { + "id": "U7618", + "name": "Jablonná", + "avgLatitude": 49.6614456, + "avgLongitude": 14.1386108 + }, + { + "id": "U7620", + "name": "Jablonná,Horní Hbity", + "avgLatitude": 49.6535645, + "avgLongitude": 14.14963 + }, + { + "id": "U7619", + "name": "Jablonná,Placy", + "avgLatitude": 49.6702423, + "avgLongitude": 14.1092634 + }, + { + "id": "U31380", + "name": "Jablonné v Podj.,autoservis", + "avgLatitude": 50.7630539, + "avgLongitude": 14.7598953 + }, + { + "id": "U31379", + "name": "Jablonné v Podj.,Postřelná,hl.sil.", + "avgLatitude": 50.735302, + "avgLongitude": 14.7581663 + }, + { + "id": "U31381", + "name": "Jablonné v Podj.,žel.st.", + "avgLatitude": 50.7689247, + "avgLongitude": 14.75872 + }, + { + "id": "U193", + "name": "Jahodnice", + "avgLatitude": 50.08753, + "avgLongitude": 14.5579243 + }, + { + "id": "U338", + "name": "Jakobiho", + "avgLatitude": 50.03325, + "avgLongitude": 14.5595608 + }, + { + "id": "U194", + "name": "Jalodvorská", + "avgLatitude": 50.0136642, + "avgLongitude": 14.4574261 + }, + { + "id": "U354", + "name": "Jana Masaryka", + "avgLatitude": 50.07329, + "avgLongitude": 14.4410849 + }, + { + "id": "U6562", + "name": "Jankov", + "avgLatitude": 49.6531677, + "avgLongitude": 14.73081 + }, + { + "id": "U6564", + "name": "Jankov,Bedřichovice", + "avgLatitude": 49.674778, + "avgLongitude": 14.7775755 + }, + { + "id": "U6565", + "name": "Jankov,Čestín", + "avgLatitude": 49.67331, + "avgLongitude": 14.7638235 + }, + { + "id": "U6566", + "name": "Jankov,Jankovská Lhota", + "avgLatitude": 49.6653366, + "avgLongitude": 14.718812 + }, + { + "id": "U6568", + "name": "Jankov,Jitra", + "avgLatitude": 49.6646652, + "avgLongitude": 14.7310791 + }, + { + "id": "U6567", + "name": "Jankov,Malostranská", + "avgLatitude": 49.6582832, + "avgLongitude": 14.7264938 + }, + { + "id": "U6569", + "name": "Jankov,Nosákov", + "avgLatitude": 49.6280823, + "avgLongitude": 14.7482395 + }, + { + "id": "U6570", + "name": "Jankov,Odlochovice", + "avgLatitude": 49.6281548, + "avgLongitude": 14.763855 + }, + { + "id": "U6571", + "name": "Jankov,Otradovice", + "avgLatitude": 49.6488571, + "avgLongitude": 14.7018909 + }, + { + "id": "U6572", + "name": "Jankov,Pičín", + "avgLatitude": 49.67678, + "avgLongitude": 14.7365189 + }, + { + "id": "U6563", + "name": "Jankov,pivovar", + "avgLatitude": 49.65205, + "avgLongitude": 14.7253513 + }, + { + "id": "U196", + "name": "Jankovcova", + "avgLatitude": 50.10953, + "avgLongitude": 14.4443645 + }, + { + "id": "U6075", + "name": "Janov", + "avgLatitude": 50.21084, + "avgLongitude": 13.6375237 + }, + { + "id": "U1013", + "name": "Janovská", + "avgLatitude": 50.0409851, + "avgLongitude": 14.5669489 + }, + { + "id": "U969", + "name": "Jarníkova", + "avgLatitude": 50.02665, + "avgLongitude": 14.4941177 + }, + { + "id": "U9121", + "name": "Jarpice", + "avgLatitude": 50.3193436, + "avgLongitude": 14.0862417 + }, + { + "id": "U7621", + "name": "Javorník", + "avgLatitude": 49.6864929, + "avgLongitude": 15.0268326 + }, + { + "id": "U7622", + "name": "Javorník,u mostu", + "avgLatitude": 49.6980743, + "avgLongitude": 15.0197945 + }, + { + "id": "U31401", + "name": "Jedlá", + "avgLatitude": 49.73812, + "avgLongitude": 15.2364206 + }, + { + "id": "U31402", + "name": "Jedlá,Horečky", + "avgLatitude": 49.73089, + "avgLongitude": 15.2457952 + }, + { + "id": "U9244", + "name": "Jedomělice", + "avgLatitude": 50.233223, + "avgLongitude": 13.9739323 + }, + { + "id": "U9246", + "name": "Jedomělice,u hřiště", + "avgLatitude": 50.23075, + "avgLongitude": 13.9699345 + }, + { + "id": "U422", + "name": "Jemnická", + "avgLatitude": 50.04941, + "avgLongitude": 14.45908 + }, + { + "id": "U4772", + "name": "Jemníky", + "avgLatitude": 50.208725, + "avgLongitude": 14.1209545 + }, + { + "id": "U4774", + "name": "Jemníky,křiž.Knovíz", + "avgLatitude": 50.2156, + "avgLongitude": 14.1237774 + }, + { + "id": "U4807", + "name": "Jemníky,na Mašině", + "avgLatitude": 50.2094727, + "avgLongitude": 14.110384 + }, + { + "id": "U1215", + "name": "Jeneč", + "avgLatitude": 50.0873337, + "avgLongitude": 14.2152843 + }, + { + "id": "U2118", + "name": "Jeneč", + "avgLatitude": 50.0942268, + "avgLongitude": 14.2119141 + }, + { + "id": "U4127", + "name": "Jeneč,Komerční zóna", + "avgLatitude": 50.09263, + "avgLongitude": 14.2064056 + }, + { + "id": "U1216", + "name": "Jeneč,Lidická", + "avgLatitude": 50.0893936, + "avgLongitude": 14.2143955 + }, + { + "id": "U2117", + "name": "Jeneč,vysílací středisko", + "avgLatitude": 50.0880241, + "avgLongitude": 14.1985989 + }, + { + "id": "U199", + "name": "Jenerálka", + "avgLatitude": 50.10763, + "avgLongitude": 14.3536606 + }, + { + "id": "U1821", + "name": "Jenštejn", + "avgLatitude": 50.1530037, + "avgLongitude": 14.6126 + }, + { + "id": "U2193", + "name": "Jenštejn,Dehtáry", + "avgLatitude": 50.14285, + "avgLongitude": 14.6336174 + }, + { + "id": "U2304", + "name": "Jenštejn,Domov seniorů", + "avgLatitude": 50.1542969, + "avgLongitude": 14.6007462 + }, + { + "id": "U2471", + "name": "Jenštejn,Hradní", + "avgLatitude": 50.1498337, + "avgLongitude": 14.61877 + }, + { + "id": "U200", + "name": "Jeřická", + "avgLatitude": 50.11006, + "avgLongitude": 14.6077118 + }, + { + "id": "U31079", + "name": "Jeřmanice,hl.sil.", + "avgLatitude": 50.6999054, + "avgLongitude": 15.0977659 + }, + { + "id": "U9546", + "name": "Jesenice", + "avgLatitude": 50.09322, + "avgLongitude": 13.4719448 + }, + { + "id": "U7623", + "name": "Jesenice", + "avgLatitude": 49.6066971, + "avgLongitude": 14.47618 + }, + { + "id": "U1330", + "name": "Jesenice", + "avgLatitude": 49.9677963, + "avgLongitude": 14.5149164 + }, + { + "id": "U1335", + "name": "Jesenice,Belnická", + "avgLatitude": 49.96931, + "avgLongitude": 14.5285015 + }, + { + "id": "U7629", + "name": "Jesenice,Boudy", + "avgLatitude": 49.5838737, + "avgLongitude": 14.4798737 + }, + { + "id": "U1332", + "name": "Jesenice,Bytovky", + "avgLatitude": 49.9703026, + "avgLongitude": 14.508007 + }, + { + "id": "U7624", + "name": "Jesenice,Dobrošovice", + "avgLatitude": 49.5970726, + "avgLongitude": 14.4946079 + }, + { + "id": "U7625", + "name": "Jesenice,Doublovičky", + "avgLatitude": 49.6031342, + "avgLongitude": 14.4826059 + }, + { + "id": "U1531", + "name": "Jesenice,Horní Jirčany", + "avgLatitude": 49.9522133, + "avgLongitude": 14.5375328 + }, + { + "id": "U1532", + "name": "Jesenice,Horní Jirčany,Vodárna", + "avgLatitude": 49.94632, + "avgLongitude": 14.5431385 + }, + { + "id": "U6859", + "name": "Jesenice,Chotěšov", + "avgLatitude": 50.1203041, + "avgLongitude": 13.4810905 + }, + { + "id": "U1327", + "name": "Jesenice,Kocanda", + "avgLatitude": 49.97107, + "avgLongitude": 14.541832 + }, + { + "id": "U7628", + "name": "Jesenice,Martinice", + "avgLatitude": 49.5892029, + "avgLongitude": 14.4777374 + }, + { + "id": "U7626", + "name": "Jesenice,Mezné", + "avgLatitude": 49.6193237, + "avgLongitude": 14.4787416 + }, + { + "id": "U6857", + "name": "Jesenice,nám.", + "avgLatitude": 50.0982056, + "avgLongitude": 13.4713182 + }, + { + "id": "U1329", + "name": "Jesenice,Osnice", + "avgLatitude": 49.9698639, + "avgLongitude": 14.5515356 + }, + { + "id": "U1328", + "name": "Jesenice,Osnice,Hřbitov", + "avgLatitude": 49.97377, + "avgLongitude": 14.54948 + }, + { + "id": "U6864", + "name": "Jesenice,Podbořánky", + "avgLatitude": 50.05234, + "avgLongitude": 13.4509354 + }, + { + "id": "U6861", + "name": "Jesenice,Tlestky", + "avgLatitude": 50.0745468, + "avgLongitude": 13.4645605 + }, + { + "id": "U6858", + "name": "Jesenice,u hřbitova", + "avgLatitude": 50.10778, + "avgLongitude": 13.482542 + }, + { + "id": "U1322", + "name": "Jesenice,Zdiměřice,bytovky", + "avgLatitude": 49.9833832, + "avgLongitude": 14.5254383 + }, + { + "id": "U3292", + "name": "Jesenice,Zdiměřice,Canadian School", + "avgLatitude": 49.9749641, + "avgLongitude": 14.5361347 + }, + { + "id": "U4437", + "name": "Jesenice,Zdiměřice,Sportovní areál", + "avgLatitude": 49.9883652, + "avgLongitude": 14.52139 + }, + { + "id": "U1326", + "name": "Jesenice,Zdiměřice,u rybníka", + "avgLatitude": 49.9787025, + "avgLongitude": 14.5318594 + }, + { + "id": "U671", + "name": "Jesenická", + "avgLatitude": 50.0572052, + "avgLongitude": 14.4935894 + }, + { + "id": "U6614", + "name": "Jestřabí Lhota", + "avgLatitude": 50.0898743, + "avgLongitude": 15.2605543 + }, + { + "id": "U31247", + "name": "Jestřabí v Krk.,Křížlice,host.", + "avgLatitude": 50.6625977, + "avgLongitude": 15.5266666 + }, + { + "id": "U31246", + "name": "Jestřabí v Krk.,Křížlice,myslivna", + "avgLatitude": 50.6504059, + "avgLongitude": 15.5209713 + }, + { + "id": "U31351", + "name": "Jestřebí,křiž.", + "avgLatitude": 50.6094933, + "avgLongitude": 14.5795422 + }, + { + "id": "U31349", + "name": "Jestřebí,Podolec", + "avgLatitude": 50.5904846, + "avgLongitude": 14.5522022 + }, + { + "id": "U31350", + "name": "Jestřebí,Újezd", + "avgLatitude": 50.6024628, + "avgLongitude": 14.5660305 + }, + { + "id": "U6599", + "name": "Ješetice", + "avgLatitude": 49.5807037, + "avgLongitude": 14.6061039 + }, + { + "id": "U4081", + "name": "Ješetice,Radíč", + "avgLatitude": 49.58565, + "avgLongitude": 14.5921907 + }, + { + "id": "U2019", + "name": "Jevany", + "avgLatitude": 49.969635, + "avgLongitude": 14.8096333 + }, + { + "id": "U2076", + "name": "Jevany,Bohumil", + "avgLatitude": 49.9777222, + "avgLongitude": 14.8394117 + }, + { + "id": "U2088", + "name": "Jevany,Černokostelecká", + "avgLatitude": 49.971344, + "avgLongitude": 14.8169327 + }, + { + "id": "U2078", + "name": "Jevany,Lesní podnik", + "avgLatitude": 49.9778976, + "avgLongitude": 14.8291693 + }, + { + "id": "U2020", + "name": "Jevany,Penčice", + "avgLatitude": 49.9582062, + "avgLongitude": 14.8209562 + }, + { + "id": "U2077", + "name": "Jevany,Smrčiny", + "avgLatitude": 49.98349, + "avgLongitude": 14.8373375 + }, + { + "id": "U2018", + "name": "Jevany,Spojovací", + "avgLatitude": 49.9751244, + "avgLongitude": 14.7954369 + }, + { + "id": "U4370", + "name": "Jeviněves", + "avgLatitude": 50.3449821, + "avgLongitude": 14.3380909 + }, + { + "id": "U201", + "name": "Jezerka", + "avgLatitude": 50.0573425, + "avgLongitude": 14.44305 + }, + { + "id": "U31630", + "name": "Ježov", + "avgLatitude": 49.6127853, + "avgLongitude": 15.2337732 + }, + { + "id": "U1283", + "name": "Ježovická", + "avgLatitude": 50.0696869, + "avgLongitude": 14.649828 + }, + { + "id": "U31970", + "name": "Jičín", + "avgLatitude": 50.4304733, + "avgLongitude": 15.3612108 + }, + { + "id": "U31013", + "name": "Jičín,aut.st.", + "avgLatitude": 50.43409, + "avgLongitude": 15.3555374 + }, + { + "id": "U31012", + "name": "Jičín,Komenského nám.", + "avgLatitude": 50.4389, + "avgLongitude": 15.3510456 + }, + { + "id": "U31011", + "name": "Jičín,Koněvova", + "avgLatitude": 50.44146, + "avgLongitude": 15.344203 + }, + { + "id": "U5055", + "name": "Jičíněves", + "avgLatitude": 50.3739853, + "avgLongitude": 15.3366928 + }, + { + "id": "U9564", + "name": "Jíkev", + "avgLatitude": 50.2625275, + "avgLongitude": 15.0568886 + }, + { + "id": "U4161", + "name": "Jíkev", + "avgLatitude": 50.2391548, + "avgLongitude": 15.0518208 + }, + { + "id": "U9565", + "name": "Jíkev,u Křivánků", + "avgLatitude": 50.25785, + "avgLongitude": 15.0549126 + }, + { + "id": "U9563", + "name": "Jíkev,u Školy", + "avgLatitude": 50.26506, + "avgLongitude": 15.0602713 + }, + { + "id": "U31019", + "name": "Jilemnice,aut.nádr.", + "avgLatitude": 50.6068878, + "avgLongitude": 15.5067616 + }, + { + "id": "U31020", + "name": "Jilemnice,Hrabačov,křiž.", + "avgLatitude": 50.6210938, + "avgLongitude": 15.50779 + }, + { + "id": "U2759", + "name": "Jilemnická", + "avgLatitude": 50.1368866, + "avgLongitude": 14.5501881 + }, + { + "id": "U1936", + "name": "Jílové u Prahy", + "avgLatitude": 49.8779869, + "avgLongitude": 14.5000629 + }, + { + "id": "U1572", + "name": "Jílové u Prahy,Čs.armády", + "avgLatitude": 49.8952637, + "avgLongitude": 14.498704 + }, + { + "id": "U1934", + "name": "Jílové u Prahy,Hřbitov", + "avgLatitude": 49.8956451, + "avgLongitude": 14.4783058 + }, + { + "id": "U1586", + "name": "Jílové u Prahy,Kamenná Vrata", + "avgLatitude": 49.89897, + "avgLongitude": 14.468668 + }, + { + "id": "U2598", + "name": "Jílové u Prahy,Kovo", + "avgLatitude": 49.8991165, + "avgLongitude": 14.47802 + }, + { + "id": "U1931", + "name": "Jílové u Prahy,Luka p.Medníkem", + "avgLatitude": 49.87263, + "avgLongitude": 14.4670477 + }, + { + "id": "U1587", + "name": "Jílové u Prahy,Luka p.Medníkem,Nádraží", + "avgLatitude": 49.866272, + "avgLongitude": 14.4621229 + }, + { + "id": "U2109", + "name": "Jílové u Prahy,Náměstí", + "avgLatitude": 49.8950539, + "avgLongitude": 14.493144 + }, + { + "id": "U2108", + "name": "Jílové u Prahy,Pražská", + "avgLatitude": 49.89864, + "avgLongitude": 14.4938784 + }, + { + "id": "U2606", + "name": "Jílové u Prahy,Průmyslová", + "avgLatitude": 49.90511, + "avgLongitude": 14.4875851 + }, + { + "id": "U2107", + "name": "Jílové u Prahy,Radlík", + "avgLatitude": 49.9073524, + "avgLongitude": 14.4920321 + }, + { + "id": "U2106", + "name": "Jílové u Prahy,Rozc.Radlík", + "avgLatitude": 49.91245, + "avgLongitude": 14.49903 + }, + { + "id": "U1932", + "name": "Jílové u Prahy,Studené,Obec", + "avgLatitude": 49.8868256, + "avgLongitude": 14.476491 + }, + { + "id": "U1933", + "name": "Jílové u Prahy,Studené,Závod", + "avgLatitude": 49.88316, + "avgLongitude": 14.4810085 + }, + { + "id": "U2100", + "name": "Jílové u Prahy,Učiliště", + "avgLatitude": 49.8973846, + "avgLongitude": 14.4852047 + }, + { + "id": "U5931", + "name": "Jílové u Prahy,Za Humny", + "avgLatitude": 49.90219, + "avgLongitude": 14.4952621 + }, + { + "id": "U1739", + "name": "Jíloviště", + "avgLatitude": 49.927906, + "avgLongitude": 14.3432236 + }, + { + "id": "U1702", + "name": "Jíloviště,Cukrák", + "avgLatitude": 49.93485, + "avgLongitude": 14.3569126 + }, + { + "id": "U1703", + "name": "Jíloviště,Hl.sil.", + "avgLatitude": 49.9289, + "avgLongitude": 14.342453 + }, + { + "id": "U1704", + "name": "Jíloviště,Rozcestí Trnová", + "avgLatitude": 49.92121, + "avgLongitude": 14.3363 + }, + { + "id": "U4200", + "name": "Jíloviště,U Mostu", + "avgLatitude": 49.9256973, + "avgLongitude": 14.3384571 + }, + { + "id": "U716", + "name": "Jíloviště,Výzkumný ústav", + "avgLatitude": 49.942543, + "avgLongitude": 14.39223 + }, + { + "id": "U879", + "name": "Jílovská", + "avgLatitude": 50.0266342, + "avgLongitude": 14.4301157 + }, + { + "id": "U9531", + "name": "Jimlín", + "avgLatitude": 50.32649, + "avgLongitude": 13.7510042 + }, + { + "id": "U3285", + "name": "Jince", + "avgLatitude": 49.78221, + "avgLongitude": 13.987299 + }, + { + "id": "U9799", + "name": "Jince,Mlýn", + "avgLatitude": 49.796566, + "avgLongitude": 13.9786959 + }, + { + "id": "U9798", + "name": "Jince,Nám.", + "avgLatitude": 49.79097, + "avgLongitude": 13.97748 + }, + { + "id": "U9801", + "name": "Jince,Plešivec", + "avgLatitude": 49.79751, + "avgLongitude": 14.0000381 + }, + { + "id": "U9800", + "name": "Jince,Rejkovice,lopatárna", + "avgLatitude": 49.81572, + "avgLongitude": 13.9674683 + }, + { + "id": "U3284", + "name": "Jince,Rejkovice,žel.st.", + "avgLatitude": 49.80821, + "avgLongitude": 13.9691334 + }, + { + "id": "U9797", + "name": "Jince,Sokolovna", + "avgLatitude": 49.7856941, + "avgLongitude": 13.9795008 + }, + { + "id": "U31456", + "name": "Jindřichův Hradec,aut.nádr.", + "avgLatitude": 49.1540527, + "avgLongitude": 15.0046377 + }, + { + "id": "U31455", + "name": "Jindřichův Hradec,Děbolín", + "avgLatitude": 49.1591949, + "avgLongitude": 14.9559383 + }, + { + "id": "U203", + "name": "Jindřišská", + "avgLatitude": 50.0852, + "avgLongitude": 14.4304714 + }, + { + "id": "U4142", + "name": "Jinočany", + "avgLatitude": 50.02899, + "avgLongitude": 14.2627382 + }, + { + "id": "U1188", + "name": "Jinočany,Hlavní", + "avgLatitude": 50.03151, + "avgLongitude": 14.2723455 + }, + { + "id": "U5948", + "name": "Jinočany,Logport", + "avgLatitude": 50.0331421, + "avgLongitude": 14.2762976 + }, + { + "id": "U4253", + "name": "Jinočany,nádraží", + "avgLatitude": 50.0293846, + "avgLongitude": 14.2631063 + }, + { + "id": "U1189", + "name": "Jinočany,náměstí", + "avgLatitude": 50.032692, + "avgLongitude": 14.2677736 + }, + { + "id": "U4254", + "name": "Jinočany,Žižkova", + "avgLatitude": 50.0357361, + "avgLongitude": 14.263442 + }, + { + "id": "U685", + "name": "Jinonice", + "avgLatitude": 50.0544548, + "avgLongitude": 14.3706169 + }, + { + "id": "U206", + "name": "Jinonická", + "avgLatitude": 50.0693855, + "avgLongitude": 14.3775167 + }, + { + "id": "U207", + "name": "Jiráskova čtvrť", + "avgLatitude": 50.0940628, + "avgLongitude": 14.5461521 + }, + { + "id": "U208", + "name": "Jiráskovo náměstí", + "avgLatitude": 50.0759621, + "avgLongitude": 14.4138718 + }, + { + "id": "U1009", + "name": "Jirčanská", + "avgLatitude": 50.00598, + "avgLongitude": 14.45903 + }, + { + "id": "U1606", + "name": "Jirny", + "avgLatitude": 50.1157837, + "avgLongitude": 14.698555 + }, + { + "id": "U4173", + "name": "Jirny,Kulturní dům", + "avgLatitude": 50.118103, + "avgLongitude": 14.69603 + }, + { + "id": "U5964", + "name": "Jirny,LE&CO", + "avgLatitude": 50.12157, + "avgLongitude": 14.6802149 + }, + { + "id": "U2451", + "name": "Jirny,Logistický park", + "avgLatitude": 50.12504, + "avgLongitude": 14.6897945 + }, + { + "id": "U6056", + "name": "Jirny,Luční", + "avgLatitude": 50.1108665, + "avgLongitude": 14.702816 + }, + { + "id": "U1608", + "name": "Jirny,Nové Jirny,Hájovna", + "avgLatitude": 50.10166, + "avgLongitude": 14.711134 + }, + { + "id": "U1607", + "name": "Jirny,Nové Jirny,Kaplička", + "avgLatitude": 50.103714, + "avgLongitude": 14.709013 + }, + { + "id": "U2452", + "name": "Jirny,Rozc.", + "avgLatitude": 50.1263657, + "avgLongitude": 14.698864 + }, + { + "id": "U1605", + "name": "Jirny,Zámek", + "avgLatitude": 50.11431, + "avgLongitude": 14.68998 + }, + { + "id": "U31382", + "name": "Jiřetín p.Jedlovou,Lesné", + "avgLatitude": 50.8638229, + "avgLongitude": 14.5876274 + }, + { + "id": "U1800", + "name": "Jiřice", + "avgLatitude": 50.23881, + "avgLongitude": 14.5466919 + }, + { + "id": "U2476", + "name": "Jiřice", + "avgLatitude": 50.252182, + "avgLongitude": 14.8332586 + }, + { + "id": "U31636", + "name": "Jiřice", + "avgLatitude": 49.55342, + "avgLongitude": 15.3182554 + }, + { + "id": "U32173", + "name": "Jiřice,Močidla", + "avgLatitude": 49.5391464, + "avgLongitude": 15.2953186 + }, + { + "id": "U31637", + "name": "Jiřice,Rokosky", + "avgLatitude": 49.5558929, + "avgLongitude": 15.2916594 + }, + { + "id": "U32174", + "name": "Jiřice,rozc.1.5", + "avgLatitude": 49.5398331, + "avgLongitude": 15.3087578 + }, + { + "id": "U209", + "name": "Jiřího z Poděbrad", + "avgLatitude": 50.0775261, + "avgLongitude": 14.44971 + }, + { + "id": "U31639", + "name": "Jistebnice", + "avgLatitude": 49.4856033, + "avgLongitude": 14.5275707 + }, + { + "id": "U31641", + "name": "Jistebnice,Hodkov", + "avgLatitude": 49.4951935, + "avgLongitude": 14.49494 + }, + { + "id": "U32059", + "name": "Jistebnice,Hůrka", + "avgLatitude": 49.47032, + "avgLongitude": 14.5472527 + }, + { + "id": "U32058", + "name": "Jistebnice,Makov", + "avgLatitude": 49.4588623, + "avgLongitude": 14.5481777 + }, + { + "id": "U31642", + "name": "Jistebnice,Makov,Pazderna", + "avgLatitude": 49.47474, + "avgLongitude": 14.5596428 + }, + { + "id": "U31643", + "name": "Jistebnice,Tisová rozc.1.0", + "avgLatitude": 49.4803, + "avgLongitude": 14.54774 + }, + { + "id": "U31644", + "name": "Jistebnice,Vlásenice", + "avgLatitude": 49.4665451, + "avgLongitude": 14.5649967 + }, + { + "id": "U32057", + "name": "Jistebnice,Vlásenice,Makov rozc.1.5", + "avgLatitude": 49.4675636, + "avgLongitude": 14.561162 + }, + { + "id": "U31645", + "name": "Jistebnice,Zvěstonín", + "avgLatitude": 49.48766, + "avgLongitude": 14.5031013 + }, + { + "id": "U31640", + "name": "Jistebnice,Žofín", + "avgLatitude": 49.4832458, + "avgLongitude": 14.5322218 + }, + { + "id": "U1087", + "name": "Jitřní", + "avgLatitude": 50.0242653, + "avgLongitude": 14.41312 + }, + { + "id": "U9867", + "name": "Jivina", + "avgLatitude": 49.7973938, + "avgLongitude": 13.8347244 + }, + { + "id": "U6370", + "name": "Jivina", + "avgLatitude": 50.554882, + "avgLongitude": 14.9464846 + }, + { + "id": "U104", + "name": "Jiviny", + "avgLatitude": 50.0772934, + "avgLongitude": 14.3037071 + }, + { + "id": "U1917", + "name": "Jizbice,hl.sil.", + "avgLatitude": 50.2519379, + "avgLongitude": 14.9944487 + }, + { + "id": "U1887", + "name": "Jizbice,Zavadilka", + "avgLatitude": 50.256134, + "avgLongitude": 14.9848394 + }, + { + "id": "U3237", + "name": "Jizbická", + "avgLatitude": 50.1101646, + "avgLongitude": 14.622798 + }, + { + "id": "U9296", + "name": "Jizerní Vtelno", + "avgLatitude": 50.36915, + "avgLongitude": 14.8519716 + }, + { + "id": "U9297", + "name": "Jizerní Vtelno,Viadukt", + "avgLatitude": 50.3712234, + "avgLongitude": 14.8650932 + }, + { + "id": "U210", + "name": "Jižní Město", + "avgLatitude": 50.0343781, + "avgLongitude": 14.5379887 + }, + { + "id": "U212", + "name": "Jordánská", + "avgLatitude": 50.11104, + "avgLongitude": 14.5627928 + }, + { + "id": "U1406", + "name": "K Austisu", + "avgLatitude": 50.02118, + "avgLongitude": 14.3411369 + }, + { + "id": "U214", + "name": "K Cikánce", + "avgLatitude": 49.9976273, + "avgLongitude": 14.3417339 + }, + { + "id": "U1398", + "name": "K Drsnici", + "avgLatitude": 50.14268, + "avgLongitude": 14.384613 + }, + { + "id": "U215", + "name": "K Dubečku", + "avgLatitude": 50.0553246, + "avgLongitude": 14.5644 + }, + { + "id": "U786", + "name": "K Fialce", + "avgLatitude": 50.0557175, + "avgLongitude": 14.3294563 + }, + { + "id": "U1210", + "name": "K Hájům", + "avgLatitude": 50.05509, + "avgLongitude": 14.3251629 + }, + { + "id": "U216", + "name": "K Holyni", + "avgLatitude": 50.020565, + "avgLongitude": 14.3600588 + }, + { + "id": "U1399", + "name": "K Horoměřicům", + "avgLatitude": 50.13231, + "avgLongitude": 14.3687382 + }, + { + "id": "U2706", + "name": "K Housličkám", + "avgLatitude": 50.129528, + "avgLongitude": 14.3667336 + }, + { + "id": "U1701", + "name": "K Chatám", + "avgLatitude": 49.94793, + "avgLongitude": 14.3752937 + }, + { + "id": "U3243", + "name": "K Juliáně", + "avgLatitude": 50.1177864, + "avgLongitude": 14.3011513 + }, + { + "id": "U3014", + "name": "K Lesoparku", + "avgLatitude": 50.0498924, + "avgLongitude": 14.5385551 + }, + { + "id": "U218", + "name": "K Letišti", + "avgLatitude": 50.0960464, + "avgLongitude": 14.29293 + }, + { + "id": "U1393", + "name": "K Letňanům", + "avgLatitude": 50.14351, + "avgLongitude": 14.484067 + }, + { + "id": "U22", + "name": "K Lipanům", + "avgLatitude": 50.0159149, + "avgLongitude": 14.6064758 + }, + { + "id": "U1233", + "name": "K Netlukám", + "avgLatitude": 50.0331726, + "avgLongitude": 14.6093388 + }, + { + "id": "U486", + "name": "K Noskovně", + "avgLatitude": 50.11145, + "avgLongitude": 14.3250923 + }, + { + "id": "U219", + "name": "K Obecním hájovnám", + "avgLatitude": 50.0430832, + "avgLongitude": 14.5157757 + }, + { + "id": "U220", + "name": "K Pitkovičkám", + "avgLatitude": 50.0246925, + "avgLongitude": 14.5907927 + }, + { + "id": "U1294", + "name": "K Říčanům", + "avgLatitude": 50.0154266, + "avgLongitude": 14.6322727 + }, + { + "id": "U222", + "name": "K Teplárně", + "avgLatitude": 50.1688, + "avgLongitude": 14.5211849 + }, + { + "id": "U505", + "name": "K Třebonicům", + "avgLatitude": 50.0366859, + "avgLongitude": 14.2991123 + }, + { + "id": "U223", + "name": "K Tuchoměřicům", + "avgLatitude": 50.11599, + "avgLongitude": 14.2913837 + }, + { + "id": "U224", + "name": "K Vystrkovu", + "avgLatitude": 49.9995956, + "avgLongitude": 14.4104729 + }, + { + "id": "U4170", + "name": "K Zelenči", + "avgLatitude": 50.1232872, + "avgLongitude": 14.62397 + }, + { + "id": "U225", + "name": "K Žižkovu", + "avgLatitude": 50.0994949, + "avgLongitude": 14.4964142 + }, + { + "id": "U1401", + "name": "Kabešova", + "avgLatitude": 50.10239, + "avgLongitude": 14.5081673 + }, + { + "id": "U227", + "name": "Kablo", + "avgLatitude": 50.0621643, + "avgLongitude": 14.5375738 + }, + { + "id": "U9404", + "name": "Kácov", + "avgLatitude": 49.78675, + "avgLongitude": 15.0188122 + }, + { + "id": "U9405", + "name": "Kácov zast.", + "avgLatitude": 49.775692, + "avgLongitude": 15.0309362 + }, + { + "id": "U6022", + "name": "Kácov,Jirsíkova", + "avgLatitude": 49.7781219, + "avgLongitude": 15.0208263 + }, + { + "id": "U6023", + "name": "Kácov,nám.", + "avgLatitude": 49.7799263, + "avgLongitude": 15.0289936 + }, + { + "id": "U7186", + "name": "Kácov,Račíněves", + "avgLatitude": 49.77616, + "avgLongitude": 15.0385475 + }, + { + "id": "U9934", + "name": "Kácov,Zderadinky", + "avgLatitude": 49.80094, + "avgLongitude": 15.0266495 + }, + { + "id": "U9933", + "name": "Kácov,Zderadiny", + "avgLatitude": 49.8068924, + "avgLongitude": 15.0285034 + }, + { + "id": "U7187", + "name": "Kácov,Zliv", + "avgLatitude": 49.76751, + "avgLongitude": 15.0255623 + }, + { + "id": "U228", + "name": "Kačerov", + "avgLatitude": 50.0418549, + "avgLongitude": 14.4603252 + }, + { + "id": "U2898", + "name": "Kačice", + "avgLatitude": 50.16237, + "avgLongitude": 13.9880342 + }, + { + "id": "U32234", + "name": "Kadaň,aut.nádr.", + "avgLatitude": 50.3802757, + "avgLongitude": 13.2759857 + }, + { + "id": "U32318", + "name": "Kadaň,u mostu", + "avgLatitude": 50.37566, + "avgLongitude": 13.2745085 + }, + { + "id": "U9477", + "name": "Kadlín", + "avgLatitude": 50.39939, + "avgLongitude": 14.6990309 + }, + { + "id": "U9476", + "name": "Kadlín,Ledce", + "avgLatitude": 50.4117432, + "avgLongitude": 14.6888723 + }, + { + "id": "U229", + "name": "Kajetánka", + "avgLatitude": 50.0867043, + "avgLongitude": 14.3714495 + }, + { + "id": "U230", + "name": "Kalinův mlýn", + "avgLatitude": 50.111084, + "avgLongitude": 14.3680067 + }, + { + "id": "U2067", + "name": "Kaliště", + "avgLatitude": 49.8821869, + "avgLongitude": 14.7742348 + }, + { + "id": "U2066", + "name": "Kaliště,Lensedly", + "avgLatitude": 49.89435, + "avgLongitude": 14.7537308 + }, + { + "id": "U2068", + "name": "Kaliště,Poddubí", + "avgLatitude": 49.87388, + "avgLongitude": 14.7611551 + }, + { + "id": "U2090", + "name": "Kaliště,V Loučkách", + "avgLatitude": 49.87742, + "avgLongitude": 14.761158 + }, + { + "id": "U9329", + "name": "Kalivody", + "avgLatitude": 50.20881, + "avgLongitude": 13.8423157 + }, + { + "id": "U6589", + "name": "Kamberk", + "avgLatitude": 49.5970459, + "avgLongitude": 14.8400621 + }, + { + "id": "U6590", + "name": "Kamberk,Předbořice", + "avgLatitude": 49.6062965, + "avgLongitude": 14.829855 + }, + { + "id": "U1542", + "name": "Kamenice,Kuklík", + "avgLatitude": 49.8907166, + "avgLongitude": 14.6229858 + }, + { + "id": "U1564", + "name": "Kamenice,Kult.dům", + "avgLatitude": 49.9040146, + "avgLongitude": 14.5867481 + }, + { + "id": "U1541", + "name": "Kamenice,Ládví", + "avgLatitude": 49.8944778, + "avgLongitude": 14.6137962 + }, + { + "id": "U1538", + "name": "Kamenice,Nová Hospoda", + "avgLatitude": 49.9103622, + "avgLongitude": 14.5843258 + }, + { + "id": "U1539", + "name": "Kamenice,Olešovice", + "avgLatitude": 49.904808, + "avgLongitude": 14.5906849 + }, + { + "id": "U1574", + "name": "Kamenice,Skuheř", + "avgLatitude": 49.9018021, + "avgLongitude": 14.5695782 + }, + { + "id": "U1560", + "name": "Kamenice,Štiřín", + "avgLatitude": 49.9162674, + "avgLongitude": 14.6008663 + }, + { + "id": "U6019", + "name": "Kamenice,Štiřín,U Rybníka", + "avgLatitude": 49.9170761, + "avgLongitude": 14.594696 + }, + { + "id": "U1567", + "name": "Kamenice,Těptín", + "avgLatitude": 49.89247, + "avgLongitude": 14.56473 + }, + { + "id": "U1566", + "name": "Kamenice,Těptín,U Kozlího kamene", + "avgLatitude": 49.8966141, + "avgLongitude": 14.5683517 + }, + { + "id": "U1565", + "name": "Kamenice,U Dvora", + "avgLatitude": 49.90017, + "avgLongitude": 14.5814419 + }, + { + "id": "U1540", + "name": "Kamenice,Valnovka", + "avgLatitude": 49.89798, + "avgLongitude": 14.6041508 + }, + { + "id": "U1561", + "name": "Kamenice,Všedobrovice", + "avgLatitude": 49.91723, + "avgLongitude": 14.6101513 + }, + { + "id": "U231", + "name": "Kamenická", + "avgLatitude": 50.09964, + "avgLongitude": 14.4286366 + }, + { + "id": "U1880", + "name": "Kamenné Zboží", + "avgLatitude": 50.1934433, + "avgLongitude": 15.0003176 + }, + { + "id": "U2874", + "name": "Kamenné Zboží", + "avgLatitude": 50.1889763, + "avgLongitude": 15.0031519 + }, + { + "id": "U9924", + "name": "Kamenné Žehrovice", + "avgLatitude": 50.1278954, + "avgLongitude": 14.015892 + }, + { + "id": "U2841", + "name": "Kamenné Žehrovice", + "avgLatitude": 50.1402, + "avgLongitude": 14.0381317 + }, + { + "id": "U9923", + "name": "Kamenné Žehrovice,Háje", + "avgLatitude": 50.12829, + "avgLongitude": 14.0286713 + }, + { + "id": "U4015", + "name": "Kamenné Žehrovice,Vaňkovka", + "avgLatitude": 50.13662, + "avgLongitude": 14.0323029 + }, + { + "id": "U2899", + "name": "Kamenný Most u Kralup n.Vlt.", + "avgLatitude": 50.23933, + "avgLongitude": 14.2061024 + }, + { + "id": "U4823", + "name": "Kamenný Most,křiž.", + "avgLatitude": 50.24173, + "avgLongitude": 14.205492 + }, + { + "id": "U1938", + "name": "Kamenný Přívoz", + "avgLatitude": 49.8623047, + "avgLongitude": 14.5040245 + }, + { + "id": "U1939", + "name": "Kamenný Přívoz", + "avgLatitude": 49.86644, + "avgLongitude": 14.5172148 + }, + { + "id": "U3302", + "name": "Kamenný Přívoz,Hostěradice", + "avgLatitude": 49.8616, + "avgLongitude": 14.4917221 + }, + { + "id": "U4502", + "name": "Kamenný Přívoz,Hostěradice,Dom.důch.", + "avgLatitude": 49.86393, + "avgLongitude": 14.4974766 + }, + { + "id": "U1940", + "name": "Kamenný Přívoz,Kamenný Újezdec", + "avgLatitude": 49.85762, + "avgLongitude": 14.51889 + }, + { + "id": "U9931", + "name": "Kamenný Přívoz,Kašparka", + "avgLatitude": 49.8562622, + "avgLongitude": 14.50449 + }, + { + "id": "U4503", + "name": "Kamenný Přívoz,Pošta", + "avgLatitude": 49.86097, + "avgLongitude": 14.5031328 + }, + { + "id": "U1937", + "name": "Kamenný Přívoz,U Křížku", + "avgLatitude": 49.8668823, + "avgLongitude": 14.503582 + }, + { + "id": "U31957", + "name": "Kamenný Újezd,rozc.0.6", + "avgLatitude": 49.7257462, + "avgLongitude": 13.6319008 + }, + { + "id": "U232", + "name": "Kamenolom Zbraslav", + "avgLatitude": 49.9596748, + "avgLongitude": 14.394268 + }, + { + "id": "U233", + "name": "Kamýcká", + "avgLatitude": 50.1303635, + "avgLongitude": 14.3822746 + }, + { + "id": "U7631", + "name": "Kamýk n.Vlt.", + "avgLatitude": 49.64099, + "avgLongitude": 14.2527275 + }, + { + "id": "U5876", + "name": "Kamýk n.Vlt.,hřiště", + "avgLatitude": 49.6468353, + "avgLongitude": 14.2522078 + }, + { + "id": "U7633", + "name": "Kamýk n.Vlt.,škola", + "avgLatitude": 49.6387329, + "avgLongitude": 14.2533779 + }, + { + "id": "U7634", + "name": "Kamýk n.Vlt.,u Mášů", + "avgLatitude": 49.64023, + "avgLongitude": 14.2562761 + }, + { + "id": "U7632", + "name": "Kamýk n.Vlt.,u poříční správy", + "avgLatitude": 49.6472931, + "avgLongitude": 14.2492561 + }, + { + "id": "U5895", + "name": "Kamýk n.Vlt.,u školky", + "avgLatitude": 49.63668, + "avgLongitude": 14.251503 + }, + { + "id": "U7637", + "name": "Kamýk n.Vlt.,Velká", + "avgLatitude": 49.6605568, + "avgLongitude": 14.2521181 + }, + { + "id": "U7635", + "name": "Kamýk n.Vlt.,Velká,Blatnice", + "avgLatitude": 49.6554222, + "avgLongitude": 14.2540359 + }, + { + "id": "U7636", + "name": "Kamýk n.Vlt.,Velká,Sedla", + "avgLatitude": 49.6681824, + "avgLongitude": 14.2413025 + }, + { + "id": "U9181", + "name": "Kanina", + "avgLatitude": 50.4245338, + "avgLongitude": 14.5998039 + }, + { + "id": "U4355", + "name": "Kanina", + "avgLatitude": 50.41568, + "avgLongitude": 14.614871 + }, + { + "id": "U1057", + "name": "Kapitána Stránského", + "avgLatitude": 50.1034241, + "avgLongitude": 14.575963 + }, + { + "id": "U1839", + "name": "Káraný,Most", + "avgLatitude": 50.18264, + "avgLongitude": 14.7321644 + }, + { + "id": "U1841", + "name": "Káraný,Pošta", + "avgLatitude": 50.1747551, + "avgLongitude": 14.7362795 + }, + { + "id": "U1840", + "name": "Káraný,Vodárna", + "avgLatitude": 50.17823, + "avgLongitude": 14.732295 + }, + { + "id": "U31454", + "name": "Kardašova Řečice,nám.", + "avgLatitude": 49.1845245, + "avgLongitude": 14.8509712 + }, + { + "id": "U3240", + "name": "Kardausova", + "avgLatitude": 50.0665741, + "avgLongitude": 14.5530815 + }, + { + "id": "U234", + "name": "Karenova", + "avgLatitude": 50.063385, + "avgLongitude": 14.3683062 + }, + { + "id": "U1627", + "name": "Karlík", + "avgLatitude": 49.9371262, + "avgLongitude": 14.2617207 + }, + { + "id": "U854", + "name": "Karlínské náměstí", + "avgLatitude": 50.0927658, + "avgLongitude": 14.4456558 + }, + { + "id": "U4026", + "name": "Karlova Ves", + "avgLatitude": 49.9882126, + "avgLongitude": 13.8623266 + }, + { + "id": "U4025", + "name": "Karlova Ves,hřbitov", + "avgLatitude": 49.99197, + "avgLongitude": 13.8608236 + }, + { + "id": "U237", + "name": "Karlovo náměstí", + "avgLatitude": 50.07529, + "avgLongitude": 14.4185162 + }, + { + "id": "U221", + "name": "Karlovy lázně", + "avgLatitude": 50.0846672, + "avgLongitude": 14.4136066 + }, + { + "id": "U32165", + "name": "Karlovy Vary,Mattoniho nábř.", + "avgLatitude": 50.2392654, + "avgLongitude": 12.8889828 + }, + { + "id": "U32268", + "name": "Karlovy Vary,Mlékárna", + "avgLatitude": 50.234848, + "avgLongitude": 12.875968 + }, + { + "id": "U32164", + "name": "Karlovy Vary,Olšová Vrata,rozc.", + "avgLatitude": 50.21234, + "avgLongitude": 12.919836 + }, + { + "id": "U32271", + "name": "Karlovy Vary,Prašná", + "avgLatitude": 50.23665, + "avgLongitude": 12.8830929 + }, + { + "id": "U32167", + "name": "Karlovy Vary,terminál", + "avgLatitude": 50.230072, + "avgLongitude": 12.864397 + }, + { + "id": "U32166", + "name": "Karlovy Vary,tržnice", + "avgLatitude": 50.230957, + "avgLongitude": 12.8702087 + }, + { + "id": "U2846", + "name": "Karlštejn", + "avgLatitude": 49.932, + "avgLongitude": 14.1751509 + }, + { + "id": "U238", + "name": "Karlštejnská", + "avgLatitude": 50.0526428, + "avgLongitude": 14.3590488 + }, + { + "id": "U31969", + "name": "Kařez", + "avgLatitude": 49.8245468, + "avgLongitude": 13.7829018 + }, + { + "id": "U4617", + "name": "Kařez", + "avgLatitude": 49.8225555, + "avgLongitude": 13.7790623 + }, + { + "id": "U31967", + "name": "Kařez,u Jednoty", + "avgLatitude": 49.822052, + "avgLongitude": 13.7827816 + }, + { + "id": "U31966", + "name": "Kařízek", + "avgLatitude": 49.8132, + "avgLongitude": 13.7992373 + }, + { + "id": "U239", + "name": "Kateřinky", + "avgLatitude": 50.0205841, + "avgLongitude": 14.5201836 + }, + { + "id": "U958", + "name": "Kateřinská", + "avgLatitude": 50.074337, + "avgLongitude": 14.426158 + }, + { + "id": "U345", + "name": "Katovická", + "avgLatitude": 50.13211, + "avgLongitude": 14.4280748 + }, + { + "id": "U6139", + "name": "Katusice", + "avgLatitude": 50.4460258, + "avgLongitude": 14.7776585 + }, + { + "id": "U9356", + "name": "Katusice", + "avgLatitude": 50.44303, + "avgLongitude": 14.7772331 + }, + { + "id": "U6142", + "name": "Katusice,Doubravice", + "avgLatitude": 50.4616, + "avgLongitude": 14.6889133 + }, + { + "id": "U6414", + "name": "Katusice,Spikaly", + "avgLatitude": 50.4354744, + "avgLongitude": 14.7670956 + }, + { + "id": "U9353", + "name": "Katusice,Trnová", + "avgLatitude": 50.44834, + "avgLongitude": 14.71825 + }, + { + "id": "U6412", + "name": "Katusice,Valovice", + "avgLatitude": 50.45989, + "avgLongitude": 14.7543526 + }, + { + "id": "U6473", + "name": "Katusice,Valovice,křiž.", + "avgLatitude": 50.45987, + "avgLongitude": 14.7497272 + }, + { + "id": "U240", + "name": "Kavalírka", + "avgLatitude": 50.06994, + "avgLongitude": 14.3703823 + }, + { + "id": "U589", + "name": "Kavčí hory", + "avgLatitude": 50.0495262, + "avgLongitude": 14.42894 + }, + { + "id": "U189", + "name": "Kavkazská", + "avgLatitude": 50.0695648, + "avgLongitude": 14.4656334 + }, + { + "id": "U241", + "name": "Kazanka", + "avgLatitude": 50.1172943, + "avgLongitude": 14.42804 + }, + { + "id": "U4286", + "name": "Kazín", + "avgLatitude": 49.9510422, + "avgLongitude": 14.340826 + }, + { + "id": "U1021", + "name": "Kazínská", + "avgLatitude": 50.0116653, + "avgLongitude": 14.3863525 + }, + { + "id": "U9981", + "name": "Kbel", + "avgLatitude": 49.98826, + "avgLongitude": 15.1445189 + }, + { + "id": "U9980", + "name": "Kbel,Kbílek", + "avgLatitude": 49.9850731, + "avgLongitude": 15.151123 + }, + { + "id": "U242", + "name": "Kbelská", + "avgLatitude": 50.10527, + "avgLongitude": 14.5328865 + }, + { + "id": "U1104", + "name": "Kbelský hřbitov", + "avgLatitude": 50.1440735, + "avgLongitude": 14.5466595 + }, + { + "id": "U2769", + "name": "Kbelský lesopark", + "avgLatitude": 50.13527, + "avgLongitude": 14.5359507 + }, + { + "id": "U4000", + "name": "Kbelský pivovar", + "avgLatitude": 50.1304855, + "avgLongitude": 14.5472813 + }, + { + "id": "U243", + "name": "Kbely", + "avgLatitude": 50.1307831, + "avgLongitude": 14.5513153 + }, + { + "id": "U546", + "name": "Ke Březině", + "avgLatitude": 49.99409, + "avgLongitude": 14.46779 + }, + { + "id": "U3015", + "name": "Ke Hrázi", + "avgLatitude": 50.0868149, + "avgLongitude": 14.5763216 + }, + { + "id": "U244", + "name": "Ke Kaménce", + "avgLatitude": 50.07151, + "avgLongitude": 14.30245 + }, + { + "id": "U916", + "name": "Ke Kateřinkám", + "avgLatitude": 50.02494, + "avgLongitude": 14.5150709 + }, + { + "id": "U4288", + "name": "Ke Kazínu", + "avgLatitude": 49.9564133, + "avgLongitude": 14.3423347 + }, + { + "id": "U790", + "name": "Ke Klíčovu", + "avgLatitude": 50.1127548, + "avgLongitude": 14.50577 + }, + { + "id": "U965", + "name": "Ke Koulce", + "avgLatitude": 50.06165, + "avgLongitude": 14.4045734 + }, + { + "id": "U3053", + "name": "Ke Kříži", + "avgLatitude": 50.0297127, + "avgLongitude": 14.594986 + }, + { + "id": "U246", + "name": "Ke Schodům", + "avgLatitude": 50.014183, + "avgLongitude": 14.4158173 + }, + { + "id": "U247", + "name": "Ke Smrčině", + "avgLatitude": 50.0177765, + "avgLongitude": 14.52519 + }, + { + "id": "U249", + "name": "Ke Stírce", + "avgLatitude": 50.12283, + "avgLongitude": 14.4560108 + }, + { + "id": "U4290", + "name": "Ke Štěrkovně", + "avgLatitude": 49.9571762, + "avgLongitude": 14.3715487 + }, + { + "id": "U726", + "name": "Ke Xaverovu", + "avgLatitude": 50.0996666, + "avgLongitude": 14.6238 + }, + { + "id": "U7638", + "name": "Keblov", + "avgLatitude": 49.6773529, + "avgLongitude": 15.0711479 + }, + { + "id": "U7639", + "name": "Keblov,háj.", + "avgLatitude": 49.6766663, + "avgLongitude": 15.0913906 + }, + { + "id": "U251", + "name": "Kelerka", + "avgLatitude": 50.11522, + "avgLongitude": 14.4895334 + }, + { + "id": "U252", + "name": "Kesnerka", + "avgLatitude": 50.0578842, + "avgLongitude": 14.4020672 + }, + { + "id": "U253", + "name": "Khodlova", + "avgLatitude": 50.1102867, + "avgLongitude": 14.6040707 + }, + { + "id": "U2837", + "name": "Kladno", + "avgLatitude": 50.12778, + "avgLongitude": 14.11333 + }, + { + "id": "U2889", + "name": "Kladno město", + "avgLatitude": 50.1419334, + "avgLongitude": 14.0837555 + }, + { + "id": "U4318", + "name": "Kladno,Americká", + "avgLatitude": 50.1271667, + "avgLongitude": 14.1233864 + }, + { + "id": "U4314", + "name": "Kladno,autobusové nádraží", + "avgLatitude": 50.145977, + "avgLongitude": 14.1059885 + }, + { + "id": "U4595", + "name": "Kladno,Billundská", + "avgLatitude": 50.11905, + "avgLongitude": 14.1254539 + }, + { + "id": "U4594", + "name": "Kladno,celnice", + "avgLatitude": 50.12222, + "avgLongitude": 14.1245089 + }, + { + "id": "U4321", + "name": "Kladno,ČSAD", + "avgLatitude": 50.1302528, + "avgLongitude": 14.104351 + }, + { + "id": "U3184", + "name": "Kladno,Dubská", + "avgLatitude": 50.15669, + "avgLongitude": 14.1290169 + }, + { + "id": "U3183", + "name": "Kladno,Dvorská", + "avgLatitude": 50.1654167, + "avgLongitude": 14.1707478 + }, + { + "id": "U4328", + "name": "Kladno,Energie", + "avgLatitude": 50.14737, + "avgLongitude": 14.0696068 + }, + { + "id": "U3094", + "name": "Kladno,gymnasium", + "avgLatitude": 50.142128, + "avgLongitude": 14.0979176 + }, + { + "id": "U4329", + "name": "Kladno,Havlíčkovo náměstí", + "avgLatitude": 50.16719, + "avgLongitude": 14.1068916 + }, + { + "id": "U4413", + "name": "Kladno,Hnidousy", + "avgLatitude": 50.17029, + "avgLongitude": 14.112463 + }, + { + "id": "U4603", + "name": "Kladno,Husova", + "avgLatitude": 50.1639252, + "avgLongitude": 14.10196 + }, + { + "id": "U3182", + "name": "Kladno,kolonie", + "avgLatitude": 50.1673737, + "avgLongitude": 14.1656151 + }, + { + "id": "U4596", + "name": "Kladno,Kožovská", + "avgLatitude": 50.1167145, + "avgLongitude": 14.1204758 + }, + { + "id": "U2881", + "name": "Kladno,Kübeck", + "avgLatitude": 50.1620064, + "avgLongitude": 14.11425 + }, + { + "id": "U3359", + "name": "Kladno,Lapák", + "avgLatitude": 50.1284637, + "avgLongitude": 14.0901871 + }, + { + "id": "U4315", + "name": "Kladno,Meta", + "avgLatitude": 50.13479, + "avgLongitude": 14.1375065 + }, + { + "id": "U1251", + "name": "Kladno,Na Slovance", + "avgLatitude": 50.14035, + "avgLongitude": 14.1206284 + }, + { + "id": "U4313", + "name": "Kladno,nám.Svobody", + "avgLatitude": 50.1452332, + "avgLongitude": 14.0944614 + }, + { + "id": "U4582", + "name": "Kladno,OAZA", + "avgLatitude": 50.13227, + "avgLongitude": 14.1390266 + }, + { + "id": "U4316", + "name": "Kladno,Okrsek 4", + "avgLatitude": 50.13089, + "avgLongitude": 14.1375723 + }, + { + "id": "U4597", + "name": "Kladno,pekárna", + "avgLatitude": 50.1176224, + "avgLongitude": 14.1148281 + }, + { + "id": "U3186", + "name": "Kladno,Pod Zámkem", + "avgLatitude": 50.1501, + "avgLongitude": 14.1058941 + }, + { + "id": "U4411", + "name": "Kladno,Poldi", + "avgLatitude": 50.150444, + "avgLongitude": 14.117609 + }, + { + "id": "U4306", + "name": "Kladno,Pražská křiž.", + "avgLatitude": 50.1357765, + "avgLongitude": 14.1256466 + }, + { + "id": "U4412", + "name": "Kladno,Průmyslová", + "avgLatitude": 50.1564331, + "avgLongitude": 14.1161346 + }, + { + "id": "U1895", + "name": "Kladno,Rakovnická", + "avgLatitude": 50.1364365, + "avgLongitude": 14.05981 + }, + { + "id": "U4601", + "name": "Kladno,Ronovka", + "avgLatitude": 50.1752853, + "avgLongitude": 14.107584 + }, + { + "id": "U1782", + "name": "Kladno,Rozdělov", + "avgLatitude": 50.14059, + "avgLongitude": 14.065423 + }, + { + "id": "U4317", + "name": "Kladno,Růžové pole", + "avgLatitude": 50.12828, + "avgLongitude": 14.12912 + }, + { + "id": "U4193", + "name": "Kladno,Seifertova", + "avgLatitude": 50.1635, + "avgLongitude": 14.0962944 + }, + { + "id": "U4387", + "name": "Kladno,Showa", + "avgLatitude": 50.1186256, + "avgLongitude": 14.12931 + }, + { + "id": "U4310", + "name": "Kladno,Sítná", + "avgLatitude": 50.1363068, + "avgLongitude": 14.1039219 + }, + { + "id": "U1918", + "name": "Kladno,Smečenská", + "avgLatitude": 50.14262, + "avgLongitude": 14.058609 + }, + { + "id": "U4592", + "name": "Kladno,sokolovna", + "avgLatitude": 50.1602859, + "avgLongitude": 14.139514 + }, + { + "id": "U1264", + "name": "Kladno,Školská", + "avgLatitude": 50.1427956, + "avgLongitude": 14.1173229 + }, + { + "id": "U4308", + "name": "Kladno,U Hvězdy", + "avgLatitude": 50.1327744, + "avgLongitude": 14.1138153 + }, + { + "id": "U4320", + "name": "Kladno,u Kauflandu", + "avgLatitude": 50.12971, + "avgLongitude": 14.1150818 + }, + { + "id": "U4602", + "name": "Kladno,U Knotků", + "avgLatitude": 50.1637344, + "avgLongitude": 14.1068983 + }, + { + "id": "U3095", + "name": "Kladno,u kostela", + "avgLatitude": 50.14077, + "avgLongitude": 14.0714693 + }, + { + "id": "U4325", + "name": "Kladno,u nemocnice", + "avgLatitude": 50.14277, + "avgLongitude": 14.0883093 + }, + { + "id": "U3192", + "name": "Kladno,u Tesca", + "avgLatitude": 50.12633, + "avgLongitude": 14.1172695 + }, + { + "id": "U4312", + "name": "Kladno,u tržnice", + "avgLatitude": 50.1329422, + "avgLongitude": 14.1250782 + }, + { + "id": "U3091", + "name": "Kladno,učiliště", + "avgLatitude": 50.16346, + "avgLongitude": 14.1502466 + }, + { + "id": "U3185", + "name": "Kladno,Újezd", + "avgLatitude": 50.1524658, + "avgLongitude": 14.1231174 + }, + { + "id": "U3092", + "name": "Kladno,úřadovna", + "avgLatitude": 50.1587, + "avgLongitude": 14.1342049 + }, + { + "id": "U4327", + "name": "Kladno,Vašíčkova", + "avgLatitude": 50.14476, + "avgLongitude": 14.0695171 + }, + { + "id": "U4414", + "name": "Kladno,Velvarská", + "avgLatitude": 50.17266, + "avgLongitude": 14.121707 + }, + { + "id": "U4593", + "name": "Kladno,VHS", + "avgLatitude": 50.16519, + "avgLongitude": 14.1555271 + }, + { + "id": "U4362", + "name": "Kladno,zdrav.stř.", + "avgLatitude": 50.12962, + "avgLongitude": 14.1261253 + }, + { + "id": "U4323", + "name": "Kladno,zimní stadion", + "avgLatitude": 50.1358833, + "avgLongitude": 14.096365 + }, + { + "id": "U2882", + "name": "Kladno-Dubí", + "avgLatitude": 50.1634, + "avgLongitude": 14.1296473 + }, + { + "id": "U3097", + "name": "Kladno-Ostrovec", + "avgLatitude": 50.1475334, + "avgLongitude": 14.0869446 + }, + { + "id": "U2840", + "name": "Kladno-Rozdělov", + "avgLatitude": 50.1316948, + "avgLongitude": 14.067091 + }, + { + "id": "U6036", + "name": "Kladruby", + "avgLatitude": 49.72181, + "avgLongitude": 14.94907 + }, + { + "id": "U6034", + "name": "Kladruby,rehab.ústav", + "avgLatitude": 49.72017, + "avgLongitude": 14.96069 + }, + { + "id": "U6035", + "name": "Kladruby,rozc.", + "avgLatitude": 49.7214432, + "avgLongitude": 14.9539642 + }, + { + "id": "U254", + "name": "Klamovka", + "avgLatitude": 50.0708237, + "avgLongitude": 14.3798923 + }, + { + "id": "U255", + "name": "Klánova", + "avgLatitude": 50.02136, + "avgLongitude": 14.4235668 + }, + { + "id": "U256", + "name": "Klánovice", + "avgLatitude": 50.0989761, + "avgLongitude": 14.6856842 + }, + { + "id": "U257", + "name": "Klárův ústav", + "avgLatitude": 50.028, + "avgLongitude": 14.4569416 + }, + { + "id": "U6346", + "name": "Klášter Hradiště n.Jiz.", + "avgLatitude": 50.5233459, + "avgLongitude": 14.9450493 + }, + { + "id": "U6329", + "name": "Klášter Hradiště n.Jiz.,Habr", + "avgLatitude": 50.5222473, + "avgLongitude": 14.941556 + }, + { + "id": "U6347", + "name": "Klášter Hradiště n.Jiz.,pod pivovarem", + "avgLatitude": 50.5238457, + "avgLongitude": 14.94564 + }, + { + "id": "U6348", + "name": "Klášter Hradiště n.Jiz.,pošta", + "avgLatitude": 50.52655, + "avgLongitude": 14.9470291 + }, + { + "id": "U6328", + "name": "Klášter Hradiště n.Jiz.,Ptýrovec", + "avgLatitude": 50.520874, + "avgLongitude": 14.942358 + }, + { + "id": "U6349", + "name": "Klášter Hradiště n.Jiz.,Severní", + "avgLatitude": 50.5292549, + "avgLongitude": 14.9472523 + }, + { + "id": "U1008", + "name": "Klášterecká", + "avgLatitude": 50.14601, + "avgLongitude": 14.4558563 + }, + { + "id": "U4939", + "name": "Klášterní Skalice", + "avgLatitude": 50.022934, + "avgLongitude": 14.9813852 + }, + { + "id": "U2242", + "name": "Klecany", + "avgLatitude": 50.17542, + "avgLongitude": 14.4123478 + }, + { + "id": "U2347", + "name": "Klecany,Ahold", + "avgLatitude": 50.1837273, + "avgLongitude": 14.4115067 + }, + { + "id": "U2325", + "name": "Klecany,Astrapark", + "avgLatitude": 50.18351, + "avgLongitude": 14.424078 + }, + { + "id": "U2219", + "name": "Klecany,D8 Park", + "avgLatitude": 50.17658, + "avgLongitude": 14.44716 + }, + { + "id": "U2253", + "name": "Klecany,Drasty", + "avgLatitude": 50.1962662, + "avgLongitude": 14.3993721 + }, + { + "id": "U2252", + "name": "Klecany,Drasty,Čistírna", + "avgLatitude": 50.19211, + "avgLongitude": 14.3964872 + }, + { + "id": "U2243", + "name": "Klecany,Klecánky", + "avgLatitude": 50.1707, + "avgLongitude": 14.4024782 + }, + { + "id": "U2241", + "name": "Klecany,U Hřbitova", + "avgLatitude": 50.1768837, + "avgLongitude": 14.4192791 + }, + { + "id": "U2244", + "name": "Klecany,U Kostela", + "avgLatitude": 50.17746, + "avgLongitude": 14.4098778 + }, + { + "id": "U2217", + "name": "Klecany,Zdibsko", + "avgLatitude": 50.18322, + "avgLongitude": 14.4413471 + }, + { + "id": "U4614", + "name": "Kleneč", + "avgLatitude": 50.3942032, + "avgLongitude": 14.2468481 + }, + { + "id": "U31443", + "name": "Klenovice", + "avgLatitude": 49.2777939, + "avgLongitude": 14.7154312 + }, + { + "id": "U2218", + "name": "Klíčany", + "avgLatitude": 50.20199, + "avgLongitude": 14.4343157 + }, + { + "id": "U2462", + "name": "Klíčany,Břežanská", + "avgLatitude": 50.20742, + "avgLongitude": 14.4364939 + }, + { + "id": "U259", + "name": "Klíčov", + "avgLatitude": 50.1168175, + "avgLongitude": 14.5143423 + }, + { + "id": "U260", + "name": "Klíčovská", + "avgLatitude": 50.1176758, + "avgLongitude": 14.5081339 + }, + { + "id": "U261", + "name": "Klikovka", + "avgLatitude": 50.057, + "avgLongitude": 14.4306011 + }, + { + "id": "U1722", + "name": "Klínec", + "avgLatitude": 49.90086, + "avgLongitude": 14.34278 + }, + { + "id": "U2851", + "name": "Klínec", + "avgLatitude": 49.8968658, + "avgLongitude": 14.3597116 + }, + { + "id": "U1705", + "name": "Klínec,Hl.sil.", + "avgLatitude": 49.9059029, + "avgLongitude": 14.3317432 + }, + { + "id": "U1721", + "name": "Klínec,U Hřiště", + "avgLatitude": 49.90516, + "avgLongitude": 14.33605 + }, + { + "id": "U263", + "name": "Kloboučnická", + "avgLatitude": 50.0604553, + "avgLongitude": 14.449934 + }, + { + "id": "U4871", + "name": "Klobuky v Čechách", + "avgLatitude": 50.2982178, + "avgLongitude": 13.9966125 + }, + { + "id": "U9214", + "name": "Klobuky,cukrovar", + "avgLatitude": 50.2907028, + "avgLongitude": 13.991703 + }, + { + "id": "U9215", + "name": "Klobuky,Čeradice", + "avgLatitude": 50.293663, + "avgLongitude": 14.0148458 + }, + { + "id": "U9216", + "name": "Klobuky,Kobylníky,I", + "avgLatitude": 50.2883072, + "avgLongitude": 13.9993877 + }, + { + "id": "U9218", + "name": "Klobuky,Kokovice", + "avgLatitude": 50.2965279, + "avgLongitude": 13.9645634 + }, + { + "id": "U9219", + "name": "Klobuky,Kokovice,u mlýna", + "avgLatitude": 50.29627, + "avgLongitude": 13.9704914 + }, + { + "id": "U9220", + "name": "Klobuky,ObÚ", + "avgLatitude": 50.2939, + "avgLongitude": 13.9892216 + }, + { + "id": "U4870", + "name": "Klobuky,Páleček", + "avgLatitude": 50.29277, + "avgLongitude": 14.03047 + }, + { + "id": "U2084", + "name": "Klokočná", + "avgLatitude": 49.9584961, + "avgLongitude": 14.7204647 + }, + { + "id": "U5021", + "name": "Klokočná,náves", + "avgLatitude": 49.95909, + "avgLongitude": 14.7201109 + }, + { + "id": "U7640", + "name": "Klučenice", + "avgLatitude": 49.5538063, + "avgLongitude": 14.2113609 + }, + { + "id": "U7642", + "name": "Klučenice,Kosobudy", + "avgLatitude": 49.5768967, + "avgLongitude": 14.2364426 + }, + { + "id": "U7643", + "name": "Klučenice,Koubalova Lhota", + "avgLatitude": 49.5729942, + "avgLongitude": 14.2116241 + }, + { + "id": "U7644", + "name": "Klučenice,Planá", + "avgLatitude": 49.5646133, + "avgLongitude": 14.224823 + }, + { + "id": "U7646", + "name": "Klučenice,Planá,kaple", + "avgLatitude": 49.5633774, + "avgLongitude": 14.2193489 + }, + { + "id": "U7645", + "name": "Klučenice,Planá,rozc.", + "avgLatitude": 49.5653839, + "avgLongitude": 14.2331123 + }, + { + "id": "U2412", + "name": "Klučov", + "avgLatitude": 50.09156, + "avgLongitude": 14.9120779 + }, + { + "id": "U2314", + "name": "Klučov", + "avgLatitude": 50.0943146, + "avgLongitude": 14.9037561 + }, + { + "id": "U2407", + "name": "Klučov,Lstiboř", + "avgLatitude": 50.0793381, + "avgLongitude": 14.9053993 + }, + { + "id": "U2414", + "name": "Klučov,Skramníky", + "avgLatitude": 50.0835953, + "avgLongitude": 14.958271 + }, + { + "id": "U2413", + "name": "Klučov,Žhery", + "avgLatitude": 50.08537, + "avgLongitude": 14.9429379 + }, + { + "id": "U264", + "name": "Klukovice", + "avgLatitude": 50.03591, + "avgLongitude": 14.3666763 + }, + { + "id": "U7296", + "name": "Kluky", + "avgLatitude": 49.90781, + "avgLongitude": 15.32468 + }, + { + "id": "U6140", + "name": "Kluky", + "avgLatitude": 50.4405479, + "avgLongitude": 14.72546 + }, + { + "id": "U7301", + "name": "Kluky,Nová Lhota", + "avgLatitude": 49.8873672, + "avgLongitude": 15.3028336 + }, + { + "id": "U7300", + "name": "Kluky,Olšany", + "avgLatitude": 49.90342, + "avgLongitude": 15.3104534 + }, + { + "id": "U7295", + "name": "Kluky,u hřiště", + "avgLatitude": 49.9082565, + "avgLongitude": 15.3214521 + }, + { + "id": "U1787", + "name": "Kly,Krauzovna", + "avgLatitude": 50.30842, + "avgLongitude": 14.5158339 + }, + { + "id": "U1788", + "name": "Kly,Lom", + "avgLatitude": 50.3142548, + "avgLongitude": 14.5148916 + }, + { + "id": "U1786", + "name": "Kly,Větrušice", + "avgLatitude": 50.3009644, + "avgLongitude": 14.5109863 + }, + { + "id": "U1789", + "name": "Kly,Vinice", + "avgLatitude": 50.3211365, + "avgLongitude": 14.5063362 + }, + { + "id": "U1920", + "name": "Kly,Záboří", + "avgLatitude": 50.30834, + "avgLongitude": 14.5210094 + }, + { + "id": "U4880", + "name": "Kmetiněves", + "avgLatitude": 50.30543, + "avgLongitude": 14.1612778 + }, + { + "id": "U9128", + "name": "Kmetiněves", + "avgLatitude": 50.3086929, + "avgLongitude": 14.15637 + }, + { + "id": "U9129", + "name": "Kmetiněves,křižovatka", + "avgLatitude": 50.30986, + "avgLongitude": 14.15802 + }, + { + "id": "U6814", + "name": "Kněževes", + "avgLatitude": 50.14222, + "avgLongitude": 13.6407661 + }, + { + "id": "U2135", + "name": "Kněževes", + "avgLatitude": 50.121254, + "avgLongitude": 14.2588749 + }, + { + "id": "U6816", + "name": "Kněževes,ObÚ", + "avgLatitude": 50.14589, + "avgLongitude": 13.6366558 + }, + { + "id": "U1969", + "name": "Kněževes,Skladový areál", + "avgLatitude": 50.11808, + "avgLongitude": 14.2689247 + }, + { + "id": "U1970", + "name": "Kněževes,Stará hospoda", + "avgLatitude": 50.1184769, + "avgLongitude": 14.2617264 + }, + { + "id": "U2134", + "name": "Kněževes,U Nádraží", + "avgLatitude": 50.12217, + "avgLongitude": 14.2544785 + }, + { + "id": "U4395", + "name": "Kněževes,U Školy", + "avgLatitude": 50.1195259, + "avgLongitude": 14.2620726 + }, + { + "id": "U6738", + "name": "Kněžice", + "avgLatitude": 50.2551651, + "avgLongitude": 15.336256 + }, + { + "id": "U6733", + "name": "Kněžice,Dubečno", + "avgLatitude": 50.27195, + "avgLongitude": 15.3251991 + }, + { + "id": "U6734", + "name": "Kněžice,Dubečno,odb.", + "avgLatitude": 50.2712975, + "avgLongitude": 15.3337269 + }, + { + "id": "U6737", + "name": "Kněžice,Osek", + "avgLatitude": 50.26716, + "avgLongitude": 15.3666534 + }, + { + "id": "U6727", + "name": "Kněžičky", + "avgLatitude": 50.1739273, + "avgLongitude": 15.3444824 + }, + { + "id": "U6729", + "name": "Kněžičky,Kopičák", + "avgLatitude": 50.1697464, + "avgLongitude": 15.3329525 + }, + { + "id": "U6728", + "name": "Kněžičky,odb.", + "avgLatitude": 50.16884, + "avgLongitude": 15.3427906 + }, + { + "id": "U6221", + "name": "Kněžmost,Býčina", + "avgLatitude": 50.4827957, + "avgLongitude": 15.0194836 + }, + { + "id": "U6304", + "name": "Kněžmost,Čížovka", + "avgLatitude": 50.4872322, + "avgLongitude": 15.0851355 + }, + { + "id": "U6303", + "name": "Kněžmost,Čížovka,rozhledna", + "avgLatitude": 50.482254, + "avgLongitude": 15.0875788 + }, + { + "id": "U6305", + "name": "Kněžmost,Drhleny", + "avgLatitude": 50.48958, + "avgLongitude": 15.0719366 + }, + { + "id": "U6226", + "name": "Kněžmost,Chlumín", + "avgLatitude": 50.4607925, + "avgLongitude": 15.026556 + }, + { + "id": "U6227", + "name": "Kněžmost,Chlumín,otočka", + "avgLatitude": 50.4594955, + "avgLongitude": 15.020875 + }, + { + "id": "U6220", + "name": "Kněžmost,Koprník", + "avgLatitude": 50.4698257, + "avgLongitude": 15.01433 + }, + { + "id": "U9453", + "name": "Kněžmost,Lítkovice", + "avgLatitude": 50.46363, + "avgLongitude": 15.0456543 + }, + { + "id": "U6309", + "name": "Kněžmost,Malobratřice,otočka", + "avgLatitude": 50.4720764, + "avgLongitude": 15.0788746 + }, + { + "id": "U6307", + "name": "Kněžmost,Na Dolích", + "avgLatitude": 50.4923058, + "avgLongitude": 15.0501423 + }, + { + "id": "U6223", + "name": "Kněžmost,Nádražní", + "avgLatitude": 50.4855881, + "avgLongitude": 15.0339909 + }, + { + "id": "U6224", + "name": "Kněžmost,nám.", + "avgLatitude": 50.489315, + "avgLongitude": 15.0379238 + }, + { + "id": "U6219", + "name": "Kněžmost,Násedlnice", + "avgLatitude": 50.4604454, + "avgLongitude": 14.9964552 + }, + { + "id": "U6311", + "name": "Kněžmost,Solec", + "avgLatitude": 50.4711456, + "avgLongitude": 15.06946 + }, + { + "id": "U6312", + "name": "Kněžmost,Soleček", + "avgLatitude": 50.4760056, + "avgLongitude": 15.05932 + }, + { + "id": "U6319", + "name": "Kněžmost,Srbsko", + "avgLatitude": 50.5070648, + "avgLongitude": 15.0997658 + }, + { + "id": "U6306", + "name": "Kněžmost,Suhrovice", + "avgLatitude": 50.4904366, + "avgLongitude": 15.05863 + }, + { + "id": "U6229", + "name": "Kněžmost,Úhelnice", + "avgLatitude": 50.4481354, + "avgLongitude": 15.0035591 + }, + { + "id": "U6228", + "name": "Kněžmost,Žabokliky", + "avgLatitude": 50.457222, + "avgLongitude": 15.0038118 + }, + { + "id": "U6225", + "name": "Kněžmost,Žantov", + "avgLatitude": 50.48477, + "avgLongitude": 15.044013 + }, + { + "id": "U9452", + "name": "Kněžmost,žel.zast.", + "avgLatitude": 50.4723129, + "avgLongitude": 15.0177889 + }, + { + "id": "U266", + "name": "Kněžská luka", + "avgLatitude": 50.0921173, + "avgLongitude": 14.4932461 + }, + { + "id": "U4761", + "name": "Kňovice", + "avgLatitude": 49.68815, + "avgLongitude": 14.4006815 + }, + { + "id": "U4762", + "name": "Kňovice,Kňovičky", + "avgLatitude": 49.6815453, + "avgLongitude": 14.4047737 + }, + { + "id": "U4773", + "name": "Knovíz", + "avgLatitude": 50.212738, + "avgLongitude": 14.1364155 + }, + { + "id": "U1341", + "name": "Knovízská", + "avgLatitude": 50.04137, + "avgLongitude": 14.5001335 + }, + { + "id": "U930", + "name": "Kobrova", + "avgLatitude": 50.0761337, + "avgLongitude": 14.3986092 + }, + { + "id": "U4129", + "name": "Kobyliská střelnice", + "avgLatitude": 50.1309662, + "avgLongitude": 14.460742 + }, + { + "id": "U675", + "name": "Kobylisy", + "avgLatitude": 50.1243629, + "avgLongitude": 14.4546432 + }, + { + "id": "U6657", + "name": "Kobylnice", + "avgLatitude": 50.0079956, + "avgLongitude": 15.3782053 + }, + { + "id": "U6268", + "name": "Kobylnice", + "avgLatitude": 50.37214, + "avgLongitude": 15.0546923 + }, + { + "id": "U7216", + "name": "Kobylnice,rozc.", + "avgLatitude": 50.0084229, + "avgLongitude": 15.3828869 + }, + { + "id": "U268", + "name": "Kodaňská", + "avgLatitude": 50.07075, + "avgLongitude": 14.4608173 + }, + { + "id": "U1369", + "name": "Kodymova", + "avgLatitude": 50.0514832, + "avgLongitude": 14.3373432 + }, + { + "id": "U269", + "name": "Koh-i-noor", + "avgLatitude": 50.06737, + "avgLongitude": 14.4614706 + }, + { + "id": "U6112", + "name": "Kochánky", + "avgLatitude": 50.2767029, + "avgLongitude": 14.7798939 + }, + { + "id": "U3263", + "name": "Kochánky,Okrouhlík", + "avgLatitude": 50.2668152, + "avgLongitude": 14.8033218 + }, + { + "id": "U6105", + "name": "Kochánky,V Kateřinkách", + "avgLatitude": 50.2785645, + "avgLongitude": 14.7857637 + }, + { + "id": "U1302", + "name": "Kojetice", + "avgLatitude": 50.2380066, + "avgLongitude": 14.5081177 + }, + { + "id": "U2345", + "name": "Kojetice u Prahy", + "avgLatitude": 50.23726, + "avgLongitude": 14.4991274 + }, + { + "id": "U2343", + "name": "Kojetice,Rozc.", + "avgLatitude": 50.2365341, + "avgLongitude": 14.4945908 + }, + { + "id": "U1960", + "name": "Kojetice,Tůmovka", + "avgLatitude": 50.2293472, + "avgLongitude": 14.494585 + }, + { + "id": "U31658", + "name": "Kojice", + "avgLatitude": 50.0407677, + "avgLongitude": 15.3973312 + }, + { + "id": "U2976", + "name": "Kojovice", + "avgLatitude": 50.30723, + "avgLongitude": 14.6564 + }, + { + "id": "U9192", + "name": "Kokořín", + "avgLatitude": 50.42997, + "avgLongitude": 14.5671844 + }, + { + "id": "U9190", + "name": "Kokořín,Březinka", + "avgLatitude": 50.4485931, + "avgLongitude": 14.5495987 + }, + { + "id": "U9193", + "name": "Kokořín,Janova Ves", + "avgLatitude": 50.42347, + "avgLongitude": 14.5590248 + }, + { + "id": "U6092", + "name": "Kokořín,Kokořínský Důl,Harakoko", + "avgLatitude": 50.4183426, + "avgLongitude": 14.57659 + }, + { + "id": "U6095", + "name": "Kokořín,Kokořínský Důl,Podhradí", + "avgLatitude": 50.4401054, + "avgLongitude": 14.580658 + }, + { + "id": "U6096", + "name": "Kokořín,Kokořínský Důl,Pokličky", + "avgLatitude": 50.45462, + "avgLongitude": 14.5864258 + }, + { + "id": "U6094", + "name": "Kokořín,Kokořínský Důl,Rapín", + "avgLatitude": 50.432518, + "avgLongitude": 14.58263 + }, + { + "id": "U6093", + "name": "Kokořín,Kokořínský Důl,U Grobiána", + "avgLatitude": 50.4277153, + "avgLongitude": 14.5796366 + }, + { + "id": "U9189", + "name": "Kokořín,Šemanovice", + "avgLatitude": 50.4550323, + "avgLongitude": 14.554163 + }, + { + "id": "U9191", + "name": "Kokořín,Truskavna", + "avgLatitude": 50.43789, + "avgLongitude": 14.5482149 + }, + { + "id": "U270", + "name": "Kokořínská", + "avgLatitude": 50.14571, + "avgLongitude": 14.4851341 + }, + { + "id": "U2949", + "name": "Kolaje", + "avgLatitude": 50.1580124, + "avgLongitude": 15.2338524 + }, + { + "id": "U75", + "name": "Kolbenova", + "avgLatitude": 50.110527, + "avgLongitude": 14.5155478 + }, + { + "id": "U2843", + "name": "Koleč", + "avgLatitude": 50.19671, + "avgLongitude": 14.218152 + }, + { + "id": "U4408", + "name": "Koleč,u trafiky", + "avgLatitude": 50.1980247, + "avgLongitude": 14.2308073 + }, + { + "id": "U4409", + "name": "Koleč,zámek", + "avgLatitude": 50.1980324, + "avgLongitude": 14.2224541 + }, + { + "id": "U271", + "name": "Koleje Jižní Město", + "avgLatitude": 50.01724, + "avgLongitude": 14.4999027 + }, + { + "id": "U981", + "name": "Koleje Strahov", + "avgLatitude": 50.0803452, + "avgLongitude": 14.3900328 + }, + { + "id": "U273", + "name": "Koleje Větrník", + "avgLatitude": 50.0887642, + "avgLongitude": 14.3511963 + }, + { + "id": "U6833", + "name": "Kolešov", + "avgLatitude": 50.15673, + "avgLongitude": 13.5107708 + }, + { + "id": "U6818", + "name": "Kolešovice", + "avgLatitude": 50.1356239, + "avgLongitude": 13.6039915 + }, + { + "id": "U6820", + "name": "Kolešovice,Heřmanov", + "avgLatitude": 50.14896, + "avgLongitude": 13.5755873 + }, + { + "id": "U6819", + "name": "Kolešovice,Zderaz", + "avgLatitude": 50.1374626, + "avgLongitude": 13.5767927 + }, + { + "id": "U2816", + "name": "Kolín", + "avgLatitude": 50.0252457, + "avgLongitude": 15.21459 + }, + { + "id": "U4165", + "name": "Kolín dílny", + "avgLatitude": 50.01149, + "avgLongitude": 15.23419 + }, + { + "id": "U9411", + "name": "Kolín místní nádraží", + "avgLatitude": 50.0152321, + "avgLongitude": 15.2229958 + }, + { + "id": "U2873", + "name": "Kolín zastávka", + "avgLatitude": 50.0308838, + "avgLongitude": 15.1948309 + }, + { + "id": "U7357", + "name": "Kolín,banka", + "avgLatitude": 50.0266876, + "avgLongitude": 15.2049732 + }, + { + "id": "U4997", + "name": "Kolín,Bezovka", + "avgLatitude": 50.02265, + "avgLongitude": 15.1992388 + }, + { + "id": "U4998", + "name": "Kolín,Družstevní dům", + "avgLatitude": 50.02533, + "avgLongitude": 15.2001743 + }, + { + "id": "U4996", + "name": "Kolín,Gymnázium", + "avgLatitude": 50.0209961, + "avgLongitude": 15.19751 + }, + { + "id": "U6948", + "name": "Kolín,Jiráskovo nám.", + "avgLatitude": 50.0306, + "avgLongitude": 15.20682 + }, + { + "id": "U6668", + "name": "Kolín,Kablo", + "avgLatitude": 50.0112228, + "avgLongitude": 15.226162 + }, + { + "id": "U4980", + "name": "Kolín,Lučební", + "avgLatitude": 50.0314865, + "avgLongitude": 15.1850853 + }, + { + "id": "U6608", + "name": "Kolín,Na Louži", + "avgLatitude": 50.03302, + "avgLongitude": 15.20682 + }, + { + "id": "U9983", + "name": "Kolín,nemocnice", + "avgLatitude": 50.01918, + "avgLongitude": 15.1968365 + }, + { + "id": "U7368", + "name": "Kolín,Plynárna", + "avgLatitude": 50.02104, + "avgLongitude": 15.2102747 + }, + { + "id": "U7366", + "name": "Kolín,Polepská", + "avgLatitude": 50.0187263, + "avgLongitude": 15.2080536 + }, + { + "id": "U6018", + "name": "Kolín,poliklinika", + "avgLatitude": 50.0247574, + "avgLongitude": 15.2084961 + }, + { + "id": "U2817", + "name": "Kolín,Pošta", + "avgLatitude": 50.0285, + "avgLongitude": 15.1975632 + }, + { + "id": "U6646", + "name": "Kolín,PZKO - Thermo King", + "avgLatitude": 50.0726242, + "avgLongitude": 15.2438841 + }, + { + "id": "U6645", + "name": "Kolín,PZKO-TOYOTA", + "avgLatitude": 50.06941, + "avgLongitude": 15.2334785 + }, + { + "id": "U7390", + "name": "Kolín,Sadová", + "avgLatitude": 50.0362778, + "avgLongitude": 15.2034073 + }, + { + "id": "U6611", + "name": "Kolín,Sendražice,rozc.0.2", + "avgLatitude": 50.0486374, + "avgLongitude": 15.2198448 + }, + { + "id": "U6610", + "name": "Kolín,Strojírny", + "avgLatitude": 50.0411072, + "avgLongitude": 15.2134666 + }, + { + "id": "U4994", + "name": "Kolín,Štítary", + "avgLatitude": 50.0193024, + "avgLongitude": 15.174428 + }, + { + "id": "U6609", + "name": "Kolín,Tatradomy", + "avgLatitude": 50.0349464, + "avgLongitude": 15.20825 + }, + { + "id": "U6667", + "name": "Kolín,Tesla", + "avgLatitude": 50.01715, + "avgLongitude": 15.2183475 + }, + { + "id": "U6944", + "name": "Kolín,Třídvorská", + "avgLatitude": 50.03306, + "avgLongitude": 15.2153149 + }, + { + "id": "U6666", + "name": "Kolín,Tylova", + "avgLatitude": 50.02023, + "avgLongitude": 15.2142925 + }, + { + "id": "U5896", + "name": "Kolín,U Červených", + "avgLatitude": 50.0225868, + "avgLongitude": 15.2050991 + }, + { + "id": "U7389", + "name": "Kolín,U Hřbitova", + "avgLatitude": 50.0357361, + "avgLongitude": 15.2070808 + }, + { + "id": "U4995", + "name": "Kolín,Výfuk", + "avgLatitude": 50.0194244, + "avgLongitude": 15.1816463 + }, + { + "id": "U9982", + "name": "Kolín,Zibohlavy", + "avgLatitude": 50.00099, + "avgLongitude": 15.1579227 + }, + { + "id": "U2880", + "name": "Kolín-Zálabí", + "avgLatitude": 50.03724, + "avgLongitude": 15.2101469 + }, + { + "id": "U274", + "name": "Koloděje", + "avgLatitude": 50.0601425, + "avgLongitude": 14.6407013 + }, + { + "id": "U275", + "name": "Kolodějská obora", + "avgLatitude": 50.0624237, + "avgLongitude": 14.6278582 + }, + { + "id": "U9455", + "name": "Kolomuty", + "avgLatitude": 50.4066048, + "avgLongitude": 14.9775 + }, + { + "id": "U276", + "name": "Kolonie", + "avgLatitude": 50.09339, + "avgLongitude": 14.5251856 + }, + { + "id": "U3220", + "name": "Kolová", + "avgLatitude": 49.9782753, + "avgLongitude": 14.3498793 + }, + { + "id": "U838", + "name": "Kolovraty", + "avgLatitude": 50.0160522, + "avgLongitude": 14.6213932 + }, + { + "id": "U9830", + "name": "Komárov", + "avgLatitude": 49.80561, + "avgLongitude": 13.8573284 + }, + { + "id": "U9829", + "name": "Komárov,Buzuluk", + "avgLatitude": 49.8122749, + "avgLongitude": 13.8610649 + }, + { + "id": "U9831", + "name": "Komárov,Lidový dům", + "avgLatitude": 49.80807, + "avgLongitude": 13.8574257 + }, + { + "id": "U9833", + "name": "Komárov,Na Kocábce", + "avgLatitude": 49.8013077, + "avgLongitude": 13.8652668 + }, + { + "id": "U9834", + "name": "Komárov,sídl.", + "avgLatitude": 49.8098831, + "avgLongitude": 13.8557434 + }, + { + "id": "U9832", + "name": "Komárov,Sokolovice", + "avgLatitude": 49.8091278, + "avgLongitude": 13.8465366 + }, + { + "id": "U279", + "name": "Komárovská", + "avgLatitude": 50.11531, + "avgLongitude": 14.62145 + }, + { + "id": "U280", + "name": "Komořany", + "avgLatitude": 49.99132, + "avgLongitude": 14.4106865 + }, + { + "id": "U6639", + "name": "Konárovice", + "avgLatitude": 50.03769, + "avgLongitude": 15.2813692 + }, + { + "id": "U6641", + "name": "Konárovice,Jelen", + "avgLatitude": 50.05372, + "avgLongitude": 15.291769 + }, + { + "id": "U6420", + "name": "Konárovice,Labuť", + "avgLatitude": 50.03151, + "avgLongitude": 15.2804184 + }, + { + "id": "U6640", + "name": "Konárovice,ObÚ", + "avgLatitude": 50.0413742, + "avgLongitude": 15.2863407 + }, + { + "id": "U6784", + "name": "Kondrac", + "avgLatitude": 49.6669769, + "avgLongitude": 14.8837061 + }, + { + "id": "U6787", + "name": "Kondrac,Dub", + "avgLatitude": 49.6777649, + "avgLongitude": 14.8694611 + }, + { + "id": "U7650", + "name": "Kondrac,Krasovice,rozc.", + "avgLatitude": 49.6580162, + "avgLongitude": 14.8851128 + }, + { + "id": "U6788", + "name": "Kondrac,Ovčiny", + "avgLatitude": 49.6932869, + "avgLongitude": 14.8744535 + }, + { + "id": "U6785", + "name": "Kondrac,předměstí", + "avgLatitude": 49.6706429, + "avgLongitude": 14.8833666 + }, + { + "id": "U6786", + "name": "Kondrac,Vítův Mlýn", + "avgLatitude": 49.6823463, + "avgLongitude": 14.8547678 + }, + { + "id": "U9053", + "name": "Koněprusy", + "avgLatitude": 49.92112, + "avgLongitude": 14.0660381 + }, + { + "id": "U9052", + "name": "Koněprusy,jeskyně", + "avgLatitude": 49.91469, + "avgLongitude": 14.0743618 + }, + { + "id": "U5919", + "name": "Koněprusy,rozc.1.5", + "avgLatitude": 49.92829, + "avgLongitude": 14.08172 + }, + { + "id": "U9054", + "name": "Koněprusy,u hřbitova I", + "avgLatitude": 49.9251633, + "avgLongitude": 14.0707932 + }, + { + "id": "U9527", + "name": "Konětopy", + "avgLatitude": 50.26822, + "avgLongitude": 13.726594 + }, + { + "id": "U1467", + "name": "Konětopy", + "avgLatitude": 50.27498, + "avgLongitude": 14.6552219 + }, + { + "id": "U1988", + "name": "Konojedy", + "avgLatitude": 49.9484558, + "avgLongitude": 14.8512459 + }, + { + "id": "U1989", + "name": "Konojedy,Klíče", + "avgLatitude": 49.939064, + "avgLongitude": 14.8580542 + }, + { + "id": "U1990", + "name": "Konojedy,Pila", + "avgLatitude": 49.94548, + "avgLongitude": 14.853054 + }, + { + "id": "U2022", + "name": "Konojedy,Rozc.", + "avgLatitude": 49.94669, + "avgLongitude": 14.8321705 + }, + { + "id": "U282", + "name": "Konvářka", + "avgLatitude": 50.05462, + "avgLongitude": 14.4018335 + }, + { + "id": "U4621", + "name": "Kopidlno", + "avgLatitude": 50.3339844, + "avgLongitude": 15.2604942 + }, + { + "id": "U31162", + "name": "Kopidlno,Ledkov", + "avgLatitude": 50.34281, + "avgLongitude": 15.2394266 + }, + { + "id": "U31161", + "name": "Kopidlno,nám.", + "avgLatitude": 50.33064, + "avgLongitude": 15.2704983 + }, + { + "id": "U284", + "name": "Korandova", + "avgLatitude": 50.022583, + "avgLongitude": 14.4211168 + }, + { + "id": "U285", + "name": "Korek", + "avgLatitude": 50.10578, + "avgLongitude": 14.3601589 + }, + { + "id": "U2534", + "name": "Korkyně", + "avgLatitude": 49.7805, + "avgLongitude": 14.3518867 + }, + { + "id": "U2533", + "name": "Korkyně,Křížov", + "avgLatitude": 49.78856, + "avgLongitude": 14.3525562 + }, + { + "id": "U2529", + "name": "Korkyně,Křížov,U Kapličky", + "avgLatitude": 49.7923279, + "avgLongitude": 14.3453617 + }, + { + "id": "U9021", + "name": "Korno", + "avgLatitude": 49.91932, + "avgLongitude": 14.1372833 + }, + { + "id": "U262", + "name": "Korunovační", + "avgLatitude": 50.1004028, + "avgLongitude": 14.4193916 + }, + { + "id": "U6389", + "name": "Koryta", + "avgLatitude": 50.57154, + "avgLongitude": 15.0120659 + }, + { + "id": "U198", + "name": "Korytná", + "avgLatitude": 50.0647926, + "avgLongitude": 14.4932966 + }, + { + "id": "U9415", + "name": "Kořenice", + "avgLatitude": 49.9780655, + "avgLongitude": 15.1398888 + }, + { + "id": "U9584", + "name": "Kořenice,Chotouchov", + "avgLatitude": 49.96228, + "avgLongitude": 15.12827 + }, + { + "id": "U9417", + "name": "Kořenice,Pučery", + "avgLatitude": 49.96133, + "avgLongitude": 15.107645 + }, + { + "id": "U2180", + "name": "Kořenice,rozc.Chotouchov", + "avgLatitude": 49.9564438, + "avgLongitude": 15.1215725 + }, + { + "id": "U31291", + "name": "Kořenov,odb.", + "avgLatitude": 50.76557, + "avgLongitude": 15.384285 + }, + { + "id": "U31292", + "name": "Kořenov,Příchovice,Motorest", + "avgLatitude": 50.7552948, + "avgLongitude": 15.3599205 + }, + { + "id": "U6218", + "name": "Kosmonosy,Horní Stakory", + "avgLatitude": 50.4482231, + "avgLongitude": 14.9638767 + }, + { + "id": "U3394", + "name": "Kosmonosy,nám.", + "avgLatitude": 50.439827, + "avgLongitude": 14.9282856 + }, + { + "id": "U3395", + "name": "Kosmonosy,nemocnice", + "avgLatitude": 50.44455, + "avgLongitude": 14.9306126 + }, + { + "id": "U6216", + "name": "Kosmonosy,Průmyslová", + "avgLatitude": 50.4309235, + "avgLongitude": 14.9297657 + }, + { + "id": "U3393", + "name": "Kosmonosy,Transcentrum", + "avgLatitude": 50.4337, + "avgLongitude": 14.9264164 + }, + { + "id": "U6214", + "name": "Kosmonosy,u zámku", + "avgLatitude": 50.4407654, + "avgLongitude": 14.9226971 + }, + { + "id": "U9545", + "name": "Kosobody", + "avgLatitude": 50.10729, + "avgLongitude": 13.5187054 + }, + { + "id": "U1629", + "name": "Kosoř", + "avgLatitude": 49.98609, + "avgLongitude": 14.3275452 + }, + { + "id": "U1630", + "name": "Kosoř,Rozc.", + "avgLatitude": 49.9769745, + "avgLongitude": 14.3285446 + }, + { + "id": "U1340", + "name": "Kosořice", + "avgLatitude": 50.33475, + "avgLongitude": 14.9674749 + }, + { + "id": "U6247", + "name": "Kosořice,křižovatka", + "avgLatitude": 50.33319, + "avgLongitude": 14.9686508 + }, + { + "id": "U9381", + "name": "Kosova Hora", + "avgLatitude": 49.65945, + "avgLongitude": 14.4799328 + }, + { + "id": "U7651", + "name": "Kosova Hora", + "avgLatitude": 49.6540565, + "avgLongitude": 14.4713116 + }, + { + "id": "U7653", + "name": "Kosova Hora,Dohnalova Lhota", + "avgLatitude": 49.63806, + "avgLongitude": 14.463419 + }, + { + "id": "U7654", + "name": "Kosova Hora,Janov", + "avgLatitude": 49.6442947, + "avgLongitude": 14.456419 + }, + { + "id": "U7655", + "name": "Kosova Hora,Lavičky", + "avgLatitude": 49.63886, + "avgLongitude": 14.4894619 + }, + { + "id": "U7657", + "name": "Kosova Hora,Lovčice", + "avgLatitude": 49.6270256, + "avgLongitude": 14.5049582 + }, + { + "id": "U7656", + "name": "Kosova Hora,Lovčice,Dvořáček", + "avgLatitude": 49.62424, + "avgLongitude": 14.51037 + }, + { + "id": "U7658", + "name": "Kosova Hora,Vysoká", + "avgLatitude": 49.6419868, + "avgLongitude": 14.5032358 + }, + { + "id": "U7659", + "name": "Kosova Hora,Vyšatoly", + "avgLatitude": 49.65438, + "avgLongitude": 14.497879 + }, + { + "id": "U2074", + "name": "Kostelec n.Č.l.,Dobrovského", + "avgLatitude": 49.9909134, + "avgLongitude": 14.8535709 + }, + { + "id": "U2320", + "name": "Kostelec n.Č.l.,Chaloupky", + "avgLatitude": 49.9924965, + "avgLongitude": 14.8789368 + }, + { + "id": "U2075", + "name": "Kostelec n.Č.l.,Jevanská", + "avgLatitude": 49.987114, + "avgLongitude": 14.8492317 + }, + { + "id": "U2319", + "name": "Kostelec n.Č.l.,Komenského", + "avgLatitude": 49.9864349, + "avgLongitude": 14.8590984 + }, + { + "id": "U2013", + "name": "Kostelec n.Č.l.,Na Skalce", + "avgLatitude": 49.99299, + "avgLongitude": 14.8396816 + }, + { + "id": "U2016", + "name": "Kostelec n.Č.l.,Nám.", + "avgLatitude": 49.9940529, + "avgLongitude": 14.8601294 + }, + { + "id": "U1978", + "name": "Kostelec n.Č.l.,Sanatorium", + "avgLatitude": 49.989975, + "avgLongitude": 14.8637066 + }, + { + "id": "U2287", + "name": "Kostelec n.Č.l.,Svatbín", + "avgLatitude": 49.9880257, + "avgLongitude": 14.8805161 + }, + { + "id": "U1979", + "name": "Kostelec n.Č.l.,Svatbínská", + "avgLatitude": 49.9835663, + "avgLongitude": 14.8774109 + }, + { + "id": "U2014", + "name": "Kostelec n.Č.l.,Trativody", + "avgLatitude": 49.9927826, + "avgLongitude": 14.8458271 + }, + { + "id": "U2295", + "name": "Kostelec n.Č.l.,Truba", + "avgLatitude": 50.00567, + "avgLongitude": 14.8363857 + }, + { + "id": "U2015", + "name": "Kostelec n.Č.l.,U Křížku", + "avgLatitude": 49.99193, + "avgLongitude": 14.8530407 + }, + { + "id": "U1292", + "name": "Kostelec n.L.,Na Cihelně", + "avgLatitude": 50.2194138, + "avgLongitude": 14.59878 + }, + { + "id": "U1248", + "name": "Kostelec n.L.,Na Růžku", + "avgLatitude": 50.2244453, + "avgLongitude": 14.5846367 + }, + { + "id": "U1242", + "name": "Kostelec n.L.,Nám.", + "avgLatitude": 50.2306976, + "avgLongitude": 14.58824 + }, + { + "id": "U2188", + "name": "Kostelec n.L.,U Starého Labe", + "avgLatitude": 50.24382, + "avgLongitude": 14.5939655 + }, + { + "id": "U1802", + "name": "Kostelec n.L.,U Váhy", + "avgLatitude": 50.2268448, + "avgLongitude": 14.5842037 + }, + { + "id": "U1801", + "name": "Kostelec n.L.,Záv.", + "avgLatitude": 50.22927, + "avgLongitude": 14.57308 + }, + { + "id": "U1246", + "name": "Kostelec n.L.,Žel.st.", + "avgLatitude": 50.2216835, + "avgLongitude": 14.5822506 + }, + { + "id": "U32092", + "name": "Kostelec n.Vlt.", + "avgLatitude": 49.4995651, + "avgLongitude": 14.2131023 + }, + { + "id": "U32097", + "name": "Kostelec n.Vlt.,Přílepov,rozc.1.5", + "avgLatitude": 49.48645, + "avgLongitude": 14.2539692 + }, + { + "id": "U32096", + "name": "Kostelec n.Vlt.,Sobědraž,rozc.s.19", + "avgLatitude": 49.4897575, + "avgLongitude": 14.2412777 + }, + { + "id": "U32093", + "name": "Kostelec n.Vlt.,U rybníka", + "avgLatitude": 49.5013351, + "avgLongitude": 14.2121572 + }, + { + "id": "U32094", + "name": "Kostelec n.Vlt.,Zahrádka", + "avgLatitude": 49.49284, + "avgLongitude": 14.2267952 + }, + { + "id": "U32095", + "name": "Kostelec n.Vlt.,Zahrádka,rozc.", + "avgLatitude": 49.4948463, + "avgLongitude": 14.2312651 + }, + { + "id": "U1573", + "name": "Kostelec u Křížků", + "avgLatitude": 49.90696, + "avgLongitude": 14.55813 + }, + { + "id": "U1583", + "name": "Kostelec u Křížků,Škola", + "avgLatitude": 49.9096527, + "avgLongitude": 14.5636148 + }, + { + "id": "U1470", + "name": "Kostelní Hlavno,U Kostela", + "avgLatitude": 50.25849, + "avgLongitude": 14.69677 + }, + { + "id": "U1471", + "name": "Kostelní Hlavno,U Pomníku", + "avgLatitude": 50.25712, + "avgLongitude": 14.6991863 + }, + { + "id": "U1498", + "name": "Kostelní Lhota", + "avgLatitude": 50.12973, + "avgLongitude": 15.0310326 + }, + { + "id": "U1497", + "name": "Kostelní Lhota,U Kovárny", + "avgLatitude": 50.1296959, + "avgLongitude": 15.0222607 + }, + { + "id": "U2912", + "name": "Kostomlátky", + "avgLatitude": 50.17025, + "avgLongitude": 14.9802847 + }, + { + "id": "U1337", + "name": "Kostomlátky,odb.Doubrava", + "avgLatitude": 50.1717949, + "avgLongitude": 14.96818 + }, + { + "id": "U4573", + "name": "Kostomlátky,U Kapličky", + "avgLatitude": 50.17096, + "avgLongitude": 14.9855776 + }, + { + "id": "U1325", + "name": "Kostomlaty n.L.", + "avgLatitude": 50.1865158, + "avgLongitude": 14.9548206 + }, + { + "id": "U3019", + "name": "Kostomlaty n.L.,Hronětice", + "avgLatitude": 50.2035065, + "avgLongitude": 14.9497356 + }, + { + "id": "U3025", + "name": "Kostomlaty n.L.,Lány", + "avgLatitude": 50.19362, + "avgLongitude": 14.9558306 + }, + { + "id": "U3000", + "name": "Kostomlaty n.L.,rozc.k Šibicům", + "avgLatitude": 50.1988144, + "avgLongitude": 14.95613 + }, + { + "id": "U4386", + "name": "Kostomlaty n.L.,rozcestí Vápensko", + "avgLatitude": 50.2259827, + "avgLongitude": 14.9243813 + }, + { + "id": "U3009", + "name": "Kostomlaty n.L.,Rozkoš", + "avgLatitude": 50.18866, + "avgLongitude": 14.9316521 + }, + { + "id": "U3020", + "name": "Kostomlaty n.L.,Vápensko", + "avgLatitude": 50.2149658, + "avgLongitude": 14.9291191 + }, + { + "id": "U1333", + "name": "Kostomlaty n.L.,Žel.st.", + "avgLatitude": 50.1841125, + "avgLongitude": 14.9615831 + }, + { + "id": "U4430", + "name": "Kostomlaty pod Řípem", + "avgLatitude": 50.3803749, + "avgLongitude": 14.330349 + }, + { + "id": "U4712", + "name": "Kostomlaty p.Řípem,rozc.", + "avgLatitude": 50.3873672, + "avgLongitude": 14.3370047 + }, + { + "id": "U2977", + "name": "Košátky", + "avgLatitude": 50.31526, + "avgLongitude": 14.6679878 + }, + { + "id": "U31660", + "name": "Košetice", + "avgLatitude": 49.55915, + "avgLongitude": 15.1158667 + }, + { + "id": "U31720", + "name": "Košetice,rozc.Martinice u Onšova", + "avgLatitude": 49.5686722, + "avgLongitude": 15.1072817 + }, + { + "id": "U4076", + "name": "Košice", + "avgLatitude": 49.8954544, + "avgLongitude": 15.1503811 + }, + { + "id": "U9950", + "name": "Košice,rozc.", + "avgLatitude": 49.8981171, + "avgLongitude": 15.1447754 + }, + { + "id": "U9889", + "name": "Košík", + "avgLatitude": 50.31613, + "avgLongitude": 15.1358681 + }, + { + "id": "U9890", + "name": "Košík,Doubravany", + "avgLatitude": 50.30635, + "avgLongitude": 15.1291733 + }, + { + "id": "U9888", + "name": "Košík,Tuchom", + "avgLatitude": 50.32542, + "avgLongitude": 15.1410456 + }, + { + "id": "U31224", + "name": "Košťálov,křiž.k lomu", + "avgLatitude": 50.5763626, + "avgLongitude": 15.3836765 + }, + { + "id": "U31227", + "name": "Košťálov,Kundratice,střed", + "avgLatitude": 50.5843468, + "avgLongitude": 15.4360466 + }, + { + "id": "U31225", + "name": "Košťálov,nám.", + "avgLatitude": 50.5721436, + "avgLongitude": 15.4037275 + }, + { + "id": "U9636", + "name": "Kotenčice", + "avgLatitude": 49.7361526, + "avgLongitude": 14.0935917 + }, + { + "id": "U4100", + "name": "Kotevní", + "avgLatitude": 50.0656433, + "avgLongitude": 14.4125414 + }, + { + "id": "U289", + "name": "Kotlářka", + "avgLatitude": 50.06996, + "avgLongitude": 14.3623371 + }, + { + "id": "U9857", + "name": "Kotopeky", + "avgLatitude": 49.8584, + "avgLongitude": 13.922884 + }, + { + "id": "U9859", + "name": "Kotopeky,Tihava", + "avgLatitude": 49.85089, + "avgLongitude": 13.9246349 + }, + { + "id": "U9860", + "name": "Kotopeky,Tihava,u mostu", + "avgLatitude": 49.8520355, + "avgLongitude": 13.92137 + }, + { + "id": "U9858", + "name": "Kotopeky,u bytovky", + "avgLatitude": 49.8564453, + "avgLongitude": 13.924964 + }, + { + "id": "U2784", + "name": "Kotorská", + "avgLatitude": 50.0543175, + "avgLongitude": 14.4368343 + }, + { + "id": "U2420", + "name": "Kounice", + "avgLatitude": 50.10814, + "avgLongitude": 14.8557606 + }, + { + "id": "U9523", + "name": "Kounov", + "avgLatitude": 50.2161331, + "avgLongitude": 13.6654625 + }, + { + "id": "U6076", + "name": "Kounov,škola", + "avgLatitude": 50.2134171, + "avgLongitude": 13.6721554 + }, + { + "id": "U6033", + "name": "Kounov,u mostu", + "avgLatitude": 50.21134, + "avgLongitude": 13.6779079 + }, + { + "id": "U248", + "name": "Koupaliště Čakovice", + "avgLatitude": 50.1476364, + "avgLongitude": 14.5249434 + }, + { + "id": "U7660", + "name": "Koupě", + "avgLatitude": 49.5178223, + "avgLongitude": 13.90952 + }, + { + "id": "U7661", + "name": "Koupě,Čepro", + "avgLatitude": 49.5105438, + "avgLongitude": 13.897933 + }, + { + "id": "U2300", + "name": "Kouřim", + "avgLatitude": 50.00516, + "avgLongitude": 14.9727421 + }, + { + "id": "U4148", + "name": "Kouřim", + "avgLatitude": 50.0056534, + "avgLongitude": 14.987793 + }, + { + "id": "U2417", + "name": "Kouřim,rozc.Království", + "avgLatitude": 50.0145836, + "avgLongitude": 14.9684029 + }, + { + "id": "U2301", + "name": "Kouřim,ZŠ", + "avgLatitude": 50.0017, + "avgLongitude": 14.9739227 + }, + { + "id": "U6698", + "name": "Kouty", + "avgLatitude": 50.1932449, + "avgLongitude": 15.1497116 + }, + { + "id": "U6413", + "name": "Kováň", + "avgLatitude": 50.424263, + "avgLongitude": 14.7785225 + }, + { + "id": "U4064", + "name": "Kováň,Podkováň", + "avgLatitude": 50.4180336, + "avgLongitude": 14.7842054 + }, + { + "id": "U4054", + "name": "Kovanec", + "avgLatitude": 50.4178123, + "avgLongitude": 14.776144 + }, + { + "id": "U3028", + "name": "Kovanice", + "avgLatitude": 50.1694031, + "avgLongitude": 15.0711727 + }, + { + "id": "U3029", + "name": "Kovanice,Chvalovice", + "avgLatitude": 50.160965, + "avgLongitude": 15.0827923 + }, + { + "id": "U290", + "name": "Kovárna", + "avgLatitude": 50.11738, + "avgLongitude": 14.4165955 + }, + { + "id": "U2839", + "name": "Kováry", + "avgLatitude": 50.1894455, + "avgLongitude": 14.2454748 + }, + { + "id": "U31665", + "name": "Kovářov", + "avgLatitude": 49.51821, + "avgLongitude": 14.2786474 + }, + { + "id": "U31670", + "name": "Kovářov,Lašovice", + "avgLatitude": 49.55375, + "avgLongitude": 14.2395039 + }, + { + "id": "U31666", + "name": "Kovářov,Onen Svět samoty", + "avgLatitude": 49.5616951, + "avgLongitude": 14.23226 + }, + { + "id": "U31672", + "name": "Kovářov,Radvánov", + "avgLatitude": 49.53139, + "avgLongitude": 14.2570858 + }, + { + "id": "U31651", + "name": "Kovářov,rozc.Klučenice 2.0", + "avgLatitude": 49.55717, + "avgLongitude": 14.2303438 + }, + { + "id": "U31667", + "name": "Kovářov,škola", + "avgLatitude": 49.5161476, + "avgLongitude": 14.2818308 + }, + { + "id": "U31675", + "name": "Kovářov,Zahořany,rozc.1.1", + "avgLatitude": 49.54658, + "avgLongitude": 14.2475338 + }, + { + "id": "U31676", + "name": "Kovářov,Zlučín", + "avgLatitude": 49.538208, + "avgLongitude": 14.2549286 + }, + { + "id": "U711", + "name": "Kovářova - KD Mlejn", + "avgLatitude": 50.048317, + "avgLongitude": 14.3178253 + }, + { + "id": "U292", + "name": "Kovošrot", + "avgLatitude": 50.0620842, + "avgLongitude": 14.5421648 + }, + { + "id": "U7663", + "name": "Kozárovice", + "avgLatitude": 49.5585556, + "avgLongitude": 14.1088486 + }, + { + "id": "U7665", + "name": "Kozárovice,Holušice", + "avgLatitude": 49.56591, + "avgLongitude": 14.1133394 + }, + { + "id": "U7662", + "name": "Kozárovice,kaple", + "avgLatitude": 49.55577, + "avgLongitude": 14.1071262 + }, + { + "id": "U7664", + "name": "Kozárovice,lom", + "avgLatitude": 49.5542526, + "avgLongitude": 14.1011219 + }, + { + "id": "U31677", + "name": "Kozlov", + "avgLatitude": 49.73465, + "avgLongitude": 15.2928591 + }, + { + "id": "U31678", + "name": "Kozlov,Leština", + "avgLatitude": 49.7491264, + "avgLongitude": 15.3002625 + }, + { + "id": "U31679", + "name": "Kozlov,Olešná", + "avgLatitude": 49.7212524, + "avgLongitude": 15.2913609 + }, + { + "id": "U31397", + "name": "Kozlov,Vrbka", + "avgLatitude": 49.7497864, + "avgLongitude": 15.278944 + }, + { + "id": "U31699", + "name": "Kozlov,Vrbka,rozc.0.3", + "avgLatitude": 49.744854, + "avgLongitude": 15.277936 + }, + { + "id": "U7666", + "name": "Kozmice", + "avgLatitude": 49.8253021, + "avgLongitude": 14.7959423 + }, + { + "id": "U7667", + "name": "Kozmice,Kácova Lhota", + "avgLatitude": 49.81089, + "avgLongitude": 14.7878933 + }, + { + "id": "U1995", + "name": "Kozojedy", + "avgLatitude": 49.99639, + "avgLongitude": 14.8139954 + }, + { + "id": "U4011", + "name": "Kozojedy", + "avgLatitude": 50.25531, + "avgLongitude": 13.815836 + }, + { + "id": "U2012", + "name": "Kozojedy,Rozc.", + "avgLatitude": 49.9917755, + "avgLongitude": 14.8129311 + }, + { + "id": "U2224", + "name": "Kozomín", + "avgLatitude": 50.2373352, + "avgLongitude": 14.3723726 + }, + { + "id": "U2225", + "name": "Kozomín,Rozc.", + "avgLatitude": 50.24047, + "avgLongitude": 14.3727913 + }, + { + "id": "U9538", + "name": "Kožlany", + "avgLatitude": 49.99366, + "avgLongitude": 13.5191536 + }, + { + "id": "U31328", + "name": "Kožlany,u školy", + "avgLatitude": 49.9948845, + "avgLongitude": 13.5460634 + }, + { + "id": "U31327", + "name": "Kožlany,u váhy", + "avgLatitude": 49.99341, + "avgLongitude": 13.5359917 + }, + { + "id": "U31680", + "name": "Kožlí", + "avgLatitude": 49.6703072, + "avgLongitude": 15.2527065 + }, + { + "id": "U31683", + "name": "Kožlí,Bohumilice", + "avgLatitude": 49.6930237, + "avgLongitude": 15.25304 + }, + { + "id": "U31681", + "name": "Kožlí,Březina", + "avgLatitude": 49.67224, + "avgLongitude": 15.2573414 + }, + { + "id": "U31684", + "name": "Kožlí,Přemilovsko", + "avgLatitude": 49.6877441, + "avgLongitude": 15.2368517 + }, + { + "id": "U31682", + "name": "Kožlí,rozc.1.5", + "avgLatitude": 49.67997, + "avgLongitude": 15.2431345 + }, + { + "id": "U31685", + "name": "Kožlí,Sechov", + "avgLatitude": 49.6976776, + "avgLongitude": 15.23798 + }, + { + "id": "U31686", + "name": "Kožlí,Sechov,II", + "avgLatitude": 49.6991348, + "avgLongitude": 15.2436962 + }, + { + "id": "U4713", + "name": "Krabčice", + "avgLatitude": 50.4052048, + "avgLongitude": 14.3014622 + }, + { + "id": "U7494", + "name": "Krabčice,Rovné,rozc.1.0", + "avgLatitude": 50.4021721, + "avgLongitude": 14.3036633 + }, + { + "id": "U7496", + "name": "Krabčice,Rovné,váha", + "avgLatitude": 50.4002953, + "avgLongitude": 14.2983131 + }, + { + "id": "U4714", + "name": "Krabčice,Vesce,rozc.1.0", + "avgLatitude": 50.4107971, + "avgLongitude": 14.2884445 + }, + { + "id": "U438", + "name": "Krahulčí", + "avgLatitude": 50.1074257, + "avgLongitude": 14.6038055 + }, + { + "id": "U371", + "name": "Krakov", + "avgLatitude": 50.12777, + "avgLongitude": 14.4170532 + }, + { + "id": "U6895", + "name": "Krakov", + "avgLatitude": 50.03783, + "avgLongitude": 13.6478558 + }, + { + "id": "U6411", + "name": "Krakovany", + "avgLatitude": 50.0686035, + "avgLongitude": 15.3680191 + }, + { + "id": "U6435", + "name": "Krakovany,Božec", + "avgLatitude": 50.07434, + "avgLongitude": 15.3648567 + }, + { + "id": "U6433", + "name": "Krakovany,křiž.", + "avgLatitude": 50.0662766, + "avgLongitude": 15.3727837 + }, + { + "id": "U6897", + "name": "Krakovec", + "avgLatitude": 50.020195, + "avgLongitude": 13.6374836 + }, + { + "id": "U6896", + "name": "Krakovec,u lipky", + "avgLatitude": 50.0308876, + "avgLongitude": 13.6400738 + }, + { + "id": "U6898", + "name": "Krakovec,Zhoř,rozc.", + "avgLatitude": 50.02765, + "avgLongitude": 13.6691246 + }, + { + "id": "U31321", + "name": "Kralovice", + "avgLatitude": 49.980648, + "avgLongitude": 13.4855547 + }, + { + "id": "U294", + "name": "Královice", + "avgLatitude": 50.03704, + "avgLongitude": 14.6355991 + }, + { + "id": "U9225", + "name": "Královice", + "avgLatitude": 50.26217, + "avgLongitude": 14.0566711 + }, + { + "id": "U9539", + "name": "Kralovice u Rakovníka", + "avgLatitude": 49.9888954, + "avgLongitude": 13.4899292 + }, + { + "id": "U4869", + "name": "Královice u Zlonic", + "avgLatitude": 50.25974, + "avgLongitude": 14.0680246 + }, + { + "id": "U32153", + "name": "Královice,dvůr", + "avgLatitude": 50.2641, + "avgLongitude": 14.0578585 + }, + { + "id": "U32074", + "name": "Kralovice,Mariánský Týnec", + "avgLatitude": 49.9859772, + "avgLongitude": 13.4654636 + }, + { + "id": "U32077", + "name": "Kralovice,Řemešín,rozc.", + "avgLatitude": 49.9819946, + "avgLongitude": 13.3890419 + }, + { + "id": "U32075", + "name": "Kralovice,Trojany", + "avgLatitude": 49.9841423, + "avgLongitude": 13.4061279 + }, + { + "id": "U32076", + "name": "Kralovice,Trojany,rozc.", + "avgLatitude": 49.98562, + "avgLongitude": 13.4270287 + }, + { + "id": "U32073", + "name": "Kralovice,ZVŠ", + "avgLatitude": 49.98009, + "avgLongitude": 13.4818029 + }, + { + "id": "U674", + "name": "Královická", + "avgLatitude": 50.0652771, + "avgLongitude": 14.5155258 + }, + { + "id": "U362", + "name": "Královka", + "avgLatitude": 50.084877, + "avgLongitude": 14.3803663 + }, + { + "id": "U20", + "name": "Královský letohrádek", + "avgLatitude": 50.0942459, + "avgLongitude": 14.4047632 + }, + { + "id": "U4222", + "name": "Kralupy n.Vlt.,Čechova", + "avgLatitude": 50.2369728, + "avgLongitude": 14.2930393 + }, + { + "id": "U4190", + "name": "Kralupy n.Vlt.,Gymnázium", + "avgLatitude": 50.2401657, + "avgLongitude": 14.299715 + }, + { + "id": "U2444", + "name": "Kralupy n.Vlt.,hřbitov", + "avgLatitude": 50.2331, + "avgLongitude": 14.310854 + }, + { + "id": "U9620", + "name": "Kralupy n.Vlt.,Hybešova", + "avgLatitude": 50.2320938, + "avgLongitude": 14.3008347 + }, + { + "id": "U4237", + "name": "Kralupy n.Vlt.,Koupaliště", + "avgLatitude": 50.25385, + "avgLongitude": 14.30831 + }, + { + "id": "U2232", + "name": "Kralupy n.Vlt.,Kovošrot", + "avgLatitude": 50.2399826, + "avgLongitude": 14.33395 + }, + { + "id": "U2235", + "name": "Kralupy n.Vlt.,kulturní dům", + "avgLatitude": 50.2471466, + "avgLongitude": 14.3163147 + }, + { + "id": "U4216", + "name": "Kralupy n.Vlt.,Lidové nám.", + "avgLatitude": 50.2368164, + "avgLongitude": 14.2906647 + }, + { + "id": "U4228", + "name": "Kralupy n.Vlt.,Lobeč", + "avgLatitude": 50.2456551, + "avgLongitude": 14.3014545 + }, + { + "id": "U2233", + "name": "Kralupy n.Vlt.,Lobeček,Pískovna", + "avgLatitude": 50.2432327, + "avgLongitude": 14.32822 + }, + { + "id": "U2234", + "name": "Kralupy n.Vlt.,Lobeček,Rozc.", + "avgLatitude": 50.250946, + "avgLongitude": 14.3227549 + }, + { + "id": "U4239", + "name": "Kralupy n.Vlt.,Masarykova", + "avgLatitude": 50.25013, + "avgLongitude": 14.3132153 + }, + { + "id": "U2286", + "name": "Kralupy n.Vlt.,Městský úřad", + "avgLatitude": 50.241375, + "avgLongitude": 14.31188 + }, + { + "id": "U2888", + "name": "Kralupy n.Vlt.,Minice", + "avgLatitude": 50.22335, + "avgLongitude": 14.29996 + }, + { + "id": "U4220", + "name": "Kralupy n.Vlt.,Modrá hvězda", + "avgLatitude": 50.22775, + "avgLongitude": 14.29677 + }, + { + "id": "U4214", + "name": "Kralupy n.Vlt.,Na Hrázi", + "avgLatitude": 50.2329254, + "avgLongitude": 14.28049 + }, + { + "id": "U4221", + "name": "Kralupy n.Vlt.,Na Krétě", + "avgLatitude": 50.2330475, + "avgLongitude": 14.2915144 + }, + { + "id": "U4248", + "name": "Kralupy n.Vlt.,obchodní centrum", + "avgLatitude": 50.25242, + "avgLongitude": 14.31888 + }, + { + "id": "U2285", + "name": "Kralupy n.Vlt.,Poděbradova", + "avgLatitude": 50.2376022, + "avgLongitude": 14.3072739 + }, + { + "id": "U4224", + "name": "Kralupy n.Vlt.,poliklinika", + "avgLatitude": 50.23894, + "avgLongitude": 14.3067865 + }, + { + "id": "U4236", + "name": "Kralupy n.Vlt.,Revoluční", + "avgLatitude": 50.251442, + "avgLongitude": 14.31112 + }, + { + "id": "U4215", + "name": "Kralupy n.Vlt.,Růžové údolí", + "avgLatitude": 50.23429, + "avgLongitude": 14.2857189 + }, + { + "id": "U2231", + "name": "Kralupy n.Vlt.,Synthos", + "avgLatitude": 50.2555237, + "avgLongitude": 14.3205853 + }, + { + "id": "U4230", + "name": "Kralupy n.Vlt.,U Cukrovaru", + "avgLatitude": 50.2425, + "avgLongitude": 14.3094 + }, + { + "id": "U4225", + "name": "Kralupy n.Vlt.,U Jízku", + "avgLatitude": 50.23965, + "avgLongitude": 14.303545 + }, + { + "id": "U4238", + "name": "Kralupy n.Vlt.,U Parku", + "avgLatitude": 50.2522278, + "avgLongitude": 14.3087893 + }, + { + "id": "U4223", + "name": "Kralupy n.Vlt.,u požárního domu", + "avgLatitude": 50.24041, + "avgLongitude": 14.29686 + }, + { + "id": "U4229", + "name": "Kralupy n.Vlt.,V Luhu", + "avgLatitude": 50.2445374, + "avgLongitude": 14.30723 + }, + { + "id": "U4226", + "name": "Kralupy n.Vlt.,V Zátiší", + "avgLatitude": 50.2388878, + "avgLongitude": 14.30423 + }, + { + "id": "U7481", + "name": "Kralupy n.Vlt.,Velvarská", + "avgLatitude": 50.2346573, + "avgLongitude": 14.2690868 + }, + { + "id": "U4213", + "name": "Kralupy n.Vlt.,Zeměchy", + "avgLatitude": 50.22992, + "avgLongitude": 14.26727 + }, + { + "id": "U2942", + "name": "Kralupy n.Vlt.,Zeměchy,Žel.zast.", + "avgLatitude": 50.23281, + "avgLongitude": 14.26668 + }, + { + "id": "U2236", + "name": "Kralupy n.Vlt.,žel.st.", + "avgLatitude": 50.2393761, + "avgLongitude": 14.31341 + }, + { + "id": "U2903", + "name": "Kralupy nad Vltavou předměstí", + "avgLatitude": 50.23189, + "avgLongitude": 14.28384 + }, + { + "id": "U2849", + "name": "Králův Dvůr", + "avgLatitude": 49.9428177, + "avgLongitude": 14.04018 + }, + { + "id": "U9010", + "name": "Králův Dvůr,Fučíkova", + "avgLatitude": 49.9418, + "avgLongitude": 14.02943 + }, + { + "id": "U4972", + "name": "Králův Dvůr,Jungmannova", + "avgLatitude": 49.9468536, + "avgLongitude": 14.0340862 + }, + { + "id": "U9012", + "name": "Králův Dvůr,Karlova Huť", + "avgLatitude": 49.93761, + "avgLongitude": 14.0321655 + }, + { + "id": "U9014", + "name": "Králův Dvůr,Křižatky", + "avgLatitude": 49.92576, + "avgLongitude": 14.0371 + }, + { + "id": "U9007", + "name": "Králův Dvůr,Levín", + "avgLatitude": 49.9271278, + "avgLongitude": 14.001586 + }, + { + "id": "U9112", + "name": "Králův Dvůr,Levín,farma", + "avgLatitude": 49.9339676, + "avgLongitude": 13.9953442 + }, + { + "id": "U9006", + "name": "Králův Dvůr,Levín,Levínský vršek", + "avgLatitude": 49.9341736, + "avgLongitude": 14.010231 + }, + { + "id": "U4975", + "name": "Králův Dvůr,Nám. Míru - poliklinika", + "avgLatitude": 49.9453125, + "avgLongitude": 14.0378742 + }, + { + "id": "U4978", + "name": "Králův Dvůr,Počaply", + "avgLatitude": 49.93905, + "avgLongitude": 14.0191784 + }, + { + "id": "U4979", + "name": "Králův Dvůr,Počaply,Plzeňská", + "avgLatitude": 49.9391022, + "avgLongitude": 14.0213423 + }, + { + "id": "U4977", + "name": "Králův Dvůr,Počaply,škola", + "avgLatitude": 49.9414749, + "avgLongitude": 14.02224 + }, + { + "id": "U2850", + "name": "Králův Dvůr,Popovice", + "avgLatitude": 49.92918, + "avgLongitude": 14.0192461 + }, + { + "id": "U9008", + "name": "Králův Dvůr,Popovice,odbočka", + "avgLatitude": 49.9339447, + "avgLongitude": 14.02527 + }, + { + "id": "U4973", + "name": "Králův Dvůr,škola", + "avgLatitude": 49.94754, + "avgLongitude": 14.0324717 + }, + { + "id": "U9009", + "name": "Králův Dvůr,U Karla IV.", + "avgLatitude": 49.9378281, + "avgLongitude": 14.0290794 + }, + { + "id": "U4976", + "name": "Králův Dvůr,U Tří zvonků", + "avgLatitude": 49.94275, + "avgLongitude": 14.0281706 + }, + { + "id": "U1748", + "name": "Králův Dvůr,u zámku", + "avgLatitude": 49.9488373, + "avgLongitude": 14.0389252 + }, + { + "id": "U9013", + "name": "Králův Dvůr,Výšiny", + "avgLatitude": 49.9381027, + "avgLongitude": 14.0371666 + }, + { + "id": "U4974", + "name": "Králův Dvůr,Zahořany", + "avgLatitude": 49.9536324, + "avgLongitude": 14.0220938 + }, + { + "id": "U5099", + "name": "Králův Dvůr,Zahořany,Pod Hájem", + "avgLatitude": 49.9516068, + "avgLongitude": 14.0285721 + }, + { + "id": "U7669", + "name": "Krásná Hora n.Vlt.", + "avgLatitude": 49.6044235, + "avgLongitude": 14.2768869 + }, + { + "id": "U7671", + "name": "Krásná Hora n.Vlt.,Hostovnice,rozc.", + "avgLatitude": 49.5993347, + "avgLongitude": 14.28665 + }, + { + "id": "U7679", + "name": "Krásná Hora n.Vlt.,Krašovice", + "avgLatitude": 49.5841637, + "avgLongitude": 14.3029528 + }, + { + "id": "U7680", + "name": "Krásná Hora n.Vlt.,Krašovice,rozc.Rybníček", + "avgLatitude": 49.58168, + "avgLongitude": 14.313406 + }, + { + "id": "U7678", + "name": "Krásná Hora n.Vlt.,Mariánský Důl", + "avgLatitude": 49.604332, + "avgLongitude": 14.2622566 + }, + { + "id": "U7673", + "name": "Krásná Hora n.Vlt.,Plešiště,rozc.", + "avgLatitude": 49.60681, + "avgLongitude": 14.32234 + }, + { + "id": "U7681", + "name": "Krásná Hora n.Vlt.,Podmoky", + "avgLatitude": 49.5957031, + "avgLongitude": 14.2358141 + }, + { + "id": "U7672", + "name": "Krásná Hora n.Vlt.,Podmoky,Na Mrázovech", + "avgLatitude": 49.6027374, + "avgLongitude": 14.2497749 + }, + { + "id": "U7670", + "name": "Krásná Hora n.Vlt.,Pražská", + "avgLatitude": 49.6068344, + "avgLongitude": 14.2774248 + }, + { + "id": "U7682", + "name": "Krásná Hora n.Vlt.,Vletice", + "avgLatitude": 49.60463, + "avgLongitude": 14.3103924 + }, + { + "id": "U7674", + "name": "Krásná Hora n.Vlt.,Vrbice,rozc.", + "avgLatitude": 49.5916061, + "avgLongitude": 14.2874041 + }, + { + "id": "U7683", + "name": "Krásná Hora n.Vlt.,Zhoř", + "avgLatitude": 49.61742, + "avgLongitude": 14.2560425 + }, + { + "id": "U7676", + "name": "Krásná Hora n.Vlt.,Zhoř,rozc.", + "avgLatitude": 49.61737, + "avgLongitude": 14.2756624 + }, + { + "id": "U7677", + "name": "Krásná Hora n.Vlt.,Žákovec", + "avgLatitude": 49.62313, + "avgLongitude": 14.2771549 + }, + { + "id": "U9783", + "name": "Krásná Ves", + "avgLatitude": 50.42528, + "avgLongitude": 14.7913094 + }, + { + "id": "U9431", + "name": "Krasoňovice", + "avgLatitude": 49.8771553, + "avgLongitude": 15.2238226 + }, + { + "id": "U296", + "name": "Krčská", + "avgLatitude": 50.04358, + "avgLongitude": 14.4425125 + }, + { + "id": "U297", + "name": "Krčský hřbitov", + "avgLatitude": 50.04628, + "avgLongitude": 14.4394455 + }, + { + "id": "U1074", + "name": "Krejcárek", + "avgLatitude": 50.0953674, + "avgLongitude": 14.4756279 + }, + { + "id": "U395", + "name": "Krematorium Motol", + "avgLatitude": 50.065937, + "avgLongitude": 14.3257666 + }, + { + "id": "U299", + "name": "Krematorium Strašnice", + "avgLatitude": 50.07724, + "avgLongitude": 14.4849577 + }, + { + "id": "U1594", + "name": "Krhanice", + "avgLatitude": 49.85644, + "avgLongitude": 14.5577345 + }, + { + "id": "U2861", + "name": "Krhanice", + "avgLatitude": 49.8489838, + "avgLongitude": 14.5532379 + }, + { + "id": "U4501", + "name": "Krhanice,K Žel.st.", + "avgLatitude": 49.8508072, + "avgLongitude": 14.5524178 + }, + { + "id": "U4499", + "name": "Krhanice,Lom", + "avgLatitude": 49.85853, + "avgLongitude": 14.5425072 + }, + { + "id": "U1941", + "name": "Krhanice,Prosečnice", + "avgLatitude": 49.8624649, + "avgLongitude": 14.5346336 + }, + { + "id": "U4183", + "name": "Krhanice,Škola", + "avgLatitude": 49.8526459, + "avgLongitude": 14.55941 + }, + { + "id": "U7067", + "name": "Krchleby", + "avgLatitude": 49.888382, + "avgLongitude": 15.3499565 + }, + { + "id": "U7290", + "name": "Krchleby,Chedrbí", + "avgLatitude": 49.8752975, + "avgLongitude": 15.3322859 + }, + { + "id": "U3037", + "name": "Krchleby,školka", + "avgLatitude": 50.23516, + "avgLongitude": 15.0225248 + }, + { + "id": "U2505", + "name": "Krňany,Bytovky", + "avgLatitude": 49.8453827, + "avgLongitude": 14.4770107 + }, + { + "id": "U2506", + "name": "Krňany,Obec", + "avgLatitude": 49.84241, + "avgLongitude": 14.475132 + }, + { + "id": "U2504", + "name": "Krňany,Rozc.Třebsín", + "avgLatitude": 49.8524933, + "avgLongitude": 14.4564209 + }, + { + "id": "U2507", + "name": "Krňany,Slapnice", + "avgLatitude": 49.8396263, + "avgLongitude": 14.4714222 + }, + { + "id": "U2508", + "name": "Krňany,Teletín", + "avgLatitude": 49.82718, + "avgLongitude": 14.4682465 + }, + { + "id": "U2503", + "name": "Krňany,U Křížku", + "avgLatitude": 49.856987, + "avgLongitude": 14.4443626 + }, + { + "id": "U2502", + "name": "Krňany,Závist", + "avgLatitude": 49.8578453, + "avgLongitude": 14.4392395 + }, + { + "id": "U4171", + "name": "Krňovická", + "avgLatitude": 50.10193, + "avgLongitude": 14.65907 + }, + { + "id": "U2985", + "name": "Krnsko", + "avgLatitude": 50.3766556, + "avgLongitude": 14.8692122 + }, + { + "id": "U4031", + "name": "Krnsko,pod viaduktem", + "avgLatitude": 50.37169, + "avgLongitude": 14.8662539 + }, + { + "id": "U4060", + "name": "Krnsko,Řehnice", + "avgLatitude": 50.3930321, + "avgLongitude": 14.8503551 + }, + { + "id": "U4050", + "name": "Krnsko,u křížku", + "avgLatitude": 50.37538, + "avgLongitude": 14.8569288 + }, + { + "id": "U6471", + "name": "Krnsko,zámek", + "avgLatitude": 50.38064, + "avgLongitude": 14.8528309 + }, + { + "id": "U300", + "name": "Krocínka", + "avgLatitude": 50.1160431, + "avgLongitude": 14.5031719 + }, + { + "id": "U2978", + "name": "Kropáčova Vrutice", + "avgLatitude": 50.3235359, + "avgLongitude": 14.7013273 + }, + { + "id": "U6124", + "name": "Kropáčova Vrutice,Krpy", + "avgLatitude": 50.32895, + "avgLongitude": 14.68997 + }, + { + "id": "U6084", + "name": "Kropáčova Vrutice,rozc.Krpy", + "avgLatitude": 50.3289566, + "avgLongitude": 14.700037 + }, + { + "id": "U6085", + "name": "Kropáčova Vrutice,Střížovice,v lukách", + "avgLatitude": 50.3239822, + "avgLongitude": 14.6930561 + }, + { + "id": "U6108", + "name": "Kropáčova Vrutice,Sušno", + "avgLatitude": 50.3320923, + "avgLongitude": 14.7480812 + }, + { + "id": "U6110", + "name": "Kropáčova Vrutice,u mostu", + "avgLatitude": 50.3297348, + "avgLongitude": 14.71618 + }, + { + "id": "U4007", + "name": "Kroučová", + "avgLatitude": 50.2069244, + "avgLongitude": 13.7829514 + }, + { + "id": "U4008", + "name": "Kroučová,ObÚ", + "avgLatitude": 50.20961, + "avgLongitude": 13.7871189 + }, + { + "id": "U9547", + "name": "Krty", + "avgLatitude": 50.0900459, + "avgLongitude": 13.433713 + }, + { + "id": "U9516", + "name": "Krupá", + "avgLatitude": 50.1697044, + "avgLongitude": 13.7229624 + }, + { + "id": "U2289", + "name": "Krupá", + "avgLatitude": 50.0172958, + "avgLongitude": 14.8708563 + }, + { + "id": "U3361", + "name": "Krupá", + "avgLatitude": 50.174614, + "avgLongitude": 13.7315159 + }, + { + "id": "U2291", + "name": "Krupá,Dvůr Chrást", + "avgLatitude": 50.03957, + "avgLongitude": 14.879776 + }, + { + "id": "U2290", + "name": "Krupá,Rozc.Syneč", + "avgLatitude": 50.0319138, + "avgLongitude": 14.8761559 + }, + { + "id": "U3143", + "name": "Krupá,Šustna", + "avgLatitude": 50.1720352, + "avgLongitude": 13.7398777 + }, + { + "id": "U2123", + "name": "Krušovice", + "avgLatitude": 50.17486, + "avgLongitude": 13.7732525 + }, + { + "id": "U9001", + "name": "Krychnov", + "avgLatitude": 50.00949, + "avgLongitude": 15.057538 + }, + { + "id": "U9000", + "name": "Krychnov,Náves", + "avgLatitude": 50.0057373, + "avgLongitude": 15.0590878 + }, + { + "id": "U9002", + "name": "Krychnov,Rozc.Kocanda", + "avgLatitude": 50.00814, + "avgLongitude": 15.0637836 + }, + { + "id": "U301", + "name": "Krymská", + "avgLatitude": 50.0719337, + "avgLongitude": 14.4474049 + }, + { + "id": "U31471", + "name": "Kryry,Běsno", + "avgLatitude": 50.17969, + "avgLongitude": 13.5104246 + }, + { + "id": "U32060", + "name": "Kryry,nám.", + "avgLatitude": 50.1743927, + "avgLongitude": 13.4267 + }, + { + "id": "U32061", + "name": "Kryry,sklárna", + "avgLatitude": 50.17169, + "avgLongitude": 13.4180717 + }, + { + "id": "U31503", + "name": "Kryry,Strojetice", + "avgLatitude": 50.17428, + "avgLongitude": 13.479332 + }, + { + "id": "U31470", + "name": "Kryry,Strojetice,křiž.", + "avgLatitude": 50.173233, + "avgLongitude": 13.4814358 + }, + { + "id": "U114", + "name": "Krystalová", + "avgLatitude": 50.1553574, + "avgLongitude": 14.52243 + }, + { + "id": "U4951", + "name": "Křečhoř", + "avgLatitude": 50.02541, + "avgLongitude": 15.1273289 + }, + { + "id": "U4950", + "name": "Křečhoř,Bříství", + "avgLatitude": 50.0298538, + "avgLongitude": 15.1147366 + }, + { + "id": "U4943", + "name": "Křečhoř,Kamhajek", + "avgLatitude": 50.0372734, + "avgLongitude": 15.1303291 + }, + { + "id": "U4952", + "name": "Křečhoř,Kutlíře", + "avgLatitude": 50.02883, + "avgLongitude": 15.1416922 + }, + { + "id": "U6697", + "name": "Křečkov", + "avgLatitude": 50.1783943, + "avgLongitude": 15.1141577 + }, + { + "id": "U4536", + "name": "Křečovice", + "avgLatitude": 49.72145, + "avgLongitude": 14.47658 + }, + { + "id": "U4535", + "name": "Křečovice,Dráha", + "avgLatitude": 49.7237, + "avgLongitude": 14.484911 + }, + { + "id": "U4551", + "name": "Křečovice,Hodětice", + "avgLatitude": 49.6997223, + "avgLongitude": 14.5243244 + }, + { + "id": "U4552", + "name": "Křečovice,Hořetice", + "avgLatitude": 49.7069778, + "avgLongitude": 14.5175571 + }, + { + "id": "U4537", + "name": "Křečovice,Krchleby", + "avgLatitude": 49.73495, + "avgLongitude": 14.4650669 + }, + { + "id": "U4542", + "name": "Křečovice,Lhotka,U Švarců", + "avgLatitude": 49.744545, + "avgLongitude": 14.4702892 + }, + { + "id": "U4539", + "name": "Křečovice,Nahoruby", + "avgLatitude": 49.7396736, + "avgLongitude": 14.44392 + }, + { + "id": "U4540", + "name": "Křečovice,Nahoruby,Mlačina", + "avgLatitude": 49.7452126, + "avgLongitude": 14.4492054 + }, + { + "id": "U4538", + "name": "Křečovice,Nahoruby,Rozc.", + "avgLatitude": 49.742897, + "avgLongitude": 14.4568663 + }, + { + "id": "U4541", + "name": "Křečovice,Nová Živohošť", + "avgLatitude": 49.7506, + "avgLongitude": 14.41587 + }, + { + "id": "U4534", + "name": "Křečovice,Rozc.Košťálka", + "avgLatitude": 49.7269478, + "avgLongitude": 14.492775 + }, + { + "id": "U4553", + "name": "Křečovice,Strážovice", + "avgLatitude": 49.719017, + "avgLongitude": 14.5082092 + }, + { + "id": "U7684", + "name": "Křečovice,Větrov", + "avgLatitude": 49.7158127, + "avgLongitude": 14.4628105 + }, + { + "id": "U4533", + "name": "Křečovice,Vlkonice", + "avgLatitude": 49.73506, + "avgLongitude": 14.4914427 + }, + { + "id": "U31688", + "name": "Křelovice", + "avgLatitude": 49.5370026, + "avgLongitude": 15.1663132 + }, + { + "id": "U31690", + "name": "Křelovice,Číhovice", + "avgLatitude": 49.5537071, + "avgLongitude": 15.1668053 + }, + { + "id": "U31691", + "name": "Křelovice,Jiřičky,rozc.", + "avgLatitude": 49.5520363, + "avgLongitude": 15.160862 + }, + { + "id": "U31692", + "name": "Křelovice,Jiřičky,st.sil.", + "avgLatitude": 49.545826, + "avgLongitude": 15.1556168 + }, + { + "id": "U31689", + "name": "Křelovice,záv.Červená Řečice", + "avgLatitude": 49.5293579, + "avgLongitude": 15.1720915 + }, + { + "id": "U1462", + "name": "Křenek", + "avgLatitude": 50.2311745, + "avgLongitude": 14.6291456 + }, + { + "id": "U1812", + "name": "Křenice", + "avgLatitude": 50.0319557, + "avgLongitude": 14.6685381 + }, + { + "id": "U3250", + "name": "Křenice,K Sibřině", + "avgLatitude": 50.04074, + "avgLongitude": 14.6672525 + }, + { + "id": "U1930", + "name": "Křenice,V Polníku", + "avgLatitude": 50.0262146, + "avgLongitude": 14.6785145 + }, + { + "id": "U4751", + "name": "Křepenice", + "avgLatitude": 49.70276, + "avgLongitude": 14.3476439 + }, + { + "id": "U4750", + "name": "Křepenice,Rozc.", + "avgLatitude": 49.69964, + "avgLongitude": 14.3470688 + }, + { + "id": "U4749", + "name": "Křepenice,V Pekle", + "avgLatitude": 49.7101173, + "avgLongitude": 14.3290634 + }, + { + "id": "U7124", + "name": "Křesetice", + "avgLatitude": 49.9084167, + "avgLongitude": 15.2654886 + }, + { + "id": "U7307", + "name": "Křesetice,Bykáň", + "avgLatitude": 49.8969, + "avgLongitude": 15.2440739 + }, + { + "id": "U7121", + "name": "Křesetice,Bykánec", + "avgLatitude": 49.90749, + "avgLongitude": 15.2519245 + }, + { + "id": "U7117", + "name": "Křesetice,Chrást", + "avgLatitude": 49.89839, + "avgLongitude": 15.2733421 + }, + { + "id": "U7119", + "name": "Křesetice,Chrást,rozc.", + "avgLatitude": 49.8975868, + "avgLongitude": 15.2656612 + }, + { + "id": "U7120", + "name": "Křesetice,Krupá", + "avgLatitude": 49.8990479, + "avgLongitude": 15.2542439 + }, + { + "id": "U7122", + "name": "Křesetice,u rybníku", + "avgLatitude": 49.907795, + "avgLongitude": 15.2597389 + }, + { + "id": "U382", + "name": "Křeslice", + "avgLatitude": 50.02344, + "avgLongitude": 14.5650854 + }, + { + "id": "U9803", + "name": "Křešín", + "avgLatitude": 49.7997932, + "avgLongitude": 13.9457006 + }, + { + "id": "U31693", + "name": "Křešín", + "avgLatitude": 49.5812836, + "avgLongitude": 15.0452185 + }, + { + "id": "U31694", + "name": "Křešín,Čeněnice,rozc.1.0", + "avgLatitude": 49.5908966, + "avgLongitude": 15.0726624 + }, + { + "id": "U31695", + "name": "Křešín,Mohelnice", + "avgLatitude": 49.588768, + "avgLongitude": 15.0347643 + }, + { + "id": "U31927", + "name": "Křešín,u kostela", + "avgLatitude": 49.58129, + "avgLongitude": 15.0424843 + }, + { + "id": "U4163", + "name": "Křinec", + "avgLatitude": 50.26605, + "avgLongitude": 15.1435909 + }, + { + "id": "U9566", + "name": "Křinec,Bošín", + "avgLatitude": 50.2805862, + "avgLongitude": 15.1139679 + }, + { + "id": "U9568", + "name": "Křinec,Mečíř", + "avgLatitude": 50.268055, + "avgLongitude": 15.0984459 + }, + { + "id": "U9569", + "name": "Křinec,náměstí", + "avgLatitude": 50.266613, + "avgLongitude": 15.13937 + }, + { + "id": "U9891", + "name": "Křinec,Nové Zámky", + "avgLatitude": 50.2796555, + "avgLongitude": 15.1654263 + }, + { + "id": "U9570", + "name": "Křinec,sokolovna", + "avgLatitude": 50.26234, + "avgLongitude": 15.1388664 + }, + { + "id": "U9571", + "name": "Křinec,Sovenice", + "avgLatitude": 50.2833061, + "avgLongitude": 15.10113 + }, + { + "id": "U9572", + "name": "Křinec,škola", + "avgLatitude": 50.26612, + "avgLongitude": 15.133625 + }, + { + "id": "U3278", + "name": "Křivoklát", + "avgLatitude": 50.03825, + "avgLongitude": 13.8688 + }, + { + "id": "U4021", + "name": "Křivoklát,Amalín", + "avgLatitude": 50.0366821, + "avgLongitude": 13.8828249 + }, + { + "id": "U9102", + "name": "Křivoklát,Písky", + "avgLatitude": 50.0581131, + "avgLongitude": 13.8961859 + }, + { + "id": "U4030", + "name": "Křivoklát,škola", + "avgLatitude": 50.03106, + "avgLongitude": 13.8660908 + }, + { + "id": "U7685", + "name": "Křivsoudov", + "avgLatitude": 49.63108, + "avgLongitude": 15.0874214 + }, + { + "id": "U7687", + "name": "Křivsoudov,Lhota Bubeneč", + "avgLatitude": 49.6213837, + "avgLongitude": 15.1141129 + }, + { + "id": "U7688", + "name": "Křivsoudov,rozc.Lhota Bubeneč", + "avgLatitude": 49.6375656, + "avgLongitude": 15.0953693 + }, + { + "id": "U7686", + "name": "Křivsoudov,u kostela", + "avgLatitude": 49.6349564, + "avgLongitude": 15.0864859 + }, + { + "id": "U758", + "name": "Křižíkova", + "avgLatitude": 50.09329, + "avgLongitude": 14.4513893 + }, + { + "id": "U1579", + "name": "Křížkový Újezdec", + "avgLatitude": 49.931076, + "avgLongitude": 14.5847111 + }, + { + "id": "U1580", + "name": "Křížkový Újezdec,Čenětice", + "avgLatitude": 49.9434776, + "avgLongitude": 14.5789909 + }, + { + "id": "U302", + "name": "Křížová", + "avgLatitude": 50.063, + "avgLongitude": 14.4050446 + }, + { + "id": "U2312", + "name": "Kšely", + "avgLatitude": 50.0438881, + "avgLongitude": 14.9005718 + }, + { + "id": "U473", + "name": "Kubánské náměstí", + "avgLatitude": 50.0707, + "avgLongitude": 14.4774475 + }, + { + "id": "U303", + "name": "Kublov", + "avgLatitude": 50.0544662, + "avgLongitude": 14.4180984 + }, + { + "id": "U9086", + "name": "Kublov,Malá Louka", + "avgLatitude": 49.9454041, + "avgLongitude": 13.8641071 + }, + { + "id": "U9083", + "name": "Kublov,na hoře", + "avgLatitude": 49.9401, + "avgLongitude": 13.8812065 + }, + { + "id": "U9085", + "name": "Kublov,na návsi", + "avgLatitude": 49.94603, + "avgLongitude": 13.87264 + }, + { + "id": "U9084", + "name": "Kublov,Slovanka", + "avgLatitude": 49.94378, + "avgLongitude": 13.876092 + }, + { + "id": "U9820", + "name": "Kublov,U Křížku", + "avgLatitude": 49.9325027, + "avgLongitude": 13.86542 + }, + { + "id": "U489", + "name": "Kudrnova", + "avgLatitude": 50.0722847, + "avgLongitude": 14.3439674 + }, + { + "id": "U305", + "name": "Kuchyňka", + "avgLatitude": 50.11699, + "avgLongitude": 14.4503059 + }, + { + "id": "U872", + "name": "Kukulova", + "avgLatitude": 50.078495, + "avgLongitude": 14.3445435 + }, + { + "id": "U56", + "name": "Kuliška", + "avgLatitude": 50.1076927, + "avgLongitude": 14.36442 + }, + { + "id": "U1413", + "name": "Kundratka", + "avgLatitude": 50.1125755, + "avgLongitude": 14.4797039 + }, + { + "id": "U1697", + "name": "Kunice", + "avgLatitude": 49.93603, + "avgLongitude": 14.6693306 + }, + { + "id": "U1859", + "name": "Kunice,Dolní Lomnice", + "avgLatitude": 49.91439, + "avgLongitude": 14.6826229 + }, + { + "id": "U9881", + "name": "Kunice,Dolní Lomnice,Lomnická", + "avgLatitude": 49.9157181, + "avgLongitude": 14.6799068 + }, + { + "id": "U1699", + "name": "Kunice,rozc.Vidovice", + "avgLatitude": 49.9203568, + "avgLongitude": 14.664546 + }, + { + "id": "U2559", + "name": "Kunice,U Dálnice", + "avgLatitude": 49.9395676, + "avgLongitude": 14.66866 + }, + { + "id": "U3294", + "name": "Kunice,U Hřbitova", + "avgLatitude": 49.9352, + "avgLongitude": 14.678154 + }, + { + "id": "U4158", + "name": "Kunice,Vidovice", + "avgLatitude": 49.9237747, + "avgLongitude": 14.6676826 + }, + { + "id": "U1698", + "name": "Kunice,Vidovice,zámek", + "avgLatitude": 49.92791, + "avgLongitude": 14.6664858 + }, + { + "id": "U2564", + "name": "Kunice,Všešímy", + "avgLatitude": 49.9239578, + "avgLongitude": 14.6921473 + }, + { + "id": "U2565", + "name": "Kunice,Všešímy,Pardálov", + "avgLatitude": 49.9273224, + "avgLongitude": 14.6832285 + }, + { + "id": "U4339", + "name": "Kunice,Všešímy,SŠŘ", + "avgLatitude": 49.92019, + "avgLongitude": 14.68867 + }, + { + "id": "U7689", + "name": "Kuňovice", + "avgLatitude": 49.65972, + "avgLongitude": 14.9992409 + }, + { + "id": "U7690", + "name": "Kuňovice,rozc.", + "avgLatitude": 49.6566925, + "avgLongitude": 15.0042782 + }, + { + "id": "U309", + "name": "Kunratice", + "avgLatitude": 50.0132, + "avgLongitude": 14.4875145 + }, + { + "id": "U611", + "name": "Kunratická škola", + "avgLatitude": 50.0133247, + "avgLongitude": 14.4816351 + }, + { + "id": "U2609", + "name": "Kusá", + "avgLatitude": 50.0870247, + "avgLongitude": 14.3609915 + }, + { + "id": "U9367", + "name": "Kutná Hora hl.n.", + "avgLatitude": 49.96195, + "avgLongitude": 15.30075 + }, + { + "id": "U9425", + "name": "Kutná Hora město", + "avgLatitude": 49.94989, + "avgLongitude": 15.2772951 + }, + { + "id": "U9426", + "name": "Kutná Hora předměstí", + "avgLatitude": 49.93721, + "avgLongitude": 15.2676716 + }, + { + "id": "U2480", + "name": "Kutná Hora,aut.st.", + "avgLatitude": 49.9545021, + "avgLongitude": 15.2717934 + }, + { + "id": "U6683", + "name": "Kutná Hora,Česká", + "avgLatitude": 49.9521141, + "avgLongitude": 15.2627354 + }, + { + "id": "U7345", + "name": "Kutná Hora,Hlouška,Masarykova", + "avgLatitude": 49.95495, + "avgLongitude": 15.2780218 + }, + { + "id": "U2482", + "name": "Kutná Hora,Hlouška,Na Špici", + "avgLatitude": 49.9568863, + "avgLongitude": 15.2801628 + }, + { + "id": "U6686", + "name": "Kutná Hora,Hlouška,Seifertovy sady", + "avgLatitude": 49.9545135, + "avgLongitude": 15.2670116 + }, + { + "id": "U2481", + "name": "Kutná Hora,Hlouška,Tylovo divadlo", + "avgLatitude": 49.9524155, + "avgLongitude": 15.2753363 + }, + { + "id": "U7339", + "name": "Kutná Hora,Kamenná kašna", + "avgLatitude": 49.9487648, + "avgLongitude": 15.2627888 + }, + { + "id": "U7344", + "name": "Kutná Hora,Kamenný dům", + "avgLatitude": 49.9497681, + "avgLongitude": 15.2650471 + }, + { + "id": "U6690", + "name": "Kutná Hora,Kaňk,Na Pašince", + "avgLatitude": 49.97104, + "avgLongitude": 15.2734938 + }, + { + "id": "U7126", + "name": "Kutná Hora,Karlov,celní úřad", + "avgLatitude": 49.92826, + "avgLongitude": 15.2724743 + }, + { + "id": "U7129", + "name": "Kutná Hora,Karlov,Čáslavská", + "avgLatitude": 49.9484329, + "avgLongitude": 15.2819977 + }, + { + "id": "U7334", + "name": "Kutná Hora,Karlov,Hrnčířská", + "avgLatitude": 49.9496155, + "avgLongitude": 15.2872992 + }, + { + "id": "U7128", + "name": "Kutná Hora,Karlov,Na Rovinách", + "avgLatitude": 49.93939, + "avgLongitude": 15.2794285 + }, + { + "id": "U7127", + "name": "Kutná Hora,Karlov,prům.zóna", + "avgLatitude": 49.9342651, + "avgLongitude": 15.2759724 + }, + { + "id": "U5913", + "name": "Kutná Hora,Malín,Mincovní", + "avgLatitude": 49.96677, + "avgLongitude": 15.3042078 + }, + { + "id": "U6659", + "name": "Kutná Hora,Malín,Novodvorská", + "avgLatitude": 49.966774, + "avgLongitude": 15.3056011 + }, + { + "id": "U7160", + "name": "Kutná Hora,Malín,Starokolínská", + "avgLatitude": 49.9685555, + "avgLongitude": 15.3033905 + }, + { + "id": "U7192", + "name": "Kutná Hora,Neškaredice", + "avgLatitude": 49.9360962, + "avgLongitude": 15.3101864 + }, + { + "id": "U7340", + "name": "Kutná Hora,Palackého náměstí", + "avgLatitude": 49.9493446, + "avgLongitude": 15.2682257 + }, + { + "id": "U7294", + "name": "Kutná Hora,Perštejnec", + "avgLatitude": 49.9293976, + "avgLongitude": 15.285717 + }, + { + "id": "U7191", + "name": "Kutná Hora,Perštejnec,rozc.", + "avgLatitude": 49.9436, + "avgLongitude": 15.2857723 + }, + { + "id": "U7165", + "name": "Kutná Hora,Poličany", + "avgLatitude": 49.9255676, + "avgLongitude": 15.2573671 + }, + { + "id": "U7125", + "name": "Kutná Hora,Poličany,rozc.", + "avgLatitude": 49.92354, + "avgLongitude": 15.2692308 + }, + { + "id": "U6691", + "name": "Kutná Hora,Sedlec,Čechova", + "avgLatitude": 49.961, + "avgLongitude": 15.2846546 + }, + { + "id": "U9424", + "name": "Kutná Hora,Sedlec,kostnice", + "avgLatitude": 49.9606819, + "avgLongitude": 15.2904453 + }, + { + "id": "U5934", + "name": "Kutná Hora,Sedlec,Nad Sady", + "avgLatitude": 49.96228, + "avgLongitude": 15.2841072 + }, + { + "id": "U6692", + "name": "Kutná Hora,Sedlec,U Nadjezdu", + "avgLatitude": 49.96273, + "avgLongitude": 15.2949905 + }, + { + "id": "U7341", + "name": "Kutná Hora,Sokolská", + "avgLatitude": 49.94862, + "avgLongitude": 15.2728014 + }, + { + "id": "U7343", + "name": "Kutná Hora,Šipší,Jana Zajíce", + "avgLatitude": 49.9618568, + "avgLongitude": 15.2762413 + }, + { + "id": "U7338", + "name": "Kutná Hora,Šipší,Opletalova", + "avgLatitude": 49.9612846, + "avgLongitude": 15.2814131 + }, + { + "id": "U7342", + "name": "Kutná Hora,Šipší,Sběrná", + "avgLatitude": 49.9579, + "avgLongitude": 15.27668 + }, + { + "id": "U7164", + "name": "Kutná Hora,Vrchlice,Táborská", + "avgLatitude": 49.937973, + "avgLongitude": 15.2628632 + }, + { + "id": "U7337", + "name": "Kutná Hora,Žižkov,Fučíkova", + "avgLatitude": 49.9457436, + "avgLongitude": 15.2570572 + }, + { + "id": "U2478", + "name": "Kutná Hora,Žižkov,Kouřimská", + "avgLatitude": 49.9477463, + "avgLongitude": 15.2574577 + }, + { + "id": "U7162", + "name": "Kutná Hora,Žižkov,Kremnická", + "avgLatitude": 49.94768, + "avgLongitude": 15.2613764 + }, + { + "id": "U2479", + "name": "Kutná Hora,Žižkov,Na Valech", + "avgLatitude": 49.9502563, + "avgLongitude": 15.2613449 + }, + { + "id": "U2477", + "name": "Kutná Hora,Žižkov,poliklinika", + "avgLatitude": 49.9468346, + "avgLongitude": 15.2517424 + }, + { + "id": "U5861", + "name": "Kutná Hora,Žižkov,u hřbitova", + "avgLatitude": 49.9541931, + "avgLongitude": 15.2608509 + }, + { + "id": "U310", + "name": "Kutnohorská", + "avgLatitude": 50.0640373, + "avgLongitude": 14.5519342 + }, + { + "id": "U9227", + "name": "Kutrovice", + "avgLatitude": 50.26136, + "avgLongitude": 14.0186119 + }, + { + "id": "U3228", + "name": "Kutvirtova", + "avgLatitude": 50.05729, + "avgLongitude": 14.3928623 + }, + { + "id": "U311", + "name": "Kvasinská", + "avgLatitude": 50.062767, + "avgLongitude": 14.642705 + }, + { + "id": "U3235", + "name": "Květinková", + "avgLatitude": 50.09028, + "avgLongitude": 14.4890976 + }, + { + "id": "U1913", + "name": "Květnice", + "avgLatitude": 50.0570068, + "avgLongitude": 14.6847363 + }, + { + "id": "U1907", + "name": "Květnice,Na Ladech", + "avgLatitude": 50.0687866, + "avgLongitude": 14.6892462 + }, + { + "id": "U1912", + "name": "Květnice,Rozc.", + "avgLatitude": 50.0564423, + "avgLongitude": 14.6805563 + }, + { + "id": "U1906", + "name": "Květnice,Za Mlýnem", + "avgLatitude": 50.06141, + "avgLongitude": 14.6829815 + }, + { + "id": "U312", + "name": "Květnová", + "avgLatitude": 50.1427078, + "avgLongitude": 14.4779587 + }, + { + "id": "U9228", + "name": "Kvílice,I", + "avgLatitude": 50.2583771, + "avgLongitude": 14.0044746 + }, + { + "id": "U9229", + "name": "Kvílice,II", + "avgLatitude": 50.25863, + "avgLongitude": 14.0054436 + }, + { + "id": "U313", + "name": "Kyje", + "avgLatitude": 50.0977936, + "avgLongitude": 14.549159 + }, + { + "id": "U314", + "name": "Kyselova", + "avgLatitude": 50.1261024, + "avgLongitude": 14.46358 + }, + { + "id": "U4893", + "name": "Kyšice", + "avgLatitude": 50.09168, + "avgLongitude": 14.1055317 + }, + { + "id": "U1714", + "name": "Kytín,Náves", + "avgLatitude": 49.84999, + "avgLongitude": 14.218482 + }, + { + "id": "U1713", + "name": "Kytín,U Hřbitova", + "avgLatitude": 49.84736, + "avgLongitude": 14.2251015 + }, + { + "id": "U625", + "name": "Labe", + "avgLatitude": 50.0137329, + "avgLongitude": 14.4211588 + }, + { + "id": "U31123", + "name": "Labské Chrčice", + "avgLatitude": 50.05159, + "avgLongitude": 15.411993 + }, + { + "id": "U31338", + "name": "Labské Chrčice,ObÚ", + "avgLatitude": 50.0481262, + "avgLongitude": 15.410593 + }, + { + "id": "U78", + "name": "Ládví", + "avgLatitude": 50.12643, + "avgLongitude": 14.4697676 + }, + { + "id": "U315", + "name": "Lahovice", + "avgLatitude": 49.9881477, + "avgLongitude": 14.3982029 + }, + { + "id": "U316", + "name": "Lahovický most", + "avgLatitude": 49.9954338, + "avgLongitude": 14.3980827 + }, + { + "id": "U317", + "name": "Lahovičky", + "avgLatitude": 50.0008659, + "avgLongitude": 14.3976622 + }, + { + "id": "U1182", + "name": "Lahovská", + "avgLatitude": 49.9982758, + "avgLongitude": 14.36703 + }, + { + "id": "U3012", + "name": "Lánská", + "avgLatitude": 50.0986443, + "avgLongitude": 14.5405188 + }, + { + "id": "U9302", + "name": "Lány,Lesní", + "avgLatitude": 50.1199951, + "avgLongitude": 13.942152 + }, + { + "id": "U9303", + "name": "Lány,náměstí", + "avgLatitude": 50.12475, + "avgLongitude": 13.9508381 + }, + { + "id": "U9304", + "name": "Lány,samota Píně", + "avgLatitude": 50.1103668, + "avgLongitude": 13.8892307 + }, + { + "id": "U9305", + "name": "Lány,u hřbitova", + "avgLatitude": 50.1291656, + "avgLongitude": 13.9514637 + }, + { + "id": "U9306", + "name": "Lány,Vašírov", + "avgLatitude": 50.1347427, + "avgLongitude": 13.9494076 + }, + { + "id": "U9307", + "name": "Lány,Vašírovská lísa", + "avgLatitude": 50.12229, + "avgLongitude": 13.9206362 + }, + { + "id": "U4333", + "name": "Lašovice", + "avgLatitude": 50.0552521, + "avgLongitude": 13.7814722 + }, + { + "id": "U3281", + "name": "Lašovice", + "avgLatitude": 50.0654564, + "avgLongitude": 13.7999172 + }, + { + "id": "U319", + "name": "Laurová", + "avgLatitude": 50.0612221, + "avgLongitude": 14.3984318 + }, + { + "id": "U7693", + "name": "Láz,Dolní", + "avgLatitude": 49.65207, + "avgLongitude": 13.9170742 + }, + { + "id": "U7694", + "name": "Láz,Horní", + "avgLatitude": 49.65004, + "avgLongitude": 13.9066448 + }, + { + "id": "U7695", + "name": "Láz,Jamky", + "avgLatitude": 49.64656, + "avgLongitude": 13.91559 + }, + { + "id": "U7696", + "name": "Láz,prodejna", + "avgLatitude": 49.6522446, + "avgLongitude": 13.912776 + }, + { + "id": "U997", + "name": "Lazarská", + "avgLatitude": 50.079422, + "avgLongitude": 14.4200668 + }, + { + "id": "U1059", + "name": "Lázeňka", + "avgLatitude": 50.0583839, + "avgLongitude": 14.5847425 + }, + { + "id": "U2208", + "name": "Lázně Toušeň", + "avgLatitude": 50.1693573, + "avgLongitude": 14.7164288 + }, + { + "id": "U4152", + "name": "Lázně Toušeň", + "avgLatitude": 50.1686249, + "avgLongitude": 14.7114515 + }, + { + "id": "U2207", + "name": "Lázně Toušeň,Zast.", + "avgLatitude": 50.17016, + "avgLongitude": 14.7072792 + }, + { + "id": "U7697", + "name": "Lazsko", + "avgLatitude": 49.6232758, + "avgLongitude": 14.0006485 + }, + { + "id": "U7727", + "name": "Lazsko,jaderný ústav", + "avgLatitude": 49.624794, + "avgLongitude": 13.9976158 + }, + { + "id": "U9044", + "name": "Lážovice", + "avgLatitude": 49.8585358, + "avgLongitude": 14.0704374 + }, + { + "id": "U9043", + "name": "Lážovice,Nové Dvory", + "avgLatitude": 49.8575859, + "avgLongitude": 14.0858078 + }, + { + "id": "U9282", + "name": "Ledce", + "avgLatitude": 50.1948624, + "avgLongitude": 14.0065937 + }, + { + "id": "U6187", + "name": "Ledce", + "avgLatitude": 50.35366, + "avgLongitude": 15.0844994 + }, + { + "id": "U9281", + "name": "Ledce,farma", + "avgLatitude": 50.20024, + "avgLongitude": 14.01053 + }, + { + "id": "U9280", + "name": "Ledce,náves", + "avgLatitude": 50.1965637, + "avgLongitude": 14.0041218 + }, + { + "id": "U9283", + "name": "Ledce,rozc.Šternberk", + "avgLatitude": 50.20252, + "avgLongitude": 14.023531 + }, + { + "id": "U4366", + "name": "Ledčice", + "avgLatitude": 50.34104, + "avgLongitude": 14.2940731 + }, + { + "id": "U4365", + "name": "Ledčice,Rozc.", + "avgLatitude": 50.3353348, + "avgLongitude": 14.2838087 + }, + { + "id": "U31404", + "name": "Ledeč n.Sáz.,Habrek", + "avgLatitude": 49.7127533, + "avgLongitude": 15.2686625 + }, + { + "id": "U31945", + "name": "Ledeč n.Sáz.,Habrek,rozc.", + "avgLatitude": 49.71532, + "avgLongitude": 15.2657385 + }, + { + "id": "U31696", + "name": "Ledeč n.Sáz.,hotel Sázava", + "avgLatitude": 49.6971436, + "avgLongitude": 15.279047 + }, + { + "id": "U31494", + "name": "Ledeč n.Sáz.,Husovo nám.", + "avgLatitude": 49.69445, + "avgLongitude": 15.2752657 + }, + { + "id": "U31698", + "name": "Ledeč n.Sáz.,Obrvaň", + "avgLatitude": 49.70749, + "avgLongitude": 15.2605257 + }, + { + "id": "U31373", + "name": "Ledeč n.Sáz.,Podolí", + "avgLatitude": 49.6977844, + "avgLongitude": 15.2652035 + }, + { + "id": "U9492", + "name": "Ledeč n.Sáz.,rozc.k žel.st.", + "avgLatitude": 49.6975327, + "avgLongitude": 15.2742138 + }, + { + "id": "U7333", + "name": "Ledeč n.Sáz.,sídl.Plácky", + "avgLatitude": 49.6893463, + "avgLongitude": 15.2772293 + }, + { + "id": "U31405", + "name": "Ledeč n.Sáz.,sídliště", + "avgLatitude": 49.70171, + "avgLongitude": 15.270956 + }, + { + "id": "U31403", + "name": "Ledeč n.Sáz.,Souboř", + "avgLatitude": 49.71884, + "avgLongitude": 15.2670135 + }, + { + "id": "U31697", + "name": "Ledeč n.Sáz.,sušárna", + "avgLatitude": 49.70521, + "avgLongitude": 15.2800379 + }, + { + "id": "U2904", + "name": "Ledečko", + "avgLatitude": 49.84737, + "avgLongitude": 14.9323511 + }, + { + "id": "U6048", + "name": "Ledečko", + "avgLatitude": 49.85, + "avgLongitude": 14.94893 + }, + { + "id": "U4619", + "name": "Ledečky", + "avgLatitude": 50.2842369, + "avgLongitude": 15.1860085 + }, + { + "id": "U17", + "name": "Lehárova", + "avgLatitude": 50.00888, + "avgLongitude": 14.4057484 + }, + { + "id": "U72", + "name": "Lehovec", + "avgLatitude": 50.10702, + "avgLongitude": 14.547472 + }, + { + "id": "U322", + "name": "Lešanská", + "avgLatitude": 50.04579, + "avgLongitude": 14.48353 + }, + { + "id": "U3305", + "name": "Lešany", + "avgLatitude": 49.8449936, + "avgLongitude": 14.5239639 + }, + { + "id": "U4516", + "name": "Lešany,Brejlov", + "avgLatitude": 49.838707, + "avgLongitude": 14.5630045 + }, + { + "id": "U4505", + "name": "Lešany,Břežany", + "avgLatitude": 49.83797, + "avgLongitude": 14.5287151 + }, + { + "id": "U4507", + "name": "Lešany,Nová Ves,Rozc.", + "avgLatitude": 49.8508224, + "avgLongitude": 14.5061846 + }, + { + "id": "U4506", + "name": "Lešany,Obecní úřad", + "avgLatitude": 49.8429031, + "avgLongitude": 14.52739 + }, + { + "id": "U4517", + "name": "Lešany,Rozc.Vazovnice", + "avgLatitude": 49.839035, + "avgLongitude": 14.5464516 + }, + { + "id": "U7698", + "name": "Lešetice", + "avgLatitude": 49.650032, + "avgLongitude": 14.023777 + }, + { + "id": "U9482", + "name": "Leština u Světlé", + "avgLatitude": 49.76139, + "avgLongitude": 15.3986664 + }, + { + "id": "U171", + "name": "Letecké muzeum", + "avgLatitude": 50.12599, + "avgLongitude": 14.5358925 + }, + { + "id": "U324", + "name": "Letenské náměstí", + "avgLatitude": 50.0999756, + "avgLongitude": 14.423605 + }, + { + "id": "U1090", + "name": "Letiště", + "avgLatitude": 50.1060867, + "avgLongitude": 14.2719526 + }, + { + "id": "U606", + "name": "Letňanská", + "avgLatitude": 50.1229973, + "avgLongitude": 14.5073357 + }, + { + "id": "U1000", + "name": "Letňany", + "avgLatitude": 50.1256142, + "avgLongitude": 14.51615 + }, + { + "id": "U1601", + "name": "Lety", + "avgLatitude": 49.9209633, + "avgLongitude": 14.2511368 + }, + { + "id": "U2569", + "name": "Lety,K Libří", + "avgLatitude": 49.92436, + "avgLongitude": 14.241354 + }, + { + "id": "U2570", + "name": "Lety,Karlštejnská", + "avgLatitude": 49.9228821, + "avgLongitude": 14.2516317 + }, + { + "id": "U9217", + "name": "Lety,Obchodní centrum", + "avgLatitude": 49.9237747, + "avgLongitude": 14.2598991 + }, + { + "id": "U31702", + "name": "Lety,rozc.1.3 sil.č.4", + "avgLatitude": 49.52044, + "avgLongitude": 14.0748024 + }, + { + "id": "U945", + "name": "Levského", + "avgLatitude": 50.00547, + "avgLongitude": 14.4372883 + }, + { + "id": "U32108", + "name": "Ležky", + "avgLatitude": 50.1191673, + "avgLongitude": 13.3542137 + }, + { + "id": "U4949", + "name": "Lhota", + "avgLatitude": 50.0913162, + "avgLongitude": 14.0101814 + }, + { + "id": "U1460", + "name": "Lhota", + "avgLatitude": 50.2425842, + "avgLongitude": 14.6561985 + }, + { + "id": "U31815", + "name": "Lhota pod Přeloučí", + "avgLatitude": 50.0366974, + "avgLongitude": 15.5273695 + }, + { + "id": "U9726", + "name": "Lhota u Příbramě,MŠ", + "avgLatitude": 49.7131653, + "avgLongitude": 13.98073 + }, + { + "id": "U9727", + "name": "Lhota u Příbramě,Prodejna", + "avgLatitude": 49.7103577, + "avgLongitude": 13.9798737 + }, + { + "id": "U9725", + "name": "Lhota u Příbramě,točna", + "avgLatitude": 49.71475, + "avgLongitude": 13.9799757 + }, + { + "id": "U9388", + "name": "Lhota Veselka", + "avgLatitude": 49.7208138, + "avgLongitude": 14.8151388 + }, + { + "id": "U3297", + "name": "Lhota,Na Skalce", + "avgLatitude": 50.0872765, + "avgLongitude": 14.0121632 + }, + { + "id": "U328", + "name": "Lhotecký les", + "avgLatitude": 50.01565, + "avgLongitude": 14.43726 + }, + { + "id": "U329", + "name": "Lhotka", + "avgLatitude": 50.02092, + "avgLongitude": 14.4383373 + }, + { + "id": "U9848", + "name": "Lhotka", + "avgLatitude": 49.83252, + "avgLongitude": 13.9959812 + }, + { + "id": "U4351", + "name": "Lhotka", + "avgLatitude": 50.3718, + "avgLongitude": 14.5485172 + }, + { + "id": "U4352", + "name": "Lhotka u Mělníka", + "avgLatitude": 50.381958, + "avgLongitude": 14.5418558 + }, + { + "id": "U6271", + "name": "Lhotky", + "avgLatitude": 50.3959579, + "avgLongitude": 15.0558081 + }, + { + "id": "U6269", + "name": "Lhotky,křižovatka", + "avgLatitude": 50.4037476, + "avgLongitude": 15.04546 + }, + { + "id": "U6270", + "name": "Lhotky,Ovčín", + "avgLatitude": 50.3998756, + "avgLongitude": 15.04859 + }, + { + "id": "U6267", + "name": "Lhotky,Řehnice", + "avgLatitude": 50.37951, + "avgLongitude": 15.0566025 + }, + { + "id": "U31137", + "name": "Libáň,aut.st.", + "avgLatitude": 50.3742561, + "avgLongitude": 15.2161331 + }, + { + "id": "U31136", + "name": "Libáň,Kozodírky", + "avgLatitude": 50.3663025, + "avgLongitude": 15.1914387 + }, + { + "id": "U31703", + "name": "Libáň,Křešice", + "avgLatitude": 50.33882, + "avgLongitude": 15.2005692 + }, + { + "id": "U31164", + "name": "Libáň,Psinice,kostel", + "avgLatitude": 50.3546143, + "avgLongitude": 15.2145586 + }, + { + "id": "U31163", + "name": "Libáň,Psinice,transformátor", + "avgLatitude": 50.3499146, + "avgLongitude": 15.2113619 + }, + { + "id": "U1914", + "name": "Libčice n.Vlt.,Chýnov", + "avgLatitude": 50.19455, + "avgLongitude": 14.3531551 + }, + { + "id": "U4906", + "name": "Libčice n.Vlt.,Letecká", + "avgLatitude": 50.1914139, + "avgLongitude": 14.3715715 + }, + { + "id": "U1916", + "name": "Libčice n.Vlt.,Náměstí Svobody", + "avgLatitude": 50.19773, + "avgLongitude": 14.3641415 + }, + { + "id": "U2825", + "name": "Libčice n.Vlt.,Žel.st.", + "avgLatitude": 50.1997, + "avgLongitude": 14.3624783 + }, + { + "id": "U2824", + "name": "Libčice n.Vlt.,Žel.zast.Letky", + "avgLatitude": 50.18891, + "avgLongitude": 14.3713188 + }, + { + "id": "U3316", + "name": "Liběchov", + "avgLatitude": 50.4080772, + "avgLongitude": 14.4469757 + }, + { + "id": "U3317", + "name": "Liběchov", + "avgLatitude": 50.4144821, + "avgLongitude": 14.4356909 + }, + { + "id": "U6058", + "name": "Liběchov,Boží Voda", + "avgLatitude": 50.41449, + "avgLongitude": 14.4606514 + }, + { + "id": "U3318", + "name": "Liběchov,Ješovice", + "avgLatitude": 50.431778, + "avgLongitude": 14.4254494 + }, + { + "id": "U3320", + "name": "Liběchov,Ješovice,Rozc.", + "avgLatitude": 50.4288025, + "avgLongitude": 14.4150448 + }, + { + "id": "U3319", + "name": "Liběchov,Ješovice,U Lípy", + "avgLatitude": 50.43235, + "avgLongitude": 14.43169 + }, + { + "id": "U3315", + "name": "Liběchov,Malý Liběchov", + "avgLatitude": 50.4031143, + "avgLongitude": 14.4501 + }, + { + "id": "U6057", + "name": "Liběchov,Rašínky", + "avgLatitude": 50.409626, + "avgLongitude": 14.4540472 + }, + { + "id": "U291", + "name": "Liběchovská", + "avgLatitude": 50.14405, + "avgLongitude": 14.4722662 + }, + { + "id": "U6684", + "name": "Libenice", + "avgLatitude": 49.9853363, + "avgLongitude": 15.2583923 + }, + { + "id": "U330", + "name": "Libeňská", + "avgLatitude": 50.13716, + "avgLongitude": 14.4300423 + }, + { + "id": "U5209", + "name": "Libeňské doky", + "avgLatitude": 50.1050262, + "avgLongitude": 14.47032 + }, + { + "id": "U331", + "name": "Libeňský most", + "avgLatitude": 50.103405, + "avgLongitude": 14.46438 + }, + { + "id": "U471", + "name": "Libeňský zámek", + "avgLatitude": 50.10845, + "avgLongitude": 14.4722824 + }, + { + "id": "U31070", + "name": "Liberec,aut.nádr.", + "avgLatitude": 50.76382, + "avgLongitude": 15.0475073 + }, + { + "id": "U31067", + "name": "Liberec,Čechova", + "avgLatitude": 50.75509, + "avgLongitude": 15.0552025 + }, + { + "id": "U31066", + "name": "Liberec,Dobiášova", + "avgLatitude": 50.7518921, + "avgLongitude": 15.0639973 + }, + { + "id": "U31063", + "name": "Liberec,Doubí,pošta", + "avgLatitude": 50.73501, + "avgLongitude": 15.0570765 + }, + { + "id": "U31069", + "name": "Liberec,Fügnerova", + "avgLatitude": 50.7652054, + "avgLongitude": 15.0575237 + }, + { + "id": "U31076", + "name": "Liberec,Jiráskova", + "avgLatitude": 50.7868233, + "avgLongitude": 15.0496626 + }, + { + "id": "U31064", + "name": "Liberec,Kamenická", + "avgLatitude": 50.7430954, + "avgLongitude": 15.0599861 + }, + { + "id": "U31068", + "name": "Liberec,Košická", + "avgLatitude": 50.76028, + "avgLongitude": 15.055541 + }, + { + "id": "U31077", + "name": "Liberec,Pavlovice,stadion", + "avgLatitude": 50.78261, + "avgLongitude": 15.0421524 + }, + { + "id": "U31065", + "name": "Liberec,Rochlice", + "avgLatitude": 50.74694, + "avgLongitude": 15.06228 + }, + { + "id": "U31075", + "name": "Liberec,Ruprechtice,Hlávkova", + "avgLatitude": 50.7858963, + "avgLongitude": 15.0636654 + }, + { + "id": "U31078", + "name": "Liberec,Růžodol I", + "avgLatitude": 50.77504, + "avgLongitude": 15.0388784 + }, + { + "id": "U31072", + "name": "Liberec,Šaldovo nám.", + "avgLatitude": 50.76977, + "avgLongitude": 15.0613861 + }, + { + "id": "U31073", + "name": "Liberec,Tržní nám.", + "avgLatitude": 50.7740479, + "avgLongitude": 15.0617437 + }, + { + "id": "U31074", + "name": "Liberec,U Jelena", + "avgLatitude": 50.7801056, + "avgLongitude": 15.0632591 + }, + { + "id": "U2105", + "name": "Libeř", + "avgLatitude": 49.9234, + "avgLongitude": 14.4804325 + }, + { + "id": "U2102", + "name": "Libeř,Libeň", + "avgLatitude": 49.93914, + "avgLongitude": 14.4636106 + }, + { + "id": "U1530", + "name": "Libeř,Libeň,Oáza", + "avgLatitude": 49.95151, + "avgLongitude": 14.4745655 + }, + { + "id": "U2103", + "name": "Libeř,Libeň,Odb.STS", + "avgLatitude": 49.936058, + "avgLongitude": 14.4638805 + }, + { + "id": "U2101", + "name": "Libeř,Libeň,U Hrušků", + "avgLatitude": 49.943222, + "avgLongitude": 14.4637156 + }, + { + "id": "U2104", + "name": "Libeř,Na Ovčíně", + "avgLatitude": 49.9276276, + "avgLongitude": 14.4812775 + }, + { + "id": "U1807", + "name": "Líbeznice,I", + "avgLatitude": 50.19014, + "avgLongitude": 14.493804 + }, + { + "id": "U1308", + "name": "Líbeznice,II", + "avgLatitude": 50.1951065, + "avgLongitude": 14.4961872 + }, + { + "id": "U2332", + "name": "Líbeznice,Pošta", + "avgLatitude": 50.1943359, + "avgLongitude": 14.4927368 + }, + { + "id": "U1309", + "name": "Líbeznice,Škola", + "avgLatitude": 50.19542, + "avgLongitude": 14.499217 + }, + { + "id": "U1312", + "name": "Líbeznice,Zdrav.stř.", + "avgLatitude": 50.1912842, + "avgLongitude": 14.4955893 + }, + { + "id": "U333", + "name": "Líbeznická", + "avgLatitude": 50.1291962, + "avgLongitude": 14.4553566 + }, + { + "id": "U7699", + "name": "Libež", + "avgLatitude": 49.7571526, + "avgLongitude": 14.9177666 + }, + { + "id": "U6754", + "name": "Libice n.Cidl.,u kostela", + "avgLatitude": 50.1255264, + "avgLongitude": 15.1803713 + }, + { + "id": "U6752", + "name": "Libice n.Cidl.,u sokolovny", + "avgLatitude": 50.1307678, + "avgLongitude": 15.1809244 + }, + { + "id": "U2877", + "name": "Libice nad Cidlinou", + "avgLatitude": 50.1276665, + "avgLongitude": 15.1830444 + }, + { + "id": "U1972", + "name": "Libiš", + "avgLatitude": 50.2754822, + "avgLongitude": 14.49583 + }, + { + "id": "U1974", + "name": "Libiš,Aut.st.", + "avgLatitude": 50.2652359, + "avgLongitude": 14.51053 + }, + { + "id": "U2336", + "name": "Libiš,Ke Spolaně", + "avgLatitude": 50.26498, + "avgLongitude": 14.511549 + }, + { + "id": "U1963", + "name": "Libiš,Na Staré štaci", + "avgLatitude": 50.2680054, + "avgLongitude": 14.49588 + }, + { + "id": "U1955", + "name": "Libiš,Obec", + "avgLatitude": 50.2772026, + "avgLongitude": 14.5004482 + }, + { + "id": "U1964", + "name": "Libiš,Samoobsluha", + "avgLatitude": 50.2740746, + "avgLongitude": 14.502634 + }, + { + "id": "U1306", + "name": "Libiš,Spolana 3", + "avgLatitude": 50.27035, + "avgLongitude": 14.5138836 + }, + { + "id": "U1307", + "name": "Libiš,Spolana 4", + "avgLatitude": 50.2742157, + "avgLongitude": 14.5130758 + }, + { + "id": "U3311", + "name": "Libiš,U Slávisty", + "avgLatitude": 50.2686539, + "avgLongitude": 14.5068054 + }, + { + "id": "U32157", + "name": "Libkovice", + "avgLatitude": 50.1304626, + "avgLongitude": 13.2700109 + }, + { + "id": "U9165", + "name": "Liblice", + "avgLatitude": 50.3128433, + "avgLongitude": 14.5909357 + }, + { + "id": "U334", + "name": "Libocká", + "avgLatitude": 50.08676, + "avgLongitude": 14.3292465 + }, + { + "id": "U32304", + "name": "Libočany", + "avgLatitude": 50.33337, + "avgLongitude": 13.51402 + }, + { + "id": "U5000", + "name": "Libodřice", + "avgLatitude": 50.0044556, + "avgLongitude": 15.08708 + }, + { + "id": "U4404", + "name": "Libochovičky", + "avgLatitude": 50.17273, + "avgLongitude": 14.2393188 + }, + { + "id": "U3283", + "name": "Libomyšl", + "avgLatitude": 49.875576, + "avgLongitude": 13.9919243 + }, + { + "id": "U9850", + "name": "Libomyšl", + "avgLatitude": 49.8708344, + "avgLongitude": 13.9977531 + }, + { + "id": "U9851", + "name": "Libomyšl,u mostu", + "avgLatitude": 49.87433, + "avgLongitude": 13.9965124 + }, + { + "id": "U9852", + "name": "Libomyšl,Želkovice", + "avgLatitude": 49.8774529, + "avgLongitude": 14.03535 + }, + { + "id": "U9462", + "name": "Libošovice", + "avgLatitude": 50.48606, + "avgLongitude": 15.1634626 + }, + { + "id": "U31160", + "name": "Libošovice,Dobšice", + "avgLatitude": 50.50943, + "avgLongitude": 15.1425686 + }, + { + "id": "U31158", + "name": "Libošovice,náves", + "avgLatitude": 50.4909973, + "avgLongitude": 15.1628065 + }, + { + "id": "U31157", + "name": "Libošovice,Nepřívěc", + "avgLatitude": 50.484726, + "avgLongitude": 15.1646347 + }, + { + "id": "U31154", + "name": "Libošovice,Podkost,hrad Kost", + "avgLatitude": 50.4902763, + "avgLongitude": 15.13676 + }, + { + "id": "U31704", + "name": "Libošovice,Podkost,Semtín dvůr", + "avgLatitude": 50.4872437, + "avgLongitude": 15.1453018 + }, + { + "id": "U31159", + "name": "Libošovice,Rytířova Lhota", + "avgLatitude": 50.503437, + "avgLongitude": 15.1532516 + }, + { + "id": "U31155", + "name": "Libošovice,Vesec u Sobotky", + "avgLatitude": 50.48156, + "avgLongitude": 15.1571846 + }, + { + "id": "U31156", + "name": "Libošovice,Vesec u Sobotky,rozc.", + "avgLatitude": 50.47949, + "avgLongitude": 15.1615372 + }, + { + "id": "U407", + "name": "Libošovická", + "avgLatitude": 50.11119, + "avgLongitude": 14.599493 + }, + { + "id": "U9257", + "name": "Libovice", + "avgLatitude": 50.23491, + "avgLongitude": 14.0172977 + }, + { + "id": "U9258", + "name": "Libovice,Kejkol", + "avgLatitude": 50.2343826, + "avgLongitude": 14.0013437 + }, + { + "id": "U9259", + "name": "Libovice,rozc.", + "avgLatitude": 50.2357, + "avgLongitude": 14.0219765 + }, + { + "id": "U533", + "name": "Libuš", + "avgLatitude": 50.0089569, + "avgLongitude": 14.4557133 + }, + { + "id": "U1400", + "name": "Libušín,Černá zem", + "avgLatitude": 50.17327, + "avgLongitude": 14.056078 + }, + { + "id": "U4932", + "name": "Libušín,Důl Kladno", + "avgLatitude": 50.1627541, + "avgLongitude": 14.0261345 + }, + { + "id": "U4792", + "name": "Libušín,Důl Max", + "avgLatitude": 50.15954, + "avgLongitude": 14.0549612 + }, + { + "id": "U4145", + "name": "Libušín,náměstí", + "avgLatitude": 50.16895, + "avgLongitude": 14.0569715 + }, + { + "id": "U4791", + "name": "Libušín,rozc.Důl Max", + "avgLatitude": 50.1556168, + "avgLongitude": 14.0509148 + }, + { + "id": "U2871", + "name": "Libušín,sídliště", + "avgLatitude": 50.1668053, + "avgLongitude": 14.0683651 + }, + { + "id": "U4793", + "name": "Libušín,Suchá Horka", + "avgLatitude": 50.16037, + "avgLongitude": 14.0487347 + }, + { + "id": "U4794", + "name": "Libušín,škola", + "avgLatitude": 50.167202, + "avgLongitude": 14.0535889 + }, + { + "id": "U466", + "name": "Lidečská", + "avgLatitude": 50.06076, + "avgLongitude": 14.30216 + }, + { + "id": "U4392", + "name": "Lidice,ObÚ", + "avgLatitude": 50.1435928, + "avgLongitude": 14.1900406 + }, + { + "id": "U4302", + "name": "Lidice,Památník", + "avgLatitude": 50.1465874, + "avgLongitude": 14.1993637 + }, + { + "id": "U337", + "name": "Lihovar", + "avgLatitude": 50.05089, + "avgLongitude": 14.4098072 + }, + { + "id": "U1320", + "name": "Lichoceves", + "avgLatitude": 50.1538124, + "avgLongitude": 14.2846661 + }, + { + "id": "U1673", + "name": "Lichoceves,Noutonice", + "avgLatitude": 50.1654243, + "avgLongitude": 14.2801943 + }, + { + "id": "U2833", + "name": "Lichoceves,Noutonice,Nádraží", + "avgLatitude": 50.15783, + "avgLongitude": 14.2800465 + }, + { + "id": "U827", + "name": "Limuzská", + "avgLatitude": 50.0781555, + "avgLongitude": 14.5068579 + }, + { + "id": "U339", + "name": "Lipanská", + "avgLatitude": 50.08396, + "avgLongitude": 14.453434 + }, + { + "id": "U340", + "name": "Lipany", + "avgLatitude": 49.9994049, + "avgLongitude": 14.617857 + }, + { + "id": "U6436", + "name": "Lipec", + "avgLatitude": 50.0835762, + "avgLongitude": 15.36488 + }, + { + "id": "U1225", + "name": "Lipence", + "avgLatitude": 49.9596748, + "avgLongitude": 14.3529234 + }, + { + "id": "U342", + "name": "Lipnická", + "avgLatitude": 50.1125565, + "avgLongitude": 14.5593624 + }, + { + "id": "U3038", + "name": "Lipník", + "avgLatitude": 50.27265, + "avgLongitude": 14.9142609 + }, + { + "id": "U871", + "name": "Lipovická", + "avgLatitude": 49.9967346, + "avgLongitude": 14.4676075 + }, + { + "id": "U343", + "name": "Lísek", + "avgLatitude": 50.04265, + "avgLongitude": 14.4567175 + }, + { + "id": "U9237", + "name": "Líský", + "avgLatitude": 50.2490463, + "avgLongitude": 13.9278278 + }, + { + "id": "U4940", + "name": "Lišany,rozvodna", + "avgLatitude": 50.135, + "avgLongitude": 13.7313108 + }, + { + "id": "U2143", + "name": "Lišany,u ovčína", + "avgLatitude": 50.140358, + "avgLongitude": 13.735136 + }, + { + "id": "U3390", + "name": "Lišany,u rybníka", + "avgLatitude": 50.1477966, + "avgLongitude": 13.7418575 + }, + { + "id": "U6149", + "name": "Lišany,u sokolovny", + "avgLatitude": 50.14511, + "avgLongitude": 13.7493782 + }, + { + "id": "U1731", + "name": "Líšnice", + "avgLatitude": 49.88951, + "avgLongitude": 14.3217554 + }, + { + "id": "U1706", + "name": "Líšnice,Hl.sil.", + "avgLatitude": 49.89783, + "avgLongitude": 14.3190069 + }, + { + "id": "U1723", + "name": "Líšnice,Spálený Mlýn", + "avgLatitude": 49.88681, + "avgLongitude": 14.3490257 + }, + { + "id": "U31184", + "name": "Líšný", + "avgLatitude": 50.6493759, + "avgLongitude": 15.2102966 + }, + { + "id": "U32187", + "name": "Líšťany", + "avgLatitude": 50.3126068, + "avgLongitude": 13.79943 + }, + { + "id": "U32186", + "name": "Líšťany,Brána", + "avgLatitude": 50.3101959, + "avgLongitude": 13.7971039 + }, + { + "id": "U32184", + "name": "Líšťany,Hrabačov", + "avgLatitude": 50.31008, + "avgLongitude": 13.8002758 + }, + { + "id": "U2905", + "name": "Liteň", + "avgLatitude": 49.9033661, + "avgLongitude": 14.1561079 + }, + { + "id": "U9022", + "name": "Liteň,Dolní Vlence", + "avgLatitude": 49.9110641, + "avgLongitude": 14.1525364 + }, + { + "id": "U9025", + "name": "Liteň,Leč", + "avgLatitude": 49.8908768, + "avgLongitude": 14.1533489 + }, + { + "id": "U2932", + "name": "Liteň,Leč,rozc.", + "avgLatitude": 49.8881531, + "avgLongitude": 14.1487217 + }, + { + "id": "U9023", + "name": "Liteň,nám.", + "avgLatitude": 49.903923, + "avgLongitude": 14.1472816 + }, + { + "id": "U344", + "name": "Litochlebské náměstí", + "avgLatitude": 50.0319977, + "avgLongitude": 14.5063372 + }, + { + "id": "U31415", + "name": "Litoměřice,aut.nádr.", + "avgLatitude": 50.5330658, + "avgLongitude": 14.1401157 + }, + { + "id": "U31416", + "name": "Litoměřice,obchodní centrum", + "avgLatitude": 50.52558, + "avgLongitude": 14.1376009 + }, + { + "id": "U31409", + "name": "Litoměřice,Pokratice,kaplička", + "avgLatitude": 50.5480652, + "avgLongitude": 14.12656 + }, + { + "id": "U31410", + "name": "Litoměřice,Pokratická", + "avgLatitude": 50.54506, + "avgLongitude": 14.124382 + }, + { + "id": "U31414", + "name": "Litoměřice,u pošty", + "avgLatitude": 50.5363, + "avgLongitude": 14.1320019 + }, + { + "id": "U31411", + "name": "Litoměřice,u závor", + "avgLatitude": 50.5417862, + "avgLongitude": 14.1256065 + }, + { + "id": "U31412", + "name": "Litoměřice,žel.st.hor.", + "avgLatitude": 50.5407372, + "avgLongitude": 14.1307259 + }, + { + "id": "U1198", + "name": "Litovický potok", + "avgLatitude": 50.0886459, + "avgLongitude": 14.3267574 + }, + { + "id": "U3052", + "name": "Livornská", + "avgLatitude": 50.04114, + "avgLongitude": 14.5518169 + }, + { + "id": "U136", + "name": "Lnářská", + "avgLatitude": 50.0282059, + "avgLongitude": 14.5975256 + }, + { + "id": "U6136", + "name": "Lobeč,Filipův Dvůr", + "avgLatitude": 50.4573441, + "avgLongitude": 14.6566086 + }, + { + "id": "U6135", + "name": "Lobeč,pivovar", + "avgLatitude": 50.46103, + "avgLongitude": 14.666461 + }, + { + "id": "U6134", + "name": "Lobeč,zámek", + "avgLatitude": 50.45957, + "avgLongitude": 14.6685619 + }, + { + "id": "U1799", + "name": "Lobkovice", + "avgLatitude": 50.2507668, + "avgLongitude": 14.5308189 + }, + { + "id": "U2370", + "name": "Loděnice", + "avgLatitude": 49.99403, + "avgLongitude": 14.1571093 + }, + { + "id": "U2366", + "name": "Loděnice", + "avgLatitude": 49.9928246, + "avgLongitude": 14.1630335 + }, + { + "id": "U2388", + "name": "Loděnice,Jánská,I", + "avgLatitude": 49.9894562, + "avgLongitude": 14.1513929 + }, + { + "id": "U2371", + "name": "Loděnice,Jánská,II", + "avgLatitude": 49.99134, + "avgLongitude": 14.1509857 + }, + { + "id": "U2369", + "name": "Loděnice,pod lanovkou", + "avgLatitude": 50.00021, + "avgLongitude": 14.1651239 + }, + { + "id": "U9728", + "name": "Logistická zóna Horní Počernice", + "avgLatitude": 50.11541, + "avgLongitude": 14.5917606 + }, + { + "id": "U346", + "name": "Lohenická", + "avgLatitude": 50.1490326, + "avgLongitude": 14.5868835 + }, + { + "id": "U347", + "name": "Lochkov", + "avgLatitude": 50.0029831, + "avgLongitude": 14.3527336 + }, + { + "id": "U2906", + "name": "Lochovice", + "avgLatitude": 49.846386, + "avgLongitude": 13.9743309 + }, + { + "id": "U9843", + "name": "Lochovice,Na Drahách", + "avgLatitude": 49.85028, + "avgLongitude": 13.98476 + }, + { + "id": "U9842", + "name": "Lochovice,nám.", + "avgLatitude": 49.8522034, + "avgLongitude": 13.979311 + }, + { + "id": "U9846", + "name": "Lochovice,Netolice", + "avgLatitude": 49.85315, + "avgLongitude": 13.9525909 + }, + { + "id": "U9847", + "name": "Lochovice,Netolice,rozc.", + "avgLatitude": 49.81758, + "avgLongitude": 13.9099293 + }, + { + "id": "U9840", + "name": "Lochovice,Obora", + "avgLatitude": 49.8417435, + "avgLongitude": 13.9729195 + }, + { + "id": "U9839", + "name": "Lochovice,papírna I", + "avgLatitude": 49.8265533, + "avgLongitude": 13.9710321 + }, + { + "id": "U9844", + "name": "Lochovice,traktorka", + "avgLatitude": 49.8563843, + "avgLongitude": 13.9861546 + }, + { + "id": "U9841", + "name": "Lochovice,u závor", + "avgLatitude": 49.84877, + "avgLongitude": 13.9753227 + }, + { + "id": "U9845", + "name": "Lochovice,ústav", + "avgLatitude": 49.8527451, + "avgLongitude": 13.9687443 + }, + { + "id": "U7702", + "name": "Loket u Čechtic", + "avgLatitude": 49.654747, + "avgLongitude": 15.1133728 + }, + { + "id": "U7703", + "name": "Loket u Čechtic,Alberovice", + "avgLatitude": 49.64552, + "avgLongitude": 15.1059532 + }, + { + "id": "U7704", + "name": "Loket u Čechtic,Bezděkov", + "avgLatitude": 49.6858521, + "avgLongitude": 15.1630592 + }, + { + "id": "U7705", + "name": "Loket u Čechtic,Brzotice", + "avgLatitude": 49.6622772, + "avgLongitude": 15.1293774 + }, + { + "id": "U5887", + "name": "Loket u Čechtic,Brzotice,rozc.I", + "avgLatitude": 49.66097, + "avgLongitude": 15.1281567 + }, + { + "id": "U7706", + "name": "Loket u Čechtic,Brzotice,rozc.II", + "avgLatitude": 49.6616821, + "avgLongitude": 15.1273022 + }, + { + "id": "U5893", + "name": "Loket u Čechtic,motorest", + "avgLatitude": 49.65874, + "avgLongitude": 15.1238585 + }, + { + "id": "U7707", + "name": "Loket u Čechtic,Němčice", + "avgLatitude": 49.67447, + "avgLongitude": 15.102808 + }, + { + "id": "U7708", + "name": "Loket u Čechtic,Radíkovice", + "avgLatitude": 49.70285, + "avgLongitude": 15.1511135 + }, + { + "id": "U7709", + "name": "Loket u Čechtic,Všebořice", + "avgLatitude": 49.695282, + "avgLongitude": 15.1486654 + }, + { + "id": "U7710", + "name": "Loket u Čechtic,Všebořice,rozc.", + "avgLatitude": 49.69745, + "avgLongitude": 15.1562519 + }, + { + "id": "U31448", + "name": "Lomnice n.Luž.,Václavské nám.", + "avgLatitude": 49.08151, + "avgLongitude": 14.7194185 + }, + { + "id": "U349", + "name": "Lomnická", + "avgLatitude": 50.0875931, + "avgLongitude": 14.5630493 + }, + { + "id": "U941", + "name": "Lomy", + "avgLatitude": 49.9982758, + "avgLongitude": 14.3294678 + }, + { + "id": "U4992", + "name": "Lošany", + "avgLatitude": 49.9980164, + "avgLongitude": 15.12625 + }, + { + "id": "U350", + "name": "Lotyšská", + "avgLatitude": 50.1042633, + "avgLongitude": 14.39496 + }, + { + "id": "U9140", + "name": "Loucká", + "avgLatitude": 50.3283348, + "avgLongitude": 14.2386351 + }, + { + "id": "U4882", + "name": "Loucká", + "avgLatitude": 50.3303566, + "avgLongitude": 14.2195606 + }, + { + "id": "U3039", + "name": "Loučeň", + "avgLatitude": 50.28659, + "avgLongitude": 15.0214911 + }, + { + "id": "U3040", + "name": "Loučeň,Na Vinici", + "avgLatitude": 50.2926254, + "avgLongitude": 15.03457 + }, + { + "id": "U3047", + "name": "Loučeň,Patřín", + "avgLatitude": 50.2745972, + "avgLongitude": 15.0131073 + }, + { + "id": "U3046", + "name": "Loučeň,Průhon", + "avgLatitude": 50.281, + "avgLongitude": 15.0168915 + }, + { + "id": "U3048", + "name": "Loučeň,Studce", + "avgLatitude": 50.2914734, + "avgLongitude": 15.0501986 + }, + { + "id": "U9573", + "name": "Loučeň,Studečky", + "avgLatitude": 50.28492, + "avgLongitude": 15.0499344 + }, + { + "id": "U9441", + "name": "Loukov u Mnichova Hradiště", + "avgLatitude": 50.55868, + "avgLongitude": 15.0564651 + }, + { + "id": "U6393", + "name": "Loukov,Na Veselici", + "avgLatitude": 50.5528069, + "avgLongitude": 15.0495577 + }, + { + "id": "U6392", + "name": "Loukov,škola", + "avgLatitude": 50.5601654, + "avgLongitude": 15.0356483 + }, + { + "id": "U6390", + "name": "Loukovec", + "avgLatitude": 50.5620575, + "avgLongitude": 15.0156088 + }, + { + "id": "U6391", + "name": "Loukovec,Hubálov", + "avgLatitude": 50.5591049, + "avgLongitude": 15.0132589 + }, + { + "id": "U1910", + "name": "Louňovice", + "avgLatitude": 49.9825745, + "avgLongitude": 14.7610874 + }, + { + "id": "U4082", + "name": "Louňovice p.Blaníkem", + "avgLatitude": 49.63754, + "avgLongitude": 14.8476944 + }, + { + "id": "U7711", + "name": "Louňovice p.Blaníkem,Býkovice", + "avgLatitude": 49.62104, + "avgLongitude": 14.8663673 + }, + { + "id": "U4085", + "name": "Louňovice p.Blaníkem,Olešná", + "avgLatitude": 49.65837, + "avgLongitude": 14.8688984 + }, + { + "id": "U4086", + "name": "Louňovice p.Blaníkem,rozc.Světlá", + "avgLatitude": 49.64803, + "avgLongitude": 14.8572731 + }, + { + "id": "U4083", + "name": "Louňovice p.Blaníkem,Škola", + "avgLatitude": 49.6337357, + "avgLongitude": 14.8446035 + }, + { + "id": "U4084", + "name": "Louňovice p.Blaníkem,U Mostu", + "avgLatitude": 49.6424446, + "avgLongitude": 14.8428755 + }, + { + "id": "U1909", + "name": "Louňovice,I.hráz", + "avgLatitude": 49.9891548, + "avgLongitude": 14.7564144 + }, + { + "id": "U2010", + "name": "Louňovice,II.hráz", + "avgLatitude": 49.988224, + "avgLongitude": 14.7674742 + }, + { + "id": "U4877", + "name": "Louny", + "avgLatitude": 50.36132, + "avgLongitude": 13.82319 + }, + { + "id": "U9344", + "name": "Louny město", + "avgLatitude": 50.3502579, + "avgLongitude": 13.796361 + }, + { + "id": "U9343", + "name": "Louny střed", + "avgLatitude": 50.3535576, + "avgLongitude": 13.8059006 + }, + { + "id": "U32070", + "name": "Louny,Brloh", + "avgLatitude": 50.3188477, + "avgLongitude": 13.825489 + }, + { + "id": "U32069", + "name": "Louny,Brloh,rozc.Smolnice", + "avgLatitude": 50.3101654, + "avgLongitude": 13.8247395 + }, + { + "id": "U32191", + "name": "Louny,ČSAD", + "avgLatitude": 50.35601, + "avgLongitude": 13.7765274 + }, + { + "id": "U4858", + "name": "Louny,Luna", + "avgLatitude": 50.35701, + "avgLongitude": 13.788909 + }, + { + "id": "U4857", + "name": "Louny,sokolovna", + "avgLatitude": 50.3555374, + "avgLongitude": 13.79516 + }, + { + "id": "U4854", + "name": "Louny,U spravedlnosti", + "avgLatitude": 50.3484039, + "avgLongitude": 13.8058968 + }, + { + "id": "U31299", + "name": "Loužnice,pošta", + "avgLatitude": 50.6805725, + "avgLongitude": 15.2678642 + }, + { + "id": "U4868", + "name": "Lovčice obec", + "avgLatitude": 50.17044, + "avgLongitude": 15.38231 + }, + { + "id": "U2907", + "name": "Lštění", + "avgLatitude": 49.8638725, + "avgLongitude": 14.7156429 + }, + { + "id": "U32255", + "name": "Lubenec", + "avgLatitude": 50.1263237, + "avgLongitude": 13.32787 + }, + { + "id": "U32131", + "name": "Lubenec zastávka", + "avgLatitude": 50.12948, + "avgLongitude": 13.3070831 + }, + { + "id": "U32109", + "name": "Lubenec,Jelení", + "avgLatitude": 50.1264, + "avgLongitude": 13.3328943 + }, + { + "id": "U32110", + "name": "Lubenec,Pražská", + "avgLatitude": 50.132103, + "avgLongitude": 13.3159781 + }, + { + "id": "U9532", + "name": "Lubná", + "avgLatitude": 50.07856, + "avgLongitude": 13.6960554 + }, + { + "id": "U6153", + "name": "Lubná", + "avgLatitude": 50.0755157, + "avgLongitude": 13.6997013 + }, + { + "id": "U6889", + "name": "Lubná,Filipka", + "avgLatitude": 50.072403, + "avgLongitude": 13.703845 + }, + { + "id": "U9913", + "name": "Lubná,pod vrškem", + "avgLatitude": 50.07874, + "avgLongitude": 13.7002935 + }, + { + "id": "U6888", + "name": "Lubná,sídliště", + "avgLatitude": 50.07769, + "avgLongitude": 13.7083569 + }, + { + "id": "U6154", + "name": "Lubná,u hřbitova", + "avgLatitude": 50.07509, + "avgLongitude": 13.7016258 + }, + { + "id": "U9245", + "name": "Lubná,záv.", + "avgLatitude": 50.0833549, + "avgLongitude": 13.6957617 + }, + { + "id": "U1007", + "name": "Luka", + "avgLatitude": 50.0454369, + "avgLongitude": 14.3213024 + }, + { + "id": "U2787", + "name": "Lukášova", + "avgLatitude": 50.0880737, + "avgLongitude": 14.457593 + }, + { + "id": "U31710", + "name": "Lukavec", + "avgLatitude": 49.5661774, + "avgLongitude": 14.9904995 + }, + { + "id": "U31713", + "name": "Lukavec,Bezděkov", + "avgLatitude": 49.573082, + "avgLongitude": 14.968605 + }, + { + "id": "U31715", + "name": "Lukavec,Velká Ves", + "avgLatitude": 49.5683632, + "avgLongitude": 14.9536629 + }, + { + "id": "U31716", + "name": "Lukavec,Velká Ves,rozc.", + "avgLatitude": 49.57565, + "avgLongitude": 14.9643726 + }, + { + "id": "U1031", + "name": "Lukavecká", + "avgLatitude": 50.1161652, + "avgLongitude": 14.61756 + }, + { + "id": "U3049", + "name": "Luštěnice", + "avgLatitude": 50.3224258, + "avgLongitude": 14.9373026 + }, + { + "id": "U4577", + "name": "Luštěnice", + "avgLatitude": 50.3212, + "avgLongitude": 14.9445724 + }, + { + "id": "U3056", + "name": "Luštěnice,Sluneční", + "avgLatitude": 50.313076, + "avgLongitude": 14.9183884 + }, + { + "id": "U3057", + "name": "Luštěnice,Voděrady", + "avgLatitude": 50.33667, + "avgLongitude": 14.9446163 + }, + { + "id": "U3058", + "name": "Luštěnice,Zelená", + "avgLatitude": 50.3163376, + "avgLongitude": 14.9122305 + }, + { + "id": "U1659", + "name": "Lužce", + "avgLatitude": 49.9838181, + "avgLongitude": 14.1952524 + }, + { + "id": "U31116", + "name": "Lužec n.Cidl.,kaple", + "avgLatitude": 50.2133636, + "avgLongitude": 15.4136333 + }, + { + "id": "U31115", + "name": "Lužec n.Cidl.,Skochovická", + "avgLatitude": 50.2153778, + "avgLongitude": 15.406 + }, + { + "id": "U3267", + "name": "Lužec n.Vlt.", + "avgLatitude": 50.3216171, + "avgLongitude": 14.3990574 + }, + { + "id": "U4379", + "name": "Lužec n.Vlt.,Chramostek", + "avgLatitude": 50.32898, + "avgLongitude": 14.41637 + }, + { + "id": "U4378", + "name": "Lužec n.Vlt.,Strojírny", + "avgLatitude": 50.3235168, + "avgLongitude": 14.4068584 + }, + { + "id": "U258", + "name": "Lužiny", + "avgLatitude": 50.0444946, + "avgLongitude": 14.3304424 + }, + { + "id": "U2908", + "name": "Lužná u Rakovníka", + "avgLatitude": 50.1449051, + "avgLongitude": 13.7702951 + }, + { + "id": "U9899", + "name": "Lužná,Červený kříž", + "avgLatitude": 50.13427, + "avgLongitude": 13.8020067 + }, + { + "id": "U9898", + "name": "Lužná,Čs.armády", + "avgLatitude": 50.1194, + "avgLongitude": 13.7709846 + }, + { + "id": "U9911", + "name": "Lužná,kpt.Jaroše", + "avgLatitude": 50.12886, + "avgLongitude": 13.7666645 + }, + { + "id": "U9912", + "name": "Lužná,lesní správa", + "avgLatitude": 50.1382523, + "avgLongitude": 13.7867241 + }, + { + "id": "U9919", + "name": "Lužná,Lišanská", + "avgLatitude": 50.1398773, + "avgLongitude": 13.7620659 + }, + { + "id": "U9909", + "name": "Lužná,Masarykovo nám.", + "avgLatitude": 50.12409, + "avgLongitude": 13.769721 + }, + { + "id": "U4342", + "name": "Lysá n.L.,Byšičky", + "avgLatitude": 50.180584, + "avgLongitude": 14.7940836 + }, + { + "id": "U2909", + "name": "Lysá n.L.,Dvorce", + "avgLatitude": 50.2072525, + "avgLongitude": 14.7966022 + }, + { + "id": "U4341", + "name": "Lysá n.L.,Ke Karlovu", + "avgLatitude": 50.1877747, + "avgLongitude": 14.8031673 + }, + { + "id": "U2434", + "name": "Lysá n.L.,Litol,Boženy Němcové", + "avgLatitude": 50.1922, + "avgLongitude": 14.848835 + }, + { + "id": "U2433", + "name": "Lysá n.L.,Litol,Dobrovského sady", + "avgLatitude": 50.18503, + "avgLongitude": 14.8522377 + }, + { + "id": "U3060", + "name": "Lysá n.L.,Litol,Družstevní", + "avgLatitude": 50.1874924, + "avgLongitude": 14.8571882 + }, + { + "id": "U5939", + "name": "Lysá n.L.,Litol,Husova", + "avgLatitude": 50.1881943, + "avgLongitude": 14.84915 + }, + { + "id": "U2435", + "name": "Lysá n.L.,Litol,U Mostu", + "avgLatitude": 50.17488, + "avgLongitude": 14.853632 + }, + { + "id": "U2472", + "name": "Lysá n.L.,Odbočka Dvorce", + "avgLatitude": 50.2085724, + "avgLongitude": 14.8067036 + }, + { + "id": "U2431", + "name": "Lysá n.L.,pošta", + "avgLatitude": 50.20049, + "avgLongitude": 14.84129 + }, + { + "id": "U2470", + "name": "Lysá n.L.,Předměstí", + "avgLatitude": 50.2012939, + "avgLongitude": 14.828968 + }, + { + "id": "U2445", + "name": "Lysá n.L.,sídl.", + "avgLatitude": 50.2080078, + "avgLongitude": 14.8446255 + }, + { + "id": "U2430", + "name": "Lysá n.L.,škola", + "avgLatitude": 50.204628, + "avgLongitude": 14.84145 + }, + { + "id": "U2432", + "name": "Lysá n.L.,žel.st.", + "avgLatitude": 50.19588, + "avgLongitude": 14.8419924 + }, + { + "id": "U979", + "name": "Lýskova", + "avgLatitude": 50.0510254, + "avgLongitude": 14.3093929 + }, + { + "id": "U352", + "name": "Lysolaje", + "avgLatitude": 50.1267242, + "avgLongitude": 14.3674116 + }, + { + "id": "U990", + "name": "Madlina", + "avgLatitude": 50.1203156, + "avgLongitude": 14.4845009 + }, + { + "id": "U477", + "name": "Macharovo náměstí", + "avgLatitude": 50.0941772, + "avgLongitude": 14.38175 + }, + { + "id": "U4393", + "name": "Makotřasy,náves", + "avgLatitude": 50.1443329, + "avgLongitude": 14.21521 + }, + { + "id": "U4301", + "name": "Makotřasy,rozcestí", + "avgLatitude": 50.1473236, + "avgLongitude": 14.2141886 + }, + { + "id": "U1845", + "name": "Malá Hraštice", + "avgLatitude": 49.8075142, + "avgLongitude": 14.2786007 + }, + { + "id": "U2854", + "name": "Malá Hraštice", + "avgLatitude": 49.8095169, + "avgLongitude": 14.2690153 + }, + { + "id": "U1847", + "name": "Malá Hraštice,Velká Hraštice", + "avgLatitude": 49.80423, + "avgLongitude": 14.2811337 + }, + { + "id": "U355", + "name": "Malá Chuchle", + "avgLatitude": 50.0249863, + "avgLongitude": 14.3947334 + }, + { + "id": "U1073", + "name": "Malá Ohrada", + "avgLatitude": 50.0403061, + "avgLongitude": 14.34021 + }, + { + "id": "U31182", + "name": "Malá Skála,Křížky", + "avgLatitude": 50.6273232, + "avgLongitude": 15.1816282 + }, + { + "id": "U31183", + "name": "Malá Skála,na Labi", + "avgLatitude": 50.6431923, + "avgLongitude": 15.1951256 + }, + { + "id": "U31181", + "name": "Malá Skála,Vranové,u mlýna", + "avgLatitude": 50.6379852, + "avgLongitude": 15.1894817 + }, + { + "id": "U31180", + "name": "Malá Skála,Záborčí,rozc.", + "avgLatitude": 50.6177368, + "avgLongitude": 15.1685162 + }, + { + "id": "U9838", + "name": "Malá Víska", + "avgLatitude": 49.77582, + "avgLongitude": 13.8735533 + }, + { + "id": "U9807", + "name": "Malá Víska,u Lisých", + "avgLatitude": 49.7777328, + "avgLongitude": 13.8717165 + }, + { + "id": "U4902", + "name": "Malé Kyšice", + "avgLatitude": 50.0624542, + "avgLongitude": 14.0920391 + }, + { + "id": "U4790", + "name": "Malé Přítočno", + "avgLatitude": 50.1107, + "avgLongitude": 14.1350155 + }, + { + "id": "U4332", + "name": "Malé Přítočno,U Hrnčírny", + "avgLatitude": 50.1068878, + "avgLongitude": 14.137351 + }, + { + "id": "U9463", + "name": "Malechovice", + "avgLatitude": 50.4933968, + "avgLongitude": 15.18728 + }, + { + "id": "U357", + "name": "Malešická", + "avgLatitude": 50.0865059, + "avgLongitude": 14.4819717 + }, + { + "id": "U358", + "name": "Malešická továrna", + "avgLatitude": 50.0772133, + "avgLongitude": 14.5255375 + }, + { + "id": "U359", + "name": "Malešické náměstí", + "avgLatitude": 50.08501, + "avgLongitude": 14.5111837 + }, + { + "id": "U4572", + "name": "Malešický park", + "avgLatitude": 50.08631, + "avgLongitude": 14.4962025 + }, + { + "id": "U4162", + "name": "Malešov", + "avgLatitude": 49.9108276, + "avgLongitude": 15.2260742 + }, + { + "id": "U9428", + "name": "Malešov", + "avgLatitude": 49.9069672, + "avgLongitude": 15.2309027 + }, + { + "id": "U7166", + "name": "Malešov,Bilejov", + "avgLatitude": 49.914875, + "avgLongitude": 15.2397594 + }, + { + "id": "U2971", + "name": "Malešov,Dubina", + "avgLatitude": 49.8996658, + "avgLongitude": 15.2292938 + }, + { + "id": "U2813", + "name": "Malešov,Maxovna", + "avgLatitude": 49.8925323, + "avgLongitude": 15.2263412 + }, + { + "id": "U9430", + "name": "Malešov,Týniště", + "avgLatitude": 49.8900757, + "avgLongitude": 15.2330484 + }, + { + "id": "U9247", + "name": "Malíkovice", + "avgLatitude": 50.21109, + "avgLongitude": 13.9833164 + }, + { + "id": "U9248", + "name": "Malíkovice,Hlína", + "avgLatitude": 50.2194061, + "avgLongitude": 13.9591732 + }, + { + "id": "U9249", + "name": "Malíkovice,Hvězda", + "avgLatitude": 50.2214737, + "avgLongitude": 13.9793615 + }, + { + "id": "U9250", + "name": "Malíkovice,Hvězda,horní", + "avgLatitude": 50.2206573, + "avgLongitude": 13.9742785 + }, + { + "id": "U9251", + "name": "Malíkovice,Hvězda,rozc.", + "avgLatitude": 50.22232, + "avgLongitude": 13.9849205 + }, + { + "id": "U6894", + "name": "Malinová", + "avgLatitude": 50.0480347, + "avgLongitude": 13.6675119 + }, + { + "id": "U9853", + "name": "Málkov,Jednota", + "avgLatitude": 49.88892, + "avgLongitude": 14.0218573 + }, + { + "id": "U32256", + "name": "Malměřice", + "avgLatitude": 50.113678, + "avgLongitude": 13.3812571 + }, + { + "id": "U360", + "name": "Malostranská", + "avgLatitude": 50.0910721, + "avgLongitude": 14.41006 + }, + { + "id": "U361", + "name": "Malostranské náměstí", + "avgLatitude": 50.08799, + "avgLongitude": 14.4044151 + }, + { + "id": "U2145", + "name": "Malotice", + "avgLatitude": 49.96608, + "avgLongitude": 14.9811964 + }, + { + "id": "U1314", + "name": "Malotice,Lhotky", + "avgLatitude": 49.9548874, + "avgLongitude": 14.9555225 + }, + { + "id": "U9399", + "name": "Malovidy", + "avgLatitude": 49.82199, + "avgLongitude": 14.9321308 + }, + { + "id": "U363", + "name": "Malvazinky", + "avgLatitude": 50.0649948, + "avgLongitude": 14.3884506 + }, + { + "id": "U2719", + "name": "Malý Berlín", + "avgLatitude": 50.1033249, + "avgLongitude": 14.4358139 + }, + { + "id": "U364", + "name": "Malý Břevnov", + "avgLatitude": 50.0761337, + "avgLongitude": 14.3325462 + }, + { + "id": "U2910", + "name": "Malý Újezd", + "avgLatitude": 50.3312035, + "avgLongitude": 14.5330057 + }, + { + "id": "U9163", + "name": "Malý Újezd,Jelenice", + "avgLatitude": 50.3368, + "avgLongitude": 14.5408449 + }, + { + "id": "U9164", + "name": "Malý Újezd,Vavřineč", + "avgLatitude": 50.32406, + "avgLongitude": 14.5507545 + }, + { + "id": "U32086", + "name": "Manětín,Česká Doubravice,rozc.", + "avgLatitude": 49.9758072, + "avgLongitude": 13.2717218 + }, + { + "id": "U32088", + "name": "Manětín,nám.", + "avgLatitude": 49.9919167, + "avgLongitude": 13.2321587 + }, + { + "id": "U32193", + "name": "Manětín,Újezd,rozc.1.0", + "avgLatitude": 49.99438, + "avgLongitude": 13.1986256 + }, + { + "id": "U32087", + "name": "Manětín,Vladměřice,rozcestí", + "avgLatitude": 49.9757919, + "avgLongitude": 13.2600765 + }, + { + "id": "U365", + "name": "Maniny", + "avgLatitude": 50.1032944, + "avgLongitude": 14.4532642 + }, + { + "id": "U1408", + "name": "Mariánské náměstí", + "avgLatitude": 50.0872955, + "avgLongitude": 14.4174891 + }, + { + "id": "U366", + "name": "Marjánka", + "avgLatitude": 50.0845375, + "avgLongitude": 14.3756962 + }, + { + "id": "U31282", + "name": "Markvartice,Hřmenín", + "avgLatitude": 50.40911, + "avgLongitude": 15.2134018 + }, + { + "id": "U31151", + "name": "Markvartice,Mrkvojedy", + "avgLatitude": 50.4247437, + "avgLongitude": 15.1854639 + }, + { + "id": "U31150", + "name": "Markvartice,pošta", + "avgLatitude": 50.43085, + "avgLongitude": 15.1963043 + }, + { + "id": "U31148", + "name": "Markvartice,Příchvoj,kaple", + "avgLatitude": 50.4406433, + "avgLongitude": 15.2258568 + }, + { + "id": "U31149", + "name": "Markvartice,Rakov", + "avgLatitude": 50.4287949, + "avgLongitude": 15.2200346 + }, + { + "id": "U31147", + "name": "Markvartice,Rakov,Čakan", + "avgLatitude": 50.4411278, + "avgLongitude": 15.2112732 + }, + { + "id": "U31152", + "name": "Markvartice,Skuřina", + "avgLatitude": 50.414547, + "avgLongitude": 15.1794853 + }, + { + "id": "U31718", + "name": "Markvartice,Spařence", + "avgLatitude": 50.43249, + "avgLongitude": 15.17704 + }, + { + "id": "U4547", + "name": "Maršovice", + "avgLatitude": 49.7142029, + "avgLongitude": 14.5652876 + }, + { + "id": "U4563", + "name": "Maršovice,Dlouhá Lhota", + "avgLatitude": 49.7390671, + "avgLongitude": 14.5964041 + }, + { + "id": "U4565", + "name": "Maršovice,Libeč", + "avgLatitude": 49.72587, + "avgLongitude": 14.5874987 + }, + { + "id": "U4545", + "name": "Maršovice,Mstětice", + "avgLatitude": 49.72769, + "avgLongitude": 14.5467625 + }, + { + "id": "U4568", + "name": "Maršovice,Řehovice,Rozc.", + "avgLatitude": 49.7190323, + "avgLongitude": 14.5358391 + }, + { + "id": "U4548", + "name": "Maršovice,Strnadice", + "avgLatitude": 49.69968, + "avgLongitude": 14.55125 + }, + { + "id": "U4567", + "name": "Maršovice,Vráce", + "avgLatitude": 49.7271957, + "avgLongitude": 14.5363922 + }, + { + "id": "U4544", + "name": "Maršovice,Záhoří", + "avgLatitude": 49.733902, + "avgLongitude": 14.54386 + }, + { + "id": "U4564", + "name": "Maršovice,Zahrádka", + "avgLatitude": 49.73073, + "avgLongitude": 14.58897 + }, + { + "id": "U4530", + "name": "Maršovice,Zaječí,Rozc.", + "avgLatitude": 49.7509842, + "avgLongitude": 14.5657158 + }, + { + "id": "U9875", + "name": "Maršovice,Zderadice", + "avgLatitude": 49.72916, + "avgLongitude": 14.56057 + }, + { + "id": "U4546", + "name": "Maršovice,Zderadice,Rozc.", + "avgLatitude": 49.7247543, + "avgLongitude": 14.5521984 + }, + { + "id": "U31432", + "name": "Martiněves,Charvatce", + "avgLatitude": 50.3616943, + "avgLongitude": 14.1478729 + }, + { + "id": "U4438", + "name": "Martiněves,Radešín", + "avgLatitude": 50.34101, + "avgLongitude": 14.14567 + }, + { + "id": "U480", + "name": "Masarykovo nádraží", + "avgLatitude": 50.08798, + "avgLongitude": 14.4325466 + }, + { + "id": "U2258", + "name": "Máslovice", + "avgLatitude": 50.20885, + "avgLongitude": 14.3796282 + }, + { + "id": "U2963", + "name": "Masná", + "avgLatitude": 50.08923, + "avgLongitude": 14.4241171 + }, + { + "id": "U1424", + "name": "Masojedy", + "avgLatitude": 50.0261, + "avgLongitude": 14.7778168 + }, + { + "id": "U380", + "name": "Maškův mlýn", + "avgLatitude": 49.99888, + "avgLongitude": 14.3185005 + }, + { + "id": "U3214", + "name": "Matějská", + "avgLatitude": 50.114975, + "avgLongitude": 14.3839474 + }, + { + "id": "U3061", + "name": "Mcely", + "avgLatitude": 50.294342, + "avgLongitude": 15.0755672 + }, + { + "id": "U3062", + "name": "Mcely,Háje", + "avgLatitude": 50.301178, + "avgLongitude": 15.0752354 + }, + { + "id": "U1473", + "name": "Mečeříž", + "avgLatitude": 50.29006, + "avgLongitude": 14.73625 + }, + { + "id": "U374", + "name": "Měděnecká", + "avgLatitude": 50.1496964, + "avgLongitude": 14.448679 + }, + { + "id": "U6078", + "name": "Medonosy", + "avgLatitude": 50.4939461, + "avgLongitude": 14.4867916 + }, + { + "id": "U6073", + "name": "Medonosy,Chudolazy", + "avgLatitude": 50.4746857, + "avgLongitude": 14.4764786 + }, + { + "id": "U6072", + "name": "Medonosy,Chudolazy,mlýn", + "avgLatitude": 50.467144, + "avgLongitude": 14.4736595 + }, + { + "id": "U6080", + "name": "Medonosy,Nové Osinalice", + "avgLatitude": 50.47816, + "avgLongitude": 14.5051861 + }, + { + "id": "U6079", + "name": "Medonosy,Osinalice", + "avgLatitude": 50.49485, + "avgLongitude": 14.5181007 + }, + { + "id": "U6077", + "name": "Medonosy,Osinaličky", + "avgLatitude": 50.48771, + "avgLongitude": 14.4850674 + }, + { + "id": "U1753", + "name": "Měchenice", + "avgLatitude": 49.9082451, + "avgLongitude": 14.392519 + }, + { + "id": "U1756", + "name": "Měchenice", + "avgLatitude": 49.91095, + "avgLongitude": 14.3838358 + }, + { + "id": "U1754", + "name": "Měchenice,rozc.k žel.st.", + "avgLatitude": 49.9108963, + "avgLongitude": 14.3855419 + }, + { + "id": "U375", + "name": "Měchenická", + "avgLatitude": 50.0501175, + "avgLongitude": 14.4885349 + }, + { + "id": "U5077", + "name": "Měcholupy", + "avgLatitude": 50.2662468, + "avgLongitude": 13.5375881 + }, + { + "id": "U32232", + "name": "Měcholupy,škola", + "avgLatitude": 50.2702332, + "avgLongitude": 13.5387611 + }, + { + "id": "U32230", + "name": "Měcholupy,Velká Černoc", + "avgLatitude": 50.2022438, + "avgLongitude": 13.5857906 + }, + { + "id": "U5076", + "name": "Měcholupy,Želeč", + "avgLatitude": 50.2381821, + "avgLongitude": 13.5579891 + }, + { + "id": "U5093", + "name": "Měcholupy,Želeč,rozc.", + "avgLatitude": 50.2577744, + "avgLongitude": 13.5544271 + }, + { + "id": "U4349", + "name": "Mělnická Vrutice", + "avgLatitude": 50.3443527, + "avgLongitude": 14.5465879 + }, + { + "id": "U9176", + "name": "Mělnické Vtelno", + "avgLatitude": 50.3525772, + "avgLongitude": 14.6951389 + }, + { + "id": "U9175", + "name": "Mělnické Vtelno,Radouň", + "avgLatitude": 50.34819, + "avgLongitude": 14.6772041 + }, + { + "id": "U9174", + "name": "Mělnické Vtelno,Vysoká Libeň", + "avgLatitude": 50.3458939, + "avgLongitude": 14.6681309 + }, + { + "id": "U2911", + "name": "Mělník", + "avgLatitude": 50.35303, + "avgLongitude": 14.4923935 + }, + { + "id": "U1793", + "name": "Mělník,aut.nádr.", + "avgLatitude": 50.3504677, + "avgLongitude": 14.4888077 + }, + { + "id": "U3341", + "name": "Mělník,Blata", + "avgLatitude": 50.3501434, + "avgLongitude": 14.494668 + }, + { + "id": "U1791", + "name": "Mělník,Cukrovar", + "avgLatitude": 50.3401337, + "avgLongitude": 14.491889 + }, + { + "id": "U3313", + "name": "Mělník,Českolipská", + "avgLatitude": 50.3857841, + "avgLongitude": 14.46315 + }, + { + "id": "U3344", + "name": "Mělník,Dobrovského", + "avgLatitude": 50.359005, + "avgLongitude": 14.4869652 + }, + { + "id": "U3336", + "name": "Mělník,Fibichova", + "avgLatitude": 50.35054, + "avgLongitude": 14.4787922 + }, + { + "id": "U3346", + "name": "Mělník,Chloumecká", + "avgLatitude": 50.3720741, + "avgLongitude": 14.4987116 + }, + { + "id": "U3347", + "name": "Mělník,Chloumek", + "avgLatitude": 50.374176, + "avgLongitude": 14.50159 + }, + { + "id": "U3312", + "name": "Mělník,kamenný šraňk", + "avgLatitude": 50.3800125, + "avgLongitude": 14.4651747 + }, + { + "id": "U3349", + "name": "Mělník,Kokořínská", + "avgLatitude": 50.3725548, + "avgLongitude": 14.51275 + }, + { + "id": "U3348", + "name": "Mělník,Lesní", + "avgLatitude": 50.3736343, + "avgLongitude": 14.5064545 + }, + { + "id": "U1797", + "name": "Mělník,Loděnická", + "avgLatitude": 50.37034, + "avgLongitude": 14.4656324 + }, + { + "id": "U3333", + "name": "Mělník,Malý Borek", + "avgLatitude": 50.3462944, + "avgLongitude": 14.50931 + }, + { + "id": "U3327", + "name": "Mělník,Mladoboleslavská", + "avgLatitude": 50.3409, + "avgLongitude": 14.5072193 + }, + { + "id": "U1798", + "name": "Mělník,Mlazice", + "avgLatitude": 50.37436, + "avgLongitude": 14.4667625 + }, + { + "id": "U3350", + "name": "Mělník,MŠ Chloumek", + "avgLatitude": 50.36906, + "avgLongitude": 14.50965 + }, + { + "id": "U9905", + "name": "Mělník,Na Brabčově", + "avgLatitude": 50.3375664, + "avgLongitude": 14.5005 + }, + { + "id": "U4257", + "name": "Mělník,nám.Karla IV.", + "avgLatitude": 50.3512077, + "avgLongitude": 14.47672 + }, + { + "id": "U3343", + "name": "Mělník,Neuberk", + "avgLatitude": 50.3569031, + "avgLongitude": 14.49505 + }, + { + "id": "U1794", + "name": "Mělník,Pivovar", + "avgLatitude": 50.3535, + "avgLongitude": 14.4821644 + }, + { + "id": "U1795", + "name": "Mělník,Podolí", + "avgLatitude": 50.35804, + "avgLongitude": 14.4737854 + }, + { + "id": "U3335", + "name": "Mělník,Poliklinika", + "avgLatitude": 50.3469772, + "avgLongitude": 14.4837952 + }, + { + "id": "U1796", + "name": "Mělník,Pšovka", + "avgLatitude": 50.36254, + "avgLongitude": 14.4684105 + }, + { + "id": "U3328", + "name": "Mělník,Rousovice", + "avgLatitude": 50.34315, + "avgLongitude": 14.50096 + }, + { + "id": "U3340", + "name": "Mělník,Rožkovo údolí", + "avgLatitude": 50.38197, + "avgLongitude": 14.47905 + }, + { + "id": "U3351", + "name": "Mělník,Rybáře", + "avgLatitude": 50.3530045, + "avgLongitude": 14.4699745 + }, + { + "id": "U3345", + "name": "Mělník,samoty", + "avgLatitude": 50.36376, + "avgLongitude": 14.49136 + }, + { + "id": "U3334", + "name": "Mělník,Sídliště", + "avgLatitude": 50.34596, + "avgLongitude": 14.4866 + }, + { + "id": "U3342", + "name": "Mělník,silo", + "avgLatitude": 50.35346, + "avgLongitude": 14.4975281 + }, + { + "id": "U3330", + "name": "Mělník,Slovany", + "avgLatitude": 50.3422623, + "avgLongitude": 14.4942894 + }, + { + "id": "U3339", + "name": "Mělník,Strážnická", + "avgLatitude": 50.379, + "avgLongitude": 14.4741344 + }, + { + "id": "U3337", + "name": "Mělník,Tyršova", + "avgLatitude": 50.35373, + "avgLongitude": 14.47431 + }, + { + "id": "U1792", + "name": "Mělník,U Hřiště", + "avgLatitude": 50.3440247, + "avgLongitude": 14.4870358 + }, + { + "id": "U1790", + "name": "Mělník,U Nováků", + "avgLatitude": 50.3323975, + "avgLongitude": 14.49734 + }, + { + "id": "U3314", + "name": "Mělník,Vehlovice", + "avgLatitude": 50.3922119, + "avgLongitude": 14.46298 + }, + { + "id": "U3338", + "name": "Mělník,Zádušní", + "avgLatitude": 50.3578339, + "avgLongitude": 14.47141 + }, + { + "id": "U9020", + "name": "Měňany", + "avgLatitude": 49.90719, + "avgLongitude": 14.11499 + }, + { + "id": "U9019", + "name": "Měňany,odb.Koda", + "avgLatitude": 49.9241829, + "avgLongitude": 14.1054945 + }, + { + "id": "U9018", + "name": "Měňany,Tobolka", + "avgLatitude": 49.92303, + "avgLongitude": 14.0967979 + }, + { + "id": "U4625", + "name": "Městec Králové", + "avgLatitude": 50.21059, + "avgLongitude": 15.3003206 + }, + { + "id": "U6712", + "name": "Městec Králové,kult.dům", + "avgLatitude": 50.20619, + "avgLongitude": 15.2932739 + }, + { + "id": "U2588", + "name": "Městec Králové,nám.", + "avgLatitude": 50.207428, + "avgLongitude": 15.2980986 + }, + { + "id": "U6631", + "name": "Městec Králové,nem.", + "avgLatitude": 50.2049637, + "avgLongitude": 15.2894411 + }, + { + "id": "U6723", + "name": "Městec Králové,Nový", + "avgLatitude": 50.21589, + "avgLongitude": 15.3373346 + }, + { + "id": "U2586", + "name": "Městec Králové,prům.zóna", + "avgLatitude": 50.1959572, + "avgLongitude": 15.29962 + }, + { + "id": "U2587", + "name": "Městec Králové,Stará pošta", + "avgLatitude": 50.2054749, + "avgLongitude": 15.2937965 + }, + { + "id": "U6722", + "name": "Městec Králové,u přejezdu", + "avgLatitude": 50.2090378, + "avgLongitude": 15.3100014 + }, + { + "id": "U6710", + "name": "Městec Králové,Vinice", + "avgLatitude": 50.2249031, + "avgLongitude": 15.2885609 + }, + { + "id": "U6711", + "name": "Městec Králové,Vinická", + "avgLatitude": 50.2103653, + "avgLongitude": 15.2908144 + }, + { + "id": "U3279", + "name": "Městečko", + "avgLatitude": 50.0508728, + "avgLongitude": 13.8631191 + }, + { + "id": "U9387", + "name": "Městečko u Benešova", + "avgLatitude": 49.7308121, + "avgLongitude": 14.805479 + }, + { + "id": "U4019", + "name": "Městečko,Pařeziny", + "avgLatitude": 50.08493, + "avgLongitude": 13.87844 + }, + { + "id": "U4020", + "name": "Městečko,Požáry", + "avgLatitude": 50.0709038, + "avgLongitude": 13.8957176 + }, + { + "id": "U1132", + "name": "Městský archiv Chodovec", + "avgLatitude": 50.0410767, + "avgLongitude": 14.4952536 + }, + { + "id": "U974", + "name": "Měšice", + "avgLatitude": 50.1971359, + "avgLongitude": 14.5195084 + }, + { + "id": "U2812", + "name": "Měšice u Prahy", + "avgLatitude": 50.20453, + "avgLongitude": 14.513588 + }, + { + "id": "U988", + "name": "Měšice,Agropodnik", + "avgLatitude": 50.2079659, + "avgLongitude": 14.521492 + }, + { + "id": "U977", + "name": "Měšice,Na Rejdišti", + "avgLatitude": 50.20375, + "avgLongitude": 14.5211754 + }, + { + "id": "U353", + "name": "Metodějova", + "avgLatitude": 50.02616, + "avgLongitude": 14.5211353 + }, + { + "id": "U373", + "name": "Mezi Hřbitovy", + "avgLatitude": 50.082428, + "avgLongitude": 14.4713907 + }, + { + "id": "U6441", + "name": "Mezno", + "avgLatitude": 49.5366936, + "avgLongitude": 14.6542568 + }, + { + "id": "U6442", + "name": "Mezno,hl.silnice", + "avgLatitude": 49.537014, + "avgLongitude": 14.659811 + }, + { + "id": "U6443", + "name": "Mezno,Lažany", + "avgLatitude": 49.54481, + "avgLongitude": 14.6634674 + }, + { + "id": "U6444", + "name": "Mezno,Mitrovice", + "avgLatitude": 49.5370064, + "avgLongitude": 14.6709728 + }, + { + "id": "U9503", + "name": "Mezno,žel.st.", + "avgLatitude": 49.53673, + "avgLongitude": 14.6548929 + }, + { + "id": "U1656", + "name": "Mezouň", + "avgLatitude": 50.00439, + "avgLongitude": 14.214262 + }, + { + "id": "U1076", + "name": "Michelangelova", + "avgLatitude": 50.0702248, + "avgLongitude": 14.509613 + }, + { + "id": "U376", + "name": "Michelská", + "avgLatitude": 50.054718, + "avgLongitude": 14.4533558 + }, + { + "id": "U904", + "name": "Michnovka", + "avgLatitude": 50.039444, + "avgLongitude": 14.3971844 + }, + { + "id": "U379", + "name": "Mikulova", + "avgLatitude": 50.0319443, + "avgLongitude": 14.51469 + }, + { + "id": "U1485", + "name": "Milčice", + "avgLatitude": 50.10656, + "avgLongitude": 14.992569 + }, + { + "id": "U1445", + "name": "Milčice,křiž.", + "avgLatitude": 50.1044426, + "avgLongitude": 14.992506 + }, + { + "id": "U7714", + "name": "Milešov", + "avgLatitude": 49.5891647, + "avgLongitude": 14.22103 + }, + { + "id": "U7716", + "name": "Milešov,Hřebeny", + "avgLatitude": 49.5963821, + "avgLongitude": 14.2025394 + }, + { + "id": "U7717", + "name": "Milešov,Klenovice", + "avgLatitude": 49.5816, + "avgLongitude": 14.2016716 + }, + { + "id": "U7718", + "name": "Milešov,Přední Chlum", + "avgLatitude": 49.6004066, + "avgLongitude": 14.1932926 + }, + { + "id": "U7969", + "name": "Milešov,Přední Chlum,Popelíky", + "avgLatitude": 49.60312, + "avgLongitude": 14.1887169 + }, + { + "id": "U7715", + "name": "Milešov,rozc.", + "avgLatitude": 49.5887833, + "avgLongitude": 14.2266541 + }, + { + "id": "U1055", + "name": "Milevská", + "avgLatitude": 50.0486145, + "avgLongitude": 14.4302711 + }, + { + "id": "U31724", + "name": "Milevsko,aut.st.", + "avgLatitude": 49.44928, + "avgLongitude": 14.3607635 + }, + { + "id": "U31729", + "name": "Milevsko,Dmýštice", + "avgLatitude": 49.48796, + "avgLongitude": 14.3229351 + }, + { + "id": "U31730", + "name": "Milevsko,Něžovice,Jenišovice", + "avgLatitude": 49.4754639, + "avgLongitude": 14.3304377 + }, + { + "id": "U31731", + "name": "Milevsko,Něžovice,Spálená", + "avgLatitude": 49.4724159, + "avgLongitude": 14.3447189 + }, + { + "id": "U31914", + "name": "Milevsko,Petrovická", + "avgLatitude": 49.4566269, + "avgLongitude": 14.3628788 + }, + { + "id": "U31726", + "name": "Milevsko,poliklinika", + "avgLatitude": 49.45291, + "avgLongitude": 14.3617506 + }, + { + "id": "U32102", + "name": "Milevsko,škola I", + "avgLatitude": 49.4529037, + "avgLongitude": 14.35994 + }, + { + "id": "U6438", + "name": "Miličín", + "avgLatitude": 49.5724678, + "avgLongitude": 14.6591129 + }, + { + "id": "U6456", + "name": "Miličín,Malovice", + "avgLatitude": 49.5726166, + "avgLongitude": 14.7136536 + }, + { + "id": "U6458", + "name": "Miličín,Nasavrky", + "avgLatitude": 49.5487823, + "avgLongitude": 14.6947737 + }, + { + "id": "U6459", + "name": "Miličín,Nové Dvory", + "avgLatitude": 49.54792, + "avgLongitude": 14.70787 + }, + { + "id": "U6460", + "name": "Miličín,Petrovice", + "avgLatitude": 49.5539856, + "avgLongitude": 14.7191563 + }, + { + "id": "U7270", + "name": "Miličín,Petrovice,Loučka", + "avgLatitude": 49.5504074, + "avgLongitude": 14.7159214 + }, + { + "id": "U6252", + "name": "Miličín,Podměští", + "avgLatitude": 49.5710678, + "avgLongitude": 14.6685009 + }, + { + "id": "U6457", + "name": "Miličín,rozc.Malovice", + "avgLatitude": 49.56379, + "avgLongitude": 14.6965141 + }, + { + "id": "U6462", + "name": "Miličín,Záhoří", + "avgLatitude": 49.56579, + "avgLongitude": 14.6839294 + }, + { + "id": "U4133", + "name": "Milíčov", + "avgLatitude": 50.0269737, + "avgLongitude": 14.5306749 + }, + { + "id": "U3288", + "name": "Milín", + "avgLatitude": 49.6323662, + "avgLongitude": 14.0217762 + }, + { + "id": "U7719", + "name": "Milín", + "avgLatitude": 49.63233, + "avgLongitude": 14.0462246 + }, + { + "id": "U7725", + "name": "Milín,Buk", + "avgLatitude": 49.6486053, + "avgLongitude": 14.0602455 + }, + { + "id": "U7726", + "name": "Milín,Buk,křiž.", + "avgLatitude": 49.6535378, + "avgLongitude": 14.0550623 + }, + { + "id": "U5962", + "name": "Milín,Kamenná", + "avgLatitude": 49.62349, + "avgLongitude": 13.9937906 + }, + { + "id": "U7728", + "name": "Milín,Konětopy", + "avgLatitude": 49.650074, + "avgLongitude": 14.0337391 + }, + { + "id": "U7724", + "name": "Milín,Nádražní", + "avgLatitude": 49.6337128, + "avgLongitude": 14.0317678 + }, + { + "id": "U7721", + "name": "Milín,sídliště", + "avgLatitude": 49.63419, + "avgLongitude": 14.0396309 + }, + { + "id": "U7730", + "name": "Milín,Slivice", + "avgLatitude": 49.643795, + "avgLongitude": 14.033927 + }, + { + "id": "U7731", + "name": "Milín,Stěžov", + "avgLatitude": 49.6468163, + "avgLongitude": 14.09691 + }, + { + "id": "U7722", + "name": "Milín,škola", + "avgLatitude": 49.63241, + "avgLongitude": 14.0414324 + }, + { + "id": "U9518", + "name": "Milostín", + "avgLatitude": 50.2025681, + "avgLongitude": 13.667531 + }, + { + "id": "U6428", + "name": "Milostín", + "avgLatitude": 50.1940536, + "avgLongitude": 13.6678772 + }, + { + "id": "U6408", + "name": "Milostín,Povlčín", + "avgLatitude": 50.19709, + "avgLongitude": 13.6546059 + }, + { + "id": "U6452", + "name": "Milostín,V Parku", + "avgLatitude": 50.19468, + "avgLongitude": 13.6708984 + }, + { + "id": "U2901", + "name": "Mílová", + "avgLatitude": 50.0100174, + "avgLongitude": 14.466774 + }, + { + "id": "U1496", + "name": "Milovice", + "avgLatitude": 50.22895, + "avgLongitude": 14.8815651 + }, + { + "id": "U4138", + "name": "Milovice,5.května", + "avgLatitude": 50.2264252, + "avgLongitude": 14.8933287 + }, + { + "id": "U1488", + "name": "Milovice,Armádní", + "avgLatitude": 50.2292023, + "avgLongitude": 14.8680706 + }, + { + "id": "U1489", + "name": "Milovice,Balonka", + "avgLatitude": 50.23089, + "avgLongitude": 14.8922348 + }, + { + "id": "U1490", + "name": "Milovice,Benátecká Vrutice", + "avgLatitude": 50.2302055, + "avgLongitude": 14.8376446 + }, + { + "id": "U2464", + "name": "Milovice,Benátecká Vrutice,Armádní", + "avgLatitude": 50.2319565, + "avgLongitude": 14.8434906 + }, + { + "id": "U2467", + "name": "Milovice,Boží Dar", + "avgLatitude": 50.2479935, + "avgLongitude": 14.9179535 + }, + { + "id": "U2465", + "name": "Milovice,Letecká", + "avgLatitude": 50.2315674, + "avgLongitude": 14.8880329 + }, + { + "id": "U2463", + "name": "Milovice,Park Mirakulum", + "avgLatitude": 50.23678, + "avgLongitude": 14.86096 + }, + { + "id": "U5085", + "name": "Milovice,průmyslová zóna", + "avgLatitude": 50.23555, + "avgLongitude": 14.8516407 + }, + { + "id": "U1492", + "name": "Milovice,Radnice", + "avgLatitude": 50.2286453, + "avgLongitude": 14.876358 + }, + { + "id": "U1495", + "name": "Milovice,sídliště Průběžná", + "avgLatitude": 50.22937, + "avgLongitude": 14.8617945 + }, + { + "id": "U5914", + "name": "Milovice,Sluneční vrch", + "avgLatitude": 50.2294, + "avgLongitude": 14.8571377 + }, + { + "id": "U1493", + "name": "Milovice,Sportovní", + "avgLatitude": 50.2305222, + "avgLongitude": 14.8651619 + }, + { + "id": "U1494", + "name": "Milovice,Škola", + "avgLatitude": 50.22857, + "avgLongitude": 14.886055 + }, + { + "id": "U2466", + "name": "Milovice,Třešňová", + "avgLatitude": 50.2243271, + "avgLongitude": 14.8960781 + }, + { + "id": "U4123", + "name": "Milovice,Tyršova", + "avgLatitude": 50.22959, + "avgLongitude": 14.8641758 + }, + { + "id": "U9038", + "name": "Milý", + "avgLatitude": 50.2322426, + "avgLongitude": 13.867384 + }, + { + "id": "U9039", + "name": "Milý,Bor", + "avgLatitude": 50.2397079, + "avgLongitude": 13.8649845 + }, + { + "id": "U31050", + "name": "Mimoň,aut.st.", + "avgLatitude": 50.6615639, + "avgLongitude": 14.72204 + }, + { + "id": "U31372", + "name": "Mimoň,kino", + "avgLatitude": 50.65506, + "avgLongitude": 14.7253485 + }, + { + "id": "U31492", + "name": "Mimoň,lesní závod", + "avgLatitude": 50.636795, + "avgLongitude": 14.7471428 + }, + { + "id": "U31371", + "name": "Mimoň,Malá", + "avgLatitude": 50.65622, + "avgLongitude": 14.725544 + }, + { + "id": "U31493", + "name": "Mimoň,Pražská", + "avgLatitude": 50.651207, + "avgLongitude": 14.7350674 + }, + { + "id": "U32111", + "name": "Mimoň,žel.st.", + "avgLatitude": 50.65789, + "avgLongitude": 14.7152061 + }, + { + "id": "U31374", + "name": "Mimoň,Žitavská", + "avgLatitude": 50.6662979, + "avgLongitude": 14.7266541 + }, + { + "id": "U9379", + "name": "Minartice", + "avgLatitude": 49.66701, + "avgLongitude": 14.53932 + }, + { + "id": "U1863", + "name": "Mirošovice u Prahy", + "avgLatitude": 49.9103, + "avgLongitude": 14.7201681 + }, + { + "id": "U9423", + "name": "Mirošovice u Rataj nad Sázavou", + "avgLatitude": 49.8605461, + "avgLongitude": 15.00522 + }, + { + "id": "U31734", + "name": "Mirotice", + "avgLatitude": 49.42988, + "avgLongitude": 14.0368109 + }, + { + "id": "U31219", + "name": "Mírová p.Koz.,Loktuše,na Špici", + "avgLatitude": 50.5889053, + "avgLongitude": 15.2312031 + }, + { + "id": "U4295", + "name": "Mirovice", + "avgLatitude": 49.50988, + "avgLongitude": 14.0344286 + }, + { + "id": "U31737", + "name": "Mirovice,Boješice", + "avgLatitude": 49.5386429, + "avgLongitude": 14.0418787 + }, + { + "id": "U31735", + "name": "Mirovice,nám.", + "avgLatitude": 49.516037, + "avgLongitude": 14.036602 + }, + { + "id": "U31738", + "name": "Mirovice,Ohař,rozc.1.0", + "avgLatitude": 49.5457573, + "avgLongitude": 14.049614 + }, + { + "id": "U31739", + "name": "Mirovice,Plíškovice", + "avgLatitude": 49.5156, + "avgLongitude": 14.01936 + }, + { + "id": "U31740", + "name": "Mirovice,Ráztely,rozc.2.0", + "avgLatitude": 49.52359, + "avgLongitude": 14.0031958 + }, + { + "id": "U31741", + "name": "Mirovice,Řeteč", + "avgLatitude": 49.55561, + "avgLongitude": 14.05066 + }, + { + "id": "U1011", + "name": "Mirovická", + "avgLatitude": 50.1308823, + "avgLongitude": 14.4524336 + }, + { + "id": "U7732", + "name": "Miřetice", + "avgLatitude": 49.6585159, + "avgLongitude": 14.9763374 + }, + { + "id": "U7733", + "name": "Miřetice,rozc.", + "avgLatitude": 49.6652451, + "avgLongitude": 14.9801893 + }, + { + "id": "U1475", + "name": "Miskovice", + "avgLatitude": 49.94651, + "avgLongitude": 15.2069492 + }, + { + "id": "U6972", + "name": "Miskovice,Bylany", + "avgLatitude": 49.9368057, + "avgLongitude": 15.23746 + }, + { + "id": "U6682", + "name": "Miskovice,Hořany", + "avgLatitude": 49.972847, + "avgLongitude": 15.236105 + }, + { + "id": "U9951", + "name": "Miskovice,Mezholezy", + "avgLatitude": 49.9384537, + "avgLongitude": 15.1922855 + }, + { + "id": "U1476", + "name": "Miskovice,Přítoky", + "avgLatitude": 49.9476662, + "avgLongitude": 15.2378559 + }, + { + "id": "U384", + "name": "Miškovice", + "avgLatitude": 50.15589, + "avgLongitude": 14.5416718 + }, + { + "id": "U31742", + "name": "Míšov", + "avgLatitude": 49.6227646, + "avgLongitude": 13.7248745 + }, + { + "id": "U31743", + "name": "Mišovice,Draheničky,rozc.", + "avgLatitude": 49.5123367, + "avgLongitude": 13.9627075 + }, + { + "id": "U31514", + "name": "Mišovice,Draheničky,rozc.Hostišovice 2.0", + "avgLatitude": 49.500576, + "avgLongitude": 13.9494362 + }, + { + "id": "U31744", + "name": "Mišovice,Slavkovice", + "avgLatitude": 49.49173, + "avgLongitude": 14.0199432 + }, + { + "id": "U31849", + "name": "Mišovice,Slavkovická Hora", + "avgLatitude": 49.4822464, + "avgLongitude": 14.0286732 + }, + { + "id": "U9422", + "name": "Mitrov", + "avgLatitude": 49.8658142, + "avgLongitude": 15.0478745 + }, + { + "id": "U2986", + "name": "Mladá Boleslav hl.n.", + "avgLatitude": 50.4074936, + "avgLongitude": 14.88701 + }, + { + "id": "U2987", + "name": "Mladá Boleslav město", + "avgLatitude": 50.4192238, + "avgLongitude": 14.9159365 + }, + { + "id": "U9300", + "name": "Mladá Boleslav,AKUMA", + "avgLatitude": 50.4071465, + "avgLongitude": 14.8987236 + }, + { + "id": "U3385", + "name": "Mladá Boleslav,Bezděčín", + "avgLatitude": 50.38651, + "avgLongitude": 14.8975849 + }, + { + "id": "U3392", + "name": "Mladá Boleslav,Boleslavská", + "avgLatitude": 50.4310379, + "avgLongitude": 14.9228907 + }, + { + "id": "U4070", + "name": "Mladá Boleslav,Čejetice,odb.", + "avgLatitude": 50.4165421, + "avgLongitude": 14.88114 + }, + { + "id": "U9299", + "name": "Mladá Boleslav,Čejetičky,Most", + "avgLatitude": 50.4050026, + "avgLongitude": 14.8917236 + }, + { + "id": "U4068", + "name": "Mladá Boleslav,Česana", + "avgLatitude": 50.4127426, + "avgLongitude": 14.9012671 + }, + { + "id": "U6177", + "name": "Mladá Boleslav,Debř,hl.sil.", + "avgLatitude": 50.4399948, + "avgLongitude": 14.8898954 + }, + { + "id": "U9349", + "name": "Mladá Boleslav,Debř,škola", + "avgLatitude": 50.4464455, + "avgLongitude": 14.8876333 + }, + { + "id": "U3391", + "name": "Mladá Boleslav,Jaselská VZP", + "avgLatitude": 50.4142876, + "avgLongitude": 14.9072828 + }, + { + "id": "U3068", + "name": "Mladá Boleslav,Jemníky", + "avgLatitude": 50.3995056, + "avgLongitude": 14.938694 + }, + { + "id": "U3063", + "name": "Mladá Boleslav,Jičínská", + "avgLatitude": 50.41042, + "avgLongitude": 14.9277 + }, + { + "id": "U3386", + "name": "Mladá Boleslav,Na Hejtmánce", + "avgLatitude": 50.4017258, + "avgLongitude": 14.9037285 + }, + { + "id": "U6171", + "name": "Mladá Boleslav,Na výstavišti", + "avgLatitude": 50.41457, + "avgLongitude": 14.9095688 + }, + { + "id": "U3256", + "name": "Mladá Boleslav,nám.Republiky", + "avgLatitude": 50.4111023, + "avgLongitude": 14.9169674 + }, + { + "id": "U6439", + "name": "Mladá Boleslav,Neuberk", + "avgLatitude": 50.402565, + "avgLongitude": 14.8811426 + }, + { + "id": "U6172", + "name": "Mladá Boleslav,Nový hřbitov", + "avgLatitude": 50.4255, + "avgLongitude": 14.9185848 + }, + { + "id": "U3066", + "name": "Mladá Boleslav,Pírkovo sanatorium", + "avgLatitude": 50.40686, + "avgLongitude": 14.9235992 + }, + { + "id": "U6175", + "name": "Mladá Boleslav,Pod Skalou", + "avgLatitude": 50.4228363, + "avgLongitude": 14.8998528 + }, + { + "id": "U3387", + "name": "Mladá Boleslav,Podolec", + "avgLatitude": 50.4086, + "avgLongitude": 14.9033194 + }, + { + "id": "U6176", + "name": "Mladá Boleslav,rozc.Podlázky 0.5", + "avgLatitude": 50.43133, + "avgLongitude": 14.8971348 + }, + { + "id": "U3067", + "name": "Mladá Boleslav,u nadjezdu", + "avgLatitude": 50.40399, + "avgLongitude": 14.9331923 + }, + { + "id": "U3389", + "name": "Mladá Boleslav,U Sportu", + "avgLatitude": 50.4128036, + "avgLongitude": 14.9099588 + }, + { + "id": "U6440", + "name": "Mladá Boleslav,Václava Klementa", + "avgLatitude": 50.42194, + "avgLongitude": 14.9156952 + }, + { + "id": "U3388", + "name": "Mladá Boleslav,Viničná", + "avgLatitude": 50.4098473, + "avgLongitude": 14.919611 + }, + { + "id": "U3064", + "name": "Mladá Boleslav,Zalužany ŠKODA", + "avgLatitude": 50.42718, + "avgLongitude": 14.9382582 + }, + { + "id": "U32025", + "name": "Mladá Vožice,Agrospol a.s.", + "avgLatitude": 49.5188, + "avgLongitude": 14.7989073 + }, + { + "id": "U31254", + "name": "Mladá Vožice,aut.st.", + "avgLatitude": 49.53103, + "avgLongitude": 14.8082476 + }, + { + "id": "U32026", + "name": "Mladá Vožice,Blanice", + "avgLatitude": 49.5073433, + "avgLongitude": 14.7964449 + }, + { + "id": "U32028", + "name": "Mladá Vožice,Blanice,rozc.1.0", + "avgLatitude": 49.5091553, + "avgLongitude": 14.7847328 + }, + { + "id": "U31258", + "name": "Mladá Vožice,Chocov", + "avgLatitude": 49.5594254, + "avgLongitude": 14.7940521 + }, + { + "id": "U31257", + "name": "Mladá Vožice,Chocov,rozc.1.0", + "avgLatitude": 49.55302, + "avgLongitude": 14.7959251 + }, + { + "id": "U31267", + "name": "Mladá Vožice,KOH-I-NOOR", + "avgLatitude": 49.5421448, + "avgLongitude": 14.8136921 + }, + { + "id": "U31256", + "name": "Mladá Vožice,Noskov", + "avgLatitude": 49.55007, + "avgLongitude": 14.7975025 + }, + { + "id": "U31268", + "name": "Mladá Vožice,Noskov,Bor", + "avgLatitude": 49.55111, + "avgLongitude": 14.8156395 + }, + { + "id": "U31255", + "name": "Mladá Vožice,Noskov,rybník", + "avgLatitude": 49.5475922, + "avgLongitude": 14.7965164 + }, + { + "id": "U32027", + "name": "Mladá Vožice,rozc.Řemíčov 1.0", + "avgLatitude": 49.5173721, + "avgLongitude": 14.7934837 + }, + { + "id": "U32029", + "name": "Mladá Vožice,Stará Vožice", + "avgLatitude": 49.5015335, + "avgLongitude": 14.7719612 + }, + { + "id": "U32024", + "name": "Mladá Vožice,Táborská", + "avgLatitude": 49.5279732, + "avgLongitude": 14.8057661 + }, + { + "id": "U31252", + "name": "Mladá Vožice,u hřbitova", + "avgLatitude": 49.5369339, + "avgLongitude": 14.8005772 + }, + { + "id": "U31266", + "name": "Mladá Vožice,Vanišova", + "avgLatitude": 49.53694, + "avgLongitude": 14.8121414 + }, + { + "id": "U31253", + "name": "Mladá Vožice,Voračického", + "avgLatitude": 49.53515, + "avgLongitude": 14.80672 + }, + { + "id": "U9464", + "name": "Mladějov v Čechách", + "avgLatitude": 50.48113, + "avgLongitude": 15.2259016 + }, + { + "id": "U145", + "name": "Mladějovská", + "avgLatitude": 50.13263, + "avgLongitude": 14.5603981 + }, + { + "id": "U475", + "name": "Mládí", + "avgLatitude": 50.0500946, + "avgLongitude": 14.3224163 + }, + { + "id": "U32079", + "name": "Mladotice", + "avgLatitude": 49.9854279, + "avgLongitude": 13.364193 + }, + { + "id": "U32082", + "name": "Mladotice,zastávka", + "avgLatitude": 49.97409, + "avgLongitude": 13.34164 + }, + { + "id": "U32080", + "name": "Mladotice,žel.st.", + "avgLatitude": 49.9864159, + "avgLongitude": 13.3643665 + }, + { + "id": "U31995", + "name": "Mladý Smolivec,Starý Smolivec,I", + "avgLatitude": 49.52766, + "avgLongitude": 13.751276 + }, + { + "id": "U2830", + "name": "Mlčechvosty", + "avgLatitude": 50.3191071, + "avgLongitude": 14.3475742 + }, + { + "id": "U4620", + "name": "Mlýnec", + "avgLatitude": 50.3176537, + "avgLongitude": 15.2207117 + }, + { + "id": "U1477", + "name": "Mnetěš", + "avgLatitude": 50.3598976, + "avgLongitude": 14.2760715 + }, + { + "id": "U1479", + "name": "Mnetěš", + "avgLatitude": 50.3660965, + "avgLongitude": 14.2828693 + }, + { + "id": "U31440", + "name": "Mnetěš,rozc.", + "avgLatitude": 50.3536758, + "avgLongitude": 14.268177 + }, + { + "id": "U2277", + "name": "Mnichovice", + "avgLatitude": 49.93272, + "avgLongitude": 14.7070313 + }, + { + "id": "U7734", + "name": "Mnichovice", + "avgLatitude": 49.66872, + "avgLongitude": 15.0400448 + }, + { + "id": "U2360", + "name": "Mnichovice,bytovky", + "avgLatitude": 49.94154, + "avgLongitude": 14.702095 + }, + { + "id": "U2073", + "name": "Mnichovice,hotel Myšlín", + "avgLatitude": 49.9391327, + "avgLongitude": 14.7354813 + }, + { + "id": "U2087", + "name": "Mnichovice,Myšlín", + "avgLatitude": 49.93917, + "avgLongitude": 14.7199211 + }, + { + "id": "U2055", + "name": "Mnichovice,nám.", + "avgLatitude": 49.93583, + "avgLongitude": 14.7094307 + }, + { + "id": "U2064", + "name": "Mnichovice,požární dům", + "avgLatitude": 49.9331055, + "avgLongitude": 14.7125368 + }, + { + "id": "U2063", + "name": "Mnichovice,U Hřbitova", + "avgLatitude": 49.9258652, + "avgLongitude": 14.7273331 + }, + { + "id": "U2359", + "name": "Mnichovice,U křížku", + "avgLatitude": 49.9390068, + "avgLongitude": 14.7154713 + }, + { + "id": "U2361", + "name": "Mnichovice,Závěrka", + "avgLatitude": 49.92913, + "avgLongitude": 14.7174282 + }, + { + "id": "U2563", + "name": "Mnichovice,zdrav.stř.", + "avgLatitude": 49.9376, + "avgLongitude": 14.7061672 + }, + { + "id": "U9478", + "name": "Mnichovo Hradiště", + "avgLatitude": 50.51845, + "avgLongitude": 14.9784384 + }, + { + "id": "U6400", + "name": "Mnichovo Hradiště,Dneboh", + "avgLatitude": 50.52624, + "avgLongitude": 15.0203362 + }, + { + "id": "U6363", + "name": "Mnichovo Hradiště,Dobrá Voda", + "avgLatitude": 50.50991, + "avgLongitude": 15.0026722 + }, + { + "id": "U6354", + "name": "Mnichovo Hradiště,Dolení Kruhy", + "avgLatitude": 50.5557251, + "avgLongitude": 14.9987221 + }, + { + "id": "U3251", + "name": "Mnichovo Hradiště,Haškov", + "avgLatitude": 50.510376, + "avgLongitude": 14.9701061 + }, + { + "id": "U6350", + "name": "Mnichovo Hradiště,Hněvousice", + "avgLatitude": 50.53716, + "avgLongitude": 14.965004 + }, + { + "id": "U6355", + "name": "Mnichovo Hradiště,Hoření Kruhy", + "avgLatitude": 50.55327, + "avgLongitude": 15.0058107 + }, + { + "id": "U6398", + "name": "Mnichovo Hradiště,Hoškovice", + "avgLatitude": 50.5322876, + "avgLongitude": 15.0020733 + }, + { + "id": "U6399", + "name": "Mnichovo Hradiště,Hoškovice,u trati", + "avgLatitude": 50.5292969, + "avgLongitude": 15.0004339 + }, + { + "id": "U6364", + "name": "Mnichovo Hradiště,Jiráskova", + "avgLatitude": 50.51954, + "avgLongitude": 14.9823437 + }, + { + "id": "U6324", + "name": "Mnichovo Hradiště,Klášterská", + "avgLatitude": 50.5272141, + "avgLongitude": 14.9689684 + }, + { + "id": "U6362", + "name": "Mnichovo Hradiště,Lhotice", + "avgLatitude": 50.49935, + "avgLongitude": 14.99733 + }, + { + "id": "U3253", + "name": "Mnichovo Hradiště,nám.", + "avgLatitude": 50.5224, + "avgLongitude": 14.9746647 + }, + { + "id": "U6401", + "name": "Mnichovo Hradiště,Olšina", + "avgLatitude": 50.537468, + "avgLongitude": 15.0321579 + }, + { + "id": "U6353", + "name": "Mnichovo Hradiště,Podolí", + "avgLatitude": 50.54695, + "avgLongitude": 14.99072 + }, + { + "id": "U6358", + "name": "Mnichovo Hradiště,Sychrov", + "avgLatitude": 50.5537834, + "avgLongitude": 14.9800873 + }, + { + "id": "U6356", + "name": "Mnichovo Hradiště,Sychrov,Pazderna", + "avgLatitude": 50.5548019, + "avgLongitude": 14.9896555 + }, + { + "id": "U6351", + "name": "Mnichovo Hradiště,Sychrov,u Jizery", + "avgLatitude": 50.55326, + "avgLongitude": 14.9715853 + }, + { + "id": "U6357", + "name": "Mnichovo Hradiště,Sychrov,u rybníka", + "avgLatitude": 50.55537, + "avgLongitude": 14.984621 + }, + { + "id": "U6359", + "name": "Mnichovo Hradiště,U Bažantnice", + "avgLatitude": 50.50665, + "avgLongitude": 14.9690228 + }, + { + "id": "U3252", + "name": "Mnichovo Hradiště,u nadjezdu", + "avgLatitude": 50.5136337, + "avgLongitude": 14.9717951 + }, + { + "id": "U3400", + "name": "Mnichovo Hradiště,Veselá", + "avgLatitude": 50.4968529, + "avgLongitude": 14.9674768 + }, + { + "id": "U6361", + "name": "Mnichovo Hradiště,Veselá,Lhotická", + "avgLatitude": 50.5009079, + "avgLongitude": 14.9705048 + }, + { + "id": "U6352", + "name": "Mnichovo Hradiště,za zámkem", + "avgLatitude": 50.53071, + "avgLongitude": 14.9754677 + }, + { + "id": "U3254", + "name": "Mnichovo Hradiště,zdrav.stř.", + "avgLatitude": 50.5202179, + "avgLongitude": 14.9734049 + }, + { + "id": "U2554", + "name": "Mníšek pod Brdy", + "avgLatitude": 49.8538246, + "avgLongitude": 14.2699184 + }, + { + "id": "U1730", + "name": "Mníšek p.Brdy,Čisovická", + "avgLatitude": 49.8677559, + "avgLongitude": 14.2701454 + }, + { + "id": "U3301", + "name": "Mníšek p.Brdy,Hladový Vrch", + "avgLatitude": 49.8651428, + "avgLongitude": 14.2748852 + }, + { + "id": "U1712", + "name": "Mníšek p.Brdy,Kaple", + "avgLatitude": 49.8409767, + "avgLongitude": 14.2465763 + }, + { + "id": "U1716", + "name": "Mníšek p.Brdy,Na Kvíkalce", + "avgLatitude": 49.8699951, + "avgLongitude": 14.2501354 + }, + { + "id": "U7713", + "name": "Mníšek p.Brdy,Na Madlenkách", + "avgLatitude": 49.8560333, + "avgLongitude": 14.2510052 + }, + { + "id": "U1710", + "name": "Mníšek p.Brdy,Nad Špejcharem", + "avgLatitude": 49.8607368, + "avgLongitude": 14.2575264 + }, + { + "id": "U1709", + "name": "Mníšek p.Brdy,Náměstí", + "avgLatitude": 49.866478, + "avgLongitude": 14.2615356 + }, + { + "id": "U1736", + "name": "Mníšek p.Brdy,OPS Magdaléna", + "avgLatitude": 49.8459663, + "avgLongitude": 14.2674866 + }, + { + "id": "U1848", + "name": "Mníšek p.Brdy,Pražská", + "avgLatitude": 49.8681145, + "avgLongitude": 14.2667255 + }, + { + "id": "U1849", + "name": "Mníšek p.Brdy,Rozcestí Kytín", + "avgLatitude": 49.839756, + "avgLongitude": 14.2444592 + }, + { + "id": "U1715", + "name": "Mníšek p.Brdy,Sídliště", + "avgLatitude": 49.87068, + "avgLongitude": 14.2595959 + }, + { + "id": "U1718", + "name": "Mníšek p.Brdy,Stříbrná Lhota", + "avgLatitude": 49.8639, + "avgLongitude": 14.2370548 + }, + { + "id": "U1717", + "name": "Mníšek p.Brdy,Stříbrná Lhota U Křížku", + "avgLatitude": 49.86558, + "avgLongitude": 14.2424173 + }, + { + "id": "U2553", + "name": "Mníšek p.Brdy,U Hřbitova", + "avgLatitude": 49.861618, + "avgLongitude": 14.2672157 + }, + { + "id": "U1711", + "name": "Mníšek p.Brdy,U Šibence", + "avgLatitude": 49.8556671, + "avgLongitude": 14.255003 + }, + { + "id": "U1733", + "name": "Mníšek p.Brdy,ÚVR", + "avgLatitude": 49.87991, + "avgLongitude": 14.2753448 + }, + { + "id": "U1846", + "name": "Mníšek p.Brdy,Základní škola", + "avgLatitude": 49.8631821, + "avgLongitude": 14.2629385 + }, + { + "id": "U1708", + "name": "Mníšek p.Brdy,Závod", + "avgLatitude": 49.87238, + "avgLongitude": 14.2714 + }, + { + "id": "U1734", + "name": "Mníšek p.Brdy,Žel.zast.Rymaně", + "avgLatitude": 49.8585663, + "avgLongitude": 14.28035 + }, + { + "id": "U7298", + "name": "Močovice,na návsi", + "avgLatitude": 49.9057236, + "avgLongitude": 15.3479939 + }, + { + "id": "U7105", + "name": "Močovice,rozc.", + "avgLatitude": 49.89476, + "avgLongitude": 15.3585415 + }, + { + "id": "U7297", + "name": "Močovice,u váhy", + "avgLatitude": 49.907814, + "avgLongitude": 15.3499107 + }, + { + "id": "U1864", + "name": "Modletice", + "avgLatitude": 49.9706955, + "avgLongitude": 14.5907307 + }, + { + "id": "U4175", + "name": "Modletice,Doubravice", + "avgLatitude": 49.9717331, + "avgLongitude": 14.6068344 + }, + { + "id": "U1172", + "name": "Modletice,Kaufland", + "avgLatitude": 49.9747276, + "avgLongitude": 14.6010666 + }, + { + "id": "U1866", + "name": "Modletice,rozc.", + "avgLatitude": 49.970108, + "avgLongitude": 14.5977364 + }, + { + "id": "U1865", + "name": "Modletice,rozc.Doubravice", + "avgLatitude": 49.9714355, + "avgLongitude": 14.6145439 + }, + { + "id": "U1868", + "name": "Modletice,V hůrce", + "avgLatitude": 49.97553, + "avgLongitude": 14.5905094 + }, + { + "id": "U386", + "name": "Modrá škola", + "avgLatitude": 50.031456, + "avgLongitude": 14.5235453 + }, + { + "id": "U947", + "name": "Modřanská rokle", + "avgLatitude": 50.0064, + "avgLongitude": 14.4293785 + }, + { + "id": "U76", + "name": "Modřanská škola", + "avgLatitude": 50.0090675, + "avgLongitude": 14.4031467 + }, + { + "id": "U31745", + "name": "Modřišice", + "avgLatitude": 50.573925, + "avgLongitude": 15.1194258 + }, + { + "id": "U7735", + "name": "Modřovice", + "avgLatitude": 49.6179428, + "avgLongitude": 13.9577141 + }, + { + "id": "U7736", + "name": "Modřovice,rozc.", + "avgLatitude": 49.6197662, + "avgLongitude": 13.9565487 + }, + { + "id": "U6377", + "name": "Mohelnice n.Jiz.", + "avgLatitude": 50.5596733, + "avgLongitude": 14.9778938 + }, + { + "id": "U6376", + "name": "Mohelnice n.Jiz.,Podhora", + "avgLatitude": 50.5728226, + "avgLongitude": 14.9599133 + }, + { + "id": "U1278", + "name": "Mochov", + "avgLatitude": 50.14198, + "avgLongitude": 14.7946854 + }, + { + "id": "U381", + "name": "Mokrá", + "avgLatitude": 50.0335541, + "avgLongitude": 14.50448 + }, + { + "id": "U3010", + "name": "Mokrovraty", + "avgLatitude": 49.79601, + "avgLongitude": 14.2481556 + }, + { + "id": "U2855", + "name": "Mokrovraty", + "avgLatitude": 49.7965164, + "avgLongitude": 14.2364254 + }, + { + "id": "U4721", + "name": "Mokrovraty,Pouště", + "avgLatitude": 49.7874374, + "avgLongitude": 14.2392874 + }, + { + "id": "U4720", + "name": "Mokrovraty,Pouště,Rozc.", + "avgLatitude": 49.78735, + "avgLongitude": 14.22382 + }, + { + "id": "U4722", + "name": "Mokrovraty,U Statku", + "avgLatitude": 49.7933846, + "avgLongitude": 14.2585268 + }, + { + "id": "U1066", + "name": "Mokřanská", + "avgLatitude": 50.0634422, + "avgLongitude": 14.5267258 + }, + { + "id": "U1290", + "name": "Moravanská", + "avgLatitude": 50.1481, + "avgLongitude": 14.5784445 + }, + { + "id": "U1012", + "name": "Morseova", + "avgLatitude": 50.03511, + "avgLongitude": 14.5589018 + }, + { + "id": "U4256", + "name": "Mořina", + "avgLatitude": 49.9546776, + "avgLongitude": 14.2044964 + }, + { + "id": "U1664", + "name": "Mořina,obecní úřad", + "avgLatitude": 49.9527054, + "avgLongitude": 14.2127008 + }, + { + "id": "U1662", + "name": "Mořina,odb.lom", + "avgLatitude": 49.9606934, + "avgLongitude": 14.2046423 + }, + { + "id": "U1353", + "name": "Mořina,Trněný Újezd", + "avgLatitude": 49.97187, + "avgLongitude": 14.2198925 + }, + { + "id": "U9050", + "name": "Mořina,Trněný Újezd,rozc.", + "avgLatitude": 49.973465, + "avgLongitude": 14.2301245 + }, + { + "id": "U1638", + "name": "Mořina,Trněný Újezd,rozc.I", + "avgLatitude": 49.9699745, + "avgLongitude": 14.2177277 + }, + { + "id": "U1663", + "name": "Mořina,u Pěchotů", + "avgLatitude": 49.952507, + "avgLongitude": 14.2174749 + }, + { + "id": "U1665", + "name": "Mořinka", + "avgLatitude": 49.93857, + "avgLongitude": 14.2354851 + }, + { + "id": "U392", + "name": "Most Závodu míru", + "avgLatitude": 49.97277, + "avgLongitude": 14.39503 + }, + { + "id": "U394", + "name": "Motol", + "avgLatitude": 50.0682, + "avgLongitude": 14.3357105 + }, + { + "id": "U999", + "name": "Mototechna", + "avgLatitude": 50.05413, + "avgLongitude": 14.316309 + }, + { + "id": "U1592", + "name": "Mrač", + "avgLatitude": 49.8310928, + "avgLongitude": 14.6981268 + }, + { + "id": "U1391", + "name": "Mrač,Obec", + "avgLatitude": 49.8302155, + "avgLongitude": 14.6904058 + }, + { + "id": "U3051", + "name": "Mrákovská", + "avgLatitude": 50.028183, + "avgLongitude": 14.3016 + }, + { + "id": "U1241", + "name": "Mratín", + "avgLatitude": 50.2032776, + "avgLongitude": 14.5534763 + }, + { + "id": "U3232", + "name": "Mrázovka", + "avgLatitude": 50.0684128, + "avgLongitude": 14.392519 + }, + { + "id": "U3202", + "name": "Mrkosova", + "avgLatitude": 50.00721, + "avgLongitude": 14.38089 + }, + { + "id": "U9497", + "name": "Mrzkovice", + "avgLatitude": 49.6570549, + "avgLongitude": 15.373642 + }, + { + "id": "U1422", + "name": "Mrzky", + "avgLatitude": 50.04606, + "avgLongitude": 14.8099194 + }, + { + "id": "U31228", + "name": "Mříčná,křiž.", + "avgLatitude": 50.6006927, + "avgLongitude": 15.4689178 + }, + { + "id": "U2281", + "name": "Mstětice", + "avgLatitude": 50.13693, + "avgLongitude": 14.6921425 + }, + { + "id": "U9322", + "name": "Mšec", + "avgLatitude": 50.20631, + "avgLongitude": 13.9004612 + }, + { + "id": "U9323", + "name": "Mšec,Chaloupky", + "avgLatitude": 50.199955, + "avgLongitude": 13.9043751 + }, + { + "id": "U9325", + "name": "Mšec,U Červeného mlýna", + "avgLatitude": 50.1961, + "avgLongitude": 13.9099188 + }, + { + "id": "U9334", + "name": "Mšecké Žehrovice", + "avgLatitude": 50.1791, + "avgLongitude": 13.9241447 + }, + { + "id": "U9335", + "name": "Mšecké Žehrovice,horní", + "avgLatitude": 50.1761131, + "avgLongitude": 13.9202423 + }, + { + "id": "U9336", + "name": "Mšecké Žehrovice,Lipina", + "avgLatitude": 50.1728058, + "avgLongitude": 13.89954 + }, + { + "id": "U9337", + "name": "Mšecké Žehrovice,Lodenice", + "avgLatitude": 50.1866074, + "avgLongitude": 13.9378662 + }, + { + "id": "U9338", + "name": "Mšecké Žehrovice,Lodenice,rybník", + "avgLatitude": 50.18602, + "avgLongitude": 13.9465189 + }, + { + "id": "U9340", + "name": "Mšecké Žehrovice,Markův rybník", + "avgLatitude": 50.1824341, + "avgLongitude": 13.9226837 + }, + { + "id": "U9339", + "name": "Mšecké Žehrovice,nad vůbcí", + "avgLatitude": 50.1845055, + "avgLongitude": 13.9217129 + }, + { + "id": "U31431", + "name": "Mšené-lázně,lázně", + "avgLatitude": 50.36422, + "avgLongitude": 14.1316471 + }, + { + "id": "U9004", + "name": "Mšené-lázně,U Kapličky", + "avgLatitude": 50.36387, + "avgLongitude": 14.1231174 + }, + { + "id": "U9182", + "name": "Mšeno", + "avgLatitude": 50.43836, + "avgLongitude": 14.632555 + }, + { + "id": "U4356", + "name": "Mšeno", + "avgLatitude": 50.43573, + "avgLongitude": 14.6408653 + }, + { + "id": "U6122", + "name": "Mšeno,Hradsko", + "avgLatitude": 50.4310646, + "avgLongitude": 14.5879955 + }, + { + "id": "U9183", + "name": "Mšeno,Mělnická", + "avgLatitude": 50.43514, + "avgLongitude": 14.6280689 + }, + { + "id": "U6102", + "name": "Mšeno,Olešno", + "avgLatitude": 50.469574, + "avgLongitude": 14.6127291 + }, + { + "id": "U6101", + "name": "Mšeno,Podolec", + "avgLatitude": 50.4411545, + "avgLongitude": 14.6351089 + }, + { + "id": "U6098", + "name": "Mšeno,Ráj", + "avgLatitude": 50.4639435, + "avgLongitude": 14.6147785 + }, + { + "id": "U6100", + "name": "Mšeno,Romanov", + "avgLatitude": 50.4492455, + "avgLongitude": 14.6267548 + }, + { + "id": "U6099", + "name": "Mšeno,Romanov,Na Rovinách", + "avgLatitude": 50.4519844, + "avgLongitude": 14.6224241 + }, + { + "id": "U6121", + "name": "Mšeno,Sedlec", + "avgLatitude": 50.4396667, + "avgLongitude": 14.610405 + }, + { + "id": "U9351", + "name": "Mšeno,Skramouš", + "avgLatitude": 50.44661, + "avgLongitude": 14.6642818 + }, + { + "id": "U6137", + "name": "Mšeno,Skramouš,rozc.", + "avgLatitude": 50.4488831, + "avgLongitude": 14.6596184 + }, + { + "id": "U6097", + "name": "Mšeno,Vojtěchov", + "avgLatitude": 50.46251, + "avgLongitude": 14.601757 + }, + { + "id": "U6336", + "name": "Mukařov", + "avgLatitude": 50.5677948, + "avgLongitude": 14.9316978 + }, + { + "id": "U2008", + "name": "Mukařov", + "avgLatitude": 49.9894867, + "avgLongitude": 14.7404327 + }, + { + "id": "U6335", + "name": "Mukařov,Borovice", + "avgLatitude": 50.5638428, + "avgLongitude": 14.9314432 + }, + { + "id": "U2034", + "name": "Mukařov,odb.Tehovec", + "avgLatitude": 49.9889, + "avgLongitude": 14.7357368 + }, + { + "id": "U2082", + "name": "Mukařov,Srbín", + "avgLatitude": 49.98254, + "avgLongitude": 14.7396965 + }, + { + "id": "U1908", + "name": "Mukařov,škola", + "avgLatitude": 49.9922, + "avgLongitude": 14.7439489 + }, + { + "id": "U6337", + "name": "Mukařov,Vicmanov", + "avgLatitude": 50.58528, + "avgLongitude": 14.9213505 + }, + { + "id": "U2072", + "name": "Mukařov,Žernovka", + "avgLatitude": 49.99968, + "avgLongitude": 14.7559586 + }, + { + "id": "U398", + "name": "Murmanská", + "avgLatitude": 50.0734253, + "avgLongitude": 14.4795 + }, + { + "id": "U1072", + "name": "Můstek", + "avgLatitude": 50.08347, + "avgLongitude": 14.4239731 + }, + { + "id": "U9524", + "name": "Mutějovice", + "avgLatitude": 50.21714, + "avgLongitude": 13.7043953 + }, + { + "id": "U3372", + "name": "Mutějovice", + "avgLatitude": 50.19396, + "avgLongitude": 13.708065 + }, + { + "id": "U9517", + "name": "Mutějovice zast.", + "avgLatitude": 50.18749, + "avgLongitude": 13.7024918 + }, + { + "id": "U4003", + "name": "Mutějovice,Lhota p.Džbánem", + "avgLatitude": 50.21807, + "avgLongitude": 13.73177 + }, + { + "id": "U4002", + "name": "Mutějovice,Lhota p.Džbánem,hřbitov", + "avgLatitude": 50.2182465, + "avgLongitude": 13.7213974 + }, + { + "id": "U3371", + "name": "Mutějovice,Na Příči", + "avgLatitude": 50.19649, + "avgLongitude": 13.709487 + }, + { + "id": "U4001", + "name": "Mutějovice,Perun", + "avgLatitude": 50.2102051, + "avgLongitude": 13.71463 + }, + { + "id": "U3373", + "name": "Mutějovice,Škola", + "avgLatitude": 50.19376, + "avgLongitude": 13.70595 + }, + { + "id": "U400", + "name": "Muzeum", + "avgLatitude": 50.07936, + "avgLongitude": 14.4315987 + }, + { + "id": "U9383", + "name": "Myslíč", + "avgLatitude": 49.7647743, + "avgLongitude": 14.7232685 + }, + { + "id": "U401", + "name": "Myslíkova", + "avgLatitude": 50.0780678, + "avgLongitude": 14.418499 + }, + { + "id": "U4294", + "name": "Myslín", + "avgLatitude": 49.5295639, + "avgLongitude": 14.0239267 + }, + { + "id": "U226", + "name": "Myšlínská", + "avgLatitude": 50.0621643, + "avgLongitude": 14.5343361 + }, + { + "id": "U31747", + "name": "Myštice", + "avgLatitude": 49.4521866, + "avgLongitude": 13.96897 + }, + { + "id": "U31748", + "name": "Myštice,Nevželice", + "avgLatitude": 49.4631958, + "avgLongitude": 13.9645567 + }, + { + "id": "U31749", + "name": "Myštice,Vahlovice", + "avgLatitude": 49.44657, + "avgLongitude": 13.9432983 + }, + { + "id": "U24", + "name": "Na Beránku", + "avgLatitude": 49.99771, + "avgLongitude": 14.4290924 + }, + { + "id": "U402", + "name": "Na Blanici", + "avgLatitude": 50.03689, + "avgLongitude": 14.5828228 + }, + { + "id": "U933", + "name": "Na Bojišti", + "avgLatitude": 50.0728569, + "avgLongitude": 14.4274225 + }, + { + "id": "U1976", + "name": "Na Boleslavce", + "avgLatitude": 50.1699829, + "avgLongitude": 14.4838772 + }, + { + "id": "U995", + "name": "Na Cikorce", + "avgLatitude": 50.01214, + "avgLongitude": 14.4126663 + }, + { + "id": "U3242", + "name": "Na Fabiánce", + "avgLatitude": 50.16111, + "avgLongitude": 14.4835281 + }, + { + "id": "U1404", + "name": "Na Formance", + "avgLatitude": 50.0166626, + "avgLongitude": 14.530283 + }, + { + "id": "U403", + "name": "Na Groši", + "avgLatitude": 50.0529327, + "avgLongitude": 14.5239124 + }, + { + "id": "U939", + "name": "Na Havránce", + "avgLatitude": 50.0064926, + "avgLongitude": 14.41005 + }, + { + "id": "U404", + "name": "Na Homoli", + "avgLatitude": 50.0762825, + "avgLongitude": 14.530405 + }, + { + "id": "U599", + "name": "Na Hroudě", + "avgLatitude": 50.07025, + "avgLongitude": 14.4889851 + }, + { + "id": "U406", + "name": "Na Hřebenech", + "avgLatitude": 50.0516434, + "avgLongitude": 14.4282551 + }, + { + "id": "U1065", + "name": "Na Hůrce", + "avgLatitude": 50.0778961, + "avgLongitude": 14.2923746 + }, + { + "id": "U3203", + "name": "Na Hvězdárně", + "avgLatitude": 50.0049973, + "avgLongitude": 14.3752136 + }, + { + "id": "U989", + "name": "Na Jelenách", + "avgLatitude": 50.02237, + "avgLongitude": 14.4999876 + }, + { + "id": "U409", + "name": "Na Košíku", + "avgLatitude": 50.0471077, + "avgLongitude": 14.5152636 + }, + { + "id": "U155", + "name": "Na Kovárně", + "avgLatitude": 50.1179276, + "avgLongitude": 14.6283855 + }, + { + "id": "U1001", + "name": "Na Křečku", + "avgLatitude": 50.04418, + "avgLongitude": 14.5671091 + }, + { + "id": "U4291", + "name": "Na Lhotkách", + "avgLatitude": 49.95334, + "avgLongitude": 14.3682966 + }, + { + "id": "U4261", + "name": "Na Lukách", + "avgLatitude": 50.097538, + "avgLongitude": 14.51162 + }, + { + "id": "U412", + "name": "Na Lysinách", + "avgLatitude": 50.0223122, + "avgLongitude": 14.4126625 + }, + { + "id": "U413", + "name": "Na Míčánkách", + "avgLatitude": 50.071125, + "avgLongitude": 14.4641495 + }, + { + "id": "U1047", + "name": "Na Mlýnici", + "avgLatitude": 50.1141739, + "avgLongitude": 14.3207 + }, + { + "id": "U414", + "name": "Na Mlýnku", + "avgLatitude": 50.1119347, + "avgLongitude": 14.3734417 + }, + { + "id": "U954", + "name": "Na Okraji", + "avgLatitude": 50.09023, + "avgLongitude": 14.344388 + }, + { + "id": "U673", + "name": "Na Padesátém", + "avgLatitude": 50.064518, + "avgLongitude": 14.5051842 + }, + { + "id": "U416", + "name": "Na Padesátníku", + "avgLatitude": 50.1021576, + "avgLongitude": 14.2893791 + }, + { + "id": "U418", + "name": "Na Palouku", + "avgLatitude": 50.08043, + "avgLongitude": 14.4885931 + }, + { + "id": "U419", + "name": "Na Parcelách", + "avgLatitude": 50.110508, + "avgLongitude": 14.3352833 + }, + { + "id": "U420", + "name": "Na Pastvinách", + "avgLatitude": 50.10086, + "avgLongitude": 14.3445568 + }, + { + "id": "U924", + "name": "Na Pazderce", + "avgLatitude": 50.1251221, + "avgLongitude": 14.4178934 + }, + { + "id": "U182", + "name": "Na Petynce", + "avgLatitude": 50.08819, + "avgLongitude": 14.38135 + }, + { + "id": "U40", + "name": "Na Pískách", + "avgLatitude": 50.0988579, + "avgLongitude": 14.3696518 + }, + { + "id": "U421", + "name": "Na Plácku", + "avgLatitude": 49.9662933, + "avgLongitude": 14.3967333 + }, + { + "id": "U796", + "name": "Na Planině", + "avgLatitude": 50.03955, + "avgLongitude": 14.4302387 + }, + { + "id": "U411", + "name": "Na Pramenech", + "avgLatitude": 50.14867, + "avgLongitude": 14.49717 + }, + { + "id": "U307", + "name": "Na Proutcích", + "avgLatitude": 50.01319, + "avgLongitude": 14.502717 + }, + { + "id": "U197", + "name": "Na Radosti", + "avgLatitude": 50.0605164, + "avgLongitude": 14.2989674 + }, + { + "id": "U425", + "name": "Na Santince", + "avgLatitude": 50.106945, + "avgLongitude": 14.3886671 + }, + { + "id": "U426", + "name": "Na Sklonku", + "avgLatitude": 50.06687, + "avgLongitude": 14.3642273 + }, + { + "id": "U985", + "name": "Na Slovance", + "avgLatitude": 50.1241074, + "avgLongitude": 14.4725323 + }, + { + "id": "U427", + "name": "Na Smetance", + "avgLatitude": 50.08, + "avgLongitude": 14.4378834 + }, + { + "id": "U428", + "name": "Na Srpečku", + "avgLatitude": 50.0379143, + "avgLongitude": 14.3999643 + }, + { + "id": "U127", + "name": "Na Staré cestě", + "avgLatitude": 50.0385551, + "avgLongitude": 14.4415932 + }, + { + "id": "U429", + "name": "Na Strži", + "avgLatitude": 50.0434952, + "avgLongitude": 14.4386835 + }, + { + "id": "U6004", + "name": "Na Svěcence", + "avgLatitude": 50.100975, + "avgLongitude": 14.6117849 + }, + { + "id": "U882", + "name": "Na Šabatce", + "avgLatitude": 49.98919, + "avgLongitude": 14.4089956 + }, + { + "id": "U1100", + "name": "Na Šafránce", + "avgLatitude": 50.0755424, + "avgLongitude": 14.3471 + }, + { + "id": "U430", + "name": "Na Štamberku", + "avgLatitude": 50.14698, + "avgLongitude": 14.4807816 + }, + { + "id": "U432", + "name": "Na Vaňhově", + "avgLatitude": 50.08014, + "avgLongitude": 14.6266594 + }, + { + "id": "U973", + "name": "Na Vartě", + "avgLatitude": 50.0454941, + "avgLongitude": 14.557497 + }, + { + "id": "U433", + "name": "Na Veselí", + "avgLatitude": 50.05553, + "avgLongitude": 14.4401274 + }, + { + "id": "U434", + "name": "Na Viničkách", + "avgLatitude": 49.9800453, + "avgLongitude": 14.3521824 + }, + { + "id": "U435", + "name": "Na Vrchách", + "avgLatitude": 50.0385933, + "avgLongitude": 14.5879831 + }, + { + "id": "U436", + "name": "Na Vrstevnici", + "avgLatitude": 50.0365448, + "avgLongitude": 14.4359093 + }, + { + "id": "U2791", + "name": "Na Vypichu", + "avgLatitude": 50.0840378, + "avgLongitude": 14.34005 + }, + { + "id": "U439", + "name": "Nábřeží Kapitána Jaroše", + "avgLatitude": 50.09632, + "avgLongitude": 14.4312992 + }, + { + "id": "U7738", + "name": "Načeradec", + "avgLatitude": 49.61023, + "avgLongitude": 14.906044 + }, + { + "id": "U7740", + "name": "Načeradec,Daměnice", + "avgLatitude": 49.5832558, + "avgLongitude": 14.8876019 + }, + { + "id": "U7741", + "name": "Načeradec,Dolní Lhota", + "avgLatitude": 49.58055, + "avgLongitude": 14.9626789 + }, + { + "id": "U7742", + "name": "Načeradec,Horní Lhota", + "avgLatitude": 49.5953522, + "avgLongitude": 14.9515858 + }, + { + "id": "U7743", + "name": "Načeradec,Jizbice", + "avgLatitude": 49.58618, + "avgLongitude": 14.9222307 + }, + { + "id": "U7744", + "name": "Načeradec,Novotinky", + "avgLatitude": 49.5838165, + "avgLongitude": 14.9695034 + }, + { + "id": "U7746", + "name": "Načeradec,Olešná", + "avgLatitude": 49.60565, + "avgLongitude": 14.9079657 + }, + { + "id": "U7747", + "name": "Načeradec,Olešná,háj.", + "avgLatitude": 49.595047, + "avgLongitude": 14.9136162 + }, + { + "id": "U7748", + "name": "Načeradec,Pravětice", + "avgLatitude": 49.59552, + "avgLongitude": 14.8768749 + }, + { + "id": "U7739", + "name": "Načeradec,rozc.Pravětice", + "avgLatitude": 49.60976, + "avgLongitude": 14.8965635 + }, + { + "id": "U7754", + "name": "Načeradec,rozc.Zdiměřice", + "avgLatitude": 49.5598221, + "avgLongitude": 14.9334068 + }, + { + "id": "U7749", + "name": "Načeradec,Řísnice", + "avgLatitude": 49.566967, + "avgLongitude": 14.9065475 + }, + { + "id": "U7750", + "name": "Načeradec,Slavětín", + "avgLatitude": 49.5716476, + "avgLongitude": 14.9236994 + }, + { + "id": "U7753", + "name": "Načeradec,Slavětín,Huť", + "avgLatitude": 49.55629, + "avgLongitude": 14.9292831 + }, + { + "id": "U7751", + "name": "Načeradec,Vračkovice", + "avgLatitude": 49.6133347, + "avgLongitude": 14.9283342 + }, + { + "id": "U7752", + "name": "Načeradec,Zdiměřice", + "avgLatitude": 49.55531, + "avgLongitude": 14.9130049 + }, + { + "id": "U926", + "name": "Nad Běchovicemi", + "avgLatitude": 50.09237, + "avgLongitude": 14.623601 + }, + { + "id": "U3238", + "name": "Nad Dívčími hrady", + "avgLatitude": 50.0546265, + "avgLongitude": 14.3979607 + }, + { + "id": "U1004", + "name": "Nad Dvorem", + "avgLatitude": 50.0097275, + "avgLongitude": 14.6330843 + }, + { + "id": "U283", + "name": "Nad Džbánem", + "avgLatitude": 50.0940247, + "avgLongitude": 14.33696 + }, + { + "id": "U440", + "name": "Nad Habrovkou", + "avgLatitude": 50.1090851, + "avgLongitude": 14.3457336 + }, + { + "id": "U441", + "name": "Nad Havlem", + "avgLatitude": 50.0340919, + "avgLongitude": 14.4488115 + }, + { + "id": "U442", + "name": "Nad Jetelkou", + "avgLatitude": 50.1152763, + "avgLongitude": 14.4961557 + }, + { + "id": "U443", + "name": "Nad Klamovkou", + "avgLatitude": 50.07268, + "avgLongitude": 14.37727 + }, + { + "id": "U3227", + "name": "Nad Konvářkou", + "avgLatitude": 50.0538063, + "avgLongitude": 14.399128 + }, + { + "id": "U823", + "name": "Nad Košíkem", + "avgLatitude": 50.0450058, + "avgLongitude": 14.5192013 + }, + { + "id": "U3229", + "name": "Nad Laurovou", + "avgLatitude": 50.0623856, + "avgLongitude": 14.3958778 + }, + { + "id": "U1077", + "name": "Nad Markétou", + "avgLatitude": 50.0835152, + "avgLongitude": 14.3469439 + }, + { + "id": "U417", + "name": "Nad Pahorkem", + "avgLatitude": 50.0428619, + "avgLongitude": 14.4877834 + }, + { + "id": "U445", + "name": "Nad Parkánem", + "avgLatitude": 50.0125542, + "avgLongitude": 14.6314373 + }, + { + "id": "U4240", + "name": "Nad Rybníkem", + "avgLatitude": 50.0873146, + "avgLongitude": 14.58613 + }, + { + "id": "U937", + "name": "Nad Rybníky", + "avgLatitude": 50.03705, + "avgLongitude": 14.4475174 + }, + { + "id": "U447", + "name": "Nad Trojou", + "avgLatitude": 50.1203423, + "avgLongitude": 14.4396086 + }, + { + "id": "U211", + "name": "Nad Závistí", + "avgLatitude": 49.98052, + "avgLongitude": 14.4042006 + }, + { + "id": "U1152", + "name": "Nad Zlíchovem", + "avgLatitude": 50.0452347, + "avgLongitude": 14.4044666 + }, + { + "id": "U31750", + "name": "Nadějkov", + "avgLatitude": 49.5028458, + "avgLongitude": 14.4788322 + }, + { + "id": "U31751", + "name": "Nadějkov,Bezděkov", + "avgLatitude": 49.5291824, + "avgLongitude": 14.4797611 + }, + { + "id": "U31752", + "name": "Nadějkov,Chlístov", + "avgLatitude": 49.53887, + "avgLongitude": 14.4844742 + }, + { + "id": "U31754", + "name": "Nadějkov,Kaliště", + "avgLatitude": 49.522316, + "avgLongitude": 14.480628 + }, + { + "id": "U32226", + "name": "Nadějkov,Kaliště,rozc.1.0", + "avgLatitude": 49.51644, + "avgLongitude": 14.4857655 + }, + { + "id": "U31755", + "name": "Nadějkov,Petříkovice", + "avgLatitude": 49.4958038, + "avgLongitude": 14.4856873 + }, + { + "id": "U755", + "name": "Nademlejnská", + "avgLatitude": 50.1038437, + "avgLongitude": 14.5251312 + }, + { + "id": "U448", + "name": "Nádraží Běchovice", + "avgLatitude": 50.0811462, + "avgLongitude": 14.5988884 + }, + { + "id": "U2276", + "name": "Nádraží Běchovice střed", + "avgLatitude": 50.08446, + "avgLongitude": 14.6166515 + }, + { + "id": "U449", + "name": "Nádraží Braník", + "avgLatitude": 50.02884, + "avgLongitude": 14.4057646 + }, + { + "id": "U58", + "name": "Nádraží Cibulka", + "avgLatitude": 50.0655327, + "avgLongitude": 14.363369 + }, + { + "id": "U3212", + "name": "Nádraží Čakovice", + "avgLatitude": 50.1503143, + "avgLongitude": 14.5203381 + }, + { + "id": "U801", + "name": "Nádraží Dolní Počernice", + "avgLatitude": 50.0871353, + "avgLongitude": 14.57186 + }, + { + "id": "U146", + "name": "Nádraží Hlubočepy", + "avgLatitude": 50.041275, + "avgLongitude": 14.394186 + }, + { + "id": "U115", + "name": "Nádraží Holešovice", + "avgLatitude": 50.1090736, + "avgLongitude": 14.4393187 + }, + { + "id": "U1069", + "name": "Nádraží Horní Měcholupy", + "avgLatitude": 50.04866, + "avgLongitude": 14.5648727 + }, + { + "id": "U452", + "name": "Nádraží Horní Počernice", + "avgLatitude": 50.11536, + "avgLongitude": 14.6129684 + }, + { + "id": "U453", + "name": "Nádraží Hostivař", + "avgLatitude": 50.0533562, + "avgLongitude": 14.5367775 + }, + { + "id": "U454", + "name": "Nádraží Klánovice", + "avgLatitude": 50.0866547, + "avgLongitude": 14.6648312 + }, + { + "id": "U1048", + "name": "Nádraží Krč", + "avgLatitude": 50.0350876, + "avgLongitude": 14.4437389 + }, + { + "id": "U1051", + "name": "Nádraží Kyje", + "avgLatitude": 50.0974236, + "avgLongitude": 14.542738 + }, + { + "id": "U134", + "name": "Nádraží Libeň", + "avgLatitude": 50.1017075, + "avgLongitude": 14.5026121 + }, + { + "id": "U388", + "name": "Nádraží Modřany", + "avgLatitude": 50.0038071, + "avgLongitude": 14.4033756 + }, + { + "id": "U126", + "name": "Nádraží Podbaba", + "avgLatitude": 50.1118164, + "avgLongitude": 14.3941221 + }, + { + "id": "U456", + "name": "Nádraží Radotín", + "avgLatitude": 49.98459, + "avgLongitude": 14.36313 + }, + { + "id": "U1166", + "name": "Nádraží Ruzyně", + "avgLatitude": 50.0855446, + "avgLongitude": 14.3079891 + }, + { + "id": "U1085", + "name": "Nádraží Řeporyje", + "avgLatitude": 50.0317078, + "avgLongitude": 14.3092594 + }, + { + "id": "U457", + "name": "Nádraží Satalice", + "avgLatitude": 50.1235657, + "avgLongitude": 14.5711575 + }, + { + "id": "U461", + "name": "Nádraží Uhříněves", + "avgLatitude": 50.03363, + "avgLongitude": 14.592453 + }, + { + "id": "U462", + "name": "Nádraží Veleslavín", + "avgLatitude": 50.09581, + "avgLongitude": 14.3472328 + }, + { + "id": "U976", + "name": "Nádraží Velká Chuchle", + "avgLatitude": 50.011425, + "avgLongitude": 14.389142 + }, + { + "id": "U463", + "name": "Nádraží Vršovice", + "avgLatitude": 50.0656052, + "avgLongitude": 14.4478378 + }, + { + "id": "U474", + "name": "Nádraží Vysočany", + "avgLatitude": 50.11023, + "avgLongitude": 14.4990463 + }, + { + "id": "U2781", + "name": "Nádraží Zahradní Město", + "avgLatitude": 50.0620041, + "avgLongitude": 14.504097 + }, + { + "id": "U465", + "name": "Nádraží Zbraslav", + "avgLatitude": 49.97239, + "avgLongitude": 14.3996277 + }, + { + "id": "U1153", + "name": "Nádraží Žvahov - Prosluněná", + "avgLatitude": 50.0449028, + "avgLongitude": 14.402256 + }, + { + "id": "U1159", + "name": "Nádraží Žvahov - V Násypu", + "avgLatitude": 50.04467, + "avgLongitude": 14.4026289 + }, + { + "id": "U469", + "name": "Nákladové nádraží Žižkov", + "avgLatitude": 50.08494, + "avgLongitude": 14.4700365 + }, + { + "id": "U4752", + "name": "Nalžovice", + "avgLatitude": 49.700016, + "avgLongitude": 14.371994 + }, + { + "id": "U4753", + "name": "Nalžovice,Chlum", + "avgLatitude": 49.6976, + "avgLongitude": 14.3785324 + }, + { + "id": "U4755", + "name": "Nalžovice,Chlum,Lihovar", + "avgLatitude": 49.7012062, + "avgLongitude": 14.3798742 + }, + { + "id": "U4754", + "name": "Nalžovice,Chlum,Škola", + "avgLatitude": 49.6982269, + "avgLongitude": 14.3799381 + }, + { + "id": "U4756", + "name": "Nalžovice,Nalžovické Podhájí", + "avgLatitude": 49.7111931, + "avgLongitude": 14.3693819 + }, + { + "id": "U4727", + "name": "Nalžovice,Nová Ves", + "avgLatitude": 49.7057228, + "avgLongitude": 14.3901653 + }, + { + "id": "U482", + "name": "Náměstí Bratří Synků", + "avgLatitude": 50.0645447, + "avgLongitude": 14.44103 + }, + { + "id": "U934", + "name": "Náměstí Jiřího Berana", + "avgLatitude": 50.1503448, + "avgLongitude": 14.526556 + }, + { + "id": "U476", + "name": "Náměstí Míru", + "avgLatitude": 50.07506, + "avgLongitude": 14.4380789 + }, + { + "id": "U2701", + "name": "Náměstí Olgy Scheinpflugové", + "avgLatitude": 50.03022, + "avgLongitude": 14.3617611 + }, + { + "id": "U3042", + "name": "Náměstí Před Bateriemi", + "avgLatitude": 50.09101, + "avgLongitude": 14.3743057 + }, + { + "id": "U122", + "name": "Náměstí U Lva", + "avgLatitude": 50.0353, + "avgLongitude": 14.3156767 + }, + { + "id": "U821", + "name": "Náměstí Winstona Churchilla", + "avgLatitude": 50.0841026, + "avgLongitude": 14.4408588 + }, + { + "id": "U483", + "name": "Národní divadlo", + "avgLatitude": 50.0807648, + "avgLongitude": 14.4139948 + }, + { + "id": "U3218", + "name": "Národní technická knihovna", + "avgLatitude": 50.1032143, + "avgLongitude": 14.3906116 + }, + { + "id": "U539", + "name": "Národní třída", + "avgLatitude": 50.0805855, + "avgLongitude": 14.41992 + }, + { + "id": "U709", + "name": "Nárožní", + "avgLatitude": 50.05342, + "avgLongitude": 14.3300209 + }, + { + "id": "U6975", + "name": "Narysov", + "avgLatitude": 49.64, + "avgLongitude": 13.9713974 + }, + { + "id": "U6977", + "name": "Narysov,Na Výfuku", + "avgLatitude": 49.6484451, + "avgLongitude": 13.9704351 + }, + { + "id": "U6976", + "name": "Narysov,rozc.Vysoká", + "avgLatitude": 49.64403, + "avgLongitude": 13.9700871 + }, + { + "id": "U11", + "name": "Násirovo náměstí", + "avgLatitude": 50.00138, + "avgLongitude": 14.4216156 + }, + { + "id": "U372", + "name": "Naskové", + "avgLatitude": 50.0633774, + "avgLongitude": 14.3605328 + }, + { + "id": "U3209", + "name": "Návětrná", + "avgLatitude": 50.02294, + "avgLongitude": 14.3585978 + }, + { + "id": "U80", + "name": "Navigátorů", + "avgLatitude": 50.0934334, + "avgLongitude": 14.304141 + }, + { + "id": "U6671", + "name": "Nebovidy,hřbitov", + "avgLatitude": 49.98281, + "avgLongitude": 15.2141666 + }, + { + "id": "U6670", + "name": "Nebovidy,ObÚ", + "avgLatitude": 49.9913979, + "avgLongitude": 15.219511 + }, + { + "id": "U485", + "name": "Nebušice", + "avgLatitude": 50.1121, + "avgLongitude": 14.3213816 + }, + { + "id": "U4353", + "name": "Nebužely", + "avgLatitude": 50.3861923, + "avgLongitude": 14.5896883 + }, + { + "id": "U6116", + "name": "Nebužely", + "avgLatitude": 50.3900528, + "avgLongitude": 14.59143 + }, + { + "id": "U6143", + "name": "Nebužely,Kroužek", + "avgLatitude": 50.4042625, + "avgLongitude": 14.5676594 + }, + { + "id": "U6117", + "name": "Nebužely,u hřbitova", + "avgLatitude": 50.3914261, + "avgLongitude": 14.5993509 + }, + { + "id": "U7755", + "name": "Nečín", + "avgLatitude": 49.6984329, + "avgLongitude": 14.2336121 + }, + { + "id": "U7757", + "name": "Nečín,Bělohrad", + "avgLatitude": 49.7076035, + "avgLongitude": 14.1997042 + }, + { + "id": "U7758", + "name": "Nečín,Jablonce", + "avgLatitude": 49.684597, + "avgLongitude": 14.2233658 + }, + { + "id": "U7759", + "name": "Nečín,Lipiny", + "avgLatitude": 49.6994934, + "avgLongitude": 14.2490025 + }, + { + "id": "U7756", + "name": "Nečín,Lipiny,rozc.", + "avgLatitude": 49.7020149, + "avgLongitude": 14.2411346 + }, + { + "id": "U7760", + "name": "Nečín,Skalice", + "avgLatitude": 49.717514, + "avgLongitude": 14.189908 + }, + { + "id": "U7761", + "name": "Nečín,Žebrák", + "avgLatitude": 49.70372, + "avgLongitude": 14.2496147 + }, + { + "id": "U32197", + "name": "Nečtiny", + "avgLatitude": 49.9755249, + "avgLongitude": 13.1645107 + }, + { + "id": "U32196", + "name": "Nečtiny,Doubravice,rozc.", + "avgLatitude": 49.9810867, + "avgLongitude": 13.1680336 + }, + { + "id": "U32195", + "name": "Nečtiny,Hamr", + "avgLatitude": 49.98775, + "avgLongitude": 13.183423 + }, + { + "id": "U32198", + "name": "Nečtiny,Hrad Nečtiny", + "avgLatitude": 49.9571075, + "avgLongitude": 13.1562672 + }, + { + "id": "U32194", + "name": "Nečtiny,Lešovice,rozc.0.3", + "avgLatitude": 49.9911575, + "avgLongitude": 13.19087 + }, + { + "id": "U2186", + "name": "Nedomice,Křížek", + "avgLatitude": 50.2606773, + "avgLongitude": 14.613451 + }, + { + "id": "U4187", + "name": "Nedomice,Škola", + "avgLatitude": 50.257164, + "avgLongitude": 14.6157722 + }, + { + "id": "U7762", + "name": "Nedrahovice", + "avgLatitude": 49.6091652, + "avgLongitude": 14.4559307 + }, + { + "id": "U7764", + "name": "Nedrahovice,Bor", + "avgLatitude": 49.6246338, + "avgLongitude": 14.4387531 + }, + { + "id": "U7765", + "name": "Nedrahovice,Kamenice", + "avgLatitude": 49.6054573, + "avgLongitude": 14.4390221 + }, + { + "id": "U7768", + "name": "Nedrahovice,Lipský mlýn", + "avgLatitude": 49.6233673, + "avgLongitude": 14.4500933 + }, + { + "id": "U7766", + "name": "Nedrahovice,Radeč", + "avgLatitude": 49.6285248, + "avgLongitude": 14.4704065 + }, + { + "id": "U7763", + "name": "Nedrahovice,rozc.", + "avgLatitude": 49.61613, + "avgLongitude": 14.4591675 + }, + { + "id": "U7767", + "name": "Nedrahovice,Rudolec", + "avgLatitude": 49.63002, + "avgLongitude": 14.4399624 + }, + { + "id": "U7769", + "name": "Nedrahovice,Úklid", + "avgLatitude": 49.61367, + "avgLongitude": 14.4403267 + }, + { + "id": "U487", + "name": "Nedvězí", + "avgLatitude": 50.01675, + "avgLongitude": 14.6555176 + }, + { + "id": "U2353", + "name": "Nehvizdy", + "avgLatitude": 50.13076, + "avgLongitude": 14.7306252 + }, + { + "id": "U9988", + "name": "Nehvizdy,Mochovská", + "avgLatitude": 50.13331, + "avgLongitude": 14.74395 + }, + { + "id": "U2921", + "name": "Nehvizdy,Na Bulánce", + "avgLatitude": 50.1292953, + "avgLongitude": 14.7187347 + }, + { + "id": "U2352", + "name": "Nehvizdy,Nehvízdky", + "avgLatitude": 50.14028, + "avgLongitude": 14.7443314 + }, + { + "id": "U4929", + "name": "Nehvizdy,Škola", + "avgLatitude": 50.1318665, + "avgLongitude": 14.72549 + }, + { + "id": "U1559", + "name": "Nehvizdy,U Studánky", + "avgLatitude": 50.1324, + "avgLongitude": 14.7377462 + }, + { + "id": "U7770", + "name": "Nechvalice", + "avgLatitude": 49.575325, + "avgLongitude": 14.3972893 + }, + { + "id": "U7771", + "name": "Nechvalice,Bratřejov", + "avgLatitude": 49.5754929, + "avgLongitude": 14.3756256 + }, + { + "id": "U7772", + "name": "Nechvalice,Bratříkovice", + "avgLatitude": 49.56002, + "avgLongitude": 14.3930359 + }, + { + "id": "U7773", + "name": "Nechvalice,Bratříkovice,rozc.", + "avgLatitude": 49.57221, + "avgLongitude": 14.39191 + }, + { + "id": "U7774", + "name": "Nechvalice,Huštilář", + "avgLatitude": 49.5709152, + "avgLongitude": 14.4452591 + }, + { + "id": "U7775", + "name": "Nechvalice,Křemenice,rozc.", + "avgLatitude": 49.5822525, + "avgLongitude": 14.4038715 + }, + { + "id": "U7776", + "name": "Nechvalice,Libčice", + "avgLatitude": 49.5732346, + "avgLongitude": 14.4019756 + }, + { + "id": "U7777", + "name": "Nechvalice,Mokřany", + "avgLatitude": 49.5689468, + "avgLongitude": 14.4079361 + }, + { + "id": "U7778", + "name": "Nechvalice,Ředice", + "avgLatitude": 49.5706024, + "avgLongitude": 14.4334831 + }, + { + "id": "U4243", + "name": "Nelahozeves", + "avgLatitude": 50.2612839, + "avgLongitude": 14.30011 + }, + { + "id": "U2828", + "name": "Nelahozeves", + "avgLatitude": 50.2834969, + "avgLongitude": 14.3088226 + }, + { + "id": "U2827", + "name": "Nelahozeves zámek", + "avgLatitude": 50.2630119, + "avgLongitude": 14.3025465 + }, + { + "id": "U4242", + "name": "Nelahozeves,Lešany", + "avgLatitude": 50.25618, + "avgLongitude": 14.2852993 + }, + { + "id": "U5943", + "name": "Nelahozeves,Lešany,dolní resort", + "avgLatitude": 50.2575378, + "avgLongitude": 14.2918 + }, + { + "id": "U4241", + "name": "Nelahozeves,Lešany,Rozc.", + "avgLatitude": 50.25684, + "avgLongitude": 14.2967749 + }, + { + "id": "U4245", + "name": "Nelahozeves,Tukové záv.", + "avgLatitude": 50.2758942, + "avgLongitude": 14.30953 + }, + { + "id": "U4246", + "name": "Nelahozeves,U Kaštanu", + "avgLatitude": 50.281044, + "avgLongitude": 14.3148251 + }, + { + "id": "U4244", + "name": "Nelahozeves,U Nadjezdu", + "avgLatitude": 50.2669334, + "avgLongitude": 14.3029041 + }, + { + "id": "U6635", + "name": "Němčice", + "avgLatitude": 50.0842133, + "avgLongitude": 15.2940817 + }, + { + "id": "U3069", + "name": "Němčice", + "avgLatitude": 50.3466034, + "avgLongitude": 14.9248133 + }, + { + "id": "U3070", + "name": "Němčice,hl.sil.", + "avgLatitude": 50.3462753, + "avgLongitude": 14.9164886 + }, + { + "id": "U2774", + "name": "Nemocnice Bohnice", + "avgLatitude": 50.1376648, + "avgLongitude": 14.418087 + }, + { + "id": "U2776", + "name": "Nemocnice Bohnice - Centrální terapie", + "avgLatitude": 50.1373177, + "avgLongitude": 14.4236231 + }, + { + "id": "U2773", + "name": "Nemocnice Bohnice - Divadlo Za plotem", + "avgLatitude": 50.1342163, + "avgLongitude": 14.4190769 + }, + { + "id": "U2771", + "name": "Nemocnice Bohnice - Hlavní vrátnice", + "avgLatitude": 50.1358681, + "avgLongitude": 14.4287472 + }, + { + "id": "U2775", + "name": "Nemocnice Bohnice - Interna", + "avgLatitude": 50.1360931, + "avgLongitude": 14.421196 + }, + { + "id": "U2772", + "name": "Nemocnice Bohnice - Ředitelství", + "avgLatitude": 50.13401, + "avgLongitude": 14.4235611 + }, + { + "id": "U980", + "name": "Nemocnice Bubeneč", + "avgLatitude": 50.10775, + "avgLongitude": 14.4018745 + }, + { + "id": "U3005", + "name": "Nemocnice Bulovka", + "avgLatitude": 50.11568, + "avgLongitude": 14.463954 + }, + { + "id": "U3006", + "name": "Nemocnice Bulovka - gynekologie", + "avgLatitude": 50.1161, + "avgLongitude": 14.4601192 + }, + { + "id": "U3007", + "name": "Nemocnice Bulovka - onkologie", + "avgLatitude": 50.1169167, + "avgLongitude": 14.4627695 + }, + { + "id": "U488", + "name": "Nemocnice Krč", + "avgLatitude": 50.0305977, + "avgLongitude": 14.4551783 + }, + { + "id": "U306", + "name": "Nemocnice Motol", + "avgLatitude": 50.0749741, + "avgLongitude": 14.3407869 + }, + { + "id": "U620", + "name": "Nemocnice Na Františku", + "avgLatitude": 50.0930023, + "avgLongitude": 14.4221554 + }, + { + "id": "U1094", + "name": "Nemocnice Na Homolce", + "avgLatitude": 50.075676, + "avgLongitude": 14.3544254 + }, + { + "id": "U2953", + "name": "Nemocnice pod Petřínem", + "avgLatitude": 50.0868835, + "avgLongitude": 14.3963528 + }, + { + "id": "U2954", + "name": "Nemocnice Vinohrady", + "avgLatitude": 50.0767059, + "avgLongitude": 14.4755163 + }, + { + "id": "U5056", + "name": "Nemyčeves", + "avgLatitude": 50.3871422, + "avgLongitude": 15.3605165 + }, + { + "id": "U6131", + "name": "Nemyslovice", + "avgLatitude": 50.35823, + "avgLongitude": 14.763258 + }, + { + "id": "U4922", + "name": "Nenačovice", + "avgLatitude": 50.01846, + "avgLongitude": 14.1421165 + }, + { + "id": "U4921", + "name": "Nenačovice,Měchurka", + "avgLatitude": 50.0112152, + "avgLongitude": 14.1478682 + }, + { + "id": "U4107", + "name": "Nepasické náměstí", + "avgLatitude": 50.1037674, + "avgLongitude": 14.6587715 + }, + { + "id": "U4078", + "name": "Nepoměřice", + "avgLatitude": 49.8815651, + "avgLongitude": 15.1491566 + }, + { + "id": "U7398", + "name": "Nepoměřice,rozc.Kraličky", + "avgLatitude": 49.875618, + "avgLongitude": 15.1388149 + }, + { + "id": "U7779", + "name": "Nepomuk", + "avgLatitude": 49.64284, + "avgLongitude": 13.8375673 + }, + { + "id": "U7780", + "name": "Nepomuk,sídliště", + "avgLatitude": 49.64587, + "avgLongitude": 13.8345366 + }, + { + "id": "U9226", + "name": "Neprobylice", + "avgLatitude": 50.2632141, + "avgLongitude": 14.0280342 + }, + { + "id": "U4576", + "name": "Nepřevázka", + "avgLatitude": 50.3743439, + "avgLongitude": 14.910984 + }, + { + "id": "U6469", + "name": "Nepřevázka", + "avgLatitude": 50.377903, + "avgLongitude": 14.9158545 + }, + { + "id": "U3071", + "name": "Nepřevázka,hl.sil.", + "avgLatitude": 50.37006, + "avgLongitude": 14.90365 + }, + { + "id": "U1305", + "name": "Neratovice", + "avgLatitude": 50.2626762, + "avgLongitude": 14.5175142 + }, + { + "id": "U2913", + "name": "Neratovice město", + "avgLatitude": 50.256855, + "avgLongitude": 14.5200768 + }, + { + "id": "U9929", + "name": "Neratovice sídliště", + "avgLatitude": 50.25681, + "avgLongitude": 14.5075226 + }, + { + "id": "U3307", + "name": "Neratovice,Bří Čapků", + "avgLatitude": 50.25604, + "avgLongitude": 14.515543 + }, + { + "id": "U2334", + "name": "Neratovice,Byškovice", + "avgLatitude": 50.2542343, + "avgLongitude": 14.4948368 + }, + { + "id": "U3309", + "name": "Neratovice,Byškovice,Družstevní", + "avgLatitude": 50.25508, + "avgLongitude": 14.4946842 + }, + { + "id": "U3352", + "name": "Neratovice,Byškovice,Větrná", + "avgLatitude": 50.2524757, + "avgLongitude": 14.48877 + }, + { + "id": "U3308", + "name": "Neratovice,Byškovická", + "avgLatitude": 50.25562, + "avgLongitude": 14.496685 + }, + { + "id": "U3310", + "name": "Neratovice,Dům kultury", + "avgLatitude": 50.2589035, + "avgLongitude": 14.51461 + }, + { + "id": "U3353", + "name": "Neratovice,Horňátky", + "avgLatitude": 50.2471237, + "avgLongitude": 14.474431 + }, + { + "id": "U1971", + "name": "Neratovice,III.ZŠ", + "avgLatitude": 50.2547073, + "avgLongitude": 14.5119991 + }, + { + "id": "U1303", + "name": "Neratovice,Kojetická", + "avgLatitude": 50.25287, + "avgLongitude": 14.5195837 + }, + { + "id": "U2267", + "name": "Neratovice,Korycany", + "avgLatitude": 50.2543, + "avgLongitude": 14.4518757 + }, + { + "id": "U3377", + "name": "Neratovice,Kostomlatského", + "avgLatitude": 50.26133, + "avgLongitude": 14.52504 + }, + { + "id": "U3375", + "name": "Neratovice,Lobkovice,Statek", + "avgLatitude": 50.25185, + "avgLongitude": 14.53895 + }, + { + "id": "U3376", + "name": "Neratovice,Lobkovice,škola", + "avgLatitude": 50.2534676, + "avgLongitude": 14.53091 + }, + { + "id": "U3374", + "name": "Neratovice,Lobkovice,V Lukách", + "avgLatitude": 50.2489929, + "avgLongitude": 14.5361948 + }, + { + "id": "U1304", + "name": "Neratovice,Nám.Republiky", + "avgLatitude": 50.2593155, + "avgLongitude": 14.5173216 + }, + { + "id": "U3306", + "name": "Neratovice,Školní", + "avgLatitude": 50.2546844, + "avgLongitude": 14.5177345 + }, + { + "id": "U2335", + "name": "Neratovice,U Vojtěcha", + "avgLatitude": 50.26128, + "avgLongitude": 14.5074425 + }, + { + "id": "U1546", + "name": "Nespeky", + "avgLatitude": 49.8584976, + "avgLongitude": 14.6603785 + }, + { + "id": "U1911", + "name": "Nespeky,Městečko", + "avgLatitude": 49.8512878, + "avgLongitude": 14.6753521 + }, + { + "id": "U1545", + "name": "Nespeky,Rozc.Pyšely", + "avgLatitude": 49.8654022, + "avgLongitude": 14.6567211 + }, + { + "id": "U7781", + "name": "Nestrašovice", + "avgLatitude": 49.5600281, + "avgLongitude": 14.0262051 + }, + { + "id": "U6506", + "name": "Nesuchyně", + "avgLatitude": 50.17871, + "avgLongitude": 13.6867561 + }, + { + "id": "U2914", + "name": "Nesvačily", + "avgLatitude": 49.874897, + "avgLongitude": 14.1287479 + }, + { + "id": "U4284", + "name": "Nesvačily", + "avgLatitude": 49.88073, + "avgLongitude": 14.1247606 + }, + { + "id": "U490", + "name": "Netluky", + "avgLatitude": 50.0410919, + "avgLongitude": 14.6131344 + }, + { + "id": "U4150", + "name": "Netřeba", + "avgLatitude": 50.2600822, + "avgLongitude": 14.4222879 + }, + { + "id": "U9576", + "name": "Netřebice", + "avgLatitude": 50.2143173, + "avgLongitude": 15.143074 + }, + { + "id": "U1415", + "name": "Netřebická", + "avgLatitude": 50.129303, + "avgLongitude": 14.5728178 + }, + { + "id": "U2510", + "name": "Netvořice", + "avgLatitude": 49.81656, + "avgLongitude": 14.5181561 + }, + { + "id": "U4474", + "name": "Netvořice,Dunávice", + "avgLatitude": 49.8114624, + "avgLongitude": 14.5453205 + }, + { + "id": "U2511", + "name": "Netvořice,Lhota,Rozc.", + "avgLatitude": 49.812767, + "avgLongitude": 14.4878311 + }, + { + "id": "U4480", + "name": "Netvořice,Maskovice", + "avgLatitude": 49.8244438, + "avgLongitude": 14.5006437 + }, + { + "id": "U4466", + "name": "Netvořice,Radějovice,Rozc.", + "avgLatitude": 49.7906075, + "avgLongitude": 14.5060329 + }, + { + "id": "U4478", + "name": "Netvořice,Rozc.Břežany", + "avgLatitude": 49.81825, + "avgLongitude": 14.5238991 + }, + { + "id": "U4479", + "name": "Netvořice,Škola", + "avgLatitude": 49.8175621, + "avgLongitude": 14.521224 + }, + { + "id": "U4504", + "name": "Netvořice,Tuchyně,Rozc.", + "avgLatitude": 49.80461, + "avgLongitude": 14.5002365 + }, + { + "id": "U4519", + "name": "Netvořice,U Vrby", + "avgLatitude": 49.8236771, + "avgLongitude": 14.5249653 + }, + { + "id": "U4477", + "name": "Netvořice,Vojtěchov", + "avgLatitude": 49.82145, + "avgLongitude": 14.5338249 + }, + { + "id": "U3304", + "name": "Netvořice,Všetice", + "avgLatitude": 49.7891426, + "avgLongitude": 14.51336 + }, + { + "id": "U2915", + "name": "Neuměřice", + "avgLatitude": 50.2417145, + "avgLongitude": 14.2195969 + }, + { + "id": "U4826", + "name": "Neuměřice,přijímací stanice", + "avgLatitude": 50.25918, + "avgLongitude": 14.2216434 + }, + { + "id": "U4825", + "name": "Neuměřice,rozcestí", + "avgLatitude": 50.24395, + "avgLongitude": 14.2146368 + }, + { + "id": "U2916", + "name": "Neumětely", + "avgLatitude": 49.85014, + "avgLongitude": 14.0120049 + }, + { + "id": "U9849", + "name": "Neumětely", + "avgLatitude": 49.85246, + "avgLongitude": 14.0359077 + }, + { + "id": "U6577", + "name": "Neustupov", + "avgLatitude": 49.615036, + "avgLongitude": 14.698204 + }, + { + "id": "U6579", + "name": "Neustupov,Bořetice", + "avgLatitude": 49.6119347, + "avgLongitude": 14.7100277 + }, + { + "id": "U6580", + "name": "Neustupov,Broumovice", + "avgLatitude": 49.6344223, + "avgLongitude": 14.7074738 + }, + { + "id": "U6581", + "name": "Neustupov,Jiřetice", + "avgLatitude": 49.59955, + "avgLongitude": 14.7264891 + }, + { + "id": "U6578", + "name": "Neustupov,rozc.Záhoříčko", + "avgLatitude": 49.6028671, + "avgLongitude": 14.7181091 + }, + { + "id": "U6582", + "name": "Neustupov,Sedlečko", + "avgLatitude": 49.6056938, + "avgLongitude": 14.7143574 + }, + { + "id": "U6583", + "name": "Neustupov,Vlčkovice", + "avgLatitude": 49.6308975, + "avgLongitude": 14.7146244 + }, + { + "id": "U667", + "name": "Nevanova", + "avgLatitude": 50.066185, + "avgLongitude": 14.3113441 + }, + { + "id": "U3303", + "name": "Neveklov", + "avgLatitude": 49.7529678, + "avgLongitude": 14.5338287 + }, + { + "id": "U4456", + "name": "Neveklov,Bělice", + "avgLatitude": 49.76622, + "avgLongitude": 14.4727383 + }, + { + "id": "U4455", + "name": "Neveklov,Bělice,Rozc.", + "avgLatitude": 49.7628441, + "avgLongitude": 14.47723 + }, + { + "id": "U4458", + "name": "Neveklov,Blažim", + "avgLatitude": 49.76204, + "avgLongitude": 14.4534912 + }, + { + "id": "U4457", + "name": "Neveklov,Blažim,Rozc.Chlum", + "avgLatitude": 49.76174, + "avgLongitude": 14.4600868 + }, + { + "id": "U4464", + "name": "Neveklov,Borovka", + "avgLatitude": 49.7754021, + "avgLongitude": 14.5264988 + }, + { + "id": "U4571", + "name": "Neveklov,Borovka,Rozc.", + "avgLatitude": 49.7709045, + "avgLongitude": 14.5292082 + }, + { + "id": "U4927", + "name": "Neveklov,Dalešice", + "avgLatitude": 49.7902451, + "avgLongitude": 14.47929 + }, + { + "id": "U4467", + "name": "Neveklov,Dalešice,Rozc.", + "avgLatitude": 49.7920456, + "avgLongitude": 14.4874086 + }, + { + "id": "U4528", + "name": "Neveklov,Doloplazy,Rozc.", + "avgLatitude": 49.7536, + "avgLongitude": 14.583025 + }, + { + "id": "U4450", + "name": "Neveklov,Chvojínek,Rozc.", + "avgLatitude": 49.76299, + "avgLongitude": 14.5630474 + }, + { + "id": "U2545", + "name": "Neveklov,Jablonka", + "avgLatitude": 49.7779732, + "avgLongitude": 14.4645615 + }, + { + "id": "U2546", + "name": "Neveklov,Jablonná", + "avgLatitude": 49.7800446, + "avgLongitude": 14.4509869 + }, + { + "id": "U4460", + "name": "Neveklov,Kelce", + "avgLatitude": 49.77325, + "avgLongitude": 14.4680672 + }, + { + "id": "U4459", + "name": "Neveklov,Nebřich", + "avgLatitude": 49.7696533, + "avgLongitude": 14.4282179 + }, + { + "id": "U4481", + "name": "Neveklov,Neštětice", + "avgLatitude": 49.76228, + "avgLongitude": 14.5780993 + }, + { + "id": "U4449", + "name": "Neveklov,Neštětice,Rozc.", + "avgLatitude": 49.76506, + "avgLongitude": 14.5755835 + }, + { + "id": "U4574", + "name": "Neveklov,Ouštice", + "avgLatitude": 49.7833481, + "avgLongitude": 14.5404663 + }, + { + "id": "U4447", + "name": "Neveklov,Přibyšice", + "avgLatitude": 49.7710648, + "avgLongitude": 14.5994368 + }, + { + "id": "U4448", + "name": "Neveklov,Rozc.Černíkovice", + "avgLatitude": 49.76801, + "avgLongitude": 14.5826988 + }, + { + "id": "U4454", + "name": "Neveklov,Rozc.Nouze", + "avgLatitude": 49.7613525, + "avgLongitude": 14.4881067 + }, + { + "id": "U4465", + "name": "Neveklov,Rozc.Prchovka", + "avgLatitude": 49.7814522, + "avgLongitude": 14.5234756 + }, + { + "id": "U4531", + "name": "Neveklov,Spolí", + "avgLatitude": 49.7458076, + "avgLongitude": 14.5176716 + }, + { + "id": "U4462", + "name": "Neveklov,Tloskov", + "avgLatitude": 49.76004, + "avgLongitude": 14.5276833 + }, + { + "id": "U4463", + "name": "Neveklov,Tloskov,SÚS", + "avgLatitude": 49.7651634, + "avgLongitude": 14.5258732 + }, + { + "id": "U4566", + "name": "Neveklov,Zádolí", + "avgLatitude": 49.7334175, + "avgLongitude": 14.5097208 + }, + { + "id": "U4532", + "name": "Neveklov,Zádolí,Rozc.", + "avgLatitude": 49.7368736, + "avgLongitude": 14.5078487 + }, + { + "id": "U4543", + "name": "Neveklov,Zavadilka", + "avgLatitude": 49.7399178, + "avgLongitude": 14.5354671 + }, + { + "id": "U6371", + "name": "Neveklovice", + "avgLatitude": 50.57155, + "avgLongitude": 14.9485607 + }, + { + "id": "U491", + "name": "Newtonova", + "avgLatitude": 50.0350647, + "avgLongitude": 14.5519257 + }, + { + "id": "U6088", + "name": "Nezabudice", + "avgLatitude": 50.0124664, + "avgLongitude": 13.8200893 + }, + { + "id": "U6940", + "name": "Nezabudice,přívoz", + "avgLatitude": 50.0134048, + "avgLongitude": 13.8293743 + }, + { + "id": "U6939", + "name": "Nezabudice,U Rozvědčíka", + "avgLatitude": 50.0048981, + "avgLongitude": 13.8212242 + }, + { + "id": "U4048", + "name": "Niměřice", + "avgLatitude": 50.395874, + "avgLongitude": 14.8080788 + }, + { + "id": "U4063", + "name": "Niměřice,Dolní Cetno", + "avgLatitude": 50.4042931, + "avgLongitude": 14.8036451 + }, + { + "id": "U4051", + "name": "Niměřice,Horní Cetno,Na klínkách", + "avgLatitude": 50.4002838, + "avgLongitude": 14.7978716 + }, + { + "id": "U4052", + "name": "Niměřice,Horní Cetno,u topolu", + "avgLatitude": 50.4027634, + "avgLongitude": 14.7916307 + }, + { + "id": "U3272", + "name": "Nižbor", + "avgLatitude": 50.00334, + "avgLongitude": 13.998436 + }, + { + "id": "U9774", + "name": "Nižbor,Stradonice,lávka", + "avgLatitude": 49.99523, + "avgLongitude": 14.0255175 + }, + { + "id": "U9778", + "name": "Nižbor,Stradonice,náves", + "avgLatitude": 49.9925652, + "avgLongitude": 14.0227823 + }, + { + "id": "U9777", + "name": "Nižbor,Stradonice,u hřbitova", + "avgLatitude": 49.9944, + "avgLongitude": 14.0193844 + }, + { + "id": "U9775", + "name": "Nižbor,Šnárová", + "avgLatitude": 50.01005, + "avgLongitude": 14.0010567 + }, + { + "id": "U9776", + "name": "Nižbor,u lípy", + "avgLatitude": 50.0008, + "avgLongitude": 14.0024395 + }, + { + "id": "U3273", + "name": "Nižbor,Žloukovice", + "avgLatitude": 50.0141373, + "avgLongitude": 13.9567 + }, + { + "id": "U3041", + "name": "Norbertov", + "avgLatitude": 50.09115, + "avgLongitude": 14.3777409 + }, + { + "id": "U6133", + "name": "Nosálov", + "avgLatitude": 50.4731522, + "avgLongitude": 14.6719112 + }, + { + "id": "U6132", + "name": "Nosálov,Libovice", + "avgLatitude": 50.4724121, + "avgLongitude": 14.6531258 + }, + { + "id": "U492", + "name": "Nová kolonie", + "avgLatitude": 50.0506439, + "avgLongitude": 14.3279839 + }, + { + "id": "U493", + "name": "Nová Šárka", + "avgLatitude": 50.0929565, + "avgLongitude": 14.3147287 + }, + { + "id": "U6265", + "name": "Nová Telib", + "avgLatitude": 50.3919067, + "avgLongitude": 15.0315819 + }, + { + "id": "U6266", + "name": "Nová Telib,dvůr", + "avgLatitude": 50.3872452, + "avgLongitude": 15.0551643 + }, + { + "id": "U4364", + "name": "Nová Ves", + "avgLatitude": 50.3129272, + "avgLongitude": 14.3097658 + }, + { + "id": "U1300", + "name": "Nová Ves", + "avgLatitude": 50.21896, + "avgLongitude": 14.5340176 + }, + { + "id": "U2818", + "name": "Nová Ves I", + "avgLatitude": 50.05204, + "avgLongitude": 15.1442242 + }, + { + "id": "U9589", + "name": "Nová Ves I,Ohrada", + "avgLatitude": 50.04483, + "avgLongitude": 15.1548929 + }, + { + "id": "U1842", + "name": "Nová Ves p.Pleší", + "avgLatitude": 49.8312, + "avgLongitude": 14.27516 + }, + { + "id": "U1738", + "name": "Nová Ves p.Pleší,Nemocnice", + "avgLatitude": 49.8341064, + "avgLongitude": 14.2837257 + }, + { + "id": "U1737", + "name": "Nová Ves p.Pleší,Rozcestí k Nemocnici", + "avgLatitude": 49.8375549, + "avgLongitude": 14.2778854 + }, + { + "id": "U2376", + "name": "Nová Ves p.Pleší,Včelník", + "avgLatitude": 49.84417, + "avgLongitude": 14.27933 + }, + { + "id": "U6323", + "name": "Nová Ves u Bakova n.Jiz.", + "avgLatitude": 50.4896774, + "avgLongitude": 14.9283676 + }, + { + "id": "U9481", + "name": "Nová Ves u Leštiny", + "avgLatitude": 49.78349, + "avgLongitude": 15.4042406 + }, + { + "id": "U4247", + "name": "Nová Ves,Miřejovice,Most", + "avgLatitude": 50.2811432, + "avgLongitude": 14.3159 + }, + { + "id": "U2829", + "name": "Nová Ves,Nové Ouholice", + "avgLatitude": 50.3027573, + "avgLongitude": 14.3166914 + }, + { + "id": "U4358", + "name": "Nová Ves,Nové Ouholice,U Havlínů", + "avgLatitude": 50.3034172, + "avgLongitude": 14.3176832 + }, + { + "id": "U4363", + "name": "Nová Ves,Rozc.", + "avgLatitude": 50.3087158, + "avgLongitude": 14.3143921 + }, + { + "id": "U4361", + "name": "Nová Ves,Staré Ouholice", + "avgLatitude": 50.29003, + "avgLongitude": 14.3218832 + }, + { + "id": "U4359", + "name": "Nová Ves,Vepřek,U Fary", + "avgLatitude": 50.30845, + "avgLongitude": 14.3238668 + }, + { + "id": "U602", + "name": "Nové Butovice", + "avgLatitude": 50.05108, + "avgLongitude": 14.3521347 + }, + { + "id": "U494", + "name": "Nové Dvory", + "avgLatitude": 50.0174332, + "avgLongitude": 14.4478731 + }, + { + "id": "U6660", + "name": "Nové Dvory", + "avgLatitude": 49.9704857, + "avgLongitude": 15.3239193 + }, + { + "id": "U2531", + "name": "Nové Dvory", + "avgLatitude": 49.8026, + "avgLongitude": 14.3573074 + }, + { + "id": "U2530", + "name": "Nové Dvory,Krámy", + "avgLatitude": 49.7994881, + "avgLongitude": 14.33805 + }, + { + "id": "U2528", + "name": "Nové Dvory,Nová Hospoda", + "avgLatitude": 49.7999039, + "avgLongitude": 14.3646526 + }, + { + "id": "U7783", + "name": "Nové Dvory,Ovčáry", + "avgLatitude": 49.96308, + "avgLongitude": 15.3317432 + }, + { + "id": "U2527", + "name": "Nové Dvory,Porostliny", + "avgLatitude": 49.8093452, + "avgLongitude": 14.3720541 + }, + { + "id": "U7782", + "name": "Nové Dvory,zdrav.stř.", + "avgLatitude": 49.9675255, + "avgLongitude": 15.328599 + }, + { + "id": "U3236", + "name": "Nové Komořany", + "avgLatitude": 49.9924469, + "avgLongitude": 14.41968 + }, + { + "id": "U2718", + "name": "Nové Letňany", + "avgLatitude": 50.14093, + "avgLongitude": 14.5209522 + }, + { + "id": "U336", + "name": "Nové náměstí", + "avgLatitude": 50.03168, + "avgLongitude": 14.5980072 + }, + { + "id": "U770", + "name": "Nové Petrovice", + "avgLatitude": 50.0400467, + "avgLongitude": 14.5545959 + }, + { + "id": "U919", + "name": "Nové Pitkovice", + "avgLatitude": 50.0172043, + "avgLongitude": 14.5849333 + }, + { + "id": "U495", + "name": "Nové Podolí", + "avgLatitude": 50.04348, + "avgLongitude": 14.4296741 + }, + { + "id": "U32305", + "name": "Nové Sedlo", + "avgLatitude": 50.33875, + "avgLongitude": 13.4740791 + }, + { + "id": "U2917", + "name": "Nové Strašecí", + "avgLatitude": 50.1519852, + "avgLongitude": 13.8818321 + }, + { + "id": "U9312", + "name": "Nové Strašecí,Karlovarská", + "avgLatitude": 50.15773, + "avgLongitude": 13.8961964 + }, + { + "id": "U9313", + "name": "Nové Strašecí,Libeň", + "avgLatitude": 50.1659737, + "avgLongitude": 13.8985252 + }, + { + "id": "U4298", + "name": "Nové Strašecí,Palackého", + "avgLatitude": 50.1525421, + "avgLongitude": 13.8991585 + }, + { + "id": "U9915", + "name": "Nové Strašecí,Pecínov", + "avgLatitude": 50.13542, + "avgLongitude": 13.9073505 + }, + { + "id": "U9316", + "name": "Nové Strašecí,poliklinika", + "avgLatitude": 50.1493, + "avgLongitude": 13.904295 + }, + { + "id": "U4013", + "name": "Nové Strašecí,rozc.Třtice", + "avgLatitude": 50.1657639, + "avgLongitude": 13.8770542 + }, + { + "id": "U70", + "name": "Nové Strašnice", + "avgLatitude": 50.0778275, + "avgLongitude": 14.5104532 + }, + { + "id": "U5", + "name": "Nové Vokovice", + "avgLatitude": 50.1005478, + "avgLongitude": 14.340827 + }, + { + "id": "U31375", + "name": "Noviny p.Ralskem,hl.sil.", + "avgLatitude": 50.6914864, + "avgLongitude": 14.7418919 + }, + { + "id": "U32154", + "name": "Noviny p.Ralskem,kovárna", + "avgLatitude": 50.6919746, + "avgLongitude": 14.744071 + }, + { + "id": "U3205", + "name": "Novoborská", + "avgLatitude": 50.12628, + "avgLongitude": 14.4985313 + }, + { + "id": "U497", + "name": "Novodvorská", + "avgLatitude": 50.0233078, + "avgLongitude": 14.4405146 + }, + { + "id": "U3201", + "name": "Novochuchelská", + "avgLatitude": 50.0090866, + "avgLongitude": 14.3848076 + }, + { + "id": "U742", + "name": "Novoštěrboholská", + "avgLatitude": 50.0744247, + "avgLongitude": 14.561121 + }, + { + "id": "U498", + "name": "Novovysočanská", + "avgLatitude": 50.1003456, + "avgLongitude": 14.4915218 + }, + { + "id": "U3013", + "name": "Novozámecká", + "avgLatitude": 50.0893326, + "avgLongitude": 14.5697641 + }, + { + "id": "U31361", + "name": "Nový Bor,aut.nádr.", + "avgLatitude": 50.7635, + "avgLongitude": 14.5494118 + }, + { + "id": "U31362", + "name": "Nový Bor,Egermannova", + "avgLatitude": 50.7610474, + "avgLongitude": 14.5558853 + }, + { + "id": "U31363", + "name": "Nový Bor,Liberecká", + "avgLatitude": 50.7616959, + "avgLongitude": 14.5580616 + }, + { + "id": "U31360", + "name": "Nový Bor,nám.Míru", + "avgLatitude": 50.759407, + "avgLongitude": 14.5562553 + }, + { + "id": "U31357", + "name": "Nový Bor,Pihel,pošta", + "avgLatitude": 50.73116, + "avgLongitude": 14.546608 + }, + { + "id": "U31359", + "name": "Nový Bor,T.G.Masaryka", + "avgLatitude": 50.75486, + "avgLongitude": 14.5534458 + }, + { + "id": "U31121", + "name": "Nový Bydžov,nemocnice", + "avgLatitude": 50.2433853, + "avgLongitude": 15.4819155 + }, + { + "id": "U31117", + "name": "Nový Bydžov,Nová Skřeněř", + "avgLatitude": 50.24044, + "avgLongitude": 15.4281225 + }, + { + "id": "U31114", + "name": "Nový Bydžov,Skochovice,hřiště", + "avgLatitude": 50.2264366, + "avgLongitude": 15.400919 + }, + { + "id": "U31763", + "name": "Nový Bydžov,Skochovice,odb.Žantov", + "avgLatitude": 50.22913, + "avgLongitude": 15.3941956 + }, + { + "id": "U31118", + "name": "Nový Bydžov,Stará Skřeněř,hřiště", + "avgLatitude": 50.2457657, + "avgLongitude": 15.4401779 + }, + { + "id": "U31122", + "name": "Nový Bydžov,Terminál HD", + "avgLatitude": 50.2433624, + "avgLongitude": 15.4856291 + }, + { + "id": "U31765", + "name": "Nový Bydžov,Žantov", + "avgLatitude": 50.2413635, + "avgLongitude": 15.3951387 + }, + { + "id": "U9916", + "name": "Nový Dům", + "avgLatitude": 50.0894356, + "avgLongitude": 13.8291092 + }, + { + "id": "U9917", + "name": "Nový Dům,Doupno", + "avgLatitude": 50.0879974, + "avgLongitude": 13.82127 + }, + { + "id": "U9918", + "name": "Nový Dům,háj.", + "avgLatitude": 50.08651, + "avgLongitude": 13.8116837 + }, + { + "id": "U9577", + "name": "Nový Dvůr", + "avgLatitude": 50.2325859, + "avgLongitude": 15.110693 + }, + { + "id": "U499", + "name": "Nový Hloubětín", + "avgLatitude": 50.10988, + "avgLongitude": 14.529521 + }, + { + "id": "U9072", + "name": "Nový Jáchymov", + "avgLatitude": 49.9808769, + "avgLongitude": 13.9432611 + }, + { + "id": "U9073", + "name": "Nový Jáchymov,háj.", + "avgLatitude": 49.977066, + "avgLongitude": 13.9242373 + }, + { + "id": "U9071", + "name": "Nový Jáchymov,sídl.", + "avgLatitude": 49.9809875, + "avgLongitude": 13.9483681 + }, + { + "id": "U2537", + "name": "Nový Knín", + "avgLatitude": 49.7883072, + "avgLongitude": 14.2932873 + }, + { + "id": "U2538", + "name": "Nový Knín,ELKO", + "avgLatitude": 49.78882, + "avgLongitude": 14.2907448 + }, + { + "id": "U4734", + "name": "Nový Knín,Chramiště", + "avgLatitude": 49.7651749, + "avgLongitude": 14.2755861 + }, + { + "id": "U4732", + "name": "Nový Knín,Kozí Hory", + "avgLatitude": 49.7765427, + "avgLongitude": 14.2685442 + }, + { + "id": "U4733", + "name": "Nový Knín,Kozí Hory,Besídka", + "avgLatitude": 49.767498, + "avgLongitude": 14.26428 + }, + { + "id": "U2540", + "name": "Nový Knín,Libčice", + "avgLatitude": 49.7548676, + "avgLongitude": 14.3086233 + }, + { + "id": "U4731", + "name": "Nový Knín,Mlýn", + "avgLatitude": 49.7821159, + "avgLongitude": 14.27893 + }, + { + "id": "U2539", + "name": "Nový Knín,Sokolovna", + "avgLatitude": 49.7925224, + "avgLongitude": 14.2905979 + }, + { + "id": "U4723", + "name": "Nový Knín,Starý Knín", + "avgLatitude": 49.7878532, + "avgLongitude": 14.2817888 + }, + { + "id": "U4730", + "name": "Nový Knín,Starý Knín Na Vyšehradě", + "avgLatitude": 49.78494, + "avgLongitude": 14.2859144 + }, + { + "id": "U2536", + "name": "Nový Knín,Sudovice", + "avgLatitude": 49.7867279, + "avgLongitude": 14.3076668 + }, + { + "id": "U500", + "name": "Nový Prosek", + "avgLatitude": 50.12111, + "avgLongitude": 14.5040417 + }, + { + "id": "U501", + "name": "Nový Slivenec", + "avgLatitude": 50.02646, + "avgLongitude": 14.3735161 + }, + { + "id": "U502", + "name": "Nový Střížkov", + "avgLatitude": 50.11852, + "avgLongitude": 14.4839153 + }, + { + "id": "U1837", + "name": "Nový Vestec", + "avgLatitude": 50.1836929, + "avgLongitude": 14.720232 + }, + { + "id": "U1923", + "name": "Nový Vestec,Na Pískách", + "avgLatitude": 50.1849747, + "avgLongitude": 14.7147779 + }, + { + "id": "U1838", + "name": "Nový Vestec,U Mostu", + "avgLatitude": 50.1839447, + "avgLongitude": 14.7287626 + }, + { + "id": "U3241", + "name": "Nový Zličín", + "avgLatitude": 50.0556679, + "avgLongitude": 14.2833424 + }, + { + "id": "U1650", + "name": "Nučice", + "avgLatitude": 50.0239754, + "avgLongitude": 14.2249832 + }, + { + "id": "U1986", + "name": "Nučice", + "avgLatitude": 49.9550362, + "avgLongitude": 14.8845615 + }, + { + "id": "U1655", + "name": "Nučice zast.", + "avgLatitude": 50.01514, + "avgLongitude": 14.2127342 + }, + { + "id": "U1669", + "name": "Nučice,Bytovky", + "avgLatitude": 50.01995, + "avgLongitude": 14.2358074 + }, + { + "id": "U1313", + "name": "Nučice,Na Kladívku", + "avgLatitude": 49.958107, + "avgLongitude": 14.8829327 + }, + { + "id": "U1654", + "name": "Nučice,Na Krahulově", + "avgLatitude": 50.0153046, + "avgLongitude": 14.2172089 + }, + { + "id": "U1651", + "name": "Nučice,Pod Vinicí", + "avgLatitude": 50.0202255, + "avgLongitude": 14.2307129 + }, + { + "id": "U1652", + "name": "Nučice,Prokopská náves", + "avgLatitude": 50.0168076, + "avgLongitude": 14.2320442 + }, + { + "id": "U2368", + "name": "Nučice,Rozc.Krahulov", + "avgLatitude": 50.0090332, + "avgLongitude": 14.1959419 + }, + { + "id": "U1653", + "name": "Nučice,Sokolská", + "avgLatitude": 50.01561, + "avgLongitude": 14.2240124 + }, + { + "id": "U1869", + "name": "Nupaky", + "avgLatitude": 49.9946556, + "avgLongitude": 14.6026554 + }, + { + "id": "U2097", + "name": "Nupaky,hotel", + "avgLatitude": 49.99395, + "avgLongitude": 14.5979252 + }, + { + "id": "U3355", + "name": "Nupaky,školka", + "avgLatitude": 49.9922333, + "avgLongitude": 14.6062555 + }, + { + "id": "U503", + "name": "Nuselská radnice", + "avgLatitude": 50.0628662, + "avgLongitude": 14.4415913 + }, + { + "id": "U504", + "name": "Nuselské schody", + "avgLatitude": 50.0682678, + "avgLongitude": 14.4355421 + }, + { + "id": "U968", + "name": "Nušlova", + "avgLatitude": 50.0547943, + "avgLongitude": 14.3462009 + }, + { + "id": "U2973", + "name": "Nymburk hl.n.", + "avgLatitude": 50.193325, + "avgLongitude": 15.04572 + }, + { + "id": "U2804", + "name": "Nymburk město", + "avgLatitude": 50.184597, + "avgLongitude": 15.0334349 + }, + { + "id": "U3074", + "name": "Nymburk,Diskont Potraviny", + "avgLatitude": 50.17896, + "avgLongitude": 15.044054 + }, + { + "id": "U3075", + "name": "Nymburk,Dopravní", + "avgLatitude": 50.1761551, + "avgLongitude": 15.0453243 + }, + { + "id": "U3149", + "name": "Nymburk,Drahelice,Mlýn Bašta", + "avgLatitude": 50.1738319, + "avgLongitude": 15.0054665 + }, + { + "id": "U3148", + "name": "Nymburk,Drahelice,odb.hřbitov", + "avgLatitude": 50.17987, + "avgLongitude": 15.0241852 + }, + { + "id": "U3151", + "name": "Nymburk,Drahelice,odb.Kostomlátky", + "avgLatitude": 50.17729, + "avgLongitude": 15.0143681 + }, + { + "id": "U3150", + "name": "Nymburk,Drahelice,Přívoz", + "avgLatitude": 50.17415, + "avgLongitude": 15.0086231 + }, + { + "id": "U3076", + "name": "Nymburk,F.Schulze", + "avgLatitude": 50.1934128, + "avgLongitude": 15.0352516 + }, + { + "id": "U3077", + "name": "Nymburk,Havlíčkova kostel", + "avgLatitude": 50.1887627, + "avgLongitude": 15.0408134 + }, + { + "id": "U3078", + "name": "Nymburk,Havlíčkova VZP", + "avgLatitude": 50.1899376, + "avgLongitude": 15.0404863 + }, + { + "id": "U3079", + "name": "Nymburk,Jankovice Šeříková", + "avgLatitude": 50.19121, + "avgLongitude": 15.0325785 + }, + { + "id": "U3164", + "name": "Nymburk,Jednota Habeš", + "avgLatitude": 50.189476, + "avgLongitude": 15.055953 + }, + { + "id": "U3080", + "name": "Nymburk,Jičínská", + "avgLatitude": 50.1885757, + "avgLongitude": 15.0342073 + }, + { + "id": "U3081", + "name": "Nymburk,Katastrální úřad", + "avgLatitude": 50.18945, + "avgLongitude": 15.0442781 + }, + { + "id": "U3082", + "name": "Nymburk,Kino", + "avgLatitude": 50.18466, + "avgLongitude": 15.0385513 + }, + { + "id": "U2965", + "name": "Nymburk,Lada dvůr", + "avgLatitude": 50.1633453, + "avgLongitude": 15.0218391 + }, + { + "id": "U2966", + "name": "Nymburk,Lada Zátiší", + "avgLatitude": 50.1700439, + "avgLongitude": 15.026804 + }, + { + "id": "U3089", + "name": "Nymburk,Letců R.A.F.", + "avgLatitude": 50.1878967, + "avgLongitude": 15.0297956 + }, + { + "id": "U3083", + "name": "Nymburk,Lipová", + "avgLatitude": 50.1831169, + "avgLongitude": 15.0287685 + }, + { + "id": "U3084", + "name": "Nymburk,lokomotivní depo", + "avgLatitude": 50.18855, + "avgLongitude": 15.06272 + }, + { + "id": "U3085", + "name": "Nymburk,Maršála Koněva", + "avgLatitude": 50.190506, + "avgLongitude": 15.05051 + }, + { + "id": "U5955", + "name": "Nymburk,Na Hroudách", + "avgLatitude": 50.18457, + "avgLongitude": 15.0175295 + }, + { + "id": "U2969", + "name": "Nymburk,Nám.", + "avgLatitude": 50.1852, + "avgLongitude": 15.0408278 + }, + { + "id": "U2970", + "name": "Nymburk,Nemocnice", + "avgLatitude": 50.1882858, + "avgLongitude": 15.0373478 + }, + { + "id": "U3088", + "name": "Nymburk,Poliklinika", + "avgLatitude": 50.1868973, + "avgLongitude": 15.02513 + }, + { + "id": "U2967", + "name": "Nymburk,Pražská", + "avgLatitude": 50.17792, + "avgLongitude": 15.038929 + }, + { + "id": "U3087", + "name": "Nymburk,průmyslová zóna sever", + "avgLatitude": 50.19924, + "avgLongitude": 15.0378895 + }, + { + "id": "U3100", + "name": "Nymburk,Sportovní centrum", + "avgLatitude": 50.1756821, + "avgLongitude": 15.0554008 + }, + { + "id": "U3141", + "name": "Nymburk,U Hřbitova", + "avgLatitude": 50.1808434, + "avgLongitude": 15.0260029 + }, + { + "id": "U4859", + "name": "Nymburk,U Růžáku", + "avgLatitude": 50.1829376, + "avgLongitude": 15.0319033 + }, + { + "id": "U3146", + "name": "Nymburk,V Kolonii", + "avgLatitude": 50.1928673, + "avgLongitude": 15.03894 + }, + { + "id": "U3142", + "name": "Nymburk,Všechlapský vrch", + "avgLatitude": 50.2077255, + "avgLongitude": 15.0342741 + }, + { + "id": "U2968", + "name": "Nymburk,Zálabí PVT", + "avgLatitude": 50.1806641, + "avgLongitude": 15.0446472 + }, + { + "id": "U1120", + "name": "Nymburská", + "avgLatitude": 50.1267471, + "avgLongitude": 14.5584831 + }, + { + "id": "U5923", + "name": "Nýrská", + "avgLatitude": 49.9773026, + "avgLongitude": 14.3325071 + }, + { + "id": "U9639", + "name": "Občov", + "avgLatitude": 49.71279, + "avgLongitude": 14.0661507 + }, + { + "id": "U9640", + "name": "Občov,U Lesa", + "avgLatitude": 49.7109, + "avgLongitude": 14.0600033 + }, + { + "id": "U9680", + "name": "Obecnice", + "avgLatitude": 49.7160721, + "avgLongitude": 13.9474869 + }, + { + "id": "U9685", + "name": "Obecnice,Oseč", + "avgLatitude": 49.7040558, + "avgLongitude": 13.9588985 + }, + { + "id": "U9684", + "name": "Obecnice,Oseč,Pod Třemošnou", + "avgLatitude": 49.7032623, + "avgLongitude": 13.9484978 + }, + { + "id": "U9681", + "name": "Obecnice,Šachta", + "avgLatitude": 49.712677, + "avgLongitude": 13.9651833 + }, + { + "id": "U9682", + "name": "Obecnice,U Dušků", + "avgLatitude": 49.7129059, + "avgLongitude": 13.9456768 + }, + { + "id": "U9683", + "name": "Obecnice,U Hlinovky", + "avgLatitude": 49.7096443, + "avgLongitude": 13.9435425 + }, + { + "id": "U368", + "name": "Obchodní centrum Čakovice", + "avgLatitude": 50.14997, + "avgLongitude": 14.5082254 + }, + { + "id": "U1235", + "name": "Obchodní centrum Černý Most", + "avgLatitude": 50.10823, + "avgLongitude": 14.587389 + }, + { + "id": "U596", + "name": "Obchodní centrum Hostivař", + "avgLatitude": 50.0537567, + "avgLongitude": 14.519269 + }, + { + "id": "U2786", + "name": "Obchodní centrum Chuchle", + "avgLatitude": 50.0182076, + "avgLongitude": 14.3922138 + }, + { + "id": "U2714", + "name": "Obchodní centrum Lipence", + "avgLatitude": 49.9636421, + "avgLongitude": 14.3637028 + }, + { + "id": "U1295", + "name": "Obchodní centrum Ruzyně", + "avgLatitude": 50.09306, + "avgLongitude": 14.2922611 + }, + { + "id": "U1265", + "name": "Obchodní centrum Sárská", + "avgLatitude": 50.0537376, + "avgLongitude": 14.2971973 + }, + { + "id": "U1014", + "name": "Obchodní centrum Štěrboholy", + "avgLatitude": 50.07217, + "avgLongitude": 14.5427418 + }, + { + "id": "U4191", + "name": "Obchodní centrum Zličín", + "avgLatitude": 50.0499878, + "avgLongitude": 14.29725 + }, + { + "id": "U1158", + "name": "Obchodní náměstí", + "avgLatitude": 50.0047722, + "avgLongitude": 14.40466 + }, + { + "id": "U610", + "name": "Obora Hvězda", + "avgLatitude": 50.0783157, + "avgLongitude": 14.34173 + }, + { + "id": "U7784", + "name": "Obory", + "avgLatitude": 49.68132, + "avgLongitude": 14.2180986 + }, + { + "id": "U7786", + "name": "Obory,čerpací stanice", + "avgLatitude": 49.68287, + "avgLongitude": 14.20981 + }, + { + "id": "U7785", + "name": "Obory,Pánkovka", + "avgLatitude": 49.69191, + "avgLongitude": 14.1924706 + }, + { + "id": "U7787", + "name": "Obory,samoty", + "avgLatitude": 49.678688, + "avgLongitude": 14.2332706 + }, + { + "id": "U9642", + "name": "Obořiště", + "avgLatitude": 49.74241, + "avgLongitude": 14.1516418 + }, + { + "id": "U9641", + "name": "Obořiště,Lhotka", + "avgLatitude": 49.7556458, + "avgLongitude": 14.1587181 + }, + { + "id": "U9643", + "name": "Obořiště,Vyšehrad", + "avgLatitude": 49.7377167, + "avgLongitude": 14.150795 + }, + { + "id": "U6409", + "name": "Obrubce", + "avgLatitude": 50.4481354, + "avgLongitude": 15.0643539 + }, + { + "id": "U9454", + "name": "Obrubce,hl.sil.", + "avgLatitude": 50.4450073, + "avgLongitude": 15.0669184 + }, + { + "id": "U6294", + "name": "Obruby,Na Místech", + "avgLatitude": 50.4558678, + "avgLongitude": 15.0866241 + }, + { + "id": "U6295", + "name": "Obruby,U Holubičků", + "avgLatitude": 50.46003, + "avgLongitude": 15.08201 + }, + { + "id": "U1784", + "name": "Obříství", + "avgLatitude": 50.29531, + "avgLongitude": 14.4776058 + }, + { + "id": "U1783", + "name": "Obříství,Dušníky", + "avgLatitude": 50.29721, + "avgLongitude": 14.4689159 + }, + { + "id": "U1785", + "name": "Obříství,Štěpánský most", + "avgLatitude": 50.2888222, + "avgLongitude": 14.4950256 + }, + { + "id": "U509", + "name": "Observatoř Libuš", + "avgLatitude": 50.00665, + "avgLongitude": 14.4464912 + }, + { + "id": "U2770", + "name": "OC Stromovka", + "avgLatitude": 50.10161, + "avgLongitude": 14.4305763 + }, + { + "id": "U1075", + "name": "Ocelářská", + "avgLatitude": 50.1035461, + "avgLongitude": 14.4884205 + }, + { + "id": "U31473", + "name": "Očihov", + "avgLatitude": 50.1981735, + "avgLongitude": 13.4612217 + }, + { + "id": "U31472", + "name": "Očihov,Očihovec", + "avgLatitude": 50.1904831, + "avgLongitude": 13.4706612 + }, + { + "id": "U1083", + "name": "Oderská", + "avgLatitude": 50.1469269, + "avgLongitude": 14.5302582 + }, + { + "id": "U763", + "name": "Odlehlá", + "avgLatitude": 50.09842, + "avgLongitude": 14.4818344 + }, + { + "id": "U2263", + "name": "Odolena Voda,Dolínek", + "avgLatitude": 50.225647, + "avgLongitude": 14.4216537 + }, + { + "id": "U2221", + "name": "Odolena Voda,Dolínek,Vodolská", + "avgLatitude": 50.22782, + "avgLongitude": 14.4211378 + }, + { + "id": "U2222", + "name": "Odolena Voda,Dolní náměstí", + "avgLatitude": 50.2331924, + "avgLongitude": 14.4112463 + }, + { + "id": "U2260", + "name": "Odolena Voda,Ke Stadionu", + "avgLatitude": 50.22611, + "avgLongitude": 14.41025 + }, + { + "id": "U2220", + "name": "Odolena Voda,Komenského", + "avgLatitude": 50.22862, + "avgLongitude": 14.4131718 + }, + { + "id": "U7584", + "name": "Odolena Voda,Spojovací", + "avgLatitude": 50.23116, + "avgLongitude": 14.4104261 + }, + { + "id": "U2215", + "name": "Odolena Voda,Závod", + "avgLatitude": 50.2203636, + "avgLongitude": 14.4082422 + }, + { + "id": "U511", + "name": "Odra", + "avgLatitude": 50.13086, + "avgLongitude": 14.4241552 + }, + { + "id": "U2948", + "name": "Odřepsy", + "avgLatitude": 50.1452942, + "avgLongitude": 15.1891413 + }, + { + "id": "U6636", + "name": "Ohaře", + "avgLatitude": 50.0978241, + "avgLongitude": 15.2948236 + }, + { + "id": "U31006", + "name": "Ohařice", + "avgLatitude": 50.4543076, + "avgLongitude": 15.2589931 + }, + { + "id": "U31010", + "name": "Ohaveč", + "avgLatitude": 50.45051, + "avgLongitude": 15.3098726 + }, + { + "id": "U512", + "name": "Ohrada", + "avgLatitude": 50.09069, + "avgLongitude": 14.4683342 + }, + { + "id": "U2964", + "name": "Ohradní", + "avgLatitude": 50.05237, + "avgLongitude": 14.4536009 + }, + { + "id": "U587", + "name": "Ohradské náměstí", + "avgLatitude": 50.0373344, + "avgLongitude": 14.3354549 + }, + { + "id": "U31270", + "name": "Ohrazenice,u výkupny", + "avgLatitude": 50.59362, + "avgLongitude": 15.1259289 + }, + { + "id": "U1507", + "name": "Ohrobec", + "avgLatitude": 49.9436951, + "avgLongitude": 14.4314919 + }, + { + "id": "U1508", + "name": "Ohrobec,Károv", + "avgLatitude": 49.9474068, + "avgLongitude": 14.4197159 + }, + { + "id": "U1506", + "name": "Ohrobec,U Čisteckých", + "avgLatitude": 49.9477234, + "avgLongitude": 14.4339867 + }, + { + "id": "U1512", + "name": "Ohrobec,U Rybníka", + "avgLatitude": 49.9424744, + "avgLongitude": 14.4314451 + }, + { + "id": "U6955", + "name": "Ohrobec,Zvolská", + "avgLatitude": 49.9392853, + "avgLongitude": 14.4276476 + }, + { + "id": "U9449", + "name": "Okna", + "avgLatitude": 50.5272827, + "avgLongitude": 14.67443 + }, + { + "id": "U2094", + "name": "Okoř", + "avgLatitude": 50.1627541, + "avgLongitude": 14.257802 + }, + { + "id": "U4403", + "name": "Okoř,Křižovatka", + "avgLatitude": 50.1615562, + "avgLongitude": 14.2485266 + }, + { + "id": "U1015", + "name": "Okořská", + "avgLatitude": 50.1359062, + "avgLongitude": 14.4314823 + }, + { + "id": "U514", + "name": "Okrouhlická", + "avgLatitude": 50.11968, + "avgLongitude": 14.460331 + }, + { + "id": "U1520", + "name": "Okrouhlo", + "avgLatitude": 49.91884, + "avgLongitude": 14.4476 + }, + { + "id": "U1521", + "name": "Okrouhlo,Zahořany", + "avgLatitude": 49.9094543, + "avgLongitude": 14.459156 + }, + { + "id": "U6985", + "name": "Okřesaneč", + "avgLatitude": 49.8480377, + "avgLongitude": 15.46605 + }, + { + "id": "U6987", + "name": "Okřesaneč,Písek", + "avgLatitude": 49.8444138, + "avgLongitude": 15.4608974 + }, + { + "id": "U6986", + "name": "Okřesaneč,rozc.", + "avgLatitude": 49.8486328, + "avgLongitude": 15.4617949 + }, + { + "id": "U6625", + "name": "Okřínek,hl.sil.", + "avgLatitude": 50.16471, + "avgLongitude": 15.1926031 + }, + { + "id": "U2584", + "name": "Okřínek,Srbce", + "avgLatitude": 50.1678772, + "avgLongitude": 15.2101345 + }, + { + "id": "U4885", + "name": "Olbramovice", + "avgLatitude": 49.66738, + "avgLongitude": 14.6243458 + }, + { + "id": "U6528", + "name": "Olbramovice,Křešice", + "avgLatitude": 49.6598129, + "avgLongitude": 14.609869 + }, + { + "id": "U5354", + "name": "Olbramovice,parcely", + "avgLatitude": 49.6712952, + "avgLongitude": 14.63144 + }, + { + "id": "U6529", + "name": "Olbramovice,rozc.Slavkov", + "avgLatitude": 49.6821442, + "avgLongitude": 14.5929775 + }, + { + "id": "U6531", + "name": "Olbramovice,rozc.Tomice II", + "avgLatitude": 49.68635, + "avgLongitude": 14.646677 + }, + { + "id": "U6526", + "name": "Olbramovice,STS", + "avgLatitude": 49.66249, + "avgLongitude": 14.6285458 + }, + { + "id": "U6530", + "name": "Olbramovice,Tomice II", + "avgLatitude": 49.6877136, + "avgLongitude": 14.6670694 + }, + { + "id": "U6525", + "name": "Olbramovice,u svatých", + "avgLatitude": 49.6732635, + "avgLongitude": 14.6386089 + }, + { + "id": "U6527", + "name": "Olbramovice,Veselka", + "avgLatitude": 49.6629639, + "avgLongitude": 14.624506 + }, + { + "id": "U31337", + "name": "Oldřichov", + "avgLatitude": 49.5576935, + "avgLongitude": 14.7546139 + }, + { + "id": "U31250", + "name": "Oldřichov,Těmice rozc.1.0", + "avgLatitude": 49.5474, + "avgLongitude": 14.75145 + }, + { + "id": "U1980", + "name": "Oleška", + "avgLatitude": 49.97271, + "avgLongitude": 14.9135265 + }, + { + "id": "U2146", + "name": "Oleška,Brník", + "avgLatitude": 49.9834137, + "avgLongitude": 14.9075947 + }, + { + "id": "U2307", + "name": "Oleška,Brník,U Rybníka", + "avgLatitude": 49.98264, + "avgLongitude": 14.9050913 + }, + { + "id": "U2148", + "name": "Oleška,Bulánka", + "avgLatitude": 49.9900932, + "avgLongitude": 14.9352837 + }, + { + "id": "U1981", + "name": "Oleška,Krymlov", + "avgLatitude": 49.95749, + "avgLongitude": 14.928031 + }, + { + "id": "U1982", + "name": "Oleška,Rozc.Krymlov", + "avgLatitude": 49.9698029, + "avgLongitude": 14.9319506 + }, + { + "id": "U9868", + "name": "Olešná", + "avgLatitude": 49.78083, + "avgLongitude": 13.8095589 + }, + { + "id": "U6789", + "name": "Olešná", + "avgLatitude": 50.12859, + "avgLongitude": 13.6969051 + }, + { + "id": "U6811", + "name": "Olešná,Kokrdy", + "avgLatitude": 50.12017, + "avgLongitude": 13.7135353 + }, + { + "id": "U31500", + "name": "Olešná,rozc.Těně", + "avgLatitude": 49.76033, + "avgLongitude": 13.7822151 + }, + { + "id": "U31124", + "name": "Olešnice,Levín", + "avgLatitude": 50.1342468, + "avgLongitude": 15.430872 + }, + { + "id": "U31125", + "name": "Olešnice,náves", + "avgLatitude": 50.1377869, + "avgLongitude": 15.4462948 + }, + { + "id": "U31126", + "name": "Olešnice,ObÚ", + "avgLatitude": 50.1426544, + "avgLongitude": 15.4451847 + }, + { + "id": "U1064", + "name": "Olgy Havlové", + "avgLatitude": 50.08744, + "avgLongitude": 14.4788647 + }, + { + "id": "U2918", + "name": "Olovnice", + "avgLatitude": 50.23501, + "avgLongitude": 14.2417412 + }, + { + "id": "U2919", + "name": "Olovnice zast.", + "avgLatitude": 50.2466545, + "avgLongitude": 14.2538223 + }, + { + "id": "U586", + "name": "Olšanská", + "avgLatitude": 50.08345, + "avgLongitude": 14.4649687 + }, + { + "id": "U515", + "name": "Olšanské hřbitovy", + "avgLatitude": 50.0779953, + "avgLongitude": 14.4669123 + }, + { + "id": "U516", + "name": "Olšanské náměstí", + "avgLatitude": 50.08257, + "avgLongitude": 14.45814 + }, + { + "id": "U9619", + "name": "Ondřejov,Dlážděná", + "avgLatitude": 49.9087219, + "avgLongitude": 14.785202 + }, + { + "id": "U2089", + "name": "Ondřejov,Hřbitov", + "avgLatitude": 49.8994, + "avgLongitude": 14.7875309 + }, + { + "id": "U2046", + "name": "Ondřejov,Náměstí", + "avgLatitude": 49.90461, + "avgLongitude": 14.7835217 + }, + { + "id": "U7142", + "name": "Ondřejov,škola", + "avgLatitude": 49.90542, + "avgLongitude": 14.7797518 + }, + { + "id": "U2041", + "name": "Ondřejov,Třemblat", + "avgLatitude": 49.92852, + "avgLongitude": 14.76268 + }, + { + "id": "U2112", + "name": "Ondřejov,Třemblat,K Myšlínu", + "avgLatitude": 49.9306068, + "avgLongitude": 14.7531338 + }, + { + "id": "U2040", + "name": "Ondřejov,Třemblat,Lipská", + "avgLatitude": 49.9361839, + "avgLongitude": 14.7581358 + }, + { + "id": "U2044", + "name": "Ondřejov,Třemblat,Rozc.Mnichovice", + "avgLatitude": 49.9161568, + "avgLongitude": 14.7642727 + }, + { + "id": "U2043", + "name": "Ondřejov,Třemblat,Rozc.Zvánovice", + "avgLatitude": 49.92692, + "avgLongitude": 14.7637215 + }, + { + "id": "U2059", + "name": "Ondřejov,Turkovice", + "avgLatitude": 49.9027367, + "avgLongitude": 14.7567873 + }, + { + "id": "U2168", + "name": "Ondřejov,Turkovická", + "avgLatitude": 49.9058228, + "avgLongitude": 14.7727184 + }, + { + "id": "U2045", + "name": "Ondřejov,U Pily", + "avgLatitude": 49.9088058, + "avgLongitude": 14.7739048 + }, + { + "id": "U9952", + "name": "Onomyšl", + "avgLatitude": 49.9010773, + "avgLongitude": 15.1232109 + }, + { + "id": "U6045", + "name": "Onomyšl,Křečovice", + "avgLatitude": 49.9073, + "avgLongitude": 15.1113262 + }, + { + "id": "U9953", + "name": "Onomyšl,Křečovice,hl.sil.", + "avgLatitude": 49.90025, + "avgLongitude": 15.1075287 + }, + { + "id": "U9936", + "name": "Onomyšl,Křečovice,rozc.", + "avgLatitude": 49.9151459, + "avgLongitude": 15.1141777 + }, + { + "id": "U9937", + "name": "Onomyšl,Miletín", + "avgLatitude": 49.9160538, + "avgLongitude": 15.1286688 + }, + { + "id": "U9938", + "name": "Onomyšl,Rozkoš", + "avgLatitude": 49.9160156, + "avgLongitude": 15.1369371 + }, + { + "id": "U517", + "name": "Opálová", + "avgLatitude": 50.0216675, + "avgLongitude": 14.3639879 + }, + { + "id": "U106", + "name": "Opatov", + "avgLatitude": 50.0276947, + "avgLongitude": 14.5084009 + }, + { + "id": "U7311", + "name": "Opatovice I", + "avgLatitude": 49.8547668, + "avgLongitude": 15.2483721 + }, + { + "id": "U1991", + "name": "Oplany", + "avgLatitude": 49.92445, + "avgLongitude": 14.8672638 + }, + { + "id": "U1992", + "name": "Oplany,Háj.", + "avgLatitude": 49.9244347, + "avgLongitude": 14.8811512 + }, + { + "id": "U2484", + "name": "Opočnice", + "avgLatitude": 50.172142, + "avgLongitude": 15.2575541 + }, + { + "id": "U2486", + "name": "Opočnice,jídelna", + "avgLatitude": 50.1758232, + "avgLongitude": 15.2593212 + }, + { + "id": "U2483", + "name": "Opočnice,rozc.Hradčany", + "avgLatitude": 50.16567, + "avgLongitude": 15.2593594 + }, + { + "id": "U9530", + "name": "Opočno u Loun", + "avgLatitude": 50.3125038, + "avgLongitude": 13.733922 + }, + { + "id": "U6753", + "name": "Opolany,Kanín", + "avgLatitude": 50.1237564, + "avgLongitude": 15.2008533 + }, + { + "id": "U6617", + "name": "Opolany,Opolánky", + "avgLatitude": 50.13317, + "avgLongitude": 15.2413187 + }, + { + "id": "U6618", + "name": "Opolany,Opolánky,Badra", + "avgLatitude": 50.1350555, + "avgLongitude": 15.2516747 + }, + { + "id": "U6616", + "name": "Opolany,Opolánky,k žel.zast.", + "avgLatitude": 50.1323624, + "avgLongitude": 15.2406254 + }, + { + "id": "U6756", + "name": "Opolany,Oškobrh", + "avgLatitude": 50.14374, + "avgLongitude": 15.2415447 + }, + { + "id": "U6747", + "name": "Opolany,u kostela", + "avgLatitude": 50.1305275, + "avgLongitude": 15.2207479 + }, + { + "id": "U7801", + "name": "Opolany,u mostu", + "avgLatitude": 50.12969, + "avgLongitude": 15.2164173 + }, + { + "id": "U6869", + "name": "Oráčov", + "avgLatitude": 50.11184, + "avgLongitude": 13.5483742 + }, + { + "id": "U9544", + "name": "Oráčov", + "avgLatitude": 50.1071968, + "avgLongitude": 13.5442343 + }, + { + "id": "U3299", + "name": "Ordovická", + "avgLatitude": 50.05999, + "avgLongitude": 14.3322172 + }, + { + "id": "U518", + "name": "Orionka", + "avgLatitude": 50.0756531, + "avgLongitude": 14.4594078 + }, + { + "id": "U521", + "name": "Ortenovo náměstí", + "avgLatitude": 50.10772, + "avgLongitude": 14.4478264 + }, + { + "id": "U1086", + "name": "Ořech", + "avgLatitude": 50.0215225, + "avgLongitude": 14.2969246 + }, + { + "id": "U1204", + "name": "Ořech,K Ovčínu", + "avgLatitude": 50.01587, + "avgLongitude": 14.2923889 + }, + { + "id": "U1185", + "name": "Ořech,u sokolovny", + "avgLatitude": 50.0208359, + "avgLongitude": 14.2948589 + }, + { + "id": "U1205", + "name": "Ořech,u školy", + "avgLatitude": 50.0198, + "avgLongitude": 14.2963333 + }, + { + "id": "U519", + "name": "Ořechovka", + "avgLatitude": 50.0928764, + "avgLongitude": 14.3792133 + }, + { + "id": "U1089", + "name": "Ořešská", + "avgLatitude": 50.03042, + "avgLongitude": 14.3049583 + }, + { + "id": "U3034", + "name": "Osadní", + "avgLatitude": 50.1031265, + "avgLongitude": 14.4465313 + }, + { + "id": "U94", + "name": "Osecká", + "avgLatitude": 50.14633, + "avgLongitude": 14.4485426 + }, + { + "id": "U4760", + "name": "Osečany", + "avgLatitude": 49.69794, + "avgLongitude": 14.4375429 + }, + { + "id": "U7791", + "name": "Osečany,Podskalí", + "avgLatitude": 49.6947174, + "avgLongitude": 14.4375324 + }, + { + "id": "U7792", + "name": "Osečany,rozc.Paseky", + "avgLatitude": 49.7064438, + "avgLongitude": 14.4513206 + }, + { + "id": "U7793", + "name": "Osečany,Velběhy", + "avgLatitude": 49.71302, + "avgLongitude": 14.4573755 + }, + { + "id": "U9590", + "name": "Oseček", + "avgLatitude": 50.10102, + "avgLongitude": 15.14624 + }, + { + "id": "U9591", + "name": "Oseček,V Lese", + "avgLatitude": 50.1118, + "avgLongitude": 15.1322231 + }, + { + "id": "U9827", + "name": "Osek", + "avgLatitude": 49.8202667, + "avgLongitude": 13.8646088 + }, + { + "id": "U31773", + "name": "Osek", + "avgLatitude": 50.46444, + "avgLongitude": 15.1554642 + }, + { + "id": "U9828", + "name": "Osek,u Anýže", + "avgLatitude": 49.81969, + "avgLongitude": 13.8584023 + }, + { + "id": "U9826", + "name": "Osek,Vystrkov", + "avgLatitude": 49.8249054, + "avgLongitude": 13.8728237 + }, + { + "id": "U9574", + "name": "Oskořínek", + "avgLatitude": 50.2402573, + "avgLongitude": 15.082262 + }, + { + "id": "U9575", + "name": "Oskořínek,U Pomníku", + "avgLatitude": 50.24328, + "avgLongitude": 15.0878525 + }, + { + "id": "U2920", + "name": "Osov", + "avgLatitude": 49.8363075, + "avgLongitude": 14.0816174 + }, + { + "id": "U9040", + "name": "Osov,Osovec", + "avgLatitude": 49.8502769, + "avgLongitude": 14.0920506 + }, + { + "id": "U9041", + "name": "Osov,škola", + "avgLatitude": 49.8478661, + "avgLongitude": 14.0849113 + }, + { + "id": "U9042", + "name": "Osov,u zámku I", + "avgLatitude": 49.84551, + "avgLongitude": 14.0804787 + }, + { + "id": "U3152", + "name": "Ostrá", + "avgLatitude": 50.18277, + "avgLongitude": 14.8862419 + }, + { + "id": "U2801", + "name": "Ostrá", + "avgLatitude": 50.18785, + "avgLongitude": 14.89129 + }, + { + "id": "U3153", + "name": "Ostrá,kino", + "avgLatitude": 50.18063, + "avgLongitude": 14.89356 + }, + { + "id": "U3154", + "name": "Ostrá,náves", + "avgLatitude": 50.1809464, + "avgLongitude": 14.8928223 + }, + { + "id": "U3155", + "name": "Ostrá,obora", + "avgLatitude": 50.1833649, + "avgLongitude": 14.877285 + }, + { + "id": "U3156", + "name": "Ostrá,Šnepov", + "avgLatitude": 50.18013, + "avgLongitude": 14.9237862 + }, + { + "id": "U3157", + "name": "Ostrá,Šnepov,odb.", + "avgLatitude": 50.1833229, + "avgLongitude": 14.9101114 + }, + { + "id": "U522", + "name": "Ostrčilovo náměstí", + "avgLatitude": 50.0650635, + "avgLongitude": 14.4247913 + }, + { + "id": "U6774", + "name": "Ostrov", + "avgLatitude": 49.6661263, + "avgLongitude": 14.8514948 + }, + { + "id": "U9162", + "name": "Ostrov", + "avgLatitude": 49.610466, + "avgLongitude": 14.0117054 + }, + { + "id": "U3289", + "name": "Ostrov u Tochovic", + "avgLatitude": 49.61528, + "avgLongitude": 14.0089045 + }, + { + "id": "U6775", + "name": "Ostrov,rozc.", + "avgLatitude": 49.67279, + "avgLongitude": 14.8495531 + }, + { + "id": "U7318", + "name": "Ostředek", + "avgLatitude": 49.83465, + "avgLongitude": 14.8306465 + }, + { + "id": "U7795", + "name": "Ostředek,Mžižovice", + "avgLatitude": 49.8344, + "avgLongitude": 14.8217373 + }, + { + "id": "U7796", + "name": "Ostředek,Třemošnice", + "avgLatitude": 49.8177338, + "avgLongitude": 14.8668814 + }, + { + "id": "U1342", + "name": "Otakara Vrby", + "avgLatitude": 50.0766029, + "avgLongitude": 14.6033554 + }, + { + "id": "U524", + "name": "Otínská", + "avgLatitude": 49.9824371, + "avgLongitude": 14.3559074 + }, + { + "id": "U9855", + "name": "Otmíče", + "avgLatitude": 49.8677368, + "avgLongitude": 13.9476719 + }, + { + "id": "U2205", + "name": "Otradovice", + "avgLatitude": 50.2060966, + "avgLongitude": 14.7459993 + }, + { + "id": "U9068", + "name": "Otročiněves,I", + "avgLatitude": 49.9757919, + "avgLongitude": 13.974844 + }, + { + "id": "U9070", + "name": "Otročiněves,Krušná Hora", + "avgLatitude": 49.98285, + "avgLongitude": 13.9577951 + }, + { + "id": "U9069", + "name": "Otročiněves,Na Drahách", + "avgLatitude": 49.9809265, + "avgLongitude": 13.9658127 + }, + { + "id": "U7432", + "name": "Otročiněves,náves", + "avgLatitude": 49.98066, + "avgLongitude": 13.9785328 + }, + { + "id": "U2887", + "name": "Otvovice", + "avgLatitude": 50.2114754, + "avgLongitude": 14.27298 + }, + { + "id": "U3226", + "name": "Otvovice,sklárna", + "avgLatitude": 50.21044, + "avgLongitude": 14.2652464 + }, + { + "id": "U7797", + "name": "Ouběnice", + "avgLatitude": 49.7185745, + "avgLongitude": 14.1604729 + }, + { + "id": "U7798", + "name": "Ouběnice,Ostrov", + "avgLatitude": 49.7204666, + "avgLongitude": 14.1472607 + }, + { + "id": "U6613", + "name": "Ovčáry", + "avgLatitude": 50.062912, + "avgLongitude": 15.2389154 + }, + { + "id": "U4186", + "name": "Ovčáry", + "avgLatitude": 50.2517929, + "avgLongitude": 14.6130867 + }, + { + "id": "U6612", + "name": "Ovčáry,ZD", + "avgLatitude": 50.06009, + "avgLongitude": 15.23192 + }, + { + "id": "U304", + "name": "Ovčí hájek", + "avgLatitude": 50.04634, + "avgLongitude": 14.3476667 + }, + { + "id": "U7799", + "name": "Paběnice", + "avgLatitude": 49.83713, + "avgLongitude": 15.3044672 + }, + { + "id": "U7800", + "name": "Paběnice,ObÚ", + "avgLatitude": 49.8421326, + "avgLongitude": 15.3023214 + }, + { + "id": "U7101", + "name": "Paběnice,rozc.", + "avgLatitude": 49.85626, + "avgLongitude": 15.3035221 + }, + { + "id": "U31058", + "name": "Paceřice", + "avgLatitude": 50.6179123, + "avgLongitude": 15.1104126 + }, + { + "id": "U31061", + "name": "Paceřice,Husa,hl.sil.", + "avgLatitude": 50.621212, + "avgLongitude": 15.1085119 + }, + { + "id": "U31060", + "name": "Paceřice,Rohanka", + "avgLatitude": 50.6268539, + "avgLongitude": 15.10901 + }, + { + "id": "U1348", + "name": "Paceřická", + "avgLatitude": 50.1195068, + "avgLongitude": 14.6109314 + }, + { + "id": "U31774", + "name": "Pacov,aut.nádr.", + "avgLatitude": 49.4700928, + "avgLongitude": 15.0036278 + }, + { + "id": "U31918", + "name": "Pacov,Hrádek SOMPO", + "avgLatitude": 49.49421, + "avgLongitude": 15.0323048 + }, + { + "id": "U31780", + "name": "Pacov,Hrádek statek", + "avgLatitude": 49.4918633, + "avgLongitude": 15.0255852 + }, + { + "id": "U31776", + "name": "Pacov,žel.st.", + "avgLatitude": 49.46026, + "avgLongitude": 15.0174637 + }, + { + "id": "U9119", + "name": "Páleč", + "avgLatitude": 50.3116226, + "avgLongitude": 14.0491447 + }, + { + "id": "U529", + "name": "Palmovka", + "avgLatitude": 50.1038132, + "avgLongitude": 14.4749022 + }, + { + "id": "U530", + "name": "Palouček", + "avgLatitude": 50.0614929, + "avgLongitude": 14.43721 + }, + { + "id": "U2262", + "name": "Panenské Břežany", + "avgLatitude": 50.21449, + "avgLongitude": 14.4405212 + }, + { + "id": "U2261", + "name": "Panenské Břežany,Zámek", + "avgLatitude": 50.2115555, + "avgLongitude": 14.4365778 + }, + { + "id": "U4850", + "name": "Panenský Týnec", + "avgLatitude": 50.2948456, + "avgLongitude": 13.9166508 + }, + { + "id": "U1054", + "name": "Pánkova", + "avgLatitude": 50.0182076, + "avgLongitude": 14.6492844 + }, + { + "id": "U385", + "name": "Pankrác", + "avgLatitude": 50.0510979, + "avgLongitude": 14.4393005 + }, + { + "id": "U6910", + "name": "Panoší Újezd", + "avgLatitude": 50.03586, + "avgLongitude": 13.7162418 + }, + { + "id": "U6909", + "name": "Panoší Újezd,u pomníku", + "avgLatitude": 50.0284653, + "avgLongitude": 13.70521 + }, + { + "id": "U2789", + "name": "Park Rajská zahrada", + "avgLatitude": 50.08262, + "avgLongitude": 14.4440327 + }, + { + "id": "U7406", + "name": "Parkoviště Trojský most", + "avgLatitude": 50.1156464, + "avgLongitude": 14.4367113 + }, + { + "id": "U2959", + "name": "Pařížská", + "avgLatitude": 50.0894279, + "avgLongitude": 14.4191122 + }, + { + "id": "U9987", + "name": "Pašinka", + "avgLatitude": 49.9964142, + "avgLongitude": 15.1863031 + }, + { + "id": "U6718", + "name": "Pátek,náves", + "avgLatitude": 50.16422, + "avgLongitude": 15.1588373 + }, + { + "id": "U6741", + "name": "Pátek,Nové Mlýny", + "avgLatitude": 50.15444, + "avgLongitude": 15.1781015 + }, + { + "id": "U6717", + "name": "Pátek,u hřiště", + "avgLatitude": 50.1608658, + "avgLongitude": 15.1566334 + }, + { + "id": "U6719", + "name": "Pátek,u váhy", + "avgLatitude": 50.1686935, + "avgLongitude": 15.1556864 + }, + { + "id": "U1037", + "name": "Pavelkova", + "avgLatitude": 50, + "avgLongitude": 14.427351 + }, + { + "id": "U6922", + "name": "Pavlíkov,Chlum", + "avgLatitude": 50.0677223, + "avgLongitude": 13.776865 + }, + { + "id": "U6911", + "name": "Pavlíkov,křiž.", + "avgLatitude": 50.0418167, + "avgLongitude": 13.7355213 + }, + { + "id": "U6919", + "name": "Pavlíkov,Pošta", + "avgLatitude": 50.0569839, + "avgLongitude": 13.7366962 + }, + { + "id": "U6913", + "name": "Pavlíkov,Skřivaň", + "avgLatitude": 50.0239754, + "avgLongitude": 13.7642441 + }, + { + "id": "U6912", + "name": "Pavlíkov,Tytry", + "avgLatitude": 50.0299263, + "avgLongitude": 13.7357836 + }, + { + "id": "U6920", + "name": "Pavlíkov,Za branou", + "avgLatitude": 50.0616837, + "avgLongitude": 13.7419538 + }, + { + "id": "U6006", + "name": "Pavlišovská", + "avgLatitude": 50.1113434, + "avgLongitude": 14.6224842 + }, + { + "id": "U2835", + "name": "Pavlov", + "avgLatitude": 50.09502, + "avgLongitude": 14.1658049 + }, + { + "id": "U6038", + "name": "Pavlovice", + "avgLatitude": 49.7157364, + "avgLongitude": 14.9356165 + }, + { + "id": "U6037", + "name": "Pavlovice,rozc.", + "avgLatitude": 49.7145462, + "avgLongitude": 14.9293518 + }, + { + "id": "U535", + "name": "Pávovské náměstí", + "avgLatitude": 50.09321, + "avgLongitude": 14.5408592 + }, + { + "id": "U2863", + "name": "Pecerady", + "avgLatitude": 49.83358, + "avgLongitude": 14.6259632 + }, + { + "id": "U7802", + "name": "Pečice", + "avgLatitude": 49.6013145, + "avgLongitude": 14.1053934 + }, + { + "id": "U6238", + "name": "Pěčice", + "avgLatitude": 50.349823, + "avgLongitude": 15.0041943 + }, + { + "id": "U7803", + "name": "Pečice,Drsník", + "avgLatitude": 49.62753, + "avgLongitude": 14.1011019 + }, + { + "id": "U7804", + "name": "Pečice,Pečičky", + "avgLatitude": 49.61615, + "avgLongitude": 14.1025829 + }, + { + "id": "U7729", + "name": "Pečice,Pečičky,Luh", + "avgLatitude": 49.6208839, + "avgLongitude": 14.0856276 + }, + { + "id": "U7805", + "name": "Pečice,Pečičky,u Štáfů", + "avgLatitude": 49.617424, + "avgLongitude": 14.0927572 + }, + { + "id": "U1442", + "name": "Pečky", + "avgLatitude": 50.0898361, + "avgLongitude": 15.0272875 + }, + { + "id": "U9592", + "name": "Pečky,Hynkův mlýn", + "avgLatitude": 50.0820236, + "avgLongitude": 15.0244484 + }, + { + "id": "U2590", + "name": "Pečky,Kult.dům", + "avgLatitude": 50.0921021, + "avgLongitude": 15.033432 + }, + { + "id": "U9594", + "name": "Pečky,Tahiti", + "avgLatitude": 50.0846, + "avgLongitude": 15.026392 + }, + { + "id": "U1443", + "name": "Pečky,Tona", + "avgLatitude": 50.0934029, + "avgLongitude": 15.0271616 + }, + { + "id": "U1444", + "name": "Pečky,Velké Chvalovice", + "avgLatitude": 50.0979538, + "avgLongitude": 15.0142365 + }, + { + "id": "U431", + "name": "Pekárenská", + "avgLatitude": 50.0490723, + "avgLongitude": 14.4633551 + }, + { + "id": "U536", + "name": "Pelc Tyrolka", + "avgLatitude": 50.1159363, + "avgLongitude": 14.4438457 + }, + { + "id": "U31783", + "name": "Pelhřimov,aut.nádr.", + "avgLatitude": 49.42514, + "avgLongitude": 15.2233515 + }, + { + "id": "U31789", + "name": "Pelhřimov,Čakovice,rozc.", + "avgLatitude": 49.45827, + "avgLongitude": 15.1842117 + }, + { + "id": "U31790", + "name": "Pelhřimov,Hodějovice,rozc.", + "avgLatitude": 49.44644, + "avgLongitude": 15.1964264 + }, + { + "id": "U31784", + "name": "Pelhřimov,hotel REKREA", + "avgLatitude": 49.4314537, + "avgLongitude": 15.2274542 + }, + { + "id": "U31787", + "name": "Pelhřimov,Pražská", + "avgLatitude": 49.43551, + "avgLongitude": 15.2181349 + }, + { + "id": "U537", + "name": "Peluněk", + "avgLatitude": 49.969, + "avgLongitude": 14.375783 + }, + { + "id": "U538", + "name": "Perlit", + "avgLatitude": 50.0855255, + "avgLongitude": 14.5377684 + }, + { + "id": "U3018", + "name": "Pernerova", + "avgLatitude": 50.0887451, + "avgLongitude": 14.4431782 + }, + { + "id": "U9694", + "name": "Perspektivní", + "avgLatitude": 50.0720024, + "avgLongitude": 14.5575294 + }, + { + "id": "U7250", + "name": "Pertoltice", + "avgLatitude": 49.7557144, + "avgLongitude": 15.1815567 + }, + { + "id": "U7259", + "name": "Pertoltice,Laziště", + "avgLatitude": 49.7506332, + "avgLongitude": 15.1626015 + }, + { + "id": "U7260", + "name": "Pertoltice,Machovice", + "avgLatitude": 49.7532578, + "avgLongitude": 15.1973791 + }, + { + "id": "U7249", + "name": "Pertoltice,mlýn", + "avgLatitude": 49.759716, + "avgLongitude": 15.17639 + }, + { + "id": "U4873", + "name": "Peruc", + "avgLatitude": 50.3359222, + "avgLongitude": 13.958869 + }, + { + "id": "U4196", + "name": "Peruc", + "avgLatitude": 50.3420448, + "avgLongitude": 13.9610882 + }, + { + "id": "U540", + "name": "Perunova", + "avgLatitude": 50.0753632, + "avgLongitude": 14.4543734 + }, + { + "id": "U1555", + "name": "Pětihosty", + "avgLatitude": 49.8857574, + "avgLongitude": 14.7044048 + }, + { + "id": "U3398", + "name": "Pětikozly", + "avgLatitude": 50.41111, + "avgLongitude": 14.8123169 + }, + { + "id": "U6272", + "name": "Petkovy,Čížovky", + "avgLatitude": 50.401474, + "avgLongitude": 15.078083 + }, + { + "id": "U4492", + "name": "Petkovy,dolní", + "avgLatitude": 50.41468, + "avgLongitude": 15.0681438 + }, + { + "id": "U6279", + "name": "Petkovy,horní", + "avgLatitude": 50.41194, + "avgLongitude": 15.07789 + }, + { + "id": "U32107", + "name": "Petrohrad,rozc.", + "avgLatitude": 50.1388245, + "avgLongitude": 13.43634 + }, + { + "id": "U7807", + "name": "Petroupim", + "avgLatitude": 49.8095665, + "avgLongitude": 14.7535925 + }, + { + "id": "U7809", + "name": "Petroupim,Petroupec", + "avgLatitude": 49.8114662, + "avgLongitude": 14.7597084 + }, + { + "id": "U7810", + "name": "Petroupim,Sembratec", + "avgLatitude": 49.81077, + "avgLongitude": 14.7718391 + }, + { + "id": "U1356", + "name": "Petrov", + "avgLatitude": 49.88701, + "avgLongitude": 14.4321156 + }, + { + "id": "U2859", + "name": "Petrov u Prahy", + "avgLatitude": 49.87934, + "avgLongitude": 14.4288549 + }, + { + "id": "U1359", + "name": "Petrov,Bohuliby", + "avgLatitude": 49.8856964, + "avgLongitude": 14.4706535 + }, + { + "id": "U1360", + "name": "Petrov,Bohuliby,Obora", + "avgLatitude": 49.89128, + "avgLongitude": 14.4548206 + }, + { + "id": "U1357", + "name": "Petrov,Chlomek", + "avgLatitude": 49.8882828, + "avgLongitude": 14.4137554 + }, + { + "id": "U1361", + "name": "Petrov,U Ručiček", + "avgLatitude": 49.88816, + "avgLongitude": 14.4416752 + }, + { + "id": "U1358", + "name": "Petrov,Ve Vilách", + "avgLatitude": 49.8890839, + "avgLongitude": 14.4220009 + }, + { + "id": "U2858", + "name": "Petrov-Chlomek", + "avgLatitude": 49.8767776, + "avgLongitude": 14.4100962 + }, + { + "id": "U7811", + "name": "Petrovice", + "avgLatitude": 49.5540657, + "avgLongitude": 14.3372469 + }, + { + "id": "U6853", + "name": "Petrovice", + "avgLatitude": 50.06701, + "avgLongitude": 13.6382093 + }, + { + "id": "U7265", + "name": "Petrovice I", + "avgLatitude": 49.80899, + "avgLongitude": 15.296875 + }, + { + "id": "U7264", + "name": "Petrovice I,rozc.", + "avgLatitude": 49.8136826, + "avgLongitude": 15.2969437 + }, + { + "id": "U7266", + "name": "Petrovice I,Újezdec", + "avgLatitude": 49.827198, + "avgLongitude": 15.29934 + }, + { + "id": "U7134", + "name": "Petrovice II", + "avgLatitude": 49.81009, + "avgLongitude": 15.0587673 + }, + { + "id": "U7132", + "name": "Petrovice II,Boštice", + "avgLatitude": 49.8246078, + "avgLongitude": 15.0647583 + }, + { + "id": "U7136", + "name": "Petrovice II,Losiny", + "avgLatitude": 49.79789, + "avgLongitude": 15.05705 + }, + { + "id": "U7131", + "name": "Petrovice II,Nové Nespeřice", + "avgLatitude": 49.8300247, + "avgLongitude": 15.0677481 + }, + { + "id": "U7140", + "name": "Petrovice II,Stará Huť", + "avgLatitude": 49.8280945, + "avgLongitude": 15.08738 + }, + { + "id": "U7139", + "name": "Petrovice II,Staré Nespeřice", + "avgLatitude": 49.83294, + "avgLongitude": 15.0861626 + }, + { + "id": "U7133", + "name": "Petrovice II,Tlučeň", + "avgLatitude": 49.82055, + "avgLongitude": 15.0612907 + }, + { + "id": "U7816", + "name": "Petrovice,Kojetín", + "avgLatitude": 49.5436172, + "avgLongitude": 14.34757 + }, + { + "id": "U7818", + "name": "Petrovice,Kuní", + "avgLatitude": 49.5695038, + "avgLongitude": 14.3174791 + }, + { + "id": "U7819", + "name": "Petrovice,Kuníček", + "avgLatitude": 49.56268, + "avgLongitude": 14.318675 + }, + { + "id": "U7820", + "name": "Petrovice,Mašov,rozc.", + "avgLatitude": 49.53684, + "avgLongitude": 14.3509426 + }, + { + "id": "U7821", + "name": "Petrovice,Obděnice", + "avgLatitude": 49.5515, + "avgLongitude": 14.3763418 + }, + { + "id": "U6854", + "name": "Petrovice,odb.Nový Dvůr", + "avgLatitude": 50.07566, + "avgLongitude": 13.6325808 + }, + { + "id": "U7822", + "name": "Petrovice,Radešice", + "avgLatitude": 49.54899, + "avgLongitude": 14.39831 + }, + { + "id": "U7823", + "name": "Petrovice,Radešice,most", + "avgLatitude": 49.5519867, + "avgLongitude": 14.3974552 + }, + { + "id": "U7824", + "name": "Petrovice,Skoupý", + "avgLatitude": 49.5767937, + "avgLongitude": 14.34558 + }, + { + "id": "U7825", + "name": "Petrovice,Skoupý,mlýn", + "avgLatitude": 49.5659637, + "avgLongitude": 14.34096 + }, + { + "id": "U7826", + "name": "Petrovice,Skoupý,rozc.", + "avgLatitude": 49.57848, + "avgLongitude": 14.3563137 + }, + { + "id": "U6852", + "name": "Petrovice,statek", + "avgLatitude": 50.0673676, + "avgLongitude": 13.6471663 + }, + { + "id": "U7827", + "name": "Petrovice,Týnčany", + "avgLatitude": 49.58326, + "avgLongitude": 14.3323479 + }, + { + "id": "U7814", + "name": "Petrovice,Týnčany,rozc.", + "avgLatitude": 49.5719147, + "avgLongitude": 14.3282852 + }, + { + "id": "U7828", + "name": "Petrovice,Vilasova Lhota", + "avgLatitude": 49.55737, + "avgLongitude": 14.3535175 + }, + { + "id": "U7815", + "name": "Petrovice,Žemličkova Lhota", + "avgLatitude": 49.5655, + "avgLongitude": 14.36198 + }, + { + "id": "U7813", + "name": "Petrovice,Žemličkova Lhota,rozc.Obděnice", + "avgLatitude": 49.5609741, + "avgLongitude": 14.3559656 + }, + { + "id": "U2956", + "name": "Petrské náměstí", + "avgLatitude": 50.0912933, + "avgLongitude": 14.43224 + }, + { + "id": "U1036", + "name": "Petržílova", + "avgLatitude": 49.9990425, + "avgLongitude": 14.4232168 + }, + { + "id": "U1563", + "name": "Petříkov", + "avgLatitude": 49.92679, + "avgLongitude": 14.6155205 + }, + { + "id": "U1871", + "name": "Petříkov,Radimovice", + "avgLatitude": 49.9363022, + "avgLongitude": 14.6170559 + }, + { + "id": "U1562", + "name": "Petříkov,rozc.", + "avgLatitude": 49.9208374, + "avgLongitude": 14.62183 + }, + { + "id": "U507", + "name": "Petřiny", + "avgLatitude": 50.0875053, + "avgLongitude": 14.344923 + }, + { + "id": "U1116", + "name": "Petýrkova", + "avgLatitude": 50.03055, + "avgLongitude": 14.4876432 + }, + { + "id": "U4770", + "name": "Pchery", + "avgLatitude": 50.1922836, + "avgLongitude": 14.1151028 + }, + { + "id": "U4806", + "name": "Pchery,Humny", + "avgLatitude": 50.1889877, + "avgLongitude": 14.1104221 + }, + { + "id": "U4769", + "name": "Pchery,ObÚ", + "avgLatitude": 50.19157, + "avgLongitude": 14.11442 + }, + { + "id": "U4771", + "name": "Pchery,rozc.Jemníky", + "avgLatitude": 50.1969528, + "avgLongitude": 14.1202316 + }, + { + "id": "U4768", + "name": "Pchery,Theodor", + "avgLatitude": 50.1853027, + "avgLongitude": 14.1342812 + }, + { + "id": "U542", + "name": "Picassova", + "avgLatitude": 50.0347862, + "avgLongitude": 14.5942554 + }, + { + "id": "U9633", + "name": "Pičín", + "avgLatitude": 49.7454453, + "avgLongitude": 14.0575943 + }, + { + "id": "U9634", + "name": "Pičín,Revoluční", + "avgLatitude": 49.74131, + "avgLongitude": 14.0539141 + }, + { + "id": "U9632", + "name": "Pičín,U Hřbitova", + "avgLatitude": 49.7503662, + "avgLongitude": 14.0607319 + }, + { + "id": "U9635", + "name": "Pičín,Žírovy", + "avgLatitude": 49.7271, + "avgLongitude": 14.0478039 + }, + { + "id": "U4105", + "name": "Pilovská", + "avgLatitude": 50.08194, + "avgLongitude": 14.64875 + }, + { + "id": "U543", + "name": "Písečná", + "avgLatitude": 50.12574, + "avgLongitude": 14.4435148 + }, + { + "id": "U31794", + "name": "Písek,aut.nádr.", + "avgLatitude": 49.29932, + "avgLongitude": 14.1460876 + }, + { + "id": "U31796", + "name": "Písek,Pražská", + "avgLatitude": 49.31403, + "avgLongitude": 14.1392355 + }, + { + "id": "U31923", + "name": "Písek,Sedláčkova", + "avgLatitude": 49.31333, + "avgLongitude": 14.1601686 + }, + { + "id": "U1157", + "name": "Písková", + "avgLatitude": 50.0030823, + "avgLongitude": 14.4175758 + }, + { + "id": "U3384", + "name": "Písková Lhota", + "avgLatitude": 50.3653946, + "avgLongitude": 14.87682 + }, + { + "id": "U2575", + "name": "Písková Lhota", + "avgLatitude": 50.13105, + "avgLongitude": 15.0698805 + }, + { + "id": "U3258", + "name": "Písková Lhota,hl.sil.", + "avgLatitude": 50.375473, + "avgLongitude": 14.8865814 + }, + { + "id": "U2592", + "name": "Písková Lhota,rozc.Hořátev", + "avgLatitude": 50.13187, + "avgLongitude": 15.0607243 + }, + { + "id": "U9298", + "name": "Písková Lhota,Zámostí", + "avgLatitude": 50.37378, + "avgLongitude": 14.872839 + }, + { + "id": "U545", + "name": "Písnice", + "avgLatitude": 49.99116, + "avgLongitude": 14.4685125 + }, + { + "id": "U2595", + "name": "Písty", + "avgLatitude": 50.16409, + "avgLongitude": 15.0030174 + }, + { + "id": "U2594", + "name": "Písty,Temac", + "avgLatitude": 50.1591835, + "avgLongitude": 15.0095654 + }, + { + "id": "U875", + "name": "Píškova", + "avgLatitude": 50.04116, + "avgLongitude": 14.3343515 + }, + { + "id": "U31797", + "name": "Píšť", + "avgLatitude": 49.60314, + "avgLongitude": 15.2044277 + }, + { + "id": "U31604", + "name": "Píšť,Rachyně", + "avgLatitude": 49.6072845, + "avgLongitude": 15.1901073 + }, + { + "id": "U31798", + "name": "Píšť,Vranice", + "avgLatitude": 49.6066666, + "avgLongitude": 15.2128143 + }, + { + "id": "U547", + "name": "Pitkovice", + "avgLatitude": 50.0228, + "avgLongitude": 14.5783339 + }, + { + "id": "U31441", + "name": "Planá n.Luž.,nám.", + "avgLatitude": 49.35317, + "avgLongitude": 14.7029057 + }, + { + "id": "U548", + "name": "Plaňanská", + "avgLatitude": 50.0817642, + "avgLongitude": 14.4999046 + }, + { + "id": "U2923", + "name": "Plaňany", + "avgLatitude": 50.04945, + "avgLongitude": 15.0161676 + }, + { + "id": "U2924", + "name": "Plaňany zast.", + "avgLatitude": 50.0456161, + "avgLongitude": 15.0239735 + }, + { + "id": "U4944", + "name": "Plaňany,Blinka", + "avgLatitude": 50.0391769, + "avgLongitude": 15.0607538 + }, + { + "id": "U4945", + "name": "Plaňany,Hradenín", + "avgLatitude": 50.0288429, + "avgLongitude": 15.0422964 + }, + { + "id": "U4207", + "name": "Plaňany,Náměstí", + "avgLatitude": 50.0509338, + "avgLongitude": 15.0295248 + }, + { + "id": "U4946", + "name": "Plaňany,Poboří", + "avgLatitude": 50.0243568, + "avgLongitude": 15.0492582 + }, + { + "id": "U4936", + "name": "Plaňany,Škola", + "avgLatitude": 50.05157, + "avgLongitude": 15.0294514 + }, + { + "id": "U1181", + "name": "Plánická", + "avgLatitude": 49.9920464, + "avgLongitude": 14.3654413 + }, + { + "id": "U1035", + "name": "Platónova", + "avgLatitude": 49.9987946, + "avgLongitude": 14.4167595 + }, + { + "id": "U31297", + "name": "Plavy,křiž.", + "avgLatitude": 50.7053757, + "avgLongitude": 15.3179016 + }, + { + "id": "U6233", + "name": "Plazy,u mlýna", + "avgLatitude": 50.4105225, + "avgLongitude": 14.9767494 + }, + { + "id": "U6231", + "name": "Plazy,Valy", + "avgLatitude": 50.4271164, + "avgLongitude": 14.9744081 + }, + { + "id": "U4889", + "name": "Pletený Újezd", + "avgLatitude": 50.10766, + "avgLongitude": 14.1156693 + }, + { + "id": "U4888", + "name": "Pletený Újezd,křižovatka", + "avgLatitude": 50.118, + "avgLongitude": 14.1073551 + }, + { + "id": "U9230", + "name": "Plchov", + "avgLatitude": 50.2549667, + "avgLongitude": 13.9859238 + }, + { + "id": "U1068", + "name": "Plošná", + "avgLatitude": 50.0684662, + "avgLongitude": 14.5175323 + }, + { + "id": "U4155", + "name": "Plužiny", + "avgLatitude": 49.8785858, + "avgLongitude": 14.8754158 + }, + { + "id": "U6157", + "name": "Plužná", + "avgLatitude": 50.47453, + "avgLongitude": 14.8050594 + }, + { + "id": "U550", + "name": "Plynárna Michle", + "avgLatitude": 50.0565262, + "avgLongitude": 14.4649534 + }, + { + "id": "U31800", + "name": "Plzeň,Rozcestí Černice", + "avgLatitude": 49.69825, + "avgLongitude": 13.42627 + }, + { + "id": "U31924", + "name": "Plzeň,Slovany", + "avgLatitude": 49.7236176, + "avgLongitude": 13.4009438 + }, + { + "id": "U31799", + "name": "Plzeň,Terminál Hlavní nádraží", + "avgLatitude": 49.7444, + "avgLongitude": 13.3883286 + }, + { + "id": "U553", + "name": "Plzeňka", + "avgLatitude": 50.0635834, + "avgLongitude": 14.4087677 + }, + { + "id": "U9595", + "name": "Pňov-Předhradí,Klipec", + "avgLatitude": 50.0748672, + "avgLongitude": 15.1375771 + }, + { + "id": "U9596", + "name": "Pňov-Předhradí,Pňov", + "avgLatitude": 50.08515, + "avgLongitude": 15.1478405 + }, + { + "id": "U9597", + "name": "Pňov-Předhradí,Předhradí", + "avgLatitude": 50.0923462, + "avgLongitude": 15.1467381 + }, + { + "id": "U387", + "name": "Pobřežní cesta", + "avgLatitude": 50.0339737, + "avgLongitude": 14.40784 + }, + { + "id": "U7837", + "name": "Počaply", + "avgLatitude": 49.5380478, + "avgLongitude": 13.9832726 + }, + { + "id": "U7838", + "name": "Počepice", + "avgLatitude": 49.5954742, + "avgLongitude": 14.3822556 + }, + { + "id": "U7839", + "name": "Počepice,hřiště", + "avgLatitude": 49.5977249, + "avgLongitude": 14.3835363 + }, + { + "id": "U7842", + "name": "Počepice,Oukřtalov", + "avgLatitude": 49.5844841, + "avgLongitude": 14.37913 + }, + { + "id": "U7840", + "name": "Počepice,Rovina", + "avgLatitude": 49.6021347, + "avgLongitude": 14.4045115 + }, + { + "id": "U7841", + "name": "Počepice,Rovina,Veselíčko", + "avgLatitude": 49.58921, + "avgLongitude": 14.40404 + }, + { + "id": "U555", + "name": "Počeradská", + "avgLatitude": 50.1392365, + "avgLongitude": 14.451767 + }, + { + "id": "U415", + "name": "Pod Dálnicí", + "avgLatitude": 50.045, + "avgLongitude": 14.4615936 + }, + { + "id": "U468", + "name": "Pod Děvínem", + "avgLatitude": 50.0533447, + "avgLongitude": 14.4056892 + }, + { + "id": "U556", + "name": "Pod Hájem", + "avgLatitude": 50.1246834, + "avgLongitude": 14.3814259 + }, + { + "id": "U1272", + "name": "Pod Hradem", + "avgLatitude": 50.03824, + "avgLongitude": 14.6376877 + }, + { + "id": "U1131", + "name": "Pod Chodovem", + "avgLatitude": 50.035614, + "avgLongitude": 14.4939289 + }, + { + "id": "U559", + "name": "Pod Jezerkou", + "avgLatitude": 50.0580978, + "avgLongitude": 14.4500942 + }, + { + "id": "U560", + "name": "Pod Karlovem", + "avgLatitude": 50.0691681, + "avgLongitude": 14.4327431 + }, + { + "id": "U561", + "name": "Pod Kesnerkou", + "avgLatitude": 50.05929, + "avgLongitude": 14.4030619 + }, + { + "id": "U562", + "name": "Pod Konvářkou", + "avgLatitude": 50.05551, + "avgLongitude": 14.4050589 + }, + { + "id": "U563", + "name": "Pod Královkou", + "avgLatitude": 50.08575, + "avgLongitude": 14.3788395 + }, + { + "id": "U591", + "name": "Pod Krocínkou", + "avgLatitude": 50.114006, + "avgLongitude": 14.5118418 + }, + { + "id": "U564", + "name": "Pod Kyjovem", + "avgLatitude": 49.9657135, + "avgLongitude": 14.3690586 + }, + { + "id": "U1002", + "name": "Pod Lahovskou", + "avgLatitude": 49.9914551, + "avgLongitude": 14.36562 + }, + { + "id": "U565", + "name": "Pod Lipkami", + "avgLatitude": 50.07296, + "avgLongitude": 14.3731117 + }, + { + "id": "U1297", + "name": "Pod Lochkovem", + "avgLatitude": 50.00283, + "avgLongitude": 14.3505383 + }, + { + "id": "U566", + "name": "Pod Mezí", + "avgLatitude": 50.0269623, + "avgLongitude": 14.355278 + }, + { + "id": "U2760", + "name": "Pod Nouzovem", + "avgLatitude": 50.1391563, + "avgLongitude": 14.55109 + }, + { + "id": "U568", + "name": "Pod Oborou", + "avgLatitude": 50.0630722, + "avgLongitude": 14.6363106 + }, + { + "id": "U569", + "name": "Pod Pekařkou", + "avgLatitude": 50.0437775, + "avgLongitude": 14.4245892 + }, + { + "id": "U570", + "name": "Pod Rapidem", + "avgLatitude": 50.072258, + "avgLongitude": 14.4841671 + }, + { + "id": "U571", + "name": "Pod Ryšánkou", + "avgLatitude": 50.03672, + "avgLongitude": 14.4269085 + }, + { + "id": "U998", + "name": "Pod Říhákem", + "avgLatitude": 49.9890327, + "avgLongitude": 14.3620338 + }, + { + "id": "U572", + "name": "Pod Šafránkou", + "avgLatitude": 50.07335, + "avgLongitude": 14.3484335 + }, + { + "id": "U2604", + "name": "Pod Školou", + "avgLatitude": 50.0686035, + "avgLongitude": 14.3674774 + }, + { + "id": "U573", + "name": "Pod Šmukýřkou", + "avgLatitude": 50.0611839, + "avgLongitude": 14.3754339 + }, + { + "id": "U574", + "name": "Pod Táborem", + "avgLatitude": 50.0919647, + "avgLongitude": 14.5107288 + }, + { + "id": "U575", + "name": "Pod Třebešínem", + "avgLatitude": 50.080986, + "avgLongitude": 14.485651 + }, + { + "id": "U576", + "name": "Pod Vinicí", + "avgLatitude": 50.0555763, + "avgLongitude": 14.4837933 + }, + { + "id": "U1038", + "name": "Pod Vsí", + "avgLatitude": 50.0113, + "avgLongitude": 14.5143585 + }, + { + "id": "U577", + "name": "Pod Vyhlídkou", + "avgLatitude": 50.0951233, + "avgLongitude": 14.3765965 + }, + { + "id": "U578", + "name": "Pod Zatáčkou", + "avgLatitude": 49.9560051, + "avgLongitude": 14.381588 + }, + { + "id": "U1156", + "name": "Pod Žvahovem", + "avgLatitude": 50.0434952, + "avgLongitude": 14.4030924 + }, + { + "id": "U579", + "name": "Podbělohorská", + "avgLatitude": 50.0752258, + "avgLongitude": 14.3728552 + }, + { + "id": "U31476", + "name": "Podbořany,aut.nádr.", + "avgLatitude": 50.2236633, + "avgLongitude": 13.40755 + }, + { + "id": "U32062", + "name": "Podbořany,ČSAD", + "avgLatitude": 50.216507, + "avgLongitude": 13.3952961 + }, + { + "id": "U31987", + "name": "Podbořany,Nádražní", + "avgLatitude": 50.22543, + "avgLongitude": 13.4064236 + }, + { + "id": "U31475", + "name": "Podbořany,nám.", + "avgLatitude": 50.2281151, + "avgLongitude": 13.4085855 + }, + { + "id": "U31474", + "name": "Podbořany,nem.", + "avgLatitude": 50.22558, + "avgLongitude": 13.4171658 + }, + { + "id": "U32063", + "name": "Podbořany,OSP", + "avgLatitude": 50.2218323, + "avgLongitude": 13.3990622 + }, + { + "id": "U9037", + "name": "Podbrdy", + "avgLatitude": 49.8645859, + "avgLongitude": 14.1186962 + }, + { + "id": "U2579", + "name": "Poděbrady", + "avgLatitude": 50.1495552, + "avgLongitude": 15.12376 + }, + { + "id": "U2577", + "name": "Poděbrady,Hřbitov", + "avgLatitude": 50.13359, + "avgLongitude": 15.1024227 + }, + { + "id": "U6714", + "name": "Poděbrady,Jeronýmova", + "avgLatitude": 50.1502762, + "avgLongitude": 15.1341839 + }, + { + "id": "U9600", + "name": "Poděbrady,Kluk", + "avgLatitude": 50.1301651, + "avgLongitude": 15.1114492 + }, + { + "id": "U9599", + "name": "Poděbrady,Kluk,Hájenka", + "avgLatitude": 50.1213531, + "avgLongitude": 15.118434 + }, + { + "id": "U9598", + "name": "Poděbrady,Kluk,Hřbitov", + "avgLatitude": 50.1334763, + "avgLongitude": 15.1047153 + }, + { + "id": "U4125", + "name": "Poděbrady,Oáza", + "avgLatitude": 50.1333961, + "avgLongitude": 15.0999384 + }, + { + "id": "U3159", + "name": "Poděbrady,Polabec", + "avgLatitude": 50.1432266, + "avgLongitude": 15.1026583 + }, + { + "id": "U3160", + "name": "Poděbrady,Přední Lhota,Hájovna", + "avgLatitude": 50.1370163, + "avgLongitude": 15.096508 + }, + { + "id": "U3162", + "name": "Poděbrady,Přední Lhota,Spolkový dům", + "avgLatitude": 50.1355133, + "avgLongitude": 15.0912428 + }, + { + "id": "U2576", + "name": "Poděbrady,Přední Lhota,U Kopečků", + "avgLatitude": 50.1327362, + "avgLongitude": 15.0862637 + }, + { + "id": "U2578", + "name": "Poděbrady,Riegrovo nám.", + "avgLatitude": 50.1431961, + "avgLongitude": 15.1220694 + }, + { + "id": "U4201", + "name": "Poděbrady,Škola", + "avgLatitude": 50.14468, + "avgLongitude": 15.1142282 + }, + { + "id": "U3158", + "name": "Poděbrady,Tesco", + "avgLatitude": 50.1348343, + "avgLongitude": 15.0973682 + }, + { + "id": "U6694", + "name": "Poděbrady,u mlékárny", + "avgLatitude": 50.1533127, + "avgLongitude": 15.1096144 + }, + { + "id": "U2580", + "name": "Poděbrady,u stadionu", + "avgLatitude": 50.1409836, + "avgLongitude": 15.132349 + }, + { + "id": "U6716", + "name": "Poděbrady,V zahrádkách", + "avgLatitude": 50.1496658, + "avgLongitude": 15.13785 + }, + { + "id": "U6696", + "name": "Poděbrady,Velké Zboží", + "avgLatitude": 50.16187, + "avgLongitude": 15.1020555 + }, + { + "id": "U6695", + "name": "Poděbrady,Velké Zboží,SBD", + "avgLatitude": 50.15851, + "avgLongitude": 15.1052351 + }, + { + "id": "U2875", + "name": "Poděbrady,Velké Zboží,žel.zast.", + "avgLatitude": 50.1641769, + "avgLongitude": 15.1008844 + }, + { + "id": "U6713", + "name": "Poděbrady,Žižkovo předm.", + "avgLatitude": 50.1466942, + "avgLongitude": 15.1308651 + }, + { + "id": "U581", + "name": "Podhajská pole", + "avgLatitude": 50.1297, + "avgLongitude": 14.430872 + }, + { + "id": "U31458", + "name": "Podhořany u Ronova,hostinec", + "avgLatitude": 49.93592, + "avgLongitude": 15.5370464 + }, + { + "id": "U31459", + "name": "Podhořany u Ronova,Nový Dvůr", + "avgLatitude": 49.944046, + "avgLongitude": 15.5502071 + }, + { + "id": "U31457", + "name": "Podhořany u Ronova,Pod Zámkem", + "avgLatitude": 49.93494, + "avgLongitude": 15.5318594 + }, + { + "id": "U582", + "name": "Podhoří", + "avgLatitude": 50.1226158, + "avgLongitude": 14.3997 + }, + { + "id": "U691", + "name": "Podkovářská", + "avgLatitude": 50.10296, + "avgLongitude": 14.5139141 + }, + { + "id": "U9689", + "name": "Podlesí", + "avgLatitude": 49.6903229, + "avgLongitude": 13.9831553 + }, + { + "id": "U9686", + "name": "Podlesí,Dubová hora", + "avgLatitude": 49.7049561, + "avgLongitude": 13.970726 + }, + { + "id": "U9687", + "name": "Podlesí,Nové Podlesí", + "avgLatitude": 49.7025375, + "avgLongitude": 13.9786243 + }, + { + "id": "U9688", + "name": "Podlesí,u vrby", + "avgLatitude": 49.69342, + "avgLongitude": 13.9826469 + }, + { + "id": "U2866", + "name": "Podlešín", + "avgLatitude": 50.2210426, + "avgLongitude": 14.1582851 + }, + { + "id": "U9789", + "name": "Podluhy", + "avgLatitude": 49.81569, + "avgLongitude": 13.9129028 + }, + { + "id": "U9790", + "name": "Podluhy,Na drahách", + "avgLatitude": 49.8119926, + "avgLongitude": 13.9124374 + }, + { + "id": "U4180", + "name": "Podlužanská", + "avgLatitude": 50.07982, + "avgLongitude": 14.6495247 + }, + { + "id": "U31406", + "name": "Podmoky", + "avgLatitude": 49.8299561, + "avgLongitude": 15.4386578 + }, + { + "id": "U6743", + "name": "Podmoky,ObÚ", + "avgLatitude": 50.19294, + "avgLongitude": 15.2338581 + }, + { + "id": "U6630", + "name": "Podmoky,u kovárny", + "avgLatitude": 50.1917953, + "avgLongitude": 15.2335863 + }, + { + "id": "U1367", + "name": "Podnikatelská", + "avgLatitude": 50.0873756, + "avgLongitude": 14.6175671 + }, + { + "id": "U1095", + "name": "Podolanka", + "avgLatitude": 50.1568069, + "avgLongitude": 14.598814 + }, + { + "id": "U583", + "name": "Podolská vodárna", + "avgLatitude": 50.05887, + "avgLongitude": 14.4199553 + }, + { + "id": "U9961", + "name": "Podveky", + "avgLatitude": 49.82597, + "avgLongitude": 14.9980125 + }, + { + "id": "U32051", + "name": "Pohnánec,u cihelny", + "avgLatitude": 49.4751854, + "avgLongitude": 14.7867184 + }, + { + "id": "U531", + "name": "Pohořelec", + "avgLatitude": 50.0878, + "avgLongitude": 14.3881969 + }, + { + "id": "U1570", + "name": "Pohoří", + "avgLatitude": 49.9004364, + "avgLongitude": 14.5250273 + }, + { + "id": "U1571", + "name": "Pohoří,Chotouň", + "avgLatitude": 49.900425, + "avgLongitude": 14.5117769 + }, + { + "id": "U1568", + "name": "Pohoří,Markvart", + "avgLatitude": 49.8921127, + "avgLongitude": 14.5506859 + }, + { + "id": "U4167", + "name": "Pohoří,Pohorka", + "avgLatitude": 49.8974457, + "avgLongitude": 14.5328293 + }, + { + "id": "U1569", + "name": "Pohoří,Skalsko", + "avgLatitude": 49.89308, + "avgLongitude": 14.5400085 + }, + { + "id": "U4009", + "name": "Pochvalov", + "avgLatitude": 50.22695, + "avgLongitude": 13.79368 + }, + { + "id": "U6677", + "name": "Polepy", + "avgLatitude": 50.0045242, + "avgLongitude": 15.2061672 + }, + { + "id": "U2328", + "name": "Polerady", + "avgLatitude": 50.20047, + "avgLongitude": 14.5956631 + }, + { + "id": "U4149", + "name": "Polerady nad Labem", + "avgLatitude": 50.2048, + "avgLongitude": 14.6099672 + }, + { + "id": "U1311", + "name": "Polerady,Rozc.", + "avgLatitude": 50.2013626, + "avgLongitude": 14.58936 + }, + { + "id": "U1101", + "name": "Polesná", + "avgLatitude": 50.07825, + "avgLongitude": 14.6549177 + }, + { + "id": "U4104", + "name": "Polešovická", + "avgLatitude": 50.0791321, + "avgLongitude": 14.6538134 + }, + { + "id": "U9427", + "name": "Poličany", + "avgLatitude": 49.9237442, + "avgLongitude": 15.2585974 + }, + { + "id": "U1030", + "name": "Poliklinika Barrandov", + "avgLatitude": 50.03367, + "avgLongitude": 14.3740606 + }, + { + "id": "U1056", + "name": "Poliklinika Černý Most", + "avgLatitude": 50.1076279, + "avgLongitude": 14.5725174 + }, + { + "id": "U4128", + "name": "Poliklinika Čumpelíkova", + "avgLatitude": 50.1269569, + "avgLongitude": 14.4604931 + }, + { + "id": "U1394", + "name": "Poliklinika Frýdecká", + "avgLatitude": 50.13862, + "avgLongitude": 14.5089283 + }, + { + "id": "U1020", + "name": "Poliklinika Háje", + "avgLatitude": 50.03385, + "avgLongitude": 14.5274754 + }, + { + "id": "U3296", + "name": "Poliklinika Lípa", + "avgLatitude": 50.0512352, + "avgLongitude": 14.3466225 + }, + { + "id": "U649", + "name": "Poliklinika Mazurská", + "avgLatitude": 50.1273, + "avgLongitude": 14.4136305 + }, + { + "id": "U929", + "name": "Poliklinika Modřany", + "avgLatitude": 50.0047379, + "avgLongitude": 14.4183207 + }, + { + "id": "U2790", + "name": "Poliklinika Na Dlouhém Lánu", + "avgLatitude": 50.0967331, + "avgLongitude": 14.3649435 + }, + { + "id": "U842", + "name": "Poliklinika Petrovice", + "avgLatitude": 50.03924, + "avgLongitude": 14.560976 + }, + { + "id": "U3045", + "name": "Poliklinika Petřiny", + "avgLatitude": 50.0900269, + "avgLongitude": 14.35816 + }, + { + "id": "U351", + "name": "Poliklinika Prosek", + "avgLatitude": 50.12807, + "avgLongitude": 14.4919367 + }, + { + "id": "U464", + "name": "Poliklinika Vysočany", + "avgLatitude": 50.1087379, + "avgLongitude": 14.494236 + }, + { + "id": "U192", + "name": "Poliklinika Zahradní Město", + "avgLatitude": 50.0565262, + "avgLongitude": 14.4969645 + }, + { + "id": "U6637", + "name": "Polní Chrčice", + "avgLatitude": 50.11012, + "avgLongitude": 15.2961082 + }, + { + "id": "U4991", + "name": "Polní Voděrady", + "avgLatitude": 49.9942169, + "avgLongitude": 15.0948906 + }, + { + "id": "U4990", + "name": "Polní Voděrady,ObÚ", + "avgLatitude": 49.9922333, + "avgLongitude": 15.0953417 + }, + { + "id": "U585", + "name": "Polygrafická", + "avgLatitude": 50.0801964, + "avgLongitude": 14.5194855 + }, + { + "id": "U7844", + "name": "Popovice", + "avgLatitude": 49.69556, + "avgLongitude": 14.7524824 + }, + { + "id": "U6720", + "name": "Popovice,Kondratice,rozc.", + "avgLatitude": 49.6847076, + "avgLongitude": 14.731514 + }, + { + "id": "U7845", + "name": "Popovice,Mladovice", + "avgLatitude": 49.7072678, + "avgLongitude": 14.76014 + }, + { + "id": "U7846", + "name": "Popovice,Mladovice,lom", + "avgLatitude": 49.7152557, + "avgLongitude": 14.764802 + }, + { + "id": "U7847", + "name": "Popovice,Mladovice,rozc.", + "avgLatitude": 49.7093, + "avgLongitude": 14.7477884 + }, + { + "id": "U1872", + "name": "Popovičky,Chomutovice", + "avgLatitude": 49.9569321, + "avgLongitude": 14.603426 + }, + { + "id": "U1873", + "name": "Popovičky,Nebřenice", + "avgLatitude": 49.9436569, + "avgLongitude": 14.6126328 + }, + { + "id": "U1874", + "name": "Popovičky,rozc.", + "avgLatitude": 49.9618454, + "avgLongitude": 14.60091 + }, + { + "id": "U1450", + "name": "Poříčany", + "avgLatitude": 50.1112, + "avgLongitude": 14.9222813 + }, + { + "id": "U1448", + "name": "Poříčany,Prodejna", + "avgLatitude": 50.10591, + "avgLongitude": 14.9179468 + }, + { + "id": "U2448", + "name": "Poříčany,Škola", + "avgLatitude": 50.10842, + "avgLongitude": 14.9138746 + }, + { + "id": "U1454", + "name": "Poříčany,U Hroudů", + "avgLatitude": 50.1093063, + "avgLongitude": 14.9167957 + }, + { + "id": "U2158", + "name": "Poříčí n.Sáz.", + "avgLatitude": 49.8372955, + "avgLongitude": 14.6748219 + }, + { + "id": "U2181", + "name": "Poříčí n.Sáz.,Rozc.Nové Městečko", + "avgLatitude": 49.8468971, + "avgLongitude": 14.6751146 + }, + { + "id": "U2864", + "name": "Poříčí nad Sázavou-Svárov", + "avgLatitude": 49.8416748, + "avgLongitude": 14.6527357 + }, + { + "id": "U2865", + "name": "Poříčí nad Sázavou", + "avgLatitude": 49.8375168, + "avgLongitude": 14.6769218 + }, + { + "id": "U2223", + "name": "Postřižín,U Kapličky", + "avgLatitude": 50.232193, + "avgLongitude": 14.3872185 + }, + { + "id": "U9386", + "name": "Postupice", + "avgLatitude": 49.7379951, + "avgLongitude": 14.7823305 + }, + { + "id": "U5902", + "name": "Postupice,Benešovská", + "avgLatitude": 49.7300568, + "avgLongitude": 14.780056 + }, + { + "id": "U7852", + "name": "Postupice,Čelivo", + "avgLatitude": 49.6924438, + "avgLongitude": 14.801897 + }, + { + "id": "U7853", + "name": "Postupice,Dobříčkov", + "avgLatitude": 49.7529221, + "avgLongitude": 14.7573547 + }, + { + "id": "U7855", + "name": "Postupice,Dobříčkov,rozc.", + "avgLatitude": 49.7551346, + "avgLongitude": 14.7646246 + }, + { + "id": "U7922", + "name": "Postupice,Chudláz", + "avgLatitude": 49.7163773, + "avgLongitude": 14.7214422 + }, + { + "id": "U7856", + "name": "Postupice,Jemniště,rozc.", + "avgLatitude": 49.74959, + "avgLongitude": 14.7787838 + }, + { + "id": "U7857", + "name": "Postupice,Jemniště,u zámku", + "avgLatitude": 49.7420044, + "avgLongitude": 14.7875519 + }, + { + "id": "U5890", + "name": "Postupice,Jezviny", + "avgLatitude": 49.738163, + "avgLongitude": 14.7343769 + }, + { + "id": "U7861", + "name": "Postupice,Kopaniny", + "avgLatitude": 49.7218628, + "avgLongitude": 14.7242527 + }, + { + "id": "U7858", + "name": "Postupice,Lísek", + "avgLatitude": 49.73823, + "avgLongitude": 14.7824087 + }, + { + "id": "U7859", + "name": "Postupice,Milovanice", + "avgLatitude": 49.7145424, + "avgLongitude": 14.7899227 + }, + { + "id": "U7927", + "name": "Postupice,Miroslav", + "avgLatitude": 49.706192, + "avgLongitude": 14.71736 + }, + { + "id": "U7860", + "name": "Postupice,Nová Ves", + "avgLatitude": 49.715477, + "avgLongitude": 14.7361546 + }, + { + "id": "U7862", + "name": "Postupice,Podlesí", + "avgLatitude": 49.7188263, + "avgLongitude": 14.7760439 + }, + { + "id": "U7863", + "name": "Postupice,Pozov", + "avgLatitude": 49.7292671, + "avgLongitude": 14.7423534 + }, + { + "id": "U7854", + "name": "Postupice,Rankov", + "avgLatitude": 49.7477531, + "avgLongitude": 14.7568989 + }, + { + "id": "U7850", + "name": "Postupice,rest.", + "avgLatitude": 49.7273636, + "avgLongitude": 14.7792273 + }, + { + "id": "U7864", + "name": "Postupice,Roubíčkova Lhota", + "avgLatitude": 49.74316, + "avgLongitude": 14.7655745 + }, + { + "id": "U7865", + "name": "Postupice,Suchdol", + "avgLatitude": 49.708252, + "avgLongitude": 14.7977982 + }, + { + "id": "U7849", + "name": "Postupice,škola", + "avgLatitude": 49.72871, + "avgLongitude": 14.7796984 + }, + { + "id": "U1935", + "name": "Pošta Újezd nad Lesy", + "avgLatitude": 50.0734138, + "avgLongitude": 14.65479 + }, + { + "id": "U9127", + "name": "Poštovice", + "avgLatitude": 50.3127823, + "avgLongitude": 14.1378841 + }, + { + "id": "U580", + "name": "Poštovka", + "avgLatitude": 50.0685043, + "avgLongitude": 14.3538618 + }, + { + "id": "U873", + "name": "Poštovská", + "avgLatitude": 50.1106, + "avgLongitude": 14.5097733 + }, + { + "id": "U6979", + "name": "Potěhy", + "avgLatitude": 49.86905, + "avgLongitude": 15.4205379 + }, + { + "id": "U7287", + "name": "Potěhy,ZŠ", + "avgLatitude": 49.86882, + "avgLongitude": 15.4169312 + }, + { + "id": "U588", + "name": "Povltavská", + "avgLatitude": 50.1160774, + "avgLongitude": 14.4338169 + }, + { + "id": "U9241", + "name": "Pozdeň", + "avgLatitude": 50.2418747, + "avgLongitude": 13.9430866 + }, + { + "id": "U9238", + "name": "Pozdeň,Hřešice", + "avgLatitude": 50.23517, + "avgLongitude": 13.9225044 + }, + { + "id": "U9239", + "name": "Pozdeň,Hřešice,rybník", + "avgLatitude": 50.23092, + "avgLongitude": 13.9143038 + }, + { + "id": "U1285", + "name": "Práčská", + "avgLatitude": 50.0536575, + "avgLongitude": 14.5101271 + }, + { + "id": "U1482", + "name": "Praha-Cibulka", + "avgLatitude": 50.0645752, + "avgLongitude": 14.3621759 + }, + { + "id": "U680", + "name": "Praha-Eden", + "avgLatitude": 50.0657845, + "avgLongitude": 14.4717693 + }, + { + "id": "U1478", + "name": "Praha-Holyně", + "avgLatitude": 50.0328445, + "avgLongitude": 14.3485479 + }, + { + "id": "U2000", + "name": "Praha-Kbely", + "avgLatitude": 50.1348343, + "avgLongitude": 14.5558109 + }, + { + "id": "U1175", + "name": "Praha-Kolovraty", + "avgLatitude": 50.0139542, + "avgLongitude": 14.62579 + }, + { + "id": "U818", + "name": "Praha-Rajská zahrada", + "avgLatitude": 50.1075325, + "avgLongitude": 14.5601788 + }, + { + "id": "U1381", + "name": "Praha-Sedlec", + "avgLatitude": 50.1320457, + "avgLongitude": 14.3943043 + }, + { + "id": "U458", + "name": "Praha-Smíchov", + "avgLatitude": 50.06131, + "avgLongitude": 14.40813 + }, + { + "id": "U1483", + "name": "Praha-Stodůlky", + "avgLatitude": 50.0622063, + "avgLongitude": 14.3461075 + }, + { + "id": "U612", + "name": "Praha-Zličín", + "avgLatitude": 50.0641441, + "avgLongitude": 14.2978191 + }, + { + "id": "U1480", + "name": "Praha-Žvahov", + "avgLatitude": 50.0456734, + "avgLongitude": 14.4024277 + }, + { + "id": "U4861", + "name": "Pramenná", + "avgLatitude": 49.995018, + "avgLongitude": 14.4874573 + }, + { + "id": "U3269", + "name": "Praskolesy", + "avgLatitude": 49.86877, + "avgLongitude": 13.9293461 + }, + { + "id": "U9856", + "name": "Praskolesy", + "avgLatitude": 49.8657875, + "avgLongitude": 13.9333086 + }, + { + "id": "U590", + "name": "Prašná", + "avgLatitude": 50.035, + "avgLongitude": 14.5208836 + }, + { + "id": "U592", + "name": "Prašný most", + "avgLatitude": 50.09482, + "avgLongitude": 14.3950739 + }, + { + "id": "U593", + "name": "Právnická fakulta", + "avgLatitude": 50.0914764, + "avgLongitude": 14.4177322 + }, + { + "id": "U7866", + "name": "Pravonín", + "avgLatitude": 49.6359, + "avgLongitude": 14.9439135 + }, + { + "id": "U7869", + "name": "Pravonín,Buková", + "avgLatitude": 49.6160965, + "avgLongitude": 14.9483757 + }, + { + "id": "U7867", + "name": "Pravonín,háj.", + "avgLatitude": 49.6471176, + "avgLongitude": 14.9531269 + }, + { + "id": "U7649", + "name": "Pravonín,Hutina", + "avgLatitude": 49.6465836, + "avgLongitude": 14.8913822 + }, + { + "id": "U7870", + "name": "Pravonín,Karhule", + "avgLatitude": 49.63452, + "avgLongitude": 14.9006691 + }, + { + "id": "U7871", + "name": "Pravonín,Křížov", + "avgLatitude": 49.6427078, + "avgLongitude": 14.8947849 + }, + { + "id": "U7872", + "name": "Pravonín,Lesáky", + "avgLatitude": 49.6260033, + "avgLongitude": 14.8770523 + }, + { + "id": "U7873", + "name": "Pravonín,Tisek", + "avgLatitude": 49.6218948, + "avgLongitude": 14.9542427 + }, + { + "id": "U7868", + "name": "Pravonín,u Kubů", + "avgLatitude": 49.62982, + "avgLongitude": 14.9638443 + }, + { + "id": "U7874", + "name": "Pravonín,Volavka", + "avgLatitude": 49.6299324, + "avgLongitude": 14.9031792 + }, + { + "id": "U961", + "name": "Pražská čtvrť", + "avgLatitude": 50.0279427, + "avgLongitude": 14.3668594 + }, + { + "id": "U597", + "name": "Pražského povstání", + "avgLatitude": 50.0562363, + "avgLongitude": 14.4345617 + }, + { + "id": "U598", + "name": "Pražský hrad", + "avgLatitude": 50.0933228, + "avgLongitude": 14.3982353 + }, + { + "id": "U2778", + "name": "Prebslova", + "avgLatitude": 50.1675034, + "avgLongitude": 14.5226078 + }, + { + "id": "U6188", + "name": "Prodašice", + "avgLatitude": 50.35, + "avgLongitude": 15.116663 + }, + { + "id": "U6189", + "name": "Prodašice,křižovatka", + "avgLatitude": 50.3486328, + "avgLongitude": 15.1147461 + }, + { + "id": "U754", + "name": "Prosecká", + "avgLatitude": 50.1173744, + "avgLongitude": 14.4969692 + }, + { + "id": "U603", + "name": "Prosek", + "avgLatitude": 50.1192856, + "avgLongitude": 14.4982214 + }, + { + "id": "U7875", + "name": "Prosenická Lhota", + "avgLatitude": 49.6892776, + "avgLongitude": 14.483427 + }, + { + "id": "U7876", + "name": "Prosenická Lhota,Břišejov", + "avgLatitude": 49.7045135, + "avgLongitude": 14.4868155 + }, + { + "id": "U7877", + "name": "Prosenická Lhota,Klimětice", + "avgLatitude": 49.6847458, + "avgLongitude": 14.5100412 + }, + { + "id": "U7878", + "name": "Prosenická Lhota,Luhy", + "avgLatitude": 49.6770668, + "avgLongitude": 14.4885578 + }, + { + "id": "U7879", + "name": "Prosenická Lhota,Prosenice", + "avgLatitude": 49.6940956, + "avgLongitude": 14.48149 + }, + { + "id": "U7880", + "name": "Prosenická Lhota,Suchdol", + "avgLatitude": 49.70041, + "avgLongitude": 14.4954948 + }, + { + "id": "U32359", + "name": "Protivec", + "avgLatitude": 50.08958, + "avgLongitude": 13.2070379 + }, + { + "id": "U605", + "name": "Průběžná", + "avgLatitude": 50.07152, + "avgLongitude": 14.4861851 + }, + { + "id": "U1371", + "name": "Průhonice", + "avgLatitude": 50.0017776, + "avgLongitude": 14.560997 + }, + { + "id": "U1227", + "name": "Průhonice,hájovna", + "avgLatitude": 49.994606, + "avgLongitude": 14.54451 + }, + { + "id": "U1370", + "name": "Průhonice,Hole", + "avgLatitude": 50.0005646, + "avgLongitude": 14.5528927 + }, + { + "id": "U1284", + "name": "Průhonice,Komárov", + "avgLatitude": 50.003212, + "avgLongitude": 14.5484362 + }, + { + "id": "U1365", + "name": "Průhonice,Rozkoš", + "avgLatitude": 49.9999771, + "avgLongitude": 14.5318336 + }, + { + "id": "U1366", + "name": "Průhonice,Tovární", + "avgLatitude": 49.9978027, + "avgLongitude": 14.5489979 + }, + { + "id": "U1219", + "name": "Průhonský háj", + "avgLatitude": 50.1099548, + "avgLongitude": 14.3412914 + }, + { + "id": "U156", + "name": "Průchova", + "avgLatitude": 50.0624924, + "avgLongitude": 14.3661919 + }, + { + "id": "U367", + "name": "Průmstav", + "avgLatitude": 50.04705, + "avgLongitude": 14.5753489 + }, + { + "id": "U389", + "name": "Průmyslová", + "avgLatitude": 50.07251, + "avgLongitude": 14.5356388 + }, + { + "id": "U92", + "name": "Prunéřovská", + "avgLatitude": 50.1438675, + "avgLongitude": 14.4508667 + }, + { + "id": "U1985", + "name": "Prusice", + "avgLatitude": 49.968277, + "avgLongitude": 14.8766565 + }, + { + "id": "U2165", + "name": "Prusice,Rozc.", + "avgLatitude": 49.9694138, + "avgLongitude": 14.881546 + }, + { + "id": "U608", + "name": "Prvomájová", + "avgLatitude": 49.9855, + "avgLongitude": 14.3571339 + }, + { + "id": "U31733", + "name": "Přeborov,rozc.0.5", + "avgLatitude": 49.47576, + "avgLongitude": 14.364954 + }, + { + "id": "U2330", + "name": "Předboj", + "avgLatitude": 50.2259979, + "avgLongitude": 14.478157 + }, + { + "id": "U1959", + "name": "Předboj,Rozc.", + "avgLatitude": 50.22455, + "avgLongitude": 14.4951229 + }, + { + "id": "U9433", + "name": "Předbořice", + "avgLatitude": 49.8558578, + "avgLongitude": 15.2246265 + }, + { + "id": "U3262", + "name": "Předměřice n.Jiz.", + "avgLatitude": 50.25409, + "avgLongitude": 14.779851 + }, + { + "id": "U6107", + "name": "Předměřice n.Jiz.,Kačov", + "avgLatitude": 50.26882, + "avgLongitude": 14.7783375 + }, + { + "id": "U609", + "name": "Přední Kopanina", + "avgLatitude": 50.1171875, + "avgLongitude": 14.2980881 + }, + { + "id": "U31804", + "name": "Předotice", + "avgLatitude": 49.36471, + "avgLongitude": 14.0544014 + }, + { + "id": "U31805", + "name": "Předotice,Nová Hospoda,sil.č.4", + "avgLatitude": 49.3497849, + "avgLongitude": 14.0496063 + }, + { + "id": "U31806", + "name": "Předotice,Třebkov", + "avgLatitude": 49.355648, + "avgLongitude": 14.0546532 + }, + { + "id": "U2296", + "name": "Přehvozdí", + "avgLatitude": 50.02724, + "avgLongitude": 14.8401117 + }, + { + "id": "U2297", + "name": "Přehvozdí,U Hřbitova", + "avgLatitude": 50.0303, + "avgLongitude": 14.8411589 + }, + { + "id": "U9275", + "name": "Přelíc", + "avgLatitude": 50.20704, + "avgLongitude": 14.0416565 + }, + { + "id": "U9276", + "name": "Přelíc,samota", + "avgLatitude": 50.2096024, + "avgLongitude": 14.0482454 + }, + { + "id": "U31813", + "name": "Přelouč", + "avgLatitude": 50.0396, + "avgLongitude": 15.574542 + }, + { + "id": "U6296", + "name": "Přepeře", + "avgLatitude": 50.46429, + "avgLongitude": 15.1047649 + }, + { + "id": "U31178", + "name": "Přepeře", + "avgLatitude": 50.58294, + "avgLongitude": 15.114336 + }, + { + "id": "U6299", + "name": "Přepeře,odb.Střehom", + "avgLatitude": 50.4733353, + "avgLongitude": 15.1115742 + }, + { + "id": "U31179", + "name": "Přepeře,Sklostroj", + "avgLatitude": 50.5838, + "avgLongitude": 15.1203365 + }, + { + "id": "U32323", + "name": "Přepeře,u hřiště", + "avgLatitude": 50.5840073, + "avgLongitude": 15.11314 + }, + { + "id": "U2429", + "name": "Přerov n.L.,Nový Přerov", + "avgLatitude": 50.1658478, + "avgLongitude": 14.8372259 + }, + { + "id": "U2443", + "name": "Přerov n.L.,Rozc.u obory", + "avgLatitude": 50.1466446, + "avgLongitude": 14.8256073 + }, + { + "id": "U2428", + "name": "Přerov n.L.,U Skanzenu", + "avgLatitude": 50.1604, + "avgLongitude": 14.82494 + }, + { + "id": "U4206", + "name": "Přerubenice", + "avgLatitude": 50.2173843, + "avgLongitude": 13.8420315 + }, + { + "id": "U7881", + "name": "Přestavlky u Čerčan", + "avgLatitude": 49.8526154, + "avgLongitude": 14.7435074 + }, + { + "id": "U7882", + "name": "Přestavlky u Čerčan,Borka rozc.", + "avgLatitude": 49.85203, + "avgLongitude": 14.7261047 + }, + { + "id": "U7883", + "name": "Přestavlky u Čerčan,Čistec,rozc.", + "avgLatitude": 49.84111, + "avgLongitude": 14.7509727 + }, + { + "id": "U31437", + "name": "Přestavlky,rozc.1.0", + "avgLatitude": 50.405323, + "avgLongitude": 14.2112522 + }, + { + "id": "U195", + "name": "Přeštická", + "avgLatitude": 50.044693, + "avgLongitude": 14.5123949 + }, + { + "id": "U600", + "name": "Přeštínská", + "avgLatitude": 49.9937325, + "avgLongitude": 14.3763123 + }, + { + "id": "U4865", + "name": "Převýšov", + "avgLatitude": 50.1525726, + "avgLongitude": 15.4073458 + }, + { + "id": "U2572", + "name": "Přezletice,Horní náves", + "avgLatitude": 50.15635, + "avgLongitude": 14.5756817 + }, + { + "id": "U1671", + "name": "Přezletice,Kocanda", + "avgLatitude": 50.15976, + "avgLongitude": 14.5734835 + }, + { + "id": "U2583", + "name": "Přezletice,Panská pole", + "avgLatitude": 50.15588, + "avgLongitude": 14.5710316 + }, + { + "id": "U1672", + "name": "Přezletice,U Rybníka", + "avgLatitude": 50.1549034, + "avgLongitude": 14.5810137 + }, + { + "id": "U1957", + "name": "Přezletice,Vinořská", + "avgLatitude": 50.1536179, + "avgLongitude": 14.5776939 + }, + { + "id": "U1397", + "name": "Příborská", + "avgLatitude": 50.131424, + "avgLongitude": 14.5110378 + }, + { + "id": "U3287", + "name": "Příbram", + "avgLatitude": 49.6889076, + "avgLongitude": 14.0032349 + }, + { + "id": "U9751", + "name": "Příbram sídliště", + "avgLatitude": 49.6742172, + "avgLongitude": 14.0011826 + }, + { + "id": "U9750", + "name": "Příbram,Archiv", + "avgLatitude": 49.67629, + "avgLongitude": 13.9993267 + }, + { + "id": "U9707", + "name": "Příbram,Balbínova", + "avgLatitude": 49.6887932, + "avgLongitude": 14.02078 + }, + { + "id": "U9721", + "name": "Příbram,Barandov", + "avgLatitude": 49.67862, + "avgLongitude": 14.0075569 + }, + { + "id": "U7887", + "name": "Příbram,Brod", + "avgLatitude": 49.66147, + "avgLongitude": 14.0142879 + }, + { + "id": "U7886", + "name": "Příbram,Brod,DIAMO", + "avgLatitude": 49.6572876, + "avgLongitude": 14.0193644 + }, + { + "id": "U9738", + "name": "Příbram,Březové Hory", + "avgLatitude": 49.6810074, + "avgLongitude": 13.9881439 + }, + { + "id": "U9739", + "name": "Příbram,Březové Hory,domov seniorů", + "avgLatitude": 49.6817932, + "avgLongitude": 13.989728 + }, + { + "id": "U9737", + "name": "Příbram,Březové Hory,Karla Pobudy", + "avgLatitude": 49.6789055, + "avgLongitude": 13.98753 + }, + { + "id": "U9740", + "name": "Příbram,Březové Hory,Mariánská", + "avgLatitude": 49.68276, + "avgLongitude": 13.9963665 + }, + { + "id": "U9741", + "name": "Příbram,Březové Hory,Rožmitálská", + "avgLatitude": 49.67713, + "avgLongitude": 13.9831123 + }, + { + "id": "U9742", + "name": "Příbram,Březové Hory,stadion", + "avgLatitude": 49.6783, + "avgLongitude": 13.9765968 + }, + { + "id": "U9652", + "name": "Příbram,Bytíz", + "avgLatitude": 49.6809959, + "avgLongitude": 14.0716095 + }, + { + "id": "U9894", + "name": "Příbram,Bytíz,Šachta", + "avgLatitude": 49.6833878, + "avgLongitude": 14.0718136 + }, + { + "id": "U9651", + "name": "Příbram,Bytíz,Věznice", + "avgLatitude": 49.6874123, + "avgLongitude": 14.0693254 + }, + { + "id": "U9730", + "name": "Příbram,Československé armády", + "avgLatitude": 49.6867447, + "avgLongitude": 14.00629 + }, + { + "id": "U9703", + "name": "Příbram,DISA", + "avgLatitude": 49.7022476, + "avgLongitude": 14.0012817 + }, + { + "id": "U9747", + "name": "Příbram,Drkolnov", + "avgLatitude": 49.67531, + "avgLongitude": 13.9849224 + }, + { + "id": "U9665", + "name": "Příbram,Evropská", + "avgLatitude": 49.69764, + "avgLongitude": 14.0161934 + }, + { + "id": "U9663", + "name": "Příbram,Fibichova", + "avgLatitude": 49.6901474, + "avgLongitude": 14.01536 + }, + { + "id": "U9660", + "name": "Příbram,Hájecká", + "avgLatitude": 49.6827431, + "avgLongitude": 14.030365 + }, + { + "id": "U9732", + "name": "Příbram,Hornických učňů", + "avgLatitude": 49.68635, + "avgLongitude": 14.000124 + }, + { + "id": "U9734", + "name": "Příbram,II.poliklinika", + "avgLatitude": 49.6796761, + "avgLongitude": 14.000267 + }, + { + "id": "U7888", + "name": "Příbram,Jerusalem", + "avgLatitude": 49.6621246, + "avgLongitude": 14.0355291 + }, + { + "id": "U7884", + "name": "Příbram,Jesenice", + "avgLatitude": 49.6568756, + "avgLongitude": 14.0465136 + }, + { + "id": "U7885", + "name": "Příbram,Jestřabinec", + "avgLatitude": 49.6705933, + "avgLongitude": 14.0269527 + }, + { + "id": "U9666", + "name": "Příbram,Jinecká", + "avgLatitude": 49.6996841, + "avgLongitude": 14.0161037 + }, + { + "id": "U9712", + "name": "Příbram,Jiráskovy sady", + "avgLatitude": 49.6895638, + "avgLongitude": 14.0128145 + }, + { + "id": "U9700", + "name": "Příbram,K Podlesí", + "avgLatitude": 49.6906662, + "avgLongitude": 13.9930229 + }, + { + "id": "U9698", + "name": "Příbram,Kaufland", + "avgLatitude": 49.6918144, + "avgLongitude": 13.9986887 + }, + { + "id": "U9736", + "name": "Příbram,Kladenská", + "avgLatitude": 49.6777649, + "avgLongitude": 13.9901094 + }, + { + "id": "U9711", + "name": "Příbram,Koperníkova", + "avgLatitude": 49.69243, + "avgLongitude": 14.0180378 + }, + { + "id": "U9695", + "name": "Příbram,Kovohutě", + "avgLatitude": 49.7078552, + "avgLongitude": 13.9832258 + }, + { + "id": "U9744", + "name": "Příbram,Kozičín", + "avgLatitude": 49.6740875, + "avgLongitude": 13.9513445 + }, + { + "id": "U9743", + "name": "Příbram,Lazec", + "avgLatitude": 49.6769867, + "avgLongitude": 13.9641676 + }, + { + "id": "U9697", + "name": "Příbram,Lidl", + "avgLatitude": 49.694767, + "avgLongitude": 14.0046139 + }, + { + "id": "U9718", + "name": "Příbram,Milínská", + "avgLatitude": 49.6862259, + "avgLongitude": 14.00919 + }, + { + "id": "U9719", + "name": "Příbram,Milínská-Mixova", + "avgLatitude": 49.6833725, + "avgLongitude": 14.0088873 + }, + { + "id": "U9731", + "name": "Příbram,Na Cihelně", + "avgLatitude": 49.6824722, + "avgLongitude": 14.0056152 + }, + { + "id": "U9735", + "name": "Příbram,nám.17.listopadu", + "avgLatitude": 49.6787453, + "avgLongitude": 13.9954443 + }, + { + "id": "U9717", + "name": "Příbram,nám.T.G.M.", + "avgLatitude": 49.68833, + "avgLongitude": 14.009016 + }, + { + "id": "U9716", + "name": "Příbram,Nemocnice", + "avgLatitude": 49.6914444, + "avgLongitude": 14.0110044 + }, + { + "id": "U9661", + "name": "Příbram,Nová Hospoda", + "avgLatitude": 49.69069, + "avgLongitude": 14.0336781 + }, + { + "id": "U9662", + "name": "Příbram,Nová Hospoda Polní", + "avgLatitude": 49.6873055, + "avgLongitude": 14.0384655 + }, + { + "id": "U5942", + "name": "Příbram,Nový rybník", + "avgLatitude": 49.67797, + "avgLongitude": 14.00396 + }, + { + "id": "U9706", + "name": "Příbram,Obecnická", + "avgLatitude": 49.7081528, + "avgLongitude": 13.9890709 + }, + { + "id": "U9715", + "name": "Příbram,Orlov", + "avgLatitude": 49.6871948, + "avgLongitude": 13.9479713 + }, + { + "id": "U9714", + "name": "Příbram,Orlov,Kaplička", + "avgLatitude": 49.68731, + "avgLongitude": 13.9530621 + }, + { + "id": "U9713", + "name": "Příbram,Orlov,U Kříže", + "avgLatitude": 49.6868, + "avgLongitude": 13.9614992 + }, + { + "id": "U9702", + "name": "Příbram,Plynárenská", + "avgLatitude": 49.6965, + "avgLongitude": 14.0016479 + }, + { + "id": "U9710", + "name": "Příbram,Pod Hvězdárnou", + "avgLatitude": 49.69284, + "avgLongitude": 14.0229158 + }, + { + "id": "U9720", + "name": "Příbram,pod Kaňkou", + "avgLatitude": 49.6801376, + "avgLongitude": 14.0080738 + }, + { + "id": "U9748", + "name": "Příbram,Podbrdská", + "avgLatitude": 49.6754837, + "avgLongitude": 13.9883766 + }, + { + "id": "U9733", + "name": "Příbram,Politických vězňů", + "avgLatitude": 49.6828766, + "avgLongitude": 14.0003824 + }, + { + "id": "U9701", + "name": "Příbram,Pragovka", + "avgLatitude": 49.6929169, + "avgLongitude": 14.0031433 + }, + { + "id": "U9696", + "name": "Příbram,průmyslová zóna", + "avgLatitude": 49.690155, + "avgLongitude": 13.9959373 + }, + { + "id": "U9704", + "name": "Příbram,RAVAK", + "avgLatitude": 49.7018433, + "avgLongitude": 13.9972343 + }, + { + "id": "U9722", + "name": "Příbram,Sázky", + "avgLatitude": 49.67846, + "avgLongitude": 14.0167189 + }, + { + "id": "U9749", + "name": "Příbram,Seifertova", + "avgLatitude": 49.6754456, + "avgLongitude": 13.9955616 + }, + { + "id": "U9723", + "name": "Příbram,Slivických bojovníků", + "avgLatitude": 49.6763344, + "avgLongitude": 14.01902 + }, + { + "id": "U9746", + "name": "Příbram,Slunná", + "avgLatitude": 49.6732445, + "avgLongitude": 13.9837122 + }, + { + "id": "U9708", + "name": "Příbram,Svatá Hora", + "avgLatitude": 49.687336, + "avgLongitude": 14.02162 + }, + { + "id": "U9709", + "name": "Příbram,Svatá Hora areál", + "avgLatitude": 49.6845055, + "avgLongitude": 14.0193405 + }, + { + "id": "U9745", + "name": "Příbram,Šachetní", + "avgLatitude": 49.67432, + "avgLongitude": 13.9805031 + }, + { + "id": "U9752", + "name": "Příbram,Školní", + "avgLatitude": 49.6727371, + "avgLongitude": 13.996829 + }, + { + "id": "U9753", + "name": "Příbram,Školní kruhový objezd", + "avgLatitude": 49.67071, + "avgLongitude": 13.9927635 + }, + { + "id": "U9659", + "name": "Příbram,U Míků", + "avgLatitude": 49.68198, + "avgLongitude": 14.0326729 + }, + { + "id": "U9705", + "name": "Příbram,Velkosklady", + "avgLatitude": 49.70475, + "avgLongitude": 13.993598 + }, + { + "id": "U6974", + "name": "Příbram,Zavržice", + "avgLatitude": 49.6318779, + "avgLongitude": 13.9841528 + }, + { + "id": "U9759", + "name": "Příbram,Zdaboř", + "avgLatitude": 49.66297, + "avgLongitude": 13.9844875 + }, + { + "id": "U9755", + "name": "Příbram,Zdaboř,Brodská", + "avgLatitude": 49.6682663, + "avgLongitude": 13.9957924 + }, + { + "id": "U9760", + "name": "Příbram,Zdaboř,Červená", + "avgLatitude": 49.6598053, + "avgLongitude": 13.9800587 + }, + { + "id": "U9756", + "name": "Příbram,Zdaboř,Fialka", + "avgLatitude": 49.66966, + "avgLongitude": 13.9954243 + }, + { + "id": "U9757", + "name": "Příbram,Zdaboř,Komerční zóna", + "avgLatitude": 49.66613, + "avgLongitude": 13.9975395 + }, + { + "id": "U9754", + "name": "Příbram,Zdaboř,Nemocnice", + "avgLatitude": 49.6732941, + "avgLongitude": 13.9906034 + }, + { + "id": "U9758", + "name": "Příbram,Zdaboř,u Pletánků", + "avgLatitude": 49.66823, + "avgLongitude": 13.9898434 + }, + { + "id": "U9763", + "name": "Příbram,Žežice", + "avgLatitude": 49.6514053, + "avgLongitude": 13.9952593 + }, + { + "id": "U9762", + "name": "Příbram,Žežice,u křížku", + "avgLatitude": 49.656086, + "avgLongitude": 13.997324 + }, + { + "id": "U9761", + "name": "Příbram,Žežice,Žežičky", + "avgLatitude": 49.6592, + "avgLongitude": 13.99719 + }, + { + "id": "U9699", + "name": "Příbram,Žižkova", + "avgLatitude": 49.69021, + "avgLongitude": 14.0262995 + }, + { + "id": "U3222", + "name": "Příbramská", + "avgLatitude": 49.9777641, + "avgLongitude": 14.346405 + }, + { + "id": "U6851", + "name": "Příčina", + "avgLatitude": 50.0681076, + "avgLongitude": 13.664875 + }, + { + "id": "U9533", + "name": "Příčina", + "avgLatitude": 50.0714226, + "avgLongitude": 13.67798 + }, + { + "id": "U7889", + "name": "Příčovy", + "avgLatitude": 49.6719437, + "avgLongitude": 14.391571 + }, + { + "id": "U7890", + "name": "Příčovy,rozc.", + "avgLatitude": 49.663475, + "avgLongitude": 14.383687 + }, + { + "id": "U31194", + "name": "Příkrý", + "avgLatitude": 50.6251678, + "avgLongitude": 15.3650532 + }, + { + "id": "U31195", + "name": "Příkrý,Škodějov,Špekulace", + "avgLatitude": 50.63853, + "avgLongitude": 15.3848591 + }, + { + "id": "U31196", + "name": "Příkrý,Škodějov,Zimrov", + "avgLatitude": 50.6461, + "avgLongitude": 15.3899841 + }, + { + "id": "U6817", + "name": "Přílepy", + "avgLatitude": 50.1240234, + "avgLongitude": 13.6313066 + }, + { + "id": "U932", + "name": "Přímské náměstí", + "avgLatitude": 50.09891, + "avgLongitude": 14.6783953 + }, + { + "id": "U613", + "name": "Přírodní", + "avgLatitude": 50.01329, + "avgLongitude": 14.4528313 + }, + { + "id": "U3033", + "name": "Přístav Holešovice", + "avgLatitude": 50.1047058, + "avgLongitude": 14.4558163 + }, + { + "id": "U1043", + "name": "Přístav Radotín", + "avgLatitude": 49.9944153, + "avgLongitude": 14.39349 + }, + { + "id": "U614", + "name": "Přístaviště", + "avgLatitude": 50.0398064, + "avgLongitude": 14.4096842 + }, + { + "id": "U2293", + "name": "Přistoupim", + "avgLatitude": 50.0554962, + "avgLongitude": 14.8764915 + }, + { + "id": "U2294", + "name": "Přistoupim,Rozc.", + "avgLatitude": 50.0635452, + "avgLongitude": 14.8765621 + }, + { + "id": "U1428", + "name": "Přišimasy", + "avgLatitude": 50.0517464, + "avgLongitude": 14.7606564 + }, + { + "id": "U1427", + "name": "Přišimasy,Horka", + "avgLatitude": 50.0489578, + "avgLongitude": 14.7642212 + }, + { + "id": "U1426", + "name": "Přišimasy,sklady Marca", + "avgLatitude": 50.0412827, + "avgLongitude": 14.7618217 + }, + { + "id": "U9442", + "name": "Příšovice", + "avgLatitude": 50.5790672, + "avgLongitude": 15.0786085 + }, + { + "id": "U31096", + "name": "Příšovice,hl.sil.", + "avgLatitude": 50.5764732, + "avgLongitude": 15.0651093 + }, + { + "id": "U31095", + "name": "Příšovice,kovárna", + "avgLatitude": 50.5782928, + "avgLongitude": 15.08703 + }, + { + "id": "U31094", + "name": "Příšovice,Na Hořensku", + "avgLatitude": 50.5801239, + "avgLongitude": 15.0931129 + }, + { + "id": "U31098", + "name": "Příšovice,SDZ", + "avgLatitude": 50.57575, + "avgLongitude": 15.071866 + }, + { + "id": "U615", + "name": "Přívorská", + "avgLatitude": 50.1360779, + "avgLongitude": 14.4363785 + }, + { + "id": "U3031", + "name": "Přívozní", + "avgLatitude": 50.1102257, + "avgLongitude": 14.451601 + }, + { + "id": "U2128", + "name": "Psáry", + "avgLatitude": 49.93672, + "avgLongitude": 14.5143776 + }, + { + "id": "U2130", + "name": "Psáry,Dolní Jirčany", + "avgLatitude": 49.94879, + "avgLongitude": 14.5196514 + }, + { + "id": "U2127", + "name": "Psáry,Domov Laguna", + "avgLatitude": 49.9318924, + "avgLongitude": 14.5082054 + }, + { + "id": "U2129", + "name": "Psáry,Štědřík", + "avgLatitude": 49.94188, + "avgLongitude": 14.5157909 + }, + { + "id": "U7030", + "name": "Psáře", + "avgLatitude": 49.75546, + "avgLongitude": 14.9619131 + }, + { + "id": "U6027", + "name": "Psáře,Lipina", + "avgLatitude": 49.75551, + "avgLongitude": 14.9770174 + }, + { + "id": "U6028", + "name": "Psáře,Veselka", + "avgLatitude": 49.7510071, + "avgLongitude": 14.9738512 + }, + { + "id": "U853", + "name": "Psohlavců", + "avgLatitude": 50.02639, + "avgLongitude": 14.4173412 + }, + { + "id": "U5052", + "name": "Pševes", + "avgLatitude": 50.3452225, + "avgLongitude": 15.2956285 + }, + { + "id": "U9542", + "name": "Pšovlky", + "avgLatitude": 50.1043243, + "avgLongitude": 13.5981646 + }, + { + "id": "U6856", + "name": "Pšovlky", + "avgLatitude": 50.1081467, + "avgLongitude": 13.59326 + }, + { + "id": "U1678", + "name": "Ptice", + "avgLatitude": 50.0517, + "avgLongitude": 14.1756325 + }, + { + "id": "U1679", + "name": "Ptice,křiž.", + "avgLatitude": 50.0524, + "avgLongitude": 14.167511 + }, + { + "id": "U6326", + "name": "Ptýrov,Braňka", + "avgLatitude": 50.51072, + "avgLongitude": 14.9401979 + }, + { + "id": "U6325", + "name": "Ptýrov,Čihátka", + "avgLatitude": 50.5018234, + "avgLongitude": 14.9320459 + }, + { + "id": "U6327", + "name": "Ptýrov,Maníkovice", + "avgLatitude": 50.51761, + "avgLongitude": 14.938036 + }, + { + "id": "U1214", + "name": "Pučálka", + "avgLatitude": 50.1123924, + "avgLongitude": 14.3581047 + }, + { + "id": "U3280", + "name": "Pustověty", + "avgLatitude": 50.0550346, + "avgLongitude": 13.8169613 + }, + { + "id": "U1553", + "name": "Pyšely", + "avgLatitude": 49.860878, + "avgLongitude": 14.6977606 + }, + { + "id": "U1547", + "name": "Pyšely,Hotel Doly", + "avgLatitude": 49.86734, + "avgLongitude": 14.6606359 + }, + { + "id": "U1549", + "name": "Pyšely,Nám.", + "avgLatitude": 49.8770676, + "avgLongitude": 14.67795 + }, + { + "id": "U1557", + "name": "Pyšely,Nová Ves", + "avgLatitude": 49.88105, + "avgLongitude": 14.6861143 + }, + { + "id": "U1548", + "name": "Pyšely,Sokolovna", + "avgLatitude": 49.87498, + "avgLongitude": 14.6784887 + }, + { + "id": "U7032", + "name": "Pyšely,u vily", + "avgLatitude": 49.8727074, + "avgLongitude": 14.6945343 + }, + { + "id": "U1550", + "name": "Pyšely,Zaječice", + "avgLatitude": 49.8951569, + "avgLongitude": 14.6820726 + }, + { + "id": "U6290", + "name": "Rabakov", + "avgLatitude": 50.3817139, + "avgLongitude": 15.1021271 + }, + { + "id": "U6291", + "name": "Rabakov,chaty", + "avgLatitude": 50.3883362, + "avgLongitude": 15.1014423 + }, + { + "id": "U2544", + "name": "Rabyně,Blaženice", + "avgLatitude": 49.7893448, + "avgLongitude": 14.4700069 + }, + { + "id": "U2521", + "name": "Rabyně,Hl.přístav", + "avgLatitude": 49.8227272, + "avgLongitude": 14.4320412 + }, + { + "id": "U2487", + "name": "Rabyně,Loutí", + "avgLatitude": 49.79996, + "avgLongitude": 14.4574709 + }, + { + "id": "U2547", + "name": "Rabyně,Měřín", + "avgLatitude": 49.78979, + "avgLongitude": 14.4300194 + }, + { + "id": "U4461", + "name": "Rabyně,Měřín,Zotavovna", + "avgLatitude": 49.7905273, + "avgLongitude": 14.4186668 + }, + { + "id": "U2541", + "name": "Rabyně,Nedvězí", + "avgLatitude": 49.8056946, + "avgLongitude": 14.47336 + }, + { + "id": "U2522", + "name": "Rabyně,Nová Rabyně", + "avgLatitude": 49.80999, + "avgLongitude": 14.42974 + }, + { + "id": "U2543", + "name": "Rabyně,Rozc.Blaženice", + "avgLatitude": 49.7919731, + "avgLongitude": 14.4719439 + }, + { + "id": "U2542", + "name": "Rabyně,Strážovna", + "avgLatitude": 49.79775, + "avgLongitude": 14.4729462 + }, + { + "id": "U2488", + "name": "Rabyně,Stromeč", + "avgLatitude": 49.7999878, + "avgLongitude": 14.4421673 + }, + { + "id": "U3274", + "name": "Račice nad Berounkou", + "avgLatitude": 50.0248222, + "avgLongitude": 13.9233751 + }, + { + "id": "U31438", + "name": "Račiněves,Motorest rozc.", + "avgLatitude": 50.38945, + "avgLongitude": 14.2257824 + }, + { + "id": "U1582", + "name": "Radějovice", + "avgLatitude": 49.9467621, + "avgLongitude": 14.5644665 + }, + { + "id": "U1581", + "name": "Radějovice,Olešky", + "avgLatitude": 49.9491463, + "avgLongitude": 14.5714912 + }, + { + "id": "U7891", + "name": "Radětice", + "avgLatitude": 49.64005, + "avgLongitude": 14.078145 + }, + { + "id": "U7892", + "name": "Radětice,Palivo", + "avgLatitude": 49.64335, + "avgLongitude": 14.0689192 + }, + { + "id": "U616", + "name": "Radhošťská", + "avgLatitude": 50.0776329, + "avgLongitude": 14.4574814 + }, + { + "id": "U4758", + "name": "Radíč", + "avgLatitude": 49.71579, + "avgLongitude": 14.4133205 + }, + { + "id": "U4759", + "name": "Radíč,Dubliny", + "avgLatitude": 49.71986, + "avgLongitude": 14.4364433 + }, + { + "id": "U4729", + "name": "Radíč,Rozc.Žďár", + "avgLatitude": 49.7067947, + "avgLongitude": 14.3960781 + }, + { + "id": "U4757", + "name": "Radíč,Vestec", + "avgLatitude": 49.7136955, + "avgLongitude": 14.4089851 + }, + { + "id": "U2925", + "name": "Radim", + "avgLatitude": 50.0733376, + "avgLongitude": 15.0073557 + }, + { + "id": "U4999", + "name": "Radim,ObÚ", + "avgLatitude": 50.0713768, + "avgLongitude": 15.0115032 + }, + { + "id": "U2608", + "name": "Radimova", + "avgLatitude": 50.08754, + "avgLongitude": 14.3659935 + }, + { + "id": "U552", + "name": "Radiová", + "avgLatitude": 50.0696754, + "avgLongitude": 14.5372972 + }, + { + "id": "U31818", + "name": "Radkov", + "avgLatitude": 49.4644547, + "avgLongitude": 14.6102066 + }, + { + "id": "U31819", + "name": "Radkov,Paseka", + "avgLatitude": 49.4613838, + "avgLongitude": 14.5922089 + }, + { + "id": "U957", + "name": "Radlická", + "avgLatitude": 50.0585938, + "avgLongitude": 14.3889027 + }, + { + "id": "U2602", + "name": "Radnice Praha 12", + "avgLatitude": 50.0025024, + "avgLongitude": 14.4141216 + }, + { + "id": "U3216", + "name": "Radnice Praha 6", + "avgLatitude": 50.10048, + "avgLongitude": 14.4016113 + }, + { + "id": "U1203", + "name": "Radnice Řepy", + "avgLatitude": 50.07274, + "avgLongitude": 14.3068981 + }, + { + "id": "U31821", + "name": "Radomyšl,Domanice", + "avgLatitude": 49.2991867, + "avgLongitude": 13.9213476 + }, + { + "id": "U31822", + "name": "Radomyšl,Leskovice", + "avgLatitude": 49.32565, + "avgLongitude": 13.92104 + }, + { + "id": "U31820", + "name": "Radomyšl,nákup.stř.", + "avgLatitude": 49.3164139, + "avgLongitude": 13.929616 + }, + { + "id": "U31823", + "name": "Radomyšl,Podolí", + "avgLatitude": 49.3118248, + "avgLongitude": 13.8949289 + }, + { + "id": "U31824", + "name": "Radomyšl,Rojice", + "avgLatitude": 49.34834, + "avgLongitude": 13.9450655 + }, + { + "id": "U31618", + "name": "Radomyšl,rozc.Chrášťovice Klínovice 1.1", + "avgLatitude": 49.3136749, + "avgLongitude": 13.8973885 + }, + { + "id": "U1339", + "name": "Radonice", + "avgLatitude": 50.1416168, + "avgLongitude": 14.6126919 + }, + { + "id": "U1293", + "name": "Radonice,Penny Market", + "avgLatitude": 50.1328354, + "avgLongitude": 14.6196451 + }, + { + "id": "U4271", + "name": "Radonice,Spojovací", + "avgLatitude": 50.1427765, + "avgLongitude": 14.6100492 + }, + { + "id": "U399", + "name": "Radonická", + "avgLatitude": 50.1548157, + "avgLongitude": 14.5380516 + }, + { + "id": "U7893", + "name": "Radošovice", + "avgLatitude": 49.7409, + "avgLongitude": 14.868125 + }, + { + "id": "U618", + "name": "Radošovická", + "avgLatitude": 50.06684, + "avgLongitude": 14.495903 + }, + { + "id": "U2798", + "name": "Radouňova", + "avgLatitude": 50.0395, + "avgLongitude": 14.3175278 + }, + { + "id": "U4993", + "name": "Radovesnice I", + "avgLatitude": 50.0098763, + "avgLongitude": 15.1513233 + }, + { + "id": "U6601", + "name": "Radovesnice II", + "avgLatitude": 50.1058464, + "avgLongitude": 15.3683662 + }, + { + "id": "U6600", + "name": "Radovesnice II,u mostu", + "avgLatitude": 50.10244, + "avgLongitude": 15.3694315 + }, + { + "id": "U1211", + "name": "Raichlova", + "avgLatitude": 50.03913, + "avgLongitude": 14.328331 + }, + { + "id": "U1385", + "name": "Rájecká", + "avgLatitude": 50.02524, + "avgLongitude": 14.6018267 + }, + { + "id": "U31826", + "name": "Rakovice", + "avgLatitude": 49.4720345, + "avgLongitude": 14.055212 + }, + { + "id": "U2926", + "name": "Rakovník", + "avgLatitude": 50.09907, + "avgLongitude": 13.7359943 + }, + { + "id": "U4765", + "name": "Rakovník západ", + "avgLatitude": 50.10175, + "avgLongitude": 13.713891 + }, + { + "id": "U2927", + "name": "Rakovník zast.", + "avgLatitude": 50.105732, + "avgLongitude": 13.7497129 + }, + { + "id": "U6839", + "name": "Rakovník,Autostop", + "avgLatitude": 50.10414, + "avgLongitude": 13.74424 + }, + { + "id": "U4340", + "name": "Rakovník,Čs.legií", + "avgLatitude": 50.10425, + "avgLongitude": 13.7253923 + }, + { + "id": "U6932", + "name": "Rakovník,garáže Transdev Stř.Č.", + "avgLatitude": 50.0972824, + "avgLongitude": 13.7258377 + }, + { + "id": "U6844", + "name": "Rakovník,hasičský záchr.sbor", + "avgLatitude": 50.1087837, + "avgLongitude": 13.7089272 + }, + { + "id": "U9906", + "name": "Rakovník,koup.", + "avgLatitude": 50.0942841, + "avgLongitude": 13.7505741 + }, + { + "id": "U2454", + "name": "Rakovník,Lišanská", + "avgLatitude": 50.1094627, + "avgLongitude": 13.7340832 + }, + { + "id": "U6841", + "name": "Rakovník,Malcova", + "avgLatitude": 50.1063, + "avgLongitude": 13.7231932 + }, + { + "id": "U6933", + "name": "Rakovník,Malinovského", + "avgLatitude": 50.0960541, + "avgLongitude": 13.728467 + }, + { + "id": "U6836", + "name": "Rakovník,Mýtská", + "avgLatitude": 50.10729, + "avgLongitude": 13.733901 + }, + { + "id": "U4338", + "name": "Rakovník,Na Sekyře", + "avgLatitude": 50.10279, + "avgLongitude": 13.7296295 + }, + { + "id": "U9896", + "name": "Rakovník,Na Spravedlnosti", + "avgLatitude": 50.1014328, + "avgLongitude": 13.7436924 + }, + { + "id": "U6843", + "name": "Rakovník,nem.", + "avgLatitude": 50.1074448, + "avgLongitude": 13.71549 + }, + { + "id": "U6934", + "name": "Rakovník,O.Beníškové", + "avgLatitude": 50.0938263, + "avgLongitude": 13.7336893 + }, + { + "id": "U6947", + "name": "Rakovník,Plzeňská", + "avgLatitude": 50.09497, + "avgLongitude": 13.7280588 + }, + { + "id": "U6150", + "name": "Rakovník,Prokopova", + "avgLatitude": 50.10101, + "avgLongitude": 13.7269878 + }, + { + "id": "U6931", + "name": "Rakovník,Průhon", + "avgLatitude": 50.0951538, + "avgLongitude": 13.7258778 + }, + { + "id": "U6935", + "name": "Rakovník,Riegrova", + "avgLatitude": 50.09484, + "avgLongitude": 13.7306337 + }, + { + "id": "U2093", + "name": "Rakovník,rozc.Cikánka", + "avgLatitude": 50.1194344, + "avgLongitude": 13.7327223 + }, + { + "id": "U6929", + "name": "Rakovník,rozc.Lubná", + "avgLatitude": 50.08229, + "avgLongitude": 13.7242889 + }, + { + "id": "U6151", + "name": "Rakovník,sídl.gen.Kholla", + "avgLatitude": 50.102047, + "avgLongitude": 13.7212067 + }, + { + "id": "U4300", + "name": "Rakovník,sokolovna", + "avgLatitude": 50.1024437, + "avgLongitude": 13.7329226 + }, + { + "id": "U9895", + "name": "Rakovník,střelnice", + "avgLatitude": 50.10266, + "avgLongitude": 13.7372913 + }, + { + "id": "U9897", + "name": "Rakovník,Šamotka", + "avgLatitude": 50.1090927, + "avgLongitude": 13.760313 + }, + { + "id": "U6840", + "name": "Rakovník,Tesco", + "avgLatitude": 50.1099625, + "avgLongitude": 13.734808 + }, + { + "id": "U6842", + "name": "Rakovník,u věžáků", + "avgLatitude": 50.1056671, + "avgLongitude": 13.7223692 + }, + { + "id": "U6835", + "name": "Rakovník,u vodojemu", + "avgLatitude": 50.1121521, + "avgLongitude": 13.7233 + }, + { + "id": "U6837", + "name": "Rakovník,u Vysoké brány", + "avgLatitude": 50.10556, + "avgLongitude": 13.7332649 + }, + { + "id": "U2009", + "name": "Rakovník,V Jamce", + "avgLatitude": 50.106617, + "avgLongitude": 13.7298012 + }, + { + "id": "U6508", + "name": "Rakovník,vila Vácha", + "avgLatitude": 50.09439, + "avgLongitude": 13.7633772 + }, + { + "id": "U6838", + "name": "Rakovník,Vladislavova", + "avgLatitude": 50.1033173, + "avgLongitude": 13.7376633 + }, + { + "id": "U9908", + "name": "Rakovník,Wintrovo nám.", + "avgLatitude": 50.10184, + "avgLongitude": 13.7391033 + }, + { + "id": "U6845", + "name": "Rakovník,Zákonův mlýn", + "avgLatitude": 50.1095352, + "avgLongitude": 13.6855078 + }, + { + "id": "U6152", + "name": "Rakovník,zem.záv.", + "avgLatitude": 50.0997543, + "avgLongitude": 13.7173042 + }, + { + "id": "U9907", + "name": "Rakovník,židovský hřbitov", + "avgLatitude": 50.0986977, + "avgLongitude": 13.743187 + }, + { + "id": "U31369", + "name": "Ralsko,Boreček", + "avgLatitude": 50.633297, + "avgLongitude": 14.7166452 + }, + { + "id": "U31370", + "name": "Ralsko,Boreček,háj.", + "avgLatitude": 50.6405067, + "avgLongitude": 14.716383 + }, + { + "id": "U31368", + "name": "Ralsko,Hradčany", + "avgLatitude": 50.61755, + "avgLongitude": 14.7066212 + }, + { + "id": "U31110", + "name": "Ralsko,Kuřívody", + "avgLatitude": 50.58604, + "avgLongitude": 14.8039122 + }, + { + "id": "U31491", + "name": "Ralsko,Ploužnice", + "avgLatitude": 50.63105, + "avgLongitude": 14.7523441 + }, + { + "id": "U31112", + "name": "Ralsko,Skelná Huť", + "avgLatitude": 50.6085052, + "avgLongitude": 14.7737637 + }, + { + "id": "U3008", + "name": "Rápošovská", + "avgLatitude": 50.07734, + "avgLongitude": 14.654314 + }, + { + "id": "U9954", + "name": "Rašovice", + "avgLatitude": 49.8823853, + "avgLongitude": 15.1016865 + }, + { + "id": "U9939", + "name": "Rašovice,Jindice", + "avgLatitude": 49.91314, + "avgLongitude": 15.08383 + }, + { + "id": "U9955", + "name": "Rašovice,Mančice", + "avgLatitude": 49.8973923, + "avgLongitude": 15.0931206 + }, + { + "id": "U9940", + "name": "Rašovice,Mančice,rozc.", + "avgLatitude": 49.8990173, + "avgLongitude": 15.0812607 + }, + { + "id": "U9956", + "name": "Rašovice,Netušil", + "avgLatitude": 49.8870621, + "avgLongitude": 15.0984955 + }, + { + "id": "U7895", + "name": "Rataje", + "avgLatitude": 49.70392, + "avgLongitude": 14.9699173 + }, + { + "id": "U9964", + "name": "Rataje n.Sáz.", + "avgLatitude": 49.84165, + "avgLongitude": 14.9585 + }, + { + "id": "U9396", + "name": "Rataje nad Sázavou", + "avgLatitude": 49.8438225, + "avgLongitude": 14.950408 + }, + { + "id": "U9965", + "name": "Rataje n.Sáz.,hřbitov", + "avgLatitude": 49.8440361, + "avgLongitude": 14.9660416 + }, + { + "id": "U9398", + "name": "Rataje n.Sáz.,žel.zast.předměstí", + "avgLatitude": 49.84982, + "avgLongitude": 14.9752865 + }, + { + "id": "U9397", + "name": "Rataje nad Sázavou-Ivaň", + "avgLatitude": 49.83987, + "avgLongitude": 14.9410667 + }, + { + "id": "U7896", + "name": "Rataje,rozc.", + "avgLatitude": 49.7037659, + "avgLongitude": 14.965909 + }, + { + "id": "U9986", + "name": "Ratboř", + "avgLatitude": 49.9779663, + "avgLongitude": 15.1594419 + }, + { + "id": "U9414", + "name": "Ratboř", + "avgLatitude": 49.98161, + "avgLongitude": 15.1604052 + }, + { + "id": "U2179", + "name": "Ratboř,rozc.Těšínky", + "avgLatitude": 49.9539375, + "avgLongitude": 15.1446886 + }, + { + "id": "U9985", + "name": "Ratboř,Sedlov", + "avgLatitude": 49.9640274, + "avgLongitude": 15.152442 + }, + { + "id": "U9984", + "name": "Ratboř,Těšínky", + "avgLatitude": 49.955658, + "avgLongitude": 15.1460972 + }, + { + "id": "U4192", + "name": "Ratenice", + "avgLatitude": 50.09196, + "avgLongitude": 15.0588846 + }, + { + "id": "U32053", + "name": "Ratibořské Hory", + "avgLatitude": 49.46272, + "avgLongitude": 14.7696133 + }, + { + "id": "U32056", + "name": "Ratibořské Hory,Podolí,rozc.0.3", + "avgLatitude": 49.4667358, + "avgLongitude": 14.735775 + }, + { + "id": "U32055", + "name": "Ratibořské Hory,Ratibořice,rozc.1.5", + "avgLatitude": 49.4727249, + "avgLongitude": 14.7454 + }, + { + "id": "U32052", + "name": "Ratibořské Hory,U Menšíků", + "avgLatitude": 49.4659424, + "avgLongitude": 14.7714357 + }, + { + "id": "U32054", + "name": "Ratibořské Hory,Vřesce", + "avgLatitude": 49.44806, + "avgLongitude": 14.7557869 + }, + { + "id": "U6573", + "name": "Ratměřice", + "avgLatitude": 49.64322, + "avgLongitude": 14.7553921 + }, + { + "id": "U6574", + "name": "Ratměřice,Habrovka", + "avgLatitude": 49.6433563, + "avgLongitude": 14.7435188 + }, + { + "id": "U6576", + "name": "Ratměřice,Skrýšov", + "avgLatitude": 49.6635857, + "avgLongitude": 14.7564535 + }, + { + "id": "U6575", + "name": "Ratměřice,u hřiště", + "avgLatitude": 49.641, + "avgLongitude": 14.7496223 + }, + { + "id": "U383", + "name": "Reinerova", + "avgLatitude": 50.07421, + "avgLongitude": 14.3101463 + }, + { + "id": "U1018", + "name": "Rektorská", + "avgLatitude": 50.0874863, + "avgLongitude": 14.5068169 + }, + { + "id": "U668", + "name": "Rembrandtova", + "avgLatitude": 50.0681839, + "avgLongitude": 14.5124512 + }, + { + "id": "U1639", + "name": "Roblín", + "avgLatitude": 49.96208, + "avgLongitude": 14.2478657 + }, + { + "id": "U2318", + "name": "Roblín,Hájovna", + "avgLatitude": 49.9637527, + "avgLongitude": 14.263998 + }, + { + "id": "U1636", + "name": "Roblín,Kuchařík", + "avgLatitude": 49.97751, + "avgLongitude": 14.2490635 + }, + { + "id": "U3369", + "name": "Ročov", + "avgLatitude": 50.2522736, + "avgLongitude": 13.7728767 + }, + { + "id": "U32182", + "name": "Ročov,Břínkov", + "avgLatitude": 50.27704, + "avgLongitude": 13.7887764 + }, + { + "id": "U3368", + "name": "Ročov,Třebocká", + "avgLatitude": 50.2500954, + "avgLongitude": 13.7684059 + }, + { + "id": "U32181", + "name": "Ročov,Úlovice", + "avgLatitude": 50.2644958, + "avgLongitude": 13.7924194 + }, + { + "id": "U3367", + "name": "Ročov,Vápenice", + "avgLatitude": 50.2456245, + "avgLongitude": 13.7633743 + }, + { + "id": "U9459", + "name": "Rohatsko", + "avgLatitude": 50.44011, + "avgLongitude": 15.105175 + }, + { + "id": "U7203", + "name": "Rohozec,u kapličky", + "avgLatitude": 49.9757233, + "avgLongitude": 15.3855457 + }, + { + "id": "U7204", + "name": "Rohozec,u kostela", + "avgLatitude": 49.97632, + "avgLongitude": 15.3797855 + }, + { + "id": "U621", + "name": "Rohožnická", + "avgLatitude": 50.0732231, + "avgLongitude": 14.6781883 + }, + { + "id": "U32316", + "name": "Rokle", + "avgLatitude": 50.3534622, + "avgLongitude": 13.2976637 + }, + { + "id": "U32315", + "name": "Rokle,Hradec,rozvodna", + "avgLatitude": 50.341217, + "avgLongitude": 13.3234253 + }, + { + "id": "U32317", + "name": "Rokle,Želina,rozc.", + "avgLatitude": 50.3609352, + "avgLongitude": 13.2859621 + }, + { + "id": "U622", + "name": "Rokoska", + "avgLatitude": 50.11738, + "avgLongitude": 14.4575129 + }, + { + "id": "U743", + "name": "Rokycanova", + "avgLatitude": 50.0861664, + "avgLongitude": 14.4554825 + }, + { + "id": "U31961", + "name": "Rokycany,aut.nádr.", + "avgLatitude": 49.7413635, + "avgLongitude": 13.5906343 + }, + { + "id": "U31959", + "name": "Rokycany,Pivovarská", + "avgLatitude": 49.742588, + "avgLongitude": 13.6027594 + }, + { + "id": "U31958", + "name": "Rokycany,u statku", + "avgLatitude": 49.7314453, + "avgLongitude": 13.61791 + }, + { + "id": "U31960", + "name": "Rokycany,Železná", + "avgLatitude": 49.7424, + "avgLongitude": 13.6019039 + }, + { + "id": "U6339", + "name": "Rokytá,Dolní Rokytá,ranč", + "avgLatitude": 50.5490723, + "avgLongitude": 14.881052 + }, + { + "id": "U6338", + "name": "Rokytá,Dolní Rokytá,rozc.", + "avgLatitude": 50.54371, + "avgLongitude": 14.894453 + }, + { + "id": "U6340", + "name": "Rokytá,Horní Rokytá", + "avgLatitude": 50.5541763, + "avgLongitude": 14.8765392 + }, + { + "id": "U6342", + "name": "Rokytá,Horní Rokytá,konečná", + "avgLatitude": 50.5697365, + "avgLongitude": 14.8585443 + }, + { + "id": "U6341", + "name": "Rokytá,Horní Rokytá,otočka", + "avgLatitude": 50.5626755, + "avgLongitude": 14.869854 + }, + { + "id": "U31134", + "name": "Rokytňany,Dolní Rokytňany", + "avgLatitude": 50.377182, + "avgLongitude": 15.1282053 + }, + { + "id": "U31135", + "name": "Rokytňany,Horní Rokytňany", + "avgLatitude": 50.37564, + "avgLongitude": 15.1379642 + }, + { + "id": "U31210", + "name": "Rokytnice n.Jiz.,Horní Rokytnice", + "avgLatitude": 50.72988, + "avgLongitude": 15.4734745 + }, + { + "id": "U31205", + "name": "Rokytnice n.Jiz.,host.", + "avgLatitude": 50.7190475, + "avgLongitude": 15.4227428 + }, + { + "id": "U31207", + "name": "Rokytnice n.Jiz.,nám.", + "avgLatitude": 50.729248, + "avgLongitude": 15.451292 + }, + { + "id": "U6474", + "name": "Rokytovec", + "avgLatitude": 50.4065, + "avgLongitude": 14.8316784 + }, + { + "id": "U3055", + "name": "Rokytovec,Malé Horky", + "avgLatitude": 50.39765, + "avgLongitude": 14.8253708 + }, + { + "id": "U2716", + "name": "Ronalda Reagana", + "avgLatitude": 50.1011238, + "avgLongitude": 14.4046574 + }, + { + "id": "U650", + "name": "Ronešova", + "avgLatitude": 50.1071739, + "avgLongitude": 14.5658827 + }, + { + "id": "U31485", + "name": "Ronov n.Doubr.,nám.", + "avgLatitude": 49.8887558, + "avgLongitude": 15.5308342 + }, + { + "id": "U9469", + "name": "Ronov nad Doubravou", + "avgLatitude": 49.894825, + "avgLongitude": 15.52822 + }, + { + "id": "U9470", + "name": "Ronov nad Doubravou zast.", + "avgLatitude": 49.8926544, + "avgLongitude": 15.5433855 + }, + { + "id": "U2768", + "name": "Rooseveltova", + "avgLatitude": 50.10378, + "avgLongitude": 14.3997459 + }, + { + "id": "U31198", + "name": "Roprachtice,rozc.", + "avgLatitude": 50.6647873, + "avgLongitude": 15.4085379 + }, + { + "id": "U938", + "name": "Rosečská", + "avgLatitude": 50.0383072, + "avgLongitude": 14.4545088 + }, + { + "id": "U9626", + "name": "Rosovice", + "avgLatitude": 49.7568245, + "avgLongitude": 14.1095066 + }, + { + "id": "U9627", + "name": "Rosovice,dolní Holšiny", + "avgLatitude": 49.7612267, + "avgLongitude": 14.1011467 + }, + { + "id": "U9628", + "name": "Rosovice,Holšiny", + "avgLatitude": 49.7570877, + "avgLongitude": 14.0964985 + }, + { + "id": "U9629", + "name": "Rosovice,Kamenný Dvůr", + "avgLatitude": 49.751152, + "avgLongitude": 14.0918627 + }, + { + "id": "U9625", + "name": "Rosovice,Sychrov", + "avgLatitude": 49.76171, + "avgLongitude": 14.1159334 + }, + { + "id": "U2396", + "name": "Rostoklaty", + "avgLatitude": 50.0726, + "avgLongitude": 14.80216 + }, + { + "id": "U2424", + "name": "Rostoklaty", + "avgLatitude": 50.0786476, + "avgLongitude": 14.8050451 + }, + { + "id": "U2426", + "name": "Rostoklaty,Nová Ves II", + "avgLatitude": 50.071476, + "avgLongitude": 14.8224182 + }, + { + "id": "U5097", + "name": "Rostoklaty,V Polích", + "avgLatitude": 50.0755539, + "avgLongitude": 14.8040285 + }, + { + "id": "U31442", + "name": "Roudná", + "avgLatitude": 49.3021431, + "avgLongitude": 14.721159 + }, + { + "id": "U4717", + "name": "Roudnice n.L.,aut.nádr.", + "avgLatitude": 50.4241562, + "avgLongitude": 14.2602348 + }, + { + "id": "U4715", + "name": "Roudnice n.L.,Čihadla", + "avgLatitude": 50.4193726, + "avgLongitude": 14.2658949 + }, + { + "id": "U9879", + "name": "Roudnice n.L.,ČSAD", + "avgLatitude": 50.4272728, + "avgLongitude": 14.2445507 + }, + { + "id": "U9876", + "name": "Roudnice n.L.,Hornická", + "avgLatitude": 50.42561, + "avgLongitude": 14.2405033 + }, + { + "id": "U9878", + "name": "Roudnice n.L.,nemocnice", + "avgLatitude": 50.42356, + "avgLongitude": 14.247776 + }, + { + "id": "U4716", + "name": "Roudnice n.L.,Purkyňovo nám.", + "avgLatitude": 50.4227676, + "avgLongitude": 14.2546558 + }, + { + "id": "U9877", + "name": "Roudnice n.L.,sídliště", + "avgLatitude": 50.4242172, + "avgLongitude": 14.2434454 + }, + { + "id": "U9903", + "name": "Roudnice n.L.,u hřbitova", + "avgLatitude": 50.4263, + "avgLongitude": 14.2440739 + }, + { + "id": "U4608", + "name": "Roudnice n.L.,žel.st.", + "avgLatitude": 50.42632, + "avgLongitude": 14.2622261 + }, + { + "id": "U4611", + "name": "Roudnice n.L.-Bezděkov", + "avgLatitude": 50.4286041, + "avgLongitude": 14.2820883 + }, + { + "id": "U4613", + "name": "Roudnice n.L.-Hracholusky", + "avgLatitude": 50.41696, + "avgLongitude": 14.2530575 + }, + { + "id": "U4612", + "name": "Roudnice n.L.město", + "avgLatitude": 50.4216537, + "avgLongitude": 14.258687 + }, + { + "id": "U1107", + "name": "Rousínovská", + "avgLatitude": 50.146225, + "avgLongitude": 14.5713882 + }, + { + "id": "U623", + "name": "Roztocká", + "avgLatitude": 50.12701, + "avgLongitude": 14.3987312 + }, + { + "id": "U3277", + "name": "Roztoky u Křivoklátu", + "avgLatitude": 50.02357, + "avgLongitude": 13.8740177 + }, + { + "id": "U2095", + "name": "Roztoky u Prahy", + "avgLatitude": 50.15968, + "avgLongitude": 14.3984385 + }, + { + "id": "U2765", + "name": "Roztoky,17. listopadu", + "avgLatitude": 50.1625633, + "avgLongitude": 14.3906345 + }, + { + "id": "U4027", + "name": "Roztoky,Chaloupky", + "avgLatitude": 50.02215, + "avgLongitude": 13.8676043 + }, + { + "id": "U9074", + "name": "Roztoky,Karlov", + "avgLatitude": 49.9788971, + "avgLongitude": 13.8920116 + }, + { + "id": "U9076", + "name": "Roztoky,Leontýn", + "avgLatitude": 49.9976578, + "avgLongitude": 13.8967056 + }, + { + "id": "U2110", + "name": "Roztoky,Levý Hradec", + "avgLatitude": 50.1669769, + "avgLongitude": 14.3723631 + }, + { + "id": "U4194", + "name": "Roztoky,Masarykova", + "avgLatitude": 50.16533, + "avgLongitude": 14.3868837 + }, + { + "id": "U4099", + "name": "Roztoky,Maxmiliánka", + "avgLatitude": 50.1529045, + "avgLongitude": 14.3854094 + }, + { + "id": "U4028", + "name": "Roztoky,most", + "avgLatitude": 50.02839, + "avgLongitude": 13.8656912 + }, + { + "id": "U9075", + "name": "Roztoky,Placanda", + "avgLatitude": 49.9788971, + "avgLongitude": 13.885006 + }, + { + "id": "U2099", + "name": "Roztoky,Rozc.Žalov", + "avgLatitude": 50.1603, + "avgLongitude": 14.3722534 + }, + { + "id": "U2283", + "name": "Roztoky,Solníky", + "avgLatitude": 50.1660767, + "avgLongitude": 14.3854465 + }, + { + "id": "U4331", + "name": "Roztoky,škola", + "avgLatitude": 50.02538, + "avgLongitude": 13.8681278 + }, + { + "id": "U4098", + "name": "Roztoky,Tiché údolí", + "avgLatitude": 50.1543655, + "avgLongitude": 14.3914127 + }, + { + "id": "U2096", + "name": "Roztoky,Tyršovo nám.", + "avgLatitude": 50.1610336, + "avgLongitude": 14.3921947 + }, + { + "id": "U4029", + "name": "Roztoky,U Eremita", + "avgLatitude": 50.0174637, + "avgLongitude": 13.8625212 + }, + { + "id": "U2098", + "name": "Roztoky,U Rybníčku", + "avgLatitude": 50.1615, + "avgLongitude": 14.3824148 + }, + { + "id": "U3259", + "name": "Roztoky,Višňová", + "avgLatitude": 50.018692, + "avgLongitude": 13.8543606 + }, + { + "id": "U6942", + "name": "Roztoky,Záv.", + "avgLatitude": 50.0291443, + "avgLongitude": 13.8672485 + }, + { + "id": "U2821", + "name": "Roztoky-Žalov", + "avgLatitude": 50.16791, + "avgLongitude": 14.3644114 + }, + { + "id": "U624", + "name": "Roztylské náměstí", + "avgLatitude": 50.044487, + "avgLongitude": 14.4785748 + }, + { + "id": "U601", + "name": "Roztyly", + "avgLatitude": 50.0376625, + "avgLongitude": 14.477663 + }, + { + "id": "U626", + "name": "Rozýnova", + "avgLatitude": 50.08005, + "avgLongitude": 14.368742 + }, + { + "id": "U4164", + "name": "Rožďalovice", + "avgLatitude": 50.2991829, + "avgLongitude": 15.18034 + }, + { + "id": "U6192", + "name": "Rožďalovice,Hasina", + "avgLatitude": 50.3272171, + "avgLongitude": 15.1775684 + }, + { + "id": "U6191", + "name": "Rožďalovice,Hasina,Stará Hasina", + "avgLatitude": 50.3217545, + "avgLongitude": 15.17415 + }, + { + "id": "U9886", + "name": "Rožďalovice,Ledečky", + "avgLatitude": 50.28457, + "avgLongitude": 15.174449 + }, + { + "id": "U9884", + "name": "Rožďalovice,nám.", + "avgLatitude": 50.303524, + "avgLongitude": 15.1704693 + }, + { + "id": "U9887", + "name": "Rožďalovice,Podlužany", + "avgLatitude": 50.28646, + "avgLongitude": 15.166853 + }, + { + "id": "U6730", + "name": "Rožďalovice,Ruská", + "avgLatitude": 50.3019257, + "avgLongitude": 15.1762981 + }, + { + "id": "U9885", + "name": "Rožďalovice,škola", + "avgLatitude": 50.30574, + "avgLongitude": 15.1645231 + }, + { + "id": "U6190", + "name": "Rožďalovice,ústav", + "avgLatitude": 50.3084259, + "avgLongitude": 15.1708088 + }, + { + "id": "U7899", + "name": "Rožmitál p.Tř.,aut.st.", + "avgLatitude": 49.6046677, + "avgLongitude": 13.8650789 + }, + { + "id": "U7901", + "name": "Rožmitál p.Tř.,hasičárna", + "avgLatitude": 49.6001129, + "avgLongitude": 13.8711939 + }, + { + "id": "U2485", + "name": "Rožmitál p.Tř.,Hutě p.Tř.,Přední", + "avgLatitude": 49.594677, + "avgLongitude": 13.8218136 + }, + { + "id": "U2561", + "name": "Rožmitál p.Tř.,Hutě p.Tř.,Zadní", + "avgLatitude": 49.5922279, + "avgLongitude": 13.8064613 + }, + { + "id": "U7900", + "name": "Rožmitál p.Tř.,křiž.", + "avgLatitude": 49.60368, + "avgLongitude": 13.87629 + }, + { + "id": "U7902", + "name": "Rožmitál p.Tř.,Nesvačily", + "avgLatitude": 49.60727, + "avgLongitude": 13.9114437 + }, + { + "id": "U7903", + "name": "Rožmitál p.Tř.,Nový Dvůr", + "avgLatitude": 49.6031265, + "avgLongitude": 13.8864326 + }, + { + "id": "U7904", + "name": "Rožmitál p.Tř.,Pňovice", + "avgLatitude": 49.5894432, + "avgLongitude": 13.912652 + }, + { + "id": "U5922", + "name": "Rožmitál p.Tř.,Pňovice,bytovky", + "avgLatitude": 49.5913734, + "avgLongitude": 13.9097462 + }, + { + "id": "U7905", + "name": "Rožmitál p.Tř.,Pňovice,Podhora", + "avgLatitude": 49.5922241, + "avgLongitude": 13.8975964 + }, + { + "id": "U7906", + "name": "Rožmitál p.Tř.,Starý Rožmitál", + "avgLatitude": 49.6075439, + "avgLongitude": 13.85194 + }, + { + "id": "U7907", + "name": "Rožmitál p.Tř.,Strýčkovy", + "avgLatitude": 49.6168671, + "avgLongitude": 13.9294424 + }, + { + "id": "U2111", + "name": "Rožmitál p.Tř.,Tyršova", + "avgLatitude": 49.5981445, + "avgLongitude": 13.866601 + }, + { + "id": "U2333", + "name": "Rožmitál p.Tř.,Voltuš", + "avgLatitude": 49.59159, + "avgLongitude": 13.8419628 + }, + { + "id": "U2834", + "name": "Rožmitál p.Tř.,Voltuš,Trepanda", + "avgLatitude": 49.5827751, + "avgLongitude": 13.8213825 + }, + { + "id": "U5878", + "name": "Rožmitál p.Tř.,Zalánská", + "avgLatitude": 49.6140671, + "avgLongitude": 13.8636913 + }, + { + "id": "U7908", + "name": "Rožmitál p.Tř.,Zalány", + "avgLatitude": 49.63398, + "avgLongitude": 13.8602867 + }, + { + "id": "U7909", + "name": "Rožmitál p.Tř.,Zalány,dolní", + "avgLatitude": 49.62654, + "avgLongitude": 13.8608894 + }, + { + "id": "U7910", + "name": "Rožmitál p.Tř.,Zalány,horní", + "avgLatitude": 49.6389542, + "avgLongitude": 13.8584719 + }, + { + "id": "U9805", + "name": "Rpety", + "avgLatitude": 49.82857, + "avgLongitude": 13.937458 + }, + { + "id": "U9804", + "name": "Rpety,Draha", + "avgLatitude": 49.8256264, + "avgLongitude": 13.940134 + }, + { + "id": "U7179", + "name": "Rpety,rozc.2.0", + "avgLatitude": 49.84149, + "avgLongitude": 13.93539 + }, + { + "id": "U9806", + "name": "Rpety,ZD", + "avgLatitude": 49.8325577, + "avgLongitude": 13.9362593 + }, + { + "id": "U1161", + "name": "Rtyňská", + "avgLatitude": 50.0813828, + "avgLongitude": 14.5715313 + }, + { + "id": "U9901", + "name": "Ruda", + "avgLatitude": 50.1403, + "avgLongitude": 13.8630676 + }, + { + "id": "U9900", + "name": "Ruda,Horácká lísa", + "avgLatitude": 50.13896, + "avgLongitude": 13.8348455 + }, + { + "id": "U9914", + "name": "Ruda,osada Brejl", + "avgLatitude": 50.10092, + "avgLongitude": 13.875679 + }, + { + "id": "U6148", + "name": "Ruda,sv.Alžběta", + "avgLatitude": 50.09153, + "avgLongitude": 13.8682642 + }, + { + "id": "U9902", + "name": "Ruda,u rybníka", + "avgLatitude": 50.14259, + "avgLongitude": 13.8731537 + }, + { + "id": "U6507", + "name": "Ruda,u školy", + "avgLatitude": 50.1389923, + "avgLongitude": 13.8772125 + }, + { + "id": "U1645", + "name": "Rudná u Prahy", + "avgLatitude": 50.03945, + "avgLongitude": 14.24269 + }, + { + "id": "U4143", + "name": "Rudná zast.", + "avgLatitude": 50.035202, + "avgLongitude": 14.2357044 + }, + { + "id": "U2169", + "name": "Rudná,Celní úřad", + "avgLatitude": 50.0201874, + "avgLongitude": 14.2050629 + }, + { + "id": "U1646", + "name": "Rudná,Dušníky", + "avgLatitude": 50.0370941, + "avgLongitude": 14.240057 + }, + { + "id": "U2321", + "name": "Rudná,Hewlett-Packard", + "avgLatitude": 50.0181046, + "avgLongitude": 14.2012548 + }, + { + "id": "U1649", + "name": "Rudná,Hořelice", + "avgLatitude": 50.02696, + "avgLongitude": 14.2125282 + }, + { + "id": "U2323", + "name": "Rudná,Nerudova", + "avgLatitude": 50.0319443, + "avgLongitude": 14.2263851 + }, + { + "id": "U1648", + "name": "Rudná,Škola", + "avgLatitude": 50.03001, + "avgLongitude": 14.2212534 + }, + { + "id": "U1647", + "name": "Rudná,U Kina", + "avgLatitude": 50.03416, + "avgLongitude": 14.2323122 + }, + { + "id": "U2324", + "name": "Rudná,V Brance", + "avgLatitude": 50.0251, + "avgLongitude": 14.2179108 + }, + { + "id": "U2322", + "name": "Rudná,Vypich", + "avgLatitude": 50.01583, + "avgLongitude": 14.1979971 + }, + { + "id": "U1674", + "name": "Rudná,Za Panskou zahradou", + "avgLatitude": 50.02256, + "avgLongitude": 14.2068844 + }, + { + "id": "U31391", + "name": "Rumburk,Bytex 01", + "avgLatitude": 50.95116, + "avgLongitude": 14.5550251 + }, + { + "id": "U31390", + "name": "Rumburk,Krásnolipská", + "avgLatitude": 50.9445572, + "avgLongitude": 14.545989 + }, + { + "id": "U31392", + "name": "Rumburk,žel.st.", + "avgLatitude": 50.95622, + "avgLongitude": 14.5528259 + }, + { + "id": "U627", + "name": "Ruská", + "avgLatitude": 50.07144, + "avgLongitude": 14.4513245 + }, + { + "id": "U630", + "name": "Ruzyňská", + "avgLatitude": 50.0858154, + "avgLongitude": 14.325098 + }, + { + "id": "U631", + "name": "Ruzyňská škola", + "avgLatitude": 50.08351, + "avgLongitude": 14.3181 + }, + { + "id": "U558", + "name": "Ruzyňský hřbitov", + "avgLatitude": 50.0760269, + "avgLongitude": 14.3121471 + }, + { + "id": "U1169", + "name": "Ruzyňský velkoobchod", + "avgLatitude": 50.086338, + "avgLongitude": 14.3136854 + }, + { + "id": "U7911", + "name": "Rybníky", + "avgLatitude": 49.752903, + "avgLongitude": 14.203949 + }, + { + "id": "U325", + "name": "Rychnovská", + "avgLatitude": 50.1351242, + "avgLongitude": 14.5140343 + }, + { + "id": "U4299", + "name": "Rynholec", + "avgLatitude": 50.1389275, + "avgLongitude": 13.92177 + }, + { + "id": "U2928", + "name": "Rynholec", + "avgLatitude": 50.1386261, + "avgLongitude": 13.92605 + }, + { + "id": "U9309", + "name": "Rynholec,záv.", + "avgLatitude": 50.138855, + "avgLongitude": 13.9402943 + }, + { + "id": "U632", + "name": "Ryšánka", + "avgLatitude": 50.04059, + "avgLongitude": 14.4384375 + }, + { + "id": "U5935", + "name": "Řečany nad Labem", + "avgLatitude": 50.0317535, + "avgLongitude": 15.4784975 + }, + { + "id": "U1543", + "name": "Řehenice,Babice", + "avgLatitude": 49.88121, + "avgLongitude": 14.6233006 + }, + { + "id": "U1597", + "name": "Řehenice,Dařbože", + "avgLatitude": 49.8721771, + "avgLongitude": 14.6108112 + }, + { + "id": "U1544", + "name": "Řehenice,Křiváček", + "avgLatitude": 49.86686, + "avgLongitude": 14.6441193 + }, + { + "id": "U32046", + "name": "Řemíčov", + "avgLatitude": 49.51518, + "avgLongitude": 14.7749758 + }, + { + "id": "U7153", + "name": "Řendějov", + "avgLatitude": 49.7678566, + "avgLongitude": 15.0800772 + }, + { + "id": "U7156", + "name": "Řendějov,Jiřice", + "avgLatitude": 49.7708359, + "avgLongitude": 15.10149 + }, + { + "id": "U7111", + "name": "Řendějov,Jiřice,rozc.", + "avgLatitude": 49.77006, + "avgLongitude": 15.115139 + }, + { + "id": "U7155", + "name": "Řendějov,Nový Samechov", + "avgLatitude": 49.7691574, + "avgLongitude": 15.0875263 + }, + { + "id": "U7152", + "name": "Řendějov,Starý Samechov", + "avgLatitude": 49.7764, + "avgLongitude": 15.094223 + }, + { + "id": "U633", + "name": "Řepčická", + "avgLatitude": 50.04793, + "avgLongitude": 14.5450039 + }, + { + "id": "U6120", + "name": "Řepín", + "avgLatitude": 50.3672447, + "avgLongitude": 14.6320372 + }, + { + "id": "U6407", + "name": "Řepín,Libeňská", + "avgLatitude": 50.3617172, + "avgLongitude": 14.6363745 + }, + { + "id": "U6119", + "name": "Řepín,u dvora", + "avgLatitude": 50.37228, + "avgLongitude": 14.6319323 + }, + { + "id": "U6118", + "name": "Řepín,Živonín", + "avgLatitude": 50.37969, + "avgLongitude": 14.6340408 + }, + { + "id": "U4354", + "name": "Řepín,Živonín,žel.zast.", + "avgLatitude": 50.3931046, + "avgLongitude": 14.6131859 + }, + { + "id": "U806", + "name": "Řepínská", + "avgLatitude": 50.1335144, + "avgLongitude": 14.4300461 + }, + { + "id": "U634", + "name": "Řeporyjské náměstí", + "avgLatitude": 50.0328064, + "avgLongitude": 14.3120089 + }, + { + "id": "U9359", + "name": "Řepov", + "avgLatitude": 50.40684, + "avgLongitude": 14.9559078 + }, + { + "id": "U6887", + "name": "Řeřichy", + "avgLatitude": 50.07815, + "avgLongitude": 13.5861168 + }, + { + "id": "U2280", + "name": "Řevnice", + "avgLatitude": 49.9165039, + "avgLongitude": 14.2389135 + }, + { + "id": "U2375", + "name": "Řevnice,škola", + "avgLatitude": 49.91334, + "avgLongitude": 14.2370863 + }, + { + "id": "U2929", + "name": "Řevničov", + "avgLatitude": 50.1490364, + "avgLongitude": 13.8330088 + }, + { + "id": "U9331", + "name": "Řevničov", + "avgLatitude": 50.1833267, + "avgLongitude": 13.808733 + }, + { + "id": "U9330", + "name": "Řevničov,k Buckému rybníku", + "avgLatitude": 50.17487, + "avgLongitude": 13.82682 + }, + { + "id": "U9332", + "name": "Řevničov,Rozc.K Žel.st.", + "avgLatitude": 50.1683044, + "avgLongitude": 13.8413906 + }, + { + "id": "U3035", + "name": "Řezáčovo náměstí", + "avgLatitude": 50.1007652, + "avgLongitude": 14.4372 + }, + { + "id": "U2823", + "name": "Řež", + "avgLatitude": 50.1791763, + "avgLongitude": 14.3552876 + }, + { + "id": "U636", + "name": "Říčanova", + "avgLatitude": 50.0813866, + "avgLongitude": 14.3530579 + }, + { + "id": "U2142", + "name": "Říčany", + "avgLatitude": 49.99753, + "avgLongitude": 14.6637573 + }, + { + "id": "U2141", + "name": "Říčany,5.května", + "avgLatitude": 49.9931335, + "avgLongitude": 14.6669331 + }, + { + "id": "U1929", + "name": "Říčany,Černokostelecká", + "avgLatitude": 50.0063, + "avgLongitude": 14.6537447 + }, + { + "id": "U2974", + "name": "Říčany,Fibichova", + "avgLatitude": 49.9908371, + "avgLongitude": 14.6612272 + }, + { + "id": "U1956", + "name": "Říčany,Hřbitov", + "avgLatitude": 49.9887543, + "avgLongitude": 14.6440811 + }, + { + "id": "U1877", + "name": "Říčany,Jažlovice", + "avgLatitude": 49.963768, + "avgLongitude": 14.6341038 + }, + { + "id": "U1876", + "name": "Říčany,Jažlovice,Zděbrady", + "avgLatitude": 49.96732, + "avgLongitude": 14.6209316 + }, + { + "id": "U1900", + "name": "Říčany,Komenského nám.", + "avgLatitude": 49.9920578, + "avgLongitude": 14.6646156 + }, + { + "id": "U1861", + "name": "Říčany,Kuří", + "avgLatitude": 49.9877663, + "avgLongitude": 14.6193914 + }, + { + "id": "U1925", + "name": "Říčany,Kuří,Kuříčko", + "avgLatitude": 49.98809, + "avgLongitude": 14.6378727 + }, + { + "id": "U1903", + "name": "Říčany,Marvánek", + "avgLatitude": 49.98522, + "avgLongitude": 14.6551685 + }, + { + "id": "U1881", + "name": "Říčany,Masarykovo nám.", + "avgLatitude": 49.9916534, + "avgLongitude": 14.6556664 + }, + { + "id": "U6808", + "name": "Říčany,Melantrichova", + "avgLatitude": 49.9890671, + "avgLongitude": 14.66636 + }, + { + "id": "U6806", + "name": "Říčany,MŠ Zahrádka", + "avgLatitude": 49.98661, + "avgLongitude": 14.6510649 + }, + { + "id": "U6804", + "name": "Říčany,Na Kavčí skále", + "avgLatitude": 49.99262, + "avgLongitude": 14.6801443 + }, + { + "id": "U6793", + "name": "Říčany,Na Obci", + "avgLatitude": 49.9890862, + "avgLongitude": 14.652072 + }, + { + "id": "U6794", + "name": "Říčany,Nemocnice", + "avgLatitude": 49.9960823, + "avgLongitude": 14.6747684 + }, + { + "id": "U6790", + "name": "Říčany,OÁZA", + "avgLatitude": 49.9817543, + "avgLongitude": 14.6564331 + }, + { + "id": "U2085", + "name": "Říčany,Olivovna", + "avgLatitude": 49.99188, + "avgLongitude": 14.691329 + }, + { + "id": "U1813", + "name": "Říčany,Pacov", + "avgLatitude": 50.01251, + "avgLongitude": 14.6740074 + }, + { + "id": "U6797", + "name": "Říčany,Pacov,Březská rozc.", + "avgLatitude": 50.00524, + "avgLongitude": 14.6814241 + }, + { + "id": "U2456", + "name": "Říčany,Pacov,Horní Pacov", + "avgLatitude": 50.0134544, + "avgLongitude": 14.6823444 + }, + { + "id": "U6798", + "name": "Říčany,Pacov,Nad Bahnivkou", + "avgLatitude": 50.00839, + "avgLongitude": 14.6734457 + }, + { + "id": "U9364", + "name": "Říčany,Pacov,U Hřbitova", + "avgLatitude": 50.01024, + "avgLongitude": 14.6685209 + }, + { + "id": "U6799", + "name": "Říčany,Pacov,ZŠ NEMO", + "avgLatitude": 50.00936, + "avgLongitude": 14.6697741 + }, + { + "id": "U1883", + "name": "Říčany,Park A.Švehly", + "avgLatitude": 49.99516, + "avgLongitude": 14.6599007 + }, + { + "id": "U1879", + "name": "Říčany,Pivoňková", + "avgLatitude": 49.9896126, + "avgLongitude": 14.6769657 + }, + { + "id": "U1899", + "name": "Říčany,Pod Kavčí Skálou", + "avgLatitude": 49.99091, + "avgLongitude": 14.674778 + }, + { + "id": "U1884", + "name": "Říčany,Pod Lihovarem", + "avgLatitude": 49.99709, + "avgLongitude": 14.6589489 + }, + { + "id": "U1811", + "name": "Říčany,Podhradí", + "avgLatitude": 49.99154, + "avgLongitude": 14.6513958 + }, + { + "id": "U7038", + "name": "Říčany,Politických vězňů", + "avgLatitude": 49.99427, + "avgLongitude": 14.6676331 + }, + { + "id": "U1885", + "name": "Říčany,Prům.areál Černokostelecká", + "avgLatitude": 50.00468, + "avgLongitude": 14.6572609 + }, + { + "id": "U1878", + "name": "Říčany,Radošovice,Haškova", + "avgLatitude": 49.999157, + "avgLongitude": 14.6678915 + }, + { + "id": "U6801", + "name": "Říčany,Radošovice,Mozartova", + "avgLatitude": 50.00526, + "avgLongitude": 14.66448 + }, + { + "id": "U1891", + "name": "Říčany,Radošovice,podjezd", + "avgLatitude": 50.0017, + "avgLongitude": 14.6634207 + }, + { + "id": "U6796", + "name": "Říčany,Radošovice,Rokytka", + "avgLatitude": 50.0038528, + "avgLongitude": 14.67593 + }, + { + "id": "U1882", + "name": "Říčany,Radošovice,sokolovna", + "avgLatitude": 49.99534, + "avgLongitude": 14.6759567 + }, + { + "id": "U1875", + "name": "Říčany,Radošovice,Větrník", + "avgLatitude": 50.0015945, + "avgLongitude": 14.6628275 + }, + { + "id": "U6795", + "name": "Říčany,Radošovice,vojenské velitelství", + "avgLatitude": 50.0014877, + "avgLongitude": 14.6714554 + }, + { + "id": "U1888", + "name": "Říčany,Radošovice,ZŠ Bezručova", + "avgLatitude": 49.99824, + "avgLongitude": 14.6703634 + }, + { + "id": "U1886", + "name": "Říčany,Rychta", + "avgLatitude": 49.99301, + "avgLongitude": 14.6821327 + }, + { + "id": "U1894", + "name": "Říčany,Sídl.Olivovna", + "avgLatitude": 49.9912758, + "avgLongitude": 14.6857433 + }, + { + "id": "U6792", + "name": "Říčany,Srnčí", + "avgLatitude": 50.0037346, + "avgLongitude": 14.6464548 + }, + { + "id": "U1815", + "name": "Říčany,Strašín", + "avgLatitude": 50.0031929, + "avgLongitude": 14.702034 + }, + { + "id": "U6802", + "name": "Říčany,Strašín,Pampelišková", + "avgLatitude": 50.0043526, + "avgLongitude": 14.6960821 + }, + { + "id": "U6800", + "name": "Říčany,Strašín,Pastelkov", + "avgLatitude": 50.0025177, + "avgLongitude": 14.6876869 + }, + { + "id": "U1897", + "name": "Říčany,Strašín,Rest.", + "avgLatitude": 49.99984, + "avgLongitude": 14.7036009 + }, + { + "id": "U1870", + "name": "Říčany,Štefánikova", + "avgLatitude": 49.99351, + "avgLongitude": 14.6605806 + }, + { + "id": "U6803", + "name": "Říčany,Terronská", + "avgLatitude": 49.99426, + "avgLongitude": 14.6738291 + }, + { + "id": "U1889", + "name": "Říčany,U Lípy", + "avgLatitude": 49.9901352, + "avgLongitude": 14.6498852 + }, + { + "id": "U1890", + "name": "Říčany,U Milána", + "avgLatitude": 49.99375, + "avgLongitude": 14.6583681 + }, + { + "id": "U6791", + "name": "Říčany,U Trati", + "avgLatitude": 50.00172, + "avgLongitude": 14.6524906 + }, + { + "id": "U1892", + "name": "Říčany,Voděrádky", + "avgLatitude": 49.9773636, + "avgLongitude": 14.6385212 + }, + { + "id": "U2230", + "name": "Říčany,Voděradská", + "avgLatitude": 49.98302, + "avgLongitude": 14.6475716 + }, + { + "id": "U1898", + "name": "Říčany,Wolkerova", + "avgLatitude": 49.99525, + "avgLongitude": 14.6497211 + }, + { + "id": "U6805", + "name": "Říčany,ZŠ U Říčanského lesa", + "avgLatitude": 49.9899864, + "avgLongitude": 14.685503 + }, + { + "id": "U7913", + "name": "Řimovice", + "avgLatitude": 49.6961479, + "avgLongitude": 14.9434776 + }, + { + "id": "U1062", + "name": "Římská", + "avgLatitude": 50.076767, + "avgLongitude": 14.4354067 + }, + { + "id": "U9263", + "name": "Řisuty", + "avgLatitude": 50.21681, + "avgLongitude": 14.0048141 + }, + { + "id": "U9264", + "name": "Řisuty,u mlýna", + "avgLatitude": 50.2186356, + "avgLongitude": 14.0130081 + }, + { + "id": "U1732", + "name": "Řitka", + "avgLatitude": 49.89473, + "avgLongitude": 14.2985668 + }, + { + "id": "U2122", + "name": "Řitka,Bučina", + "avgLatitude": 49.8898468, + "avgLongitude": 14.2887592 + }, + { + "id": "U1707", + "name": "Řitka,Hl.sil.", + "avgLatitude": 49.89303, + "avgLongitude": 14.3049936 + }, + { + "id": "U4626", + "name": "Řitka,U Rybníka", + "avgLatitude": 49.89553, + "avgLongitude": 14.2925577 + }, + { + "id": "U6276", + "name": "Řitonice", + "avgLatitude": 50.40798, + "avgLongitude": 15.106658 + }, + { + "id": "U6277", + "name": "Řitonice,Domousnická", + "avgLatitude": 50.4076233, + "avgLongitude": 15.109026 + }, + { + "id": "U9676", + "name": "Sádek", + "avgLatitude": 49.73284, + "avgLongitude": 13.9827318 + }, + { + "id": "U1434", + "name": "Sadská", + "avgLatitude": 50.13327, + "avgLongitude": 14.9863939 + }, + { + "id": "U2807", + "name": "Sadská", + "avgLatitude": 50.13135, + "avgLongitude": 14.9868689 + }, + { + "id": "U2591", + "name": "Sadská,Hálkova", + "avgLatitude": 50.1406937, + "avgLongitude": 14.9874516 + }, + { + "id": "U1441", + "name": "Sadská,Hotel Modrá Hvězda", + "avgLatitude": 50.14521, + "avgLongitude": 14.9808445 + }, + { + "id": "U1435", + "name": "Sadská,Husova", + "avgLatitude": 50.1372833, + "avgLongitude": 14.9850931 + }, + { + "id": "U1433", + "name": "Sadská,Kaple", + "avgLatitude": 50.1336365, + "avgLongitude": 14.9692822 + }, + { + "id": "U1440", + "name": "Sadská,Mrsolská cesta", + "avgLatitude": 50.1499634, + "avgLongitude": 14.9649191 + }, + { + "id": "U1486", + "name": "Sadská,Prokopova", + "avgLatitude": 50.1288, + "avgLongitude": 14.9844952 + }, + { + "id": "U637", + "name": "Safírová", + "avgLatitude": 49.9897766, + "avgLongitude": 14.350359 + }, + { + "id": "U4151", + "name": "Samechov", + "avgLatitude": 49.88613, + "avgLongitude": 14.8351593 + }, + { + "id": "U2930", + "name": "Samopše", + "avgLatitude": 49.8606644, + "avgLongitude": 14.9162693 + }, + { + "id": "U9945", + "name": "Samopše,Talmberk", + "avgLatitude": 49.866848, + "avgLongitude": 14.9545135 + }, + { + "id": "U31005", + "name": "Samšina,Drštěkryje", + "avgLatitude": 50.4545441, + "avgLongitude": 15.2502117 + }, + { + "id": "U31004", + "name": "Samšina,odb.", + "avgLatitude": 50.45316, + "avgLongitude": 15.2381344 + }, + { + "id": "U638", + "name": "Santoška", + "avgLatitude": 50.0664749, + "avgLongitude": 14.3991375 + }, + { + "id": "U4862", + "name": "Sány", + "avgLatitude": 50.1301155, + "avgLongitude": 15.2411089 + }, + { + "id": "U6615", + "name": "Sány", + "avgLatitude": 50.12561, + "avgLongitude": 15.24734 + }, + { + "id": "U762", + "name": "Satalice", + "avgLatitude": 50.1256561, + "avgLongitude": 14.5714617 + }, + { + "id": "U639", + "name": "Satalická obora", + "avgLatitude": 50.1266174, + "avgLongitude": 14.5749807 + }, + { + "id": "U2033", + "name": "Sázava", + "avgLatitude": 49.87522, + "avgLongitude": 14.9062862 + }, + { + "id": "U2931", + "name": "Sázava zast.", + "avgLatitude": 49.8693, + "avgLongitude": 14.8938227 + }, + { + "id": "U7915", + "name": "Sázava,Bělokozly", + "avgLatitude": 49.8499336, + "avgLongitude": 14.9006672 + }, + { + "id": "U7916", + "name": "Sázava,Bělokozly,Trucovna", + "avgLatitude": 49.85484, + "avgLongitude": 14.8990269 + }, + { + "id": "U7917", + "name": "Sázava,Čeřenice", + "avgLatitude": 49.834877, + "avgLongitude": 14.9180241 + }, + { + "id": "U7918", + "name": "Sázava,Dojetřice", + "avgLatitude": 49.8682137, + "avgLongitude": 14.8722534 + }, + { + "id": "U7919", + "name": "Sázava,Dojetřice,háj.", + "avgLatitude": 49.8650055, + "avgLongitude": 14.8648615 + }, + { + "id": "U2032", + "name": "Sázava,Klášterní", + "avgLatitude": 49.8748779, + "avgLongitude": 14.8960266 + }, + { + "id": "U2031", + "name": "Sázava,osada Kopaniny", + "avgLatitude": 49.8794174, + "avgLongitude": 14.8831005 + }, + { + "id": "U9361", + "name": "Sázava,škola", + "avgLatitude": 49.87628, + "avgLongitude": 14.9027309 + }, + { + "id": "U5917", + "name": "Sázava,u Martina", + "avgLatitude": 49.87016, + "avgLongitude": 14.8952475 + }, + { + "id": "U9483", + "name": "Sázavka", + "avgLatitude": 49.7298737, + "avgLongitude": 15.3986206 + }, + { + "id": "U9145", + "name": "Sazená", + "avgLatitude": 50.30477, + "avgLongitude": 14.2871151 + }, + { + "id": "U640", + "name": "Sdružení", + "avgLatitude": 50.0544662, + "avgLongitude": 14.4425583 + }, + { + "id": "U9382", + "name": "Sedlčany", + "avgLatitude": 49.65586, + "avgLongitude": 14.4342079 + }, + { + "id": "U4764", + "name": "Sedlčany,aut.st.", + "avgLatitude": 49.6579361, + "avgLongitude": 14.4287157 + }, + { + "id": "U7920", + "name": "Sedlčany,Červený Hrádek", + "avgLatitude": 49.6562347, + "avgLongitude": 14.4529819 + }, + { + "id": "U7930", + "name": "Sedlčany,Doubravice,rozc.", + "avgLatitude": 49.64027, + "avgLongitude": 14.434021 + }, + { + "id": "U7926", + "name": "Sedlčany,KDS", + "avgLatitude": 49.6514053, + "avgLongitude": 14.4286232 + }, + { + "id": "U7921", + "name": "Sedlčany,koupaliště", + "avgLatitude": 49.6691475, + "avgLongitude": 14.4303236 + }, + { + "id": "U7925", + "name": "Sedlčany,kulturní dům", + "avgLatitude": 49.6619225, + "avgLongitude": 14.4189625 + }, + { + "id": "U7932", + "name": "Sedlčany,Libíň", + "avgLatitude": 49.6259155, + "avgLongitude": 14.4242344 + }, + { + "id": "U7933", + "name": "Sedlčany,Libíň,Klimětice", + "avgLatitude": 49.6333275, + "avgLongitude": 14.43273 + }, + { + "id": "U4763", + "name": "Sedlčany,Novoměstská", + "avgLatitude": 49.6630554, + "avgLongitude": 14.4234982 + }, + { + "id": "U7934", + "name": "Sedlčany,Oříkov", + "avgLatitude": 49.6416, + "avgLongitude": 14.3836384 + }, + { + "id": "U5903", + "name": "Sedlčany,Oříkov,rozc.", + "avgLatitude": 49.6515236, + "avgLongitude": 14.3792744 + }, + { + "id": "U7935", + "name": "Sedlčany,Roudný", + "avgLatitude": 49.6755066, + "avgLongitude": 14.4238148 + }, + { + "id": "U7924", + "name": "Sedlčany,Sedlecká", + "avgLatitude": 49.6549149, + "avgLongitude": 14.4259624 + }, + { + "id": "U7936", + "name": "Sedlčany,Sestrouň", + "avgLatitude": 49.6817474, + "avgLongitude": 14.4448681 + }, + { + "id": "U7937", + "name": "Sedlčany,Sestrouň,Mastník", + "avgLatitude": 49.6857758, + "avgLongitude": 14.4408684 + }, + { + "id": "U7938", + "name": "Sedlčany,Sestrouň,rozc.", + "avgLatitude": 49.68647, + "avgLongitude": 14.4301758 + }, + { + "id": "U7939", + "name": "Sedlčany,Solopysky", + "avgLatitude": 49.65402, + "avgLongitude": 14.3836222 + }, + { + "id": "U7929", + "name": "Sedlčany,Solopysky,kamenolom", + "avgLatitude": 49.661972, + "avgLongitude": 14.3880672 + }, + { + "id": "U7940", + "name": "Sedlčany,Solopysky,rozc.", + "avgLatitude": 49.6585655, + "avgLongitude": 14.3961325 + }, + { + "id": "U7923", + "name": "Sedlčany,strojírny", + "avgLatitude": 49.6539726, + "avgLongitude": 14.43734 + }, + { + "id": "U7943", + "name": "Sedlčany,Třebnice", + "avgLatitude": 49.6512947, + "avgLongitude": 14.3588381 + }, + { + "id": "U7048", + "name": "Sedlčany,Třebnice,rozc.", + "avgLatitude": 49.65342, + "avgLongitude": 14.3728237 + }, + { + "id": "U7942", + "name": "Sedlčany,Třebnice,Štíleček", + "avgLatitude": 49.6467438, + "avgLongitude": 14.346796 + }, + { + "id": "U7944", + "name": "Sedlčany,Zberaz", + "avgLatitude": 49.67483, + "avgLongitude": 14.4409475 + }, + { + "id": "U7931", + "name": "Sedlčany,Zberaz,rozc.Hradišťko", + "avgLatitude": 49.67736, + "avgLongitude": 14.4416666 + }, + { + "id": "U7928", + "name": "Sedlčany,zemědělský areál", + "avgLatitude": 49.65263, + "avgLongitude": 14.448103 + }, + { + "id": "U7271", + "name": "Sedlec", + "avgLatitude": 50.30072, + "avgLongitude": 14.7924166 + }, + { + "id": "U2249", + "name": "Sedlec", + "avgLatitude": 50.18452, + "avgLongitude": 14.4569082 + }, + { + "id": "U2562", + "name": "Sedlec,PEMA", + "avgLatitude": 50.1848831, + "avgLongitude": 14.4497223 + }, + { + "id": "U6771", + "name": "Sedlec-Prčice,Divišovice", + "avgLatitude": 49.6008072, + "avgLongitude": 14.5306826 + }, + { + "id": "U6768", + "name": "Sedlec-Prčice,Divišovická", + "avgLatitude": 49.58075, + "avgLongitude": 14.5420551 + }, + { + "id": "U6762", + "name": "Sedlec-Prčice,Dvorce", + "avgLatitude": 49.5598679, + "avgLongitude": 14.583704 + }, + { + "id": "U6772", + "name": "Sedlec-Prčice,Chotětice", + "avgLatitude": 49.6071243, + "avgLongitude": 14.5428648 + }, + { + "id": "U6782", + "name": "Sedlec-Prčice,Jetřichovice", + "avgLatitude": 49.5520172, + "avgLongitude": 14.5262928 + }, + { + "id": "U6781", + "name": "Sedlec-Prčice,Jetřichovice,Záhoří", + "avgLatitude": 49.54878, + "avgLongitude": 14.5395422 + }, + { + "id": "U7946", + "name": "Sedlec-Prčice,Kvasejovice", + "avgLatitude": 49.5709839, + "avgLongitude": 14.4943275 + }, + { + "id": "U7947", + "name": "Sedlec-Prčice,Malkovice", + "avgLatitude": 49.57878, + "avgLongitude": 14.4843445 + }, + { + "id": "U7948", + "name": "Sedlec-Prčice,Malkovice,rozc.", + "avgLatitude": 49.5779266, + "avgLongitude": 14.4998255 + }, + { + "id": "U7949", + "name": "Sedlec-Prčice,Matějov", + "avgLatitude": 49.57125, + "avgLongitude": 14.473587 + }, + { + "id": "U7950", + "name": "Sedlec-Prčice,Měšetice", + "avgLatitude": 49.58262, + "avgLongitude": 14.5187 + }, + { + "id": "U6773", + "name": "Sedlec-Prčice,Mrákotice", + "avgLatitude": 49.60122, + "avgLongitude": 14.5558853 + }, + { + "id": "U7951", + "name": "Sedlec-Prčice,Myslkov", + "avgLatitude": 49.5650063, + "avgLongitude": 14.458889 + }, + { + "id": "U6767", + "name": "Sedlec-Prčice,nám.", + "avgLatitude": 49.5728264, + "avgLongitude": 14.5328112 + }, + { + "id": "U7952", + "name": "Sedlec-Prčice,Nové Dvory", + "avgLatitude": 49.5723534, + "avgLongitude": 14.4632111 + }, + { + "id": "U7945", + "name": "Sedlec-Prčice,Nové Dvory,rozc.Myslkov", + "avgLatitude": 49.57102, + "avgLongitude": 14.45921 + }, + { + "id": "U6766", + "name": "Sedlec-Prčice,Prčice", + "avgLatitude": 49.5777969, + "avgLongitude": 14.5392313 + }, + { + "id": "U6770", + "name": "Sedlec-Prčice,rozc.Mrákotice", + "avgLatitude": 49.5919266, + "avgLongitude": 14.5605793 + }, + { + "id": "U6780", + "name": "Sedlec-Prčice,Rozc.Násilov", + "avgLatitude": 49.54493, + "avgLongitude": 14.55064 + }, + { + "id": "U6765", + "name": "Sedlec-Prčice,rozc.Přestavlky", + "avgLatitude": 49.57373, + "avgLongitude": 14.5513506 + }, + { + "id": "U6764", + "name": "Sedlec-Prčice,rozc.Rohov", + "avgLatitude": 49.57203, + "avgLongitude": 14.5631857 + }, + { + "id": "U6763", + "name": "Sedlec-Prčice,Staré Mitrovice", + "avgLatitude": 49.56826, + "avgLongitude": 14.5719147 + }, + { + "id": "U7953", + "name": "Sedlec-Prčice,Sušetice", + "avgLatitude": 49.56054, + "avgLongitude": 14.5069523 + }, + { + "id": "U5957", + "name": "Sedlec-Prčice,Sušetice,U Šiků", + "avgLatitude": 49.5570145, + "avgLongitude": 14.496232 + }, + { + "id": "U6769", + "name": "Sedlec-Prčice,u Milotů", + "avgLatitude": 49.58084, + "avgLongitude": 14.5426254 + }, + { + "id": "U6783", + "name": "Sedlec-Prčice,Uhřice", + "avgLatitude": 49.56321, + "avgLongitude": 14.5284538 + }, + { + "id": "U7941", + "name": "Sedlec-Prčice,Veletín", + "avgLatitude": 49.55513, + "avgLongitude": 14.4748211 + }, + { + "id": "U7954", + "name": "Sedlec-Prčice,Veletín,rozc.", + "avgLatitude": 49.55421, + "avgLongitude": 14.4894028 + }, + { + "id": "U6778", + "name": "Sedlec-Prčice,Vrchotice", + "avgLatitude": 49.54553, + "avgLongitude": 14.5566444 + }, + { + "id": "U6779", + "name": "Sedlec-Prčice,Vrchotice,Na Františku", + "avgLatitude": 49.544014, + "avgLongitude": 14.5623779 + }, + { + "id": "U6761", + "name": "Sedlec-Prčice,Záběhlice", + "avgLatitude": 49.55078, + "avgLongitude": 14.5903225 + }, + { + "id": "U1775", + "name": "Sedlice", + "avgLatitude": 49.6212234, + "avgLongitude": 13.880558 + }, + { + "id": "U5828", + "name": "Sedlice,Hoděmyšl", + "avgLatitude": 49.611496, + "avgLongitude": 13.8891277 + }, + { + "id": "U31838", + "name": "Sedlice,nám.", + "avgLatitude": 49.3784256, + "avgLongitude": 13.9365931 + }, + { + "id": "U31840", + "name": "Sedlice,Němčice", + "avgLatitude": 49.3916435, + "avgLongitude": 13.9205055 + }, + { + "id": "U31839", + "name": "Sedlice,škola", + "avgLatitude": 49.3738251, + "avgLongitude": 13.9418678 + }, + { + "id": "U31532", + "name": "Sedliště,Na Bahnech", + "avgLatitude": 50.3952637, + "avgLongitude": 15.2244854 + }, + { + "id": "U31841", + "name": "Sedliště,ObÚ", + "avgLatitude": 50.393013, + "avgLongitude": 15.2179995 + }, + { + "id": "U3024", + "name": "Sekeřická", + "avgLatitude": 50.1130524, + "avgLongitude": 14.6101294 + }, + { + "id": "U3165", + "name": "Seletice", + "avgLatitude": 50.3235245, + "avgLongitude": 15.0940628 + }, + { + "id": "U3021", + "name": "Selských baterií", + "avgLatitude": 50.073967, + "avgLongitude": 14.3163433 + }, + { + "id": "U6183", + "name": "Semčice", + "avgLatitude": 50.36982, + "avgLongitude": 15.0054636 + }, + { + "id": "U6237", + "name": "Semčice,zdravotní středisko", + "avgLatitude": 50.3661728, + "avgLongitude": 15.0040016 + }, + { + "id": "U1452", + "name": "Semice,Břeha", + "avgLatitude": 50.1641541, + "avgLongitude": 14.8702087 + }, + { + "id": "U1453", + "name": "Semice,Na Husánku", + "avgLatitude": 50.1657333, + "avgLongitude": 14.8582058 + }, + { + "id": "U2282", + "name": "Semice,Rozc.Velenka", + "avgLatitude": 50.1628075, + "avgLongitude": 14.8790207 + }, + { + "id": "U1451", + "name": "Semice,střed", + "avgLatitude": 50.16425, + "avgLongitude": 14.874856 + }, + { + "id": "U31190", + "name": "Semily,aut.nádr.", + "avgLatitude": 50.6023636, + "avgLongitude": 15.3264885 + }, + { + "id": "U31192", + "name": "Semily,Cimbál", + "avgLatitude": 50.6211929, + "avgLongitude": 15.3368015 + }, + { + "id": "U31971", + "name": "Semily,Komenského nám.", + "avgLatitude": 50.60314, + "avgLongitude": 15.3373375 + }, + { + "id": "U31972", + "name": "Semily,krematorium", + "avgLatitude": 50.6073532, + "avgLongitude": 15.3346252 + }, + { + "id": "U32126", + "name": "Semily,Letná", + "avgLatitude": 50.6111069, + "avgLongitude": 15.3135414 + }, + { + "id": "U32125", + "name": "Semily,Luční", + "avgLatitude": 50.602272, + "avgLongitude": 15.3289719 + }, + { + "id": "U31193", + "name": "Semily,Nouzov,odb.", + "avgLatitude": 50.624855, + "avgLongitude": 15.3500986 + }, + { + "id": "U32124", + "name": "Semily,Podmoklice,rozc.", + "avgLatitude": 50.60625, + "avgLongitude": 15.3242073 + }, + { + "id": "U31191", + "name": "Semily,Riegrovo nám.", + "avgLatitude": 50.60278, + "avgLongitude": 15.333827 + }, + { + "id": "U31973", + "name": "Semily,U 14 pomocníků", + "avgLatitude": 50.61051, + "avgLongitude": 15.34067 + }, + { + "id": "U7955", + "name": "Semtěš", + "avgLatitude": 49.9587631, + "avgLongitude": 15.512949 + }, + { + "id": "U6890", + "name": "Senec", + "avgLatitude": 50.0669174, + "avgLongitude": 13.7057257 + }, + { + "id": "U6321", + "name": "Senice", + "avgLatitude": 50.18354, + "avgLongitude": 15.2074108 + }, + { + "id": "U1554", + "name": "Senohraby", + "avgLatitude": 49.8970261, + "avgLongitude": 14.7277079 + }, + { + "id": "U1551", + "name": "Senohraby,Odb.", + "avgLatitude": 49.89518, + "avgLongitude": 14.7131462 + }, + { + "id": "U4281", + "name": "Senohraby,U Školy", + "avgLatitude": 49.8958855, + "avgLongitude": 14.7227421 + }, + { + "id": "U1552", + "name": "Senohraby,U Zvoničky", + "avgLatitude": 49.89531, + "avgLongitude": 14.7180939 + }, + { + "id": "U6846", + "name": "Senomaty", + "avgLatitude": 50.1004181, + "avgLongitude": 13.6556282 + }, + { + "id": "U9540", + "name": "Senomaty", + "avgLatitude": 50.0955048, + "avgLongitude": 13.6463337 + }, + { + "id": "U6849", + "name": "Senomaty,Hostokryje", + "avgLatitude": 50.0849228, + "avgLongitude": 13.66818 + }, + { + "id": "U6850", + "name": "Senomaty,Hostokryje,Brant", + "avgLatitude": 50.0737457, + "avgLongitude": 13.6771069 + }, + { + "id": "U6847", + "name": "Senomaty,Na Vyhlídce", + "avgLatitude": 50.1059647, + "avgLongitude": 13.65089 + }, + { + "id": "U6848", + "name": "Senomaty,Nouzov", + "avgLatitude": 50.1083641, + "avgLongitude": 13.6453018 + }, + { + "id": "U31844", + "name": "Senožaty,Mochny", + "avgLatitude": 49.55904, + "avgLongitude": 15.1804638 + }, + { + "id": "U31842", + "name": "Senožaty,ObÚ", + "avgLatitude": 49.5675, + "avgLongitude": 15.1969433 + }, + { + "id": "U31845", + "name": "Senožaty,Otavožaty,Okoun", + "avgLatitude": 49.5680962, + "avgLongitude": 15.2160921 + }, + { + "id": "U31846", + "name": "Senožaty,Otavožaty,rozc.0.5", + "avgLatitude": 49.56862, + "avgLongitude": 15.22823 + }, + { + "id": "U31847", + "name": "Senožaty,Závodí", + "avgLatitude": 49.56974, + "avgLongitude": 15.2372932 + }, + { + "id": "U31843", + "name": "Senožaty,ZD", + "avgLatitude": 49.5656357, + "avgLongitude": 15.1922712 + }, + { + "id": "U31916", + "name": "Senožaty,ZŠ", + "avgLatitude": 49.569252, + "avgLongitude": 15.2044249 + }, + { + "id": "U642", + "name": "Serpentina", + "avgLatitude": 50.03608, + "avgLongitude": 14.4010229 + }, + { + "id": "U643", + "name": "Severozápadní", + "avgLatitude": 50.0468674, + "avgLongitude": 14.4762154 + }, + { + "id": "U6385", + "name": "Sezemice", + "avgLatitude": 50.5857849, + "avgLongitude": 15.0051546 + }, + { + "id": "U1352", + "name": "Sezemická", + "avgLatitude": 50.1245422, + "avgLongitude": 14.619257 + }, + { + "id": "U31450", + "name": "Sezimovo Ústí,Kovosvit", + "avgLatitude": 49.37702, + "avgLongitude": 14.6994152 + }, + { + "id": "U644", + "name": "Schodová", + "avgLatitude": 50.06824, + "avgLongitude": 14.363554 + }, + { + "id": "U7292", + "name": "Schořov", + "avgLatitude": 49.8577271, + "avgLongitude": 15.3796787 + }, + { + "id": "U645", + "name": "Sibeliova", + "avgLatitude": 50.0926743, + "avgLongitude": 14.3841915 + }, + { + "id": "U646", + "name": "Sibiřské náměstí", + "avgLatitude": 50.10461, + "avgLongitude": 14.4059582 + }, + { + "id": "U1253", + "name": "Sibřina", + "avgLatitude": 50.05625, + "avgLongitude": 14.66994 + }, + { + "id": "U1252", + "name": "Sibřina,Stupice", + "avgLatitude": 50.05327, + "avgLongitude": 14.64785 + }, + { + "id": "U5830", + "name": "Sibřina,škola", + "avgLatitude": 50.0636826, + "avgLongitude": 14.6666393 + }, + { + "id": "U4115", + "name": "Sibřina,Zahradní", + "avgLatitude": 50.053997, + "avgLongitude": 14.66811 + }, + { + "id": "U3215", + "name": "Sídliště Baba", + "avgLatitude": 50.1159134, + "avgLongitude": 14.3869419 + }, + { + "id": "U1019", + "name": "Sídliště Barrandov", + "avgLatitude": 50.0313644, + "avgLongitude": 14.36829 + }, + { + "id": "U648", + "name": "Sídliště Bohnice", + "avgLatitude": 50.13161, + "avgLongitude": 14.41061 + }, + { + "id": "U1102", + "name": "Sídliště Čakovice", + "avgLatitude": 50.15766, + "avgLongitude": 14.5203 + }, + { + "id": "U6010", + "name": "Sídliště Černý Most", + "avgLatitude": 50.1021729, + "avgLongitude": 14.5828152 + }, + { + "id": "U943", + "name": "Sídliště Červený Vrch", + "avgLatitude": 50.0980225, + "avgLongitude": 14.3592377 + }, + { + "id": "U949", + "name": "Sídliště Čimice", + "avgLatitude": 50.14411, + "avgLongitude": 14.4320211 + }, + { + "id": "U651", + "name": "Sídliště Ďáblice", + "avgLatitude": 50.13245, + "avgLongitude": 14.4791613 + }, + { + "id": "U652", + "name": "Sídliště Hloubětín", + "avgLatitude": 50.106472, + "avgLongitude": 14.5424919 + }, + { + "id": "U653", + "name": "Sídliště Homolka", + "avgLatitude": 50.07363, + "avgLongitude": 14.351759 + }, + { + "id": "U30", + "name": "Sídliště Horní Počernice", + "avgLatitude": 50.11129, + "avgLongitude": 14.6141605 + }, + { + "id": "U318", + "name": "Sídliště Jahodnice", + "avgLatitude": 50.0888062, + "avgLongitude": 14.5506115 + }, + { + "id": "U27", + "name": "Sídliště Jinonice", + "avgLatitude": 50.0510635, + "avgLongitude": 14.3656378 + }, + { + "id": "U688", + "name": "Sídliště Kobylisy", + "avgLatitude": 50.1270447, + "avgLongitude": 14.4521084 + }, + { + "id": "U656", + "name": "Sídliště Krč", + "avgLatitude": 50.02298, + "avgLongitude": 14.4513979 + }, + { + "id": "U657", + "name": "Sídliště Lehovec", + "avgLatitude": 50.10326, + "avgLongitude": 14.5486431 + }, + { + "id": "U21", + "name": "Sídliště Letňany", + "avgLatitude": 50.14267, + "avgLongitude": 14.5068054 + }, + { + "id": "U658", + "name": "Sídliště Lhotka", + "avgLatitude": 50.01722, + "avgLongitude": 14.4344463 + }, + { + "id": "U659", + "name": "Sídliště Libuš", + "avgLatitude": 50.0060272, + "avgLongitude": 14.4540806 + }, + { + "id": "U660", + "name": "Sídliště Malešice", + "avgLatitude": 50.0829468, + "avgLongitude": 14.5080128 + }, + { + "id": "U946", + "name": "Sídliště Modřany", + "avgLatitude": 50.00524, + "avgLongitude": 14.4331646 + }, + { + "id": "U661", + "name": "Sídliště Na Dědině", + "avgLatitude": 50.08964, + "avgLongitude": 14.3094969 + }, + { + "id": "U1224", + "name": "Sídliště Na Groši", + "avgLatitude": 50.05796, + "avgLongitude": 14.5213737 + }, + { + "id": "U662", + "name": "Sídliště Novodvorská", + "avgLatitude": 50.02511, + "avgLongitude": 14.4343939 + }, + { + "id": "U663", + "name": "Sídliště Pankrác", + "avgLatitude": 50.04898, + "avgLongitude": 14.4350014 + }, + { + "id": "U967", + "name": "Sídliště Petrovice", + "avgLatitude": 50.03468, + "avgLongitude": 14.5633049 + }, + { + "id": "U541", + "name": "Sídliště Petřiny", + "avgLatitude": 50.0865059, + "avgLongitude": 14.339509 + }, + { + "id": "U369", + "name": "Sídliště Písnice", + "avgLatitude": 50.0008621, + "avgLongitude": 14.4665041 + }, + { + "id": "U665", + "name": "Sídliště Prosek", + "avgLatitude": 50.1224976, + "avgLongitude": 14.4937325 + }, + { + "id": "U666", + "name": "Sídliště Radotín", + "avgLatitude": 49.98021, + "avgLongitude": 14.3535414 + }, + { + "id": "U1016", + "name": "Sídliště Rohožník", + "avgLatitude": 50.07263, + "avgLongitude": 14.6818085 + }, + { + "id": "U1323", + "name": "Sídliště Skalka", + "avgLatitude": 50.06266, + "avgLongitude": 14.5111647 + }, + { + "id": "U669", + "name": "Sídliště Spořilov", + "avgLatitude": 50.04779, + "avgLongitude": 14.4902086 + }, + { + "id": "U2758", + "name": "Sídliště Uhříněves", + "avgLatitude": 50.03115, + "avgLongitude": 14.6116447 + }, + { + "id": "U670", + "name": "Sídliště Zahradní Město", + "avgLatitude": 50.0568771, + "avgLongitude": 14.5131674 + }, + { + "id": "U672", + "name": "Sídliště Zbraslav", + "avgLatitude": 49.96811, + "avgLongitude": 14.384634 + }, + { + "id": "U178", + "name": "Sídliště Zličín", + "avgLatitude": 50.06025, + "avgLongitude": 14.293251 + }, + { + "id": "U1098", + "name": "Sídlištní", + "avgLatitude": 50.12704, + "avgLongitude": 14.3783741 + }, + { + "id": "U1414", + "name": "Sicherova", + "avgLatitude": 50.1151466, + "avgLongitude": 14.56111 + }, + { + "id": "U953", + "name": "Skalka", + "avgLatitude": 50.068222, + "avgLongitude": 14.5077934 + }, + { + "id": "U31313", + "name": "Skalka u Doks", + "avgLatitude": 50.5635834, + "avgLongitude": 14.6189766 + }, + { + "id": "U9355", + "name": "Skalsko", + "avgLatitude": 50.4321365, + "avgLongitude": 14.7553511 + }, + { + "id": "U4057", + "name": "Skalsko,náves", + "avgLatitude": 50.426487, + "avgLongitude": 14.75717 + }, + { + "id": "U4055", + "name": "Skalsko,Panské zahrady", + "avgLatitude": 50.4231033, + "avgLongitude": 14.7620335 + }, + { + "id": "U4056", + "name": "Skalsko,zámek", + "avgLatitude": 50.42652, + "avgLongitude": 14.7626028 + }, + { + "id": "U962", + "name": "Skládka Ďáblice", + "avgLatitude": 50.1543159, + "avgLongitude": 14.4856367 + }, + { + "id": "U677", + "name": "Sklářská", + "avgLatitude": 50.0572433, + "avgLongitude": 14.5366192 + }, + { + "id": "U678", + "name": "Skloněná", + "avgLatitude": 50.1003342, + "avgLongitude": 14.4875793 + }, + { + "id": "U2514", + "name": "Skochovice", + "avgLatitude": 49.9246635, + "avgLongitude": 14.376194 + }, + { + "id": "U2201", + "name": "Skorkov", + "avgLatitude": 50.2311554, + "avgLongitude": 14.7493382 + }, + { + "id": "U2198", + "name": "Skorkov,Otradovice,Křiž.", + "avgLatitude": 50.21619, + "avgLongitude": 14.7417259 + }, + { + "id": "U2200", + "name": "Skorkov,Podbrahy", + "avgLatitude": 50.2206573, + "avgLongitude": 14.745615 + }, + { + "id": "U9466", + "name": "Skovice", + "avgLatitude": 49.90564, + "avgLongitude": 15.4609556 + }, + { + "id": "U9094", + "name": "Skryje", + "avgLatitude": 49.96523, + "avgLongitude": 13.767293 + }, + { + "id": "U9092", + "name": "Skryje,Suchá jedle", + "avgLatitude": 49.9408722, + "avgLongitude": 13.7828875 + }, + { + "id": "U6928", + "name": "Skryje,u mostu", + "avgLatitude": 49.9699554, + "avgLongitude": 13.77252 + }, + { + "id": "U9093", + "name": "Skryje,U Ručiček", + "avgLatitude": 49.9453354, + "avgLongitude": 13.7652721 + }, + { + "id": "U7066", + "name": "Skřipel", + "avgLatitude": 49.84145, + "avgLongitude": 14.0666981 + }, + { + "id": "U9035", + "name": "Skuhrov", + "avgLatitude": 49.8755646, + "avgLongitude": 14.14678 + }, + { + "id": "U9036", + "name": "Skuhrov,Drahlovice", + "avgLatitude": 49.8718567, + "avgLongitude": 14.13918 + }, + { + "id": "U9034", + "name": "Skuhrov,Hatě", + "avgLatitude": 49.8812675, + "avgLongitude": 14.163702 + }, + { + "id": "U9033", + "name": "Skuhrov,Hodyně", + "avgLatitude": 49.88472, + "avgLongitude": 14.1743851 + }, + { + "id": "U9974", + "name": "Skvrňov", + "avgLatitude": 49.89779, + "avgLongitude": 14.9995794 + }, + { + "id": "U6904", + "name": "Slabce,Kostelík", + "avgLatitude": 49.9746056, + "avgLongitude": 13.7062378 + }, + { + "id": "U6905", + "name": "Slabce,Kostelík,pila", + "avgLatitude": 49.9621277, + "avgLongitude": 13.6998482 + }, + { + "id": "U6903", + "name": "Slabce,Modřejovice", + "avgLatitude": 49.9941177, + "avgLongitude": 13.6910629 + }, + { + "id": "U6902", + "name": "Slabce,ovčín", + "avgLatitude": 49.9947281, + "avgLongitude": 13.6996536 + }, + { + "id": "U6901", + "name": "Slabce,pošta", + "avgLatitude": 49.9998665, + "avgLongitude": 13.712779 + }, + { + "id": "U6899", + "name": "Slabce,Rousínov", + "avgLatitude": 50.019455, + "avgLongitude": 13.6750116 + }, + { + "id": "U6907", + "name": "Slabce,rozc.", + "avgLatitude": 50.0109177, + "avgLongitude": 13.7144909 + }, + { + "id": "U6908", + "name": "Slabce,Skupá,rozc.", + "avgLatitude": 50.01724, + "avgLongitude": 13.71296 + }, + { + "id": "U6900", + "name": "Slabce,Svinařov", + "avgLatitude": 50.0063477, + "avgLongitude": 13.6928959 + }, + { + "id": "U6906", + "name": "Slabce,u Reformy", + "avgLatitude": 50.00296, + "avgLongitude": 13.7147961 + }, + { + "id": "U31223", + "name": "Slaná", + "avgLatitude": 50.58079, + "avgLongitude": 15.3303356 + }, + { + "id": "U32189", + "name": "Slaná,Bořkov", + "avgLatitude": 50.58658, + "avgLongitude": 15.3482361 + }, + { + "id": "U236", + "name": "Slánská", + "avgLatitude": 50.0644836, + "avgLongitude": 14.30897 + }, + { + "id": "U2868", + "name": "Slaný", + "avgLatitude": 50.2285042, + "avgLongitude": 14.0756912 + }, + { + "id": "U2867", + "name": "Slaný předměstí", + "avgLatitude": 50.2262, + "avgLongitude": 14.1021833 + }, + { + "id": "U4785", + "name": "Slaný,Arbesova", + "avgLatitude": 50.2320175, + "avgLongitude": 14.0669 + }, + { + "id": "U4777", + "name": "Slaný,aut.nádr.", + "avgLatitude": 50.22849, + "avgLongitude": 14.0883741 + }, + { + "id": "U9198", + "name": "Slaný,Blahotice", + "avgLatitude": 50.2376862, + "avgLongitude": 14.1212978 + }, + { + "id": "U4779", + "name": "Slaný,ČSAD", + "avgLatitude": 50.22575, + "avgLongitude": 14.07448 + }, + { + "id": "U9265", + "name": "Slaný,Dolín,I", + "avgLatitude": 50.2505569, + "avgLongitude": 14.11194 + }, + { + "id": "U9266", + "name": "Slaný,Dolín,II", + "avgLatitude": 50.25331, + "avgLongitude": 14.1154079 + }, + { + "id": "U4788", + "name": "Slaný,Dražkovická", + "avgLatitude": 50.2342529, + "avgLongitude": 14.0759935 + }, + { + "id": "U4805", + "name": "Slaný,Fantův mlýn", + "avgLatitude": 50.2240677, + "avgLongitude": 14.0824509 + }, + { + "id": "U9267", + "name": "Slaný,Farma", + "avgLatitude": 50.2388077, + "avgLongitude": 14.0943356 + }, + { + "id": "U4811", + "name": "Slaný,gymnázium", + "avgLatitude": 50.2330666, + "avgLongitude": 14.0850706 + }, + { + "id": "U9301", + "name": "Slaný,Kvíc", + "avgLatitude": 50.21157, + "avgLongitude": 14.06442 + }, + { + "id": "U4803", + "name": "Slaný,Kvíc,u hrušky", + "avgLatitude": 50.2101746, + "avgLongitude": 14.06974 + }, + { + "id": "U4804", + "name": "Slaný,Kvíček", + "avgLatitude": 50.2192078, + "avgLongitude": 14.0771027 + }, + { + "id": "U4842", + "name": "Slaný,Lotouš", + "avgLatitude": 50.2533531, + "avgLongitude": 14.0290585 + }, + { + "id": "U4813", + "name": "Slaný,Masarykovo nám.", + "avgLatitude": 50.2305222, + "avgLongitude": 14.0867224 + }, + { + "id": "U4781", + "name": "Slaný,Mírová", + "avgLatitude": 50.22709, + "avgLongitude": 14.07184 + }, + { + "id": "U4812", + "name": "Slaný,modelářské středisko", + "avgLatitude": 50.22543, + "avgLongitude": 14.0827379 + }, + { + "id": "U4815", + "name": "Slaný,Na Hájích", + "avgLatitude": 50.23735, + "avgLongitude": 14.0857182 + }, + { + "id": "U4814", + "name": "Slaný,nemocnice", + "avgLatitude": 50.2339249, + "avgLongitude": 14.08604 + }, + { + "id": "U4808", + "name": "Slaný,Netovice", + "avgLatitude": 50.21114, + "avgLongitude": 14.0964832 + }, + { + "id": "U4809", + "name": "Slaný,Netovická", + "avgLatitude": 50.2255859, + "avgLongitude": 14.09614 + }, + { + "id": "U9269", + "name": "Slaný,Nosačická", + "avgLatitude": 50.23385, + "avgLongitude": 14.087204 + }, + { + "id": "U4775", + "name": "Slaný,odb.Drnov", + "avgLatitude": 50.2251854, + "avgLongitude": 14.1144581 + }, + { + "id": "U9270", + "name": "Slaný,Otruby", + "avgLatitude": 50.25217, + "avgLongitude": 14.0831032 + }, + { + "id": "U9271", + "name": "Slaný,Otruby,rozc.", + "avgLatitude": 50.2546234, + "avgLongitude": 14.0940361 + }, + { + "id": "U4784", + "name": "Slaný,P.Hrubého", + "avgLatitude": 50.2306824, + "avgLongitude": 14.072403 + }, + { + "id": "U4835", + "name": "Slaný,Palackého", + "avgLatitude": 50.232296, + "avgLongitude": 14.084897 + }, + { + "id": "U4776", + "name": "Slaný,Pražská", + "avgLatitude": 50.22829, + "avgLongitude": 14.0954456 + }, + { + "id": "U9268", + "name": "Slaný,Prům.zóna sever", + "avgLatitude": 50.2411652, + "avgLongitude": 14.095006 + }, + { + "id": "U4782", + "name": "Slaný,Rabasova", + "avgLatitude": 50.2275238, + "avgLongitude": 14.0681477 + }, + { + "id": "U4783", + "name": "Slaný,Smetáčkova", + "avgLatitude": 50.2286758, + "avgLongitude": 14.0691509 + }, + { + "id": "U4787", + "name": "Slaný,sokolovna", + "avgLatitude": 50.2331848, + "avgLongitude": 14.0801935 + }, + { + "id": "U4786", + "name": "Slaný,Šultysova", + "avgLatitude": 50.2301941, + "avgLongitude": 14.0835209 + }, + { + "id": "U4802", + "name": "Slaný,Těhul", + "avgLatitude": 50.2049332, + "avgLongitude": 14.0710821 + }, + { + "id": "U4789", + "name": "Slaný,Tomanova", + "avgLatitude": 50.2331238, + "avgLongitude": 14.0717049 + }, + { + "id": "U4860", + "name": "Slaný,Trpoměchy", + "avgLatitude": 50.25018, + "avgLongitude": 14.0616894 + }, + { + "id": "U4836", + "name": "Slaný,U Sloupu", + "avgLatitude": 50.2358475, + "avgLongitude": 14.07399 + }, + { + "id": "U4780", + "name": "Slaný,u stadionu", + "avgLatitude": 50.2252235, + "avgLongitude": 14.0691109 + }, + { + "id": "U4810", + "name": "Slaný,V Ráji", + "avgLatitude": 50.2365227, + "avgLongitude": 14.077219 + }, + { + "id": "U9272", + "name": "Slaný,Želevčice", + "avgLatitude": 50.25723, + "avgLongitude": 14.0968256 + }, + { + "id": "U9273", + "name": "Slaný,Želevčice,Obec", + "avgLatitude": 50.2581177, + "avgLongitude": 14.1026 + }, + { + "id": "U9274", + "name": "Slaný,Želevčice,Rozc.", + "avgLatitude": 50.2595329, + "avgLongitude": 14.1146908 + }, + { + "id": "U4778", + "name": "Slaný,Žižkova", + "avgLatitude": 50.2280655, + "avgLongitude": 14.0822716 + }, + { + "id": "U31263", + "name": "Slapsko", + "avgLatitude": 49.57618, + "avgLongitude": 14.76267 + }, + { + "id": "U31264", + "name": "Slapsko,Leština,rozc.0.5", + "avgLatitude": 49.5837059, + "avgLongitude": 14.7496376 + }, + { + "id": "U31262", + "name": "Slapsko,Moraveč", + "avgLatitude": 49.57216, + "avgLongitude": 14.7710552 + }, + { + "id": "U31265", + "name": "Slapsko,Zahrádka", + "avgLatitude": 49.58783, + "avgLongitude": 14.7402744 + }, + { + "id": "U2523", + "name": "Slapy,Jednota", + "avgLatitude": 49.8127365, + "avgLongitude": 14.3985329 + }, + { + "id": "U2516", + "name": "Slapy,Motorest", + "avgLatitude": 49.8168449, + "avgLongitude": 14.3951921 + }, + { + "id": "U2515", + "name": "Slapy,Na Polesí", + "avgLatitude": 49.82055, + "avgLongitude": 14.3857594 + }, + { + "id": "U2519", + "name": "Slapy,Na Rovínku", + "avgLatitude": 49.8195953, + "avgLongitude": 14.4063721 + }, + { + "id": "U4424", + "name": "Slatina", + "avgLatitude": 50.2244949, + "avgLongitude": 14.2216825 + }, + { + "id": "U32224", + "name": "Slatina", + "avgLatitude": 49.9865875, + "avgLongitude": 13.6306877 + }, + { + "id": "U4824", + "name": "Slatina,rozcestí", + "avgLatitude": 50.2214851, + "avgLongitude": 14.2125635 + }, + { + "id": "U4423", + "name": "Slatina,u cihelny", + "avgLatitude": 50.2272339, + "avgLongitude": 14.2357826 + }, + { + "id": "U3011", + "name": "Slatiňanská", + "avgLatitude": 50.10814, + "avgLongitude": 14.5913124 + }, + { + "id": "U679", + "name": "Slatinová", + "avgLatitude": 50.0377426, + "avgLongitude": 14.3233986 + }, + { + "id": "U9511", + "name": "Slavětín u Březnice", + "avgLatitude": 49.5232773, + "avgLongitude": 13.8952475 + }, + { + "id": "U437", + "name": "Slavínského", + "avgLatitude": 50.03307, + "avgLongitude": 14.3859768 + }, + { + "id": "U7092", + "name": "Slavošov", + "avgLatitude": 49.7624626, + "avgLongitude": 15.15262 + }, + { + "id": "U7094", + "name": "Slavošov,Hranice", + "avgLatitude": 49.7858658, + "avgLongitude": 15.1775694 + }, + { + "id": "U7248", + "name": "Slavošov,Věžníkov", + "avgLatitude": 49.7675476, + "avgLongitude": 15.1773529 + }, + { + "id": "U7093", + "name": "Slavošov,Věžníkov,rozc.", + "avgLatitude": 49.7748222, + "avgLongitude": 15.1726437 + }, + { + "id": "U4867", + "name": "Slibovice", + "avgLatitude": 50.1750565, + "avgLongitude": 15.3667717 + }, + { + "id": "U2711", + "name": "Slivenec", + "avgLatitude": 50.0234642, + "avgLongitude": 14.3524475 + }, + { + "id": "U6739", + "name": "Sloveč", + "avgLatitude": 50.2303, + "avgLongitude": 15.3273993 + }, + { + "id": "U6740", + "name": "Sloveč,Kamilov", + "avgLatitude": 50.2344437, + "avgLongitude": 15.3563948 + }, + { + "id": "U6724", + "name": "Sloveč,Střihov", + "avgLatitude": 50.2250137, + "avgLongitude": 15.3696241 + }, + { + "id": "U7956", + "name": "Slověnice", + "avgLatitude": 49.75734, + "avgLongitude": 14.88522 + }, + { + "id": "U7957", + "name": "Slověnice,raketárna", + "avgLatitude": 49.77014, + "avgLongitude": 14.8834934 + }, + { + "id": "U1067", + "name": "Slovinská", + "avgLatitude": 50.0707779, + "avgLongitude": 14.4591446 + }, + { + "id": "U1247", + "name": "Sluhy", + "avgLatitude": 50.1917, + "avgLongitude": 14.5579405 + }, + { + "id": "U1249", + "name": "Sluhy,Nad Hájem", + "avgLatitude": 50.1925659, + "avgLongitude": 14.5694294 + }, + { + "id": "U1240", + "name": "Sluhy,Rozc.Brázdim", + "avgLatitude": 50.1955872, + "avgLongitude": 14.5587044 + }, + { + "id": "U5928", + "name": "Sluštice", + "avgLatitude": 50.0369034, + "avgLongitude": 14.6847181 + }, + { + "id": "U1254", + "name": "Sluštice,Škola", + "avgLatitude": 50.0395546, + "avgLongitude": 14.685008 + }, + { + "id": "U267", + "name": "Služská", + "avgLatitude": 50.1243362, + "avgLongitude": 14.4498825 + }, + { + "id": "U720", + "name": "Smaragdová", + "avgLatitude": 50.02648, + "avgLongitude": 14.36071 + }, + { + "id": "U1915", + "name": "Smečno", + "avgLatitude": 50.1887131, + "avgLongitude": 14.0428543 + }, + { + "id": "U4933", + "name": "Smečno,Na Kopaninách", + "avgLatitude": 50.16876, + "avgLongitude": 14.0164928 + }, + { + "id": "U9104", + "name": "Smečno,Ovčín", + "avgLatitude": 50.1786957, + "avgLongitude": 14.018013 + }, + { + "id": "U9287", + "name": "Smečno,rozc.Ledce", + "avgLatitude": 50.1883659, + "avgLongitude": 14.0386505 + }, + { + "id": "U3231", + "name": "Smíchovský hřbitov", + "avgLatitude": 50.0621452, + "avgLongitude": 14.3894978 + }, + { + "id": "U6483", + "name": "Smilkov", + "avgLatitude": 49.6022644, + "avgLongitude": 14.6175423 + }, + { + "id": "U6484", + "name": "Smilkov,dvůr", + "avgLatitude": 49.6041374, + "avgLongitude": 14.6279659 + }, + { + "id": "U6485", + "name": "Smilkov,Kouty", + "avgLatitude": 49.6116142, + "avgLongitude": 14.6344929 + }, + { + "id": "U6486", + "name": "Smilkov,Líštěnec", + "avgLatitude": 49.6168861, + "avgLongitude": 14.6374474 + }, + { + "id": "U6487", + "name": "Smilkov,Oldřichovec", + "avgLatitude": 49.6002045, + "avgLongitude": 14.6599321 + }, + { + "id": "U3166", + "name": "Smilovice", + "avgLatitude": 50.3088226, + "avgLongitude": 14.9606123 + }, + { + "id": "U4010", + "name": "Smilovice", + "avgLatitude": 50.248024, + "avgLongitude": 13.8046532 + }, + { + "id": "U3167", + "name": "Smilovice,Bratronice", + "avgLatitude": 50.30007, + "avgLongitude": 14.9564972 + }, + { + "id": "U3169", + "name": "Smilovice,Rejšice", + "avgLatitude": 50.3177567, + "avgLongitude": 14.9725132 + }, + { + "id": "U3168", + "name": "Smilovice,Újezd", + "avgLatitude": 50.3088379, + "avgLongitude": 14.95285 + }, + { + "id": "U684", + "name": "Smiřická", + "avgLatitude": 50.0897636, + "avgLongitude": 14.6664181 + }, + { + "id": "U7959", + "name": "Smolotely", + "avgLatitude": 49.620842, + "avgLongitude": 14.1367893 + }, + { + "id": "U7960", + "name": "Smolotely,Draha", + "avgLatitude": 49.6289749, + "avgLongitude": 14.1334734 + }, + { + "id": "U7958", + "name": "Smolotely,Smolotelky", + "avgLatitude": 49.62374, + "avgLongitude": 14.1376839 + }, + { + "id": "U9496", + "name": "Smrčná", + "avgLatitude": 49.66062, + "avgLongitude": 15.3492079 + }, + { + "id": "U686", + "name": "Smržovská", + "avgLatitude": 50.09491, + "avgLongitude": 14.6688385 + }, + { + "id": "U7474", + "name": "Snět", + "avgLatitude": 49.62667, + "avgLongitude": 15.2271719 + }, + { + "id": "U7961", + "name": "Soběhrdy", + "avgLatitude": 49.8211365, + "avgLongitude": 14.734684 + }, + { + "id": "U7962", + "name": "Soběhrdy,Mezihoří", + "avgLatitude": 49.8353, + "avgLongitude": 14.7331886 + }, + { + "id": "U7963", + "name": "Soběhrdy,Mezihoří,rozc.", + "avgLatitude": 49.83483, + "avgLongitude": 14.7495813 + }, + { + "id": "U7964", + "name": "Soběhrdy,u hřbitova", + "avgLatitude": 49.8236542, + "avgLongitude": 14.7433033 + }, + { + "id": "U7965", + "name": "Soběhrdy,Žíňany,rozc.", + "avgLatitude": 49.8155823, + "avgLongitude": 14.7216129 + }, + { + "id": "U31444", + "name": "Soběslav,Zimní stadion", + "avgLatitude": 49.2556152, + "avgLongitude": 14.7173233 + }, + { + "id": "U9402", + "name": "Soběšín", + "avgLatitude": 49.7898941, + "avgLongitude": 14.9571619 + }, + { + "id": "U9966", + "name": "Soběšín,Otryby", + "avgLatitude": 49.8033, + "avgLongitude": 14.9744444 + }, + { + "id": "U687", + "name": "Sobín", + "avgLatitude": 50.0680275, + "avgLongitude": 14.2635965 + }, + { + "id": "U9461", + "name": "Sobotka", + "avgLatitude": 50.46565, + "avgLongitude": 15.1677351 + }, + { + "id": "U31920", + "name": "Sobotka,koupaliště", + "avgLatitude": 50.47496, + "avgLongitude": 15.1691189 + }, + { + "id": "U31145", + "name": "Sobotka,Lavice,odb.", + "avgLatitude": 50.4549255, + "avgLongitude": 15.2035351 + }, + { + "id": "U31003", + "name": "Sobotka,Lavice,Šalanda", + "avgLatitude": 50.45942, + "avgLongitude": 15.2128048 + }, + { + "id": "U31144", + "name": "Sobotka,Lavice,škola", + "avgLatitude": 50.4554, + "avgLongitude": 15.2111435 + }, + { + "id": "U31000", + "name": "Sobotka,nám.", + "avgLatitude": 50.4676056, + "avgLongitude": 15.1765966 + }, + { + "id": "U31002", + "name": "Sobotka,Staňkova Lhota", + "avgLatitude": 50.4652443, + "avgLongitude": 15.194643 + }, + { + "id": "U31001", + "name": "Sobotka,škola", + "avgLatitude": 50.4678268, + "avgLongitude": 15.1817312 + }, + { + "id": "U31146", + "name": "Sobotka,Zajakury,odb.", + "avgLatitude": 50.4485321, + "avgLongitude": 15.2081327 + }, + { + "id": "U2199", + "name": "Sojovice", + "avgLatitude": 50.2219467, + "avgLongitude": 14.7602406 + }, + { + "id": "U9601", + "name": "Sokoleč", + "avgLatitude": 50.0963135, + "avgLongitude": 15.1071072 + }, + { + "id": "U9602", + "name": "Sokoleč,U Pekárny", + "avgLatitude": 50.1010971, + "avgLongitude": 15.10577 + }, + { + "id": "U7966", + "name": "Solenice", + "avgLatitude": 49.61196, + "avgLongitude": 14.1896811 + }, + { + "id": "U7967", + "name": "Solenice,Dolní Líšnice", + "avgLatitude": 49.6192436, + "avgLongitude": 14.1786976 + }, + { + "id": "U7970", + "name": "Solenice,Větrov", + "avgLatitude": 49.62653, + "avgLongitude": 14.1898689 + }, + { + "id": "U690", + "name": "Solidarita", + "avgLatitude": 50.0768852, + "avgLongitude": 14.494276 + }, + { + "id": "U1184", + "name": "Solná", + "avgLatitude": 49.9965553, + "avgLongitude": 14.3662853 + }, + { + "id": "U9526", + "name": "Solopysky", + "avgLatitude": 50.25145, + "avgLongitude": 13.7480879 + }, + { + "id": "U31353", + "name": "Sosnová,hl.sil.", + "avgLatitude": 50.6576576, + "avgLongitude": 14.534956 + }, + { + "id": "U7302", + "name": "Souňov", + "avgLatitude": 49.8798447, + "avgLongitude": 15.31431 + }, + { + "id": "U7317", + "name": "Soutice", + "avgLatitude": 49.7256355, + "avgLongitude": 15.0528316 + }, + { + "id": "U7972", + "name": "Soutice,Kalná", + "avgLatitude": 49.714, + "avgLongitude": 15.07241 + }, + { + "id": "U4435", + "name": "Sovákova", + "avgLatitude": 50.12317, + "avgLongitude": 14.5816326 + }, + { + "id": "U1103", + "name": "Sovenická", + "avgLatitude": 50.1372, + "avgLongitude": 14.5470181 + }, + { + "id": "U4038", + "name": "Sovínky", + "avgLatitude": 50.3730927, + "avgLongitude": 14.7868938 + }, + { + "id": "U31851", + "name": "Spálené Poříčí", + "avgLatitude": 49.6151466, + "avgLongitude": 13.6055737 + }, + { + "id": "U31852", + "name": "Spálené Poříčí,Hořehledy", + "avgLatitude": 49.60753, + "avgLongitude": 13.645113 + }, + { + "id": "U31853", + "name": "Spálené Poříčí,Hvížďalka", + "avgLatitude": 49.6096458, + "avgLongitude": 13.6222935 + }, + { + "id": "U747", + "name": "Spalovna Malešice", + "avgLatitude": 50.0801849, + "avgLongitude": 14.5380611 + }, + { + "id": "U692", + "name": "Sparta", + "avgLatitude": 50.09916, + "avgLongitude": 14.4176865 + }, + { + "id": "U992", + "name": "Spiritka", + "avgLatitude": 50.0771675, + "avgLongitude": 14.36771 + }, + { + "id": "U694", + "name": "Spojovací", + "avgLatitude": 50.0917473, + "avgLongitude": 14.4988041 + }, + { + "id": "U695", + "name": "Spolská", + "avgLatitude": 50.0906143, + "avgLongitude": 14.5415573 + }, + { + "id": "U4371", + "name": "Spomyšl", + "avgLatitude": 50.3341179, + "avgLongitude": 14.36055 + }, + { + "id": "U4372", + "name": "Spomyšl,U Lávky", + "avgLatitude": 50.3360519, + "avgLongitude": 14.3677912 + }, + { + "id": "U51", + "name": "Sportareál Satalice", + "avgLatitude": 50.1233978, + "avgLongitude": 14.5667248 + }, + { + "id": "U2603", + "name": "Sportovní centrum Horní Počernice", + "avgLatitude": 50.11163, + "avgLongitude": 14.6096983 + }, + { + "id": "U323", + "name": "Sportovní centrum Kbely", + "avgLatitude": 50.135, + "avgLongitude": 14.5442638 + }, + { + "id": "U2766", + "name": "Sportovní centrum Řepy", + "avgLatitude": 50.0670471, + "avgLongitude": 14.2955494 + }, + { + "id": "U697", + "name": "Spořilov", + "avgLatitude": 50.049614, + "avgLongitude": 14.4821749 + }, + { + "id": "U817", + "name": "Správa sociálního zabezpečení", + "avgLatitude": 50.05928, + "avgLongitude": 14.4059019 + }, + { + "id": "U9326", + "name": "Srbeč", + "avgLatitude": 50.22455, + "avgLongitude": 13.8841305 + }, + { + "id": "U9327", + "name": "Srbeč,koup.", + "avgLatitude": 50.2250023, + "avgLongitude": 13.881422 + }, + { + "id": "U9328", + "name": "Srbeč,u mlýna", + "avgLatitude": 50.22444, + "avgLongitude": 13.8938551 + }, + { + "id": "U2847", + "name": "Srbsko", + "avgLatitude": 49.9369545, + "avgLongitude": 14.131135 + }, + { + "id": "U699", + "name": "Stadion Strahov", + "avgLatitude": 50.0783844, + "avgLongitude": 14.3883047 + }, + { + "id": "U217", + "name": "Stachova", + "avgLatitude": 50.0353, + "avgLongitude": 14.5312614 + }, + { + "id": "U2159", + "name": "Staňkovice", + "avgLatitude": 49.8758774, + "avgLongitude": 15.0175076 + }, + { + "id": "U2175", + "name": "Staňkovice,Chlum", + "avgLatitude": 49.87665, + "avgLongitude": 15.0002556 + }, + { + "id": "U2177", + "name": "Staňkovice,Nová Ves", + "avgLatitude": 49.87992, + "avgLongitude": 15.0378838 + }, + { + "id": "U2176", + "name": "Staňkovice,Ostašov", + "avgLatitude": 49.8778458, + "avgLongitude": 15.0312681 + }, + { + "id": "U9967", + "name": "Staňkovice,Smilovice", + "avgLatitude": 49.86795, + "avgLongitude": 14.9885693 + }, + { + "id": "U2174", + "name": "Staňkovice,Smilovice,rozc.", + "avgLatitude": 49.87925, + "avgLongitude": 14.9899025 + }, + { + "id": "U149", + "name": "Stará Holyně", + "avgLatitude": 50.029705, + "avgLongitude": 14.3569326 + }, + { + "id": "U2856", + "name": "Stará Huť", + "avgLatitude": 49.78574, + "avgLongitude": 14.1986065 + }, + { + "id": "U4719", + "name": "Stará Huť,Karla Čapka", + "avgLatitude": 49.7826653, + "avgLongitude": 14.2007608 + }, + { + "id": "U4718", + "name": "Stará Huť,Knínská", + "avgLatitude": 49.78515, + "avgLongitude": 14.2065792 + }, + { + "id": "U335", + "name": "Stará Libuš", + "avgLatitude": 50.0081024, + "avgLongitude": 14.4628754 + }, + { + "id": "U2473", + "name": "Stará Lysá", + "avgLatitude": 50.22145, + "avgLongitude": 14.8032322 + }, + { + "id": "U2475", + "name": "Stará Lysá,Čihadla", + "avgLatitude": 50.23905, + "avgLongitude": 14.7876911 + }, + { + "id": "U2474", + "name": "Stará Lysá,Hostinec", + "avgLatitude": 50.22506, + "avgLongitude": 14.8006468 + }, + { + "id": "U1162", + "name": "Stará obec", + "avgLatitude": 50.0886765, + "avgLongitude": 14.5778389 + }, + { + "id": "U205", + "name": "Stará Stodůlecká", + "avgLatitude": 50.0493851, + "avgLongitude": 14.3573008 + }, + { + "id": "U38", + "name": "Staré Bohnice", + "avgLatitude": 50.1335754, + "avgLongitude": 14.415844 + }, + { + "id": "U31659", + "name": "Staré Hrady,zámek", + "avgLatitude": 50.38626, + "avgLongitude": 15.2143621 + }, + { + "id": "U326", + "name": "Staré Letňany", + "avgLatitude": 50.1378937, + "avgLongitude": 14.5169277 + }, + { + "id": "U31856", + "name": "Staré Místo u Jičína", + "avgLatitude": 50.40611, + "avgLongitude": 15.3529739 + }, + { + "id": "U700", + "name": "Staré náměstí", + "avgLatitude": 50.081852, + "avgLongitude": 14.3105507 + }, + { + "id": "U31044", + "name": "Staré Splavy", + "avgLatitude": 50.587204, + "avgLongitude": 14.6294327 + }, + { + "id": "U459", + "name": "Staré Strašnice", + "avgLatitude": 50.0684357, + "avgLongitude": 14.4925 + }, + { + "id": "U7223", + "name": "Starkoč", + "avgLatitude": 49.9373779, + "avgLongitude": 15.5077076 + }, + { + "id": "U701", + "name": "Starodejvická", + "avgLatitude": 50.09691, + "avgLongitude": 14.3713093 + }, + { + "id": "U702", + "name": "Starochuchelská", + "avgLatitude": 50.01145, + "avgLongitude": 14.3858671 + }, + { + "id": "U1183", + "name": "Starolázeňská", + "avgLatitude": 50.01609, + "avgLongitude": 14.3895941 + }, + { + "id": "U703", + "name": "Staroměstská", + "avgLatitude": 50.0886536, + "avgLongitude": 14.4163837 + }, + { + "id": "U2962", + "name": "Staroměstské náměstí", + "avgLatitude": 50.0879364, + "avgLongitude": 14.4208908 + }, + { + "id": "U7973", + "name": "Starosedlský Hrádek", + "avgLatitude": 49.5760078, + "avgLongitude": 14.0086632 + }, + { + "id": "U31119", + "name": "Starý Bydžov,ObÚ", + "avgLatitude": 50.25819, + "avgLongitude": 15.4535866 + }, + { + "id": "U31120", + "name": "Starý Bydžov,ZD", + "avgLatitude": 50.25509, + "avgLongitude": 15.4583464 + }, + { + "id": "U144", + "name": "Starý Hloubětín", + "avgLatitude": 50.10439, + "avgLongitude": 14.5301867 + }, + { + "id": "U4166", + "name": "Starý Kolín", + "avgLatitude": 50.0096474, + "avgLongitude": 15.2935133 + }, + { + "id": "U1151", + "name": "Starý Prosek", + "avgLatitude": 50.1180153, + "avgLongitude": 14.49098 + }, + { + "id": "U704", + "name": "Starý Spořilov", + "avgLatitude": 50.04254, + "avgLongitude": 14.4735107 + }, + { + "id": "U1430", + "name": "Starý Vestec", + "avgLatitude": 50.1445656, + "avgLongitude": 14.8466921 + }, + { + "id": "U1209", + "name": "Starý Zličín", + "avgLatitude": 50.06172, + "avgLongitude": 14.2804508 + }, + { + "id": "U3268", + "name": "Stašov", + "avgLatitude": 49.8839035, + "avgLongitude": 13.9568443 + }, + { + "id": "U1213", + "name": "Statenice", + "avgLatitude": 50.14171, + "avgLongitude": 14.3183384 + }, + { + "id": "U1202", + "name": "Statenice,Černý Vůl", + "avgLatitude": 50.1487274, + "avgLongitude": 14.3284187 + }, + { + "id": "U1201", + "name": "Statenice,Černý Vůl,Hospoda", + "avgLatitude": 50.1467, + "avgLongitude": 14.33309 + }, + { + "id": "U7692", + "name": "Statenice,Račanská", + "avgLatitude": 50.14428, + "avgLongitude": 14.3123627 + }, + { + "id": "U5091", + "name": "Statenice,u hřiště", + "avgLatitude": 50.13824, + "avgLongitude": 14.3122511 + }, + { + "id": "U1212", + "name": "Statenice,U Kovárny", + "avgLatitude": 50.14357, + "avgLongitude": 14.3229122 + }, + { + "id": "U1291", + "name": "Stavební zóna Horní Počernice", + "avgLatitude": 50.1164322, + "avgLongitude": 14.599371 + }, + { + "id": "U5961", + "name": "Stehelčeves,obchodní centrum", + "avgLatitude": 50.1676178, + "avgLongitude": 14.1999226 + }, + { + "id": "U4398", + "name": "Stehelčeves,ObÚ", + "avgLatitude": 50.1709671, + "avgLongitude": 14.1911039 + }, + { + "id": "U4399", + "name": "Stehelčeves,u brůdku", + "avgLatitude": 50.1738968, + "avgLongitude": 14.1909285 + }, + { + "id": "U1140", + "name": "Stodůlky", + "avgLatitude": 50.0466423, + "avgLongitude": 14.307148 + }, + { + "id": "U281", + "name": "Stodůlky-Bavorská", + "avgLatitude": 50.0543671, + "avgLongitude": 14.3105173 + }, + { + "id": "U2933", + "name": "Stochov", + "avgLatitude": 50.141243, + "avgLongitude": 13.965394 + }, + { + "id": "U9288", + "name": "Stochov,Čelechovice", + "avgLatitude": 50.1692734, + "avgLongitude": 13.9556494 + }, + { + "id": "U9289", + "name": "Stochov,Honice", + "avgLatitude": 50.1515656, + "avgLongitude": 13.9570007 + }, + { + "id": "U9290", + "name": "Stochov,nám.", + "avgLatitude": 50.14662, + "avgLongitude": 13.9567966 + }, + { + "id": "U9291", + "name": "Stochov,Slovanka", + "avgLatitude": 50.1386642, + "avgLongitude": 13.968626 + }, + { + "id": "U9292", + "name": "Stochov,U Dubu", + "avgLatitude": 50.1481857, + "avgLongitude": 13.9629822 + }, + { + "id": "U9293", + "name": "Stochov,u křížku", + "avgLatitude": 50.1443367, + "avgLongitude": 13.9652576 + }, + { + "id": "U31462", + "name": "Stojice,hlavní silnice", + "avgLatitude": 49.9551964, + "avgLongitude": 15.6167946 + }, + { + "id": "U9213", + "name": "Stradonice", + "avgLatitude": 50.29134, + "avgLongitude": 14.047163 + }, + { + "id": "U9537", + "name": "Strachovice", + "avgLatitude": 50.0143661, + "avgLongitude": 13.5273781 + }, + { + "id": "U31859", + "name": "Strakonice,aut.nádr.", + "avgLatitude": 49.2556, + "avgLongitude": 13.9166584 + }, + { + "id": "U31860", + "name": "Strakonice,Radomyšlská I", + "avgLatitude": 49.26579, + "avgLongitude": 13.9057035 + }, + { + "id": "U2469", + "name": "Straky", + "avgLatitude": 50.23339, + "avgLongitude": 14.9598293 + }, + { + "id": "U3171", + "name": "Straky,ZD", + "avgLatitude": 50.23033, + "avgLongitude": 14.9611664 + }, + { + "id": "U1696", + "name": "Strančice", + "avgLatitude": 49.9495239, + "avgLongitude": 14.6781521 + }, + { + "id": "U1901", + "name": "Strančice,Kašovice", + "avgLatitude": 49.9444962, + "avgLongitude": 14.6398058 + }, + { + "id": "U9873", + "name": "Strančice,obchodní centrum", + "avgLatitude": 49.94591, + "avgLongitude": 14.6707783 + }, + { + "id": "U1893", + "name": "Strančice,Otice", + "avgLatitude": 49.96398, + "avgLongitude": 14.6453905 + }, + { + "id": "U1902", + "name": "Strančice,Předboř", + "avgLatitude": 49.94582, + "avgLongitude": 14.62808 + }, + { + "id": "U1694", + "name": "Strančice,rozc.průmyslová zóna", + "avgLatitude": 49.9436874, + "avgLongitude": 14.6480408 + }, + { + "id": "U6156", + "name": "Strančice,rozc.Sklenka", + "avgLatitude": 49.951828, + "avgLongitude": 14.63163 + }, + { + "id": "U1927", + "name": "Strančice,Svojšovice", + "avgLatitude": 49.9584465, + "avgLongitude": 14.6563644 + }, + { + "id": "U2209", + "name": "Strančice,škola", + "avgLatitude": 49.94718, + "avgLongitude": 14.6746 + }, + { + "id": "U1695", + "name": "Strančice,Všechromy", + "avgLatitude": 49.94836, + "avgLongitude": 14.6564856 + }, + { + "id": "U1585", + "name": "Strančice,Všechromy,náves", + "avgLatitude": 49.948925, + "avgLongitude": 14.65085 + }, + { + "id": "U6123", + "name": "Stránka", + "avgLatitude": 50.4233856, + "avgLongitude": 14.659482 + }, + { + "id": "U6127", + "name": "Stránka,Ostrý", + "avgLatitude": 50.4158325, + "avgLongitude": 14.7015553 + }, + { + "id": "U4037", + "name": "Stránka,Ostrý,rozc.", + "avgLatitude": 50.4227753, + "avgLongitude": 14.6930389 + }, + { + "id": "U6125", + "name": "Stránka,rozc.", + "avgLatitude": 50.4287567, + "avgLongitude": 14.6647148 + }, + { + "id": "U6126", + "name": "Stránka,Tajná", + "avgLatitude": 50.4196472, + "avgLongitude": 14.6803169 + }, + { + "id": "U9376", + "name": "Stránka,u pomníku", + "avgLatitude": 50.41925, + "avgLongitude": 14.6594934 + }, + { + "id": "U4453", + "name": "Stranný", + "avgLatitude": 49.7531052, + "avgLongitude": 14.4955559 + }, + { + "id": "U4451", + "name": "Stranný,Břevnice", + "avgLatitude": 49.7532539, + "avgLongitude": 14.5128031 + }, + { + "id": "U4452", + "name": "Stranný,Rozc.", + "avgLatitude": 49.7509155, + "avgLongitude": 14.5025368 + }, + { + "id": "U31499", + "name": "Strašice,Dvůr", + "avgLatitude": 49.7447968, + "avgLongitude": 13.7635031 + }, + { + "id": "U31496", + "name": "Strašice,Huť", + "avgLatitude": 49.7292862, + "avgLongitude": 13.7526159 + }, + { + "id": "U31495", + "name": "Strašice,Mikulíkův mlýn", + "avgLatitude": 49.7310638, + "avgLongitude": 13.7455444 + }, + { + "id": "U31497", + "name": "Strašice,ObÚ", + "avgLatitude": 49.734787, + "avgLongitude": 13.757122 + }, + { + "id": "U31498", + "name": "Strašice,U Libuše", + "avgLatitude": 49.7384338, + "avgLongitude": 13.7550659 + }, + { + "id": "U4433", + "name": "Straškov", + "avgLatitude": 50.3618, + "avgLongitude": 14.2422047 + }, + { + "id": "U31439", + "name": "Straškov-Vodochody", + "avgLatitude": 50.3639221, + "avgLongitude": 14.2511444 + }, + { + "id": "U32275", + "name": "Straškov-Vodochody,škola", + "avgLatitude": 50.36176, + "avgLongitude": 14.2467184 + }, + { + "id": "U713", + "name": "Strašnická", + "avgLatitude": 50.0726929, + "avgLongitude": 14.4910736 + }, + { + "id": "U6468", + "name": "Strašnov", + "avgLatitude": 50.3529968, + "avgLongitude": 14.890337 + }, + { + "id": "U3265", + "name": "Strašnov,u dálnice", + "avgLatitude": 50.3451767, + "avgLongitude": 14.8708925 + }, + { + "id": "U3172", + "name": "Stratov", + "avgLatitude": 50.192215, + "avgLongitude": 14.9075565 + }, + { + "id": "U2802", + "name": "Stratov", + "avgLatitude": 50.1874657, + "avgLongitude": 14.9077854 + }, + { + "id": "U31377", + "name": "Stráž p.Ralskem,aut.st.", + "avgLatitude": 50.7034531, + "avgLongitude": 14.7975559 + }, + { + "id": "U31378", + "name": "Stráž p.Ralskem,vlečka", + "avgLatitude": 50.7056274, + "avgLongitude": 14.7678909 + }, + { + "id": "U6372", + "name": "Strážiště", + "avgLatitude": 50.59278, + "avgLongitude": 14.9298439 + }, + { + "id": "U6373", + "name": "Strážiště,Kozmice", + "avgLatitude": 50.614212, + "avgLongitude": 14.9240885 + }, + { + "id": "U714", + "name": "Strážní", + "avgLatitude": 50.0922546, + "avgLongitude": 14.4812746 + }, + { + "id": "U4046", + "name": "Strenice", + "avgLatitude": 50.3928528, + "avgLongitude": 14.8233309 + }, + { + "id": "U4062", + "name": "Strenice,Horecká", + "avgLatitude": 50.3943863, + "avgLongitude": 14.8231573 + }, + { + "id": "U4045", + "name": "Strenice,Podčejky", + "avgLatitude": 50.38554, + "avgLongitude": 14.83762 + }, + { + "id": "U4061", + "name": "Strenice,u zahrad", + "avgLatitude": 50.39172, + "avgLongitude": 14.83139 + }, + { + "id": "U4047", + "name": "Strenice,Velká Horka", + "avgLatitude": 50.39132, + "avgLongitude": 14.81497 + }, + { + "id": "U520", + "name": "Strnady", + "avgLatitude": 49.94565, + "avgLongitude": 14.394558 + }, + { + "id": "U7974", + "name": "Strojetice", + "avgLatitude": 49.65262, + "avgLongitude": 15.0647669 + }, + { + "id": "U7975", + "name": "Strojetice,u kovárny", + "avgLatitude": 49.6497879, + "avgLongitude": 15.0631695 + }, + { + "id": "U706", + "name": "Strojírenská", + "avgLatitude": 50.06589, + "avgLongitude": 14.2883739 + }, + { + "id": "U717", + "name": "Strossmayerovo náměstí", + "avgLatitude": 50.098896, + "avgLongitude": 14.4332638 + }, + { + "id": "U9384", + "name": "Struhařov", + "avgLatitude": 49.7620735, + "avgLongitude": 14.748991 + }, + { + "id": "U7976", + "name": "Struhařov", + "avgLatitude": 49.7658, + "avgLongitude": 14.7614546 + }, + { + "id": "U2005", + "name": "Struhařov", + "avgLatitude": 49.9523621, + "avgLongitude": 14.744236 + }, + { + "id": "U7978", + "name": "Struhařov,Bořeňovice", + "avgLatitude": 49.7655563, + "avgLongitude": 14.7923164 + }, + { + "id": "U7979", + "name": "Struhařov,Bořeňovice,rozc.", + "avgLatitude": 49.7686539, + "avgLongitude": 14.7829914 + }, + { + "id": "U7194", + "name": "Struhařov,Budkov", + "avgLatitude": 49.75795, + "avgLongitude": 14.7351408 + }, + { + "id": "U7980", + "name": "Struhařov,Býkovice", + "avgLatitude": 49.7674866, + "avgLongitude": 14.8194695 + }, + { + "id": "U2039", + "name": "Struhařov,Habr", + "avgLatitude": 49.9537964, + "avgLongitude": 14.7526913 + }, + { + "id": "U7984", + "name": "Struhařov,Hliňánky", + "avgLatitude": 49.7457047, + "avgLongitude": 14.7312984 + }, + { + "id": "U7981", + "name": "Struhařov,Horní Podhájí", + "avgLatitude": 49.7484131, + "avgLongitude": 14.72224 + }, + { + "id": "U7982", + "name": "Struhařov,Myslíč,rozc.", + "avgLatitude": 49.77291, + "avgLongitude": 14.7267447 + }, + { + "id": "U7277", + "name": "Struhařov,Pecínov", + "avgLatitude": 49.7494431, + "avgLongitude": 14.7341576 + }, + { + "id": "U7985", + "name": "Struhařov,Skalice", + "avgLatitude": 49.755928, + "avgLongitude": 14.7193117 + }, + { + "id": "U7986", + "name": "Struhařov,Střížkov", + "avgLatitude": 49.785656, + "avgLongitude": 14.775897 + }, + { + "id": "U7987", + "name": "Struhařov,Střížkov,rozc.", + "avgLatitude": 49.7919121, + "avgLongitude": 14.7723494 + }, + { + "id": "U2038", + "name": "Struhařov,U hřiště", + "avgLatitude": 49.95666, + "avgLongitude": 14.7504711 + }, + { + "id": "U7988", + "name": "Struhařov,Věřice", + "avgLatitude": 49.7851028, + "avgLongitude": 14.7703485 + }, + { + "id": "U7989", + "name": "Struhařov,Věřice,rozc.", + "avgLatitude": 49.7909, + "avgLongitude": 14.7643833 + }, + { + "id": "U32262", + "name": "Stružná,Horní Tašovice", + "avgLatitude": 50.1715431, + "avgLongitude": 13.0147514 + }, + { + "id": "U32270", + "name": "Stružná,obec", + "avgLatitude": 50.18228, + "avgLongitude": 13.0054073 + }, + { + "id": "U32263", + "name": "Stružná,rozc.", + "avgLatitude": 50.1795044, + "avgLongitude": 13.0018988 + }, + { + "id": "U32264", + "name": "Stružná,Žalmanov", + "avgLatitude": 50.186924, + "avgLongitude": 12.987751 + }, + { + "id": "U2058", + "name": "Stříbrná Skalice,Kost.Střimelice,Skalka", + "avgLatitude": 49.91566, + "avgLongitude": 14.7991915 + }, + { + "id": "U2713", + "name": "Středočeská", + "avgLatitude": 50.0743942, + "avgLongitude": 14.4074249 + }, + { + "id": "U4203", + "name": "Středokluky", + "avgLatitude": 50.1305, + "avgLongitude": 14.237009 + }, + { + "id": "U1740", + "name": "Středokluky", + "avgLatitude": 50.1251945, + "avgLongitude": 14.25502 + }, + { + "id": "U5101", + "name": "Středokluky,Černovičky", + "avgLatitude": 50.14241, + "avgLongitude": 14.2559195 + }, + { + "id": "U4394", + "name": "Středokluky,Nad Běloky", + "avgLatitude": 50.13165, + "avgLongitude": 14.2286415 + }, + { + "id": "U4400", + "name": "Středokluky,rozc.Černovičky", + "avgLatitude": 50.13776, + "avgLongitude": 14.2454195 + }, + { + "id": "U4396", + "name": "Středokluky,U Školy", + "avgLatitude": 50.1322479, + "avgLongitude": 14.237114 + }, + { + "id": "U9406", + "name": "Střechov nad Sázavou", + "avgLatitude": 49.7603455, + "avgLongitude": 15.0215092 + }, + { + "id": "U676", + "name": "Střelničná", + "avgLatitude": 50.12577, + "avgLongitude": 14.4589291 + }, + { + "id": "U6114", + "name": "Střemy", + "avgLatitude": 50.3838425, + "avgLongitude": 14.56488 + }, + { + "id": "U6115", + "name": "Střemy,Jenichov", + "avgLatitude": 50.37705, + "avgLongitude": 14.5865288 + }, + { + "id": "U6089", + "name": "Střemy,Štampach", + "avgLatitude": 50.39689, + "avgLongitude": 14.5568666 + }, + { + "id": "U5084", + "name": "Střezimíř", + "avgLatitude": 49.543026, + "avgLongitude": 14.62207 + }, + { + "id": "U6446", + "name": "Střezimíř,nám.", + "avgLatitude": 49.53267, + "avgLongitude": 14.60994 + }, + { + "id": "U6447", + "name": "Střezimíř,rozc.Bonkovice", + "avgLatitude": 49.5309067, + "avgLongitude": 14.5959072 + }, + { + "id": "U6448", + "name": "Střezimíř,rozc.Černotice", + "avgLatitude": 49.5297852, + "avgLongitude": 14.58813 + }, + { + "id": "U9502", + "name": "Střezimíř,žel.muzeum", + "avgLatitude": 49.53871, + "avgLongitude": 14.6206665 + }, + { + "id": "U2029", + "name": "Stříbrná Skalice", + "avgLatitude": 49.8835526, + "avgLongitude": 14.85712 + }, + { + "id": "U2027", + "name": "Stříbrná Skalice,Blatiny", + "avgLatitude": 49.897728, + "avgLongitude": 14.8545761 + }, + { + "id": "U2056", + "name": "Stříbrná Skalice,Hrad.Střimelice", + "avgLatitude": 49.9015656, + "avgLongitude": 14.8156223 + }, + { + "id": "U2023", + "name": "Stříbrná Skalice,Hradec", + "avgLatitude": 49.9257851, + "avgLongitude": 14.8301563 + }, + { + "id": "U2025", + "name": "Stříbrná Skalice,Hruškov", + "avgLatitude": 49.9080849, + "avgLongitude": 14.8335152 + }, + { + "id": "U2057", + "name": "Stříbrná Skalice,Kost.Střimelice", + "avgLatitude": 49.91543, + "avgLongitude": 14.806982 + }, + { + "id": "U2026", + "name": "Stříbrná Skalice,Náměstí", + "avgLatitude": 49.89777, + "avgLongitude": 14.8459663 + }, + { + "id": "U2024", + "name": "Stříbrná Skalice,Propast", + "avgLatitude": 49.9223022, + "avgLongitude": 14.829071 + }, + { + "id": "U2028", + "name": "Stříbrná Skalice,U Konvalinků", + "avgLatitude": 49.89196, + "avgLongitude": 14.8608646 + }, + { + "id": "U2092", + "name": "Stříbrná Skalice,V Můstkách", + "avgLatitude": 49.9028778, + "avgLongitude": 14.831398 + }, + { + "id": "U2091", + "name": "Stříbrná Skalice,Vozlín", + "avgLatitude": 49.9025726, + "avgLongitude": 14.8388691 + }, + { + "id": "U332", + "name": "Střížkov", + "avgLatitude": 50.1263466, + "avgLongitude": 14.4892445 + }, + { + "id": "U4606", + "name": "Studeněves", + "avgLatitude": 50.2240829, + "avgLongitude": 14.0446987 + }, + { + "id": "U4605", + "name": "Studeněves,Krkavčí mlýn", + "avgLatitude": 50.2237663, + "avgLongitude": 14.0529642 + }, + { + "id": "U4607", + "name": "Studeněves,vodárna", + "avgLatitude": 50.22219, + "avgLongitude": 14.0348558 + }, + { + "id": "U3217", + "name": "Studentský dům", + "avgLatitude": 50.105896, + "avgLongitude": 14.3900118 + }, + { + "id": "U7990", + "name": "Studený", + "avgLatitude": 49.60802, + "avgLongitude": 15.1283665 + }, + { + "id": "U7992", + "name": "Studený,Petrova Lhota", + "avgLatitude": 49.614212, + "avgLongitude": 15.12083 + }, + { + "id": "U7991", + "name": "Studený,rozc.", + "avgLatitude": 49.6073227, + "avgLongitude": 15.1330137 + }, + { + "id": "U9495", + "name": "Stvořidla", + "avgLatitude": 49.67045, + "avgLongitude": 15.3195076 + }, + { + "id": "U6956", + "name": "Sudějov", + "avgLatitude": 49.8604164, + "avgLongitude": 15.1041145 + }, + { + "id": "U719", + "name": "Sudějovická", + "avgLatitude": 50.07525, + "avgLongitude": 14.6657448 + }, + { + "id": "U4058", + "name": "Sudoměř", + "avgLatitude": 50.44704, + "avgLongitude": 14.7442265 + }, + { + "id": "U9354", + "name": "Sudoměř u Ml.Boleslavi", + "avgLatitude": 50.4379578, + "avgLongitude": 14.7448854 + }, + { + "id": "U1472", + "name": "Sudovo Hlavno", + "avgLatitude": 50.2624054, + "avgLongitude": 14.6850986 + }, + { + "id": "U1463", + "name": "Sudovo Hlavno,Konětopská", + "avgLatitude": 50.26332, + "avgLongitude": 14.6778126 + }, + { + "id": "U2378", + "name": "Sudovo Hlavno,Rozc.k háj.", + "avgLatitude": 50.2707672, + "avgLongitude": 14.6650925 + }, + { + "id": "U513", + "name": "Suchdol", + "avgLatitude": 50.1391373, + "avgLongitude": 14.3791885 + }, + { + "id": "U2156", + "name": "Suchdol", + "avgLatitude": 49.95282, + "avgLongitude": 15.1670027 + }, + { + "id": "U9941", + "name": "Suchdol,Dobřeň", + "avgLatitude": 49.9397545, + "avgLongitude": 15.14894 + }, + { + "id": "U9942", + "name": "Suchdol,Malenovice", + "avgLatitude": 49.94052, + "avgLongitude": 15.1333561 + }, + { + "id": "U9943", + "name": "Suchdol,Solopysky", + "avgLatitude": 49.9360352, + "avgLongitude": 15.1277981 + }, + { + "id": "U9957", + "name": "Suchdol,Vysoká", + "avgLatitude": 49.94099, + "avgLongitude": 15.1785975 + }, + { + "id": "U1474", + "name": "Suchdol,Vysoká,rozc.", + "avgLatitude": 49.95134, + "avgLongitude": 15.1824608 + }, + { + "id": "U721", + "name": "Suchdolské náměstí", + "avgLatitude": 50.1358643, + "avgLongitude": 14.3803291 + }, + { + "id": "U9637", + "name": "Suchodol", + "avgLatitude": 49.7248268, + "avgLongitude": 14.0833588 + }, + { + "id": "U9638", + "name": "Suchodol,Líha", + "avgLatitude": 49.7185669, + "avgLongitude": 14.0738745 + }, + { + "id": "U9046", + "name": "Suchomasty", + "avgLatitude": 49.89524, + "avgLongitude": 14.0565376 + }, + { + "id": "U9048", + "name": "Suchomasty,Na vinohradech", + "avgLatitude": 49.89485, + "avgLongitude": 14.0661736 + }, + { + "id": "U9047", + "name": "Suchomasty,Škola I", + "avgLatitude": 49.89658, + "avgLongitude": 14.0550642 + }, + { + "id": "U6282", + "name": "Sukorady", + "avgLatitude": 50.4264679, + "avgLongitude": 15.0302372 + }, + { + "id": "U6283", + "name": "Sukorady,Martinovice", + "avgLatitude": 50.43286, + "avgLongitude": 15.0434361 + }, + { + "id": "U2780", + "name": "Sukovská", + "avgLatitude": 50.016098, + "avgLongitude": 14.53554 + }, + { + "id": "U1578", + "name": "Sulice", + "avgLatitude": 49.9236565, + "avgLongitude": 14.55733 + }, + { + "id": "U1534", + "name": "Sulice,Hlubočinka", + "avgLatitude": 49.9339142, + "avgLongitude": 14.55932 + }, + { + "id": "U1533", + "name": "Sulice,Hlubočinka,Obchodní centrum", + "avgLatitude": 49.9387169, + "avgLongitude": 14.5530157 + }, + { + "id": "U1535", + "name": "Sulice,Na Křížkách", + "avgLatitude": 49.9267731, + "avgLongitude": 14.5689735 + }, + { + "id": "U4120", + "name": "Sulice,Nechánice", + "avgLatitude": 49.91544, + "avgLongitude": 14.5388861 + }, + { + "id": "U1536", + "name": "Sulice,Želivec", + "avgLatitude": 49.915657, + "avgLongitude": 14.5823 + }, + { + "id": "U2288", + "name": "Sulice,Želivec,Mandava", + "avgLatitude": 49.9229355, + "avgLongitude": 14.5755768 + }, + { + "id": "U722", + "name": "Sulická", + "avgLatitude": 50.026474, + "avgLongitude": 14.44565 + }, + { + "id": "U3017", + "name": "Sušická", + "avgLatitude": 50.10182, + "avgLongitude": 14.372858 + }, + { + "id": "U1684", + "name": "Svárov", + "avgLatitude": 50.0626, + "avgLongitude": 14.1511745 + }, + { + "id": "U1683", + "name": "Svárov,škola", + "avgLatitude": 50.0635834, + "avgLongitude": 14.1544571 + }, + { + "id": "U9088", + "name": "Svatá,myslivna Král", + "avgLatitude": 49.9369278, + "avgLongitude": 13.9456291 + }, + { + "id": "U9090", + "name": "Svatá,pod kopcem", + "avgLatitude": 49.93853, + "avgLongitude": 13.9683151 + }, + { + "id": "U9089", + "name": "Svatá,u Sýkorů", + "avgLatitude": 49.93849, + "avgLongitude": 13.9568853 + }, + { + "id": "U9087", + "name": "Svatá,Zelený kříž", + "avgLatitude": 49.9414368, + "avgLongitude": 13.9204063 + }, + { + "id": "U7993", + "name": "Svaté Pole", + "avgLatitude": 49.74803, + "avgLongitude": 14.16964 + }, + { + "id": "U7995", + "name": "Svaté Pole,Budínek", + "avgLatitude": 49.757225, + "avgLongitude": 14.1923771 + }, + { + "id": "U7994", + "name": "Svaté Pole,Dolní Svaté Pole", + "avgLatitude": 49.7580643, + "avgLongitude": 14.1690292 + }, + { + "id": "U5909", + "name": "Svaté Pole,u kostela", + "avgLatitude": 49.7518539, + "avgLongitude": 14.1688137 + }, + { + "id": "U1390", + "name": "Svatoňovická", + "avgLatitude": 50.0839462, + "avgLongitude": 14.574297 + }, + { + "id": "U724", + "name": "Svatoplukova", + "avgLatitude": 50.06506, + "avgLongitude": 14.4296026 + }, + { + "id": "U7996", + "name": "Svatý Jan", + "avgLatitude": 49.6364822, + "avgLongitude": 14.3113852 + }, + { + "id": "U2393", + "name": "Svatý Jan p.Skalou", + "avgLatitude": 49.9687233, + "avgLongitude": 14.133316 + }, + { + "id": "U2389", + "name": "Svatý Jan p.Skalou,Sedlec", + "avgLatitude": 49.97841, + "avgLongitude": 14.1354389 + }, + { + "id": "U2391", + "name": "Svatý Jan p.Skalou,Svatý Jánek", + "avgLatitude": 49.97388, + "avgLongitude": 14.1350708 + }, + { + "id": "U5706", + "name": "Svatý Jan,Brzina", + "avgLatitude": 49.6345749, + "avgLongitude": 14.29557 + }, + { + "id": "U5707", + "name": "Svatý Jan,Drážkov", + "avgLatitude": 49.65059, + "avgLongitude": 14.28706 + }, + { + "id": "U5708", + "name": "Svatý Jan,Hojšín", + "avgLatitude": 49.6540871, + "avgLongitude": 14.269207 + }, + { + "id": "U5710", + "name": "Svatý Jan,Hrachov", + "avgLatitude": 49.6642876, + "avgLongitude": 14.2974615 + }, + { + "id": "U5711", + "name": "Svatý Jan,Hrachov,Vestecký most", + "avgLatitude": 49.6739349, + "avgLongitude": 14.266675 + }, + { + "id": "U5714", + "name": "Svatý Jan,Hrachov,Zrůbek", + "avgLatitude": 49.6768036, + "avgLongitude": 14.288187 + }, + { + "id": "U7997", + "name": "Svatý Jan,Jedle", + "avgLatitude": 49.6401863, + "avgLongitude": 14.3069725 + }, + { + "id": "U5702", + "name": "Svatý Jan,rozc.", + "avgLatitude": 49.63501, + "avgLongitude": 14.3154259 + }, + { + "id": "U5704", + "name": "Svatý Jan,rozc.Smrčí", + "avgLatitude": 49.63114, + "avgLongitude": 14.31179 + }, + { + "id": "U5712", + "name": "Svatý Jan,Řadovy", + "avgLatitude": 49.6317825, + "avgLongitude": 14.2758789 + }, + { + "id": "U5703", + "name": "Svatý Jan,Řadovy,Radobyl", + "avgLatitude": 49.6359558, + "avgLongitude": 14.2729111 + }, + { + "id": "U5713", + "name": "Svatý Jan,Skrýšov", + "avgLatitude": 49.645916, + "avgLongitude": 14.3005629 + }, + { + "id": "U5705", + "name": "Svatý Jan,v jedlinách", + "avgLatitude": 49.63793, + "avgLongitude": 14.32494 + }, + { + "id": "U6655", + "name": "Svatý Mikuláš", + "avgLatitude": 49.99126, + "avgLongitude": 15.3498478 + }, + { + "id": "U7215", + "name": "Svatý Mikuláš,Lišice,rozc.", + "avgLatitude": 50.00312, + "avgLongitude": 15.3937225 + }, + { + "id": "U6661", + "name": "Svatý Mikuláš,rozc.Rohozec", + "avgLatitude": 49.97917, + "avgLongitude": 15.3504171 + }, + { + "id": "U7214", + "name": "Svatý Mikuláš,Sulovice", + "avgLatitude": 50.0004768, + "avgLongitude": 15.4061356 + }, + { + "id": "U6653", + "name": "Svatý Mikuláš,Svatá Kateřina", + "avgLatitude": 50.0051537, + "avgLongitude": 15.3328171 + }, + { + "id": "U6662", + "name": "Svatý Mikuláš,Svatá Kateřina,bioplyn.st.", + "avgLatitude": 49.9908676, + "avgLongitude": 15.3364716 + }, + { + "id": "U6654", + "name": "Svatý Mikuláš,Svatá Kateřina,ObÚ", + "avgLatitude": 50.0021248, + "avgLongitude": 15.336792 + }, + { + "id": "U6624", + "name": "Svatý Mikuláš,zámek Kačina", + "avgLatitude": 49.9845047, + "avgLongitude": 15.3477011 + }, + { + "id": "U2194", + "name": "Svémyslice", + "avgLatitude": 50.1462326, + "avgLongitude": 14.6483326 + }, + { + "id": "U986", + "name": "Svépravice", + "avgLatitude": 50.10301, + "avgLongitude": 14.6103134 + }, + { + "id": "U1928", + "name": "Světice", + "avgLatitude": 49.9708328, + "avgLongitude": 14.6624813 + }, + { + "id": "U4436", + "name": "Světice,škola", + "avgLatitude": 49.9722328, + "avgLongitude": 14.6651182 + }, + { + "id": "U9485", + "name": "Světlá nad Sázavou", + "avgLatitude": 49.67029, + "avgLongitude": 15.4173164 + }, + { + "id": "U9499", + "name": "Světlá nad Sázavou město", + "avgLatitude": 49.6692, + "avgLongitude": 15.4016256 + }, + { + "id": "U9484", + "name": "Světlá nad Sázavou-Josefodol", + "avgLatitude": 49.6904526, + "avgLongitude": 15.4242287 + }, + { + "id": "U31057", + "name": "Svijany,na nájezdu", + "avgLatitude": 50.57505, + "avgLongitude": 15.0689259 + }, + { + "id": "U31099", + "name": "Svijany,obec", + "avgLatitude": 50.5722961, + "avgLongitude": 15.0643644 + }, + { + "id": "U9030", + "name": "Svinaře", + "avgLatitude": 49.8924026, + "avgLongitude": 14.1832657 + }, + { + "id": "U9029", + "name": "Svinaře,Bílý Kámen", + "avgLatitude": 49.8980751, + "avgLongitude": 14.189579 + }, + { + "id": "U9031", + "name": "Svinaře,Halouny", + "avgLatitude": 49.88855, + "avgLongitude": 14.2072849 + }, + { + "id": "U9032", + "name": "Svinaře,ObÚ", + "avgLatitude": 49.88994, + "avgLongitude": 14.1864939 + }, + { + "id": "U3208", + "name": "Svinařov", + "avgLatitude": 50.18125, + "avgLongitude": 14.04982 + }, + { + "id": "U2036", + "name": "Svojetice", + "avgLatitude": 49.97227, + "avgLongitude": 14.7383766 + }, + { + "id": "U2384", + "name": "Svojetice,K Tehovci", + "avgLatitude": 49.9759979, + "avgLongitude": 14.7349663 + }, + { + "id": "U2083", + "name": "Svojetice,Na skalce", + "avgLatitude": 49.96924, + "avgLongitude": 14.7390709 + }, + { + "id": "U2037", + "name": "Svojetice,Na vyhlídce", + "avgLatitude": 49.9630432, + "avgLongitude": 14.7451258 + }, + { + "id": "U2167", + "name": "Svojetice,U Hájenky", + "avgLatitude": 49.96586, + "avgLongitude": 14.7330952 + }, + { + "id": "U6322", + "name": "Svojetín", + "avgLatitude": 50.19148, + "avgLongitude": 13.629921 + }, + { + "id": "U9522", + "name": "Svojetín", + "avgLatitude": 50.1982956, + "avgLongitude": 13.6323185 + }, + { + "id": "U6111", + "name": "Svojetín,ObÚ", + "avgLatitude": 50.1903076, + "avgLongitude": 13.6217537 + }, + { + "id": "U6074", + "name": "Svojetín,Veclov", + "avgLatitude": 50.1750336, + "avgLongitude": 13.6199532 + }, + { + "id": "U6141", + "name": "Svojetín,Veclov,rozc.", + "avgLatitude": 50.1771851, + "avgLongitude": 13.6368752 + }, + { + "id": "U4981", + "name": "Svojšice", + "avgLatitude": 50.0034943, + "avgLongitude": 15.043417 + }, + { + "id": "U5715", + "name": "Svojšice", + "avgLatitude": 49.5727577, + "avgLongitude": 14.0427332 + }, + { + "id": "U4983", + "name": "Svojšice,Bošice", + "avgLatitude": 50.0151, + "avgLongitude": 15.0316887 + }, + { + "id": "U4982", + "name": "Svojšice,Bošice,Rozc.", + "avgLatitude": 50.0102844, + "avgLongitude": 15.0467205 + }, + { + "id": "U4984", + "name": "Svojšice,Karlov", + "avgLatitude": 50.0126877, + "avgLongitude": 15.0435829 + }, + { + "id": "U5716", + "name": "Svojšice,Kletice", + "avgLatitude": 49.57894, + "avgLongitude": 14.0498428 + }, + { + "id": "U4197", + "name": "Svojšice,Nová Ves III", + "avgLatitude": 49.99001, + "avgLongitude": 15.0345116 + }, + { + "id": "U5916", + "name": "Svojšice,rozc.", + "avgLatitude": 49.5746841, + "avgLongitude": 14.0420952 + }, + { + "id": "U2893", + "name": "Svojšice,Votelež", + "avgLatitude": 49.99948, + "avgLongitude": 15.0101318 + }, + { + "id": "U31366", + "name": "Svor,Nová Huť", + "avgLatitude": 50.8309937, + "avgLongitude": 14.5908337 + }, + { + "id": "U31365", + "name": "Svor,otočka", + "avgLatitude": 50.7917976, + "avgLongitude": 14.5985718 + }, + { + "id": "U1670", + "name": "Svrkyně", + "avgLatitude": 50.1718445, + "avgLongitude": 14.2978764 + }, + { + "id": "U1743", + "name": "Sychrov", + "avgLatitude": 50.1202927, + "avgLongitude": 14.6573238 + }, + { + "id": "U9097", + "name": "Sýkořice", + "avgLatitude": 50.0346375, + "avgLongitude": 13.931263 + }, + { + "id": "U9099", + "name": "Sýkořice,Luby", + "avgLatitude": 50.04384, + "avgLongitude": 13.9698925 + }, + { + "id": "U9098", + "name": "Sýkořice,U Křížku", + "avgLatitude": 50.0387344, + "avgLongitude": 13.9436588 + }, + { + "id": "U444", + "name": "Šafránecká", + "avgLatitude": 50.0758743, + "avgLongitude": 14.3447342 + }, + { + "id": "U966", + "name": "Šafránkova", + "avgLatitude": 50.05861, + "avgLongitude": 14.3385963 + }, + { + "id": "U9541", + "name": "Šanov", + "avgLatitude": 50.0874977, + "avgLongitude": 13.6300917 + }, + { + "id": "U6855", + "name": "Šanov,rozc.", + "avgLatitude": 50.0959854, + "avgLongitude": 13.6310453 + }, + { + "id": "U728", + "name": "Šatovka", + "avgLatitude": 50.1175232, + "avgLongitude": 14.3748837 + }, + { + "id": "U729", + "name": "Šeberák", + "avgLatitude": 50.0117264, + "avgLongitude": 14.4913177 + }, + { + "id": "U730", + "name": "Šeberov", + "avgLatitude": 50.018158, + "avgLongitude": 14.5106926 + }, + { + "id": "U6998", + "name": "Šebestěnice", + "avgLatitude": 49.82904, + "avgLongitude": 15.3646832 + }, + { + "id": "U31260", + "name": "Šebířov", + "avgLatitude": 49.56514, + "avgLongitude": 14.8242245 + }, + { + "id": "U31259", + "name": "Šebířov,Bouřilka", + "avgLatitude": 49.56537, + "avgLongitude": 14.7768145 + }, + { + "id": "U31261", + "name": "Šebířov,Skrýšov", + "avgLatitude": 49.57726, + "avgLongitude": 14.8302631 + }, + { + "id": "U1613", + "name": "Šestajovice,Balkán", + "avgLatitude": 50.1059227, + "avgLongitude": 14.6803856 + }, + { + "id": "U1602", + "name": "Šestajovice,Pražská", + "avgLatitude": 50.1024551, + "avgLongitude": 14.6759949 + }, + { + "id": "U1604", + "name": "Šestajovice,U Školy", + "avgLatitude": 50.1118774, + "avgLongitude": 14.682435 + }, + { + "id": "U1500", + "name": "Šestajovice,Za Stodolami", + "avgLatitude": 50.11328, + "avgLongitude": 14.6797161 + }, + { + "id": "U5717", + "name": "Šetějovice", + "avgLatitude": 49.6450424, + "avgLongitude": 15.2220535 + }, + { + "id": "U5719", + "name": "Šetějovice,Dolní Rápotice", + "avgLatitude": 49.6380539, + "avgLongitude": 15.2335186 + }, + { + "id": "U5718", + "name": "Šetějovice,Nechyba", + "avgLatitude": 49.6481247, + "avgLongitude": 15.2163906 + }, + { + "id": "U55", + "name": "Šimůnkova", + "avgLatitude": 50.1329346, + "avgLongitude": 14.4704733 + }, + { + "id": "U7161", + "name": "Šípy", + "avgLatitude": 50.0155029, + "avgLongitude": 13.6143608 + }, + { + "id": "U6877", + "name": "Šípy,Bělbožice", + "avgLatitude": 50.0182533, + "avgLongitude": 13.6009493 + }, + { + "id": "U6882", + "name": "Šípy,Milíčov", + "avgLatitude": 50.0014, + "avgLongitude": 13.6162539 + }, + { + "id": "U6880", + "name": "Šípy,u rybníka", + "avgLatitude": 50.0143661, + "avgLongitude": 13.6166353 + }, + { + "id": "U1163", + "name": "Škola Dolní Počernice", + "avgLatitude": 50.0885773, + "avgLongitude": 14.581316 + }, + { + "id": "U107", + "name": "Škola Dubeč", + "avgLatitude": 50.06292, + "avgLongitude": 14.5909767 + }, + { + "id": "U277", + "name": "Škola Kolovraty", + "avgLatitude": 50.01117, + "avgLongitude": 14.6276016 + }, + { + "id": "U341", + "name": "Škola Lipence", + "avgLatitude": 49.9606819, + "avgLongitude": 14.356225 + }, + { + "id": "U905", + "name": "Škola Nebušice", + "avgLatitude": 50.11093, + "avgLongitude": 14.3306942 + }, + { + "id": "U2605", + "name": "Škola Poštovka", + "avgLatitude": 50.069, + "avgLongitude": 14.355196 + }, + { + "id": "U184", + "name": "Škola Radlice", + "avgLatitude": 50.0597, + "avgLongitude": 14.3936224 + }, + { + "id": "U1223", + "name": "Škola Radotín", + "avgLatitude": 49.9812469, + "avgLongitude": 14.3604908 + }, + { + "id": "U635", + "name": "Škola Řepy", + "avgLatitude": 50.06895, + "avgLongitude": 14.2959118 + }, + { + "id": "U470", + "name": "Škola Slivenec", + "avgLatitude": 50.0194168, + "avgLongitude": 14.3542423 + }, + { + "id": "U2715", + "name": "Škola Šeberov", + "avgLatitude": 50.00647, + "avgLongitude": 14.5168114 + }, + { + "id": "U793", + "name": "Škola Štěrboholy", + "avgLatitude": 50.07218, + "avgLongitude": 14.5526943 + }, + { + "id": "U2574", + "name": "Škola Velká Chuchle", + "avgLatitude": 50.0120163, + "avgLongitude": 14.3823328 + }, + { + "id": "U1611", + "name": "Škvorec,MŠ", + "avgLatitude": 50.0507, + "avgLongitude": 14.7317505 + }, + { + "id": "U1258", + "name": "Škvorec,nám.", + "avgLatitude": 50.0466461, + "avgLongitude": 14.7308578 + }, + { + "id": "U1429", + "name": "Škvorec,rozc.", + "avgLatitude": 50.04493, + "avgLongitude": 14.7399063 + }, + { + "id": "U1257", + "name": "Škvorec,Třebohostice", + "avgLatitude": 50.0374146, + "avgLongitude": 14.7203245 + }, + { + "id": "U1256", + "name": "Škvorec,Třebohostice,škola", + "avgLatitude": 50.03876, + "avgLongitude": 14.72056 + }, + { + "id": "U9123", + "name": "Šlapanice", + "avgLatitude": 50.31373, + "avgLongitude": 14.1095715 + }, + { + "id": "U9122", + "name": "Šlapanice,Budeničky", + "avgLatitude": 50.3189735, + "avgLongitude": 14.0998058 + }, + { + "id": "U9124", + "name": "Šlapanice,dvůr", + "avgLatitude": 50.3167534, + "avgLongitude": 14.0969133 + }, + { + "id": "U9125", + "name": "Šlapanice,samota", + "avgLatitude": 50.3107643, + "avgLongitude": 14.1221561 + }, + { + "id": "U9126", + "name": "Šlapanice,zámek", + "avgLatitude": 50.3157043, + "avgLongitude": 14.1008005 + }, + { + "id": "U733", + "name": "Šmukýřka", + "avgLatitude": 50.0642662, + "avgLongitude": 14.3706169 + }, + { + "id": "U734", + "name": "Špejchar", + "avgLatitude": 50.09743, + "avgLongitude": 14.41008 + }, + { + "id": "U735", + "name": "Šperlova", + "avgLatitude": 50.0342331, + "avgLongitude": 14.5108671 + }, + { + "id": "U1052", + "name": "Špitálská", + "avgLatitude": 50.1109924, + "avgLongitude": 14.5050507 + }, + { + "id": "U2952", + "name": "Šporkova", + "avgLatitude": 50.0874, + "avgLongitude": 14.3981009 + }, + { + "id": "U737", + "name": "Štefkova", + "avgLatitude": 50.0797348, + "avgLongitude": 14.3530331 + }, + { + "id": "U2490", + "name": "Štěchovice", + "avgLatitude": 49.85178, + "avgLongitude": 14.4063053 + }, + { + "id": "U2493", + "name": "Štěchovice,Masečín", + "avgLatitude": 49.85075, + "avgLongitude": 14.3811283 + }, + { + "id": "U2492", + "name": "Štěchovice,Masečín,Chrástky", + "avgLatitude": 49.8534164, + "avgLongitude": 14.3878956 + }, + { + "id": "U2491", + "name": "Štěchovice,Nad Horou", + "avgLatitude": 49.8497772, + "avgLongitude": 14.4031086 + }, + { + "id": "U2520", + "name": "Štěchovice,Třebenice", + "avgLatitude": 49.8248329, + "avgLongitude": 14.43978 + }, + { + "id": "U738", + "name": "Štěchovická", + "avgLatitude": 50.072094, + "avgLongitude": 14.5007725 + }, + { + "id": "U739", + "name": "Štěpánská", + "avgLatitude": 50.0756035, + "avgLongitude": 14.4234 + }, + { + "id": "U1125", + "name": "Štěpařská", + "avgLatitude": 50.0322723, + "avgLongitude": 14.3733921 + }, + { + "id": "U1097", + "name": "Štěpnice", + "avgLatitude": 50.1279526, + "avgLongitude": 14.3677416 + }, + { + "id": "U740", + "name": "Štěpničná", + "avgLatitude": 50.1279259, + "avgLongitude": 14.4773026 + }, + { + "id": "U794", + "name": "Štěrboholy", + "avgLatitude": 50.07179, + "avgLongitude": 14.5504217 + }, + { + "id": "U3266", + "name": "Štětí", + "avgLatitude": 50.4565277, + "avgLongitude": 14.393837 + }, + { + "id": "U3324", + "name": "Štětí,Cihelná", + "avgLatitude": 50.45566, + "avgLongitude": 14.3707466 + }, + { + "id": "U3323", + "name": "Štětí,hotelový dům", + "avgLatitude": 50.4560928, + "avgLongitude": 14.3826942 + }, + { + "id": "U3321", + "name": "Štětí,Počeplice", + "avgLatitude": 50.431572, + "avgLongitude": 14.39525 + }, + { + "id": "U3322", + "name": "Štětí,sídliště", + "avgLatitude": 50.4497375, + "avgLongitude": 14.37956 + }, + { + "id": "U6941", + "name": "Štětí,záv.", + "avgLatitude": 50.4605331, + "avgLongitude": 14.367548 + }, + { + "id": "U5720", + "name": "Štětkovice", + "avgLatitude": 49.6728554, + "avgLongitude": 14.5006256 + }, + { + "id": "U9380", + "name": "Štětkovice", + "avgLatitude": 49.66678, + "avgLongitude": 14.5169525 + }, + { + "id": "U5722", + "name": "Štětkovice,Chrastava", + "avgLatitude": 49.6637039, + "avgLongitude": 14.4879322 + }, + { + "id": "U2069", + "name": "Štíhlice", + "avgLatitude": 50.0064621, + "avgLongitude": 14.7786407 + }, + { + "id": "U2071", + "name": "Štíhlice,Doubravčická", + "avgLatitude": 50.0084534, + "avgLongitude": 14.7776337 + }, + { + "id": "U32083", + "name": "Štichovice,Křečov", + "avgLatitude": 49.9720154, + "avgLongitude": 13.3222551 + }, + { + "id": "U32084", + "name": "Štichovice,rozc.", + "avgLatitude": 49.97295, + "avgLongitude": 13.3030949 + }, + { + "id": "U7064", + "name": "Štipoklasy", + "avgLatitude": 49.82453, + "avgLongitude": 15.2132711 + }, + { + "id": "U9435", + "name": "Štipoklasy", + "avgLatitude": 49.828064, + "avgLongitude": 15.207983 + }, + { + "id": "U5210", + "name": "Štorchova", + "avgLatitude": 50.10302, + "avgLongitude": 14.4684706 + }, + { + "id": "U3230", + "name": "Štorkánova", + "avgLatitude": 50.06166, + "avgLongitude": 14.3926754 + }, + { + "id": "U983", + "name": "Štvanice", + "avgLatitude": 50.09527, + "avgLongitude": 14.4369507 + }, + { + "id": "U744", + "name": "Šumavská", + "avgLatitude": 50.0753479, + "avgLongitude": 14.4438705 + }, + { + "id": "U1395", + "name": "Šumperská", + "avgLatitude": 50.13588, + "avgLongitude": 14.5086107 + }, + { + "id": "U481", + "name": "Švandovo divadlo", + "avgLatitude": 50.07844, + "avgLongitude": 14.4047823 + }, + { + "id": "U9543", + "name": "Švihov", + "avgLatitude": 50.110817, + "avgLongitude": 13.5650349 + }, + { + "id": "U4886", + "name": "Tábor,aut.nádr.", + "avgLatitude": 49.4141731, + "avgLongitude": 14.6746254 + }, + { + "id": "U32044", + "name": "Tábor,Brisk a.s.", + "avgLatitude": 49.4149, + "avgLongitude": 14.6861324 + }, + { + "id": "U32035", + "name": "Tábor,Čekanice,Na vyhlídce", + "avgLatitude": 49.42308, + "avgLongitude": 14.678463 + }, + { + "id": "U32037", + "name": "Tábor,Čekanice,silo", + "avgLatitude": 49.43118, + "avgLongitude": 14.6883564 + }, + { + "id": "U32036", + "name": "Tábor,Čekanice,u cihelny", + "avgLatitude": 49.4283142, + "avgLongitude": 14.6862793 + }, + { + "id": "U32041", + "name": "Tábor,Hlinice", + "avgLatitude": 49.4293175, + "avgLongitude": 14.7187414 + }, + { + "id": "U32040", + "name": "Tábor,Hlinice,myslivna", + "avgLatitude": 49.43438, + "avgLongitude": 14.72884 + }, + { + "id": "U32038", + "name": "Tábor,Hlinice,rozc.2.0", + "avgLatitude": 49.44458, + "avgLongitude": 14.7028732 + }, + { + "id": "U32039", + "name": "Tábor,Hlinice,V chalupách", + "avgLatitude": 49.4385452, + "avgLongitude": 14.7382689 + }, + { + "id": "U31868", + "name": "Tábor,Klokoty", + "avgLatitude": 49.41919, + "avgLongitude": 14.6446095 + }, + { + "id": "U31279", + "name": "Tábor,Křižíkovo nám.", + "avgLatitude": 49.41265, + "avgLongitude": 14.6646757 + }, + { + "id": "U31869", + "name": "Tábor,nem.", + "avgLatitude": 49.4195557, + "avgLongitude": 14.65136 + }, + { + "id": "U31277", + "name": "Tábor,Nový Ráj", + "avgLatitude": 49.4171829, + "avgLongitude": 14.66273 + }, + { + "id": "U32033", + "name": "Tábor,Písecké rozc.", + "avgLatitude": 49.4194145, + "avgLongitude": 14.6604586 + }, + { + "id": "U31281", + "name": "Tábor,poliklinika", + "avgLatitude": 49.41131, + "avgLongitude": 14.6703129 + }, + { + "id": "U32034", + "name": "Tábor,Stránského", + "avgLatitude": 49.4156647, + "avgLongitude": 14.6837626 + }, + { + "id": "U32043", + "name": "Tábor,Vožická Elektroizola", + "avgLatitude": 49.4161034, + "avgLongitude": 14.68998 + }, + { + "id": "U31870", + "name": "Tábor,Všechov", + "avgLatitude": 49.430584, + "avgLongitude": 14.6205549 + }, + { + "id": "U32042", + "name": "Tábor,Záluží", + "avgLatitude": 49.4232063, + "avgLongitude": 14.7036085 + }, + { + "id": "U32045", + "name": "Tábor,Zavadilská", + "avgLatitude": 49.41179, + "avgLongitude": 14.684185 + }, + { + "id": "U1667", + "name": "Tachlovice,Jakubská náves", + "avgLatitude": 50.0109444, + "avgLongitude": 14.2432919 + }, + { + "id": "U1668", + "name": "Tachlovice,Na vrškách", + "avgLatitude": 50.01405, + "avgLongitude": 14.2411652 + }, + { + "id": "U745", + "name": "Tachovské náměstí", + "avgLatitude": 50.0872879, + "avgLongitude": 14.45233 + }, + { + "id": "U3043", + "name": "Talichova", + "avgLatitude": 50.08864, + "avgLongitude": 14.3663578 + }, + { + "id": "U1060", + "name": "Tálínská", + "avgLatitude": 50.1009064, + "avgLongitude": 14.5460663 + }, + { + "id": "U31249", + "name": "Tanvald,centrum", + "avgLatitude": 50.7353363, + "avgLongitude": 15.3090525 + }, + { + "id": "U31248", + "name": "Tanvald,Terminál u žel.st.", + "avgLatitude": 50.7426567, + "avgLongitude": 15.3109074 + }, + { + "id": "U1446", + "name": "Tatce", + "avgLatitude": 50.0917549, + "avgLongitude": 14.975913 + }, + { + "id": "U2436", + "name": "Tatce", + "avgLatitude": 50.0994453, + "avgLongitude": 14.9847593 + }, + { + "id": "U31221", + "name": "Tatobity", + "avgLatitude": 50.57172, + "avgLongitude": 15.2734108 + }, + { + "id": "U2052", + "name": "Tehov", + "avgLatitude": 49.97082, + "avgLongitude": 14.6933556 + }, + { + "id": "U4252", + "name": "Tehov,Hačálka", + "avgLatitude": 49.9712372, + "avgLongitude": 14.6790638 + }, + { + "id": "U6031", + "name": "Tehov,háj.rozc.", + "avgLatitude": 49.72452, + "avgLongitude": 14.97069 + }, + { + "id": "U6032", + "name": "Tehov,Kostelík", + "avgLatitude": 49.7196732, + "avgLongitude": 14.9677877 + }, + { + "id": "U2086", + "name": "Tehov,Lada", + "avgLatitude": 49.98059, + "avgLongitude": 14.70306 + }, + { + "id": "U6030", + "name": "Tehov,náves", + "avgLatitude": 49.7348747, + "avgLongitude": 14.9669638 + }, + { + "id": "U7018", + "name": "Tehov,Nemíž", + "avgLatitude": 49.7427559, + "avgLongitude": 14.93417 + }, + { + "id": "U6029", + "name": "Tehov,rozc.Nemíž", + "avgLatitude": 49.7428246, + "avgLongitude": 14.965517 + }, + { + "id": "U2035", + "name": "Tehovec", + "avgLatitude": 49.98164, + "avgLongitude": 14.7292652 + }, + { + "id": "U2007", + "name": "Tehovec,Mototechna", + "avgLatitude": 49.99008, + "avgLongitude": 14.7249861 + }, + { + "id": "U2006", + "name": "Tehovec,Vojkov", + "avgLatitude": 49.98869, + "avgLongitude": 14.7125645 + }, + { + "id": "U725", + "name": "Tehovičky", + "avgLatitude": 50.01296, + "avgLongitude": 14.6234093 + }, + { + "id": "U5723", + "name": "Těchařovice", + "avgLatitude": 49.6009, + "avgLongitude": 14.04764 + }, + { + "id": "U5724", + "name": "Těchařovice,Na Čmíně", + "avgLatitude": 49.6025162, + "avgLongitude": 14.0619907 + }, + { + "id": "U5859", + "name": "Těchařovice,rozc.Zbenice", + "avgLatitude": 49.6022644, + "avgLongitude": 14.0652733 + }, + { + "id": "U4874", + "name": "Telce", + "avgLatitude": 50.31186, + "avgLongitude": 13.9718695 + }, + { + "id": "U748", + "name": "Televizní věž", + "avgLatitude": 50.08024, + "avgLongitude": 14.37387 + }, + { + "id": "U749", + "name": "Tempo", + "avgLatitude": 50.0200348, + "avgLongitude": 14.4519615 + }, + { + "id": "U31051", + "name": "Těně", + "avgLatitude": 49.75126, + "avgLongitude": 13.7962608 + }, + { + "id": "U31052", + "name": "Těně,Smolárna", + "avgLatitude": 49.7521133, + "avgLongitude": 13.7720509 + }, + { + "id": "U750", + "name": "Teplárna Malešice", + "avgLatitude": 50.08314, + "avgLongitude": 14.5259008 + }, + { + "id": "U751", + "name": "Teplárna Michle", + "avgLatitude": 50.05282, + "avgLongitude": 14.4746809 + }, + { + "id": "U752", + "name": "Teplárna Třeboradice", + "avgLatitude": 50.16338, + "avgLongitude": 14.5147572 + }, + { + "id": "U683", + "name": "Teplická", + "avgLatitude": 50.1253624, + "avgLongitude": 14.4862432 + }, + { + "id": "U5725", + "name": "Teplýšovice", + "avgLatitude": 49.80607, + "avgLongitude": 14.8016815 + }, + { + "id": "U5726", + "name": "Teplýšovice,Čeňovice", + "avgLatitude": 49.79321, + "avgLongitude": 14.7940483 + }, + { + "id": "U5727", + "name": "Teplýšovice,Čeňovice,rozc.", + "avgLatitude": 49.7971268, + "avgLongitude": 14.79034 + }, + { + "id": "U5728", + "name": "Teplýšovice,Humenec,rozc.", + "avgLatitude": 49.8027954, + "avgLongitude": 14.8018322 + }, + { + "id": "U5729", + "name": "Teplýšovice,Kochánov", + "avgLatitude": 49.7936478, + "avgLongitude": 14.7792854 + }, + { + "id": "U5730", + "name": "Teplýšovice,Smilov", + "avgLatitude": 49.8060226, + "avgLongitude": 14.8168516 + }, + { + "id": "U753", + "name": "Terasy", + "avgLatitude": 50.0369644, + "avgLongitude": 14.4001694 + }, + { + "id": "U31417", + "name": "Terezín,aut.nádr.", + "avgLatitude": 50.5110168, + "avgLongitude": 14.14908 + }, + { + "id": "U32106", + "name": "Terezín,škola", + "avgLatitude": 50.5067978, + "avgLongitude": 14.142086 + }, + { + "id": "U31433", + "name": "Terezín,U Památníku", + "avgLatitude": 50.5125122, + "avgLongitude": 14.15736 + }, + { + "id": "U628", + "name": "Terminál 1", + "avgLatitude": 50.1074562, + "avgLongitude": 14.2686138 + }, + { + "id": "U629", + "name": "Terminál 2", + "avgLatitude": 50.1050644, + "avgLongitude": 14.268054 + }, + { + "id": "U698", + "name": "Terminál 3", + "avgLatitude": 50.0990562, + "avgLongitude": 14.28872 + }, + { + "id": "U952", + "name": "Těšnov", + "avgLatitude": 50.0916977, + "avgLongitude": 14.4365606 + }, + { + "id": "U9016", + "name": "Tetín", + "avgLatitude": 49.94941, + "avgLongitude": 14.1017389 + }, + { + "id": "U9017", + "name": "Tetín,Koledník", + "avgLatitude": 49.9378242, + "avgLongitude": 14.0721025 + }, + { + "id": "U4140", + "name": "Tetín,křižovatka", + "avgLatitude": 49.9477539, + "avgLongitude": 14.0999441 + }, + { + "id": "U9015", + "name": "Tetín,U Rozvodny", + "avgLatitude": 49.953598, + "avgLongitude": 14.0877132 + }, + { + "id": "U757", + "name": "Thákurova", + "avgLatitude": 50.1002579, + "avgLongitude": 14.3868551 + }, + { + "id": "U5732", + "name": "Tichonice", + "avgLatitude": 49.7766037, + "avgLongitude": 14.992424 + }, + { + "id": "U6026", + "name": "Tichonice,Licoměrsko", + "avgLatitude": 49.7648, + "avgLongitude": 14.9772949 + }, + { + "id": "U6025", + "name": "Tichonice,rozc.", + "avgLatitude": 49.771904, + "avgLongitude": 14.9935646 + }, + { + "id": "U5733", + "name": "Tichonice,Soušice", + "avgLatitude": 49.7643852, + "avgLongitude": 15.0059175 + }, + { + "id": "U5734", + "name": "Tichonice,Soušice,Dolíky", + "avgLatitude": 49.7654, + "avgLongitude": 14.997117 + }, + { + "id": "U4527", + "name": "Tisem", + "avgLatitude": 49.754715, + "avgLongitude": 14.6094646 + }, + { + "id": "U707", + "name": "Tiskařská", + "avgLatitude": 50.08295, + "avgLongitude": 14.5340919 + }, + { + "id": "U1420", + "name": "Tismice", + "avgLatitude": 50.058, + "avgLongitude": 14.8190708 + }, + { + "id": "U2273", + "name": "Tismice,bytovky", + "avgLatitude": 50.0594635, + "avgLongitude": 14.8248072 + }, + { + "id": "U4335", + "name": "Tismice,Hřbitov", + "avgLatitude": 50.0549126, + "avgLongitude": 14.8255653 + }, + { + "id": "U2395", + "name": "Tismice,Limuzy", + "avgLatitude": 50.0569534, + "avgLongitude": 14.78901 + }, + { + "id": "U1421", + "name": "Tismice,MŠ", + "avgLatitude": 50.05624, + "avgLongitude": 14.8170013 + }, + { + "id": "U4134", + "name": "Tismice,Na Kopečku", + "avgLatitude": 50.06093, + "avgLongitude": 14.8297281 + }, + { + "id": "U2182", + "name": "Tišice", + "avgLatitude": 50.2679367, + "avgLongitude": 14.5587807 + }, + { + "id": "U2814", + "name": "Tišice", + "avgLatitude": 50.26778, + "avgLongitude": 14.5572739 + }, + { + "id": "U2185", + "name": "Tišice,Chrást", + "avgLatitude": 50.26324, + "avgLongitude": 14.5684423 + }, + { + "id": "U2184", + "name": "Tišice,Kozly", + "avgLatitude": 50.25647, + "avgLongitude": 14.5604744 + }, + { + "id": "U2183", + "name": "Tišice,Záv.Kafilerie", + "avgLatitude": 50.28627, + "avgLongitude": 14.5406761 + }, + { + "id": "U9614", + "name": "Tlustice", + "avgLatitude": 49.8491974, + "avgLongitude": 13.8837442 + }, + { + "id": "U9788", + "name": "Tlustice,Cintlovka", + "avgLatitude": 49.84178, + "avgLongitude": 13.88208 + }, + { + "id": "U9057", + "name": "Tmaň", + "avgLatitude": 49.90551, + "avgLongitude": 14.0342607 + }, + { + "id": "U4879", + "name": "Tmáň", + "avgLatitude": 50.2855721, + "avgLongitude": 14.1237373 + }, + { + "id": "U9061", + "name": "Tmaň,Lounín", + "avgLatitude": 49.90538, + "avgLongitude": 14.0199165 + }, + { + "id": "U9060", + "name": "Tmaň,nad školou", + "avgLatitude": 49.9081535, + "avgLongitude": 14.033371 + }, + { + "id": "U9058", + "name": "Tmaň,rozc.VČS", + "avgLatitude": 49.90622, + "avgLongitude": 14.0433636 + }, + { + "id": "U9062", + "name": "Tmaň,Slavíky,rozc.1.0", + "avgLatitude": 49.91629, + "avgLongitude": 14.0309668 + }, + { + "id": "U185", + "name": "Točná", + "avgLatitude": 49.9727173, + "avgLongitude": 14.4317837 + }, + { + "id": "U9821", + "name": "Točník", + "avgLatitude": 49.88543, + "avgLongitude": 13.882411 + }, + { + "id": "U5736", + "name": "Tochovice", + "avgLatitude": 49.5954971, + "avgLongitude": 13.9857559 + }, + { + "id": "U3290", + "name": "Tochovice", + "avgLatitude": 49.5887566, + "avgLongitude": 13.9879894 + }, + { + "id": "U6044", + "name": "Tochovice zast.", + "avgLatitude": 49.5985069, + "avgLongitude": 13.994462 + }, + { + "id": "U5738", + "name": "Tochovice,Hořejany", + "avgLatitude": 49.588932, + "avgLongitude": 14.01601 + }, + { + "id": "U5737", + "name": "Tochovice,Obecní úřad", + "avgLatitude": 49.5988235, + "avgLongitude": 13.9882154 + }, + { + "id": "U5739", + "name": "Tomice", + "avgLatitude": 49.64546, + "avgLongitude": 15.15513 + }, + { + "id": "U5740", + "name": "Tomice,u mostu", + "avgLatitude": 49.6429176, + "avgLongitude": 15.1568689 + }, + { + "id": "U760", + "name": "Topolová", + "avgLatitude": 50.0540771, + "avgLongitude": 14.5075092 + }, + { + "id": "U2797", + "name": "Toufarova", + "avgLatitude": 50.04242, + "avgLongitude": 14.3093662 + }, + { + "id": "U9529", + "name": "Touchovice u Loun", + "avgLatitude": 50.3017769, + "avgLongitude": 13.72835 + }, + { + "id": "U166", + "name": "Toulcův dvůr", + "avgLatitude": 50.047802, + "avgLongitude": 14.5193424 + }, + { + "id": "U2934", + "name": "Toušice", + "avgLatitude": 49.9864235, + "avgLongitude": 15.0042658 + }, + { + "id": "U4986", + "name": "Toušice,Mlékovice", + "avgLatitude": 49.9816132, + "avgLongitude": 15.0247269 + }, + { + "id": "U9362", + "name": "Toušice,ObÚ", + "avgLatitude": 49.9877548, + "avgLongitude": 15.0057163 + }, + { + "id": "U4851", + "name": "Toužetín,Sulec", + "avgLatitude": 50.3089142, + "avgLongitude": 13.8855124 + }, + { + "id": "U327", + "name": "Toužimská", + "avgLatitude": 50.1362762, + "avgLongitude": 14.5227108 + }, + { + "id": "U761", + "name": "Továrny Hostivař", + "avgLatitude": 50.05634, + "avgLongitude": 14.5428295 + }, + { + "id": "U9668", + "name": "Trhové Dušníky", + "avgLatitude": 49.7135, + "avgLongitude": 14.0124483 + }, + { + "id": "U9667", + "name": "Trhové Dušníky,Litavka", + "avgLatitude": 49.71163, + "avgLongitude": 14.0137062 + }, + { + "id": "U9669", + "name": "Trhové Dušníky,Na Homoli", + "avgLatitude": 49.7108459, + "avgLongitude": 14.0160723 + }, + { + "id": "U5747", + "name": "Trhový Štěpánov,Dalkovice", + "avgLatitude": 49.7328033, + "avgLongitude": 15.006155 + }, + { + "id": "U5748", + "name": "Trhový Štěpánov,Dubějovice", + "avgLatitude": 49.7015839, + "avgLongitude": 15.0505085 + }, + { + "id": "U5744", + "name": "Trhový Štěpánov,městský úřad", + "avgLatitude": 49.7102776, + "avgLongitude": 15.0147352 + }, + { + "id": "U5742", + "name": "Trhový Štěpánov,mlýn", + "avgLatitude": 49.705677, + "avgLongitude": 15.0317755 + }, + { + "id": "U5904", + "name": "Trhový Štěpánov,na potoce", + "avgLatitude": 49.72009, + "avgLongitude": 15.03581 + }, + { + "id": "U5743", + "name": "Trhový Štěpánov,nám.", + "avgLatitude": 49.7116661, + "avgLongitude": 15.0129242 + }, + { + "id": "U5745", + "name": "Trhový Štěpánov,pod pasekou", + "avgLatitude": 49.7171173, + "avgLongitude": 15.0100975 + }, + { + "id": "U5749", + "name": "Trhový Štěpánov,Sedmpány", + "avgLatitude": 49.6992722, + "avgLongitude": 15.0666637 + }, + { + "id": "U5750", + "name": "Trhový Štěpánov,Sedmpány,háj.", + "avgLatitude": 49.6921349, + "avgLongitude": 15.0680637 + }, + { + "id": "U5751", + "name": "Trhový Štěpánov,Střechov", + "avgLatitude": 49.7501373, + "avgLongitude": 15.0132437 + }, + { + "id": "U5752", + "name": "Trhový Štěpánov,Střechov,u mostu", + "avgLatitude": 49.75315, + "avgLongitude": 15.0158939 + }, + { + "id": "U5741", + "name": "Trhový Štěpánov,Vlašimská", + "avgLatitude": 49.7128372, + "avgLongitude": 15.0086021 + }, + { + "id": "U9395", + "name": "Trhový Štěpánov,žel.st.", + "avgLatitude": 49.70778, + "avgLongitude": 15.0098782 + }, + { + "id": "U1720", + "name": "Trnová", + "avgLatitude": 49.9152031, + "avgLongitude": 14.357645 + }, + { + "id": "U1719", + "name": "Trnová,Domov Borová", + "avgLatitude": 49.91693, + "avgLongitude": 14.3485508 + }, + { + "id": "U32501", + "name": "Trnovany", + "avgLatitude": 50.3193, + "avgLongitude": 13.5971308 + }, + { + "id": "U765", + "name": "Trojská", + "avgLatitude": 50.1168175, + "avgLongitude": 14.4327316 + }, + { + "id": "U9091", + "name": "Trubín", + "avgLatitude": 49.9421844, + "avgLongitude": 14.0031347 + }, + { + "id": "U7439", + "name": "Trubská", + "avgLatitude": 49.9547043, + "avgLongitude": 13.99285 + }, + { + "id": "U9063", + "name": "Trubská,rozc.1.0", + "avgLatitude": 49.9568863, + "avgLongitude": 14.0101967 + }, + { + "id": "U1409", + "name": "Truhlářská", + "avgLatitude": 50.08946, + "avgLongitude": 14.4286833 + }, + { + "id": "U766", + "name": "Trutnovská", + "avgLatitude": 50.14624, + "avgLongitude": 14.5057259 + }, + { + "id": "U467", + "name": "Třebenická", + "avgLatitude": 50.1293259, + "avgLongitude": 14.4813061 + }, + { + "id": "U2447", + "name": "Třebestovice", + "avgLatitude": 50.1256676, + "avgLongitude": 14.9607716 + }, + { + "id": "U9369", + "name": "Třebešice", + "avgLatitude": 49.9314079, + "avgLongitude": 15.3415575 + }, + { + "id": "U5900", + "name": "Třebešice", + "avgLatitude": 49.77772, + "avgLongitude": 14.8305941 + }, + { + "id": "U7193", + "name": "Třebešice", + "avgLatitude": 49.9284821, + "avgLongitude": 15.3325119 + }, + { + "id": "U7442", + "name": "Třebešice,Čapek", + "avgLatitude": 49.7782974, + "avgLongitude": 14.8037653 + }, + { + "id": "U5753", + "name": "Třebešice,rozc.", + "avgLatitude": 49.7844925, + "avgLongitude": 14.821804 + }, + { + "id": "U767", + "name": "Třebešín", + "avgLatitude": 50.0841064, + "avgLongitude": 14.4819012 + }, + { + "id": "U408", + "name": "Třebešovská", + "avgLatitude": 50.1155548, + "avgLongitude": 14.6259956 + }, + { + "id": "U6971", + "name": "Třebětín", + "avgLatitude": 49.7705956, + "avgLongitude": 15.2693119 + }, + { + "id": "U6988", + "name": "Třebětín,Hostkovice", + "avgLatitude": 49.7681961, + "avgLongitude": 15.2904568 + }, + { + "id": "U6989", + "name": "Třebětín,Hostkovice,rozc.", + "avgLatitude": 49.7725372, + "avgLongitude": 15.2934608 + }, + { + "id": "U6990", + "name": "Třebětín,rozc.Hlohov", + "avgLatitude": 49.77442, + "avgLongitude": 15.29978 + }, + { + "id": "U7315", + "name": "Třebětín,Víckovice", + "avgLatitude": 49.7949257, + "avgLongitude": 15.27425 + }, + { + "id": "U4798", + "name": "Třebichovice", + "avgLatitude": 50.1887741, + "avgLongitude": 14.0775146 + }, + { + "id": "U4800", + "name": "Třebichovice,u hřbitova", + "avgLatitude": 50.1948, + "avgLongitude": 14.0781679 + }, + { + "id": "U4799", + "name": "Třebichovice,u kapličky", + "avgLatitude": 50.190567, + "avgLongitude": 14.079361 + }, + { + "id": "U9231", + "name": "Třebíz", + "avgLatitude": 50.2700233, + "avgLongitude": 13.9937048 + }, + { + "id": "U3366", + "name": "Třeboc", + "avgLatitude": 50.2149658, + "avgLongitude": 13.75119 + }, + { + "id": "U3364", + "name": "Třeboc,Džbán", + "avgLatitude": 50.204567, + "avgLongitude": 13.7470884 + }, + { + "id": "U3365", + "name": "Třeboc,Obchod", + "avgLatitude": 50.2129059, + "avgLongitude": 13.7543631 + }, + { + "id": "U31449", + "name": "Třeboň,aut.nádr.", + "avgLatitude": 49.00786, + "avgLongitude": 14.765234 + }, + { + "id": "U768", + "name": "Třebonice", + "avgLatitude": 50.0451279, + "avgLongitude": 14.2805433 + }, + { + "id": "U7303", + "name": "Třebonín", + "avgLatitude": 49.8697472, + "avgLongitude": 15.3132687 + }, + { + "id": "U7103", + "name": "Třebonín,rozc.", + "avgLatitude": 49.8670578, + "avgLongitude": 15.32077 + }, + { + "id": "U7104", + "name": "Třebonín,rozc.Chedrbí", + "avgLatitude": 49.8693237, + "avgLongitude": 15.3233528 + }, + { + "id": "U769", + "name": "Třeboradice", + "avgLatitude": 50.1628876, + "avgLongitude": 14.5248528 + }, + { + "id": "U293", + "name": "Třeboradický hřbitov", + "avgLatitude": 50.15927, + "avgLongitude": 14.5234013 + }, + { + "id": "U1634", + "name": "Třebotov", + "avgLatitude": 49.9731522, + "avgLongitude": 14.2894745 + }, + { + "id": "U1640", + "name": "Třebotov,Kala", + "avgLatitude": 49.96373, + "avgLongitude": 14.2803354 + }, + { + "id": "U1631", + "name": "Třebotov,Pomník", + "avgLatitude": 49.9756546, + "avgLongitude": 14.3048449 + }, + { + "id": "U1632", + "name": "Třebotov,Sanatorium", + "avgLatitude": 49.974678, + "avgLongitude": 14.29705 + }, + { + "id": "U1618", + "name": "Třebotov,Solopisky", + "avgLatitude": 49.96027, + "avgLongitude": 14.29675 + }, + { + "id": "U1641", + "name": "Třebotov,Solopisky,ZD", + "avgLatitude": 49.9616737, + "avgLongitude": 14.2930908 + }, + { + "id": "U1642", + "name": "Třebotov,Škola", + "avgLatitude": 49.97368, + "avgLongitude": 14.2919741 + }, + { + "id": "U2416", + "name": "Třebovle", + "avgLatitude": 50.0254364, + "avgLongitude": 14.9556665 + }, + { + "id": "U2415", + "name": "Třebovle,Borek", + "avgLatitude": 50.0316772, + "avgLongitude": 14.9457 + }, + { + "id": "U4938", + "name": "Třebovle,Dolní", + "avgLatitude": 50.02774, + "avgLongitude": 14.9628372 + }, + { + "id": "U4934", + "name": "Třebovle,Miškovice", + "avgLatitude": 50.03398, + "avgLongitude": 14.9883032 + }, + { + "id": "U5755", + "name": "Třebsko", + "avgLatitude": 49.6253128, + "avgLongitude": 13.9680328 + }, + { + "id": "U4421", + "name": "Třebusice", + "avgLatitude": 50.2006531, + "avgLongitude": 14.1795721 + }, + { + "id": "U4837", + "name": "Třebusice,křiž.", + "avgLatitude": 50.20302, + "avgLongitude": 14.1828966 + }, + { + "id": "U9473", + "name": "Třemošnice", + "avgLatitude": 49.8720779, + "avgLongitude": 15.5762663 + }, + { + "id": "U6419", + "name": "Tři Dvory", + "avgLatitude": 50.0317459, + "avgLongitude": 15.2571068 + }, + { + "id": "U1396", + "name": "Třinecká", + "avgLatitude": 50.13424, + "avgLongitude": 14.509819 + }, + { + "id": "U9319", + "name": "Třtice", + "avgLatitude": 50.184845, + "avgLongitude": 13.8633385 + }, + { + "id": "U9317", + "name": "Třtice,Bucký rybník", + "avgLatitude": 50.1733055, + "avgLongitude": 13.846674 + }, + { + "id": "U9318", + "name": "Třtice,u brodku", + "avgLatitude": 50.17415, + "avgLongitude": 13.8644667 + }, + { + "id": "U9320", + "name": "Třtice,u školy", + "avgLatitude": 50.1828957, + "avgLongitude": 13.858099 + }, + { + "id": "U1922", + "name": "Tuhaň", + "avgLatitude": 50.2950821, + "avgLongitude": 14.5161953 + }, + { + "id": "U1921", + "name": "Tuhaň,Červená Píska", + "avgLatitude": 50.2949829, + "avgLongitude": 14.5344543 + }, + { + "id": "U1269", + "name": "Tuháňská", + "avgLatitude": 50.1583443, + "avgLongitude": 14.542675 + }, + { + "id": "U9920", + "name": "Tuchlovice", + "avgLatitude": 50.1379547, + "avgLongitude": 13.9892864 + }, + { + "id": "U9922", + "name": "Tuchlovice,Dřevěnkov", + "avgLatitude": 50.13344, + "avgLongitude": 14.0025864 + }, + { + "id": "U4014", + "name": "Tuchlovice,Srby", + "avgLatitude": 50.1437531, + "avgLongitude": 14.01936 + }, + { + "id": "U2820", + "name": "Tuchoměřice", + "avgLatitude": 50.1363831, + "avgLongitude": 14.26835 + }, + { + "id": "U3246", + "name": "Tuchoměřice,Ke Kopanině", + "avgLatitude": 50.12613, + "avgLongitude": 14.27372 + }, + { + "id": "U1317", + "name": "Tuchoměřice,Kněžívka", + "avgLatitude": 50.13043, + "avgLongitude": 14.2755222 + }, + { + "id": "U2140", + "name": "Tuchoměřice,Komerční zóna", + "avgLatitude": 50.13568, + "avgLongitude": 14.2610273 + }, + { + "id": "U1318", + "name": "Tuchoměřice,Obecní úřad", + "avgLatitude": 50.13276, + "avgLongitude": 14.2792339 + }, + { + "id": "U4259", + "name": "Tuchoměřice,Outlet", + "avgLatitude": 50.1249733, + "avgLongitude": 14.2802429 + }, + { + "id": "U1321", + "name": "Tuchoměřice,Pastvišťata", + "avgLatitude": 50.133, + "avgLongitude": 14.2907553 + }, + { + "id": "U1363", + "name": "Tuchoměřice,Rozc.", + "avgLatitude": 50.1242828, + "avgLongitude": 14.2689619 + }, + { + "id": "U4205", + "name": "Tuchoměřice,Statenická", + "avgLatitude": 50.1325455, + "avgLongitude": 14.2839432 + }, + { + "id": "U1364", + "name": "Tuchoměřice,Špejchar", + "avgLatitude": 50.13627, + "avgLongitude": 14.2736912 + }, + { + "id": "U1362", + "name": "Tuchoměřice,Štěrbův Mlýn", + "avgLatitude": 50.13538, + "avgLongitude": 14.3020105 + }, + { + "id": "U1310", + "name": "Tuchoměřice,U Dvora", + "avgLatitude": 50.12717, + "avgLongitude": 14.2730761 + }, + { + "id": "U4181", + "name": "Tuchoměřice,U Hřiště", + "avgLatitude": 50.1342659, + "avgLongitude": 14.2839317 + }, + { + "id": "U1319", + "name": "Tuchoměřice,Zámek", + "avgLatitude": 50.1357, + "avgLongitude": 14.2799168 + }, + { + "id": "U2298", + "name": "Tuchoraz", + "avgLatitude": 50.0481339, + "avgLongitude": 14.850666 + }, + { + "id": "U2299", + "name": "Tuchoraz,U Sadů", + "avgLatitude": 50.0509033, + "avgLongitude": 14.8554611 + }, + { + "id": "U2275", + "name": "Tuklaty", + "avgLatitude": 50.0769958, + "avgLongitude": 14.7706089 + }, + { + "id": "U2437", + "name": "Tuklaty,Akátová", + "avgLatitude": 50.0855179, + "avgLongitude": 14.7682524 + }, + { + "id": "U2438", + "name": "Tuklaty,Tlustovousy", + "avgLatitude": 50.09076, + "avgLongitude": 14.7590122 + }, + { + "id": "U7289", + "name": "Tupadly", + "avgLatitude": 49.86958, + "avgLongitude": 15.4028254 + }, + { + "id": "U6070", + "name": "Tupadly", + "avgLatitude": 50.4423065, + "avgLongitude": 14.4744549 + }, + { + "id": "U7291", + "name": "Tupadly,V Lipách", + "avgLatitude": 49.86664, + "avgLongitude": 15.3988647 + }, + { + "id": "U771", + "name": "Tupolevova", + "avgLatitude": 50.1345062, + "avgLongitude": 14.5058918 + }, + { + "id": "U9443", + "name": "Turnov", + "avgLatitude": 50.5870857, + "avgLongitude": 15.1387911 + }, + { + "id": "U5064", + "name": "Turnov město", + "avgLatitude": 50.579567, + "avgLongitude": 15.152009 + }, + { + "id": "U31088", + "name": "Turnov,5.května", + "avgLatitude": 50.5892868, + "avgLongitude": 15.1623249 + }, + { + "id": "U31080", + "name": "Turnov,aut.nádr.", + "avgLatitude": 50.5890732, + "avgLongitude": 15.1521873 + }, + { + "id": "U31081", + "name": "Turnov,Dolánky,Bukovina rozc.", + "avgLatitude": 50.6088638, + "avgLongitude": 15.1647205 + }, + { + "id": "U31082", + "name": "Turnov,Dolánky,Vápeník", + "avgLatitude": 50.6034241, + "avgLongitude": 15.1625051 + }, + { + "id": "U31084", + "name": "Turnov,Hrubý Rohozec", + "avgLatitude": 50.5970459, + "avgLongitude": 15.15503 + }, + { + "id": "U31093", + "name": "Turnov,chemička", + "avgLatitude": 50.5860367, + "avgLongitude": 15.1298218 + }, + { + "id": "U31085", + "name": "Turnov,Šroubárny", + "avgLatitude": 50.5917053, + "avgLongitude": 15.1509762 + }, + { + "id": "U32128", + "name": "Turnov,U Benešů", + "avgLatitude": 50.5895767, + "avgLongitude": 15.1335506 + }, + { + "id": "U31091", + "name": "Turnov,u masny", + "avgLatitude": 50.5854034, + "avgLongitude": 15.1540022 + }, + { + "id": "U1691", + "name": "Tursko", + "avgLatitude": 50.19083, + "avgLongitude": 14.321105 + }, + { + "id": "U5036", + "name": "Tursko,Libčická", + "avgLatitude": 50.1912231, + "avgLongitude": 14.331315 + }, + { + "id": "U9252", + "name": "Tuřany", + "avgLatitude": 50.231102, + "avgLongitude": 14.0313206 + }, + { + "id": "U9253", + "name": "Tuřany,Byseň", + "avgLatitude": 50.2365265, + "avgLongitude": 14.0352831 + }, + { + "id": "U9254", + "name": "Tuřany,Byseň,rozc.", + "avgLatitude": 50.23285, + "avgLongitude": 14.0411739 + }, + { + "id": "U9256", + "name": "Tuřany,u školy", + "avgLatitude": 50.2324371, + "avgLongitude": 14.0280495 + }, + { + "id": "U3261", + "name": "Tuřice", + "avgLatitude": 50.2491837, + "avgLongitude": 14.7711792 + }, + { + "id": "U5756", + "name": "Tušovice", + "avgLatitude": 49.57597, + "avgLongitude": 14.0304852 + }, + { + "id": "U5757", + "name": "Tušovice,Tušovičky", + "avgLatitude": 49.57791, + "avgLongitude": 14.0249386 + }, + { + "id": "U31962", + "name": "Týček", + "avgLatitude": 49.8686142, + "avgLongitude": 13.7940025 + }, + { + "id": "U928", + "name": "Tylova čtvrť", + "avgLatitude": 50.0081253, + "avgLongitude": 14.4155254 + }, + { + "id": "U6423", + "name": "Týnec n.L.,Bílá Hora", + "avgLatitude": 50.03927, + "avgLongitude": 15.356123 + }, + { + "id": "U6422", + "name": "Týnec n.L.,Lžovice", + "avgLatitude": 50.0374832, + "avgLongitude": 15.3409214 + }, + { + "id": "U6424", + "name": "Týnec n.L.,nám.", + "avgLatitude": 50.0420456, + "avgLongitude": 15.3582191 + }, + { + "id": "U6425", + "name": "Týnec n.L.,prům.areál", + "avgLatitude": 50.0509758, + "avgLongitude": 15.3631134 + }, + { + "id": "U6664", + "name": "Týnec n.L.,předměstí", + "avgLatitude": 50.049614, + "avgLongitude": 15.3691235 + }, + { + "id": "U6665", + "name": "Týnec n.L.,Svárava", + "avgLatitude": 50.05188, + "avgLongitude": 15.383604 + }, + { + "id": "U9365", + "name": "Týnec n.L.,u mostu", + "avgLatitude": 50.03946, + "avgLongitude": 15.3576012 + }, + { + "id": "U4511", + "name": "Týnec n.Sáz.,Brodce", + "avgLatitude": 49.8344574, + "avgLongitude": 14.5982723 + }, + { + "id": "U1588", + "name": "Týnec n.Sáz.,Čakovice", + "avgLatitude": 49.86991, + "avgLongitude": 14.5931606 + }, + { + "id": "U1589", + "name": "Týnec n.Sáz.,Čisté potoky", + "avgLatitude": 49.8603973, + "avgLongitude": 14.5848961 + }, + { + "id": "U1596", + "name": "Týnec n.Sáz.,Chrást", + "avgLatitude": 49.8399239, + "avgLongitude": 14.5718212 + }, + { + "id": "U7789", + "name": "Týnec n.Sáz.,Chrást,u hřbitova", + "avgLatitude": 49.84308, + "avgLongitude": 14.560421 + }, + { + "id": "U4496", + "name": "Týnec n.Sáz.,Krusičanská", + "avgLatitude": 49.8247528, + "avgLongitude": 14.5970049 + }, + { + "id": "U4491", + "name": "Týnec n.Sáz.,Krusičany,Rozc.", + "avgLatitude": 49.80883, + "avgLongitude": 14.6017284 + }, + { + "id": "U4495", + "name": "Týnec n.Sáz.,Kult.dům", + "avgLatitude": 49.8302231, + "avgLongitude": 14.5899124 + }, + { + "id": "U4509", + "name": "Týnec n.Sáz.,Pecerady,Hřiště", + "avgLatitude": 49.8372726, + "avgLongitude": 14.60928 + }, + { + "id": "U4508", + "name": "Týnec n.Sáz.,Pecerady,Jednota", + "avgLatitude": 49.8401146, + "avgLongitude": 14.6148739 + }, + { + "id": "U4510", + "name": "Týnec n.Sáz.,Pecerady,Podhajský ryb.", + "avgLatitude": 49.8347168, + "avgLongitude": 14.6061592 + }, + { + "id": "U4514", + "name": "Týnec n.Sáz.,Pila", + "avgLatitude": 49.83168, + "avgLongitude": 14.5837574 + }, + { + "id": "U4515", + "name": "Týnec n.Sáz.,Podělusy", + "avgLatitude": 49.83648, + "avgLongitude": 14.5744228 + }, + { + "id": "U4498", + "name": "Týnec n.Sáz.,Sídliště", + "avgLatitude": 49.836525, + "avgLongitude": 14.5841045 + }, + { + "id": "U4497", + "name": "Týnec n.Sáz.,Škola", + "avgLatitude": 49.8287964, + "avgLongitude": 14.595171 + }, + { + "id": "U4513", + "name": "Týnec n.Sáz.,Zbořený Kostelec", + "avgLatitude": 49.8492851, + "avgLongitude": 14.594882 + }, + { + "id": "U1590", + "name": "Týnec n.Sáz.,Zbořený Kostelec,Hrad", + "avgLatitude": 49.8533859, + "avgLongitude": 14.5890713 + }, + { + "id": "U4512", + "name": "Týnec n.Sáz.,Zbořený Kostelec,Chaty", + "avgLatitude": 49.8439255, + "avgLongitude": 14.5963306 + }, + { + "id": "U1593", + "name": "Týnec n.Sáz.,Žel.st.", + "avgLatitude": 49.8342743, + "avgLongitude": 14.5920343 + }, + { + "id": "U772", + "name": "Tyršova čtvrť", + "avgLatitude": 50.01409, + "avgLongitude": 14.4107008 + }, + { + "id": "U987", + "name": "U Belárie", + "avgLatitude": 50.0168533, + "avgLongitude": 14.4035568 + }, + { + "id": "U1392", + "name": "U Bílého Mlýnku", + "avgLatitude": 50.1553078, + "avgLongitude": 14.5280132 + }, + { + "id": "U3234", + "name": "U Blaženky", + "avgLatitude": 50.06793, + "avgLongitude": 14.3849134 + }, + { + "id": "U774", + "name": "U Dálnice", + "avgLatitude": 50.0204926, + "avgLongitude": 14.5074005 + }, + { + "id": "U863", + "name": "U Dobešky", + "avgLatitude": 50.0401955, + "avgLongitude": 14.4191647 + }, + { + "id": "U1133", + "name": "U Drahaně", + "avgLatitude": 50.1354027, + "avgLongitude": 14.416 + }, + { + "id": "U775", + "name": "U Elektry", + "avgLatitude": 50.10347, + "avgLongitude": 14.5189991 + }, + { + "id": "U822", + "name": "U Háje", + "avgLatitude": 50.0422134, + "avgLongitude": 14.4204884 + }, + { + "id": "U776", + "name": "U Hangáru", + "avgLatitude": 50.10818, + "avgLongitude": 14.2762156 + }, + { + "id": "U4887", + "name": "U Jahodnice", + "avgLatitude": 50.08421, + "avgLongitude": 14.5506954 + }, + { + "id": "U746", + "name": "U Jankovky", + "avgLatitude": 49.988205, + "avgLongitude": 14.3679342 + }, + { + "id": "U777", + "name": "U Kapličky", + "avgLatitude": 49.9620476, + "avgLongitude": 14.360671 + }, + { + "id": "U778", + "name": "U Kaštanu", + "avgLatitude": 50.0836525, + "avgLongitude": 14.3631115 + }, + { + "id": "U1026", + "name": "U Kestřánků", + "avgLatitude": 49.9869347, + "avgLongitude": 14.3568144 + }, + { + "id": "U779", + "name": "U Kříže", + "avgLatitude": 50.1122437, + "avgLongitude": 14.47554 + }, + { + "id": "U780", + "name": "U Křížku", + "avgLatitude": 50.01598, + "avgLongitude": 14.35671 + }, + { + "id": "U1081", + "name": "U Kundratky", + "avgLatitude": 50.11782, + "avgLongitude": 14.4877558 + }, + { + "id": "U972", + "name": "U Kunratického lesa", + "avgLatitude": 50.0229263, + "avgLongitude": 14.4889526 + }, + { + "id": "U377", + "name": "U Labutě", + "avgLatitude": 50.0357857, + "avgLongitude": 14.4561186 + }, + { + "id": "U781", + "name": "U Ladronky", + "avgLatitude": 50.07987, + "avgLongitude": 14.3620949 + }, + { + "id": "U782", + "name": "U Lesíka", + "avgLatitude": 50.06471, + "avgLongitude": 14.3585758 + }, + { + "id": "U783", + "name": "U Libušské sokolovny", + "avgLatitude": 50.0048, + "avgLongitude": 14.4643507 + }, + { + "id": "U948", + "name": "U Libušského potoka", + "avgLatitude": 50.0058823, + "avgLongitude": 14.423851 + }, + { + "id": "U784", + "name": "U Lípy", + "avgLatitude": 50.05225, + "avgLongitude": 14.4944468 + }, + { + "id": "U785", + "name": "U Lomů", + "avgLatitude": 49.9969521, + "avgLongitude": 14.3389874 + }, + { + "id": "U787", + "name": "U Matěje", + "avgLatitude": 50.112236, + "avgLongitude": 14.3800259 + }, + { + "id": "U788", + "name": "U Měchurky", + "avgLatitude": 50.0647, + "avgLongitude": 14.3782339 + }, + { + "id": "U1405", + "name": "U Mezníku", + "avgLatitude": 50.0511055, + "avgLongitude": 14.6230736 + }, + { + "id": "U931", + "name": "U Mlejna", + "avgLatitude": 50.02706, + "avgLongitude": 14.6022549 + }, + { + "id": "U964", + "name": "U Nemocnice", + "avgLatitude": 50.07352, + "avgLongitude": 14.4209309 + }, + { + "id": "U693", + "name": "U Palaty", + "avgLatitude": 50.0771942, + "avgLongitude": 14.3880186 + }, + { + "id": "U789", + "name": "U Památníku", + "avgLatitude": 50.08679, + "avgLongitude": 14.4459057 + }, + { + "id": "U1164", + "name": "U Počernického rybníka", + "avgLatitude": 50.0848656, + "avgLongitude": 14.59374 + }, + { + "id": "U2788", + "name": "U Prdlavky", + "avgLatitude": 50.0811234, + "avgLongitude": 14.4456348 + }, + { + "id": "U1168", + "name": "U Prioru", + "avgLatitude": 50.086937, + "avgLongitude": 14.3190975 + }, + { + "id": "U1122", + "name": "U Průhonu", + "avgLatitude": 50.1049232, + "avgLongitude": 14.4500265 + }, + { + "id": "U1226", + "name": "U Průseku", + "avgLatitude": 50.0591125, + "avgLongitude": 14.516964 + }, + { + "id": "U4108", + "name": "U Radiály", + "avgLatitude": 50.07565, + "avgLongitude": 14.553709 + }, + { + "id": "U455", + "name": "U Rozcestí", + "avgLatitude": 50.0166321, + "avgLongitude": 14.6349335 + }, + { + "id": "U2777", + "name": "U Rumpálu", + "avgLatitude": 50.1332321, + "avgLongitude": 14.5485582 + }, + { + "id": "U795", + "name": "U Spojů", + "avgLatitude": 50.145668, + "avgLongitude": 14.475275 + }, + { + "id": "U619", + "name": "U Staré pošty", + "avgLatitude": 50.0360336, + "avgLongitude": 14.4117727 + }, + { + "id": "U2958", + "name": "U Staré školy", + "avgLatitude": 50.0901756, + "avgLongitude": 14.4210873 + }, + { + "id": "U894", + "name": "U Studánky", + "avgLatitude": 49.9985275, + "avgLongitude": 14.4828043 + }, + { + "id": "U797", + "name": "U Školy", + "avgLatitude": 50.0438423, + "avgLongitude": 14.4216757 + }, + { + "id": "U1288", + "name": "U Tabulky", + "avgLatitude": 50.1176, + "avgLongitude": 14.6017418 + }, + { + "id": "U798", + "name": "U Továren", + "avgLatitude": 50.0563965, + "avgLongitude": 14.53998 + }, + { + "id": "U3211", + "name": "U Trezorky", + "avgLatitude": 50.0557747, + "avgLongitude": 14.3761 + }, + { + "id": "U799", + "name": "U Tří svatých", + "avgLatitude": 50.01155, + "avgLongitude": 14.4774189 + }, + { + "id": "U9690", + "name": "U Uhříněveské obory", + "avgLatitude": 50.0392227, + "avgLongitude": 14.590106 + }, + { + "id": "U800", + "name": "U Václava", + "avgLatitude": 50.11439, + "avgLongitude": 14.312211 + }, + { + "id": "U802", + "name": "U Včely", + "avgLatitude": 49.96883, + "avgLongitude": 14.3882389 + }, + { + "id": "U803", + "name": "U Vodojemu", + "avgLatitude": 50.1225471, + "avgLongitude": 14.5273285 + }, + { + "id": "U3036", + "name": "U Vody", + "avgLatitude": 50.1106529, + "avgLongitude": 14.4480314 + }, + { + "id": "U3044", + "name": "U Vojenské nemocnice", + "avgLatitude": 50.0901833, + "avgLongitude": 14.3639193 + }, + { + "id": "U396", + "name": "U Waltrovky", + "avgLatitude": 50.0588264, + "avgLongitude": 14.3724728 + }, + { + "id": "U804", + "name": "U Zvoničky", + "avgLatitude": 50.0104065, + "avgLongitude": 14.4602795 + }, + { + "id": "U805", + "name": "U Zvonu", + "avgLatitude": 50.0715446, + "avgLongitude": 14.3872328 + }, + { + "id": "U4289", + "name": "U Žlábku", + "avgLatitude": 49.9596558, + "avgLongitude": 14.36679 + }, + { + "id": "U31875", + "name": "Údrnice,Bílsko", + "avgLatitude": 50.34813, + "avgLongitude": 15.2662535 + }, + { + "id": "U31736", + "name": "Údrnice,náves", + "avgLatitude": 50.37441, + "avgLongitude": 15.2609959 + }, + { + "id": "U31874", + "name": "Údrnice,Únětice", + "avgLatitude": 50.3601723, + "avgLongitude": 15.26536 + }, + { + "id": "U4131", + "name": "Úherce", + "avgLatitude": 50.29812, + "avgLongitude": 13.9509315 + }, + { + "id": "U4280", + "name": "Úherce,ZD", + "avgLatitude": 50.2966156, + "avgLongitude": 13.9491844 + }, + { + "id": "U6426", + "name": "Uhlířská Lhota", + "avgLatitude": 50.0788422, + "avgLongitude": 15.3894463 + }, + { + "id": "U6429", + "name": "Uhlířská Lhota,Rasochy", + "avgLatitude": 50.08956, + "avgLongitude": 15.4070377 + }, + { + "id": "U6427", + "name": "Uhlířská Lhota,Rasochy,rozc.", + "avgLatitude": 50.0896378, + "avgLongitude": 15.3975582 + }, + { + "id": "U9421", + "name": "Uhlířské Janovice", + "avgLatitude": 49.88229, + "avgLongitude": 15.0598 + }, + { + "id": "U9972", + "name": "Uhlířské Janovice,Bláto", + "avgLatitude": 49.8889, + "avgLongitude": 15.031292 + }, + { + "id": "U7137", + "name": "Uhlířské Janovice,Janovická Lhota", + "avgLatitude": 49.8603249, + "avgLongitude": 15.0796709 + }, + { + "id": "U7130", + "name": "Uhlířské Janovice,Kochánov", + "avgLatitude": 49.8462219, + "avgLongitude": 15.0568657 + }, + { + "id": "U9935", + "name": "Uhlířské Janovice,Kolínská", + "avgLatitude": 49.88779, + "avgLongitude": 15.0689888 + }, + { + "id": "U9944", + "name": "Uhlířské Janovice,Malejovice", + "avgLatitude": 49.845974, + "avgLongitude": 15.0382586 + }, + { + "id": "U2157", + "name": "Uhlířské Janovice,nám.", + "avgLatitude": 49.88066, + "avgLongitude": 15.0642757 + }, + { + "id": "U6046", + "name": "Uhlířské Janovice,Opatovice II", + "avgLatitude": 49.8527222, + "avgLongitude": 15.029644 + }, + { + "id": "U6024", + "name": "Uhlířské Janovice,škola", + "avgLatitude": 49.8793678, + "avgLongitude": 15.06163 + }, + { + "id": "U1742", + "name": "Úholičky", + "avgLatitude": 50.16128, + "avgLongitude": 14.3345833 + }, + { + "id": "U2822", + "name": "Úholičky", + "avgLatitude": 50.17011, + "avgLongitude": 14.3518667 + }, + { + "id": "U4189", + "name": "Úholičky,Na Habří", + "avgLatitude": 50.1581955, + "avgLongitude": 14.3351555 + }, + { + "id": "U5892", + "name": "Úholičky,Podmoráň", + "avgLatitude": 50.16767, + "avgLongitude": 14.3452682 + }, + { + "id": "U4282", + "name": "Úholičky,V Chaloupkách", + "avgLatitude": 50.1640472, + "avgLongitude": 14.3408413 + }, + { + "id": "U1741", + "name": "Úholičky,V Kopci", + "avgLatitude": 50.1592445, + "avgLongitude": 14.333827 + }, + { + "id": "U1677", + "name": "Úhonice", + "avgLatitude": 50.04492, + "avgLongitude": 14.1850739 + }, + { + "id": "U1676", + "name": "Úhonice,škola", + "avgLatitude": 50.0419464, + "avgLongitude": 14.1864529 + }, + { + "id": "U808", + "name": "Uhříněves", + "avgLatitude": 50.030098, + "avgLongitude": 14.6048565 + }, + { + "id": "U2137", + "name": "Uhříněveský hřbitov", + "avgLatitude": 50.02794, + "avgLongitude": 14.6156921 + }, + { + "id": "U9146", + "name": "Uhy", + "avgLatitude": 50.2870178, + "avgLongitude": 14.27377 + }, + { + "id": "U9197", + "name": "Uhy,zámek", + "avgLatitude": 50.2842979, + "avgLongitude": 14.2732964 + }, + { + "id": "U809", + "name": "Újezd", + "avgLatitude": 50.08115, + "avgLongitude": 14.40481 + }, + { + "id": "U3276", + "name": "Újezd nad Zbečnem", + "avgLatitude": 50.0456, + "avgLongitude": 13.8925037 + }, + { + "id": "U811", + "name": "Újezd nad Lesy", + "avgLatitude": 50.07612, + "avgLongitude": 14.6584444 + }, + { + "id": "U810", + "name": "Újezd u Průhonic", + "avgLatitude": 50.0124741, + "avgLongitude": 14.5465708 + }, + { + "id": "U7347", + "name": "Újezd,škola", + "avgLatitude": 49.831913, + "avgLongitude": 13.8366842 + }, + { + "id": "U7346", + "name": "Újezd,u kapličky", + "avgLatitude": 49.8312035, + "avgLongitude": 13.8383837 + }, + { + "id": "U2341", + "name": "Újezdec", + "avgLatitude": 50.2815781, + "avgLongitude": 14.4199715 + }, + { + "id": "U6289", + "name": "Ujkovice", + "avgLatitude": 50.3646774, + "avgLongitude": 15.10075 + }, + { + "id": "U6288", + "name": "Ujkovice,křižovatka", + "avgLatitude": 50.3643875, + "avgLongitude": 15.1043215 + }, + { + "id": "U813", + "name": "Ukrajinská", + "avgLatitude": 50.0649948, + "avgLongitude": 14.452527 + }, + { + "id": "U7115", + "name": "Úmonín", + "avgLatitude": 49.8886337, + "avgLongitude": 15.2713346 + }, + { + "id": "U5759", + "name": "Úmonín,Březová", + "avgLatitude": 49.87716, + "avgLongitude": 15.2563581 + }, + { + "id": "U7116", + "name": "Úmonín,Hájek", + "avgLatitude": 49.895607, + "avgLongitude": 15.2819023 + }, + { + "id": "U7113", + "name": "Úmonín,Korotice", + "avgLatitude": 49.8624878, + "avgLongitude": 15.2638378 + }, + { + "id": "U5760", + "name": "Úmonín,Lomec", + "avgLatitude": 49.86799, + "avgLongitude": 15.2868633 + }, + { + "id": "U5761", + "name": "Úmonín,Lomeček", + "avgLatitude": 49.8587646, + "avgLongitude": 15.2879448 + }, + { + "id": "U5762", + "name": "Úmonín,Lomeček,rozc.", + "avgLatitude": 49.8543053, + "avgLongitude": 15.29689 + }, + { + "id": "U6700", + "name": "Úmyslovice", + "avgLatitude": 50.20317, + "avgLongitude": 15.1763439 + }, + { + "id": "U7788", + "name": "Úmyslovice,Ostrov", + "avgLatitude": 50.1928177, + "avgLongitude": 15.18045 + }, + { + "id": "U6699", + "name": "Úmyslovice,Ostrov,odb.", + "avgLatitude": 50.1958, + "avgLongitude": 15.1758862 + }, + { + "id": "U1192", + "name": "Únětice", + "avgLatitude": 50.1518173, + "avgLongitude": 14.3549337 + }, + { + "id": "U1138", + "name": "Únětice,Na Parcelách", + "avgLatitude": 50.14865, + "avgLongitude": 14.3554335 + }, + { + "id": "U1139", + "name": "Únětice,Obecní úřad", + "avgLatitude": 50.1503525, + "avgLongitude": 14.354825 + }, + { + "id": "U2836", + "name": "Unhošť", + "avgLatitude": 50.105278, + "avgLongitude": 14.1361828 + }, + { + "id": "U4899", + "name": "Unhošť,Amerika", + "avgLatitude": 50.0798759, + "avgLongitude": 14.0999184 + }, + { + "id": "U4904", + "name": "Unhošť,Dědkův mlýn", + "avgLatitude": 50.05198, + "avgLongitude": 14.0969486 + }, + { + "id": "U4894", + "name": "Unhošť,Karlovarská", + "avgLatitude": 50.0868, + "avgLongitude": 14.1245975 + }, + { + "id": "U4926", + "name": "Unhošť,Lidická", + "avgLatitude": 50.09086, + "avgLongitude": 14.1350117 + }, + { + "id": "U1686", + "name": "Unhošť,Nám.", + "avgLatitude": 50.0855179, + "avgLongitude": 14.13399 + }, + { + "id": "U4900", + "name": "Unhošť,Nouzov Čeperka", + "avgLatitude": 50.0740662, + "avgLongitude": 14.0939846 + }, + { + "id": "U4901", + "name": "Unhošť,Nouzov U Spalů", + "avgLatitude": 50.0685272, + "avgLongitude": 14.09622 + }, + { + "id": "U4898", + "name": "Unhošť,pivovar", + "avgLatitude": 50.08185, + "avgLongitude": 14.1139574 + }, + { + "id": "U4903", + "name": "Unhošť,rozc.Malé Kyšice", + "avgLatitude": 50.0590744, + "avgLongitude": 14.0971231 + }, + { + "id": "U4895", + "name": "Unhošť,Škola", + "avgLatitude": 50.0850563, + "avgLongitude": 14.1319857 + }, + { + "id": "U4896", + "name": "Unhošť,U Křížku", + "avgLatitude": 50.085125, + "avgLongitude": 14.122406 + }, + { + "id": "U1160", + "name": "Univerzitní", + "avgLatitude": 50.085228, + "avgLongitude": 14.5024834 + }, + { + "id": "U815", + "name": "Urbanova", + "avgLatitude": 50.06247, + "avgLongitude": 14.3839083 + }, + { + "id": "U816", + "name": "Urxova", + "avgLatitude": 50.0952, + "avgLongitude": 14.4567413 + }, + { + "id": "U819", + "name": "Ústav mateřství", + "avgLatitude": 50.02451, + "avgLongitude": 14.460043 + }, + { + "id": "U378", + "name": "Ústavy Akademie věd", + "avgLatitude": 50.0179749, + "avgLongitude": 14.4668846 + }, + { + "id": "U741", + "name": "Ústřední", + "avgLatitude": 50.0696564, + "avgLongitude": 14.5434484 + }, + { + "id": "U807", + "name": "Ústřední dílny DP", + "avgLatitude": 50.0745125, + "avgLongitude": 14.5324421 + }, + { + "id": "U31882", + "name": "Útěchovice p.Stražištěm", + "avgLatitude": 49.5398331, + "avgLongitude": 15.0297346 + }, + { + "id": "U1610", + "name": "Úvaly", + "avgLatitude": 50.0751152, + "avgLongitude": 14.7225285 + }, + { + "id": "U1609", + "name": "Úvaly,Elektromechanika", + "avgLatitude": 50.0795021, + "avgLongitude": 14.7125244 + }, + { + "id": "U2355", + "name": "Úvaly,Hodov", + "avgLatitude": 50.08575, + "avgLongitude": 14.718359 + }, + { + "id": "U2440", + "name": "Úvaly,Hřbitov", + "avgLatitude": 50.07312, + "avgLongitude": 14.737133 + }, + { + "id": "U2315", + "name": "Úvaly,Husova", + "avgLatitude": 50.0732727, + "avgLongitude": 14.7255316 + }, + { + "id": "U5242", + "name": "Úvaly,MŠ Pražská", + "avgLatitude": 50.0729828, + "avgLongitude": 14.715641 + }, + { + "id": "U2380", + "name": "Úvaly,Náměstí Arnošta z Pardubic", + "avgLatitude": 50.07366, + "avgLongitude": 14.7298641 + }, + { + "id": "U5082", + "name": "Úvaly,OC Pražská", + "avgLatitude": 50.0726547, + "avgLongitude": 14.7081585 + }, + { + "id": "U2356", + "name": "Úvaly,Pivovar", + "avgLatitude": 50.0702553, + "avgLongitude": 14.73266 + }, + { + "id": "U2317", + "name": "Úvaly,Radlická čtvrť", + "avgLatitude": 50.06567, + "avgLongitude": 14.7164364 + }, + { + "id": "U2358", + "name": "Úvaly,Slovany", + "avgLatitude": 50.06763, + "avgLongitude": 14.7347183 + }, + { + "id": "U4126", + "name": "Úvaly,U Mlýna", + "avgLatitude": 50.0763435, + "avgLongitude": 14.7236814 + }, + { + "id": "U2354", + "name": "Úvaly,Zálesí", + "avgLatitude": 50.0933342, + "avgLongitude": 14.7176456 + }, + { + "id": "U31883", + "name": "Uzenice", + "avgLatitude": 49.4733658, + "avgLongitude": 13.9597168 + }, + { + "id": "U31884", + "name": "Uzeničky", + "avgLatitude": 49.488266, + "avgLongitude": 13.9537239 + }, + { + "id": "U9968", + "name": "Úžice", + "avgLatitude": 49.8721581, + "avgLongitude": 14.9735775 + }, + { + "id": "U2337", + "name": "Úžice", + "avgLatitude": 50.25597, + "avgLongitude": 14.3805761 + }, + { + "id": "U2161", + "name": "Úžice,Benátky", + "avgLatitude": 49.9019623, + "avgLongitude": 14.9322414 + }, + { + "id": "U6052", + "name": "Úžice,Čekanov", + "avgLatitude": 49.88174, + "avgLongitude": 14.9502621 + }, + { + "id": "U2163", + "name": "Úžice,Čekanov,Pražská", + "avgLatitude": 49.88942, + "avgLongitude": 14.9561014 + }, + { + "id": "U9969", + "name": "Úžice,Čekanov,rozc.", + "avgLatitude": 49.87426, + "avgLongitude": 14.9440851 + }, + { + "id": "U6051", + "name": "Úžice,Čekanov,Sázavská", + "avgLatitude": 49.88808, + "avgLongitude": 14.9512148 + }, + { + "id": "U2338", + "name": "Úžice,Červená Lhota", + "avgLatitude": 50.26316, + "avgLongitude": 14.3908176 + }, + { + "id": "U6054", + "name": "Úžice,Chrastná", + "avgLatitude": 49.89265, + "avgLongitude": 14.9728737 + }, + { + "id": "U2164", + "name": "Úžice,Chrastná,rozc.", + "avgLatitude": 49.8869553, + "avgLongitude": 14.9659061 + }, + { + "id": "U2265", + "name": "Úžice,Kopeč", + "avgLatitude": 50.2511559, + "avgLongitude": 14.4221907 + }, + { + "id": "U7564", + "name": "Úžice,logistické centrum", + "avgLatitude": 50.2489548, + "avgLongitude": 14.369421 + }, + { + "id": "U6050", + "name": "Úžice,Mělník", + "avgLatitude": 49.89419, + "avgLongitude": 14.9125366 + }, + { + "id": "U2160", + "name": "Úžice,Mělník,rozc.", + "avgLatitude": 49.904686, + "avgLongitude": 14.9259624 + }, + { + "id": "U9005", + "name": "Úžice,Nechyba", + "avgLatitude": 49.8881378, + "avgLongitude": 14.920969 + }, + { + "id": "U1975", + "name": "Úžice,Netřeba", + "avgLatitude": 50.262, + "avgLongitude": 14.4244633 + }, + { + "id": "U4080", + "name": "Úžice,Radvanice", + "avgLatitude": 49.88843, + "avgLongitude": 14.9313231 + }, + { + "id": "U9970", + "name": "Úžice,Radvanice,Nechybská", + "avgLatitude": 49.88362, + "avgLongitude": 14.9144182 + }, + { + "id": "U9971", + "name": "Úžice,Radvanice,rozc.", + "avgLatitude": 49.8766861, + "avgLongitude": 14.9230509 + }, + { + "id": "U6053", + "name": "Úžice,Smrk", + "avgLatitude": 49.8872757, + "avgLongitude": 14.9834862 + }, + { + "id": "U2162", + "name": "Úžice,Smrk,rozc.", + "avgLatitude": 49.8813248, + "avgLongitude": 14.9826145 + }, + { + "id": "U682", + "name": "V Bokách", + "avgLatitude": 50.0379829, + "avgLongitude": 14.3902664 + }, + { + "id": "U824", + "name": "V Chotejně", + "avgLatitude": 50.0581131, + "avgLongitude": 14.5334282 + }, + { + "id": "U825", + "name": "V Korytech", + "avgLatitude": 50.0544472, + "avgLongitude": 14.4887524 + }, + { + "id": "U696", + "name": "V Kratinách", + "avgLatitude": 50.145668, + "avgLongitude": 14.4425173 + }, + { + "id": "U731", + "name": "V Ladech", + "avgLatitude": 50.0132561, + "avgLongitude": 14.5137386 + }, + { + "id": "U1096", + "name": "V Lískách", + "avgLatitude": 50.019783, + "avgLongitude": 14.4638 + }, + { + "id": "U984", + "name": "V Mokřinách", + "avgLatitude": 50.0201836, + "avgLongitude": 14.4077988 + }, + { + "id": "U1033", + "name": "V Nových domcích", + "avgLatitude": 50.0565071, + "avgLongitude": 14.5339165 + }, + { + "id": "U506", + "name": "V Podbabě", + "avgLatitude": 50.12176, + "avgLongitude": 14.3941584 + }, + { + "id": "U3032", + "name": "V Přístavu", + "avgLatitude": 50.1084862, + "avgLongitude": 14.4537458 + }, + { + "id": "U1127", + "name": "V Remízku", + "avgLatitude": 50.0261459, + "avgLongitude": 14.36858 + }, + { + "id": "U829", + "name": "V Rybníčkách", + "avgLatitude": 50.0705948, + "avgLongitude": 14.5072489 + }, + { + "id": "U397", + "name": "V Sedlci", + "avgLatitude": 50.1282043, + "avgLongitude": 14.3947811 + }, + { + "id": "U830", + "name": "V Sudech", + "avgLatitude": 49.99224, + "avgLongitude": 14.3459949 + }, + { + "id": "U831", + "name": "V Uličce", + "avgLatitude": 50.0414429, + "avgLongitude": 14.3957787 + }, + { + "id": "U832", + "name": "V Zápolí", + "avgLatitude": 50.0466843, + "avgLongitude": 14.468173 + }, + { + "id": "U833", + "name": "V Zátiší", + "avgLatitude": 50.02259, + "avgLongitude": 14.4327 + }, + { + "id": "U834", + "name": "Vackov", + "avgLatitude": 50.0869, + "avgLongitude": 14.4862509 + }, + { + "id": "U710", + "name": "Vackova", + "avgLatitude": 50.0448, + "avgLongitude": 14.3152924 + }, + { + "id": "U7612", + "name": "Václava Špačka", + "avgLatitude": 50.0980873, + "avgLongitude": 14.6256046 + }, + { + "id": "U4469", + "name": "Václavice,rest.", + "avgLatitude": 49.78752, + "avgLongitude": 14.6207542 + }, + { + "id": "U4470", + "name": "Václavice,statek", + "avgLatitude": 49.7893372, + "avgLongitude": 14.6131516 + }, + { + "id": "U4445", + "name": "Václavice,Vatěkov", + "avgLatitude": 49.7795563, + "avgLongitude": 14.6347008 + }, + { + "id": "U4446", + "name": "Václavice,Vatěkov,pod Chlumem", + "avgLatitude": 49.77848, + "avgLongitude": 14.6211376 + }, + { + "id": "U4444", + "name": "Václavice,Vatěkov,rozc.", + "avgLatitude": 49.78062, + "avgLongitude": 14.6434059 + }, + { + "id": "U5051", + "name": "Václavice,Zbožnice", + "avgLatitude": 49.7944946, + "avgLongitude": 14.6400518 + }, + { + "id": "U835", + "name": "Václavka", + "avgLatitude": 50.06521, + "avgLongitude": 14.39332 + }, + { + "id": "U6886", + "name": "Václavy", + "avgLatitude": 50.0639343, + "avgLongitude": 13.5947819 + }, + { + "id": "U1197", + "name": "Vajgarská", + "avgLatitude": 50.1019669, + "avgLongitude": 14.55456 + }, + { + "id": "U3249", + "name": "Valdštejnské náměstí", + "avgLatitude": 50.0902939, + "avgLongitude": 14.4051132 + }, + { + "id": "U2600", + "name": "Valcha", + "avgLatitude": 50.1315536, + "avgLongitude": 14.5381937 + }, + { + "id": "U1148", + "name": "Valtická", + "avgLatitude": 50.0661278, + "avgLongitude": 14.2662411 + }, + { + "id": "U31388", + "name": "Varnsdorf,aut.nádr.", + "avgLatitude": 50.9120865, + "avgLongitude": 14.61849 + }, + { + "id": "U31385", + "name": "Varnsdorf,jatky", + "avgLatitude": 50.8918343, + "avgLongitude": 14.6230049 + }, + { + "id": "U31386", + "name": "Varnsdorf,Severní dráha", + "avgLatitude": 50.90445, + "avgLongitude": 14.63146 + }, + { + "id": "U31387", + "name": "Varnsdorf,sportovní hala", + "avgLatitude": 50.9072952, + "avgLongitude": 14.6234684 + }, + { + "id": "U31389", + "name": "Varnsdorf,Studánka", + "avgLatitude": 50.90968, + "avgLongitude": 14.5693684 + }, + { + "id": "U9973", + "name": "Vavřinec", + "avgLatitude": 49.91291, + "avgLongitude": 15.0341282 + }, + { + "id": "U31053", + "name": "Vavřinec,Žíšov", + "avgLatitude": 49.9034729, + "avgLongitude": 15.06469 + }, + { + "id": "U3213", + "name": "Ve Smečkách", + "avgLatitude": 50.0773277, + "avgLongitude": 14.4260616 + }, + { + "id": "U839", + "name": "Ve Studeném", + "avgLatitude": 50.0315933, + "avgLongitude": 14.42279 + }, + { + "id": "U1058", + "name": "Ve Vilkách", + "avgLatitude": 50.0154648, + "avgLongitude": 14.5399284 + }, + { + "id": "U840", + "name": "Ve Výrech", + "avgLatitude": 50.0350952, + "avgLongitude": 14.3060141 + }, + { + "id": "U1041", + "name": "Ve Žlíbku", + "avgLatitude": 50.11065, + "avgLongitude": 14.6245012 + }, + { + "id": "U4160", + "name": "Veleliby", + "avgLatitude": 50.21458, + "avgLongitude": 15.02353 + }, + { + "id": "U1237", + "name": "Veleň", + "avgLatitude": 50.1728439, + "avgLongitude": 14.5528183 + }, + { + "id": "U1243", + "name": "Veleň,Mírovice", + "avgLatitude": 50.1683846, + "avgLongitude": 14.543293 + }, + { + "id": "U2329", + "name": "Veleň,U Pomníku", + "avgLatitude": 50.1740761, + "avgLongitude": 14.5560513 + }, + { + "id": "U6744", + "name": "Velenice", + "avgLatitude": 50.2148743, + "avgLongitude": 15.22625 + }, + { + "id": "U1431", + "name": "Velenka", + "avgLatitude": 50.139286, + "avgLongitude": 14.8965454 + }, + { + "id": "U5078", + "name": "Veletice", + "avgLatitude": 50.2969322, + "avgLongitude": 13.57251 + }, + { + "id": "U6421", + "name": "Veletov", + "avgLatitude": 50.032753, + "avgLongitude": 15.30673 + }, + { + "id": "U841", + "name": "Veletržní palác", + "avgLatitude": 50.1019745, + "avgLongitude": 14.4329453 + }, + { + "id": "U2266", + "name": "Veliká Ves", + "avgLatitude": 50.2418633, + "avgLongitude": 14.4549656 + }, + { + "id": "U2819", + "name": "Velim", + "avgLatitude": 50.0677, + "avgLongitude": 15.124402 + }, + { + "id": "U9605", + "name": "Velim,Karlova", + "avgLatitude": 50.06359, + "avgLongitude": 15.1217976 + }, + { + "id": "U9607", + "name": "Velim,Novoveská", + "avgLatitude": 50.06584, + "avgLongitude": 15.1253929 + }, + { + "id": "U9603", + "name": "Velim,Obecní úřad", + "avgLatitude": 50.05982, + "avgLongitude": 15.1063843 + }, + { + "id": "U9604", + "name": "Velim,Škola", + "avgLatitude": 50.0595741, + "avgLongitude": 15.1144638 + }, + { + "id": "U9606", + "name": "Velim,Vítězov", + "avgLatitude": 50.04846, + "avgLongitude": 15.1202793 + }, + { + "id": "U6591", + "name": "Veliš", + "avgLatitude": 49.66877, + "avgLongitude": 14.8234615 + }, + { + "id": "U5764", + "name": "Veliš,bytovky", + "avgLatitude": 49.6709747, + "avgLongitude": 14.82271 + }, + { + "id": "U5765", + "name": "Veliš,Nespery", + "avgLatitude": 49.68087, + "avgLongitude": 14.8035793 + }, + { + "id": "U6592", + "name": "Veliš,Sedlečko,rozc.", + "avgLatitude": 49.6633034, + "avgLongitude": 14.8176079 + }, + { + "id": "U2935", + "name": "Velká Bučina", + "avgLatitude": 50.2672157, + "avgLongitude": 14.2400446 + }, + { + "id": "U4016", + "name": "Velká Buková", + "avgLatitude": 50.0345879, + "avgLongitude": 13.8430395 + }, + { + "id": "U4018", + "name": "Velká Buková,Kalubice,rozc.", + "avgLatitude": 50.0441742, + "avgLongitude": 13.8384428 + }, + { + "id": "U4017", + "name": "Velká Buková,Malá Buková,odb.", + "avgLatitude": 50.03813, + "avgLongitude": 13.8118734 + }, + { + "id": "U9927", + "name": "Velká Dobrá", + "avgLatitude": 50.1104469, + "avgLongitude": 14.0766888 + }, + { + "id": "U9926", + "name": "Velká Dobrá,škola", + "avgLatitude": 50.10951, + "avgLongitude": 14.0683842 + }, + { + "id": "U6875", + "name": "Velká Chmelištná", + "avgLatitude": 50.0635872, + "avgLongitude": 13.5509529 + }, + { + "id": "U479", + "name": "Velká Chuchle", + "avgLatitude": 50.01215, + "avgLongitude": 14.3807335 + }, + { + "id": "U31887", + "name": "Velká Chyška", + "avgLatitude": 49.511673, + "avgLongitude": 15.0371265 + }, + { + "id": "U31888", + "name": "Velká Chyška,samota", + "avgLatitude": 49.5244522, + "avgLongitude": 15.0276766 + }, + { + "id": "U1844", + "name": "Velká Lečice", + "avgLatitude": 49.81631, + "avgLongitude": 14.32437 + }, + { + "id": "U1114", + "name": "Velká Ohrada", + "avgLatitude": 50.0354729, + "avgLongitude": 14.335968 + }, + { + "id": "U31296", + "name": "Velké Hamry,nám.", + "avgLatitude": 50.71769, + "avgLongitude": 15.3148842 + }, + { + "id": "U1599", + "name": "Velké Popovice", + "avgLatitude": 49.9214745, + "avgLongitude": 14.6442852 + }, + { + "id": "U1687", + "name": "Velké Popovice,Brtnice", + "avgLatitude": 49.9132919, + "avgLongitude": 14.6356058 + }, + { + "id": "U1689", + "name": "Velké Popovice,Lojovice", + "avgLatitude": 49.89747, + "avgLongitude": 14.6493073 + }, + { + "id": "U1598", + "name": "Velké Popovice,pivovar", + "avgLatitude": 49.92178, + "avgLongitude": 14.6343307 + }, + { + "id": "U1700", + "name": "Velké Popovice,pošta", + "avgLatitude": 49.92219, + "avgLongitude": 14.6397772 + }, + { + "id": "U1688", + "name": "Velké Popovice,rozc.Krámský", + "avgLatitude": 49.909668, + "avgLongitude": 14.64357 + }, + { + "id": "U4156", + "name": "Velké Popovice,Řepčice", + "avgLatitude": 49.9027824, + "avgLongitude": 14.6218977 + }, + { + "id": "U1600", + "name": "Velké Popovice,Todice", + "avgLatitude": 49.92202, + "avgLongitude": 14.6489811 + }, + { + "id": "U1690", + "name": "Velké Přílepy", + "avgLatitude": 50.16017, + "avgLongitude": 14.3107643 + }, + { + "id": "U7691", + "name": "Velké Přílepy,Kladenská", + "avgLatitude": 50.1593933, + "avgLongitude": 14.3051491 + }, + { + "id": "U5355", + "name": "Velké Přílepy,Podmoráňská", + "avgLatitude": 50.16117, + "avgLongitude": 14.3171978 + }, + { + "id": "U2152", + "name": "Velké Přílepy,Pražská", + "avgLatitude": 50.15635, + "avgLongitude": 14.3163309 + }, + { + "id": "U4102", + "name": "Velké Přílepy,Roztocká", + "avgLatitude": 50.1574249, + "avgLongitude": 14.3207741 + }, + { + "id": "U1926", + "name": "Velké Přítočno", + "avgLatitude": 50.1173477, + "avgLongitude": 14.129096 + }, + { + "id": "U4388", + "name": "Velké Přítočno,ObÚ", + "avgLatitude": 50.1181641, + "avgLongitude": 14.1303177 + }, + { + "id": "U6130", + "name": "Velké Všelisy", + "avgLatitude": 50.3790131, + "avgLongitude": 14.7439051 + }, + { + "id": "U4039", + "name": "Velké Všelisy,Klučky", + "avgLatitude": 50.38067, + "avgLongitude": 14.7694225 + }, + { + "id": "U4040", + "name": "Velké Všelisy,Malé Všelisy", + "avgLatitude": 50.3838425, + "avgLongitude": 14.7478647 + }, + { + "id": "U6129", + "name": "Velké Všelisy,Zamachy", + "avgLatitude": 50.3849678, + "avgLongitude": 14.7177973 + }, + { + "id": "U3325", + "name": "Velký Borek", + "avgLatitude": 50.34501, + "avgLongitude": 14.51567 + }, + { + "id": "U9170", + "name": "Velký Borek,Mělnická Vrutice", + "avgLatitude": 50.3460846, + "avgLongitude": 14.5508356 + }, + { + "id": "U3326", + "name": "Velký Borek,Skuhrov", + "avgLatitude": 50.3397675, + "avgLongitude": 14.51202 + }, + { + "id": "U6502", + "name": "Velký Chlumec,I", + "avgLatitude": 49.83143, + "avgLongitude": 14.0861559 + }, + { + "id": "U6503", + "name": "Velký Chlumec,II", + "avgLatitude": 49.8279037, + "avgLongitude": 14.0868406 + }, + { + "id": "U6504", + "name": "Velký Chlumec,Malý Chlumec", + "avgLatitude": 49.8201752, + "avgLongitude": 14.0859356 + }, + { + "id": "U2878", + "name": "Velký Osek", + "avgLatitude": 50.101944, + "avgLongitude": 15.19344 + }, + { + "id": "U6648", + "name": "Velký Osek,Šanghaj", + "avgLatitude": 50.0972061, + "avgLongitude": 15.1968307 + }, + { + "id": "U6649", + "name": "Velký Osek,škola", + "avgLatitude": 50.0999222, + "avgLongitude": 15.18813 + }, + { + "id": "U2879", + "name": "Veltruby", + "avgLatitude": 50.07363, + "avgLongitude": 15.2000694 + }, + { + "id": "U6632", + "name": "Veltruby,Hradištko I", + "avgLatitude": 50.0584335, + "avgLongitude": 15.1875353 + }, + { + "id": "U6650", + "name": "Veltruby,Na Návsi", + "avgLatitude": 50.07186, + "avgLongitude": 15.19094 + }, + { + "id": "U6651", + "name": "Veltruby,Školní", + "avgLatitude": 50.06724, + "avgLongitude": 15.1814194 + }, + { + "id": "U2346", + "name": "Veltrusy", + "avgLatitude": 50.2719536, + "avgLongitude": 14.3243551 + }, + { + "id": "U2228", + "name": "Veltrusy,Hřiště", + "avgLatitude": 50.2669525, + "avgLongitude": 14.3339729 + }, + { + "id": "U2936", + "name": "Velvary", + "avgLatitude": 50.282238, + "avgLongitude": 14.2433071 + }, + { + "id": "U4829", + "name": "Velvary,Ješín", + "avgLatitude": 50.2638, + "avgLongitude": 14.1905661 + }, + { + "id": "U9148", + "name": "Velvary,Na Šibenici", + "avgLatitude": 50.2890778, + "avgLongitude": 14.2328911 + }, + { + "id": "U4830", + "name": "Velvary,nám.", + "avgLatitude": 50.2819252, + "avgLongitude": 14.235074 + }, + { + "id": "U9149", + "name": "Velvary,Nové Uhy", + "avgLatitude": 50.28423, + "avgLongitude": 14.2562389 + }, + { + "id": "U9151", + "name": "Velvary,škola", + "avgLatitude": 50.28065, + "avgLongitude": 14.2382736 + }, + { + "id": "U9152", + "name": "Velvary,závod", + "avgLatitude": 50.2851219, + "avgLongitude": 14.23754 + }, + { + "id": "U828", + "name": "Venušina", + "avgLatitude": 50.02629, + "avgLongitude": 14.6086273 + }, + { + "id": "U978", + "name": "Veronské náměstí", + "avgLatitude": 50.0401878, + "avgLongitude": 14.5580664 + }, + { + "id": "U32269", + "name": "Verušičky", + "avgLatitude": 50.1417236, + "avgLongitude": 13.1733723 + }, + { + "id": "U32260", + "name": "Verušičky,Budov,rozc.", + "avgLatitude": 50.1358871, + "avgLongitude": 13.15193 + }, + { + "id": "U32160", + "name": "Verušičky,Hvězda", + "avgLatitude": 50.13479, + "avgLongitude": 13.1199188 + }, + { + "id": "U31445", + "name": "Veselí n.Luž.,aut.st.", + "avgLatitude": 49.1932831, + "avgLongitude": 14.7160015 + }, + { + "id": "U31446", + "name": "Veselí n.Luž.,kult.dům", + "avgLatitude": 49.18656, + "avgLongitude": 14.7011585 + }, + { + "id": "U6275", + "name": "Veselice", + "avgLatitude": 50.39837, + "avgLongitude": 15.1201439 + }, + { + "id": "U6274", + "name": "Veselice,dvůr", + "avgLatitude": 50.39657, + "avgLongitude": 15.1274033 + }, + { + "id": "U9580", + "name": "Vestec", + "avgLatitude": 50.23867, + "avgLongitude": 15.1436329 + }, + { + "id": "U4178", + "name": "Vestec,BIOCEV", + "avgLatitude": 49.9834442, + "avgLongitude": 14.487957 + }, + { + "id": "U9578", + "name": "Vestec,Havransko", + "avgLatitude": 50.21744, + "avgLongitude": 15.1296005 + }, + { + "id": "U9579", + "name": "Vestec,Malý Vestec", + "avgLatitude": 50.22488, + "avgLongitude": 15.1369429 + }, + { + "id": "U1208", + "name": "Vestec,Obecní úřad", + "avgLatitude": 49.97992, + "avgLongitude": 14.5006456 + }, + { + "id": "U4176", + "name": "Vestec,Obchodní centrum", + "avgLatitude": 49.983757, + "avgLongitude": 14.4953537 + }, + { + "id": "U1522", + "name": "Vestec,Safina", + "avgLatitude": 49.9856529, + "avgLongitude": 14.4940186 + }, + { + "id": "U1331", + "name": "Vestec,Šátalka", + "avgLatitude": 49.97828, + "avgLongitude": 14.499258 + }, + { + "id": "U1207", + "name": "Vestec,U Klimešů", + "avgLatitude": 49.98084, + "avgLongitude": 14.5075731 + }, + { + "id": "U1206", + "name": "Vestec,U vodárny", + "avgLatitude": 49.9862747, + "avgLongitude": 14.5157413 + }, + { + "id": "U5768", + "name": "Věšín", + "avgLatitude": 49.615242, + "avgLongitude": 13.82485 + }, + { + "id": "U1965", + "name": "Věšín,Buková", + "avgLatitude": 49.62733, + "avgLongitude": 13.8230391 + }, + { + "id": "U5958", + "name": "Věšín,na drahách", + "avgLatitude": 49.61631, + "avgLongitude": 13.817091 + }, + { + "id": "U5959", + "name": "Věšín,ozdravovna Brdy", + "avgLatitude": 49.61902, + "avgLongitude": 13.7911186 + }, + { + "id": "U5960", + "name": "Věšín,Teslíny", + "avgLatitude": 49.6226044, + "avgLongitude": 13.756216 + }, + { + "id": "U1777", + "name": "Věšín,záv.", + "avgLatitude": 49.6149368, + "avgLongitude": 13.8310528 + }, + { + "id": "U844", + "name": "Větrník", + "avgLatitude": 50.0895271, + "avgLongitude": 14.3501692 + }, + { + "id": "U959", + "name": "Větrov", + "avgLatitude": 50.07345, + "avgLongitude": 14.4243965 + }, + { + "id": "U2251", + "name": "Větrušice", + "avgLatitude": 50.1915169, + "avgLongitude": 14.3843174 + }, + { + "id": "U9958", + "name": "Vidice", + "avgLatitude": 49.91661, + "avgLongitude": 15.1655006 + }, + { + "id": "U9959", + "name": "Vidice,Karlov", + "avgLatitude": 49.9292374, + "avgLongitude": 15.1730824 + }, + { + "id": "U7169", + "name": "Vidice,Roztěž", + "avgLatitude": 49.9089737, + "avgLongitude": 15.19445 + }, + { + "id": "U7170", + "name": "Vidice,Roztěž,Golf", + "avgLatitude": 49.9106941, + "avgLongitude": 15.1957741 + }, + { + "id": "U9960", + "name": "Vidice,Tuchotice,rozc.", + "avgLatitude": 49.9247131, + "avgLongitude": 15.1760406 + }, + { + "id": "U6082", + "name": "Vidim", + "avgLatitude": 50.46703, + "avgLongitude": 14.5262709 + }, + { + "id": "U6081", + "name": "Vidim,Dolní", + "avgLatitude": 50.47129, + "avgLongitude": 14.52175 + }, + { + "id": "U846", + "name": "Vidoule", + "avgLatitude": 50.0552368, + "avgLongitude": 14.36475 + }, + { + "id": "U172", + "name": "Viktoria Žižkov", + "avgLatitude": 50.0849228, + "avgLongitude": 14.4441833 + }, + { + "id": "U9494", + "name": "Vilémovice", + "avgLatitude": 49.6847458, + "avgLongitude": 15.3091784 + }, + { + "id": "U32136", + "name": "Vilice", + "avgLatitude": 49.5642281, + "avgLongitude": 14.8638325 + }, + { + "id": "U32137", + "name": "Vilice,Hrnčíře", + "avgLatitude": 49.5825, + "avgLongitude": 14.8574991 + }, + { + "id": "U32138", + "name": "Vilice,Zátiší", + "avgLatitude": 49.5755157, + "avgLongitude": 14.8635454 + }, + { + "id": "U7242", + "name": "Vinaře", + "avgLatitude": 49.9081879, + "avgLongitude": 15.5009995 + }, + { + "id": "U7241", + "name": "Vinaře,Vinice", + "avgLatitude": 49.91954, + "avgLongitude": 15.4903669 + }, + { + "id": "U9051", + "name": "Vinařice", + "avgLatitude": 49.89289, + "avgLongitude": 14.0982094 + }, + { + "id": "U2803", + "name": "Vinařice", + "avgLatitude": 50.17542, + "avgLongitude": 14.092989 + }, + { + "id": "U4012", + "name": "Vinařice", + "avgLatitude": 50.26522, + "avgLongitude": 13.8225527 + }, + { + "id": "U2876", + "name": "Vinařice,7.ulice", + "avgLatitude": 50.17144, + "avgLongitude": 14.0892067 + }, + { + "id": "U6470", + "name": "Vinařice,Černovna", + "avgLatitude": 50.37713, + "avgLongitude": 14.9482384 + }, + { + "id": "U32067", + "name": "Vinařice,Divice", + "avgLatitude": 50.2769, + "avgLongitude": 13.8197613 + }, + { + "id": "U4153", + "name": "Vinařice,Důl Mayrau", + "avgLatitude": 50.16516, + "avgLongitude": 14.085042 + }, + { + "id": "U1481", + "name": "Vinařice,Na Horce", + "avgLatitude": 50.17652, + "avgLongitude": 14.0971508 + }, + { + "id": "U4840", + "name": "Vinařice,rozc.Třebichovice", + "avgLatitude": 50.1821, + "avgLongitude": 14.0755215 + }, + { + "id": "U32066", + "name": "Vinařice,Sokolovna", + "avgLatitude": 50.26759, + "avgLongitude": 13.823 + }, + { + "id": "U4796", + "name": "Vinařice,škola", + "avgLatitude": 50.1773758, + "avgLongitude": 14.0903988 + }, + { + "id": "U4604", + "name": "Vinařice,Tuháň", + "avgLatitude": 50.1631851, + "avgLongitude": 14.0878744 + }, + { + "id": "U6055", + "name": "Vinařice,u kapličky", + "avgLatitude": 50.3745728, + "avgLongitude": 14.9547043 + }, + { + "id": "U4034", + "name": "Vinařice,u kovárny", + "avgLatitude": 50.37354, + "avgLongitude": 14.9525623 + }, + { + "id": "U2832", + "name": "Vinařice,u střelnice", + "avgLatitude": 50.16584, + "avgLongitude": 14.0775423 + }, + { + "id": "U4033", + "name": "Vinařice,Vrbičky", + "avgLatitude": 50.3683777, + "avgLongitude": 14.9504242 + }, + { + "id": "U4797", + "name": "Vinařice,Zahr.kolonie", + "avgLatitude": 50.1829338, + "avgLongitude": 14.0768909 + }, + { + "id": "U6256", + "name": "Vinec,dolní část", + "avgLatitude": 50.3967133, + "avgLongitude": 14.8751059 + }, + { + "id": "U4049", + "name": "Vinec,Obecní úřad", + "avgLatitude": 50.3948, + "avgLongitude": 14.87113 + }, + { + "id": "U6394", + "name": "Vinec,u hřbitova", + "avgLatitude": 50.4007034, + "avgLongitude": 14.86144 + }, + { + "id": "U1108", + "name": "Vinice", + "avgLatitude": 50.0769348, + "avgLongitude": 14.4884729 + }, + { + "id": "U1165", + "name": "Vinice Dolní Počernice", + "avgLatitude": 50.0858421, + "avgLongitude": 14.6011677 + }, + { + "id": "U4262", + "name": "Vinice Hrdlořezy", + "avgLatitude": 50.1001663, + "avgLongitude": 14.5178547 + }, + { + "id": "U3221", + "name": "Viničky", + "avgLatitude": 49.9792557, + "avgLongitude": 14.3478508 + }, + { + "id": "U850", + "name": "Vinohradská tržnice", + "avgLatitude": 50.0770569, + "avgLongitude": 14.4420471 + }, + { + "id": "U851", + "name": "Vinohradská vodárna", + "avgLatitude": 50.0753975, + "avgLongitude": 14.4497252 + }, + { + "id": "U849", + "name": "Vinohradské hřbitovy", + "avgLatitude": 50.07773, + "avgLongitude": 14.4799538 + }, + { + "id": "U881", + "name": "Vinopalnická", + "avgLatitude": 50.11995, + "avgLongitude": 14.4703836 + }, + { + "id": "U852", + "name": "Vinoř", + "avgLatitude": 50.1517563, + "avgLongitude": 14.5910406 + }, + { + "id": "U4269", + "name": "Vinořská", + "avgLatitude": 50.1399879, + "avgLongitude": 14.5758982 + }, + { + "id": "U179", + "name": "Vinořský hřbitov", + "avgLatitude": 50.14472, + "avgLongitude": 14.5797281 + }, + { + "id": "U9549", + "name": "Vinořský zámek", + "avgLatitude": 50.1419525, + "avgLongitude": 14.57807 + }, + { + "id": "U935", + "name": "Višňová", + "avgLatitude": 50.0312271, + "avgLongitude": 14.4477673 + }, + { + "id": "U5773", + "name": "Višňová", + "avgLatitude": 49.7048874, + "avgLongitude": 14.1452494 + }, + { + "id": "U5774", + "name": "Višňová,Buda", + "avgLatitude": 49.6928177, + "avgLongitude": 14.1474686 + }, + { + "id": "U5775", + "name": "Višňová,Hlinovka", + "avgLatitude": 49.7022934, + "avgLongitude": 14.1430168 + }, + { + "id": "U5776", + "name": "Višňová,rozc.", + "avgLatitude": 49.7003059, + "avgLongitude": 14.142766 + }, + { + "id": "U2308", + "name": "Vitice", + "avgLatitude": 50.0292854, + "avgLongitude": 14.9111567 + }, + { + "id": "U2305", + "name": "Vitice,Dobré Pole", + "avgLatitude": 50.00035, + "avgLongitude": 14.9254494 + }, + { + "id": "U2310", + "name": "Vitice,Hřiby", + "avgLatitude": 50.0338821, + "avgLongitude": 14.9181843 + }, + { + "id": "U2313", + "name": "Vitice,Chotýš", + "avgLatitude": 50.01895, + "avgLongitude": 14.9036465 + }, + { + "id": "U2418", + "name": "Vitice,Lipany,Mohyla", + "avgLatitude": 50.0333328, + "avgLongitude": 14.9399815 + }, + { + "id": "U2306", + "name": "Vitice,Močedník", + "avgLatitude": 50.0186768, + "avgLongitude": 14.9103909 + }, + { + "id": "U2309", + "name": "Vitice,U Školy", + "avgLatitude": 50.0310364, + "avgLongitude": 14.9158268 + }, + { + "id": "U31289", + "name": "Vítkovice,Dolní Mísečky", + "avgLatitude": 50.72984, + "avgLongitude": 15.5461864 + }, + { + "id": "U31290", + "name": "Vítkovice,Horní Mísečky", + "avgLatitude": 50.7352829, + "avgLongitude": 15.5696182 + }, + { + "id": "U31286", + "name": "Vítkovice,hotel Praha", + "avgLatitude": 50.69316, + "avgLongitude": 15.5304127 + }, + { + "id": "U31288", + "name": "Vítkovice,hotel Skála", + "avgLatitude": 50.7101059, + "avgLongitude": 15.5343342 + }, + { + "id": "U31287", + "name": "Vítkovice,myslivna", + "avgLatitude": 50.70453, + "avgLongitude": 15.53034 + }, + { + "id": "U31284", + "name": "Vítkovice,ObÚ", + "avgLatitude": 50.6756363, + "avgLongitude": 15.5348988 + }, + { + "id": "U31283", + "name": "Vítkovice,SEBA", + "avgLatitude": 50.67404, + "avgLongitude": 15.5346727 + }, + { + "id": "U31285", + "name": "Vítkovice,škola", + "avgLatitude": 50.6796951, + "avgLongitude": 15.5317364 + }, + { + "id": "U2937", + "name": "Vižina", + "avgLatitude": 49.8546524, + "avgLongitude": 14.0999537 + }, + { + "id": "U7196", + "name": "Vlačice,rozc.", + "avgLatitude": 49.940094, + "avgLongitude": 15.4374352 + }, + { + "id": "U9488", + "name": "Vlastějovice", + "avgLatitude": 49.730938, + "avgLongitude": 15.1746063 + }, + { + "id": "U7252", + "name": "Vlastějovice,Kounice", + "avgLatitude": 49.7177124, + "avgLongitude": 15.1706142 + }, + { + "id": "U7253", + "name": "Vlastějovice,Milošovice", + "avgLatitude": 49.7148132, + "avgLongitude": 15.1609945 + }, + { + "id": "U7261", + "name": "Vlastějovice,Pavlovice", + "avgLatitude": 49.7422562, + "avgLongitude": 15.2111254 + }, + { + "id": "U7251", + "name": "Vlastějovice,Skala", + "avgLatitude": 49.7226753, + "avgLongitude": 15.1798763 + }, + { + "id": "U7262", + "name": "Vlastějovice,Volavá Lhota", + "avgLatitude": 49.7359962, + "avgLongitude": 15.2072458 + }, + { + "id": "U1378", + "name": "Vlastibořská", + "avgLatitude": 50.1203, + "avgLongitude": 14.5988159 + }, + { + "id": "U1046", + "name": "Vlastina", + "avgLatitude": 50.0912628, + "avgLongitude": 14.3169394 + }, + { + "id": "U9391", + "name": "Vlašim", + "avgLatitude": 49.70044, + "avgLongitude": 14.8974123 + }, + { + "id": "U6757", + "name": "Vlašim,Blanická", + "avgLatitude": 49.6964264, + "avgLongitude": 14.8943624 + }, + { + "id": "U9393", + "name": "Vlašim,Bolina,Rozc.", + "avgLatitude": 49.6804428, + "avgLongitude": 14.9478111 + }, + { + "id": "U5793", + "name": "Vlašim,Bolinka", + "avgLatitude": 49.68679, + "avgLongitude": 14.9372282 + }, + { + "id": "U5794", + "name": "Vlašim,Bolinka-hájovna", + "avgLatitude": 49.68769, + "avgLongitude": 14.929781 + }, + { + "id": "U5795", + "name": "Vlašim,Březina", + "avgLatitude": 49.72586, + "avgLongitude": 14.8988409 + }, + { + "id": "U5777", + "name": "Vlašim,Budvar", + "avgLatitude": 49.7007523, + "avgLongitude": 14.8996716 + }, + { + "id": "U5778", + "name": "Vlašim,Československé armády", + "avgLatitude": 49.7071838, + "avgLongitude": 14.9041824 + }, + { + "id": "U5796", + "name": "Vlašim,Domašín,brána", + "avgLatitude": 49.7126541, + "avgLongitude": 14.8832426 + }, + { + "id": "U5797", + "name": "Vlašim,Domašín,kolonie", + "avgLatitude": 49.71495, + "avgLongitude": 14.8467827 + }, + { + "id": "U5798", + "name": "Vlašim,Domašín,nám.", + "avgLatitude": 49.7134781, + "avgLongitude": 14.8772659 + }, + { + "id": "U5799", + "name": "Vlašim,Domašín,u transformátoru", + "avgLatitude": 49.712986, + "avgLongitude": 14.8711824 + }, + { + "id": "U5801", + "name": "Vlašim,Hrazená Lhota", + "avgLatitude": 49.70472, + "avgLongitude": 14.8418016 + }, + { + "id": "U6039", + "name": "Vlašim,hřbitov", + "avgLatitude": 49.7136879, + "avgLongitude": 14.9126692 + }, + { + "id": "U6760", + "name": "Vlašim,jesle", + "avgLatitude": 49.7049866, + "avgLongitude": 14.8928843 + }, + { + "id": "U6758", + "name": "Vlašim,Jinošov", + "avgLatitude": 49.6875763, + "avgLongitude": 14.8947353 + }, + { + "id": "U5780", + "name": "Vlašim,kolonie", + "avgLatitude": 49.6965637, + "avgLongitude": 14.9045334 + }, + { + "id": "U5888", + "name": "Vlašim,Městský úřad", + "avgLatitude": 49.7033653, + "avgLongitude": 14.8976 + }, + { + "id": "U5782", + "name": "Vlašim,Navrátilova", + "avgLatitude": 49.69671, + "avgLongitude": 14.8951387 + }, + { + "id": "U5783", + "name": "Vlašim,Navrátilova-školka", + "avgLatitude": 49.6965027, + "avgLongitude": 14.8999939 + }, + { + "id": "U5803", + "name": "Vlašim,Nesperská Lhota", + "avgLatitude": 49.69355, + "avgLongitude": 14.8288879 + }, + { + "id": "U6043", + "name": "Vlašim,obchodní centrum", + "avgLatitude": 49.70051, + "avgLongitude": 14.9047356 + }, + { + "id": "U5784", + "name": "Vlašim,Obora", + "avgLatitude": 49.6915, + "avgLongitude": 14.91317 + }, + { + "id": "U5804", + "name": "Vlašim,Polánka", + "avgLatitude": 49.6983337, + "avgLongitude": 14.8578453 + }, + { + "id": "U5805", + "name": "Vlašim,Polánka,rozc.", + "avgLatitude": 49.69902, + "avgLongitude": 14.8479061 + }, + { + "id": "U5786", + "name": "Vlašim,Politických vězňů", + "avgLatitude": 49.7098732, + "avgLongitude": 14.8937674 + }, + { + "id": "U6042", + "name": "Vlašim,rest.U kozla", + "avgLatitude": 49.70865, + "avgLongitude": 14.9002438 + }, + { + "id": "U5806", + "name": "Vlašim,Skalkov", + "avgLatitude": 49.6870461, + "avgLongitude": 14.9204149 + }, + { + "id": "U5779", + "name": "Vlašim,Sukova", + "avgLatitude": 49.7005463, + "avgLongitude": 14.8932848 + }, + { + "id": "U5792", + "name": "Vlašim,Šebíř", + "avgLatitude": 49.67823, + "avgLongitude": 14.9309311 + }, + { + "id": "U5787", + "name": "Vlašim,U Vorliny", + "avgLatitude": 49.6992035, + "avgLongitude": 14.8913679 + }, + { + "id": "U5788", + "name": "Vlašim,vodárna", + "avgLatitude": 49.7032242, + "avgLongitude": 14.8815765 + }, + { + "id": "U6759", + "name": "Vlašim,záv.", + "avgLatitude": 49.69489, + "avgLongitude": 14.9083433 + }, + { + "id": "U9390", + "name": "Vlašim,Znosim", + "avgLatitude": 49.70095, + "avgLongitude": 14.8690968 + }, + { + "id": "U5785", + "name": "Vlašim,ZŠ Sídliště", + "avgLatitude": 49.71142, + "avgLongitude": 14.8944387 + }, + { + "id": "U5789", + "name": "Vlašim,ZŠ Vorlina", + "avgLatitude": 49.6972961, + "avgLongitude": 14.8912163 + }, + { + "id": "U855", + "name": "Vlašimská", + "avgLatitude": 50.0743942, + "avgLongitude": 14.4650421 + }, + { + "id": "U2051", + "name": "Vlkančice", + "avgLatitude": 49.901947, + "avgLongitude": 14.8981361 + }, + { + "id": "U1994", + "name": "Vlkančice,Komorce", + "avgLatitude": 49.92225, + "avgLongitude": 14.8980808 + }, + { + "id": "U2030", + "name": "Vlkančice,Pyskočely", + "avgLatitude": 49.8815269, + "avgLongitude": 14.8611107 + }, + { + "id": "U2048", + "name": "Vlkančice,Pyskočely,Na Babě", + "avgLatitude": 49.884346, + "avgLongitude": 14.8747511 + }, + { + "id": "U2552", + "name": "Vlkančice,Pyskočely,Plužiny", + "avgLatitude": 49.87929, + "avgLongitude": 14.8724728 + }, + { + "id": "U2050", + "name": "Vlkančice,Stará Hůra", + "avgLatitude": 49.89353, + "avgLongitude": 14.8884678 + }, + { + "id": "U2551", + "name": "Vlkančice,U Králů", + "avgLatitude": 49.8974571, + "avgLongitude": 14.8962173 + }, + { + "id": "U2550", + "name": "Vlkančice,U Zbořeného mlýna", + "avgLatitude": 49.91033, + "avgLongitude": 14.9029732 + }, + { + "id": "U7281", + "name": "Vlkaneč", + "avgLatitude": 49.8089371, + "avgLongitude": 15.4043283 + }, + { + "id": "U9480", + "name": "Vlkaneč", + "avgLatitude": 49.8041878, + "avgLongitude": 15.4051218 + }, + { + "id": "U7282", + "name": "Vlkaneč,Kozohlody", + "avgLatitude": 49.8144379, + "avgLongitude": 15.4096823 + }, + { + "id": "U7284", + "name": "Vlkaneč,Přibyslavice", + "avgLatitude": 49.8421021, + "avgLongitude": 15.4061031 + }, + { + "id": "U7283", + "name": "Vlkaneč,Přibyslavice,Kocanda rozc.", + "avgLatitude": 49.83162, + "avgLongitude": 15.4023972 + }, + { + "id": "U3175", + "name": "Vlkava,Bor", + "avgLatitude": 50.28537, + "avgLongitude": 14.9558086 + }, + { + "id": "U3173", + "name": "Vlkava,kulturní dům", + "avgLatitude": 50.27043, + "avgLongitude": 14.9623766 + }, + { + "id": "U3174", + "name": "Vlkava,náves", + "avgLatitude": 50.2715721, + "avgLongitude": 14.9612484 + }, + { + "id": "U2460", + "name": "Vlkov p.Oškobrhem", + "avgLatitude": 50.15487, + "avgLongitude": 15.222868 + }, + { + "id": "U856", + "name": "Vlnitá", + "avgLatitude": 50.0350876, + "avgLongitude": 14.4211292 + }, + { + "id": "U484", + "name": "Vodičkova", + "avgLatitude": 50.07985, + "avgLongitude": 14.4230843 + }, + { + "id": "U2256", + "name": "Vodochody", + "avgLatitude": 50.20612, + "avgLongitude": 14.398737 + }, + { + "id": "U2254", + "name": "Vodochody,Hoštice", + "avgLatitude": 50.2020721, + "avgLongitude": 14.4063578 + }, + { + "id": "U2255", + "name": "Vodochody,Rozc.Hoštice", + "avgLatitude": 50.2020721, + "avgLongitude": 14.4006968 + }, + { + "id": "U2257", + "name": "Vodochody,U Školy", + "avgLatitude": 50.2075729, + "avgLongitude": 14.3966942 + }, + { + "id": "U7299", + "name": "Vodranty", + "avgLatitude": 49.8906021, + "avgLongitude": 15.3364286 + }, + { + "id": "U5808", + "name": "Vodslivy", + "avgLatitude": 49.8496132, + "avgLongitude": 14.8368988 + }, + { + "id": "U5809", + "name": "Vodslivy,rozc.", + "avgLatitude": 49.8432274, + "avgLongitude": 14.8365622 + }, + { + "id": "U858", + "name": "Vojenská nemocnice", + "avgLatitude": 50.091713, + "avgLongitude": 14.3600636 + }, + { + "id": "U3224", + "name": "Vojetická", + "avgLatitude": 49.9764977, + "avgLongitude": 14.3481436 + }, + { + "id": "U859", + "name": "Vojická", + "avgLatitude": 50.1138763, + "avgLongitude": 14.6039181 + }, + { + "id": "U6518", + "name": "Vojkov", + "avgLatitude": 49.6523, + "avgLongitude": 14.5200138 + }, + { + "id": "U6520", + "name": "Vojkov,Bezmíř", + "avgLatitude": 49.65226, + "avgLongitude": 14.5388479 + }, + { + "id": "U6522", + "name": "Vojkov,Křenovice", + "avgLatitude": 49.63578, + "avgLongitude": 14.5362558 + }, + { + "id": "U6519", + "name": "Vojkov,rozc.", + "avgLatitude": 49.6561165, + "avgLongitude": 14.519001 + }, + { + "id": "U6523", + "name": "Vojkov,Sledovice", + "avgLatitude": 49.6786728, + "avgLongitude": 14.5394516 + }, + { + "id": "U6524", + "name": "Vojkov,Zahrádka", + "avgLatitude": 49.62966, + "avgLongitude": 14.5373945 + }, + { + "id": "U1778", + "name": "Vojkovice", + "avgLatitude": 50.2968559, + "avgLongitude": 14.377327 + }, + { + "id": "U1771", + "name": "Vojkovice,Bukol", + "avgLatitude": 50.3143921, + "avgLongitude": 14.3927536 + }, + { + "id": "U1772", + "name": "Vojkovice,Bukol,Lávka", + "avgLatitude": 50.3174171, + "avgLongitude": 14.3983192 + }, + { + "id": "U1769", + "name": "Vojkovice,Dědibaby", + "avgLatitude": 50.3104668, + "avgLongitude": 14.3618851 + }, + { + "id": "U1770", + "name": "Vojkovice,Křivousy", + "avgLatitude": 50.3072281, + "avgLongitude": 14.3710527 + }, + { + "id": "U6647", + "name": "Volárna", + "avgLatitude": 50.0916824, + "avgLongitude": 15.241704 + }, + { + "id": "U5810", + "name": "Volenice", + "avgLatitude": 49.54665, + "avgLongitude": 13.8817921 + }, + { + "id": "U5812", + "name": "Volenice,Bubovice", + "avgLatitude": 49.5511551, + "avgLongitude": 13.9285278 + }, + { + "id": "U5083", + "name": "Volenice,Bubovice,Zliv", + "avgLatitude": 49.5435867, + "avgLongitude": 13.9082108 + }, + { + "id": "U5813", + "name": "Volenice,Pročevily", + "avgLatitude": 49.555336, + "avgLongitude": 13.8911142 + }, + { + "id": "U5814", + "name": "Volenice,Pročevily,Na Drahách", + "avgLatitude": 49.55197, + "avgLongitude": 13.9060936 + }, + { + "id": "U982", + "name": "Volha", + "avgLatitude": 50.0214958, + "avgLongitude": 14.4934359 + }, + { + "id": "U2751", + "name": "Volyňská", + "avgLatitude": 50.07361, + "avgLongitude": 14.4721813 + }, + { + "id": "U4136", + "name": "Voňkova", + "avgLatitude": 50.09857, + "avgLongitude": 14.6680088 + }, + { + "id": "U1620", + "name": "Vonoklasy", + "avgLatitude": 49.9505, + "avgLongitude": 14.27677 + }, + { + "id": "U1619", + "name": "Vonoklasy,chaty", + "avgLatitude": 49.9544678, + "avgLongitude": 14.2855854 + }, + { + "id": "U1621", + "name": "Vonoklasy,samoobsluha", + "avgLatitude": 49.9473267, + "avgLongitude": 14.2757378 + }, + { + "id": "U9378", + "name": "Voračice", + "avgLatitude": 49.6615257, + "avgLongitude": 14.5565825 + }, + { + "id": "U861", + "name": "Vosmíkových", + "avgLatitude": 50.114357, + "avgLongitude": 14.4732733 + }, + { + "id": "U9373", + "name": "Votice", + "avgLatitude": 49.63792, + "avgLongitude": 14.6195946 + }, + { + "id": "U6596", + "name": "Votice,Amerika", + "avgLatitude": 49.63046, + "avgLongitude": 14.6525 + }, + { + "id": "U6489", + "name": "Votice,aut.st.", + "avgLatitude": 49.6387444, + "avgLongitude": 14.6429682 + }, + { + "id": "U6495", + "name": "Votice,Bučovice", + "avgLatitude": 49.6346626, + "avgLongitude": 14.5556393 + }, + { + "id": "U6496", + "name": "Votice,Budenín", + "avgLatitude": 49.6503143, + "avgLongitude": 14.6796188 + }, + { + "id": "U6497", + "name": "Votice,Buchov", + "avgLatitude": 49.61312, + "avgLongitude": 14.6609154 + }, + { + "id": "U6498", + "name": "Votice,Hory", + "avgLatitude": 49.6186676, + "avgLongitude": 14.6711655 + }, + { + "id": "U6499", + "name": "Votice,Hostišov", + "avgLatitude": 49.6178131, + "avgLongitude": 14.6586065 + }, + { + "id": "U6597", + "name": "Votice,Kaliště", + "avgLatitude": 49.66061, + "avgLongitude": 14.686533 + }, + { + "id": "U6490", + "name": "Votice,kino", + "avgLatitude": 49.63797, + "avgLongitude": 14.6379471 + }, + { + "id": "U5956", + "name": "Votice,koupaliště", + "avgLatitude": 49.6370163, + "avgLongitude": 14.6306391 + }, + { + "id": "U6491", + "name": "Votice,Lidl", + "avgLatitude": 49.6378174, + "avgLongitude": 14.6489973 + }, + { + "id": "U6509", + "name": "Votice,Lipišov", + "avgLatitude": 49.6311378, + "avgLongitude": 14.5902042 + }, + { + "id": "U6493", + "name": "Votice,Marila", + "avgLatitude": 49.63604, + "avgLongitude": 14.6260891 + }, + { + "id": "U6501", + "name": "Votice,Martinice", + "avgLatitude": 49.6326, + "avgLongitude": 14.5786819 + }, + { + "id": "U6512", + "name": "Votice,Mysletice", + "avgLatitude": 49.6187439, + "avgLongitude": 14.6672325 + }, + { + "id": "U6513", + "name": "Votice,Nazdice", + "avgLatitude": 49.6280861, + "avgLongitude": 14.6045132 + }, + { + "id": "U6510", + "name": "Votice,Nezdice,Mastník", + "avgLatitude": 49.63186, + "avgLongitude": 14.5661993 + }, + { + "id": "U6514", + "name": "Votice,Ohrada", + "avgLatitude": 49.6385269, + "avgLongitude": 14.669981 + }, + { + "id": "U6515", + "name": "Votice,Otradovice", + "avgLatitude": 49.6411362, + "avgLongitude": 14.6782932 + }, + { + "id": "U6492", + "name": "Votice,Pražská", + "avgLatitude": 49.6431465, + "avgLongitude": 14.63896 + }, + { + "id": "U6500", + "name": "Votice,rozc.Hostišov", + "avgLatitude": 49.6194534, + "avgLongitude": 14.659483 + }, + { + "id": "U6511", + "name": "Votice,rozc.Mladoušov", + "avgLatitude": 49.6605721, + "avgLongitude": 14.63331 + }, + { + "id": "U6516", + "name": "Votice,Srbice", + "avgLatitude": 49.6503677, + "avgLongitude": 14.6323643 + }, + { + "id": "U6517", + "name": "Votice,Střelítov", + "avgLatitude": 49.6309547, + "avgLongitude": 14.6124516 + }, + { + "id": "U2191", + "name": "Voznice", + "avgLatitude": 49.8166847, + "avgLongitude": 14.2168941 + }, + { + "id": "U4118", + "name": "Voznice,Chouzavá", + "avgLatitude": 49.83596, + "avgLongitude": 14.2242918 + }, + { + "id": "U2549", + "name": "Voznice,Polesí", + "avgLatitude": 49.8122635, + "avgLongitude": 14.21241 + }, + { + "id": "U1053", + "name": "Vozovna Hloubětín", + "avgLatitude": 50.1076736, + "avgLongitude": 14.5283661 + }, + { + "id": "U864", + "name": "Vozovna Kobylisy", + "avgLatitude": 50.13286, + "avgLongitude": 14.4538279 + }, + { + "id": "U865", + "name": "Vozovna Motol", + "avgLatitude": 50.06786, + "avgLongitude": 14.3409224 + }, + { + "id": "U866", + "name": "Vozovna Pankrác", + "avgLatitude": 50.0569458, + "avgLongitude": 14.4376755 + }, + { + "id": "U848", + "name": "Vozovna Strašnice", + "avgLatitude": 50.0755043, + "avgLongitude": 14.4897289 + }, + { + "id": "U867", + "name": "Vozovna Střešovice", + "avgLatitude": 50.0937767, + "avgLongitude": 14.3888493 + }, + { + "id": "U868", + "name": "Vozovna Vokovice", + "avgLatitude": 50.0930443, + "avgLongitude": 14.3309689 + }, + { + "id": "U837", + "name": "Vozovna Žižkov", + "avgLatitude": 50.0915031, + "avgLongitude": 14.4750538 + }, + { + "id": "U2794", + "name": "Vožická", + "avgLatitude": 50.00937, + "avgLongitude": 14.4931984 + }, + { + "id": "U5816", + "name": "Vracovice", + "avgLatitude": 49.66255, + "avgLongitude": 14.9326763 + }, + { + "id": "U5818", + "name": "Vracovice,Malovidy", + "avgLatitude": 49.66186, + "avgLongitude": 14.95866 + }, + { + "id": "U5819", + "name": "Vracovice,Malovidy,rozc.", + "avgLatitude": 49.66251, + "avgLongitude": 14.96169 + }, + { + "id": "U5817", + "name": "Vracovice,u hřiště", + "avgLatitude": 49.6619949, + "avgLongitude": 14.9384012 + }, + { + "id": "U4375", + "name": "Vraňany", + "avgLatitude": 50.3171234, + "avgLongitude": 14.3619 + }, + { + "id": "U2831", + "name": "Vraňany", + "avgLatitude": 50.3352, + "avgLongitude": 14.3716984 + }, + { + "id": "U4376", + "name": "Vraňany,Mlčechvosty", + "avgLatitude": 50.31865, + "avgLongitude": 14.3399 + }, + { + "id": "U4374", + "name": "Vraňany,Škola", + "avgLatitude": 50.3191223, + "avgLongitude": 14.3633575 + }, + { + "id": "U4373", + "name": "Vraňany,U Nadjezdu", + "avgLatitude": 50.33818, + "avgLongitude": 14.3778744 + }, + { + "id": "U5821", + "name": "Vrančice,Životice", + "avgLatitude": 49.6105881, + "avgLongitude": 14.0501518 + }, + { + "id": "U4265", + "name": "Vrané n.Vlt.,Lesní", + "avgLatitude": 49.9223251, + "avgLongitude": 14.3963966 + }, + { + "id": "U4264", + "name": "Vrané n.Vlt.,Modřínová", + "avgLatitude": 49.93171, + "avgLongitude": 14.38582 + }, + { + "id": "U1518", + "name": "Vrané n.Vlt.,Škola", + "avgLatitude": 49.9365845, + "avgLongitude": 14.3781261 + }, + { + "id": "U4263", + "name": "Vrané n.Vlt.,Zdrav.stř.", + "avgLatitude": 49.93499, + "avgLongitude": 14.3803291 + }, + { + "id": "U2518", + "name": "Vrané n.Vlt.,Žel.st.", + "avgLatitude": 49.9388733, + "avgLongitude": 14.3814039 + }, + { + "id": "U9403", + "name": "Vranice", + "avgLatitude": 49.7898674, + "avgLongitude": 14.986454 + }, + { + "id": "U5822", + "name": "Vranov", + "avgLatitude": 49.8522949, + "avgLongitude": 14.7757626 + }, + { + "id": "U5823", + "name": "Vranov,Bezděkov,rozc.", + "avgLatitude": 49.85452, + "avgLongitude": 14.7658672 + }, + { + "id": "U5824", + "name": "Vranov,Údolnice,rozc.", + "avgLatitude": 49.8586426, + "avgLongitude": 14.7846107 + }, + { + "id": "U5825", + "name": "Vranov,Vranovská Lhota", + "avgLatitude": 49.847477, + "avgLongitude": 14.7615919 + }, + { + "id": "U5826", + "name": "Vranovice", + "avgLatitude": 49.6228256, + "avgLongitude": 13.8984966 + }, + { + "id": "U5827", + "name": "Vranovice,dvůr", + "avgLatitude": 49.633976, + "avgLongitude": 13.9020767 + }, + { + "id": "U1765", + "name": "Vranovice,Ural", + "avgLatitude": 49.6279831, + "avgLongitude": 13.9005737 + }, + { + "id": "U9113", + "name": "Vraný", + "avgLatitude": 50.326252, + "avgLongitude": 14.0173674 + }, + { + "id": "U9114", + "name": "Vraný,bytovky", + "avgLatitude": 50.3297043, + "avgLongitude": 14.0198307 + }, + { + "id": "U9115", + "name": "Vraný,Horní Kamenice", + "avgLatitude": 50.3219681, + "avgLongitude": 14.0582056 + }, + { + "id": "U9116", + "name": "Vraný,Horní Kamenice,I", + "avgLatitude": 50.322998, + "avgLongitude": 14.0609016 + }, + { + "id": "U9117", + "name": "Vraný,Lukov", + "avgLatitude": 50.3371353, + "avgLongitude": 14.054471 + }, + { + "id": "U1419", + "name": "Vrátkov", + "avgLatitude": 50.04953, + "avgLongitude": 14.8385916 + }, + { + "id": "U9352", + "name": "Vrátno", + "avgLatitude": 50.4431076, + "avgLongitude": 14.6867981 + }, + { + "id": "U6128", + "name": "Vrátno,dolní část", + "avgLatitude": 50.4298935, + "avgLongitude": 14.691143 + }, + { + "id": "U4067", + "name": "Vrátno,horní část", + "avgLatitude": 50.4332733, + "avgLongitude": 14.6945877 + }, + { + "id": "U2373", + "name": "Vráž u Berouna", + "avgLatitude": 49.9837, + "avgLongitude": 14.1235352 + }, + { + "id": "U2372", + "name": "Vráž,U Jelena", + "avgLatitude": 49.98551, + "avgLongitude": 14.1317081 + }, + { + "id": "U4615", + "name": "Vražkov", + "avgLatitude": 50.3675346, + "avgLongitude": 14.2640877 + }, + { + "id": "U1042", + "name": "Vrážská", + "avgLatitude": 49.9899635, + "avgLongitude": 14.3700075 + }, + { + "id": "U4935", + "name": "Vrbčany", + "avgLatitude": 50.05029, + "avgLongitude": 14.9918814 + }, + { + "id": "U2938", + "name": "Vrbčany", + "avgLatitude": 50.05475, + "avgLongitude": 15.0002928 + }, + { + "id": "U32158", + "name": "Vrbice,Bošov", + "avgLatitude": 50.1354561, + "avgLongitude": 13.2353048 + }, + { + "id": "U6626", + "name": "Vrbice,kult.dům", + "avgLatitude": 50.1796951, + "avgLongitude": 15.22699 + }, + { + "id": "U32259", + "name": "Vrbice,Skřipová,rozc.", + "avgLatitude": 50.1356964, + "avgLongitude": 13.2005005 + }, + { + "id": "U6627", + "name": "Vrbice,u kostela", + "avgLatitude": 50.18319, + "avgLongitude": 15.2327108 + }, + { + "id": "U4872", + "name": "Vrbičany", + "avgLatitude": 50.30965, + "avgLongitude": 14.0007381 + }, + { + "id": "U9118", + "name": "Vrbičany", + "avgLatitude": 50.30796, + "avgLongitude": 13.9952068 + }, + { + "id": "U4875", + "name": "Vrbno nad Lesy", + "avgLatitude": 50.32729, + "avgLongitude": 13.9059248 + }, + { + "id": "U971", + "name": "Vrbova", + "avgLatitude": 50.03184, + "avgLongitude": 14.4269257 + }, + { + "id": "U3176", + "name": "Vrbová Lhota", + "avgLatitude": 50.112915, + "avgLongitude": 15.06311 + }, + { + "id": "U7073", + "name": "Vrdy,Dolní Bučice", + "avgLatitude": 49.9252739, + "avgLongitude": 15.4643764 + }, + { + "id": "U7074", + "name": "Vrdy,Dolní Bučice,rozc.Vinice", + "avgLatitude": 49.9307251, + "avgLongitude": 15.4878311 + }, + { + "id": "U7220", + "name": "Vrdy,Dolní Bučice,Zbyslavská", + "avgLatitude": 49.9283829, + "avgLongitude": 15.46616 + }, + { + "id": "U7069", + "name": "Vrdy,Horní Bučice", + "avgLatitude": 49.922348, + "avgLongitude": 15.44495 + }, + { + "id": "U7070", + "name": "Vrdy,Horní Bučice,kult.dům", + "avgLatitude": 49.92595, + "avgLongitude": 15.4482307 + }, + { + "id": "U7072", + "name": "Vrdy,Horní Bučice,rozc.", + "avgLatitude": 49.92979, + "avgLongitude": 15.4533567 + }, + { + "id": "U7108", + "name": "Vrdy,Koudelov rozc.", + "avgLatitude": 49.9179878, + "avgLongitude": 15.42466 + }, + { + "id": "U7240", + "name": "Vrdy,kult.dům", + "avgLatitude": 49.9219742, + "avgLongitude": 15.4717751 + }, + { + "id": "U7237", + "name": "Vrdy,Zbyslav", + "avgLatitude": 49.94391, + "avgLongitude": 15.47147 + }, + { + "id": "U7238", + "name": "Vrdy,Zbyslav,u mlýna", + "avgLatitude": 49.9419, + "avgLongitude": 15.4672546 + }, + { + "id": "U9465", + "name": "Vrdy-Koudelov", + "avgLatitude": 49.9147263, + "avgLongitude": 15.4303093 + }, + { + "id": "U9377", + "name": "Vrchotovy Janovice", + "avgLatitude": 49.65869, + "avgLongitude": 14.5794754 + }, + { + "id": "U6533", + "name": "Vrchotovy Janovice,Městečko", + "avgLatitude": 49.6715431, + "avgLongitude": 14.5774069 + }, + { + "id": "U6538", + "name": "Vrchotovy Janovice,Mrvice", + "avgLatitude": 49.6803551, + "avgLongitude": 14.5585175 + }, + { + "id": "U6539", + "name": "Vrchotovy Janovice,Rudoltice", + "avgLatitude": 49.69264, + "avgLongitude": 14.5982876 + }, + { + "id": "U4550", + "name": "Vrchotovy Janovice,Sedlečko,Rozc.", + "avgLatitude": 49.6927872, + "avgLongitude": 14.5253544 + }, + { + "id": "U6540", + "name": "Vrchotovy Janovice,Šebáňovice", + "avgLatitude": 49.6833878, + "avgLongitude": 14.5444984 + }, + { + "id": "U4549", + "name": "Vrchotovy Janovice,Šebáňovice,Rozc.", + "avgLatitude": 49.6945839, + "avgLongitude": 14.5427876 + }, + { + "id": "U6536", + "name": "Vrchotovy Janovice,u sokolovny", + "avgLatitude": 49.6672134, + "avgLongitude": 14.5778227 + }, + { + "id": "U6537", + "name": "Vrchotovy Janovice,ZD", + "avgLatitude": 49.6716232, + "avgLongitude": 14.573328 + }, + { + "id": "U6534", + "name": "Vrchotovy Janovice,Zrcadlo", + "avgLatitude": 49.67765, + "avgLongitude": 14.5847378 + }, + { + "id": "U31311", + "name": "Vrchovany", + "avgLatitude": 50.5529556, + "avgLongitude": 14.571064 + }, + { + "id": "U32065", + "name": "Vroutek", + "avgLatitude": 50.1809, + "avgLongitude": 13.3810406 + }, + { + "id": "U32064", + "name": "Vroutek,Kryrská", + "avgLatitude": 50.17762, + "avgLongitude": 13.3844357 + }, + { + "id": "U391", + "name": "Vršovické náměstí", + "avgLatitude": 50.0690956, + "avgLongitude": 14.45455 + }, + { + "id": "U723", + "name": "Vršovický hřbitov", + "avgLatitude": 50.0632553, + "avgLongitude": 14.466711 + }, + { + "id": "U5833", + "name": "Všechlapy", + "avgLatitude": 49.777668, + "avgLongitude": 14.9145737 + }, + { + "id": "U3177", + "name": "Všechlapy", + "avgLatitude": 50.22062, + "avgLongitude": 15.0287476 + }, + { + "id": "U5834", + "name": "Všechlapy,Nový mlýn", + "avgLatitude": 49.76458, + "avgLongitude": 14.9249477 + }, + { + "id": "U5835", + "name": "Všechlapy,Želivka", + "avgLatitude": 49.77516, + "avgLongitude": 14.9180717 + }, + { + "id": "U3178", + "name": "Všejany", + "avgLatitude": 50.25517, + "avgLongitude": 14.9526463 + }, + { + "id": "U3179", + "name": "Všejany,Vanovice", + "avgLatitude": 50.258667, + "avgLongitude": 14.9494915 + }, + { + "id": "U31105", + "name": "Všelibice,Borek", + "avgLatitude": 50.6397552, + "avgLongitude": 14.9619331 + }, + { + "id": "U31104", + "name": "Všelibice,Borek,křiž.", + "avgLatitude": 50.6432266, + "avgLongitude": 14.9628963 + }, + { + "id": "U31103", + "name": "Všelibice,Březová", + "avgLatitude": 50.6321945, + "avgLongitude": 14.9730015 + }, + { + "id": "U31100", + "name": "Všelibice,host.", + "avgLatitude": 50.645668, + "avgLongitude": 14.9491234 + }, + { + "id": "U31106", + "name": "Všelibice,Malčice", + "avgLatitude": 50.6299362, + "avgLongitude": 14.9561157 + }, + { + "id": "U31108", + "name": "Všelibice,Přibyslavice", + "avgLatitude": 50.60727, + "avgLongitude": 14.9421129 + }, + { + "id": "U31102", + "name": "Všelibice,Roveň", + "avgLatitude": 50.65355, + "avgLongitude": 14.9680882 + }, + { + "id": "U31101", + "name": "Všelibice,rozc.0.9", + "avgLatitude": 50.64554, + "avgLongitude": 14.9625683 + }, + { + "id": "U31107", + "name": "Všelibice,Vrtky", + "avgLatitude": 50.619133, + "avgLongitude": 14.9490681 + }, + { + "id": "U2279", + "name": "Všenory", + "avgLatitude": 49.9328423, + "avgLongitude": 14.3050413 + }, + { + "id": "U5936", + "name": "Všenory,Horní Mokropsy", + "avgLatitude": 49.9350929, + "avgLongitude": 14.3192558 + }, + { + "id": "U1854", + "name": "Všenory,Sportovní areál", + "avgLatitude": 49.9294968, + "avgLongitude": 14.3002205 + }, + { + "id": "U1855", + "name": "Všenory,U Kácovských", + "avgLatitude": 49.9273949, + "avgLongitude": 14.3032207 + }, + { + "id": "U1856", + "name": "Všenory,U Křížků", + "avgLatitude": 49.9221725, + "avgLongitude": 14.3054256 + }, + { + "id": "U4283", + "name": "Všeradice", + "avgLatitude": 49.87289, + "avgLongitude": 14.1053352 + }, + { + "id": "U2939", + "name": "Všeradice", + "avgLatitude": 49.8675156, + "avgLongitude": 14.1073952 + }, + { + "id": "U4137", + "name": "Všestarská", + "avgLatitude": 50.1003876, + "avgLongitude": 14.6626663 + }, + { + "id": "U7583", + "name": "Všestary,hřbitov", + "avgLatitude": 49.96083, + "avgLongitude": 14.6775723 + }, + { + "id": "U2065", + "name": "Všestary,Vávrov", + "avgLatitude": 49.9456253, + "avgLongitude": 14.6921806 + }, + { + "id": "U1766", + "name": "Všestudy", + "avgLatitude": 50.28975, + "avgLongitude": 14.3416739 + }, + { + "id": "U1768", + "name": "Všestudy,Dušníky n.Vlt.", + "avgLatitude": 50.3098145, + "avgLongitude": 14.3377171 + }, + { + "id": "U1767", + "name": "Všestudy,U Sušárny", + "avgLatitude": 50.3009834, + "avgLongitude": 14.3397522 + }, + { + "id": "U6884", + "name": "Všesulov", + "avgLatitude": 50.0398865, + "avgLongitude": 13.6134157 + }, + { + "id": "U9535", + "name": "Všesulov", + "avgLatitude": 50.041687, + "avgLongitude": 13.6025763 + }, + { + "id": "U6883", + "name": "Všesulov,obchod", + "avgLatitude": 50.0395546, + "avgLongitude": 13.6110039 + }, + { + "id": "U4188", + "name": "Všetaty", + "avgLatitude": 50.2827377, + "avgLongitude": 14.5898848 + }, + { + "id": "U6915", + "name": "Všetaty", + "avgLatitude": 50.0461044, + "avgLongitude": 13.7623425 + }, + { + "id": "U2815", + "name": "Všetaty", + "avgLatitude": 50.2821236, + "avgLongitude": 14.5851212 + }, + { + "id": "U6916", + "name": "Všetaty,háj.Čepiny", + "avgLatitude": 50.0410538, + "avgLongitude": 13.7860165 + }, + { + "id": "U2187", + "name": "Všetaty,Přívory", + "avgLatitude": 50.2872734, + "avgLongitude": 14.57659 + }, + { + "id": "U2326", + "name": "Všetaty,Přívory,Průhon", + "avgLatitude": 50.2870026, + "avgLongitude": 14.5682678 + }, + { + "id": "U6914", + "name": "Všetaty,rozc.", + "avgLatitude": 50.04803, + "avgLongitude": 13.7565479 + }, + { + "id": "U6917", + "name": "Všetaty,rozc.Lašovice", + "avgLatitude": 50.05114, + "avgLongitude": 13.7568436 + }, + { + "id": "U5836", + "name": "Vševily", + "avgLatitude": 49.56538, + "avgLongitude": 13.882515 + }, + { + "id": "U880", + "name": "VÚ Běchovice", + "avgLatitude": 50.0892029, + "avgLongitude": 14.6123791 + }, + { + "id": "U111", + "name": "Výhledské náměstí", + "avgLatitude": 50.1350365, + "avgLongitude": 14.3732758 + }, + { + "id": "U869", + "name": "Výhledy", + "avgLatitude": 50.13719, + "avgLongitude": 14.3686876 + }, + { + "id": "U870", + "name": "Vychovatelna", + "avgLatitude": 50.1184, + "avgLongitude": 14.4643183 + }, + { + "id": "U2423", + "name": "Vykáň", + "avgLatitude": 50.11976, + "avgLongitude": 14.8169632 + }, + { + "id": "U31899", + "name": "Vyklantice,Kateřinky", + "avgLatitude": 49.5538673, + "avgLongitude": 15.0251884 + }, + { + "id": "U31898", + "name": "Vyklantice,rozc.1.0", + "avgLatitude": 49.5517, + "avgLongitude": 15.0373516 + }, + { + "id": "U1402", + "name": "Vyskočilova", + "avgLatitude": 50.0484467, + "avgLongitude": 14.4585915 + }, + { + "id": "U9195", + "name": "Vysoká", + "avgLatitude": 50.4123459, + "avgLongitude": 14.5371189 + }, + { + "id": "U5837", + "name": "Vysoká u Příbramě", + "avgLatitude": 49.63434, + "avgLongitude": 13.9479113 + }, + { + "id": "U5921", + "name": "Vysoká u Příbramě,Rusalka", + "avgLatitude": 49.6430244, + "avgLongitude": 13.9443932 + }, + { + "id": "U5838", + "name": "Vysoká u Příbramě,u kapličky", + "avgLatitude": 49.6338844, + "avgLongitude": 13.953867 + }, + { + "id": "U9194", + "name": "Vysoká,Bosyně", + "avgLatitude": 50.4162445, + "avgLongitude": 14.5456562 + }, + { + "id": "U6091", + "name": "Vysoká,Harasov", + "avgLatitude": 50.4107, + "avgLongitude": 14.5707493 + }, + { + "id": "U6064", + "name": "Vysoká,Chodeč", + "avgLatitude": 50.4192047, + "avgLongitude": 14.5272036 + }, + { + "id": "U6066", + "name": "Vysoká,Rymáň", + "avgLatitude": 50.4085655, + "avgLongitude": 14.4883223 + }, + { + "id": "U6065", + "name": "Vysoká,Strážnice,hasičárna", + "avgLatitude": 50.4068069, + "avgLongitude": 14.5129642 + }, + { + "id": "U9196", + "name": "Vysoká,Střednice", + "avgLatitude": 50.40586, + "avgLongitude": 14.5202246 + }, + { + "id": "U31197", + "name": "Vysoké n.Jiz.,Helkovice,rozc.", + "avgLatitude": 50.6539078, + "avgLongitude": 15.3969 + }, + { + "id": "U31200", + "name": "Vysoké n.Jiz.,nám.", + "avgLatitude": 50.68593, + "avgLongitude": 15.4013071 + }, + { + "id": "U31199", + "name": "Vysoké n.Jiz.,nemocnice", + "avgLatitude": 50.6821976, + "avgLongitude": 15.4039288 + }, + { + "id": "U31201", + "name": "Vysoké n.Jiz.,Sklenařice,host.Mexiko", + "avgLatitude": 50.7024841, + "avgLongitude": 15.3863487 + }, + { + "id": "U5839", + "name": "Vysoký Chlumec", + "avgLatitude": 49.6178856, + "avgLongitude": 14.3892012 + }, + { + "id": "U5845", + "name": "Vysoký Chlumec,Bláhova Lhota", + "avgLatitude": 49.6050529, + "avgLongitude": 14.3418789 + }, + { + "id": "U5846", + "name": "Vysoký Chlumec,Hrabří", + "avgLatitude": 49.6315765, + "avgLongitude": 14.3403645 + }, + { + "id": "U5701", + "name": "Vysoký Chlumec,Hrabří,kaple Medná", + "avgLatitude": 49.6473923, + "avgLongitude": 14.3358212 + }, + { + "id": "U5847", + "name": "Vysoký Chlumec,Hradce", + "avgLatitude": 49.6305923, + "avgLongitude": 14.3612957 + }, + { + "id": "U5843", + "name": "Vysoký Chlumec,Hradce,rozc.", + "avgLatitude": 49.62818, + "avgLongitude": 14.3608332 + }, + { + "id": "U5840", + "name": "Vysoký Chlumec,pivovar", + "avgLatitude": 49.6154327, + "avgLongitude": 14.3945217 + }, + { + "id": "U5848", + "name": "Vysoký Chlumec,Pořešice", + "avgLatitude": 49.61152, + "avgLongitude": 14.3549423 + }, + { + "id": "U7458", + "name": "Vysoký Chlumec,Pořešice,Hlubeč", + "avgLatitude": 49.5970535, + "avgLongitude": 14.3526773 + }, + { + "id": "U5844", + "name": "Vysoký Chlumec,Pořešice,Panská Tisovnice", + "avgLatitude": 49.592186, + "avgLongitude": 14.3419971 + }, + { + "id": "U5850", + "name": "Vysoký Chlumec,Pořešice,Zvěstovice", + "avgLatitude": 49.60331, + "avgLongitude": 14.3530254 + }, + { + "id": "U5849", + "name": "Vysoký Chlumec,Vápenice", + "avgLatitude": 49.61847, + "avgLongitude": 14.4065361 + }, + { + "id": "U5879", + "name": "Vysoký Chlumec,Vápenice,u sloupu", + "avgLatitude": 49.6168556, + "avgLongitude": 14.4151363 + }, + { + "id": "U5841", + "name": "Vysoký Chlumec,Víska", + "avgLatitude": 49.6127167, + "avgLongitude": 14.3859463 + }, + { + "id": "U1658", + "name": "Vysoký Újezd", + "avgLatitude": 49.9924622, + "avgLongitude": 14.20663 + }, + { + "id": "U2509", + "name": "Vysoký Újezd", + "avgLatitude": 49.8131676, + "avgLongitude": 14.476553 + }, + { + "id": "U1660", + "name": "Vysoký Újezd,Kozolupy", + "avgLatitude": 49.974678, + "avgLongitude": 14.1927481 + }, + { + "id": "U1637", + "name": "Vysoký Újezd,Kuchař,I", + "avgLatitude": 49.9819946, + "avgLongitude": 14.2361412 + }, + { + "id": "U1657", + "name": "Vysoký Újezd,sokolovna", + "avgLatitude": 49.9951172, + "avgLongitude": 14.2057171 + }, + { + "id": "U532", + "name": "Výstaviště", + "avgLatitude": 50.10483, + "avgLongitude": 14.4324312 + }, + { + "id": "U405", + "name": "Výstaviště Letňany", + "avgLatitude": 50.1285553, + "avgLongitude": 14.5117168 + }, + { + "id": "U1281", + "name": "Vyšehořovice", + "avgLatitude": 50.11843, + "avgLongitude": 14.7731113 + }, + { + "id": "U1282", + "name": "Vyšehořovice,Kozovazy", + "avgLatitude": 50.1265526, + "avgLongitude": 14.7799759 + }, + { + "id": "U2427", + "name": "Vyšehořovice,Vyšehořovičky", + "avgLatitude": 50.1192169, + "avgLongitude": 14.7862606 + }, + { + "id": "U527", + "name": "Vyšehrad", + "avgLatitude": 50.0608063, + "avgLongitude": 14.431242 + }, + { + "id": "U878", + "name": "Výtoň", + "avgLatitude": 50.06767, + "avgLongitude": 14.4154358 + }, + { + "id": "U177", + "name": "Výzkumný ústav vodohospodářský", + "avgLatitude": 50.1160278, + "avgLongitude": 14.3926268 + }, + { + "id": "U1987", + "name": "Výžerky", + "avgLatitude": 49.9451675, + "avgLongitude": 14.8832521 + }, + { + "id": "U1993", + "name": "Výžerky,Rozc.", + "avgLatitude": 49.93077, + "avgLongitude": 14.8912373 + }, + { + "id": "U2011", + "name": "Vyžlovka", + "avgLatitude": 49.9870529, + "avgLongitude": 14.7885857 + }, + { + "id": "U2017", + "name": "Vyžlovka,hotel Praha", + "avgLatitude": 49.98407, + "avgLongitude": 14.7892008 + }, + { + "id": "U4174", + "name": "Wagnerova", + "avgLatitude": 50.03607, + "avgLongitude": 14.527319 + }, + { + "id": "U963", + "name": "Wattova", + "avgLatitude": 50.03745, + "avgLongitude": 14.5619841 + }, + { + "id": "U150", + "name": "Weberova", + "avgLatitude": 50.0735, + "avgLongitude": 14.355875 + }, + { + "id": "U4117", + "name": "Winklerova", + "avgLatitude": 50.0654755, + "avgLongitude": 14.5969734 + }, + { + "id": "U883", + "name": "Xaverov", + "avgLatitude": 50.1012573, + "avgLongitude": 14.6253614 + }, + { + "id": "U5851", + "name": "Xaverov", + "avgLatitude": 49.8427773, + "avgLongitude": 14.8835182 + }, + { + "id": "U5852", + "name": "Xaverov,u hřbitova", + "avgLatitude": 49.84606, + "avgLongitude": 14.8832369 + }, + { + "id": "U996", + "name": "Xaverovský háj", + "avgLatitude": 50.1011658, + "avgLongitude": 14.6195259 + }, + { + "id": "U451", + "name": "Za Avií", + "avgLatitude": 50.1508179, + "avgLongitude": 14.5142918 + }, + { + "id": "U898", + "name": "Za Čimickým hájem", + "avgLatitude": 50.1354446, + "avgLongitude": 14.4475422 + }, + { + "id": "U944", + "name": "Za Farou", + "avgLatitude": 50.0200539, + "avgLongitude": 14.3507252 + }, + { + "id": "U884", + "name": "Za Horou", + "avgLatitude": 50.09218, + "avgLongitude": 14.534687 + }, + { + "id": "U885", + "name": "Za Chalupami", + "avgLatitude": 50.0052643, + "avgLongitude": 14.3561249 + }, + { + "id": "U3298", + "name": "Za Mototechnou", + "avgLatitude": 50.05896, + "avgLongitude": 14.3281059 + }, + { + "id": "U1024", + "name": "Za Nadjezdem", + "avgLatitude": 50.0568771, + "avgLongitude": 14.5485983 + }, + { + "id": "U4132", + "name": "Za Novákovou zahradou", + "avgLatitude": 50.1238251, + "avgLongitude": 14.577425 + }, + { + "id": "U1115", + "name": "Za Pavilonem", + "avgLatitude": 50.060936, + "avgLongitude": 14.5884113 + }, + { + "id": "U1403", + "name": "Za Skalkou", + "avgLatitude": 50.0456161, + "avgLongitude": 14.4193611 + }, + { + "id": "U1063", + "name": "Za Slánskou silnicí", + "avgLatitude": 50.0710335, + "avgLongitude": 14.3064537 + }, + { + "id": "U1034", + "name": "Za Tratí", + "avgLatitude": 50.1671066, + "avgLongitude": 14.5191059 + }, + { + "id": "U886", + "name": "Záběhlice", + "avgLatitude": 50.0559769, + "avgLongitude": 14.4795628 + }, + { + "id": "U887", + "name": "Záběhlická škola", + "avgLatitude": 50.0530319, + "avgLongitude": 14.50318 + }, + { + "id": "U6656", + "name": "Záboří n.L.,Habrkovice,rozc.", + "avgLatitude": 49.9995461, + "avgLongitude": 15.3794384 + }, + { + "id": "U6663", + "name": "Záboří n.L.,Na Písku", + "avgLatitude": 50.0246544, + "avgLongitude": 15.35144 + }, + { + "id": "U4124", + "name": "Záboří n.L.,žel.st.", + "avgLatitude": 50.0296173, + "avgLongitude": 15.3502865 + }, + { + "id": "U1027", + "name": "Zadní Jiviny", + "avgLatitude": 50.07704, + "avgLongitude": 14.2986374 + }, + { + "id": "U888", + "name": "Zadní Kopanina", + "avgLatitude": 50.0066261, + "avgLongitude": 14.3129025 + }, + { + "id": "U2845", + "name": "Zadní Třebaň", + "avgLatitude": 49.91875, + "avgLongitude": 14.2029867 + }, + { + "id": "U9028", + "name": "Zadní Třebaň,Nad Soutokem", + "avgLatitude": 49.91272, + "avgLongitude": 14.2053928 + }, + { + "id": "U6952", + "name": "Záhornice,Ke Hřišti", + "avgLatitude": 50.2452927, + "avgLongitude": 15.2918949 + }, + { + "id": "U6622", + "name": "Záhornice,U Tylů", + "avgLatitude": 50.247406, + "avgLongitude": 15.2866669 + }, + { + "id": "U1126", + "name": "Záhorského", + "avgLatitude": 50.030365, + "avgLongitude": 14.370882 + }, + { + "id": "U1735", + "name": "Zahořany", + "avgLatitude": 49.8506, + "avgLongitude": 14.2871456 + }, + { + "id": "U31189", + "name": "Záhoří,Proseč", + "avgLatitude": 50.6263847, + "avgLongitude": 15.2950525 + }, + { + "id": "U32360", + "name": "Záhořice", + "avgLatitude": 50.078373, + "avgLongitude": 13.1933937 + }, + { + "id": "U892", + "name": "Zahrádky", + "avgLatitude": 50.0272675, + "avgLongitude": 14.31245 + }, + { + "id": "U31352", + "name": "Zahrádky,křiž.", + "avgLatitude": 50.6279221, + "avgLongitude": 14.5353756 + }, + { + "id": "U889", + "name": "Zahradní Město", + "avgLatitude": 50.0605469, + "avgLongitude": 14.5058832 + }, + { + "id": "U891", + "name": "Zahradnictví", + "avgLatitude": 50.0031624, + "avgLongitude": 14.3840609 + }, + { + "id": "U1123", + "name": "Zahradníčkova", + "avgLatitude": 50.0695076, + "avgLongitude": 14.3365135 + }, + { + "id": "U9863", + "name": "Zaječov", + "avgLatitude": 49.7673645, + "avgLongitude": 13.8410587 + }, + { + "id": "U9862", + "name": "Zaječov,Hamburk", + "avgLatitude": 49.77065, + "avgLongitude": 13.8417091 + }, + { + "id": "U9866", + "name": "Zaječov,Kvaň,u Ciprů", + "avgLatitude": 49.77128, + "avgLongitude": 13.8581238 + }, + { + "id": "U9869", + "name": "Zaječov,mlýn", + "avgLatitude": 49.7834167, + "avgLongitude": 13.8426132 + }, + { + "id": "U5767", + "name": "Zaječov,u hřbitova", + "avgLatitude": 49.7658424, + "avgLongitude": 13.8321228 + }, + { + "id": "U9861", + "name": "Zaječov,u mostu", + "avgLatitude": 49.77528, + "avgLongitude": 13.8415718 + }, + { + "id": "U4819", + "name": "Zájezd", + "avgLatitude": 50.1659927, + "avgLongitude": 14.2204695 + }, + { + "id": "U4818", + "name": "Zájezd,Bůhzdař", + "avgLatitude": 50.16273, + "avgLongitude": 14.2109451 + }, + { + "id": "U2842", + "name": "Zákolany", + "avgLatitude": 50.19639, + "avgLongitude": 14.24811 + }, + { + "id": "U2886", + "name": "Zákolany", + "avgLatitude": 50.1997681, + "avgLongitude": 14.2514915 + }, + { + "id": "U4405", + "name": "Zákolany,Kováry", + "avgLatitude": 50.18875, + "avgLongitude": 14.2483063 + }, + { + "id": "U4407", + "name": "Zákolany,rozc.Blevice", + "avgLatitude": 50.1985245, + "avgLongitude": 14.2410307 + }, + { + "id": "U4410", + "name": "Zákolany,Trněný Újezd", + "avgLatitude": 50.1989822, + "avgLongitude": 14.2600918 + }, + { + "id": "U4406", + "name": "Zákolany,u Kovár", + "avgLatitude": 50.1943054, + "avgLongitude": 14.2534351 + }, + { + "id": "U5815", + "name": "Zákolany,Vystrkov", + "avgLatitude": 50.2047043, + "avgLongitude": 14.2578268 + }, + { + "id": "U893", + "name": "Zálesí", + "avgLatitude": 50.0281372, + "avgLongitude": 14.4513931 + }, + { + "id": "U2940", + "name": "Zalešany", + "avgLatitude": 50.03493, + "avgLongitude": 15.0083847 + }, + { + "id": "U1774", + "name": "Zálezlice", + "avgLatitude": 50.307663, + "avgLongitude": 14.4378052 + }, + { + "id": "U1773", + "name": "Zálezlice,Kozárovice", + "avgLatitude": 50.3111572, + "avgLongitude": 14.4249859 + }, + { + "id": "U5854", + "name": "Zalužany", + "avgLatitude": 49.5418167, + "avgLongitude": 14.085639 + }, + { + "id": "U5856", + "name": "Zalužany,čerpací stanice", + "avgLatitude": 49.537262, + "avgLongitude": 14.0818567 + }, + { + "id": "U5855", + "name": "Zalužany,ObÚ", + "avgLatitude": 49.54617, + "avgLongitude": 14.0887508 + }, + { + "id": "U4610", + "name": "Záluží", + "avgLatitude": 50.45682, + "avgLongitude": 14.3254948 + }, + { + "id": "U9825", + "name": "Záluží,transformátor", + "avgLatitude": 49.8412323, + "avgLongitude": 13.85914 + }, + { + "id": "U9823", + "name": "Záluží,u kovárny", + "avgLatitude": 49.8465652, + "avgLongitude": 13.8615379 + }, + { + "id": "U9824", + "name": "Záluží,v Brance", + "avgLatitude": 49.8423157, + "avgLongitude": 13.8613949 + }, + { + "id": "U6954", + "name": "Zálužická", + "avgLatitude": 49.99063, + "avgLongitude": 14.4421988 + }, + { + "id": "U1111", + "name": "Zamašská", + "avgLatitude": 50.14043, + "avgLongitude": 14.5469036 + }, + { + "id": "U708", + "name": "Zamenhofova", + "avgLatitude": 50.0767479, + "avgLongitude": 14.5378475 + }, + { + "id": "U607", + "name": "Zámky", + "avgLatitude": 50.13677, + "avgLongitude": 14.3950453 + }, + { + "id": "U2607", + "name": "Zapova", + "avgLatitude": 50.0738144, + "avgLongitude": 14.3895226 + }, + { + "id": "U2196", + "name": "Zápy", + "avgLatitude": 50.16446, + "avgLongitude": 14.67832 + }, + { + "id": "U2195", + "name": "Zápy,Ostrov lázně", + "avgLatitude": 50.16146, + "avgLongitude": 14.6726208 + }, + { + "id": "U2206", + "name": "Zápy,PREFA", + "avgLatitude": 50.174736, + "avgLongitude": 14.6969061 + }, + { + "id": "U2379", + "name": "Zápy,Stavby mostů", + "avgLatitude": 50.1769829, + "avgLongitude": 14.6915951 + }, + { + "id": "U2457", + "name": "Zápy,Tesco Brandýs n.L.", + "avgLatitude": 50.1766434, + "avgLongitude": 14.6702414 + }, + { + "id": "U2189", + "name": "Záryby", + "avgLatitude": 50.2205734, + "avgLongitude": 14.625906 + }, + { + "id": "U1804", + "name": "Záryby,Martinov", + "avgLatitude": 50.2128754, + "avgLongitude": 14.6345119 + }, + { + "id": "U2704", + "name": "Zásadská", + "avgLatitude": 50.12877, + "avgLongitude": 14.49611 + }, + { + "id": "U2149", + "name": "Zásmuky,Doubravčany", + "avgLatitude": 49.96115, + "avgLongitude": 15.005991 + }, + { + "id": "U2166", + "name": "Zásmuky,Dupanda", + "avgLatitude": 49.9587173, + "avgLongitude": 15.0286789 + }, + { + "id": "U9989", + "name": "Zásmuky,Inseminační stanice", + "avgLatitude": 49.96909, + "avgLongitude": 15.0301075 + }, + { + "id": "U2151", + "name": "Zásmuky,nám.", + "avgLatitude": 49.9543, + "avgLongitude": 15.0301819 + }, + { + "id": "U9978", + "name": "Zásmuky,Nesměň", + "avgLatitude": 49.93665, + "avgLongitude": 15.0171318 + }, + { + "id": "U9979", + "name": "Zásmuky,Ostrov", + "avgLatitude": 49.94601, + "avgLongitude": 15.0192642 + }, + { + "id": "U2150", + "name": "Zásmuky,rozc.Vršice", + "avgLatitude": 49.960125, + "avgLongitude": 15.0185013 + }, + { + "id": "U9991", + "name": "Zásmuky,Sobočice", + "avgLatitude": 49.94336, + "avgLongitude": 15.0408936 + }, + { + "id": "U2153", + "name": "Zásmuky,u sokolovny", + "avgLatitude": 49.95224, + "avgLongitude": 15.03764 + }, + { + "id": "U2941", + "name": "Zásmuky,Žel.st.", + "avgLatitude": 49.9605064, + "avgLongitude": 15.0318222 + }, + { + "id": "U895", + "name": "Zatáčka", + "avgLatitude": 50.0252571, + "avgLongitude": 14.42515 + }, + { + "id": "U1023", + "name": "Zátišská", + "avgLatitude": 50.016716, + "avgLongitude": 14.4109259 + }, + { + "id": "U2752", + "name": "Záveská", + "avgLatitude": 50.0536423, + "avgLongitude": 14.5225315 + }, + { + "id": "U9534", + "name": "Zavidov", + "avgLatitude": 50.0564423, + "avgLongitude": 13.6293507 + }, + { + "id": "U6885", + "name": "Zavidov", + "avgLatitude": 50.0568352, + "avgLongitude": 13.6199856 + }, + { + "id": "U896", + "name": "Závist", + "avgLatitude": 49.97618, + "avgLongitude": 14.4018984 + }, + { + "id": "U9513", + "name": "Závišín", + "avgLatitude": 49.4769058, + "avgLongitude": 13.8664808 + }, + { + "id": "U705", + "name": "Závodiště Chuchle", + "avgLatitude": 50.00759, + "avgLongitude": 14.3888855 + }, + { + "id": "U9472", + "name": "Závratec", + "avgLatitude": 49.8772545, + "avgLongitude": 15.56251 + }, + { + "id": "U3275", + "name": "Zbečno", + "avgLatitude": 50.03577, + "avgLongitude": 13.9182081 + }, + { + "id": "U9101", + "name": "Zbečno,Novina", + "avgLatitude": 50.05439, + "avgLongitude": 13.9107323 + }, + { + "id": "U9095", + "name": "Zbečno,U Hřbitova", + "avgLatitude": 50.0448074, + "avgLongitude": 13.9168463 + }, + { + "id": "U9096", + "name": "Zbečno,U Mostu", + "avgLatitude": 50.0400047, + "avgLongitude": 13.9216242 + }, + { + "id": "U5857", + "name": "Zbenice", + "avgLatitude": 49.59223, + "avgLongitude": 14.088192 + }, + { + "id": "U5858", + "name": "Zbenice,cihelna", + "avgLatitude": 49.59715, + "avgLongitude": 14.0777311 + }, + { + "id": "U31965", + "name": "Zbiroh,nám.", + "avgLatitude": 49.8591728, + "avgLongitude": 13.7691116 + }, + { + "id": "U31963", + "name": "Zbiroh,u vodojemu", + "avgLatitude": 49.8625755, + "avgLongitude": 13.7819538 + }, + { + "id": "U31964", + "name": "Zbiroh,zámostí", + "avgLatitude": 49.8611832, + "avgLongitude": 13.7764406 + }, + { + "id": "U9946", + "name": "Zbizuby", + "avgLatitude": 49.8236732, + "avgLongitude": 15.0236053 + }, + { + "id": "U9947", + "name": "Zbizuby,Makolusky", + "avgLatitude": 49.83554, + "avgLongitude": 15.028614 + }, + { + "id": "U9948", + "name": "Zbizuby,Nechyba", + "avgLatitude": 49.8294, + "avgLongitude": 15.0233707 + }, + { + "id": "U5860", + "name": "Zbizuby,Vlková", + "avgLatitude": 49.8303261, + "avgLongitude": 15.0484219 + }, + { + "id": "U9949", + "name": "Zbizuby,Vlková,rozc.", + "avgLatitude": 49.8395424, + "avgLongitude": 15.0334787 + }, + { + "id": "U7036", + "name": "Zbizuby,Vranice", + "avgLatitude": 49.80163, + "avgLongitude": 15.0049477 + }, + { + "id": "U900", + "name": "Zborov - Strašnické divadlo", + "avgLatitude": 50.0772972, + "avgLongitude": 14.5006962 + }, + { + "id": "U901", + "name": "Zborovská", + "avgLatitude": 50.0724869, + "avgLongitude": 14.4074049 + }, + { + "id": "U2468", + "name": "Zbožíčko", + "avgLatitude": 50.226635, + "avgLongitude": 14.9378681 + }, + { + "id": "U1039", + "name": "Zbraslav", + "avgLatitude": 49.9590454, + "avgLongitude": 14.3827953 + }, + { + "id": "U9436", + "name": "Zbraslavice", + "avgLatitude": 49.8156853, + "avgLongitude": 15.1894855 + }, + { + "id": "U7062", + "name": "Zbraslavice,Borová", + "avgLatitude": 49.7992744, + "avgLongitude": 15.1816826 + }, + { + "id": "U7089", + "name": "Zbraslavice,Hodkov", + "avgLatitude": 49.78512, + "avgLongitude": 15.1499977 + }, + { + "id": "U6961", + "name": "Zbraslavice,Kateřinky", + "avgLatitude": 49.8294449, + "avgLongitude": 15.17766 + }, + { + "id": "U7088", + "name": "Zbraslavice,Krasoňovice,rozc.", + "avgLatitude": 49.7918243, + "avgLongitude": 15.1399136 + }, + { + "id": "U7063", + "name": "Zbraslavice,letiště", + "avgLatitude": 49.8185349, + "avgLongitude": 15.197896 + }, + { + "id": "U7087", + "name": "Zbraslavice,Lipina", + "avgLatitude": 49.7770576, + "avgLongitude": 15.121067 + }, + { + "id": "U6962", + "name": "Zbraslavice,nám.", + "avgLatitude": 49.8117447, + "avgLongitude": 15.1838379 + }, + { + "id": "U7247", + "name": "Zbraslavice,Ostrov", + "avgLatitude": 49.7684021, + "avgLongitude": 15.1944046 + }, + { + "id": "U6964", + "name": "Zbraslavice,Radvančice", + "avgLatitude": 49.8041573, + "avgLongitude": 15.2082558 + }, + { + "id": "U6963", + "name": "Zbraslavice,Radvančice,rozc.", + "avgLatitude": 49.8017921, + "avgLongitude": 15.2046614 + }, + { + "id": "U6960", + "name": "Zbraslavice,Rápošov", + "avgLatitude": 49.8330154, + "avgLongitude": 15.1715794 + }, + { + "id": "U902", + "name": "Zbraslavské náměstí", + "avgLatitude": 49.9761467, + "avgLongitude": 14.3935766 + }, + { + "id": "U32185", + "name": "Zbrašín,Senkov,rozc.", + "avgLatitude": 50.2964821, + "avgLongitude": 13.7815228 + }, + { + "id": "U1187", + "name": "Zbuzany", + "avgLatitude": 50.0263023, + "avgLongitude": 14.28062 + }, + { + "id": "U1186", + "name": "Zbuzany,Obecní úřad", + "avgLatitude": 50.02322, + "avgLongitude": 14.2863407 + }, + { + "id": "U903", + "name": "Zbyslavská", + "avgLatitude": 50.074173, + "avgLongitude": 14.6714182 + }, + { + "id": "U6996", + "name": "Zbýšov", + "avgLatitude": 49.8113022, + "avgLongitude": 15.3526058 + }, + { + "id": "U6999", + "name": "Zbýšov,Březí", + "avgLatitude": 49.84537, + "avgLongitude": 15.3587093 + }, + { + "id": "U6994", + "name": "Zbýšov,Hrby", + "avgLatitude": 49.8044853, + "avgLongitude": 15.3373318 + }, + { + "id": "U7279", + "name": "Zbýšov,Chlum", + "avgLatitude": 49.7856979, + "avgLongitude": 15.3666773 + }, + { + "id": "U7280", + "name": "Zbýšov,Klucké Chvalovice", + "avgLatitude": 49.8062439, + "avgLongitude": 15.3775749 + }, + { + "id": "U6995", + "name": "Zbýšov,Krchlebská Lhota,rozc.", + "avgLatitude": 49.8104477, + "avgLongitude": 15.34454 + }, + { + "id": "U7306", + "name": "Zbýšov,Opatovice", + "avgLatitude": 49.8254166, + "avgLongitude": 15.3497353 + }, + { + "id": "U6997", + "name": "Zbýšov,Opatovice,rozc.", + "avgLatitude": 49.8184357, + "avgLongitude": 15.3564625 + }, + { + "id": "U7305", + "name": "Zbýšov,Třískovec", + "avgLatitude": 49.83126, + "avgLongitude": 15.3445263 + }, + { + "id": "U7293", + "name": "Zbýšov,Zbudovice", + "avgLatitude": 49.85073, + "avgLongitude": 15.3780117 + }, + { + "id": "U1633", + "name": "Zderazská", + "avgLatitude": 49.9806442, + "avgLongitude": 14.3482275 + }, + { + "id": "U2979", + "name": "Zdětín", + "avgLatitude": 50.3105431, + "avgLongitude": 14.8117094 + }, + { + "id": "U2237", + "name": "Zdiby", + "avgLatitude": 50.1666527, + "avgLongitude": 14.4514656 + }, + { + "id": "U5017", + "name": "Zdiby,Brnky", + "avgLatitude": 50.1564178, + "avgLongitude": 14.4093056 + }, + { + "id": "U5009", + "name": "Zdiby,Holosmetky", + "avgLatitude": 50.1623039, + "avgLongitude": 14.41413 + }, + { + "id": "U5016", + "name": "Zdiby,Pod Hájem", + "avgLatitude": 50.1593056, + "avgLongitude": 14.41782 + }, + { + "id": "U5014", + "name": "Zdiby,Pod Mezí", + "avgLatitude": 50.1609726, + "avgLongitude": 14.4202061 + }, + { + "id": "U5010", + "name": "Zdiby,Polní", + "avgLatitude": 50.1668549, + "avgLongitude": 14.4201164 + }, + { + "id": "U2240", + "name": "Zdiby,Přemyšlení", + "avgLatitude": 50.1684647, + "avgLongitude": 14.4309063 + }, + { + "id": "U5011", + "name": "Zdiby,Přemyšlení,Chaberská", + "avgLatitude": 50.16741, + "avgLongitude": 14.4310417 + }, + { + "id": "U4101", + "name": "Zdiby,Přemyšlení,V Remízkách", + "avgLatitude": 50.17225, + "avgLongitude": 14.4253044 + }, + { + "id": "U2264", + "name": "Zdiby,U Celnice", + "avgLatitude": 50.161377, + "avgLongitude": 14.4525166 + }, + { + "id": "U2216", + "name": "Zdiby,U Parku", + "avgLatitude": 50.1664124, + "avgLongitude": 14.4528027 + }, + { + "id": "U2239", + "name": "Zdiby,Veltěž", + "avgLatitude": 50.1676941, + "avgLongitude": 14.4402237 + }, + { + "id": "U2238", + "name": "Zdiby,Veltěž,Pošta", + "avgLatitude": 50.1677, + "avgLongitude": 14.446064 + }, + { + "id": "U2229", + "name": "Zdiby,Výzkumný ústav", + "avgLatitude": 50.17133, + "avgLongitude": 14.45194 + }, + { + "id": "U5013", + "name": "Zdiby,Zlatý kopec", + "avgLatitude": 50.1632538, + "avgLongitude": 14.43087 + }, + { + "id": "U2869", + "name": "Zdice", + "avgLatitude": 49.9077759, + "avgLongitude": 13.9796095 + }, + { + "id": "U9109", + "name": "Zdice,autoservis", + "avgLatitude": 49.9042473, + "avgLongitude": 13.9602127 + }, + { + "id": "U9107", + "name": "Zdice,Černín", + "avgLatitude": 49.92764, + "avgLongitude": 13.9746895 + }, + { + "id": "U9108", + "name": "Zdice,Knížkovice", + "avgLatitude": 49.91104, + "avgLongitude": 13.95216 + }, + { + "id": "U9105", + "name": "Zdice,nám.", + "avgLatitude": 49.9118042, + "avgLongitude": 13.9790688 + }, + { + "id": "U9106", + "name": "Zdice,škola", + "avgLatitude": 49.9152145, + "avgLongitude": 13.9800978 + }, + { + "id": "U3225", + "name": "Zdická", + "avgLatitude": 49.9775658, + "avgLongitude": 14.3505936 + }, + { + "id": "U278", + "name": "Zdiměřická", + "avgLatitude": 50.0222435, + "avgLongitude": 14.5175924 + }, + { + "id": "U5863", + "name": "Zdislavice", + "avgLatitude": 49.68616, + "avgLongitude": 14.975379 + }, + { + "id": "U5866", + "name": "Zduchovice", + "avgLatitude": 49.63868, + "avgLongitude": 14.2091808 + }, + { + "id": "U906", + "name": "Zelená", + "avgLatitude": 50.107235, + "avgLongitude": 14.3949108 + }, + { + "id": "U907", + "name": "Zelená liška", + "avgLatitude": 50.0486069, + "avgLongitude": 14.4433 + }, + { + "id": "U909", + "name": "Zelené domky", + "avgLatitude": 50.016, + "avgLongitude": 14.4694386 + }, + { + "id": "U31142", + "name": "Zelenecká Lhota,odb.Záhuby", + "avgLatitude": 50.4053268, + "avgLongitude": 15.1671028 + }, + { + "id": "U31143", + "name": "Zelenecká Lhota,rozc.", + "avgLatitude": 50.4045868, + "avgLongitude": 15.1759052 + }, + { + "id": "U1193", + "name": "Zeleneč", + "avgLatitude": 50.1332664, + "avgLongitude": 14.6606636 + }, + { + "id": "U1093", + "name": "Zeleneč", + "avgLatitude": 50.1302376, + "avgLongitude": 14.6649227 + }, + { + "id": "U1195", + "name": "Zeleneč,Bezručova", + "avgLatitude": 50.13222, + "avgLongitude": 14.6603508 + }, + { + "id": "U4427", + "name": "Zeleneč,Mstětice", + "avgLatitude": 50.142086, + "avgLongitude": 14.6930618 + }, + { + "id": "U1196", + "name": "Zeleneč,Obora", + "avgLatitude": 50.1373367, + "avgLongitude": 14.6598215 + }, + { + "id": "U1194", + "name": "Zeleneč,U Hřiště", + "avgLatitude": 50.1300621, + "avgLongitude": 14.6564636 + }, + { + "id": "U910", + "name": "Zelený pruh", + "avgLatitude": 50.0392723, + "avgLongitude": 14.4275141 + }, + { + "id": "U911", + "name": "Zemanka", + "avgLatitude": 50.0391769, + "avgLongitude": 14.4231834 + }, + { + "id": "U874", + "name": "Zemědělská univerzita", + "avgLatitude": 50.13325, + "avgLongitude": 14.3774157 + }, + { + "id": "U320", + "name": "Zentiva", + "avgLatitude": 50.0615921, + "avgLongitude": 14.5463161 + }, + { + "id": "U31251", + "name": "Zhoř u Ml.Vožice", + "avgLatitude": 49.5437279, + "avgLongitude": 14.7635574 + }, + { + "id": "U31902", + "name": "Zhoř,Březí,rozc.0.3", + "avgLatitude": 49.5021057, + "avgLongitude": 14.3633327 + }, + { + "id": "U31903", + "name": "Zhoř,Zbislav,rozc.0.5", + "avgLatitude": 49.4917336, + "avgLongitude": 14.3639622 + }, + { + "id": "U912", + "name": "Zhořelecká", + "avgLatitude": 50.1309929, + "avgLongitude": 14.4174671 + }, + { + "id": "U9234", + "name": "Zichovec", + "avgLatitude": 50.26996, + "avgLongitude": 13.9257526 + }, + { + "id": "U1255", + "name": "Zlatá", + "avgLatitude": 50.0404243, + "avgLongitude": 14.710412 + }, + { + "id": "U1525", + "name": "Zlatníky-Hodkovice,Břežanská", + "avgLatitude": 49.9701843, + "avgLongitude": 14.4832554 + }, + { + "id": "U5087", + "name": "Zlatníky-Hodkovice,Inovační", + "avgLatitude": 49.9739075, + "avgLongitude": 14.4767475 + }, + { + "id": "U5088", + "name": "Zlatníky-Hodkovice,Na Drahách", + "avgLatitude": 49.9551, + "avgLongitude": 14.4839363 + }, + { + "id": "U1528", + "name": "Zlatníky-Hodkovice,Náves", + "avgLatitude": 49.9603462, + "avgLongitude": 14.4809494 + }, + { + "id": "U1526", + "name": "Zlatníky-Hodkovice,Slunečná", + "avgLatitude": 49.9665947, + "avgLongitude": 14.48222 + }, + { + "id": "U1529", + "name": "Zlatníky-Hodkovice,U Hasičárny", + "avgLatitude": 49.9571648, + "avgLongitude": 14.4804564 + }, + { + "id": "U1527", + "name": "Zlatníky-Hodkovice,U Prodejny", + "avgLatitude": 49.9623871, + "avgLongitude": 14.4810991 + }, + { + "id": "U2943", + "name": "Zlenice", + "avgLatitude": 49.8793678, + "avgLongitude": 14.7332354 + }, + { + "id": "U1141", + "name": "Zličín", + "avgLatitude": 50.0546761, + "avgLongitude": 14.2901535 + }, + { + "id": "U914", + "name": "Zlíchov", + "avgLatitude": 50.04604, + "avgLongitude": 14.4076481 + }, + { + "id": "U2226", + "name": "Zlončice", + "avgLatitude": 50.2290764, + "avgLongitude": 14.3592091 + }, + { + "id": "U9202", + "name": "Zlonice", + "avgLatitude": 50.28817, + "avgLongitude": 14.09222 + }, + { + "id": "U4330", + "name": "Zlonice", + "avgLatitude": 50.2850037, + "avgLongitude": 14.078166 + }, + { + "id": "U4878", + "name": "Zlonice zast.", + "avgLatitude": 50.2825, + "avgLongitude": 14.0932589 + }, + { + "id": "U9203", + "name": "Zlonice,Břešťany", + "avgLatitude": 50.2833176, + "avgLongitude": 14.1155262 + }, + { + "id": "U9207", + "name": "Zlonice,Husova", + "avgLatitude": 50.2855377, + "avgLongitude": 14.0995941 + }, + { + "id": "U9204", + "name": "Zlonice,Lisovice", + "avgLatitude": 50.2871971, + "avgLongitude": 14.0661259 + }, + { + "id": "U9206", + "name": "Zlonice,Pejšova", + "avgLatitude": 50.2862625, + "avgLongitude": 14.0841951 + }, + { + "id": "U9209", + "name": "Zlonice,Tmáň", + "avgLatitude": 50.2829437, + "avgLongitude": 14.1317244 + }, + { + "id": "U9210", + "name": "Zlonice,u fary", + "avgLatitude": 50.2858124, + "avgLongitude": 14.0894794 + }, + { + "id": "U9211", + "name": "Zlonice,Vyšínek", + "avgLatitude": 50.29776, + "avgLongitude": 14.0734425 + }, + { + "id": "U2331", + "name": "Zlonín", + "avgLatitude": 50.2173233, + "avgLongitude": 14.5082 + }, + { + "id": "U1958", + "name": "Zlonín,Rozc.", + "avgLatitude": 50.2107, + "avgLongitude": 14.4989471 + }, + { + "id": "U1776", + "name": "Zlosyň", + "avgLatitude": 50.2781, + "avgLongitude": 14.3665905 + }, + { + "id": "U915", + "name": "Zmrzlík", + "avgLatitude": 50.011776, + "avgLongitude": 14.3128662 + }, + { + "id": "U3210", + "name": "Zoo Praha - Sklenářka", + "avgLatitude": 50.1203041, + "avgLongitude": 14.4034481 + }, + { + "id": "U764", + "name": "Zoo Praha - Troja", + "avgLatitude": 50.11663, + "avgLongitude": 14.4116077 + }, + { + "id": "U5867", + "name": "Zruč n.Sáz.,Domahoř,rozc.", + "avgLatitude": 49.73014, + "avgLongitude": 15.0984955 + }, + { + "id": "U7084", + "name": "Zruč n.Sáz.,Dubina", + "avgLatitude": 49.7569351, + "avgLongitude": 15.108861 + }, + { + "id": "U7085", + "name": "Zruč n.Sáz.,Dubina,háj.", + "avgLatitude": 49.7597046, + "avgLongitude": 15.1124678 + }, + { + "id": "U9921", + "name": "Zruč n.Sáz.,Dubinská", + "avgLatitude": 49.7464638, + "avgLongitude": 15.1030731 + }, + { + "id": "U7159", + "name": "Zruč n.Sáz.,Na Pohoří", + "avgLatitude": 49.74652, + "avgLongitude": 15.0974846 + }, + { + "id": "U7057", + "name": "Zruč n.Sáz.,nám.", + "avgLatitude": 49.74298, + "avgLongitude": 15.1030025 + }, + { + "id": "U5868", + "name": "Zruč n.Sáz.,Nesměřice", + "avgLatitude": 49.7283936, + "avgLongitude": 15.0782223 + }, + { + "id": "U7157", + "name": "Zruč n.Sáz.,Nový hřbitov", + "avgLatitude": 49.75255, + "avgLongitude": 15.09997 + }, + { + "id": "U7053", + "name": "Zruč n.Sáz.,prům.zóna Jih", + "avgLatitude": 49.73467, + "avgLongitude": 15.0913506 + }, + { + "id": "U7158", + "name": "Zruč n.Sáz.,rozhledna Babka", + "avgLatitude": 49.75528, + "avgLongitude": 15.1006012 + }, + { + "id": "U9409", + "name": "Zruč n.Sáz.,Sázavan", + "avgLatitude": 49.74299, + "avgLongitude": 15.0875664 + }, + { + "id": "U7086", + "name": "Zruč n.Sáz.,Želivec", + "avgLatitude": 49.7626038, + "avgLongitude": 15.1285448 + }, + { + "id": "U9439", + "name": "Zruč n.Sáz.,Želivec,žel.zast.", + "avgLatitude": 49.75289, + "avgLongitude": 15.1399431 + }, + { + "id": "U9410", + "name": "Zruč nad Sázavou", + "avgLatitude": 49.7390671, + "avgLongitude": 15.1037178 + }, + { + "id": "U2042", + "name": "Zvánovice", + "avgLatitude": 49.932045, + "avgLongitude": 14.777915 + }, + { + "id": "U2144", + "name": "Zvánovice,Kádov", + "avgLatitude": 49.9371033, + "avgLongitude": 14.7804756 + }, + { + "id": "U2589", + "name": "Zvěřínek", + "avgLatitude": 50.1554375, + "avgLongitude": 15.0076208 + }, + { + "id": "U2593", + "name": "Zvěřínek,rozc.Hořátev", + "avgLatitude": 50.1520271, + "avgLongitude": 15.0056915 + }, + { + "id": "U6584", + "name": "Zvěstov", + "avgLatitude": 49.63389, + "avgLongitude": 14.7940693 + }, + { + "id": "U6585", + "name": "Zvěstov,Libouň", + "avgLatitude": 49.6342545, + "avgLongitude": 14.8187447 + }, + { + "id": "U6586", + "name": "Zvěstov,Libouň,rozc.Roudný", + "avgLatitude": 49.6323128, + "avgLongitude": 14.8161621 + }, + { + "id": "U6587", + "name": "Zvěstov,Roudný", + "avgLatitude": 49.61876, + "avgLongitude": 14.8074427 + }, + { + "id": "U6588", + "name": "Zvěstov,rozc.Vestec", + "avgLatitude": 49.63353, + "avgLongitude": 14.8048429 + }, + { + "id": "U4087", + "name": "Zvěstov,rozc.Vlastišov", + "avgLatitude": 49.6478462, + "avgLongitude": 14.8221951 + }, + { + "id": "U4088", + "name": "Zvěstov,Smršťov", + "avgLatitude": 49.61776, + "avgLongitude": 14.8369627 + }, + { + "id": "U31330", + "name": "Zvíkovec", + "avgLatitude": 49.9543953, + "avgLongitude": 13.6876125 + }, + { + "id": "U31329", + "name": "Zvíkovec,Kalinova Ves", + "avgLatitude": 49.9585648, + "avgLongitude": 13.6958885 + }, + { + "id": "U1513", + "name": "Zvole", + "avgLatitude": 49.9335327, + "avgLongitude": 14.4228039 + }, + { + "id": "U1514", + "name": "Zvole,Černíky", + "avgLatitude": 49.92081, + "avgLongitude": 14.419651 + }, + { + "id": "U1904", + "name": "Zvole,Jílovská", + "avgLatitude": 49.9305878, + "avgLongitude": 14.4238205 + }, + { + "id": "U5086", + "name": "Zvole,K Jarovu", + "avgLatitude": 49.9350967, + "avgLongitude": 14.4108257 + }, + { + "id": "U1905", + "name": "Zvole,Nová Zvole", + "avgLatitude": 49.923954, + "avgLongitude": 14.4212246 + }, + { + "id": "U1519", + "name": "Zvole,Škola", + "avgLatitude": 49.93447, + "avgLongitude": 14.4184513 + }, + { + "id": "U2944", + "name": "Zvoleněves", + "avgLatitude": 50.23065, + "avgLongitude": 14.1827908 + }, + { + "id": "U4822", + "name": "Zvoleněves,hostinec", + "avgLatitude": 50.23124, + "avgLongitude": 14.1821384 + }, + { + "id": "U1121", + "name": "Zvonařka", + "avgLatitude": 50.0709152, + "avgLongitude": 14.4344978 + }, + { + "id": "U4942", + "name": "Žabonosy", + "avgLatitude": 50.03607, + "avgLongitude": 15.0319653 + }, + { + "id": "U2945", + "name": "Žabonosy", + "avgLatitude": 50.0396843, + "avgLongitude": 15.024271 + }, + { + "id": "U917", + "name": "Žabovřesky", + "avgLatitude": 49.965126, + "avgLongitude": 14.383626 + }, + { + "id": "U918", + "name": "Žákovská", + "avgLatitude": 50.125927, + "avgLongitude": 14.3722248 + }, + { + "id": "U7010", + "name": "Žáky", + "avgLatitude": 49.8844757, + "avgLongitude": 15.3680305 + }, + { + "id": "U7009", + "name": "Žáky,Dolní Štrampouch", + "avgLatitude": 49.86726, + "avgLongitude": 15.3641148 + }, + { + "id": "U7000", + "name": "Žáky,Horní Štrampouch", + "avgLatitude": 49.8602371, + "avgLongitude": 15.3619432 + }, + { + "id": "U970", + "name": "Žárská", + "avgLatitude": 50.1057434, + "avgLongitude": 14.5533791 + }, + { + "id": "U5079", + "name": "Žatec", + "avgLatitude": 50.3366356, + "avgLongitude": 13.5551729 + }, + { + "id": "U31994", + "name": "Žatec,aut.nádr.", + "avgLatitude": 50.3273544, + "avgLongitude": 13.5468073 + }, + { + "id": "U32303", + "name": "Žatec,Kadaňská", + "avgLatitude": 50.3271828, + "avgLongitude": 13.51822 + }, + { + "id": "U32378", + "name": "Žatec,Kovářská", + "avgLatitude": 50.32412, + "avgLongitude": 13.5415449 + }, + { + "id": "U32301", + "name": "Žatec,Lučanská", + "avgLatitude": 50.32427, + "avgLongitude": 13.5331383 + }, + { + "id": "U32300", + "name": "Žatec,sokolovna", + "avgLatitude": 50.3234024, + "avgLongitude": 13.5419531 + }, + { + "id": "U31993", + "name": "Žatec,Sv.Čecha", + "avgLatitude": 50.32095, + "avgLongitude": 13.5434265 + }, + { + "id": "U31992", + "name": "Žatec,Volyň.Čechů OSP", + "avgLatitude": 50.31819, + "avgLongitude": 13.5449219 + }, + { + "id": "U32541", + "name": "Žatec,Volyň.Čechů SEPAP", + "avgLatitude": 50.3226242, + "avgLongitude": 13.5433769 + }, + { + "id": "U32302", + "name": "Žatec,VÚCh", + "avgLatitude": 50.32411, + "avgLongitude": 13.526597 + }, + { + "id": "U1983", + "name": "Ždánice", + "avgLatitude": 49.96759, + "avgLongitude": 14.9577017 + }, + { + "id": "U2392", + "name": "Ždánice,rozc.Běšínov", + "avgLatitude": 49.98257, + "avgLongitude": 14.9765415 + }, + { + "id": "U1984", + "name": "Ždánice,U Jánů", + "avgLatitude": 49.9665375, + "avgLongitude": 14.964119 + }, + { + "id": "U6862", + "name": "Žďár", + "avgLatitude": 50.0582352, + "avgLongitude": 13.4591026 + }, + { + "id": "U6402", + "name": "Žďár,Břehy,obecní úřad", + "avgLatitude": 50.559948, + "avgLongitude": 15.0613422 + }, + { + "id": "U6403", + "name": "Žďár,Doubrava", + "avgLatitude": 50.55488, + "avgLongitude": 15.0682106 + }, + { + "id": "U6863", + "name": "Žďár,Otěvěky", + "avgLatitude": 50.05927, + "avgLongitude": 13.474494 + }, + { + "id": "U6404", + "name": "Žďár,Příhrazská", + "avgLatitude": 50.5470772, + "avgLongitude": 15.0730057 + }, + { + "id": "U6405", + "name": "Žďár,u kostela", + "avgLatitude": 50.5431061, + "avgLongitude": 15.0840445 + }, + { + "id": "U6406", + "name": "Žďár,Žehrov", + "avgLatitude": 50.53012, + "avgLongitude": 15.1005249 + }, + { + "id": "U31059", + "name": "Žďárek,Hvězda", + "avgLatitude": 50.6339378, + "avgLongitude": 15.1117678 + }, + { + "id": "U31976", + "name": "Ždírec,Bořejov", + "avgLatitude": 50.51128, + "avgLongitude": 14.6191339 + }, + { + "id": "U31977", + "name": "Ždírec,náves", + "avgLatitude": 50.51574, + "avgLongitude": 14.623848 + }, + { + "id": "U31978", + "name": "Ždírec,Ždírecký Důl", + "avgLatitude": 50.52034, + "avgLongitude": 14.6106281 + }, + { + "id": "U1231", + "name": "Žebrák,INTOS", + "avgLatitude": 49.871727, + "avgLongitude": 13.8940372 + }, + { + "id": "U1230", + "name": "Žebrák,nám.", + "avgLatitude": 49.875824, + "avgLongitude": 13.8963614 + }, + { + "id": "U9613", + "name": "Žebrák,prům.zóna Jih", + "avgLatitude": 49.86119, + "avgLongitude": 13.8934746 + }, + { + "id": "U5007", + "name": "Žebrák,Sedlec", + "avgLatitude": 49.8669662, + "avgLongitude": 13.9075565 + }, + { + "id": "U9612", + "name": "Žebrák,Sedlec,Za Dálnicí", + "avgLatitude": 49.8665924, + "avgLongitude": 13.8954039 + }, + { + "id": "U6620", + "name": "Žehuň", + "avgLatitude": 50.1352272, + "avgLongitude": 15.292408 + }, + { + "id": "U6621", + "name": "Žehuň,u rybníka", + "avgLatitude": 50.14148, + "avgLongitude": 15.2897148 + }, + { + "id": "U7201", + "name": "Žehušice", + "avgLatitude": 49.9673653, + "avgLongitude": 15.4090767 + }, + { + "id": "U7234", + "name": "Žehušice,Bojmany,rozc.", + "avgLatitude": 49.96238, + "avgLongitude": 15.44483 + }, + { + "id": "U7202", + "name": "Žehušice,ObÚ", + "avgLatitude": 49.96997, + "avgLongitude": 15.4062 + }, + { + "id": "U7200", + "name": "Žehušice,u kapličky", + "avgLatitude": 49.9661865, + "avgLongitude": 15.4074793 + }, + { + "id": "U5869", + "name": "Žehušice,ZŠ", + "avgLatitude": 49.9719162, + "avgLongitude": 15.4000578 + }, + { + "id": "U4838", + "name": "Želenice", + "avgLatitude": 50.2096062, + "avgLongitude": 14.1643677 + }, + { + "id": "U4915", + "name": "Železná", + "avgLatitude": 50.0098534, + "avgLongitude": 14.0919867 + }, + { + "id": "U32227", + "name": "Železný Brod,Dvírka", + "avgLatitude": 50.6449776, + "avgLongitude": 15.2337742 + }, + { + "id": "U32127", + "name": "Železný Brod,nová škola", + "avgLatitude": 50.63699, + "avgLongitude": 15.2699432 + }, + { + "id": "U31188", + "name": "Železný Brod,Pelechov", + "avgLatitude": 50.6352158, + "avgLongitude": 15.2770567 + }, + { + "id": "U31186", + "name": "Železný Brod,sokolovna", + "avgLatitude": 50.6407356, + "avgLongitude": 15.2563429 + }, + { + "id": "U31185", + "name": "Železný Brod,Splzov,host.", + "avgLatitude": 50.6536179, + "avgLongitude": 15.2198048 + }, + { + "id": "U31187", + "name": "Železný Brod,Terminál u žel.st.", + "avgLatitude": 50.6397476, + "avgLongitude": 15.265007 + }, + { + "id": "U32175", + "name": "Želiv,Bolechov,rozc.1.0", + "avgLatitude": 49.53151, + "avgLongitude": 15.2064753 + }, + { + "id": "U31905", + "name": "Želiv,klášter", + "avgLatitude": 49.5306664, + "avgLongitude": 15.2129393 + }, + { + "id": "U31907", + "name": "Želiv,Lhotice,křiž.0.6", + "avgLatitude": 49.56495, + "avgLongitude": 15.2587757 + }, + { + "id": "U31908", + "name": "Želiv,Miletín", + "avgLatitude": 49.56763, + "avgLongitude": 15.2483139 + }, + { + "id": "U31906", + "name": "Želiv,rest.Na Želivce", + "avgLatitude": 49.53018, + "avgLongitude": 15.22544 + }, + { + "id": "U32176", + "name": "Želiv,Vitice,rozc.1.0", + "avgLatitude": 49.53585, + "avgLongitude": 15.237421 + }, + { + "id": "U31909", + "name": "Želiv,Vřesník,rozc.0.5", + "avgLatitude": 49.5356369, + "avgLongitude": 15.2564669 + }, + { + "id": "U920", + "name": "Želivecká", + "avgLatitude": 50.05989, + "avgLongitude": 14.493988 + }, + { + "id": "U921", + "name": "Želivského", + "avgLatitude": 50.0785637, + "avgLongitude": 14.4737558 + }, + { + "id": "U6060", + "name": "Želízy", + "avgLatitude": 50.4226, + "avgLongitude": 14.464056 + }, + { + "id": "U6069", + "name": "Želízy,Beránek", + "avgLatitude": 50.4343071, + "avgLongitude": 14.4699821 + }, + { + "id": "U6059", + "name": "Želízy,Čertovy hlavy", + "avgLatitude": 50.41958, + "avgLongitude": 14.46282 + }, + { + "id": "U6067", + "name": "Želízy,Nové Tupadly", + "avgLatitude": 50.4381943, + "avgLongitude": 14.5056 + }, + { + "id": "U6068", + "name": "Želízy,Sitné", + "avgLatitude": 50.4435959, + "avgLongitude": 14.5255547 + }, + { + "id": "U6061", + "name": "Želízy,u parku", + "avgLatitude": 50.4246674, + "avgLongitude": 14.4741793 + }, + { + "id": "U922", + "name": "Ženské domovy", + "avgLatitude": 50.06857, + "avgLongitude": 14.400691 + }, + { + "id": "U6184", + "name": "Žerčice", + "avgLatitude": 50.3711433, + "avgLongitude": 15.0346928 + }, + { + "id": "U6186", + "name": "Žerčice,Obecní úřad", + "avgLatitude": 50.3736649, + "avgLongitude": 15.03601 + }, + { + "id": "U6185", + "name": "Žerčice,pod Kobylnicí", + "avgLatitude": 50.3675766, + "avgLongitude": 15.0486794 + }, + { + "id": "U923", + "name": "Žežulka", + "avgLatitude": 50.1185341, + "avgLongitude": 14.382 + }, + { + "id": "U6261", + "name": "Židněves", + "avgLatitude": 50.4116173, + "avgLongitude": 14.995018 + }, + { + "id": "U3358", + "name": "Žilina", + "avgLatitude": 50.1009674, + "avgLongitude": 14.0060425 + }, + { + "id": "U5054", + "name": "Žitětín", + "avgLatitude": 50.36158, + "avgLongitude": 15.3245335 + }, + { + "id": "U9892", + "name": "Žitovlice", + "avgLatitude": 50.2929077, + "avgLongitude": 15.1354284 + }, + { + "id": "U9893", + "name": "Žitovlice,Pojedy", + "avgLatitude": 50.2885056, + "avgLongitude": 15.1331177 + }, + { + "id": "U1017", + "name": "Živcová", + "avgLatitude": 49.9908, + "avgLongitude": 14.3683605 + }, + { + "id": "U6607", + "name": "Žiželice,Hradišťko II", + "avgLatitude": 50.1179657, + "avgLongitude": 15.4210567 + }, + { + "id": "U6603", + "name": "Žiželice,Končice", + "avgLatitude": 50.13292, + "avgLongitude": 15.3857527 + }, + { + "id": "U6606", + "name": "Žiželice,Loukonosy", + "avgLatitude": 50.1267, + "avgLongitude": 15.4226093 + }, + { + "id": "U6604", + "name": "Žiželice,nám.", + "avgLatitude": 50.13168, + "avgLongitude": 15.3927231 + }, + { + "id": "U6605", + "name": "Žiželice,Pod Vinicí", + "avgLatitude": 50.1347847, + "avgLongitude": 15.4058294 + }, + { + "id": "U6943", + "name": "Žiželice,škola", + "avgLatitude": 50.1303253, + "avgLongitude": 15.3984528 + }, + { + "id": "U6623", + "name": "Žiželice,Zbraň", + "avgLatitude": 50.1373, + "avgLongitude": 15.36364 + }, + { + "id": "U4832", + "name": "Žižice", + "avgLatitude": 50.2461, + "avgLongitude": 14.1528425 + }, + { + "id": "U4834", + "name": "Žižice,Drnov", + "avgLatitude": 50.2365646, + "avgLongitude": 14.14896 + }, + { + "id": "U9158", + "name": "Žižice,Luníkov", + "avgLatitude": 50.2543755, + "avgLongitude": 14.1605825 + }, + { + "id": "U9159", + "name": "Žižice,nad hřištěm", + "avgLatitude": 50.24855, + "avgLongitude": 14.1467133 + }, + { + "id": "U4831", + "name": "Žižice,odb.Luníkov", + "avgLatitude": 50.248642, + "avgLongitude": 14.1647072 + }, + { + "id": "U4833", + "name": "Žižice,odb.Zvoleněves", + "avgLatitude": 50.239357, + "avgLongitude": 14.162962 + }, + { + "id": "U4828", + "name": "Žižice,Osluchov", + "avgLatitude": 50.2486229, + "avgLongitude": 14.1815176 + }, + { + "id": "U9161", + "name": "Žižice,Vítov", + "avgLatitude": 50.246315, + "avgLongitude": 14.1406126 + }, + { + "id": "U9471", + "name": "Žlebské Chvalovice", + "avgLatitude": 49.88339, + "avgLongitude": 15.5556259 + }, + { + "id": "U9467", + "name": "Žleby", + "avgLatitude": 49.8905373, + "avgLongitude": 15.4771166 + }, + { + "id": "U9468", + "name": "Žleby zast.", + "avgLatitude": 49.8943, + "avgLongitude": 15.4898977 + }, + { + "id": "U7244", + "name": "Žleby,Kamenné Mosty", + "avgLatitude": 49.8637123, + "avgLongitude": 15.4936628 + }, + { + "id": "U7230", + "name": "Žleby,Markovice,drůbežárna", + "avgLatitude": 49.89798, + "avgLongitude": 15.443716 + }, + { + "id": "U7229", + "name": "Žleby,Markovice,lom", + "avgLatitude": 49.89611, + "avgLongitude": 15.4595623 + }, + { + "id": "U7226", + "name": "Žleby,nám.", + "avgLatitude": 49.88915, + "avgLongitude": 15.4844074 + }, + { + "id": "U7227", + "name": "Žleby,Sibiř", + "avgLatitude": 49.889164, + "avgLongitude": 15.4712868 + }, + { + "id": "U7243", + "name": "Žleby,Šumava", + "avgLatitude": 49.8912277, + "avgLongitude": 15.4900341 + }, + { + "id": "U7245", + "name": "Žleby,Zehuby", + "avgLatitude": 49.8701363, + "avgLongitude": 15.4822769 + }, + { + "id": "U7225", + "name": "Žleby,ZŠ", + "avgLatitude": 49.88929, + "avgLongitude": 15.4886589 + }, + { + "id": "U32362", + "name": "Žlutice", + "avgLatitude": 50.0846, + "avgLongitude": 13.1596613 + }, + { + "id": "U5870", + "name": "Županovice", + "avgLatitude": 49.7069, + "avgLongitude": 14.2984953 + }, + { + "id": "U1155", + "name": "Žvahov", + "avgLatitude": 50.0439873, + "avgLongitude": 14.4014511 + } +] diff --git a/apps/backend/tsconfig.build.json b/apps/backend/tsconfig.build.json index 231821a3..95bcfef3 100644 --- a/apps/backend/tsconfig.build.json +++ b/apps/backend/tsconfig.build.json @@ -1,4 +1,4 @@ { "extends": "./tsconfig.json", - "exclude": ["node_modules", "e2e", "dist", "**/*spec.ts"] + "exclude": ["node_modules", "e2e", "prisma", "dist", "**/*spec.ts"] }